@charset "UTF-8";

/* ブレイクポイント
SP ～767px
tab 768px～1279px
PC 1280px～*/

/*===============
変数宣言
===============*/
:root {
    --sp_title: 20px;
    --sp_text: 13px;
    --sp_small: 10px;
    --pc_title: 25px;
    --pc_text: 18px;
    --pc_small: 15px;

    --text_main_color: #263C47;
    --background_color: #7FADC5;
    --background_color_10: 127, 173, 197, 0.2;
    --btn_basecolor: #E1D6D4;
    --btn_basecolor_70: 225, 214, 212, 0.7;
    --accent_color: #E3D3E0;


    --main_font: font-family: 'Cabin', sans-serif;
    font-family: 'Delicious Handrawn', cursive;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Rampart One', cursive;
    font-family: 'Sawarabi Mincho', serif;
}

/*================
共通設定
================*/
body {
    font-family: var(--main_font);
}

.wrap {
    background: #fff;
}

.inner {
    padding: 0 8%;
    text-align: center;
    margin-bottom: 160px;
}

h2 {
    margin-bottom: 100px;
    font-size: var(--sp_title);
    letter-spacing: 0.2em;
}

h3 {
    margin-top: 100px;
    margin-bottom: 50px;
}

a {
    text-decoration: none;
    color: var(--main_text);
}

.fade {
    text-align: center;
    opacity: 0;
    transition: opacity 3s;
}

.fade.view {
    opacity: 1;
}

.fade2 {
    text-align: center;
    opacity: 0;
    transition: opacity 3s;
}

.fade2.view {
    opacity: 1;
}


/*================
ヘッダー
================*/
header {
    position: fixed;
    width: 100%;
    padding-left: auto;
    padding-right: auto;
    background: #fff;
    z-index: 5;
    margin-bottom: 100px;
}

.header_all {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 10px;
}


/* 左上ロゴ */
header img {
    width: 150px;
    height: 100px;
}

/* Contactボタン */
.contact_btn_1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_btn_1 a {
    text-decoration: none;
    padding-left: 24px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.contact_btn_1 :hover {
    opacity: .8;
}

/* TELボタン */
.btn_tel {
    position: relative;
    display: block;
    border-radius: 20px;
    color: #263c47;
    background-color: rgba(var(--btn_basecolor_70));
    padding: 10px 36px;
    margin-right: 1rem;
    max-width: 300px;
}

.btn_tel::after {
    content: "";
    background: url(../img/phone_in_talk_FILL0_wght400_GRAD0_opsz48.svg)no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    margin-left: 10px;
}

/* Web予約 */
.btn_web {
    position: relative;
    display: block;
    border-radius: 20px;
    color: #263c47;
    background-color: rgba(var(--btn_basecolor_70));
    padding: 10px 36px;
    max-width: 300px;
}

.btn_web::after {
    content: "";
    background: url(../img/phone_android_FILL0_wght400_GRAD0_opsz48.svg)no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    margin-left: 10px;
    margin-bottom: 24px;
}


/* SNSアイコン */
.sns_icon {
    display: flex;
    justify-content: right;
}

.sns_icon a:hover {
    opacity: .7;
}

.sns_icon ul {
    display: flex;
}

.sns_icon li {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    margin-right: 10px;
}

.sns_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* ハンバーガーメニュー */
.openbtn2 {
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #fff;
}

/*ボタン内側*/

.openbtn2 span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    background-color: #666;
}


.openbtn2 span:nth-of-type(1) {
    top: 22px;
    width: 50%;
}

.openbtn2 span:nth-of-type(2) {
    top: 29px;
    width: 30%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn2.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn2.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

.headerright {
    display: flex;
    justify-content: right;
    align-items: center;
}

@media screen and (max-width:767px) {
    .contact_btn_1 {
        display: none;
    }

    /*=======max-width:767px=======*/
}



/*================
ナビゲーション
================*/
#nav-menu {
    position: fixed;
    right: -100%;
    width: 45%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s ease-out;
    text-align: center;
    letter-spacing: 0.2em;
    z-index: -1000;
}

