@charset "UTF-8";

html{
    scroll-behavior: smooth;
}


/* モバイルファースト（サイトの全体共通） */
body {
    font-size: 0.875rem;
    /* 14px */
    font-family: "YakuHanJP","Outfit light","Zen Kaku Gothic New", " Noto Sans JP", "sans-serif";
    color: #4A2400;
    line-height: 1.8;
    letter-spacing: 0.03em;
    position: relative;
    height: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.shortcut{
    border-radius: 50px;
}

.page_link{
    transition: .5s ease;
}

    .pc_bg {
        display: block;
        /* background-color: #f73; */
        background-image: url(../image/pc_back.jpg);
        background-size: cover;
        background-position: center center;
        position: fixed;
        /* overflow: hidden; */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

/* PCメニュー */
.pc_content_left{
    display: none;
}

.pc_content_right {
    display: none;
}



.contents{
height: auto;
max-width: 470px;
background-color: #fff;
margin:0 auto;
    position: relative;
    z-index: 0;
    box-shadow: 0 20px 20px rgba(74, 36, 0, .10);
}

/* コンテンツ幅 */
.wrapper {
    /* max-width: 1280px; */
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}

/* ローディング */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
    /* 1.5秒かけて0→1に変化、2.5秒の遅延 */
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.loading__logo {
    opacity: 0;
    animation: logo_fade 2s 1.0s forwards;
    width: 200px;
}

@keyframes logo_fade {
    0% {
        opacity: 0;
        /* transform: translateY(20px); */
    }

    60% {
        opacity: 1;
        /* transform: translateY(0); */
    }

    100% {
        opacity: 0;
    }
}

/* ボタン */
.button {
    color: #FF7733;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 30px;
    display: inline-block;
    width: 310px;
    padding: 1em 2.5em;
    text-align: center;
    position: relative;
    transition: .3s;
    box-shadow:5px 5px #FEB57B;
}
.button::after{
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        right: 42px;
        width: 0;
        height: 0;
        margin-top: -5px;
        border: 5px solid transparent;/*top right bottom を透明化 */
        border-left: 5px solid #f73;
}

.button_area{
    display: inline-block;
    position: relative;/* 擬似要素の基準点 */
}

a:hover {
    opacity: 0.6;
}

a {
    transition: opacity 0.4s;
}

/* ヘッダー */
.header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    position: sticky;
    text-align: center;
    top: 0;
    left: 0;
    z-index: 10;
}

.header_nav {
    display: block;
    width: auto;
}

.header_nav_list {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #FF7733;
    color: #FFF;
    font-size: 1.125rem;
    width: 100%;
    height: 100vh;
    gap: 1em;
    transform: translateX(100%);
    transition: .5s ease-out;
    padding-top: 12%;
}

.header_logo {
    width: 30%;
    margin-left: -24px;
}

.logo_image{
    border-radius: 0 0 5% 0;
}


.nav_open .header_nav_list {
    transform: translateX(0);
    display: flex;
    flex-direction: column;
}

.header_nav li+li {
    margin-left: 0;
}

.nav_open .header .button_area {
    transform: translateX(0);
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    z-index: 12;
    justify-content: center;
    align-items: center;
    gap: 1em;
    /* transform: translateX(100%); */
    transition: .4s;
    margin-left: 0;
}

.nav_open .header .button_area a {
    background-color: #fff;
    color: #f73;
    padding: 1em;
}



/* ハンバーガーメニュー */
.humburger_menu {
    /* position: fixed; */
    position: relative;
    /* display: inline-block; */
    /* right: 190px;
    top: 20px; */
    z-index: 12;
    width: 45px;
    height: 30px;
}

.humburger_menu span {
    display: block;
    height: 1px;
    width: 20px;
    background-color: #f73;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 13;
    /* margin-left: auto;
    right: 5%; */
    transition: .4s;
}


.humburger_menu .top {
    width: 30px;
}

.humburger_menu .second {
    width: 35px;
}

.humburger_menu .bottom {
    width: 45px;
}

.humburger_menu span+span {
    top: 10px;
}

.humburger_menu span+span+span {
    top: 20px;
}

.nav_open .humburger_menu span {
    background-color: #fff;
    transform: rotate(-45deg);
    top: 50%;
    width: 35px;
}

.nav_open .humburger_menu span+span {
    opacity: 0;
}

.nav_open .humburger_menu span+span+span {
    opacity: 1;
    transform: rotate(45deg);
}

/* メインビジュアル */
.mv{
margin-top: -10%;
}

/* --- 全体のBOX定義 ---------------------------------------- */
.mv_box {
    position: relative;
    width: 100%;
    height: 80vh;
    z-index: 1;
}

/* --- 背景の指定 ------------------------------------------- */
.mv_box .mv_img {
    position: absolute;
    content: "";
    opacity: 0;
    inset: 0;
    background-size: cover;
    background-position: center center;
    animation: image-switch-animation 15s infinite;
    /* 3画像 × 各5s = 15s */
}

.src1 {
    background-image: url(../image/mv_1.png);
}

.src2 {
    background-image: url(../image/mv_2.png);
}

.src3 {
    background-image: url(../image/mv_3.png);
}

.mv_img:nth-of-type(1) {
    animation-delay: 0s;
}

.mv_img:nth-of-type(2) {
    animation-delay: 5s;
}

.mv_img:nth-of-type(3) {
    animation-delay: 10s;
}


@keyframes image-switch-animation {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    63% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.titlle_text{
    width: 100%;
    position: absolute;
    content: "";
    top: 36%;
    left: 0;
}

.shine_object{
    width: 60%;
    position: absolute;
    content: "";
    top: 60%;
    right: -5%;
}

.point3_container{
    display: flex;
    justify-content: space-between;
    margin: 0 -2%;
}

.point3_box{
background-color: #fff;
border-width: 1px;
border-style: solid;
border-radius: 5px;
border-color: #f73;
padding: 3em 0;
width: 32%;
text-align: center;
font-size: 0.75rem;
font-weight: 500;
/* medium */
z-index: 2;
transform: translateY(-50%);
}

/* 各セクション共通 */
.section_title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
}

.section_heading {
    font-size: 1.875rem;
    line-height: 1.4;
}

.section_title span {
    display: block;
    font-size: 1rem;
    color: #5D5D5D;
}

.section_padding{
    padding: 50px 0;
}


/* about */
.about{
    text-align: center;
    transform: translateY(-35%);
    background-color: #FFE4D7;
    padding: 300px 0 40px;
}

.about_text{
    margin-top: 20px;
}

.about_img{
    margin-top: 20px;
}

/* お悩み */
.nayami{
    margin-top: -64%;
}
.nayami_heading{
    background-color: #4A2400;
    color: #FFF;
    padding: 13px 0;
    /* margin-bottom: -13px; */
    position: relative;
    z-index: 100;
}

.nayami_head_text{
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
}

.nayami_box{
    background-image: url(../image/jeans.png);
    background-size: cover;
    width: 100%;
    position: relative;
    padding: 35px 0;
}

.nayami_box:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(70, 70, 70, .6);}


