@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    font-size: 14px;
    font-family: "Noto Sans JP", ヒラギノ角ゴシック, "Hiragino Sans", Helvetica, sans-serif;
    width: 100%;
    margin: auto !important;
    background: white;
}

header {
    width: 100%;
    margin-bottom: 5px;
    background: #fff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    position: fixed;
    z-index: 99999;
}

.wrapper {
    width: 100%;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.article {
    margin: auto !important;
    background: #fff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0 3%;
}

@media screen and (max-width:750px){
    .article {
        box-shadow: none;
    }
}


@media screen and (min-width:750px){
    .wrapper {
        display: flex;
    }
    
    .article {
        width: calc(68% - 24px);
    }
}

img {
    width: 100%;
    object-fit: contain;
    margin: 20px 0px;
}

@media screen and (max-width:750px){
    img{
        margin: 10px 0;
    }
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    opacity: 0.7;
}

p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 17px;
}

@media screen and (max-width:750px){
  p {
      font-size: 15px;
  }
}

b {
    font-weight: bold;
}

.red {
    color: red;
}

.blue {
    color: blue;
}

.pink {
    color: #ff93d6;
}

.yellow {
    color: #ffd600;
}
  
.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

li {
    list-style: none;
}

.back {
    text-align: right;
    margin: 10px 0;
}

.back a {
    color: #000;
    text-decoration: underline;
}

  /*注釈*/
  .g_k {
    font-size: 10px !important;
    text-align: right;
    margin: 0;
    color: #949494 !important;
}

@media screen and (max-width:750px){
    .g_k {
        font-size: 8px !important;
    }
  }

/*表内注釈*/
.g_k02 {
  font-size: 10px !important;
  margin: 0;
  color: #949494 !important;
}


.taC{
    text-align: center;
    margin-bottom: 0px;
    font-size: 15px;
}

.mt30 {
    margin-top: 30px;
}
.mb5 {
    margin-bottom: 5%;
}

.mini {
    font-size: 10px;
}

@media screen and (max-width:750px){
    .taC {
        font-size:15px; 
    }

    .mini {
        font-size: 9px;
    }
}

/*見出し装飾*/
h2 {
    color: #000;
    background: #f3f3f3;
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    border-left: 6px double #07579a;
    padding: 15px 10px 15px 20px;
    margin: 60px 0 40px;
}

h3 {
    padding-bottom: 0.2em;
    background: #ffffff;
    border-bottom: 1px solid #07579a;
    font-size: 18px;
    font-weight: bold;
    margin: 40px 0 20px 0;
    line-height: 1.8rem;
}


@media screen and (max-width:750px){
    h2 {
        font-size: 17px;
        padding: 10px;
        margin: 30px 0 20px;
    }
    h3 {
        font-size: 16px;
        margin-top: 10px;
    }
  }
  

h4 {
    background-color: #e0efff;
    padding: 15px 16px;
    margin-bottom: 10px;
    margin-top: 40px;
    font-weight: bold;
}

@media screen and (min-width:750px){
    h4 {
        font-size: 18px;
    }
  }

/*spのみヘッダー*/

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    margin: 0 auto;
}

.header_ttl {
    padding: 5px 0;
    margin: 0;
    color: #464c9c;
    font-weight: bold;
    line-height: 1.2;
}

@media screen and (max-width:750px){
    .header_ttl {
        font-size: 15px;
    }
}

.header_menu {
    justify-content: flex-end;
    display: flex;
    width: 65%;
    height: 80%;
    background: #fff;
}

.header_menu_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    border-left: solid 1px #464c9c;
    color: #464c9c;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

/*ポップアップ*/
#popup {
    display: none; /* label でコントロールするので input は非表示に */
  }
  
  .popup-open {
    cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
  }
  
  .popup-overlay {
    display: none; /* input にチェックが入るまでは非表示に */
  }
  
  #popup:checked ~ .popup-overlay {
    display: block;
    z-index: 99999;
    background-color: #00000070;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
  
  .popup-window {
    width: 90%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 6px;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .popup-text {
    margin: 0;
  }
  
  .popup-text:not(:last-of-type) {
    margin-bottom: 1em
  }
  
  .popup-close {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
  }

/*タイトル*/
.ttl {
    padding: 30px 0 10px;
    line-height: 1.3;
    text-indent: -0.7em;
}

/*ヘッダー分の余白*/
@media screen and (max-width: 750px){
    .ttl {
        margin-top: 60px;
        padding-left: 10px;
    }
}

.ttl h1 {
    line-height: 1.5;
    font-size: 18px;
    text-align: left;
    font-weight: 700;
}

@media screen and (min-width:750px){
    .ttl h1 {
        font-size: 20px;
    }
}

/*ボタン*/
.btn01 {
    background-color: #464c9c;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 10px;
    padding: 15px 0;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    box-shadow: 0px 5px 0 #2a2e69;
    position: relative;
    overflow: hidden;
}

.btn01::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn 3s ease-in-out infinite;
}

