@import url(reset.css);



img {
    vertical-align: bottom;
}

html {
    scroll-behavior: smooth;
}

/* * {
    outline: 1px solid magenta;
} */


body {
    font-size: 14px;
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    font-weight: 300;
    font-optical-sizing: auto;
    font-style: normal;
    color: #595757;
}

/* html, body {
	overflow-x: hidden;
} */

/* フォント種類 */
/* .noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.noto-serif-jp-<uniquifier> {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.aboreto-regular {
    font-family: "Aboreto", serif;
    font-weight: 400;
    font-style: normal;
}

.cormorant-upright-regular {
    font-family: "Cormorant Upright", serif;
    font-weight: 400;
    font-style: normal;
  } */




/* 下部固定ボタン */
.kotei_btn {
    display: none;
    position: fixed;
    bottom: 25px;
    z-index: 500;
    bottom: 5px;
    left: 50%;
    margin-left: -173px;
    z-index: 1010;
}

.kotei_wrapper {
    display: flex;

}

.yoyaku_kotei_btn {
    height: 62px;
    margin-right: 10px;
}

.sns_kotei_btn {
    height: 60px;
}

.kotei_btn_pc {
    display: none;
}

/* 固定ボタン PC用 */
@media only screen and (min-width:960px) {
    .kotei_btn {
        display: none;
    }

    .kotei_btn_pc {
        display: inline-block;
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 90;
    }

    .kotei_btn_pc a img {
        display: block;
        width: 65px;
        margin-bottom: 20px;
    }

    .kotei_btn_pc a:hover {
        opacity: .6;
    }

}

/* 1600px以上のときに固定ボタンが外に出ないよう調整 */
@media screen and (min-width: 1600px) {
    .kotei_btn_pc {
        right: calc((100% - 1600px) / 2 + 10px);
        /* コンテナの右端に揃える */
    }
}



/* ハンバーガー */
.hamburger {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    top: 12px;
    z-index: 1030;
}

.hamburger span {
    display: block;
    width: 40px;
    height: 2px;
    border-radius: 1px;
    background-color: #D5E1E1;
    position: absolute;
    transform: translate(0, -50%);
    transition: 0.3s;
}

.hm_kobetu span {
    background-color: #fff;
}

.hamburger.hide {
    display: none;
    /* ボタンを非表示にする */
}

.hamburger span:first-child {
    top: 30%;
}

.hamburger span:nth-child(2) {
    top: 50%;
}

.hamburger span:last-child {
    top: 70%;
}

.hamburger.close span:first-child {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
}

.hamburger.close span:nth-child(2) {
    transform: translate(0, -50%)rotate(-45deg);
    opacity: 0;
}

.hamburger.close span:last-child {
    top: 50%;
    transform: translate(0, -50%)rotate(-45deg)
}

/* ハンバーガーの中身 */
.header_m {
    font-family: "Aboreto", serif;
    font-weight: 400;
    color: #fff;
    font-size: 28px;
}

.header_s {
    font-size: 14px;
    font-weight: 300;
}

.gnav_pc {
    display: none;
}

.gnav {
    position: fixed;
    z-index: 500;
    background-color: #AEA798;
    right: -110%;
    top: 0;
    width: 100%;
    height: 100vh;
    max-height: 700px;
    overflow: auto;
    /* オーバーフローは高さが設定されている場合、はみでたものを自動か隠すか、出すか指定する */
    transition: 0.3s;
    z-index: 1020;
}



.gnav.show {
    right: 0;
}

.gnav ul {
    margin-top: 20px;
    margin-left: 20px;
}

.gnav ul li {
    margin-top: 10px;
}

.gnav ul li a {
    width: 280px;
    display: block;
    color: #fff;
    padding: 6px;
}

.header_m span {
    display: inline-block;
    margin-right: 12px;
    vertical-align: -10%;
}

.yoyaku_btn_sp {
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
    height: 50px;
}



/* SP用 */

/* ファーストビュー  SP用*/
.fv {
    background: url(../images/main_n.jpg) no-repeat 55% center / cover;
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 100;
}

.scroll_animation {
    position: absolute;
    transform: translate(100%, 0) rotate(-90deg);
    transform-origin: left bottom;
    right: 10px;
    bottom: 10px;
}

.scroll_wrapper {
    display: flex;
    position: relative;
}

.scroll_wrapper p {
    font-family: "Aboreto", serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.1em;
}

.slideinTop {
    animation: slideinTop 4s infinite;
    position: absolute;
    width: 12px;
    height: 12px;
    border: #fff 1px solid;
    border-radius: 6px;
    top: 13%;
}