#nav-menu.nav-menu-open {
    right: 0;
}

#nav-menu li {
    list-style: none;
}

#nav-menu li a {
    display: block;
    padding: 2rem;
}

.reserve_btn {
    display: inline-block;
    width: 150px;
    border: solid 1px #718F9A;
    padding: 0.5rem;
    margin-top: 2rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}


/*===============
スクロールアニメーション
===============*/
.scroll_down {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding-bottom: 100px;
    z-index: 1;
}

.scroll_down .arrow {
    writing-mode: vertical-lr;
}

.scroll_down::after {
    content: "";
    display: block;
    width: 1px;
    height: 90px;
    background-color: #333;
    top: 0;
    left: 50%;
    transform: translateX(-1px);
    animation: arrow 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes arrow {
    0% {
        transform: scale(1, 0) translateX(-1px);
        transform-origin: 0% 0%;
    }

    50% {
        transform: scale(1, 1) translateX(-1px);
        transform-origin: 0% 0%;
    }

    51% {
        transform: scale(1, 1) translateX(-1px);
        transform-origin: 0% 100%;
    }

    100% {
        transform: scale(1, 0) translateX(-1px);
        transform-origin: 0% 100%;
    }
}

.off {
    display: none;
}

/*================
keyビジュアル
================*/
.background {
    height: 50vw;
    min-height: 50vh;
}

.background::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 50vw;
    min-height: 50vh;
    margin-top: 50px;
    background-image: url(../img/cover.jpg);
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: center center;
    background-color: #5a8baa;
}

/*=======min-width:1280px=======*/


/*================
Concept
================*/
#concept {
    padding: 100px 0 0 0;
}

.concept_text {
    line-height: 2.5;
    font-size: var(--sp_text);
}

.concept_1,
.concept_2 {
    margin-bottom: 2rem;
}

.about_text {
    margin: 0 22px;
}

@media screen and (min-width:767px) {
    .concept_text {
        line-height: 2.5;
        font-size: var(--pc_text);
    }

    /*=======min-width:767px=======*/
}


/*================
slider
================*/
#slider_img {
    margin-bottom: 160px;
}

.slide-items {
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-items li {
    height: auto;
    margin-right: 10px;
    margin-left: 10px;
}

.slide-items img {
    width: 100%;
    object-fit: cover;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.slick-dots li button:before {
    font-size: 0.3rem;
    top: 0.3rem;
}


/*================
Menu
================*/
#menu {
    background-color: rgba(var(--background_color_10));
    padding: 100px 0 50px 0;
}

.menu_inner {
    max-width: 767px;
    margin-left: auto;
    margin-right: auto;
}

#menu .menuDl {
    display: flex;
    justify-content: space-between;
}

/* 20241004 .menuDt_bodycare*/
#menu .menuDl_bodycare {
    display: flex;
    justify-content: space-between;
}

/* 20241004 .menuDt_bodycare*/
#menu .menuDt_bodycare {
    padding: 0 0 0 0;
    font-size: 13px;
    line-height: 1.5;
}

#menu .menu_bodycare span {
    font-size: var(--pc_small);
}

#menu .text_inner {
    margin-top: 25px;
    margin-bottom: 25px;
}

#menu .text_inner p {
    text-align: left;
}

#menu dt {
    padding: 0 0 15px 0;
}



#menu dt,
dd {
    font-size: 13px;
    line-height: 1.5;
}

/* 20241004 .text_inner liを追加*/
.menu_inner p,
.menu_inner li {
    font-size: var(--sp_small);
}

.menu_info p,
.menu_info li {
    font-size: var(--sp_text);
}


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

    #menu .menuDl {
        display: flex;
        justify-content: space-between;
        line-height: 2.5;
    }

    #menu .menuDl dt,
    dd {
        font-size: var(--pc_text);
        line-height: 1.5;
    }

    /* 20241004 .menuDt_bodycare*/
    #menu .menuDt_bodycare {
        font-size: var(--pc_text);
        line-height: 1.5;
    }

    #menu .text_inner {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    /* 20241004 .text_inner liを追加*/
    #menu .text_inner p,
    .text_inner li,
    .menu_headspa p,
    .menu_hairrestoration p,
    .menu_info p,
    .menu_info li {
        font-size: var(--pc_small);
    }

    /*=======min-width:767px=======*/
}

