/* SP版ヘッダーデザイン */

  body{
    position: relative;
    font-family: "Noto Sans JP", serif;
}

.sp-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #fff; /* 必要に応じて背景色を設定 */
    top: 0;
    left: 0;
}

.sp-logo img{
    width: 140.79px;
    height: auto;
}

/* logoの位置 */
.sp-logo{
    position: fixed;
    z-index: 1000;
    top: 25px;
    left: 20px;
 }


/* ハンバーガーボタンの背景 */
.burgerBtn_bg{
    position: relative;
    top: 0;
    right: 0;
    z-index: 200;
}

/* ハンバーガーボタンのサイズ */
.sp_burgerBtn img{
    width: 86px;
    height: 84px;
}

/* ハンバーガーボタンの位置 */
.sp_burgerBtn{
    position: absolute;    
    top: 0;
    right: 0;
    z-index: 220;
    background-size: contain;
}
/* ハンバーガーボタンの白丸 */
.burgerBtn{
    display: block;
    position: absolute;
    width: 27.97px;
    height: 28.17px;
    right: 25px;
    top: 26px;
    z-index: 220;
    cursor: pointer;
    transition: 0.2s;
    background-color: #fff;
    border-radius: 50%;
}

/* ハンバーガーボタンの横線 */
.burgerBtn span{
    display: block;
    position: absolute;
    margin: auto;
    width: 11.65px;
    height: 1.5px;
    background-color: #0F3C3C;
    transition: 0.2s;
}
/* ハンバーガーボタンの横線の位置 */
.burgerBtn span:nth-of-type(1){
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
}
.burgerBtn span:nth-of-type(2){
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
}
.burgerBtn span:nth-of-type(3){
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
}
/* ハンバーガーメニュー */

/* ハンバーガーメニューの背景 */
/* オーバーレイのスタイル */


.js-gNav{
    padding-top: 50px;
    padding-bottom: 40px;
    opacity: 1;
    z-index: 1000;
    transition: opacity 0.35s ease;
}
.l-gNav{
    display: none;
    overflow-x: hidden;
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 720px;
    background-color: #1CC18E;
    overflow-y: scroll;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.l-gNav.open {
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
    z-index: 1000; /* メニューバーより低く、他の要素より高く */
    display: none; /* 初期状態では非表示 */
}

.closeBtn{
    display: block;
    position: absolute;
    width: 27.97px;
    height: 28.17px;
    right: 25px;
    top: 26px;
    z-index: 220;
    cursor: pointer;
    transition: 0.2s;
    background-color: rgba(106, 104, 93, 0.7);
    border-radius: 50%;
}

.closeBtn span{
    display: block;
    position: absolute;
    margin: auto;
    top: 13px;
    left: 8.5px;
    width: 11.65px;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: 0.2s;
}
/* ハンバーガーボタンの横線の位置 */
.closeBtn span:nth-of-type(1){
    transform: rotate(45deg);
}


.closeBtn span:nth-of-type(2){
    transform: rotate(-45deg);
}

.l-drawerBody{
    position: relative;
    top: 128px;
    left: 40px;
}
.l-drawer__nav{
    font-family: Hiragino Sans, sans-serif;
    margin-bottom: 20px;
}
.l-drawer__nav li{
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    margin-bottom: 25px;
}
.l-drawer__nav li a{
    position: relative;
    bottom: 18px;
    display: inline-block;
    color : #333;
    text-decoration: none;
}
.l-drawer__sns{
    margin: 0 0 35px;
    display: flex;
    align-items: center;
}
.l-drawer__sns dt{
    margin-right: 20px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
    font-family: Hiragino Sans, sans-serif;
}
.l-drawer__sns dd ul{
    display: flex;
}
.l-drawer__sns dd ul li{
    margin-right: 5px;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 10px; /* ボタン間の隙間 */
    margin-bottom: 40px;
}

.l-lineButton{
    width: 160px;
    height: 54px;
    padding: 12px 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-family: Hiragino Sans, sans-serif;
    font-weight: auto;
    font-size: 11px;
    color: #FFF;
    background-color: #06C755;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #fff;
}
.l-lineButton::before{
    content: "";
    position: relative;
    top: 0;
    bottom: 0;
    right: 0px;
    margin: 0px 10px 0px 0px;
    width: 26px;
    height: 26px;
    background: url(/becoach/img/seg0/linebtn.svg) no-repeat center;
    transition: 0.2s;
}

.l-drawerButton{
    width: 160px;
    height: 54px;
    padding: 12px 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-family: Hiragino Sans, sans-serif;
    font-weight: auto;
    font-size: 11px;
    color: #333;
    background-color: #FFF100;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #fff;

}

.l-drawerButton::before{
    content: "";
    position: relative;
    top: 0;
    bottom: 0;
    right: 0px;
    margin: 0px 10px 0px 0px;
    width: 23px;
    height: 23px;
    background: url(/becoach/img/seg0/cvbtn_icon.svg) no-repeat center;
    transition: 0.2s;
}

.l-drawer__link{
    display: flex;
    flex-wrap: wrap;
    font-family: "Noto Sans JP", serif;
    font-size: 13px;
}
.l-drawer__link li{
    position: relative;
}
.l-drawer__link li:not(:last-child){
    margin-right: 20px;
}
.l-drawer__link a{
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #2C5E4E;
    text-decoration: none;
}
.l-drawer__link li:not(:last-child)::after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 12px;
    top: 5px;
    right: -10px;
    margin-left: 20px;
    background-color: #2C5E4E;
}

