@charset "UTF-8";

/****************************************

基礎

*****************************************/
/******************
全体への設定
*******************/
/* base.cssに追記したい */
.pc-only ul {
    margin-top: 10px;
}

.sp-only .translate {
    padding-left: 1rem;
    padding-top: 1rem;
    margin: auto;
}

#index .sp-only .sns-logo {
    width: 90%;
}

.translate {
    width: 90%;
    margin-top: 0;
    padding-left: 90px;
}

.translate li {
    padding-left: 1rem;
}

.translate li:first-child {
    padding-left: 0;
}

.sp-only .booking {
    width: 90%;
    margin: auto;
    /* padding-left: 1rem; */
}

.sp-only .booking img {
    width: 20%;
}

* {
    /* background-color: #EEF9FC; */
    font-size: 14px;
    text-decoration: none;
    font-family: "BIZ UDMincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4rem;
}

.logo {
    width: 7.1428571rem;
}

.f-afacad {
    font-family: "Afacad", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.f-sedan {
    font-family: "Sedan", serif;
    font-weight: 400;
    font-style: normal;
}


/******************
レイアウト
*******************/
body {
    position: relative;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

ul {
    list-style-type: none;
}

main {
    width: 90%;
    margin-inline: auto;
}



/******************
マージン/パディング
*******************/
.m-auto {
    margin: auto;
}



/******************
フォントサイズ
*******************/
h1 {
    font-size: clamp(3rem, 1.303rem + 7.24vw, 6rem);
}

p {
    line-height: 1.142;
}



/******************
フォントカラー
*******************/
.f-white {
    color: #fff;
}

.f-black {
    color: #000;
}

.f-base {
    color: #EEF9FC;
}

.f-main {
    color: #CEC4BB;
}

.f-accent-green {
    color: #687C62;
}

.f-accent-beige {
    color: #DAC380;
}

.f-gray {
    color: #5B6375;
}

a:visited,
a {
    color: black;
}



/******************
背景色
*******************/
.bg-white {
    background-color: #fff;
}

.bg-black {
    background-color: #000;
}

.bg-base {
    background-color: #EEF9FC;
}

.bg-main {
    background-color: #CEC4BB;
}

.bg-accent-green {
    background-color: #687C62;
}

.bg-accent-beige {
    background-color: #DAC380;
}

.bg-gray {
    background-color: #5B6375;
}



/******************
ボーダー
*******************/
.bd-white {
    border: 1px solid #fff;
}

.bd-black {
    border: 1px solid #000;
}

.bd-base {
    border: 1px solid #EEF9FC;
}

.bd-main {
    border: 1px solid #CEC4BB;
}

.bd-accent-green {
    border: 1px solid #687C62;
}

.bd-accent-beige {
    border: 1px solid #DAC380;
}

.bd-gray {
    border: 1px solid #5B6375;
}




/******************
ヘッダー
*******************/
header {
    height: 90vh;
}

header.pc-only nav ul li {
    margin-bottom: 2.85714284rem;
}

header nav ul li a {
    font-family: "Sedan", serif;
    font-weight: 400;
    font-style: normal;
}

header .sns-logo img {
    width: 20px;
    height: 20px;
}

header .sns-logo {
    width: 50%;
    margin: 3rem auto 0;
    list-style: none;
    display: flex;
    gap: 1rem;
}

header .sns-logo li:first-child {
    padding-left: 1rem;
}




/******************
フッター
*******************/
footer {
    position: relative;
    width: 100%;
    height: 30vh;
    background: url(../images/all/footer.webp) no-repeat center/cover;
    left: 0;
    bottom: 0;
}

footer .logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}



/******************
予約ボタン
*******************/
.sp-reserve-btn {
    position: sticky;
    bottom: 0;
    left: 0;
    display: block;
    background: #B8A468;
    height: 3.214285695rem;
    width: 100%;
    text-align: center;
    opacity: 0.8;
}

.sp-reserve-btn a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    color: #fff;
    font-size: 1.142857136rem;
}



/******************
メイン
*******************/
/* .first-view .main-bg {
    background: url(../images/top/snow-2.webp) no-repeat center/cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    ファーストビューに合わせて高さを変えてください
} */



/*
    テストとして領域を作っただけのものです。
    コンテンツを入れるときに決しておっけーです
     */
/* .main-content {
    height: 1000px;
} */












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

    /******************
    このメディアクエリはモニタごとに表示非表示を切り替えるためだけのものです。
    ここを扱う際はなぎのに一言声をかけてくれると嬉しいです。
    *******************/
    .pc-only {
        display: none;
    }
}






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

    /****************************************

    PCサイズはこちらに記述してください。

    *****************************************/
    /******************
    全体への設定
    *******************/
    .sp-only {
        display: none;
    }

    .ground-content {
        display: flex;
    }

    body>div>main {
        width: 75%;
    }

    /******************
    ヘッダー
    *******************/
    header {
        width: 25%;
        height: 100vh;
        z-index: 1;
        mix-blend-mode: difference;
    }

    header.pc-only ul li a {
        color: white;
    }

    header nav {
        position: fixed;
        width: 100%;
        max-width: 290px;
        padding-top: 3.999999976rem;
    }

    header nav li {
        padding-left: 90px;
    }

    header .sns-logo li:nth-child(2) {
        padding-left: 1rem;
    }

    .pc-reserve-btn {
        position: fixed;
        right: 0;
        top: 0;
        opacity: 0.8;
        z-index: 1;
    }

    .pc-reserve-btn a {
        color: #fff;
        font-size: 1.142857136rem;
        display: inline-block;
        background: #B8A468;
        padding: 2.285714272rem 5.571428538rem;
    }

    .first-view {
        height: 100vh;
    }



    /* .first-view img {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        display: block;
        object-fit: cover;
        width: 100%;
    } */


    /* .first-view .main-bg {
        background: url(../images/top/snow-2.webp) no-repeat center/cover;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
    } */

}