/*================
info
================*/

.info_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #718F9A;
    margin: 100px 0;
    padding: 50px 0;
    font-size: x-large;
    text-decoration: underline;
}

.reset_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px 0;
    padding: 50px 0;
    font-size: x-large;
    text-decoration: underline;
}

@media screen and (min-width:1280px) {
    .info_inner .reset_inner {
        max-width: 1200px;
        margin: 100px auto;
    }

    /*=======min-width:1280px=======*/
}

/*================
about
================*/

.about_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: double 5px #718F9A;
    margin: 100px 0;
    padding: 50px 0;
}

.about_img {
    margin: 0 auto;
    margin-bottom: 2rem;
    width: 200px;
}

.about_text p {
    font-size: var(--sp_text);
}

.about_me {
    margin-bottom: 1.5rem;
}

@media screen and (min-width:1280px) {
    .about_inner {
        align-items: center;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        margin: 100px auto;
        border: double 5px #718F9A;
        padding: 2em 1em;
        max-width: 1200px;
    }

    /*=======min-width:1280px=======*/
}


/*================
Access
================*/

#access {
    background: rgba(var(--background_color_10));
    padding: 100px 0 50px 0;
    margin-bottom: 100px;
}

#access dl {
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    font-size: var(--sp_text);
}

#access dt {
    width: 40%;
    border-bottom: dotted 1px #707070;
    padding: 15px;
}

#access dd {
    width: 60%;
    border-bottom: dotted 1px #707070;
    padding: 15px;
}

@media screen and (min-width:1280px) {
    #access dl {
        max-width: 600px;
        display: flex;
        flex-wrap: wrap;
        margin: 20px auto;
        font-size: var(--pc_text);
    }

    /*=======min-width:1280px=======*/
}


/*================
お問い合わせ
================*/
#contact {
    margin: 0 auto 150px auto;
}

.contact_btn_2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.btn_2 {
    margin: 0 auto;
    padding: 10px 1%;
    max-width: 342px;
    border: #707070 2px solid;
    width: 250px;
    height: 50px;
}

.btn_2 a {
    text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen {
    @media screen and (max-width:983px) {
        .contact_btn_2 {
            display: block;
            margin: 10px auto;
        }

        .btn_2 {
            margin: 10px auto;
            padding: 10px 1%;
            max-width: 342px;
            border: #707070 2px solid;
            width: 250px;
            height: 50px;
        }

        /*=======max-width:983px=======*/
    }
}

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

    /* Web予約 */
    .btn_web_sp {
        position: relative;
        display: block;
        border-radius: 20px;
        color: #263c47;
        background-color: #E3D3E0;
        padding: 10px 36px;
        max-width: 200px;
        margin: 50px auto;
    }

    .btn_web_sp:hover {
        opacity: .8;
    }

    .btn_web_sp a {
        text-decoration: none;
        padding-left: 30px;
        font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
        font-size: var(--sp_title);
    }

    .btn_web_sp::after {
        content: "";
        background: url(../img/phone_android_FILL0_wght400_GRAD0_opsz48.svg)no-repeat center;
        background-size: contain;
        width: 24px;
        height: 24px;
        position: absolute;
        left: 0;
        margin-left: 24px;
    }

    /*=======max-width:767px=======*/
}

@media screen and (min-width:768px) {
    .btn_web_sp {
        display: none;
    }

    /*=======min-width:768px=======*/
}

/*================
フッター
================*/
footer {
    background: rgba(var(--background_color_10));
    text-align: center;
    z-index: 5;
}

.footer_inner {
    margin-left: auto;
    margin-right: auto;
}


.followme {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
}

.followme p {
    margin-right: 1rem;
}

footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer li {
    margin: 0 1rem;
}

.footer_menu ul {
    padding-bottom: 3rem;
}