.l-linebtn{
    width: 160px;
    height: 54px;
    padding: 12px 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-family: Hiragino Sans, sans-serif;
    font-weight: auto;
    font-size: 11px;
    background-color: #06C755;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid #fff;
}

.l-linebtn::before{
    content: "";
    position: relative;
    top: 0;
    bottom: 0;
    right: 0px;
    margin: 0px 10px 0px 0px;
    width: 26px;
    height: 26px;
    background: url(/becoach/img/seg0/linebtn.svg) no-repeat center;
    transition: 0.2s;
}

/* メインビジュアル */
#mv{
    position: relative;
    text-align: center;
    /* 0421 overflow: hidden;を削除　下記2行追加 */
    overflow-x: hidden;
    overflow-y: hidden;
}
.mv_bg{
    position: relative;
    padding-top: 136px;
    padding-bottom: 465px;
    margin-bottom: 0;
    width: 100%;
    height: 565px;
    background-color: #1CC18E;
    background-size: cover;
    background-position: center;
}
.mv_title{
    position: relative;
    top: 0;
    opacity: 0; /* Initial opacity */
    /* transition: opacity 0.8s 0.8s !important; */
}

.mv_title.show {
    opacity: 1; /* Final opacity */
    transition: opacity 2s ease-in-out !important;
}


