@charset "UTF-8";
/*===================================
ヘッダー
===================================*/
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px;
    color: #204666;
    background-color: #fff;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 25%);
}

/* .header__logo{
    width: 15%;
} */

.header__logo-img{
    width: 90%;
}

.header__link{
    align-items: center;
}

.header__nav-list{
    font-size: 1.5rem;
    font-weight: 700;
    gap: 20px;
    margin-right: 20px;
}

.header__nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 4px; /* 下線との余白 */
    text-decoration: none;
    color: inherit;
}

.header__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #FF6E4A;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.header__nav-link:hover::after {
    transform: scaleX(1);
}

.header__cta-link{
    max-width: 350px;
} 

@media screen and (max-width: 768px) {
    .header{
        padding: 15px;
    }

    /* 初期状態（is-ready が無い間） */
    .header:not(.is-ready),
    .header:not(.is-ready) * {
        transition: none;
    }

    /* is-ready 以降 */
    .header.is-ready,
    .header.is-ready * {
        transition: all 0.4s ease;
    }

    .header__logo{
        width: 30%;
    }

    .header__logo-img{
        width: 100%;
    }

    .header__nav-item{
        border-bottom: 1px solid #C6C5C6;
    }

}

/*===================================
ハンバーガーメニュー
===================================*/
.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #204666;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger__line:nth-child(1) {
  top: 0;
}
.hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__line:nth-child(3) {
  bottom: 0;
}
.is-open .hamburger__line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media screen and (max-width: 768px) {

  .header {
    display: flex;
    align-items: center;
  }

  .header__logo {
    flex-shrink: 0;
  }

  .hamburger {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1001;
  }

  /* PCナビはSPでは非表示 or off-canvas */
  .header__link {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 100px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
  }

  .header.is-open .header__link {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    margin-right: 0;
  }

  .cta-button {
    margin-top: 24px;
  }
}


