@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
}
.top-compnay-question{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}
.company-question-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0px 50px;

}


.accordion-002 {
    text-align: left;
    margin-bottom: 7px;
    border: 2px solid #2589d0;
    border-radius: 5px;
    
}

.accordion-002 summary {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%232589d0%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    cursor: pointer;
    background-size: 22px;
    background-repeat: no-repeat;
    color: #2589d0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}
.accordion-002:hover summary {
    color: white; /* ホバー時のテキストカラー */
    background-color: #2589d0; /* ホバー時の背景色 */
    border-color: #1a6fa5; 
  }
.accordion-002 summary::-webkit-details-marker {
    display: none;
}

.accordion-002 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
    position: absolute;
}

.accordion-002[open] summary::after {
    transform: rotate(225deg);
}

.accordion-002 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
    font-family: Noto Sans JP;
}

.accordion-002[open] p {
    transform: none;
    opacity: 1;
}
.company-question-red{
    color: #FF0000;
}
.company-question-titleWrap{
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px
}

.company-question-title, .question-title{
    font-family: Noto Sans JP;
    font-weight: 600;
    background-color: #D9D9D9;
    width: 165px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #000;
}
.question-title a:link,      /* 通常のリンク */
.question-title a:visited,  /* 訪問済みリンク */
.question-title a:hover,    /* ホバー中のリンク */
.question-title a:active {  /* クリック中のリンク */
    color: #000; /* 黒に設定 */
    text-decoration: none; /* 必要に応じて下線を消す */

}

.company-question-title{
    margin: 50px 0px 50px;
}

.company-question h1, .company-question h2{
    font-family: Noto Sans JP;
    font-weight: 700;
    font-size: 20px;

}
.company-question h2{
    color: #0064E0;
}
.company-question{
    margin-bottom: 30px;
}


/* 再生 */
.pray-btn{
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    transform: translateX(-50%);
}
.pray-btn .play-icon {
    transition: fill 0.3s ease;
  }
  .pray-btn:hover .play-icon {
    fill: #ff0000; /* ホバー時に色を変更 */
  }
.top-title{
    display: flex;
    justify-content: center;
    align-items: center;
}

.mincho {
    font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", serif;
    font-weight: 800; /* 必要に応じて太さを調整 */
    color: #00A89A;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
.top-text p{
    text-align: center;
    font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", serif;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.company-movie{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Noto Sans JP;
}
.movie-wrap{
    background-color: #00A89A;
    display: flex;
    flex-direction: column; /* 子要素を縦並びにする */
    justify-content: center; /* コンテンツを中央に配置 */
    align-items: center; /* 水平に中央揃え */
    position: relative;
}
.movie-wrap p{
    color: #fff;
    font-weight: 500;
}
.movie-bottom{
    display: flex;
}
.movie-bottom .movie-text_red{
    color: #FF0000;
    font-weight: 800;
}
.movie-bottom .movie-text{
    color: #000;
    font-weight: 800;
}
.movie-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.movie-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #00A89A;
    transition: width 0.3s ease-in-out;
}

.movie-link:hover::after {
    width: 100%;
}
.movie-triangle{
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 0;
}
.movie-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid #00A89A;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: transform 0.3s ease-in-out;
}

.movie-link:hover .movie-triangle {
    transform: translateX(5px);
}