@keyframes shiny-btn {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }
  
    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }
  
    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}


.btn_flex {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    margin: 20px 0;
}

.btn_flex a {
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    display: table-cell;
    vertical-align: middle;
}

.btn02 {
    display: table;
    background:  #0b2687;
    border-radius: 10px;
    height: 100px;
    width: 55%;
    border-bottom: solid 5px #051653;
    margin: 0 15px 0 0;
    font-size: 18px;
}

/*02の3行バージョン*/
.btn06 {
    display: table;
    height: 100px;
    background:  #0b2687;
    border-radius: 10px;
    width: 55%;
    border-bottom: solid 5px #051653;
    margin: 0 15px 0 0;
    font-size: 18px;
    line-height: 1.2;
}

/*無料プラン*/
.btn03 {
    display: table;
    height: 100px;
    background: #ee5055;
    border-radius: 10px;
    width: 40%;
    border-bottom: solid 5px #b1292e;
}

/*無料トライアル・アカウント*/
.btn05 {
    display: table;
    height: 100px;
    background: #ee5055;
    border-radius: 10px;
    width: 40%;
    border-bottom: solid 5px #b1292e;
    font-size: 16px;
}

@media screen and (max-width: 767px){
    .btn02 {
    font-size: 15px;
    height: 80px;
    }

    .btn03 {
        height: 80px;
    }

    .btn05 {
    font-size: 14px;
    line-height: 1.2;
    height: 80px;
    }
    
    .btn06 {
        font-size: 15px;
        height: 80px;
    }
}

.btn04 {
    background-color: #464c9c;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 10px;
    padding: 15px 0;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    box-shadow: 0px 5px 0 #2a2e69;
}


.site_btn02 {
    display: block;
    width: 80%;
    margin: 5px auto;
    line-height: 1.2;
    padding: 6px;
    border-radius: 5px;
    background-color: #ee5055;
    box-shadow: 0 2px 2px 0 #b1292e;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    text-align: center;
}


/*続きをよむ*/
.readmore {
    position: relative;
    margin: 0 auto 70px;
  }
  .readmore label {
    position: absolute;
    display: table;
    left: 50%;
    bottom: -30px;
    margin: 0 auto;
    width: 200px;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background-color: #444;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 999;
  }

@media screen and (max-width:750px){
    .readmore label{
        bottom: -40px;
    }
}

  .readmore label::before{
    content: '＋事例をもっと見る';
  }
  
  .readmore input[type="checkbox"]:checked ~ label::before {
    content: '−閉じる';
  }

  .readmore02 label::before{
    content: '＋続きを読む';
  }

  .readmore input[type="checkbox"]{
    display: none;
  }
  .readmore-content {
    position: relative;
    height: 130px;
    overflow: hidden;
  }
  .readmore input[type="checkbox"]:checked ~ .readmore-content {
    height: auto;
  }
  .readmore-content::before {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
    z-index: 900;
}
  .readmore input[type="checkbox"]:checked ~ .readmore-content::before {
    display: none;
  }
  @media screen and (max-width:768px) {
  .readmore-content{
  height: 50px;
  }
  }

  .content_img {
    text-align: center;
  }

  @media screen and (min-width:750px){
    .content_img img{
        width: 80%;
    }
  }

  .content ul {
    padding: 0;
  }

  .content li {
    text-indent: -1em;
    padding-left: 1em;
  }


/*口コミ*/


.review-item {
    border: solid 1px #EEEEEE;
    padding: 10px 0 20px 0;
    margin-bottom: 30px;
}

.review-item .g_k {
    padding-right: 10px;
}

@media screen and (max-width:750px){
    .review-wrapper .readmore-content{
        height: 10px;
    }

    .review-item {
        margin-bottom: 10px;
    }
}

.row {
    max-width: none;
    display: flex;
    flex-flow: row wrap;
    margin-right: -.625rem;
    margin-left: -.625rem;
}

/*★★★★★*/
.review-header {
    padding: 10px 0 0 20px;
    width: 100%;
    margin-bottom: 10px;
}

.review-stars-wrapper{
    display: flex;
    align-items: center;
    font-size: 1.875rem;
}

@media screen and (max-width:750px){
    .review-stars-wrapper {
        font-size: 1.5rem;
    }
}

.review-stars-grey {
    display: flex;
    position: relative;
    letter-spacing: -1px;
    line-height: 1;
    margin-right: .4rem;
}

.review-stars-orange {
    width: 71%;
    position: absolute;
    overflow: hidden;
}

.review-stars-orange::before {
    content: "★★★★★";
    color: orange;
}