.line {
    display: block;
    margin-top: 8px;
    margin-right: 6px;
    width: 40px;
    height: 1px;
    background-color: #fff;
}

@keyframes slideinTop {
    0% {
        transform: translateX(34px);
    }

    100% {
        transform: translateX(0);
    }
}


.logo {
    position: absolute;
    z-index: 200;
    top: 10%;
    left: 50%;
    margin-left: -150px;
}

.logo img {
    width: 300px;
}


.fv_flower {
    position: absolute;
    display: block;
    z-index: 100;
    width: 100%;
    top: 50%;
    margin-top: -153px;
    left: 0;
    overflow: hidden;
    z-index: 110;
}

.fv_flower ul {
    animation: infinity-scroll-left 90s linear;
    display: flex;
    margin: 0;
    padding: 0;
    width: max-content;
}

.fv_flower ul li {
    padding: 0 80px;
}

.fv_flower img {
    display: block;
    height: 345px;
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(-89%);
    }

    to {
        transform: translateX(0%);
    }
}


.fv_cont {
    position: absolute;
    z-index: 350;
    width: 330px;
    color: #fff;
    font-size: 23px;
    font-weight: 200;
    line-height: 2;
    top: 75%;
    left: 5%;
    letter-spacing: 0.1em;
}




/* グローバルナビゲーション　TabletTablet用 */
@media only screen and (min-width:768px) and (max-width:959px) {

    .gnav {
        width: 50%;
    }
}