/*===================================
共通
===================================*/
.cta-button__link{
    position: relative;
    width: 100%;
    padding:  20px 15px;
    text-align: center;
    background: linear-gradient(90deg, #FF6E4B, #FAAEAC);
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.5px;
    transition: 0.5s;
}

.cta-button__link:hover{
    opacity: 0.7;
}

.cta-button-text{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.cta-button-text::after{
    content: "";
    background-image: url(../img/counseling-flow/LINE.png);
    display: block;
    background-size: contain;
    position: absolute;
}

.cta-button--lg .cta-button-text::after{
    width: 60px;
    height: 60px;
    right: 30px;
}

.cta-button--sm .cta-button-text::after{
    width: 50px;
    height: 50px;
    right: 20px;
}

.cta-button--lg{
    max-width: 500px;
    font-size: 2.8rem;
    margin-top: 20px;
}

.cta-button--sm{
    max-width: 350px;
    font-size: 2rem;
    margin: 10px auto 0;
}

.cta_button__line--lg{
    width: 60px;
    margin-left: 20px;
}

.cta_button__line--sm{
    width: 45px;
    margin-left: 15px;
}

.l-main{
    position: relative;
    margin-top: 120px;
}

.l-container{
    max-width: 1080px;
    margin: 0 auto;
}

.bg-orange{
    background-color: #FFF6F1;
}

.section-title__jp{
    font-size: 3.2rem;
    font-weight: bold;
    display: inline-block;
    background: linear-gradient(transparent 80%, rgb(250, 174, 172) 0);
}

.section-title__en{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.4rem;
    letter-spacing: 1px;
    display: block;
    color: #C6C5C6;
}

@media screen and (max-width: 768px) {

    .cta-button--sm{
        font-size: 1.8rem;
    }

    .cta-button-text{
        margin-right: 40px;
    }

    .cta-button--lg .cta-button-text::after{
        width: 45px;
        height: 45px;;
    }

    .cta-button--sm .cta-button-text::after{
        width: 45px;
        height: 45px;
        right: 30px;
    }

    .l-main{
        margin-top: 70px;
    }

    .cta-button--lg{
        font-size: 1.8rem;
    }

    .section-title__jp{
         font-size: 2.2rem;
         background: linear-gradient(transparent 85%, rgb(250, 174, 172) 0);
    }

    .section-title__en{
        font-size: 1.3rem;
    }
}

/*===================================
メインビジュアル
===================================*/
.mv__inner{
    background-image: url(../img/mv/mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 930px; /* PCでの見た目は維持 */
    position: relative;
}

.mv__content{
    position: absolute;
    top: 45px;
    left: 40px;
}

.mv__title{
    font-size: 6rem;
    line-height: 1.3;
    border-left: solid 14px #FF6E4A;
    padding-left: 30px;
}

.mv__lead{
    font-size: 4rem;
    margin-top: 15px;
}

.campaign--lg{
    font-size: 2.6rem;
    letter-spacing: 3px;
}

.campaign--lg .campaign__emphasis{
    font-size: 4rem;
    color: #FF6E4A;
}

@media screen and (max-width: 768px) {

    .mv__inner{
        background-image: url(../img/mv/mv_sp.jpg);
        background-size: contain;
        background-position: top;
        min-height: 700px;
    }

    .mv__content{
        top: auto;
        bottom: 2%;
        left: 15px;
        right: 15px;
        background-color: #fff;
        padding: 15px;
        border-radius: 15px;
        letter-spacing: 2px;
    }

    .mv__title{
        font-size: 2.7rem;
        padding-left: 15px;
        border-left: solid 9px #FF6E4A;
    }

    .mv__lead{
        font-size: 2rem;
    }

    .campaign--lg{
        font-size: 1.6rem;
        margin-top: 5px;
        letter-spacing: 2px;
    }

    .campaign--lg .campaign__emphasis{
        font-size: 3rem;
    }
    
}

/*===================================
こんなお悩み、ありませんか？
===================================*/

.problems__inner{
    padding: 18px 18px 9px;
}

.problems__list{
    position: relative;
}

.problems__item{
    text-align: center;
    position: absolute;
}

.problems__item__01{
    background-image: url(../img/problems/bg_problems_fukidashi1.png);
    background-repeat: no-repeat;
    width: 220px;
    height: 94px;
    background-size: 100%, auto;
    top: 130px;
    left: 163px;
}

.problems__item__01 .problems_txt{
    position: absolute;
    top: 21px;
    right: 0;
    bottom: 0;
    left: -12px;
}

.problems__item__02{
    background-image: url(../img/problems/bg_problems_fukidashi2.png);
    background-repeat: no-repeat;
    width: 220px;
    height: 117px;
    background-size: 100%, auto;
    top: 23px;
    left: 400px;
}

.problems__item__02 .problems_txt{
    position: absolute;
    top: 27px;
    right: 0;
    bottom: 0;
    left: 5px;
}

.problems__item__03{
    background-image: url(../img/problems/bg_problems_fukidashi3.png);
    background-repeat: no-repeat;
    width: 220px;
    height: 94px;
    background-size: 100%, auto;
    top: 130px;
    right: 163px;
}

.problems__item__03 .problems_txt{
    position: absolute;
    top: 21px;
    right: 0;
    bottom: 0;
    left: 17px;
}

.problems__image{
    width: fit-content;
    margin: 150px auto 0;
}

@media screen and (max-width: 768px) {
    .problems__list{
        max-width: 400px;
        margin: 0 auto;
        font-size: 1.3rem;
    }

    .problems__item__01{
        background-image: url(../img/problems/bg_problems_fukidashi2.png);
        width: 48%;
        height: 117px;
        top: 26px;
        left: 0;
    }

    .problems__item__01 .problems_txt{
        top: 18px;
        left: 3px;
    }

    .problems__item__02{
        width: 48%;
        height: 117px;
        top: 26px;
        left: auto;
        right: 0;
    }

    .problems__item__02 .problems_txt{
        top: 18px;
        right: 0;
        bottom: 0;
        left: 7px;
    }

    .problems__item__03{
        background-image: url(../img/problems/bg_problems_fukidashi4.png);
        width: 48%;
        height: 124px;
        top: 370px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    .problems__item__03 .problems_txt{
        top: 36px;
        left: 3px;
    }

    .problems__image{
        margin: 135px auto 115px;
    }
}

/*===================================
T’s SoultioNの魅力
===================================*/
.strengths__content{
    margin-top: 25px;
}

.strengths__item{
    display: flex;
    gap: 40px;
}

.strengths__image img{
    width: 500px;
}

.strengths__item--reverse{
    flex-direction: row-reverse;
}

.strengths__point{
    font-size: 2.8rem;
    font-weight: bold;
    color: #FF6E4A;
    position: relative;
    padding-left: 20px;
}

.strengths__point::before{
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #FF6E4A;
}

.strengths__title{
    font-size: 2.8rem;
    font-weight: bold;
}

.strengths__text{
    margin-top: 20px;
    line-height: 2;
}

.note-mark {
    font-size: 0.7em;
    vertical-align: super;
}

.plan__note {
    font-size: 1.2rem;
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    
    .strengths__item{
        flex-direction: column;
        gap: 30px;
    }

    .strengths__image img{
        width: 100%;
    }

    .strengths__point{
        font-size: 2.4rem;
    }

    .strengths__point::before{
        top: 14px;
    }

    .strengths__title{
        font-size: 2.4rem;
    }

    .strengths__text{
        margin-top: 15px;
    }

    
}

/*===================================
迷ったら、まずは無料カウンセリング
===================================*/
.consulting{
    background-image: url(../img/counseling/bg_consulting.png);
    background-repeat: no-repeat;
    padding: 30px 0;
}

.consulting__inner{
    background-color: #fff;
    border-radius: 15px;
    padding: 20px 0;
    text-align: center;
}

.consulting__title{
    font-size: 3.6rem;
    display: inline-block;
    background: linear-gradient(transparent 80%, rgb(250, 174, 172) 0);
}

.consulting__subtitle{
    font-size: 3rem;
    margin-top: 20px;
}

.consulting__text{
    font-size: 2rem;
    margin-top: 20px;
}

.campaign--sm{
    margin-top: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.campaign--sm::before{
    content: "";
    position: absolute;
    top: 65%;
    left: -25px;
    width: 20px;
    height: 1px;
    background-color: #333;
    transform: translateY(-50%) rotate(40deg);
}

.campaign--sm::after{
    content: "";
    position: absolute;
    top: 65%;
    right: -30px;
    width: 20px;
    height: 1px;
    background-color: #333;
    transform: translate(-50%, -50%) rotate(-40deg);
}

.campaign--sm .campaign__emphasis{
    font-size: 3.2rem;
    color: #FF6E4A;
}

@media screen and (max-width: 768px) {
    .consulting{
        background-size: cover;
        padding: 30px 15px;
    }

    .consulting__inner{
        padding: 20px 15px;
    }

    .consulting__title{
        font-size: 2.5rem;
    }

    .consulting__subtitle{
        font-size: 2rem;
    }

    .consulting__text{
        font-size: 1.6rem;
    }

    .campaign--sm .campaign__emphasis{
        font-size: 2.8rem;
    }

    .campaign--sm::before,
    .campaign--sm::after{
        display: none;
    }
}

/*===================================
コース詳細
===================================*/
.course-table{
    margin-top: 55px;
}

.course-table__plan{
   font-size: 1.8rem;
   font-weight: bold;
   padding: 20px 0; 
   text-align: center;
   border-left: solid 3px #C6C5C6;
}

.course-table__plan--light{
    background-color: rgb(250 174 172 / 30%);
}

.course-table__plan--standard{
    background-color: rgb(255 154 128 / 50%);
}
.course-table__plan--professional{
    background-color: rgb(255 110 74 / 60%);
    border-right: solid 3px #C6C5C6;
}

.course-table__row{
    border-top: solid 3px #C6C5C6;
    border-left: solid 3px #C6C5C6;
}

.course-table__body{
    border-bottom: solid 3px #C6C5C6;
    border-right: solid 3px #C6C5C6;
}

.course-table__label{
    width: 18%;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding: 18px;
}

.course-table__cell{
    padding: 20px 10px;
    border-left: solid 3px #C6C5C6;
    vertical-align: top;
}

.course-table__list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-table__list li{
    position: relative;
    padding-left: 15px;
}

.course-table__list li::before{
    content: "";
    position: absolute;
    top: 0.5em;          /* テキスト中央に合わせる */
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #FAAEAC;
    border-radius: 50%;
}

.campaign-banner__inner{
    width: fit-content;
    margin: 40px auto 0;
}

.campaign-banner__inner img{
    width: 1085px;
}

@media (max-width: 768px) {
    .course__inner{
        position: relative;
    }

    .course__table-wrapper {
        overflow-x: auto;
    }

    .course-table {
        display: block;
        white-space: nowrap;
    }

    .course-table__label{
        padding: 15px;
    }

    .campaign-banner__inner img{
        width: 100%;
    }
}

/*===================================
よくあるご質問
===================================*/
.faq__list{
    margin-top: 35px;
}

.faq__item{
    cursor: pointer;
}

.faq__question{
    background-color: #F5F5F5;
    padding: 13px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* ＋ */
.faq__question-button::before,
.faq__question-button::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 2px;
  background: #FF6E4A;
  transition: opacity 0.3s ease;
}

.faq__question-button::before {
  transform: translateY(-50%);
}

.faq__question-button::after {
  transform: translateY(-50%) rotate(90deg);
}

/* − */
.faq__item.is-open .faq__question-button::after {
  opacity: 0;
}

.faq__icon{
    font-size: 2.5rem;
    font-weight: bold;
    display: inline-block;
}

.faq__icon--question{
    background-color: #FF6E4A;
    border-radius: 50%;
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}

.faq__icon--answer{
    border: solid 1px #FF6E4A;
    border-radius: 50%;
    color: #FF6E4A;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 29px;
    flex-shrink: 0;
}

.faq__question-text{
    font-size: 2rem;
    font-weight: bold;
    color: #204666;
    padding-left: 10px;
}

/* アコーディオン */
.faq__answer {
    display: flex;
    gap: 10px;
    max-height: 0;
    padding: 0 13px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
    max-height 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* 開いた状態 */
.faq__item.is-open .faq__answer {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px){
    .faq__question{
        margin-top: 10px;
        margin-bottom: 10px; 
    }
    
    .faq__question-button{
        display: flex;
        align-items: center;
    }

    .faq__icon{
        font-size: 2rem;
    }

    .faq__icon--question{
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .faq__icon--answer{
         width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .faq__question-text{
        font-size: 1.6rem;
        width: 90%;
        display: inline-block;
        text-align: left;
        padding-right: 35px;
    }


}

/*===================================
卒業後も、つながり続けるコミュニティ
===================================*/
.community__content{
    display: flex;
    gap: 35px;
    margin-top: 35px;
}

.community__text p{
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.community__image img{
    width: 475px;
}

@media (max-width: 768px){
    .community__content{
        flex-direction: column;
        gap: 20px;
    }

    .community__text p{
        font-size: 1.6rem;
    }

    .community__image img{
        width: 100%;
    }
}

/*===================================
無料カウンセリングの流れ
===================================*/
.counseling-flow{
    padding: 20px 0 50px;
}
.counseling-flow__steps{
    margin-top: 25px;
}

.counseling-flow__step{
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    position: relative;
}

.counseling-flow__step::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 33px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #FAAEAC;
}

.counseling-flow__step:last-child::after {
  content: none;
}

.counseling-flow__step-number{
    font-size: 1.4rem;
    font-weight: bold;
    color: #FF6E4A;
    text-align: center;
    margin-bottom: 5px;
}

.counseling-flow__step-image{
    width: 80px;
}

.counseling-flow__step-content{
    width: 100%;
}

.counseling-flow__step-title{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px; 
}

.counseling-flow__step-text{
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 25%);
}

.line_link{
    padding-bottom: 1px;
    border-bottom: solid 1px #204666; 
    transition: 0.5s;
}

.line_link:hover{
    color: #FF6E4A;
}

@media (max-width: 768px){
    .counseling-flow__step-image{
        width: 70px;
    }

    .counseling-flow__step-title{
        font-size: 1.6rem;
    }

}

/*===================================
LINE右下固定ボタン
===================================*/

.cta-line{
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: 0.5s;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none; /* クリック防止 */
}

/* 表示状態 */
.cta-line.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cta-line:hover{
    opacity: 0.7;
}

.cta-line__icon{
    width: 130px;
    height: 130px;
}

@media (max-width: 768px){

    .cta-line{
        bottom: 10px;
        right: 10px;
    }

    .cta-line__icon{
         width: 100px;
         height: 100px;
    }

}

/*===================================
フッター
===================================*/
.l-footer{
    padding: 30px;
    text-align: center;
}

@media (max-width: 768px){
   .l-footer{
        padding: 20px;
    }
}