.review-stars-grey::after {
    content: "★★★★★";
    color: #c6c6c6;
}


/*プロフィール*/
.review-profile-wrapper {
    flex: 0 0 100%;
    width: 100%;
    margin: 0 0 10px 20px;
    display: flex;
    flex-flow: row wrap;
    padding-top: 10px;
}

.review-icon {
    padding: 0;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.review-icon img {
    width: 40px;
    height: 40px;
    margin: 0;
}

.review-icon img {
    object-fit: contain;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.review-profile {
    margin-right: 20px;
    font-size: .6rem;
}

.review-profile ul {
    padding-left: 10px;
}

.review-profile li {
    list-style: none;
    font-size: 12px;
}

@media screen and (man-width:750px){
    .review-profile li {
        font-size: 10px;
    }
}

/*口コミ本文*/
.review-answer-wrapper {
    padding: 0 20px
}

.review-answer h3 {
    margin-top: 10px; 
    font-size: 18px;
}

.review-answer li {
    text-indent: -1em;
    padding-left: 1em;
}

/*デフォルトで★4.5*/
/*★5つ*/
.review-item01 .review-stars-orange,
.review-item02 .review-stars-orange,
.review-item04 .review-stars-orange,
.review-item05 .review-stars-orange,
.review-item06 .review-stars-orange,
.review-item12 .review-stars-orange {
    width: 100%;
}

/*★4つ*/
.review-item03 .review-stars-orange,
.review-item13 .review-stars-orange,
.review-item16 .review-stars-orange {
    width: 80%;
}

/*★3.5*/
.review-item21 .review-stars-orange,
.review-item22 .review-stars-orange {
    width: 70%;
}


/*★3つ*/
.review-item09 .review-stars-orange,
.review-item11 .review-stars-orange,
.review-item15 .review-stars-orange,
.review-item17 .review-stars-orange,
.review-item24 .review-stars-orange {
    width: 60%;
}

/*★2.5*/
.review-item10 .review-stars-orange,
.review-item18 .review-stars-orange,
.review-item19 .review-stars-orange {
    width: 50%;
}

/*★2つ*/

.review-item10 .review-stars-orange,
.review-item14 .review-stars-orange,
.review-item20 .review-stars-orange,
.review-item23 .review-stars-orange,
.review-item25 .review-stars-orange {
    width: 40%;
}



/*縦表*/
.vertical_table {
    table-layout: fixed;
    height: 500px;
    text-align: center;
    overflow-y: scroll;
}

.vertical_table table {
    border: 2px solid #B5B5B5;
    width: 100%;
}

@media screen and (min-width:750px){
    .vertical_table  table{
        width: 90%;
        margin: 0 auto;
    }
}

.vertical_table th {
    border-left: 1px dotted #B5B5B5;
    border-bottom: 1px solid #B5B5B5;
    background: #e1f7ff;
    color: #000;
    width: 20%;
    font-weight: bold;
    display: table-cell;
    vertical-align: inherit;
    unicode-bidi: isolate;
    text-align :center;
    line-height: 1.2rem;
    padding: 1% 0;
}

.vertical_table td {
    border-left: 1px solid #B5B5B5;
    border-bottom: 1px solid #B5B5B5;
    padding: 1%;
    color: #000;
    text-align: center;
    line-height: 1.2rem;
}

.vertical_table ul {
    text-align: left;
    padding: 3%;
}

@media screen and (max-width:750px){
    .vertical_table {
        font-size: 13px;
    }

    .vertical_table td {
        width: 29%;
        padding: 6px;
    }

    .vertical_table th {
        padding: 6px;
    }
}

@media screen and (min-width:750px){
    .vertical_table img {
        width: 70%;
    }
}



/*PCのみ右側のコラム*/
.column {
    width: 332px;
    margin-left: 12px;
    margin-right: 20px;
    background-color: white;
}

.column_ttl {
    background-color: #000;
    color: white;
    padding: 13px;
    font-size: 17px;
    line-height: 1.9;
}

.column_table {
    border: 2px solid #e1e1e1;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: center;
    margin-bottom: 50px;
}

.column_table tr{
border-top: 1px solid #cdd4d0;
}

.column_table th, .column_table td {
    border-right: 2px dotted #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    text-align: center;
    vertical-align: middle;
}

.column_table th{
    width: 30%;
}

.column_table td{
    font-size: 13px;
    line-height: 1.3;
}

.column_table img{
    margin: 0;
}

.column_table02 {
    top: 0;
    position: sticky;
}

.column_table02 img{
    padding: 10px 0;
}



/*運営者情報*/

footer {
    margin: 50px auto 0;
    background-color: #999;
    width: 100%;
    text-align: center;
}

.footer_txt {
    padding: 40px;
}

.footer_txt a {
    color: #fff;
    font-size: 15px;  
}
