@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: large;
    letter-spacing: 0.2em;
    border-bottom: 0.5px solid var(--text_main_color);
    display: inline-block;
}

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

span {
    font-size: small;
}

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;
}

@media screen and (max-width:767px) {
    span {
        font-size: medium;
    }

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


/*================
ヘッダー
================*/
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/top02.jpg);
    background-repeat: no-repeat;
    background-size: 90% auto;
    background-position: center center;
}

/*=======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;
}

.concept_pc {
    display: none;
}

@media screen and (min-width:767px) {
    #concept {
        padding: 100px 0 0 0;
    }

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

    .concept_sp {
        display: none;
    }

    .concept_pc {
        display: block;
    }


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


/*================
お問い合わせ
================*/
#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=======*/
    }
}


/* 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;
}


/*================
フッター
================*/
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;
}