.nayami_heading::after{
    display: block;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #4A2400;
    border-width: 18px;
    bottom: -18px;
    right: 47%;
    border-radius: 0 0 8px 0;
    transform: scaleX(0.7)rotate(45deg);
    z-index: -1;
}

/* チェックマーク */
.nayami_point li {
    position: relative;
    padding-left: 19px;
    color: #FFF;
}

.nayami_point li+li {
    margin-top: 15px;
}

.nayami_point li:before {
    content: "";
    position: absolute;
    top: -0.35em;
    left: 5px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 11px;
    height: 16px;
    border-right: 2px solid #FF7733;
    border-bottom: 2px solid #FF7733;
}

.nayami_point li:after {
    content: "";
    position: absolute;
    top: .2em;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    border-radius: 2px;
}

.suggest{
background-color: #f73;
color: #FFF;
font-size: 1.125rem;
text-align: center;
padding: 14px 0;
line-height: 1.7;
position: relative;
}

.suggest ::after{
    display: block;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #FF7733;
    border-width: 18px;
    bottom: -18px;
    right: 47%;
    border-radius: 0 0 8px 0;
    transform: scaleX(0.7)rotate(45deg);
    z-index: -1;
}


/* ウォーキングの効果 */
.point{
background-image: url(../image/foot.png);
background-size: cover;
width: 100%;
}

.point .section_title{
    padding-top: 1em;
}