.middle-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.middle-content .middle-content-title{
    font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", serif;
    font-weight: 900;
}
.middle-content .middle-content-title .underline{
    color: #00A89A;
    text-decoration: underline; /* アンダーラインを設定 */
    text-decoration-thickness: 5px; /* アンダーラインの太さを設定 */
    text-decoration-color: #FCEF20; /* アンダーラインの色を設定 */
    text-underline-offset: 3px;
 }
 .problem-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Noto Sans JP;
    flex-direction: column;
 }
 .pc-problem-wrap{
    display: flex;
    justify-content: center;
 }
 .problem-item{
    position: relative;
    border: 2px #000 solid;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }
 .problem-title{
    font-weight: 800;
 }
 .check {
    background-color: #009FA2;
    border-radius: 50%;
    display: flex; /* 子要素を中央揃えにする */
    justify-content: center;
    align-items: center;
    position: absolute;
    }
    .check-text {
        transform: rotate(-45deg);
        width: 11px;
        height: 4px;
        border-left: 4px solid #fff;
        border-bottom: 4px solid #fff;
    }
    .bottom-triangle,
    .flow-triangle {
        width: 0;
        height: 0;
        border-style: solid;
        border-bottom: 0;
      }
    .bottom-text-content{
        font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", serif;
        font-weight: 900;
        
    }

    .bottom-text-content .textcolor{
        color: #009FA2;
    }
/* ボタン */
.sp-btn-wrap p,
.pc-slider-btn p{
    color: #FF0000;
    font-weight: 600;
    font-family: Noto Sans JP;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
   }
.pc-slider-btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 25px 0px;
  .link-wrap{
    display: flex;
    gap: 10px; 
    justify-content: center;
    width: 86%;
   }
   .register-item,
   .download-item,
   .movieLink-item{
   border: none;
   font-weight: 600;
   font-size: clamp(12px, 1.5vw, 40px);
   font-family: Noto Sans JP;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
   text-align: center;
   transition: transform 0.2s ease, box-shadow 0.2s ease; 
   white-space: nowrap;
   }
   .register-item{
       background-image: radial-gradient(circle at 100% 0%, #2F7DE9, #2EC2C2);
       color: #fff;
       padding: 0.5rem 0rem;
       flex: 1;
   }
   .download-item{
       background-image: radial-gradient(circle at 100% 0%, #FF5C00, #EFE94D);
       color: #fff;
       padding: 0.5rem 0rem;
       flex: 1;
   }
   .movieLink-item{
     background-color: #fff;
     color: #000;
     white-space: nowrap;
     justify-content: center;
     display: flex;
     padding: 0.5rem 1.5rem;
   }
   /* クリック時の動き */
   .register-item:active,
   .download-item:active,
   .movieLink-item:active {
       transform: translateY(1px) scale(0.98); /* 少し下がって縮む */
       box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 影を薄くする */
   }
   .register-item:hover,
   .download-item:hover,
   .movieLink-item:hover{
     transform: translateY(-2px); /* 上に少し動く */
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ホバー時の影 */
   }
}
.sp-btn-wrap,
.sp-btn-wrap_top{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 25px 0px;
 
      .link-wrap{
       display: flex;
       gap: 10px; 
       justify-content: center;
      }
      .register-item,
      .download-item,
      .movieLink-item{
      border: none;
      font-weight: 600;
      font-family: Noto Sans JP;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease; 
      }
      .register-item{
          background-image: radial-gradient(circle at 100% 0%, #2F7DE9, #2EC2C2);
          color: #fff;
          padding: 8px 18px;
      }
      .download-item{
          background-image: radial-gradient(circle at 100% 0%, #FF5C00, #EFE94D);
          color: #fff;
          padding: 8px 18px;
      }
      .movieLink-item{
        background-color: #fff;
        color: #000;
        white-space: nowrap;
        justify-content: center;
        display: flex;
        padding: 8px 35px;
      }
      /* クリック時の動き */
      .register-item:active,
      .download-item:active,
      .movieLink-item:active {
          transform: translateY(1px) scale(0.98); /* 少し下がって縮む */
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 影を薄くする */
      }
      .register-item:hover,
      .download-item:hover,
      .movieLink-item:hover{
        transform: translateY(-2px); /* 上に少し動く */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ホバー時の影 */
      }
  }
  .back-ground-wrap ,
  .back-ground-wrap-bottom{
    position: relative;
    width: 100%; /* 親要素の幅に応じる */
    max-height: 290px; /* 高さを自動調整 */
    overflow: hidden; /* 画像が親要素をはみ出さないようにする */
}

.contact-btn{
    color: #fff;
    background-color: #0168B7;
    border: #fff 2px solid;
    font-family: Noto Sans JP;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    font-weight: 600;
    position: absolute;
    bottom: 0px;
}
.contact-btn-middle{
    color: #fff;
    background-color: #0168B7;
    border: #fff 2px solid;
    font-family: Noto Sans JP;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    font-weight: 600;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
}
.company-back,
.company-backBottom {
    display: block; /* 画像がインライン要素で空白ができないようにする */
    width: 100%; /* 親要素の幅にフィットさせる */
    height: auto; 
}
.company-back{
    max-height: 201px;
}
.company-backBottom {
    max-height: 290px;
}
.back-circle{
    background-color: #fff;
    width: 100%;
    height: 50%;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    bottom: 0px;
    position: absolute;
    left: 0px;
}
.back-circle-bottom{
    background-color: #fff;
    width: 100%;
    height: 35%;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    top: 0px;
    position: absolute;
    left: 0px;
}
.company-feature,
.company-feature2{
    display: flex;
    flex-wrap: wrap;
  }
  .feature-title-wrap{
    align-items: center;
  }
  .feature-title-wrap h2{
    font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", serif;
    font-weight: 900;
    text-align: left;
  }
.companuy-feature-title{
    font-family: "游明朝体", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "MS P明朝", serif;
    font-weight: 900;
}
.companuy-feature-title .blue-text{
    color: #0064E0;
}
.company-feature-list{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.numwrap{
    background-color: #009FA2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.numwrap .number{
    color: #fff;
}

.company-feature-text-wrap {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .feature-text{
    font-family: Noto Sans JP;
    width: 90%;
    text-align: left;
  }
  .company-feature-image-wrap {
    flex: 1; /* 画像部分を拡大縮小可能に */
    display: flex; /* 中央揃え */
    justify-content: center;
    align-items: center;
  }
  .feature-title-wrap{
    display: flex;
    width: 100%;
  }
  /* 流れ */
  .flow-content{
    font-family: Noto Sans JP;
  }
  .flow-content h1{
    font-weight: 600;
  }
  .flow-content p{
    font-weight: 600;
    text-decoration: underline; /* アンダーラインを設定 */
    text-decoration-thickness: 5px; /* アンダーラインの太さを設定 */
    text-decoration-color: #FCEF20; /* アンダーラインの色を設定 */
    text-underline-offset: 3px;
  }
  .flow-content span{
    color: #0064E0;
  }
  /* ご利用の流れ詳細 */
  .flow-detail-cpntainer{
    display: flex;
  }
  .flow-number{
    display: flex;
    font-family: 'Inter', sans-serif; 
    font-weight: 700;
  }
  .flow-number p{
    color: #27CBAE;
    text-decoration: none;
  }
  .flow-number .flow-text {
    transform: rotate(90deg); /* 90度回転 */
    display: inline-block; /* インライン要素に適用するため */
  }
  .flow-number .number{
    transform: rotate(9deg); 
  }
  .flow-item{
    font-family: Noto Sans JP;
    display: flex;
  }
  .flow-title{
    border: 2px solid #0168B7;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .flow-title p{
    text-decoration: none;
    font-weight: 600;
  }
  .flow-detail{
    background-color: #F5F7F7;
  }
  .flow-detail p{
    text-decoration: none;
    font-weight: 400;
    text-align: left;
  }
  .flow-detail .red-text{
    color: #FF0000;
  }

  .flow-main{
    display: flex;
  }
  .flow-num3{
    display: flex;
    flex-direction: column;
  }
  .flow-num3-item{
    display: flex;
    flex-direction: column;
  }
  .arrow-text,
  .arrow-text-long{
    color: #DE4862;
  }
  .or{
    font-weight: 800;
  }

  .entry-back{
    width: 100%;
    opacity: 0.53;
  }
  .middle-btn .btn-red {
    color: #FF0000;  /* 文字色 */
    -webkit-text-stroke: 0.2px #FFF;  /* 白い縁の太さ */
    -webkit-text-fill-color: #FF0000;  /* 中の色 */
    font-weight: bold;
}
.fadeIn_up {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 1s;
  }
  
  .fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }
  .pc-slider-btn{
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 30%;
    align-items: center;
  }
  .sp-btn-bttom{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: #FF0000;
    font-weight: 600;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-family: Noto Sans JP;
    font-size: clamp(23px, 3vw, 31px);
  }
  
/* PC幅 */
@media screen and (min-width: 769px) {
    
    .accordion-002 {
        width: 60%;
    }
    .company-question-content{
        width: 80%;
    }
    .accordion-002 summary{
        background-position: right calc(2em - 7px) center;
    }
    .accordion-002 summary::after{
        right: 32px;
    }
    .pc-none{
        display: none!important;
    }
    .top-title .first{
        max-width: 60px;
    }
    .top-title{
        gap: 15px;
        margin-top: 100px;
    }
    .top-title h1{
        font-size: 30px;
    }
    .top-text p{
        font-size: 20px;
    }
    .top-text{
        margin: 50px 0px;
    }
    .movie-wrap{
        width: 55%;
        padding: 20px 20px 60px;
    }
    .movie-wrap video{
        width: 95%;
    }
    .movie-wrap p{
        font-size: 22px;
        margin: 10px 0px 15px;
    }
    .movie-wrap span{
        font-size: 22px;
    }
    .movie-bottom{
        margin: 20px 0px;
    }
    .movie-bottom .movie-text_red{
       font-size: 22px;
    }
    .movie-bottom .movie-text{
        font-size: 22px;
    }
    .movie-triangle{
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 20px solid #00a89a;
    }
    .pray-btn{
        top: 37%;
        left: 50%;
    }
    .middle-content{
        margin: 100px 0px;
    }
    .middle-content .middle-content-title{
       font-size: 30px;
       margin-bottom: 40px;
    }
    .problem-wrap{
        gap: 50px;
    }
    .pc-problem-wrap{
        width: 100%;
        gap: 25px;
    }
    .problem-item{
        width: 280px;
        padding: 18px 10px;
        justify-content: space-around;
        display: flex;
        flex-direction: column;
        max-height: 120px;
    }
     .problem-title{
        margin-bottom: 10px;
        font-size: clamp(18px, 1.3vw, 20px);
     }
     .problem-text{
        margin-bottom: 10px;
        font-size: clamp(13px, 0.9vw, 16px);
        line-height: 1.5;
     }
     .check {
        width: 40px;
        height: 40px;
        top: -22px;
        left: 50%;
        transform: translateX(-50%);
      }
      .bottom-triangle {
        border-right: 40px solid transparent;
        border-left: 40px solid transparent;
        border-top: 30px solid #0064e0;
        margin: 50px 0px;
      }
      .w-problem,
      .m-problem{
        width: 130px;
      }
      .bottom-text-content p{
        font-size: 24px;
      }
      .text-wrap{
        margin-bottom: 50px;
      }
      .large-text{
        font-size: 28px;
        margin-bottom: 10px;
      }
      .textcolor{
        font-size: 30px;
      }
        /* ボタン */
  .sp-btn-wrap_top{
    padding-bottom: 50px;
  }
  .sp-btn-wrap,
  .pc-slider-btn{
    margin-top: 100px;
  }
  
  .sp-btn-wrap .register-item,
.sp-btn-wrap .download-item,
.sp-btn-wrap .movieLink-item,
.sp-btn-wrap .contact-btn,
.sp-btn-wrap_top .register-item,
.sp-btn-wrap_top .download-item,
.sp-btn-wrap_top .movieLink-item,
.sp-btn-wrap_top .contact-btn{
    font-size: 16px;
    width: 180px;
    border-radius: 20px;
  }
  .pc-slider-btn  .register-item,
.pc-slider-btn .download-item,
.pc-slider-btn .contact-btn{
    width: 100%;
    border-radius: 30px;
  }
  .pc-slider-btn .movieLink-item{
    width: 43%;
    border-radius: 30px;
  }
  .contact-btn{
    margin: auto;
    height: 26px;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px 18px;
  }
  .middle-btn{
    position: relative;
    height: 315px;
    overflow: hidden; 
    margin: 100px 0px;
  }
  .entry-back {
    width: 100%;
    height: 100%;  /* 親要素の高さいっぱいにする */
    object-fit: cover;  /* 画像の比率を維持しつつフィット */
    position: absolute;
    top: 0;
    left: 0;
}
.link-wrap{
    margin-bottom: 24px;
}
  .contact-btn-middle{
    padding: 8px 18px;
    font-size: 16px;
    width: 250px;
    height: 50px;
    border-radius: 35px;
    z-index: 10;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .company-feature-list{
    gap: 40px;
    }
  .companuy-feature-title{
    font-size: 30px;
    margin-bottom: 50px;
  }
  .company-feature,
  .company-feature2{
    gap: 20px;
    margin: 30px 0px;
    width: 60%;
  }
  .company-feature2{
    flex-direction: row-reverse;
  }
  .feature-title-wrap{
    gap: 20px;
  }
  .company-feature .c-feature,
  .company-feature2 .c-feature{
    max-width: 300px;
  }
  .numwrap{
    width: 70px;
    font-size: 40px;
    height: 70px;
    }

    .company-feature-text-wrap{
        flex: 1.5; /* テキスト部分を拡大縮小可能に */
        gap: 10px;
    }
    .feature-text{
        font-size: 16px;
        line-height: 1.5;
    }
    .feature-title-wrap h2{
        font-size: 22px;
    }
    /* 流れ */
    .flow-content{
        font-family: Noto Sans JP;
      }
    .flow-content h1{
        font-size: 30px;
        margin: 100px 0px;
    }
    .flow-content p{
        font-size: 23px;
        margin: 15px 0px;
    }
    .flow-content span{
        font-size: 30px;
    }
    .c-flow{
        width: 60%;
        margin: 30px 0px;
    }
    /* ご利用の流れ詳細 */
    .flow-detail-cpntainer{
        width: 70%;
        margin: 0 auto;
    }
    .flow-wrap{
        display: flex;
        align-items: baseline;
        margin: 10px 0px;
    }
    .flow-num3{
        flex: 10;
    }

    .flow-number{
       align-items: center;
       flex: 1;
    }
    .flow-number .number{
       font-size: 45px;
       margin: 0px;
    }
    .flow-number .flow-text {
      font-size: 14px;
      margin: 0px;
    }
    .flow-item{
        align-items: center;
        justify-content: center;
        flex: 10;
        margin-left: 20px;
        flex-direction: column;
        gap: 5px;
    }
    .flow-inner{
        display: flex;
        gap: 15px;
        align-items: center;
        width: 100%;
    }
    .flow-inner .form-title-wrap{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex: 1;
    }
    .flow-title{
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .flow-title p{
        font-size: 16px;
        margin: 0px;
    }
    .flow-detail{
        padding: 10px;
        flex: 3;
        display: flex;
        align-items: center;
        height: 100%;
        align-items: stretch;
        flex-direction: column;
    }
    .flow-detail p{
        font-size: 15px;
        margin: 0px;
        height: 100%;
    }
    .flow-triangle {
        border-right: 25px solid transparent;
        border-left: 25px solid transparent;
        border-top: 20px solid #0064e0;
        margin-top: 5px;
    }
    .flow-arrow-wrap{
        display: flex;
        margin: 0px 5px;
        /* flex: 1; */
        margin-top: 20px;
    }
    .start-text{ 
        font-size: 30px;
        font-weight: 800;
        text-align: left;
        width: 95%;
        margin: 0 auto;
        padding: 20px 0px;
    }

    .flow-num3-item{
        position: relative;
    }

    .flow-arrow {
        display: inline-block;
        width: 33.5px;
        height: 410px;
        background: #00A89A;
        clip-path: polygon(0 91.8%, 31% 91.8%, 31% 0, 69% 0, 69% 91.8%, 100% 91.8%, 50% 100%);
    }
    .flow-arrow-long {
        display: inline-block;
        width: 33.5px;
        height: 800px;
        background: #00A89A;
        clip-path: polygon(0 95.9%, 31% 95.9%, 31% 0, 69% 0, 69% 95.9%, 100% 95.9%, 50% 100%);
    }
    .arrow-text,
    .arrow-text-long{
        text-decoration: none!important;
        font-size: 14px!important;
    }
    .or{
        width: 80%;
        margin: 0 auto;
        text-align: left;
        font-size: 25px;
    }
    .middle-btn .btn-red {
        font-size: 21px;
    }
    .news-wrap{
        width: 80%;
      }
      .news-wrap h2{
        width: 20%;
        font-size: 2rem;
        border-bottom: 3px solid #36b3ac;
      }
      .news-item-wrap{
        border-bottom:1px solid #36b3ac;
        display: flex
;
    }
      .news-item_date{
        flex: 0.5;
        padding: 15px;
        border-right: 1px solid #36b3ac;
        border-left: 1px solid #36b3ac;
        border-top: 1px solid #36b3ac;
      }
      .news-item_title{
        border-right: 1px solid #36b3ac;
        border-top: 1px solid #36b3ac;
      }
      .news-item_title,
      .news-item_detail  {
        flex: 1;
        padding: 15px;
    
      }
      .news-item_detail {
        border-right: 1px solid #36b3ac;
        border-top: 1px solid #36b3ac;
      }
      .sp-news-wrap{
        display: flex;
        flex: 1;
      }
      .sp-btn-wrap p{
        font-size: 23px;
      }
      .pc-slider-btn p{
        font-size: clamp(18px, 2.6vw, 40px);
      }

}
/* スマホ・タブレット幅 */
@media screen and (max-width: 768px) {
    .background{
        z-index: 1;   
      }
    .sp-slideimg-back{
        z-index: 1;   
        position: absolute;
        top: 0;
        left: 8px;
        width: 97%;
       }
    .sp-slider-container{
        background-color: #00A89A;
    }
    .sp-slideimg1_c,
    .sp-slideimg2_c,
    .sp-slideimg3_c{
      z-index: 10;
    }
       
/* トップボタン */
.top-btn-wrap{
    display: flex;
    position: absolute;
    bottom: 47px;
    left: 10px;
    z-index: 10;
    width: 95%;
    margin: 0 auto; /* 中央配置 */
    gap: 10px;
    justify-content: space-between;
  }
  .top-sinsotsubtn{
    background-image: radial-gradient(circle at 100% 0%, #2F7DE9, #2EC2C2);
    color: #fff;
  }
  .top-tensyokubtn{
    background-image: radial-gradient(circle at 100% 0%, #FF5C00, #EFE94D);
    color: #fff;
    padding: 5px 6px;
  }
  .top-aboutbtn{
    background-color: #fff;
    color: #000;
    white-space: normal; 
  }
  .top-sinsotsubtn,
  .top-tensyokubtn,
  .top-aboutbtn{
    text-align: center;
    font-weight: 600;
    border: none;
    font-family: Noto Sans JP;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    border-radius: 10px;
    flex: 1;
    font-size: 12px;
    padding: 3px 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
  }
  .top-btn-wrap a span {
    font-size: 22px; /* 「新卒」「転職」「3分」の部分のフォントサイズ */
    font-weight: bold;
    }
    /* クリック時の動き */
    .top-sinsotsubtn:active,
    .top-tensyokubtn:active,
    .top-aboutbtn:active {
        transform: translateY(2px) scale(0.98) !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    }
    .menu.active{
        z-index: 100;
      }
    .accordion-002 {
        width: 85%;
    }
    .company-question-content{
        width: 100%;
    }
    .accordion-002 summary{
        background-position: right calc(1em - 2px) center;
    }
    .accordion-002 summary::after{
        right: 21px;
    }
    .sp-none{
        display: none!important;
    }
    .top-title .first{
        max-width: 50px;
    }
    .top-title{
        gap: 10px;
        margin-top: 50px;
    }
    .top-title h1{
        font-size: 22px;
    }
    .top-title .middle-content-title{
        font-size: 26px;
    }
    .top-text p{
        font-size: clamp(12px, 2vw, 24px);
        width: 95%;
        line-height: 2;
    }
    .top-text{
        margin: 30px 0px;
        display: flex;
        justify-content: center;
    }
    .movie-wrap video{
        width: 95%;
    }
    .movie-wrap{
        width: 85%;
        padding: 15px 15px 45px;
    }
    .movie-wrap span{
        font-size: 17px;
    }
    .movie-wrap p{
        font-size: 16px;
        margin: 5px 0px 10px;
    }
    .movie-bottom{
        margin: 10px 0px;
        flex-direction: column;
    }
    .movie-bottom .movie-text_red{
       font-size: 16px;
    }
    .movie-bottom .movie-text{
        font-size: 16px;
    }
    .movie-triangle{
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 13px solid #00a89a;
    }
    .pray-btn{
        top: 45%;
        left: 50%;
    }
    .middle-content{
        margin: 50px 0px;
    }
    .middle-content .middle-content-title{
        font-size: 20px;
        margin-bottom: 25px;
     }
     .problem-wrap{
        gap: 30px;
        width: 80%;
     }
    .pc-problem-wrap{
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .problem-item{
        width: 250px;
        padding: 18px 10px;
        max-height: 200px;
    }
    .problem-title{
    margin-bottom: 10px;
    font-size: clamp(14px, 2vw, 24px);
    }
    .problem-text{
    margin-bottom: 10px;
    font-size: clamp(10px, 1.8vw, 24px);
    }
    .check {
    width: 30px;
    height: 30px;
    top: -18px;
    left: 50%;
        transform: translateX(-50%);
    }
    .bottom-triangle {
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-top: 20px solid #0064e0;
    margin: 25px 0px;
    }
    .bottom-text-content p{
        font-size: clamp(15px, 2vw, 24px);
      }
      .text-wrap{
        margin-bottom: 30px;
      }
      .large-text{
        font-size: clamp(18px, 2vw, 24px);
        margin-bottom: 20px;
        white-space:nowrap;
      }
      .textcolor{
        font-size: clamp(20px, 2vw, 24px);
      }
      /* ボタン */
  
    .sp-btn-wrap,
    .pc-slider-btn{
      margin-top: 10px;
    }
    .link-wrap{
        margin-bottom: 10px;
    }
    .register-item,
    .download-item,
    .movieLink-item,
    .contact-btn{
      font-size: 12px;
      width: 100px;
      border-radius: 30px;
    }
    .contact-btn{
        margin: auto;
        top: 37px;
        right: 0;
        bottom: 0;
        left: 0;
        height: 20px;
        padding: 5px 15px;

      }
    .company-feature-list{
        gap: 60px;
    }
    .companuy-feature-title{
        font-size: 24px;
        margin-bottom: 30px;
    }
    .feature-title-wrap{
        gap: 10px;
    }
    .feature-title-wrap h2{
        font-size: clamp(16px, 1.5vw, 24px);
    }
      .company-feature,
      .company-feature2{
        flex-direction: column-reverse;
        gap: 20px;
        width: 80%;
      }
    .company-feature-text-wrap{
        flex: 1; /* テキスト部分を拡大縮小可能に */
        gap: 10px;
    }
    .company-feature .c-feature,
    .company-feature2 .c-feature{
        max-width: 200px;
    }
    .numwrap{
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .feature-text{
        font-size: clamp(14px, 1.5vw, 24px);
        line-height: 1.5;
    }
    .flow-content .c-flow{
        width: 100%;
        margin: 30px 0px 50px;
    }
    .flow-top p{
        line-height: 2;
        margin: 10px 0px;
        font-size: clamp(14px, 1.5vw, 24px);
    }
    .flow-top h1{
        margin: 50px 0px 15px;
        font-size: clamp(18px, 2vw, 24px);
    }
    /* ご利用の流れ詳細 */
    .flow-detail-cpntainer{
        width: 95%;
        margin: 0 auto;
        padding-top: 30px;
    }
    .flow-number{
        margin-right: 15px;
        gap: 5px;
    }
    .flow-number .number{
       font-size: 30px;
       width: 10px;
       height: 10px;
    }
    .flow-text{
        font-size: 10px;
        width: 0px;
        height: 10px;
     }


     .flow-main{
        position: relative;
     }
    .flow-wrap{
        display: flex;
        width: 100%;
        margin: 15px 0px;
    }
    .flow-item{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex: 10;
        z-index: 10;        
    }
    .flow-inner{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .flow-title{
        width: 40%;
    }
    .flow-title p{
        font-size: 14px;
        margin: 3px 10px;
    }
    .flow-detail{
    }
    .flow-detail p{
        font-size: 12px;
        padding: 10px;
    }
    .flow-triangle {
        border-right: 25px solid transparent;
        border-left: 25px solid transparent;
        border-top: 20px solid #0064e0;
        margin: 5px 0px;
    }
    .flow-num3{
        z-index: 2;
        position: relative;
        padding-bottom: 20px;
    }
    .flow-num3-item{
        position: relative;
        padding-bottom: 15px;
    }
    .flow-arrow-wrap {
        position: absolute;
        margin: 0px 6px;
        top: 0;
        right: 0;
        display: flex;
        gap: 21px;
    }
    .start-text{ 
        font-size: 24px;
        font-weight: 800;
        text-align: left;
        width: 75%;
        margin: 0 auto;
    }
    .flow-arrow {
        width: 33.5px;
        height: 95%;
        position: absolute;
        top: 15px;
        right: 50px;
        background: #00A89A;
        clip-path: polygon(
            0 90%, 
            31% 90%, 
            31% 0, 
            69% 0, 
            69% 90%, 
            100% 90%, 
            50% 100%
        );
    }
    .arrow-text{
        text-decoration: none!important;
        position: absolute;
        bottom: 29px;
        right: 90px;
        font-size: 10px;
    }
    .arrow-text-long{
        text-decoration: none!important;
        position: absolute;
        bottom: 140px;
        right: 41px;
        font-size: 10px;
    }
    .flow-arrow-long {
        width: 33.5px;
        height: 89%;
        position: absolute;
        top: 15;
        right: 5px;
        background: #00A89A;
        clip-path: polygon(
            0 95%, 
            31% 95%, 
            31% 0, 
            69% 0, 
            69% 95%, 
            100% 95%, 
            50% 100%
        );
        
    }
    .middle-btn{
        position: relative;
        height: 165px;
        overflow: hidden; 
      }
      .entry-back {
        width: 100%;
        height: 100%;  /* 親要素の高さいっぱいにする */
        object-fit: cover;  /* 画像の比率を維持しつつフィット */
        position: absolute;
        top: 0;
        left: 0;
    }
      .contact-btn-middle{
        padding: 8px 18px;
        font-size: 12px;
        width: 175px;
        height: 35px;
        border-radius: 35px;
        z-index: 10;
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
      }
      .news-item-wrap{
        display: flex;
        flex-direction: column;
        
      }
      .news-wrap{
        width: 95%;
      }
      .news-wrap h2{
        font-size: 24px;
        width: 50%;
        border-bottom: 3px solid #36b3ac;
      }
      .news-item_date{
        flex: 0.5;
        padding: 5px 8px;
        font-size: 11px;
      }
      .news-item_title{
        font-size: 11px;
        padding: 5px 8px;
      }
      .news-item_detail{
        font-size: 14px;
        padding: 10px 15px;
      }
      .news-item_title,
      .news-item_detail  {
        flex: 1;
      }
      .sp-news-wrap{
        display: flex;
        flex: 1;
        border-bottom: 1px solid #ccc;
      }
      .news-content-wrap{
        padding: 25px 5px
      }
      .news-item-wrap{
        padding: 40px 0px;
      }
      .sp-btn-wrap p,
      .pc-slider-btn p{
        font-size: 16px;
      }
      .middle-btn .btn-red {
        font-size: 17px;
    }
}
@media screen and (min-width: 1600px) {

.pc-slider-btn .register-item,
.pc-slider-btn .download-item,
.pc-slider-btn .movieLink-item{
  font-size: 2.2rem!important;
  border-radius: 30px!important;
}

.pc-slider-btn p{
  font-size: 2.8rem;
}
}