.mv_bg p{
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.sub_text{
    margin-top: 40px;
    margin-bottom: 45px;
    padding: 0 25px;
}
@media (max-width: 599px) {
    .sub_text {
        margin-top: 40px;
        padding: 0 25px;
        margin-bottom: 0px;
        }  
  }

.sp-hide{
    display: none;
}
@media (max-width: 599px) {
    .sp-hide {
    display: block;
    }  
  }

.c-btnStyle__btn{
    margin-top: 35px;
}
.c-btnStyle{
    min-width: 20vw;
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 3.25vw 12.67vw 3.25vw 6.67vw;
    position: relative;
    text-align: center;
    background-color: #FFF100;
    border-radius: 5vw;
    margin: 0;
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 1.17vw;
    line-height: 1.2;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 35px;
}
.c-btnStyle::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 23px;
    height: 23px;
    background: url(/becoach/img/seg1/sp_arrow.svg) no-repeat center;
    transition: 0.2s;
}
.top-left{
    position: absolute;
    top: 510px;
    left: 0px;
    z-index: 100;
}
.top-right{
    position: absolute;
    top: 495px;
    right: -1px;
    z-index: 100;
}
.worry_bg{
    position: relative;
    width: 100%;
    top: 76px;
    background-color: #1CC18E;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}


/* questionセクション */
.question{
    margin-top: 0;
    padding: 90px 30px 86px;
}
.question{
    position: relative;
    display: block;
    background-color: #E8F9F4;
    text-align: center;
    /* overflow: hidden; */
}
.title-en{
    position: relative;
    top: 0;
    font-family: poppins, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
    /* line-height: 1.8; */
    color: #1CC18E
}
.title-jp h2{
    position: relative;
    margin-top: 10px;
    font-family: Hiragino Sans, sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: left;
    line-height: 1.5;
    color: #333;
}
.question-list{
    margin-top: 30px;
}
.question-list li{
    margin-top: 30px;
    padding: 0 25px;
}
.question-list li{
    position: relative;
    display: block;
    text-align: center;
    background-color: #1CC18E;
    border-radius: 10px;
    padding: 25px 0 20px;
    transition: 0.2s;
}
.question-list p{
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.5;
    color: #333;
}
.solution{
    position: relative;
    display: block;
    background-color: #0F3C3C;
    text-align: right;
    overflow: hidden;
}
.solution-bg{
    padding: 80px 30px 48px;
}
h2{
    font-family: Hiragino Sans, sans-serif;
    font-weight: 600;
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin-top: 15px;
}
.solution-message p{
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    text-align: left;
    color: #fff;
    margin-top: 40px;
}
.top-L{
    position: relative;
    top: 50px;
    left: 24px;
    z-index: 100;
}
.reason-bg{
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.reason-title{
    position: relative;
    display: block;
    background-color: #E8F9F4;
    text-align: left;
    overflow: hidden;
    padding: 95px 30px 50px;
}
.reason-message p{
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    color: #333;
    margin-top: 40px;
}
.reason{
    background-color: #E8F9F4;
    padding-bottom: 60px;
}
.reason-list{
    display: flex;
    margin-top: 50px;
    max-width: 800px;
    margin: auto;
    overflow-x: scroll;
    background-color: #E8F9F4;
    padding-bottom: 12px;
}
.reason-box{
    position: relative;
    display: block;
    background-color: #1CC18E;
    border-radius: 10px;
    padding: 25px 30px;
    width: 100%;
    transition: 0.2s;
}
.reason-list li{
    width: 85%;
    padding: 25px 30px;
    flex-shrink: 0;
    list-style: none;
}
.reason ul{
    display: flex;
    /* overflow-x: scroll; */
}
.reason-list li:not(.list1){
    margin-left: 25px;
}
.reason-list::-webkit-scrollbar{
    width: 10%;
    height: 5px;
}
.reason-list::-webkit-scrollbar-thumb{
    background-color: rgba(42, 105, 86, 0.5); /* #2A6956 with 50% opacity */
    border-radius: 10px;
}
.reason-list::-webkit-scrollbar-track{
    background-color: #E8F9F4;
    border-radius: 5px;
}
.reason-box-title{
    font-family: Hiragino Sans, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    color: #0F3C3C;
    margin-top: 20px;
    margin-bottom: 30px;
    /* height: 100px; */
}
.reason-box-message{
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    height: 270px; /* 固定したい縦幅を指定 */
    overflow-y: auto; /* 必要に応じてスクロールを有効化 */
}
.box-job {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end; /* 右寄せ */
    margin-top: 25px;
    margin-right: 0;
    width: 100%; /* 必要に応じて親要素の幅を基準に調整 */
}
.reason-box-job{
    margin-top: 8px;
}
.box-name{
    font-family: "Noto Sans JP", serif;
    font-size: 13px;
    text-align: right;
}
.reason-profile{
    margin-left: 10px;
}
.coach{
    padding: 50px 30px 100px;
    background-color: #E8F9F4;
}
.coach-title{
    border-bottom: 2px solid #2A6956;
    margin: 0px 0px 25px 0px;
    padding: 0px 0px 25px 0px;
}
.coach .title-jp{
    color: #333;
}
.coach-profile{
    display: flex;
    margin-top: 50px;
    max-width: 800px;
    margin: auto;
    overflow-x: none;
    background-color: #E8F9F4;
    padding-bottom: 30px;
    padding-top: 40px;
}
.coach h3{
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}
.sep-line{
    display: flex;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
}
.coach-text{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    margin: auto;
    padding: 40px 30px ;
}
.coach-text img{
    display: none;
}
.coach-text p{
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.center-cta{
    position: relative;
    text-align: center;
    overflow: hidden;
    background-color: #1CC18E;
    padding-bottom: 70px;
}
.center-cta-wrap.show {
    opacity: 1; 
    /* transition: opacity 2s ease-in-out !important; */
}


.cta-bg{
    position: relative;
    width: 100%;
    background-color: #E8F9F4;
    background-size: cover;
    background-position: center;
}
.pc_ctaBg{
    display: none;
}
.center-cta-text p{
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 40px 25px 0px 25px;
}
.center-cta-text img{
    display: none;
}
.cta-left{
    position: relative;
    top: -60px;
    left: -26px;
    z-index: 200;
}
.cta-right{
    position: relative;
    top: -60px;
    right: -107px;
    z-index: 200;
}
.flow{
    position: relative;
    display: block;
    background-color: #E8F9F4;
    text-align: left;
    padding: 0 30px 70px;
}
.flow h2{
    color: #333;
}
.flow-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 15px;
}
.flow-list{
    margin-top: 40px;
}
.flow-icon{
    margin: auto;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
}
.flow-box-title{
    font-family: poppins, sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #1CC18E;
    margin-bottom: 10px;
}
.flow-box-message{
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.flow-bg{
    position: relative;
    width: 100%;
    background-color: #E8F9F4;
    background-size: cover;
    background-position: center;
}
.plan .title-en{
    color: #fff;
}
.plan .title-jp{
    color: #333;
}
/* .plan p{
    font-size: 15px;
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    color: #333;
    margin-top: 40px;
    margin-bottom: 30px;
} */
.plan_pc-table{
    display: none;
}
.plan{
    position: relative;
    display: block;
    background-color: #1CC18E;
    text-align: left;
    padding: 60px 20px 52px;
}




.plantable{
    grid-template-columns: 1fr;
    row-gap: 4.8vw;
    margin-top: 10.6667vw;
    margin-right: 20px;
}
.plan-box{
    padding: 4.8vw;
    display: grid;
    grid-template-rows: subgrid;
    /* border: 2px solid #E8F9F4; */
    border: 1.5px solid #2C5E4E;
    border-radius: 10px;
    background-color: #E8F9F4;
    transition: border-color .3s, box-shadow .3s, -webkit-box-shadow .3s, color .3s;
    margin-bottom: 18px;
}

.plan-box_main{
    margin-top: 0;
    text-align: center;
}
.plan-box_title{
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.plan-box_trial{
    font-family: Hiragino Sans, sans-serif;
    font-size: 32px;
    color: #1CC18E;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 25px;
}
.plan-box_txt{
    font-family: "Noto Sans JP", serif;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}
.plan-box_link{
    position: relative;
    display: block;
    font-family: noto sans jp, sans-serif;
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
    color: #333;
}
.plan-box_link::before{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: background-color .3s;
}

.plan-box_price{
    display: flex;
    align-items: center; /* 中央揃え */
    justify-content: center; /* 中央揃え */
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 25px;
}
.plan-box_price-head{
    /* translate: -0.1vw 0; */
    font-size: 13px;
}
.plan-box_price-head span{
    display: block;
    line-height: 1.1;
    color: #333;
}
.plan-box_price-num{
    font-family: poppins, sans-serif;
    width: 28vw;
    translate: 0 0.8vw;
    font-size: 28px;
    margin-left: -2.2vw;
}
.plan-box_price-txt{
    font-size: 2.8vw;
    font-weight: 500;
    margin-left: -2.9vw;
    translate: 0 1.9vw;
}
.pc_faqBg{
    display: none;
}
.faq-bg{
    position: relative;
    width: 100%;
    background-color: #1CC18E;
    background-size: cover;
    background-position: center;
}
.faq{
    position: relative;
    display: block;
    background-color: #E8F9F4;
    text-align: left;
    padding: 60px 30px 70px;
}
.faq h2{
    color: #333;
}
.faq-text p{
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-top: 40px;
    margin-bottom: 40px;
}
.faq-box{
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px 30px;
    margin-top: 30px;
    transition: 0.2s;
}
.faq-icon{
    font-family: Hiragino Sans, sans-serif;
    color: #2A6956;
    font-size: 28px;
    font-weight: 600;
    width: 70px;
}
.faq-item{
    display: flex;
    border-bottom: 1px solid #2A6956;
    margin: 0px 0px 25px 0px;
    padding: 0px 0px 20px 0px;  
    align-items: flex-start;
    flex-direction: row;
}

.faq-box{
    overflow: hidden;
    box-sizing: border-box;
}
.faq-box-q{
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #2A6956;
    text-align: left;
    justify-content: flex-start;
}

.faq-box-message-wrap{
    position: relative;
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: left;
    justify-content: flex-start;
    margin: 0px 0px 0px 40px;
}


.contact-form{
    position: relative;
    display: block;
    background-color: #E8F9F4;
    text-align: left;
    padding: 100px 30px 70px;
}
.contact-form .title-en{
    text-align: center;
}
.contact-form .title-jp{
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}
.contact-form p{
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}
.c-form{
    margin-top: 40px;
}
.form-field p{
    margin-bottom: 10px;
}
.form-field{
    padding-bottom: 30px;
}
.form-field_title{
    display: block;
    position: relative;
    width: 330px;
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 16px;
}
.form-must::after{
    content: "*";
    color: #EE2E7B;
    display: inline-block;
    margin-left: 0.2em;
}
.c-form input[type="text"], .c-form input[type="email"], .c-form textarea{
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}
/*  */
.form-group .checkbox{
    text-align: center;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 30px;
}
.form-group a{
    color: #333;
    font-family: "Noto Sans JP", serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    transition: 0.2s;
}
.form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #6E6E73;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    margin-right: 5px;
    top: -0.8px; /* 上に0.5px移動 */
}
.form-group input[type="checkbox"]:checked::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #2A6956;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.form-privacy{
    margin: 0 0 0 78px;
}
.form-privacy a{
    color: #2A6956;
}
.form-privacy label{
    display: block;
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
}

.form-group input[type="submit"]{
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background-color: #1CC18E;
    cursor: pointer;
    transition: 0.2s;
}
.form-group{
    position: relative;
    text-align: center;
    margin-top: 20px;
}
.btn{
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #FFF100;
    cursor: pointer;
    transition: 0.2s;
}
/* フッター */
.footer-content{
    position: relative;
    background-color: #E8F9F4;
}
.footerBg{
    position: relative;
    display: block;
    width: 100%;
    background-color: #1CC18E;
    border-radius: 80px 0 0 0;
    padding: 0px 30px 70px;
    text-align: left;
    background-size: cover;
    background-position: center;
}
.footer-img{
    position: absolute;
    top: -67px;
    right: 0;
}
.footer-Title{
    position: relative;
    display: block;
    text-align: left;
    border-bottom: 1px solid #0F3C3C;
    padding: 196px 0 40px;
}
.footer-nav{
    position: relative;
    display: block;
    text-align: left;
    padding: 15px 0 30px;
}
.footer-nav li{
    margin-top: 25px;
}
.footer-nav a{
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    text-decoration: none;
}
.footer-link{
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
}
.footer-link li{
    position: relative;
}
.footer-link li:not(:last-child){
    margin-right: 20px;
}
.footer-link a{
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #2C5E4E;
    text-decoration: none;
}
.footer-link li:not(:last-child)::after{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 12px;
    top: 5px;
    right: -10px;
    margin-left: 20px;
    background-color: #2C5E4E;
}
.footerBg p{
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}
.footer_sns{
    margin: 0 0 40px;
    display: flex;
    align-items: center;
}
.footer_sns dt{
    margin-right: 20px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
    font-family: Hiragino Sans, sans-serif;
}
#privacy{
    position: relative;
    display: block;
    background-color: #E8F9F4;
    text-align: left;
    padding: 60px 30px 70px;
}
.l-contents{
    position: relative;
    background-color: #fff;
}
.l-container--narrow{
    max-width: 1160px;
    padding: 60px 40px;
}
.l-container .l-container--narrow{
    position: relative;
    margin: 0 auto;
    text-align: left;
}
.c-pagetitle2{
    margin-top: 70px;
    margin-bottom: 40px;
}
.c-pagetitle2__txt{
    color: #333;
    font-size: 26px;
    position: relative;
    line-height: 1.5;
    font-weight: 600;
    text-align: left;
    margin: 0 0 1em;
    letter-spacing: 0.05em;
}
.p-privacy p{
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5em;
}
.p-privacy h2{
    font-family: "Noto Sans JP", serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-top: 2em;
}
.c-ulStyle1, .c-singleBody ul{
    margin: 0 0 1em;
}
.c-ulStyle1 li, .c-singleBody ul li{
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.25em;
    line-height: 1.6;
    font-family: noto sans jp, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}
.c-ulStyle1 li::before, .c-singleBody ul li::before{
    content: "";
    display: block;
    position: absolute;
    top: 0.7em;
    left: 0.2em;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #333;
}


.thanks-text{
    background-color: #fff;
    padding: 200px 100px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.thanks-text p{
    margin-bottom: 20px;
}


.thanks-btn{
    margin-top: 20px;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    background-color: #1CC18E;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto; /* 中央に配置 */
}


/* PC版（600）*/
@media (min-width: 599px) {
    
    .container {
    max-width: 1366px !important;
    margin: 0 auto !important;
    padding: 0 163px !important;
    box-sizing: border-box !important;
    }

    .container_reasonlist {
        max-width: 1366px !important;
        margin: 0 auto !important;
        padding: 0 0 0 163px !important;
        box-sizing: border-box !important;
        }
    
    .l-linebtn{
        display: none;
    }
    .sp-logo img{
        width: 209.37px;
        height: auto;
    }
    .sp_burgerBtn img{
        width: 139px;
        height: 138px;
    }
    /* pcタイトル */
    .mv_title{
        opacity: 1;
        transition: opacity 0.8s 0.8s !important;
    }
    .mv_title img{
        width: 802.1px;
        height: auto;
        margin-bottom: 20px;
    }
    .mv_bg{
        padding-bottom: 599px;
    }
    .mv_bg p{
        font-size: 18px;
        line-height: 2;
    }
    /* PC_ハンバーガーボタンの白丸 */
        .burgerBtn{
        width: 48px;
        height: 48px;
        right: 40px;
        top: 40px;
        z-index: 220;
        cursor: pointer;
        transition: 0.2s;
        background-color: #fff;
        border-radius: 50%;
        }

    /* PC_ハンバーガーボタンの横線 */
    .burgerBtn span{
        display: block;
        position: absolute;
        margin: auto;
        width: 20px;
        height: 1.5px;
        background-color: #0F3C3C;
        transition: 0.2s;
    }
    /* ハンバーガーボタンの横線の位置 */
    .burgerBtn span:nth-of-type(1){
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
    }
    .burgerBtn span:nth-of-type(2){
        top: 23px;
        left: 50%;
        transform: translateX(-50%);
    }
    .burgerBtn span:nth-of-type(3){
        top: 28px;
        left: 50%;
        transform: translateX(-50%);
    }

    .closeBtn{
        width: 48px;
        height: 48px;
        right: 40px;
        top: 40px;
        z-index: 220;
        cursor: pointer;
        transition: 0.2s;
        background-color: rgba(106, 104, 93, 0.7);
        border-radius: 50%;
    }
    
    .closeBtn span{
        display: block;
        position: absolute;
        margin: auto;
        top: 23px;
        left: 14px;
        width: 20px;
        height: 1.5px;
        background-color: rgba(255, 255, 255, 0.8);
        transition: 0.2s;
    }
    /* ハンバーガーボタンの横線の位置 */
    .closeBtn span:nth-of-type(1){
        transform: rotate(45deg);
    }
    .closeBtn span:nth-of-type(2){
        transform: rotate(-45deg);
    }

    .l-gNav{
        width: 33%;
    }
    .cta-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .c-btnStyle__btn{
        margin-top: 45px;
    }
    .c-btnStyle{
        padding: 14px 57px 15px 28px;
        font-size: 15px;
        margin-top: 0px;
    }
    .c-btnStyle::after{
        width: 26px;
        height: 26px;
        background: url(/becoach/img/seg1/l_arrow.svg) no-repeat center;
    }
    .mv-bg img{
        width: 100%;
        height: auto;
        top: auto;
        top: 30px;
        background-color: #1CC18E;
    } 
    
    @media (min-width: 900px) {
        .top-right{
            position: absolute;
            width: 250px;
            height: auto;
            z-index: 100;
        }
        .top-left{
            position: absolute;
            width: 250px;
            height: auto;
            z-index: 100;
        }

    @media (min-width: 1250px) {
    .top-right{
        position: absolute;
        /* width: 326.44px; */
        width: 20%;
        height: auto;
        top: 343px;
        right: 80px;
        z-index: 100;
    }
    .top-left{
        position: absolute;
        /* width: 275.97px; */
        width: 17%;
        height: auto;
        top: 390px;
        left: 80px;
        z-index: 100;
    }
    .worry_bg{
        top: 30px;
    }
}
@media (min-width: 1450px) {
    .mv_title img{
        width: 802.1px;
        height: auto;
        margin-bottom: 60px;
    }    
    .top-right{
        position: absolute;
        /* width: 326.44px; */
        width: 18.21vw; /* 273.2px ÷ 1500px × 100 = 18.21vw */
        height: auto;
        top: 343px;
        right: 220px; /* 220px ÷ 1450px × 100 = 15.17vw */
        z-index: 100;
    }
    .top-left{
        position: absolute;
        /* width: 275.97px; */
        width: 15.48vw; /* 232.22px ÷ 1500px × 100 = 15.48vw */
        height: auto;
        top: 390px;
        left: 200px;
        z-index: 100;
    }
    .worry_bg{
        top: 30px;
    }
    .mv_bg{
        height: 800px;
    }
    .top-L{
        width: 300px;
        height: auto;
        top: 4px;
        left: 50px;
    }
}

.plantable {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* ボックス間の隙間 */
    margin-top: 40px;
    margin-right: 20px;
}

.plan-box {
    flex: 1 1 calc(33.333% - 20px); /* 3列レイアウト */
    padding: 30px 30px;
    display: grid;
    grid-template-rows: subgrid;
    border: 1.5px solid #2C5E4E;
    border-radius: 10px;
    background-color: #E8F9F4;
    transition: border-color .3s, box-shadow .3s, -webkit-box-shadow .3s, color .3s;
    margin-bottom: 0px;
}
.plan-box:hover {
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.plan-box_main {
    margin-top: 0;
    text-align: center;
}

.plan-box_title {
    font-family: "Noto Sans JP", serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.plan-box_trial {
    font-family: Hiragino Sans, sans-serif;
    font-size: 48px;
    color: #1CC18E;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 25px;
}

.plan-box_txt {
    font-family: "Noto Sans JP", serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
}

.plan-box_link {
    position: relative;
    display: block;
    font-family: noto sans jp, sans-serif;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.plan-box_link::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: background-color .3s;
}

.plan-box_price {
    display: flex;
    align-items: center; /* 中央揃え */
    justify-content: center; /* 中央揃え */
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 25px;
}

.plan-box_price-head {
    font-size: 20px;
}

.plan-box_price-head span {
    display: block;
    line-height: 1.1;
    color: #333;
}

.plan-box_price-num {
    font-family: poppins, sans-serif;
    width: 18vw;
    translate: 0 0.4vw;
    font-size: 48px;
    margin-left: -3.3vw;
    color: #333;
}

.plan-box_price-txt {
    font-size: 16px;
    font-weight: 500;
    margin-left: -4vw;
    translate: 0 0.8vw;
    color: #333;
}
    /* PC_メインビジュアル */
    
    /*     
    .sub_text{
        margin-top: 40px;
        padding: 0 25px;
    }
    .top-left{
        position: absolute;
        top: 470px;
        left: 0px;
        z-index: 100;
    }
        */ 
    /* questionセクション */
    .question.title-jp br{
        display: none;
    }
    .question-list{
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .question{
        padding: 45px 0px 80px;
    }
    .question{
        position: relative;
        display: block;
        background-color: #E8F9F4;
        text-align: center;
        /* overflow: hidden; */
    }

    .question-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .question-list li {
        flex: 1 1 calc(33.333% - 20px);
        box-sizing: border-box;
        padding: 50px 37px;
        margin-top: 30px;
        transition: flex-basis 0.2s ease;
    }

    @media (max-width: 1200px) {
        .question-list li {
            flex: 1 1 calc(50% - 20px);
        }
    }

    @media (max-width: 768px) {
        .question-list li {
            flex: 1 1 100%;
        }
    }
    @media (max-width: 1400px) {
        .question-list li {
            flex: 1 1 100%;
        }
    }

    .question_wrap{
        text-align: center;
    }
    .title-en{
        position: relative;
        top: 0;
        font-family: poppins, sans-serif;
        font-weight: 700;
        font-size: 15px;
        text-align: left;
        /* line-height: 1.8; */
        color: #1CC18E
    }
    .title-jp h2{
        font-size: 26px;
        margin-top: 25px;
    }
    .question-list li{
        position: relative;
        width: 298px;
        padding: 50px 37px 50px; 
        margin-top: 30px;
    }
    .question-list p{
        font-family: "Noto Sans JP", serif;
        font-weight: 500;
        font-size: 16px;
        margin-top: 30px;
        line-height: 1.8;
        color: #333;
    }

    h2{
        font-size: 26px;
        line-height: 1.8;
        margin-top: 25px;
    }
    .solution-message p{
        width: 50%;
        font-size: 18px;
        line-height: 2;
    }
    .solution-bg{
        padding: 100px 0 0;
    }


    .solution{
        position: relative;
        display: block;
        background-color: #0F3C3C;
        text-align: right;
        overflow: hidden;
    }
    .solution-message{
        display: flex;
    }
    .top-L{
        width: 300px;
        height: auto;
        top: 4px;
        left: 170px;
    }
    
    /* pc版ーreason */

    /* .reason-bg{
        position: relative;
        width: 100%;
        background-size: cover;
        background-position: center;
    } */
    .reason-title {
        padding: 40px 0px 80px;
    }

    .reason-message p {
        font-size: 18px;
        line-height: 2;
    }

    .reason {
        background-color: #E8F9F4;
        padding-bottom: 60px;
    }

    .reason-list {
        display: flex;
        margin-top: 50px;
        max-width: 100%;
        overflow-x: scroll;
        background-color: #E8F9F4;
        padding-bottom: 20px;
    }

    .reason-list li {
        width: 40%;
    }

    .reason ul {
        display: flex;
    }

    .reason-list li:not(.list1) {
        margin-left: 25px;
    }

    .reason-list::-webkit-scrollbar {
        width: 80%;
        height: 8px;
    }

    .reason-list::-webkit-scrollbar-thumb {
        background-color: rgba(42, 105, 86, 0.2); /* #2A6956 with 50% opacity */
        border-radius: 10px;
    }

    .reason-list::-webkit-scrollbar-track {
        background-color: #E8F9F4;
        border-radius: 5px;
    }

    .reason-box-title {
        font-weight: 600;
        font-size: 18px;
        line-height: 1.8;
    }

    .reason-box-message {
        font-weight: 500;
        font-size: 16px;
        line-height: 1.8;
        height: 280px; /* 固定したい縦幅を指定 */
        width: 100%;

    }

    /* pc版ーcoach紹介 */
    .coach{
        padding: 80px 0px 100px;
    }
    .coach img{
        display: none;
    }
    .coach-text{
        display: flex;
        padding: 70px 70px;
        margin-top: 50px;
    }
    .coach-col_1{
        margin: 0px 65px 23px 0px;
    }
    .coach-col_1 img{
        display: block;
        width: 100%;
        background-color: #fff;
    }
    .coach-col_2{
        width: 66%;
    }
    .coach-title{
        margin: 0px 0px 25px 0px;
        padding: 0px 0px 25px 0px;
    }
    .coach .title-jp{
        color: #333;
    }
    .coach-profile{
        margin-top: 0px;
        padding-top: 0px;
    }
    .coach h3{
        font-size: 23px;
        text-align: left;
    }
    .coach-text p{
        font-size: 16px;
        line-height: 1.8;
    }

    /* pc版ーコンバージョン */
    .center-cta{
        position: relative;
        text-align: center;
        overflow: hidden;
        /* border-radius: 60% / 100% 100% 0 0; */
        background-color: #1CC18E;
        padding-bottom: 70px;
    }
    .cta-bg {
        display: none;
    }
    .pc_ctaBg{
        position: relative;
        display: block;
        width: 100%;
        background-color: #E8F9F4;
        background-size: cover;
        background-position: center;
    }
    .cta_title img{
        width: 538.4px;
        height: auto;
    }
    .center-cta-text {
        display: flex;
    }
    .center-cta-text img{
        display: block;
    }
    .center-cta-text p{
        font-size: 18px;
        line-height: 2;
        width: 488px;
        margin: 0  auto;
        margin-top: 50px;
    }
    .cta-left{
        position: relative;
        width: 209.4px;
        top: -6px;
        left: 40px;
        z-index: 200;
    }
    .cta-right{
        position: relative;
        width: 245.79px;
        top: -20px;
        right: 35px;
        z-index: 200;
    }

    /* pc版ーflow */
    .pc-flowImg img{
        display: none;
    }
    .flow{
        display: block;
        background-color: #E8F9F4;
        text-align: left;
        box-sizing: border-box;
        padding: 100px 0px 100px;
    }
    .flow-box{
        position: relative;
        display: flex;
        justify-content: left;
        align-items: center;
        padding: 50px 40px;
    }
    .flow-list{
        margin-top: 40px;
    }
    .flow-box-title{
        font-weight: 500;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 0px;
        margin-top: 3px;
    }
    .flow-box-message{
        font-weight: 600;
        font-size: 18px;
        margin-left: 25px;
    }
    .flow-icon{
        margin-top: 25px;
        margin-bottom: 25px;
    }


    /* pc版ーplan */
    .plan{
        padding: 0px 0px 100px;
    }
    .plantable img{
        display: block;
        margin-top: 40px;
    }
    }

    /* pc版ーFAQ */
    .faq-bg{
        display: none;
    }
    .pc_faqBg{
        position: relative;
        display: block;
        width: 100%;
        background-color: #1CC18E;
        background-size: cover;
        background-position: center;    
    }
    .faq{
        padding: 80px 0px 80px;
    }
    .faq h2{
        color: #333;
    }
    .faq-text p{
        font-size: 18px;
        line-height: 1.8;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .faq-box{
        position: relative;
        display: block;
        background-color: #fff;
        border-radius: 10px;
        padding: 40px 30px;
        margin-top: 30px;
        transition: 0.2s;
    }
    .faq-icon{
        font-size: 32px;
        width: 50px;
    }
    .faq-item{
        align-items: center;
    }
    .faq-box-q{
        font-size: 18px;
    }

    .faq-box-message-wrap{
        font-size: 18px;
        margin: 0px 0px 0px 52px;
    }
 
    /* pc版ーcontact */
    .contact-form{
        padding: 100px 0px 80px;
    }
    .contact-form .title-en{
        text-align: center;
    }
    .contact-form .title-jp{
        text-align: center;
        color: #333;
        margin-bottom: 40px;
    }
    .contact-form p{
        font-size: 18px;
    }
    .c-form input[type="text"], .c-form input[type="email"], .c-form textarea{
        padding: 15px 20px;
        font-size: 18px;
    }
    .form-field_title{
        width: 100%;
        font-size: 18px;
    }
    .contact-text{
        text-align: center;
    }
    /* pc版-footer */
    .footer-content{
        position: relative;
        background-color: #E8F9F4;
    }
    .footerBg{
        border-radius: 400px 0 0 0;
        padding: 0px 0px 70px;
        text-align: left;
        background-size: cover;
        background-position: center;
    }
    .footer-img{
        position: absolute;
        top: 430px;
        right: 70px;
    }
    .footer-img img{
        width: 420px;
    }
    .footer-Title img{
        width: 581.6px;
        height: auto;
    }
    .footer-Title{
        position: relative;
        display: block;
        width: 580px;
        text-align: left;
        border-bottom: 1px solid #0F3C3C;
        padding: 196px 0 60px;
    }
    .footer-nav{
        position: relative;
        display: block;
        text-align: left;
        padding: 50px 0 40px;
        column-count: 2;
        width: 700px;
    }

    .footer-nav li:nth-child(-n+1){
        margin-top: 0px;
    }
    .footer-nav a{
        font-size: 18px;
    }
    .footer-link{
        font-size: 13px;
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .footer-link li{
        position: relative;
    }
    .footer-link li:not(:last-child){
        margin-right: 20px;
    }
    .footer-link a{
        font-family: "Noto Sans JP", serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 1.5;
        color: #2C5E4E;
        text-decoration: none;
    }
    .footer-link li:not(:last-child)::after{
        content: "";
        display: block;
        position: absolute;
        width: 1px;
        height: 12px;
        top: 5px;
        right: -10px;
        margin-left: 20px;
        background-color: #2C5E4E;
    }
    .footerBg p{
        font-family: "Noto Sans JP", serif;
        font-weight: 500;
        font-size: 13px;
        line-height: 1.5;
        color: #333;
    }
    .footer_sns{
        margin: 0 0 40px;
        display: flex;
        align-items: center;
    }
    .footer_sns dt{
        margin-right: 20px;
        font-size: 13px;
        line-height: 1.5;
        font-weight: 500;
        color: #333;
        font-family: Hiragino Sans, sans-serif;
    }
    .l-container--narrow{
        max-width: 100%;
        padding: 80px 0px 100px;
    }

    }
/* PC版（1250）*/
@media (min-width: 1455px) {
    .sub_text{
        width: 800px;
        margin: auto;
        font-size: 40px;
        margin-bottom: 45px;
    }
}
/* 画像がぼやけた状態から始まり、クリアになるアニメーション */
.blurIn {
    animation-name:blurInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }

@keyframes blurInAnime {
    0% {
        filter: blur(10px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}
/* テキストがふわっと出現するアニメーション */
/* @keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
} */
/* テキストが上からふわっと出現するアニメーション */
.fadeIn {
    animation-name:fadeInAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
@keyframes fadeInAnime{
    from {
      opacity: 0;
    transform: translateY(20px);
    }

    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
        .fadeInTrigger{
            opacity: 0;
        }

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
  
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(20px);
      }
  
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }
  
  
    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
  
    .fadeUpTrigger{
        opacity: 0;
    }
  
  
    /* その場で */
  /* .fadeIn{
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    } */
  
  
    /* @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
  
      to {
        opacity: 1;
      }
    } */
  
.fadeUpSlow {
    animation-name: fadeUpAnimeSlow;
    animation-duration: 2s; /* 遅くするために時間を長く設定 */
    animation-fill-mode: forwards;
}

@keyframes fadeUpAnimeSlow {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.qxCTlb {   
    border-radius: 4px;
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    font-weight: 600;  
    letter-spacing: .25px;
    color: white;
    border-width: 0;
    cursor: pointer;
    white-space: break-spaces;
    word-break: break-word;
}
@media (max-width: 599px) {
    .qxCTlb {
    font-size: 14px;
    }  
  }


.plan-box .qxCTlb {
    border-radius: 4px;
    font-family: "Noto Sans JP", serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    color: white;
    border-width: 0;
    cursor: pointer;
    white-space: break-spaces;
    word-break: break-word;
}
@media (max-width: 599px) {
    .plan-box .qxCTlb {
    font-size: 12px;
    }  
  }

.hur54b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: rgba(32, 33, 36, .6);
    /* padding: 72px; */
    padding: 5% 5% 5% 5%;
    z-index: 9999;
}
@media (max-width: 599px) {
    .hur54b {
    padding: 10% 5% 10% 5%;
    }  
  }


/* .mmGMM {
    border: none;
    border-radius: 8px;
    background-color: white;
    width: 100%;
    height: 100%;
} */

.mmGMM {
    width: 100%; /* 横幅を100%に設定 */
    background-color: white;
    height: 100%; /* 高さを100%に設定 */
    border: none; /* 枠線をなしに設定 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影を追加 */
    border-radius: 8px; /* 角を丸くする */
}

.Xfsokf {
    position: absolute;
    top: 54px;
    right: 58px;
    display: flex;
    align-items: center;
    border-radius: 18px;
    background-color: #1f1f1f;
    height: 36px;
    padding: 16px;
    cursor: pointer;
}

@media (max-width: 599px) {
    .Xfsokf {
        top: 20px;
        right: 10px;
    }
}

.L0Dvsd {
    color: #fff;
    font-size: 18px;
    margin-right: 8px;
}

.uE25ec {
    font-size: 14px;
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    letter-spacing: .25px;
    color: #fff;
}