.point_list{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.point_list p{
    display: inline-block;
width: 115px;
    height: 115px;
    border-radius: 50%;
    border: 1px solid #fff;
    line-height: 115px;
    text-align: center;
}

.point_list .merit{
    background-color: #f73;
    color: #FFF;
    border: 0;
}

.point_list .health{
    line-height: 1.5;
    padding: 35px 25px;
}

.point_text{
    margin-top: 30px;
}

.list_top {
    display: flex;
    gap: 0.5em;
}

.list_bottom{
    display: flex;
    gap: 0.5em;
}

/* 対応エリア */
.area .section_title{
    text-align: center;
}

.area_titlle{
    font-size: 1rem;
    margin-bottom: 10px;
}

.map{
    margin: 25px 0;
}

/* CTA */
.cta{
    background-color: #f73;
    text-align: center;
    padding: 30px 0;
    position: relative;
    z-index: 0;
}

.cta p{
    color: #FFF;
}

.cta_titlle{
    font-size: 1rem;
}
.cta_titlle span {
    display: block;
    font-size: 0.875rem;
    text-decoration: underline 1px;
    text-decoration-color: #FFF;
    text-underline-offset: 0.3em;
}

.cta .first_exp{
    line-height: 1.0;
}

.fz25px{
    font-size: 1.5625rem;
}

.fz20px{
    font-size: 1.25rem;
}

.fz15px{
    font-size: 0.9375rem;
}

.circle_or{
    position: absolute;
    content: "";
    top: 18%;
    left:27%;
    z-index: -1;
}

.n2500{
line-height: 1.5;
font-weight: 400;
}

.cta .button_area{
    margin-top: 12px;
}

/* 特長 */
.feature{
    background-image: url(../image/feature_bg.png);
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 0;
}

.circle_w{
    position: absolute;
        content: "";
        top: 9%;
        left: 0;
        z-index: -1;
}

.feature_titlle{
    font-size: 1.125rem;
    margin-top: 0.5em;
}

.feature .section_title {
    padding-top: 1em;
}

.feature_container{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature_imgbox{
    position: relative;
}

.en_cursive {
    position: absolute;
    content: "";
    bottom: 10%;
    right: 0;
}

.number{
    font-size: 1rem;
    display: inline-block;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #4A2400;
        color: #fff;
        line-height: 30px;
        text-align: center;
        margin-right: 2px;
}

.feature_text{
    line-height: 1.6;
}

/* 講師の紹介 */
.about_me{
    position: relative;
    z-index: 0;
}

.circle_bg{
    position: absolute;
    content: "";
    top: 6%;
    left: 0;
    z-index: -1;
}

.teacher_img{
    margin: 37px 0 14px;
}
.name{
    text-align: center;
    font-size: 1.25rem;
    line-height: 1;
}

.name span{
    display: block;
    color: #F2BBA1;
}

.aboutme_titlle{
color: #5D5D5D;
font-size: 1.125rem;
position: relative;
margin-left: 13px;
}

.aboutme_titlle::before{
background-image: url(../image/diamond.svg);
background-size: contain;
background-repeat: no-repeat;
display: block;
width: 10px;
height: 16px;
position: absolute;
content: "";
top: 10px;
left: -12px;
}


.aboutme_box p{
    line-height: 1.6;
}

.message_titlle{
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.aboutme_textarea{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 体験した方の声 */
.voice{
    background-image: url(../image/voice_bg.png);
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 0;
}

.voice .circle_w{
    top:3%;
}

.voice_box{
    margin-top: 25px;
}

.voice_imgbox{
    display: flex;
    gap: 20px;
}

.voice_img{
    position: relative;
}

.voice_tag{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    font-size: 0.75rem;
    width: 60px;
    text-align: center;
}

.before{
    background-color: #fff;
}

.after{
    background-color: #f73;
    color: #FFF;
}

.voice_textarea{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.voice_titlle{
    position: relative;
    margin-left: 15px;
}

.voice_titlle::before{
    background-image: url(../image/diamond_bw.svg);
        background-size: contain;
        background-repeat: no-repeat;
        display: block;
        width: 9px;
        height: 14px;
        position: absolute;
        content: "";
        top: 6px;
        left: -13px;
}

.category{
    text-align: right;
    font-size: 0.6875rem;
}

/* お申込み後の流れ */
.flow{
    background-color: #FFE4D7;
    position: relative;
    z-index: 0;
}

.flow .circle_w{
    top: 3%;
}

.flow_container{
display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.flow_box{
    background-color: #fff;
    border-radius: 0 20px  0 0;
}

.flow_box img{
    border-radius: 0 20px 0 0;
}

.flow_textarea{
padding: 20px 15px;
}

.flow_textarea h3{
    text-align: center;
    text-decoration: underline 1px;
    text-decoration-color: #4A2400;
    text-underline-offset: 0.3em;
    font-size: 1rem;
}

.flow h3 span{
    font-size: 1.25rem;
}

.notice{
    font-size: 0.75rem;
    display: block;
}

/* 費用 */
.price .section_title{
    text-align: center;
}

.price_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.time-price{
    font-size: 0.75rem;
}

.fz18px{
    font-size: 1.125rem;
}

.fz16px{
    font-size: 1rem;
}

.price_box{
    text-align: center;
}

.first{
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;
    border-color: #f73;
    padding: 0.7em 0;
    width: 65%;
}

.price_titlle{
    text-decoration: underline 1px;
        text-decoration-color: #4A2400;
        text-underline-offset: 0.3em;
}

.time{
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #4A2400;
    color: #FFF;
    line-height: 45px;
    text-align: center;
}

.price_text{
    margin-top: 15px;
}

/* よくある質問 */
.qa{
    
    z-index: 0;
    background-color: #FFE4D7;
}

.qa_titlle{
position: relative;
}

.qa_titlle .circle_w{
    z-index: -1;
    left: -23px;
    top: -4%;
}

.qa_titlle h2{
    position: relative;
    z-index: 10;
}

.qa_container{
margin-top: 55px;
}

/* 初期設定 */
/* ===================
アコーディオン details/summary
====================== */

/* アコーディオンの間隔 */
.details+.details {
    margin-top: 1em;
}

/* 三角アイコン削除（Safari） */
summary::-webkit-details-marker {
    display: none;
}

/* タイトル */
.summary {
    cursor: pointer;
    background-color: #FEB57B;
    border-radius: 50px;
    color: #fff;
    padding: 1em 3.6em;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1em;
    /* アイコンのはみ出し防止 */
    overflow: hidden;
    transition:all .5s ease;
}

/* アイコン共通 */
.summary .button_circle {
    background-color: #fff;
    border-radius: 50px;
    width: 22px;
    height: 22px;
    /* アイコンの位置:1or2 */
    grid-column: 2;
        grid-row: 1;
        justify-self: end;
        content: '';
        position: relative;
}

.summary .button_circle::before,
.summary .button_circle::after {
    position: absolute;
    content: "";
    top: 10px;
    left: 5px;
    width: 12px;
    border-bottom: 2px solid #FEB57B;
}

.summary .question{
    position: relative;
}

.summary .question::before {
        color: #FFF;
        content: "Q";
        font-size: 1.625rem;
        position: absolute;
        left: -25px;
        top:  -13px;
}


.answer{
position: relative;
}

.answer::before {
    /* color: #FFF; */
    content: "A";
    font-size: 1.625rem;
    margin-right: 1em;
    position: absolute;
    left: -25px;
    top: -13px;
}

/* アイコン（クローズ時） */
.summary .button_circle::before {
    transform: rotate(-90deg);
    transition: transform .3s;
}

.is-open>.summary{
border-radius:20px 20px 0 0;
}

/* アイコン（オープン時） */
.is-open>.summary .button_circle::before {
    transform: rotate(0deg);
}

/* コンテンツ */
.details-content {
    box-sizing: content-box;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    margin: 0;
    padding: 1em 3.6em;
    opacity: 0;
    transition: padding .5s ease .5s, max-height .5s, opacity .3s;
}

/* コンテンツ（オープン時） */
.is-open>.details-content {
    padding-block: 1em;
    opacity: 1;
    transition: padding 1.5s ease, max-height .5s, opacity 2.0s;
}


/* Instagram */
.insta{
display: block;
}

/* フッター */
.footer{
    background-color: #FF7733;
    color: #FFF;
}


.footer_copy {
    display: block;
    padding: 10px;
    text-align: center;
    /* font-size: 12px; */
}



/* サイズ910px以上 */
@media screen and (min-width:910px) {

    .pc_content_left {
        display: block;
            width: calc(50% - 235px);
            height: 100%;
            position: fixed;
            top: 0;
                left: 0;
        }

        .pc_content_leftbox{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
    
        .pc_nav_list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1em;
            color: #fff;
        }

        .pc_content_right{
            display: block;
            width: calc(50% - 235px);
            height: 100%;
            position: fixed;
            top: 0;
            right: 0;
        }

        .pc_content_rightbox{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1em;
    width: 90%;
    margin: 0 auto;
        }
        .pc_content_rightbox .button_area{
            width: 100%;
            text-align: center;
        }

        .pc_content_rightbox .line_link::after {
            right: 11%;
            }

    .pc_content_rightbox .button{
        width: 100%;
        max-width: 310px;
        padding: 1em 2em;
    }
    
    .insta_link{
        position: relative;
                }

    .insta_link::after {
        background-image: url(../image/insta_icon_or.svg);
        background-size: contain;
        background-repeat: no-repeat;
        display: block;
        width: 25px;
        height: 25px;
        position: absolute;
        content: "";
        top: 18px;
        right: 8%;
        border-left: none;
                }
            }