@media only screen and (min-width:960px) {


    /* グローバルナビゲーション　PC用 */
    .hamburger,
    .gnav {
        display: none;
    }


    .gnav_pc {
        position: fixed;
        width: 100%;
        z-index: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        color: #fff;
    }

    .gnav_pc ul {
        display: flex;
        width: 95%;
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
        justify-content: space-between;
        align-items: center;
    }

    .gnav_pc ul li {
        position: relative;
        margin: 0 15px;
        text-align: center;
    }

    .header_m_pc {
        display: inline-block;
        font-family: "Aboreto", serif;
        font-size: 20px;
        text-decoration: underline 3%;
        text-underline-offset: 15%;
        transition: color 0.3s ease;
        /* cursor: pointer;  */
    }

    .header_s_pc {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 13px;
        margin-top: 5px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header_m_pc:hover+.header_s_pc {
        opacity: 1;
        /* ホバー時に表示 */
        visibility: visible;
    }


    .header_logo {
        display: none;
        width: 120px;
    }

    /* ファーストビュー　 PC用 */

    .fv {
        max-height: 750px;
        margin: 0 auto;
    }

    .scroll_animation {
        position: absolute;
        transform: rotate(-90deg);
        transform-origin: left top;
        right: auto;
        left: 20px;
        bottom: 2px;
        z-index: 120;
    }

    .logo {
        top: 126px;
        left: 48px;
        margin-left: 0;
    }

    .logo img {
        width: 330px;
    }

    .fv_flower {
        top: 55%;
        left: 0%;
        margin-top: -125px;
    }


    .fv_flower ul li {
        padding: 0 80px;
    }

    .fv_flower img {
        height: 300px;
    }

    @keyframes infinity-scroll-left {
        from {
            transform: translateX(-30%);
        }

        to {
            transform: translateX(50%);
        }
    }

    .fv_cont {
        width: 940px;
        font-size: 34px;
        line-height: 1;
        top: auto;
        left: auto;
        right: 0;
        bottom: 65px;
    }


}



/* アバウト SP*/

.about {
    background: linear-gradient(to bottom, transparent 0%, transparent 0%, #fff 100%), url(../images/back_pink.jpg) no-repeat center center / cover #fff;
    height: auto;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.about_wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
    line-height: 2;
    padding-top: 15px;
}


.cherue {
    font-family: "Cormorant Upright", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.cont_m {
    font-size: 16px;
    font-weight: 500;
}

.about_cont_kagayaki {
    position: absolute;
    z-index: 20;
    font-size: 30px;
    color: #AEA798;
    margin-top: 10px;
    letter-spacing: 0.15em;
    font-weight: 300;
    line-height: 1.6;
}

.top_wo {
    position: absolute;
    width: 299px;
    top: 205px;
    left: 25%;
    z-index: 10;
}


.migiyose {
    text-align: right;
    margin-top: 360px;
}

.salon {
    width: 336px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.onayami {
    position: relative;
    width: 299px;
    height: 426px;
    margin: 0 auto;
    text-align: center;
}

.onayami h1 {
    margin-top: 30px;
    font-size: 25px;
    color: #AEA798;
}

.exclamation {
    display: inline-block;
    transform: rotate(10deg);
}


.nayami_circle {
    display: inline-block;
    width: 140px;
    height: 140px;
    background-color: #fff;
    border-radius: 50%;
}

.moziM {
    font-size: 22px;
}

.circle1,
.circle2,
.circle3 {
    position: relative;
    position: absolute;
}

.circle1 {
    top: 59px;
    right: 15px;
}

.circle2 {
    top: 157px;
    left: 7px;
}

.circle3 {
    top: 228px;
    right: 0;
}

.circle1 p,
.circle2 p,
.circle3 p {
    position: absolute;
    line-height: 1.6;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.nayamu_wo {
    position: absolute;
    top: 285px;
}

.nayami_wo_pc {
    display: none;
}


.onayami_cont {
    text-align: center;
    margin-top: 10px;
}

.onayami_cont h1 {
    font-size: 23px;
    color: #AEA798;
}

.onayami_cont p {
    line-height: 2;
    margin-top: 10px;
}

/*アバウト TabletTablet　PC用 */
@media only screen and (min-width:768px) {

    .for_sp_only {
        display: none;
    }

    .about_wrapper {
        position: relative;
        width: 80%;
        max-width: 900px;
        margin: 50px auto;
        padding-top: 0;
    }



    .about_flex {
        display: flex;
        flex: auto;
        justify-content: space-around;
        align-items: center;
    }

    .about_flex:nth-child(2) {
        flex-direction: row-reverse;
    }

    .cherue {
        font-size: 28px;
    }

    .cont_m {
        font-size: 20px;
        white-space: nowrap;
    }


    .about_cont_kagayaki {
        position: static;
    }

    .top_wo {
        position: static;
    }

    .migiyose {
        font-size: 18px;
        margin: auto;
    }

    .salon {
        width: 336px;
        height: 255px;
        margin: auto;
    }

    .onayami {
        position: relative;
        width: 80%;
        max-width: 900px;
        min-width: 750px;
        height: 315px;
        margin: 0 auto;
        text-align: center;
        line-height: 1.6;
    }

    .onayami h1 {
        font-size: 30px;
    }

    .moziM {
        font-size: 25px;
    }

    .circle1,
    .circle2,
    .circle3 {
        font-size: 17px;
    }

    .nayami_circle {
        width: 172px;
        height: 172px;
    }

    .circle1 {
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
    }

    .circle2 {
        top: 70px;
        right: 75%;
        transform: translateX(50%);
    }

    .circle3 {
        top: 70px;
        left: 75%;
        transform: translateX(-50%);
    }

    .nayamu_wo {
        display: none;
    }

    .nayami_wo_pc {
        display: block;
        position: absolute;
        bottom: 0;
    }

    .onayami_cont {
        margin-top: 0;
    }

    .onayami_cont h1 {
        font-size: 30px;
    }

    .onayami_cont p {
        font-size: 18px;
        margin-top: 23px;
        line-height: 2.5;
    }

}







/* コンテンツタイトル */
.ttl {
    padding-top: 80px;
    margin-bottom: 10px;
}

.ttl_L {
    font-family: "Aboreto", serif;
    font-weight: 400;
    font-size: 60px;
    color: #AEA798;
}

.ttl_M {
    font-size: 20px;
    color: #AEA798;
}


/* メニュー　SP用 */
.menu {
    color: #AEA798;
    width: 100%;
    margin: 0 auto;
}

.menu .ttl {
    margin-left: 10px;
}

.flex_menu {
    display: flex;
}

.menu_photo {
    width: 50%;
}


.menu_btn {
    display: block;
    position: relative;
    width: 50%;
    height: 50vw;
}

.menu_name {
    position: absolute;
    width: 162px;
    top: 55%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.menu_name p {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
    text-decoration: underline 5%;
    text-underline-offset: 15%;
}

.menu_name h1 {
    font-size: 23px;
    line-height: 1.2;
}

.menu_name span img {
    margin-left: 7px;
    margin-bottom: 5px;
}

.menu_name h2 {
    font-family: "Aboreto", serif;
    font-weight: 400;
    font-size: 18px;
    text-align: right;
    margin-top: 30px;
}


/* SP用　Moreボタン */
.more_btn {
    text-align: center;
    margin-top: 50px;
}

.more_btn a {
    display: inline-block;
    font-family: "Aboreto", serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    background-color: #fff;
    color: #AEA798;
    border: #AEA798 solid 1px;
    padding: 13px 23px;
}

.more_btn a span img {
    width: 9px;
    margin-left: 10px;
    margin-bottom: 2px;
}


/* メニュー TabletTablet用 */
@media only screen and (min-width:768px) and (max-width:959px) {

    .menu_tab_wrapper {
        display: flex;
    }

    .flex_menu {
        display: flex;
        justify-content: center;
        align-items: start;
    }


    .menu_photo {
        width: 30vw;
    }


    .menu_btn {
        width: 30vw;
        height: 30vw;
    }

}


/* メニュー　PC用 */
@media only screen and (min-width:960px) {
    .menu_wrapper {
        background-color: #fff;
    }

    .menu {
        width: 900px;
        display: flex;
        justify-content: center;
        align-items: start;
        padding-top: 117px;
        margin: 0 auto;
    }


    .menu_box {
        margin: 0 auto;
    }

    .menu .ttl {
        padding: 0;
        margin-right: 24px;
        margin-bottom: 0;
    }

    .menu_photo {
        width: 180px;
    }

    .menu_btn {
        width: 180px;
        height: 180px;
    }

    .flex_menu {
        transition: .3s;
    }

    .flex_menu:hover {
        opacity: 0.6;
    }

    /* PC用　Moreボタン */
    .more_btn a {
        transition: .3s;
    }

    .more_btn a:hover {
        background-color: #AEA798;
        color: #fff;
        text-decoration: underline 3%;
        text-underline-offset: 25%;
        opacity: 0.6;
    }

}






/* プロフィール SP用 */
.Adviser {
    width: 90%;
    margin: 0 auto;
}


.av_pic {
    max-width: 400px;
}

.profile_wrapper {
    position: relative;
    margin: 0 auto;
}

.name {
    position: absolute;
    color: #AEA798;
    top: -80px;
    left: 0;
}

.name h1 {
    margin-left: 7px;
    font-family: "Aboreto", serif;
    font-weight: 400;
    font-size: 32px;
}

.name h1 span {
    font-size: 20px;
}

.name p {
    margin-left: 7px;
    font-size: 16px;
    line-height: 1.8;
    color: #AEA798;
}

.under_line {
    display: block;
    margin-top: 5px;
    width: 340px;
    height: 2px;
    background-color: #F5F5F1;
}

.profile_main_cont {
    font-size: 19px;
    line-height: 1.8;
    margin: 43px 0 0 7px;
}

.profile_sub_cont {
    margin: 15px 0 0 7px;
    width: 320px;
    line-height: 2;
}

.futoji {
    font-size: 16px;
    background: linear-gradient(transparent 60%, #f7ebeb 50%);
}




/* プロフィール TabletTablet　PC用 */
@media only screen and (min-width:768px) {
    .Adviser {
        max-width: 900px;
    }

    .av_pic {
        width: 400px;
    }

    .profile_box {
        max-width: 850px;
        display: flex;
        margin: 0 auto;
        justify-content: space-between;
    }

    .name {
        position: static;
        margin-top: 180px;
    }

    .profile_main_cont {
        position: absolute;
        top: -80px;
        right: 50px;
        height: 280px;
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        /* IE対応 */
        line-height: 2;
    }

}



/* 口コミ　SP用 */

.Voice {
    width: 90%;
    margin: 0 auto;
}

.kutikomi_box {
    display: block;
    min-height: 580px;
    height: auto;
    background-color: #fff;
    border: #F5F5F1 solid 12px;
    border-radius: 10px;
}

.kutikomi_wrapper {
    width: 90%;
    margin: 0 auto;
}

.kutikomi_wrapper h1 {
    font-size: 21px;
    color: #AEA798;
    text-align: center;
    margin: 15px 0 15px 0;
}

.kutikomi_wrapper h2 {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-size: 18px;
    margin: 10px 0 10px 0;
}

.kutikomi_wrapper p {
    font-family: "Noto Sans JP", serif;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 12px;
}


/* SP口コミスワイパー指定 */

.swiper_container {
    position: relative;
}

.swiper {
    height: auto;
    overflow: hidden;
}


/* ページネーションのカスタマイズ */
.swiper-pagination_kutikomi {
    bottom: -25px !important;
}

.swiper-pagination-bullet {
    background-color: #AEA798;
    width: 13px;
    height: 13px;
}



/* 前へ次への矢印カスタマイズ */

.swiper_kutikomi .swiper-button-next {
    right: 0;
    /* ボタンを右端にくっつける */
}

.swiper_kutikomi .swiper-button-prev {
    left: 0;
    /* ボタンを左端にくっつける */
}

.swiper_kutikomi .swiper-button-prev,
.swiper_kutikomi .swiper-button-next {
    height: 25px;
    width: 25px;
}

/* 前へ次への矢印カスタマイズ */
.swiper_kutikomi .swiper-button-prev::after,
.swiper_kutikomi .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 25px;
    margin: auto;
    width: 25px;
}

/* 前への矢印カスタマイズ */
.swiper_kutikomi .swiper-button-prev::after {
    background-image: url(../images/kutikomi_mae_ya.svg);
}

/* 次への矢印カスタマイズ */
.swiper_kutikomi .swiper-button-next::after {
    background-image: url(../images/kutikomi_ushiro_ya.svg);
}

/* 画像サイズ調整 */
.swiper_kutikomi .swiper-slide img {
    height: auto;
    width: 100%;
}

.kutikomi_pc {
    display: none;
}


/* 口コミ　PC用 */
@media only screen and (min-width:960px) {

    .Voice {
        width: 950px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding-top: 100px;
    }

    .Voice .ttl {
        height: 85px;
        padding: 0;
        margin: 0;
        transform: rotate(-90deg) translate(-30%, 30%);
    }

    .Voice .ttl .ttl_M {
        text-align: right;
    }

    .kutikomi_sp {
        display: none;
    }

    .kutikomi_pc {
        width: 765px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .kutikomi_box {
        width: 370px;
        height: 670px;
        margin-bottom: 25px;
    }
}


/* アクセス SP用 */

.Access {
    width: 90%;
    margin: 0 auto;
}

.map_area {
    border-radius: 8px;
    overflow: hidden;
    /* transform: translateY(0px); */
}

.map_wrapper iframe {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}

.gmap {
    height: 235px;
}

.map_cont h1 span {
    margin-right: 3px;
}

.map_cont h1 {
    font-size: 20px;
    color: #AEA798;
    margin-top: 20px;
}

.map_cont h2 {
    font-size: 15px;
    color: #AEA798;
    margin: 10px 0 15px 18px;
}

.map_cont p {
    font-family: "Noto Sans JP", serif;
    line-height: 1.4;
    margin-left: 18px;
}

.map_cont h3 {
    font-family: "Noto Sans JP", serif;
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 5px;
}

.map_cont h3 span {
    color: #AEA798;
}

/* メニュー TabletTablet用 */
@media only screen and (min-width:768px) and (max-width:959px) {

    .map_wrapper {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
    }

    .gmap {
        width: 350px;
        height: 280px;
    }

}


/* アクセス　Tablet PC用 */
@media only screen and (min-width:960px) {

    .Access {
        max-width: 900px;
    }

    .map_wrapper {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
    }

    .gmap {
        width: 430px;
        height: 280px;
    }

    .gmap {
        height: 300px;
    }

    .map_cont h1 span {
        margin-right: 3px;
    }

    .map_cont h1 {
        font-size: 25px;
    }

    .map_cont h2 {
        font-size: 18px;
    }

    .map_cont p {
        font-size: 18px;
    }

    .map_cont h3 {
        font-size: 18px;
    }


}



/* タイムライン　SP用 */

/* タイムライン　スワイパー指定 */
/* スクロールバー */
.swiper-scrollbar {
    width: 90% !important;
    bottom: -15px !important;
    left: 50% !important;
    transform: translateX(-50%);
    background-color: #F5F5F1;
}

.swiper-scrollbar-drag {
    background-color: #AEA798;
}

.Timeline {
    max-width: 900px;
    margin-bottom: 80px;
    overflow: hidden;
}

/* タイムライン　次への矢印カスタマイズ */

.swiper_timeline .swiper-button-next {
    right: 20px;
    /* ボタンを右端20の位置に移動 */
}

.swiper_timeline .swiper-button-next {
    height: 30px;
    width: 30px;
}

.swiper_timeline .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 25px;
    margin: auto;
    width: 25px;
}

.swiper_timeline .swiper-button-next::after {
    background-image: url(../images/tm_ya.svg);
}

/* タイムライン要素　指定　SP */
.Timeline {
    width: 93%;
    margin: 0 auto;
    padding-bottom: 80px;
}

.swiper-slide {
    height: auto;
}

.tm_wrapper {
    background-color: #F5F5F1;
    height: 100%;
    position: relative;
}

.yazirushi {
    display: none;
}

.tm_box {
    width: 100%;
    padding: 15px;
    margin: 0 auto;
}

.tm_ttl {
    display: inline-block;
    width: auto;
    background-color: #fff;
    border-radius: 23px;
    font-size: 23px;
    color: #AEA798;
    padding: 11px 30px;
}

.txt_M {
    font-size: 18px;
}

.center_h1 {
    margin-top: 23px;
    text-align: center;
}


.yoyakugamen_and_circle {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.yoyaku_gamen {
    position: absolute;
    width: 194px;
    top: 60px;
}

.tm_circle {
    position: absolute;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    color: #AEA798;
    top: 45px;
    right: 0px;
}

.tm_circle_area {
    position: relative;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background-color: #fff;
}

.tm_circle p {
    position: absolute;
    top: 27px;
    left: 10px;
}

.yoyaku_kanryou {
    width: 186px;
    margin: 15px auto;
}

.yoyaku_kanryou_cont {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    font-family: "Noto Sans JP", serif;
    font-size: 12px;
    line-height: 1.6;
    padding: 9px;
    border-radius: 10px;
}

.yoyaku_kanryou_cont p {
    margin: 7px 0 7px 19px;
}

.kome {
    color: #E0BBBB;
    margin-left: -12px;
}

.namisen {
    text-decoration: 9% underline wavy #E0BBBB;
    text-underline-offset: 10%;
}

.touzitu_cont {
    width: 100%;
    margin: 0 auto;
    padding-left: 18px;
}

.tm_box h2 {
    text-align: center;
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    font-size: 18px;
    color: #E0BBBB;
    margin-top: 23px;
}

.touzitu_cont h1 {
    margin-top: 23px;
    font-size: 17px;
    font-weight: 500;
}

.number {
    font-family: "Aboreto", serif;
    margin-left: -18px;
}

.touzitu_cont p {
    font-family: "Noto Sans JP", serif;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 10px;
}

.touzitu_pic {
    margin-top: 10px;
}

.advice_sheet {
    width: 90%;
    margin: 15px auto;
}


/* タイムライン Tablet　PC用 */
@media only screen and (min-width:599px) {
    .next_btn {
        display: none;
    }

    .yazirushi {
        display: block;
        position: absolute;
        width: 35px;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

}

footer {
    width: 100%;
    height: 300px;
    text-align: center;
    background-color: #AEA798;
    color: #fff;
    font-family: "Noto Sans JP", serif;
    margin-top: 100px;
}

footer a img {
    width: 240px;
    margin-top: 42px;
}

.policy {
    display: flex;
    justify-content: center;
    width: 100%;

    text-align: center;
    margin: 16px 0;
}

.policy a {
    margin: 0 20px;
    transition: .3s;
    text-decoration: underline solid 3% #fff;
    text-underline-offset: 30%;
}


.for_pc {
    display: none;
}

/* フッターPC用 */
@media only screen and (min-width:960px) {
    footer {
        height: 250px;
    }

    .policy a :hover {
        opacity: .6;
    }

}


/* ギャラリー */

.swiper_container_s {
    margin: 10px auto;
    overflow: hidden;
}


/* 個別ページナビゲーション　SP用 */
#kobetu_pc_header {
    display: none;
}

.koteibtn_kobetu {
    display: block;
}

.wrapper {
    width: 95%;
    margin: 0 auto;
}

.gnav_kobetu_sp {
    width: 100%;
    height: 65px;
    background-color: #AEA798;
    position: fixed;
    z-index: 100;
}

.gnav_kobetu_sp a {
    display: inline-block;
    margin: 10px;
}

.gnav_kobetu_sp a img {
    height: 45px;
}

.bred_wrapper {
    width: 100%;
    height: 35px;
    background-color: #ffffffcf;
    color: #AEA798;
    position: fixed;
    top: 65px;
    z-index: 1010;
}

.breadcrumbs {
    margin: 10px;
}

.breadcrumbs a {
    text-decoration: underline solid 3%;
    text-underline-offset: 30%;
}

.ttl_kobetu {
    padding-top: 120px;
    text-align: right;
}

/*個別ページ ナビゲーション　PC用　*/
@media only screen and (min-width:960px) {

    .bred_wrapper,
    .ttl_kobetu,
    .koteibtn_kobetu,
    .gnav_kobetu_sp {
        display: none;
    }

    #kobetu_pc_header {
        background: no-repeat center center / cover;
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 250px;
        z-index: 1030;
        transition: all .8s ease;
    }

    .kobetu_menu_header {
        background: url(../images/menu_header.jpeg) no-repeat center center / cover;
    }

    #kobetu_pc_header.scroll_nav {
        height: 100px;
    }

    .kobetu_pc_header_inner .ttl_L,
    .kobetu_pc_header_inner .ttl_M {
        color: #fff;
    }

    .gnav_kobetu_pc {
        top: 250px;
        z-index: 1050;
        background-color: rgba(255, 255, 255, 0.9);
        color: #AEA798;
        transition: top 0.8s ease;
    }

    .gnav_kobetu_pc .header_logo {
        display: block;
    }


    .wrapper {
        width: 90%;
        max-width: 1100px;
        margin: 0 auto;
    }


}



/* 個別ページ メニューSP用*/
.kobetu_menu_box p img {
    margin-top: 10px;
}

.kobetu_menu_box {
    width: 95%;
    height: auto;
    margin: 0 auto 24px auto;
    border: #F5F5F1 3px solid;
    padding: 15px;
    border-radius: 15px;
    color: #AEA798;
    font-size: 16px;
    display: block;
}

.kobetu_menu_box h1 {
    margin-top: 25px;
    font-size: 23px;
    text-align: center;
}

.kobetu_menu_box h2 {
    font-size: 23px;
}

.menu_flex {
    display: flex;
    justify-content: space-between;
    margin-top: 11px;
    margin-bottom: 13px;

}



.menu_flex p:nth-child(1) {
    font-size: 18px;
    margin-top: 4px;
}

.menu_flex p:nth-child(2) {
    font-family: "Aboreto", serif;
    font-size: 22px;
}

.under_line_menu {
    display: inline-block;
    margin-top: 5px;
    width: 100%;
    height: 2px;
    background-color: #F5F5F1;
}

.menubox_cont {
    color: #595757;
    font-family: "Noto Sans JP", serif;
    margin-top: 22px;
    line-height: 1.6;
}

.menu_type a {
    display: inline-block;
    font-family: "Noto Sans JP", serif;
    font-weight: 500;
    color: #fff;
    padding: 7px 20px;
    border-radius: 16px;
    margin-top: 13px;
}

.pink {
    background-color: #ECDBE1;
}

.yellow {
    background-color: #E7DFC1;
}

.blue {
    background-color: #D1E4EB;
}


/* 個別ページ　メニュー TabletTablet用 */
@media only screen and (min-width:768px) and (max-width:959px) {

    .kobetu_menu_wrapper {
        width: 95%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    .kobetu_menu_box {
        width: 48%;
    }

}



/* 個別ページ　メニューPC用 　*/
@media only screen and (min-width:960px) {
    .salonmenu_wrapper {
        margin-top: 350px;
    }

    .kobetu_menu_wrapper {
        width: 95%;
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    .kobetu_menu_box {
        width: 48%;
        max-width: 400px;
        margin-bottom: 40px;
    }
}


/* 個別ページ　アドバイザープロフィール 　SP用*/
.profire_kobetu {
    width: 90%;
    margin: 0 auto;
}

.adviser_cont {
    width: 100%;
    margin: 60px auto 0 auto;
    font-family: "Noto Sans JP", serif;
    line-height: 1.8;
}

.adviser_cont p {
    margin-bottom: 25px;
}


.shikaku h1 {
    font-size: 20px;
    font-weight: 400;
    color: #AEA798;
}

.shikaku ul {
    line-height: 2;
    margin: 5px;
}

.futoji_B {
    background: linear-gradient(transparent 60%, #f7ebeb 50%);
}

.under_line_kobetu {
    display: block;
    margin-top: 5px;
    width: 340px;
    height: 2px;
    background-color: #F5F5F1;
}



/* 個別ページ　アドバイザープロフィール TabletTablet用 */
@media only screen and (min-width:768px) and (max-width:959px) {

    .profire_kobetu {
        width: 100%;
        position: static;
        margin-top: 30px;
        justify-content: space-between;
    }

    .adviser_cont {
        width: 400px;
        margin-top: 20px;
    }

    .name_kobetu {
        margin-top: 0;
    }

    .under_line_kobetu {
        margin-top: 10px;
        width: 100%;
    }

}


/* 個別ページ　アドバイザープロフィール PC用 　*/
@media only screen and (min-width:960px) {

    .profire_kobetu {
        width: 100%;
        max-width: 1000px;
        margin-top: 350px;
        position: static;
    }


    .adviser_cont {
        width: 565px;
        margin: 60px auto 0 auto;
        font-family: "Noto Sans JP", serif;
        line-height: 1.8;
    }



    .adviser_cont p {
        font-size: 18px;
        margin-bottom: 45px;
    }

    .shikaku h1 {
        margin-left: 10px;
        font-size: 28px;
    }

    .shikaku ul {
        font-size: 18px;
        margin: 10px;
    }

    .futoji_B {
        background: linear-gradient(transparent 60%, #f7ebeb 50%);
    }


    .under_line {
        display: block;
        margin-top: 5px;
        width: 340px;
        height: 2px;
        background-color: #F5F5F1;
    }

    .under_line_kobetu {
        margin-top: 10px;
        width: 100%;
    }

    .name_kobetu {
        margin-top: 0;
    }

    .name_kobetu h1 {
        margin-left: 10px;
        font-size: 47px;
    }

    .name_kobetu h1 span {
        margin-left: 20px;
        font-size: 30px;
    }

    .name_kobetu p {
        margin-left: 10px;
        font-size: 23px;
        line-height: 1.8;
        color: #AEA798;
    }

}

/* 個別ページポリシー　SP用 */
.privacy_wrap {
    font-family: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
    line-height: 1.6;
    font-weight: normal;
    color: #333;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
}

.privacy_wrap h1 {
    font-size: 28px;
    color: #444;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
}

.privacy_wrap h2 {
    font-size: 22px;
    color: #007BFF;
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 4px solid #007BFF;
    padding-left: 10px;
}

.privacy_wrap p {
    margin-bottom: 16px;
    text-align: justify;
}

.privacy_wrap ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.privacy_wrap ol li {
    margin-bottom: 8px;
    list-style-type: decimal;
}

.privacy_wrap ol li ol {
    margin-left: 20px;
    list-style-type: lower-alpha;
}

.privacy_wrap ol li ol li {
    margin-bottom: 6px;
}

.privacy_wrap .tR {
    text-align: right;
}

.privacy_wrap a {
    text-decoration: underline 3%;
    line-height: 2;
}



/* 個別ページポリシー　Tablet PC用 */
@media (max-width: 768px) {
    .privacy_wrap {
        padding: 15px;
    }

    .privacy_wrap h1 {
        font-size: 24px;
    }

    .privacy_wrap h2 {
        font-size: 20px;
    }

    .privacy_wrap p,
    .privacy_wrap ol {
        font-size: 14px;
    }
}






/* 個別ページ　お問い合わせ　SP用 */
.contact_wrap {
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
    font-family: "Noto Sans JP", serif;
    line-height: 1.6;
}

.contact_wrap h1 {
    margin-top: 30px;
}

.contact_wrap p {
    text-align: right;
}

.pink_kome {
    color: #E0BBBB;
}


.form_area {
    margin-top: 18px;
    background-color: #F5F5F1;
    padding: 22px;
    border-radius: 10px;
}

.form_area .input_list dt {
    width: 100%;
    border-top: solid 2px #fff;
    padding-top: 12px;
    font-weight: 500;
}

.form_area .input_list dt:first-child {
    border-top: none;
}

.form_area .input_list dd {
    padding-top: 9px;
    padding-bottom: 15px;
}

select[name="q1"] {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    font-size: 14px;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 12px;
    border: none;
    font-weight: 300;
}

.txtbox {
    width: 100%;
    border: none;
    height: 36px;
}

textarea {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    width: 100%;
    color: #999;
    line-height: 1.4;
    border: none;
    height: 200px;
    padding: 8px 0 0 8px;
    font-weight: 300;
}

.privacypolicy {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    color: #666;
    height: 150px;
    padding-top: 8px;
    padding-left: 8px;
}

.checkbox_btn {
    text-align: center;
}

.submit-btn:disabled {
    background-color: #e6e6e6;
}


.submit-btn {
    border: none;
    width: 183px;
    height: 47px;
    background-color: #E0BBBB;
    color: #fff;
    border-radius: 23px;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 20px;
}




/* お問い合わせ　PC用 */
@media only screen and (min-width:960px) {

    .form_area {
        margin-top: 18px;
        background-color: #F5F5F1;
        padding: 22px;
        border-radius: 10px;
    }

    .contact_wrap {
        margin-top: 350px;
    }


	.input_list dt {
		float: left;
		clear: both;
		width: 20%;
		padding: 20px;
	}


}












/* TabletTablet用 */
@media only screen and (min-width:768px) and (max-width:959px) {
    .for_pc {
        display: block;
    }
}



/* PC用 */
@media only screen and (min-width:960px) {

    .for_sp {
        display: none;
    }

    .for_pc {
        display: block;
    }

}