@charset "UTF-8";
/*主なブレイクポイント設定
sp ~600px
tablet 601~1024
PC 1025~*/

/*===全体設定===*/
html {
    /*レスポなら毎回この設定でOK（16pxの67.5％＝10pxになる）*/
    font-size: 67.5%;
}

body {
    background-color: #F6E6CB;
    font-family: "Noto Sans JP", sans-serif;
    /*10pxの1.6倍＝16pxに設定*/
    font-size: 1.6rem;
    line-height: 1;
    color: #333;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.5;
}

/*===汎用クラス===*/
.inner {
    padding-left: 5.6%;
    padding-right: 5.6%;
    /*最大1180、で画像幅がストップ*/
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.sub_title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.text {
    line-height: 2;
    margin-top: -0.5em;

}

.btn {
    display: block;
    max-width: 380px;
    line-height: 80px;
    color: #fff;
    text-align: center;
    background-color: #534340;
    margin: 0 auto;
}

/*==== ABOUT・MENU ====*/
.title {
    font-weight: normal;
    resize: 3.4rem;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
    margin-bottom: 8px;
}


/*PC　1025以上になった時*/
@media screen and (min-width:1025px) {
    .inner {
        padding-left: 0;
        padding-right: 0;
    }
}

/*=== header ===*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    width: 150px;
    margin-top: 24px;
}

/*==== ハンバーガー3本線を描く ====*/
/*================================*/
header .menu_btn {
    width: 26px;
    height: 26px;
    z-index: 10;
}

header .menu_btn span {
    /*spanは元々非表示だから表示させる*/
    display: block;
    background-color: #0e0e0e;
    height: 2px;
    /*ゆっくり×マークに変わる(^^♪*/
    transition: 0.3s;
}

header .menu_btn span:nth-child(2) {
    transform: translateY(10px);
}

header .menu_btn span:nth-child(3) {
    transform: translateY(20px);
}

/*ハンバーガーの×マーク(Javascriptでclass="on")*/
/*①2本目を消す*/
.on header .menu_btn span:nth-child(2) {
    display: none;
}

/*上下の線を中央に重ねる
2本目が消えた＝2px消えた→下に12px
で45度かたむける*/
.on header .menu_btn span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.on header .menu_btn span:nth-child(3) {
    transform: translateY(10px) rotate(-45deg);
}

/*▲バーガーここまで================================*/

/*==== ハンバーガー開いた時 ====*/
nav {
    background-color: rgba(83, 67, 64, 0.8);
    position: fixed;
    top: -30px;
    width: 100%;
    /*端末と同じ高さ*/
    height: 100vh;
    padding-top: 50px;
    /*表示非表示の切り替え・アニメ*/
    opacity: 0;
    transition: 0.5s;
    /*押せてしまうのを防止*/
    visibility: hidden;
}

/*.onになったらnavを表示させる*/
.on nav {
    /*表示非表示の切り替え*/
    opacity: 1;
    /*押せてしまうのを防止*/
    visibility: visible;
}

/*×マークを白に設定してz-indexで上に*/
.on header .menu_btn span {
    background-color: #fff;
}

nav p {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    border-top: 2px dashed #fff
}

nav ul li {
    text-align: center;
    font-size: 3.5rem;
    line-height: 2;
    border-bottom: 2px dashed #fff;
}

nav ul li a {
    color: #fff;
    /*ボタン間を押せるように設定*/
    display: block;
}

nav ul li a span {
    /*spanのアルファベット表記を非表示*/
    display: none;
}

/*===スライダー（キービジュアル）===*/
.key {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 64px;
    margin-top: 24px;
}

.key ul {
    padding: 0;
    list-style-type: none;
}


/*===PC用===*/
@media screen and (min-width:1025px) {
    header {
        /*ロゴをセンター揃え*/
        justify-content: center;
    }

    header .menu_btn {
        /*ハンバーガー消す*/
        display: none;
    }

    /*ハンバーガーnav*/
    nav {
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        width: auto;
        height: auto;
        position: static;
        margin-top: 64px;
        margin-bottom: 128px;
        padding-top: 0;
    }

    nav p {
        display: none;
    }

    nav ul {
        border-top: none;
        /*横並びへ*/
        display: flex;
        justify-content: space-between;
    }

    nav ul li {
        border-bottom: none;
        font-size: 1.6rem;
        width: 23.7288136%;
        /*spanにもかかる*/
        line-height: 1.5;
    }

    nav ul li a {
        background-color: #e3cdc1;
        color: #534340;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    nav ul li a span {
        /*表示させる*/
        display: block;
        font-size: 1.2rem;
    }
}

/*===============
ANDANTEについて
=================*/
.top_about {
    max-width: 600px;
    margin-bottom: 64px;
}

.top_about img {
    margin-bottom: 24px;
}

.top_about .text {
    margin-bottom: 24px;
}

@media screen and (min-width:1025px) {
    .top_about {
        min-width: 1180px;
        padding-left: 8.4746%;
        padding-right: 8.4746%;
        margin-bottom: 128px;
    }

    .top_about .top_about_content {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .top_about img {
        width: 48.9796%;
        height: 100%;
    }

    .top_about_text {
        width: 48.9796%;
    }
}

/*===============
メニュー
=================*/
.top_menu figure {
    margin-bottom: 24px;
}

.top_menu figure img {
    margin-bottom: 8px;
}

.top_menu figure figcaption {
    text-align: center;
}

.top_menu figure figcaption span {
    font-size: 1.2rem;
}

@media screen and (min-width:600px) {
    .top_menu div {
        display: flex;
        justify-content: space-between;
    }

    .top_menu div figure {
        flex-basis: 32.2033898%;
    }
}

/*===============
フッター
=================*/
footer {
    background-color: #534350;
    margin-top: 160px;
    padding-top: 32px;
    padding-bottom: 32px;
}

footer img {
    width: 175px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

footer ul {
    list-style-type: none;
    padding: 0;
    width: 80%;
    margin: auto;
    margin-bottom: 32px;
    border-top: 1px dashed #FFF;
    text-align: center;
}

footer ul li {
    border-bottom: 1px dashed #fff;
    line-height: 3;
}

footer ul li a {
    color: #fff;
    display: block;
}

footer small {
    font-size: #fff;
    /*tacが効かないからdb*/
    display: block;
    text-align: center;
}

@media screen and (min-width:600px) {
    footer ul {
        display: flex;
        justify-content: center;
        border-top: none;
        /*w80%を打ち消す*/
        width: auto;
    }

    footer ul li {
        border-bottom: none;
    }

    footer ul li a {
        padding-left: 20px;
        padding-right: 20px;
    }
}

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

/*=======max-widh:1000px(1000px以下・PCファースト時)の設定ここまで===========*/

/*===============
下層ページ共通
=================*/
.under nav {
    margin-top: 30px;
    margin-bottom: 64px;
}

.under_title {
    background-size: cover;
    height: 190px;
    background-position: center center;
    margin-top: 64px;
    margin-bottom: 64px;
    /*ｈ２を中央揃えに*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.under_title h2 {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px 30px;
    font-family: 'Noto Serif JP', serif;
    color: #534340;
    font-size: 8vw;
}

@media screen and (min-width:600px) {
    .under_title h2 {
        font-size: 3.5rem;
    }
}

/*=======min-widh:600px(600px以上・スマホファースト時)の設定ここまで===========*/
@media screen and (max-width:600px) {
    .under_title {
        margin-top: 24px;
    }

}

/*=======max-widh:600px(600px以下・PCファースト時)の設定ここまで===========*/

h3.headding {
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
    color: #534340;
    margin-bottom: 24px;
    font-family: serif;
}

/*h3下のアンダーライン(長さ共通)*/
h3.headding::after {
    content: "";
    display: block;
    height: 2px;
    width: 178px;
    background-color: #534340;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

/*===============
Aboutページ
=================*/
.about .under_title {
    background-image: url(../img/about_title.jpg);
}

.about .relaxation {
    margin-bottom: 64px;
}

.about .about_box p.text {
    margin-bottom: 24px;
}

@media screen and (min-width:600px) {
    .about .about_box {
        display: flex;
        flex-direction: column-reverse;
    }

    .about .about_box .box_text {
        background-color: rgba(277, 205, 193, 0.85);
        padding: 2rem;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        margin-top: -50px;
    }
}

/*=======min-widh:600px(600px以上・スマホファースト時)の設定ここまで===========*/

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

    .about .about_box {
        display: block;
        width: 780px;
        position: relative;
        margin-bottom: 220px;
    }

    .about .about_box .box_text {
        position: absolute;
        bottom: 0;
        width: 480px;
        /*下に下げる*/
        transform: translateY(90px);
    }

    .about .about_box img {
        width: 580px;
    }

    .about .blend img {
        /*画像を右に寄せる*/
        margin-left: auto;
    }

    .about .relaxation .box_text {
        /*画像を右に寄せる*/
        right: 0;
    }

    .about .headding {
        text-align: left;
        font-size: 4.6rem;
    }

    .about .blend .headding {
        font-size: 3.8rem;
    }

    .about .headding::after {
        margin-left: 0;
    }

}

/*=======min-widh:1025px(1025px以上・スマホファースト時)の設定ここまで===========*/

/*===============
Menuページ
=================*/
.menu .under_title {
    background-image: url(../img/menu_title.jpg);
    width: 100%;
}

.menu .drink {
    margin-bottom: 64px;
}

.menu .menu_box figure {
    margin-bottom: 24px;
}

.menu .menu_box figure img {
    margin-bottom: 8px;
}

.menu .menu_box figure figcaption {
    text-align: center;
}

@media screen and (min-width:600px) {
    .menu .menu_box div {
        display: flex;
        justify-content: space-between;
    }

    .menu .menu_box div figure {
        flex-basis: 32.0203%;
    }
}

/*=======min-widh:600px(600px以上・スマホファースト時)の設定ここまで===========*/

/*===============
Accessページ
=================*/
.access .under_title {
    background-image: url(../img/access_title.jpg);
}

.access .map {
    margin-bottom: 64px;
}

.access .map iframe {
    width: 100%;
    height: auto;
    /*縦横比の固定　4：3*/
    aspect-ratio: 4/3;
}

.access .access_box table th,
td {
    display: block;
}

.access .access_box table th {
    text-align: left;
    font-weight: normal;
    border-bottom: 1px dashed #534340;
    padding-bottom: 8px;
    margin-bottom: 8px;

}

.access .access_box table td {
    margin-bottom: 24px;
    line-height: 1.5;
}

@media screen and (min-width:600px) {
    .access .map iframe {
        /*縦横比の固定　4：3*/
        aspect-ratio: 2/1;
    }

    .access .access_box table {
        min-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }

    .access .access_box table th {
        width: 30%;
    }

    .access .access_box table th,
    td {
        display: table-cell;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .access .access_box table td {
        border-bottom: 1px dashed #534340;
    }
}

/*=======min-widh:600px(600px以上・スマホファースト時)の設定ここまで===========*/

@media screen and (min-width:1025px) {
    .access .map {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .access .map iframe {
        width: 85%;
        /*縦横比の固定　4：3*/
        aspect-ratio: 2/1;
    }
}

/*=======min-widh:1025px(1025px以上・スマホファースト時)の設定ここまで===========*/