@charset "UTF-8";

/* 共通部分 
-----------------------------------------*/

html {
    font-style: 100%;
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", "Zen Kaku Gothic New", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 0.75rem;
}

p {
    font-size: 0.75rem;
    letter-spacing: 0.375rem;
}

h2 {
    letter-spacing: 0.625;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.64rem;
}

img {
    width: 100%;
}

.wrapper {
    width: 62.5%;
    display: block;
    margin: 0 auto;
}

.mv {
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.bold {
    font-weight: 900;
}


/* ハンバーガーメニュー*/
ul {
    list-style: none;
}

#menu_btn_check {
    display: none;
}

.menu_btn {
    width: 24px;
    height: 40px;
    position: fixed;
    top: 90px;
    right: 90px;
    translate: 50% -50%;
    z-index: 999;
    /* width: 60px;
    height: 60px; 
    background-color: orange; */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* background-color: red; */
}

.menu_btn span,
.menu_btn span::before,
.menu_btn span::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    line-height: 6px;
    border-radius: 50%;
    background-color: black;
    border: solid 1px black;
    transition: all 0.3s ease;
    position: relative;
}

/* spanはインライン要素なのでwidthとheightの指定ができない。ブロック要素にする。 */

.menu_btn span::before {
    position: absolute;
    top: -1px;
    right: 8px;
}

.menu_btn span::after {
    position: absolute;
    top: -1px;
    left: 8px;
}

/* #menu_btn_check:checked~.menu_btn span,
#menu_btn_check:checked~.menu_btn span::before,
#menu_btn_check:checked~.menu_btn span::after {
    background-color: transparent;
    display: inline-block;
    width: 6px;
    height: 6px;
    text-align: center;
    line-height: 6px;
    border-radius: 50%;
    border: solid 1px black;
    transition: all 0.3s ease;
} */

.menu_content {
    position: fixed;
    top: 130px;
    right: 40px;
    background-color: #eeeeee;
    width: 100px;
    height: 140px;
    text-align: left;
    padding-top: 2rem;
    padding-left: .5rem;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

/* #menu_btn_check:checked~.menu_content, */
#menu_btn_check:hover~.menu_content,
.menu_content:hover {
    top: 110px;
    opacity: 1;
    visibility: visible;
    /* animation: fadeIn .5s ease; */
}

.menu_content a {
    transition: all 0.2s ease-in-out;
    font-weight: 900;
    letter-spacing: .1rem;
}

.menu_content a:hover {
    /* letter-spacing: .4em; */
    color: white;
}

/* トップページ-------------------------- */

/* ロゴ */

.top-mv {
    width: 100%;
    height: 650px;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.top-mv img {
    width: 10%;
    min-width: 70px;
    margin: 0 auto;
}

/* 画像リンク */
.top-df {
    display: flex;
    flex-wrap: wrap;
}

.top-df a {
    width: 50%;
    position: relative;
    overflow: hidden;
    /* ↑ブラー時の輪郭のぼやけを隠すため */
}

.top-df img {
    vertical-align: top;
    margin: -2px;
    /* blurの値と同じ値だけマイナス */
    width: calc(100% + 4px);
    /* 左右の10ピクセル分加算 */
    transition: all 0.3s ease;
}

.top-df img:hover {
    filter: brightness(0.6) blur(2px);
    /* 画像ホバーすると暗くなってブラーがかかる */
}

.top-caption {
    color: #fff;
    letter-spacing: .1rem;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    translate: -50% 50%;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.top-df img:hover~.top-caption {
    visibility: visible;
    opacity: 1;
}

/* YouTubeモーダル------------------------- */

.top-yt {
    font-size: .75rem;
    display: block;
    width: 100px;
    text-align: center;
    margin: 325px auto 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.top-yt:hover {
    color: #6a7b9f;
}

/*コントローラーを2秒後に隠す*/
.youtube iframe {
    pointer-events: none;
}


/***モーダル指定***/
/*モーダルを開くボタン*/
/* .modal-open {
    width: 300px;
    height: 50px;
    font-weight: bold;
    color: #fff;
    background: #000;
    margin: 20px auto;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
} */

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 80%);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100vh;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
    opacity: 1;
    visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 600px;
    width: 90%;
    height: auto;
}

.modal-body .videoslide {
    width: 100%;
    aspect-ratio: 16/9;
}

.modal-body .videoslide iframe {
    width: 100%;
    height: 100%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ここまでtop-page*/

/* メニューページ-----------------------------------------*/
h2 {
    font-size: 1.25rem;
    letter-spacing: 0.625rem;
}

.menu-content-yakimono {
    text-align: left;
    width: 72.5%;
    margin: 200px auto;
    display: block;
}

.menu-content-drink {
    text-align: left;
    width: 72.5%;
    margin: 0 auto 200px auto;
    display: block;
}

.menu-content-drink h2 {
    padding-top: 200px;
}

.menu-content-course {
    margin-top: 200px;
}

.menu-content-pork,
.menu-content-chicken,
.course,
.menu-alcohol {
    margin-top: 120px;
}

.menu-content-yakimono p,
.menu-content-drink p {
    line-height: 5rem;
}

/* ここまでmenu-page */

/* ファーマーページ-----------------------------------------*/
.farmer-content {
    text-align: left;
    width: 72.5%;
    margin: 200px auto;
    display: block;
}

.farmer-content p {
    line-height: 2.5rem;
}

.farmer-content-text {
    margin-top: 100px;
}

.farmer-df {
    display: flex;
    overflow: hidden;
}

.farmer-df img,
.farmer-df a {
    width: 50%;
    vertical-align: top;
}

.farmer-df video {
    width: 100%;
    vertical-align: top;
}

.farmer-yt {
    display: block;
    margin: 0 0 0 auto;
    width: 70px;
    text-align: right;
    transition: all 0.2s ease;
}

.farmer-yt:hover {
    color: #6a7b9f;
}

/* ここまでfarmer-page */

/* コンタクトページ-----------------------------------------*/
.contact-content {
    text-align: center;
    margin-top: 325px;
    display: block;
}

/* 行間 */
.contact-content p {
    line-height: 2.2rem;
    letter-spacing: 0.1rem;
}

.goods {
    text-decoration: underline;
}

.c-c-tabelog a {
    display: block;
    width: 142px;
    height: 13px;
    background-image: url(../img/c-c-tabelog@4x.png);
    background-size: 96%;
    margin: 10px auto 10px;
    transition: all 0.2s;
}

.c-c-tabelog a:hover {
    background-image: url(../img/c-c-tabe-bl@4x.png);
}

.contact-content i {
    height: 25px;
    padding-right: 5px;
}

/*map-グレースケール */
.map-grayscale {
    filter: grayscale(100%);
}

.iframe-aspect {
    max-width: 100%;
}

.iframe-aspect iframe {
    aspect-ratio: 2 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content a {
    transition: all 0.2s ease;
}

.contact-content a:hover {
    color: #6a7b9f;
}

/* ここまでcontact-page */


/* フッター ----------------------------------------*/
footer {
    text-align: center;
    margin-top: 325px;
}

footer p {
    letter-spacing: normal;
}

.link-icon {
    margin-top: 80px;
}

.copyright {
    margin: 80px 0;
}

.insta a {
    font-size: 1.7rem;
}

.footer-icon {
    margin-right: .7rem;
}


.taberogu a {
    aspect-ratio: 5/1;
    width: 100px;
    margin: 22px auto 0;
    background-image: url(../img/tabelog.svg);
}

.taberogu a:hover {
    background-image: url(../img/tabelog-blue.svg);
}

.footer-mt {
    display: block;
    width: 100px;
    margin: 22px auto 0;
}

footer a {
    transition: all 0.2s ease;
}

footer a:hover {
    color: #6a7b9f;
}

/*トップへ戻る(トップページ以外)*/
.back-btn {
    position: fixed;
    bottom: 40px;
    right: 60px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.back-btn.active {
    bottom: 60px;
    opacity: 1;
    visibility: visible;
    display: block;
}

@media (min-width:769px) {
    .sp-only {
        display: none;
    }
}

/* スマホ版 -----------------------------------------*/
@media(max-width:768px) {
    .pc-only {
        display: none;
    }

    /* 共通 ----------------------------------------*/
    .wrapper {
        width: 90%;
    }

    footer {
        margin-top: 250px;
    }

    h1 {
        font-size: 1.625rem;
    }

    p {
        font-size: 0.75rem;
        letter-spacing: 0.375rem;
    }

    /* トップページ以外 */
    .mv {
        margin-top: 50px;
        height: 460px;
    }

    .back-btn {
        bottom: 20px;
        right: 30px;
    }

    .back-btn.active {
        bottom: 30px;
    }

    .go_top img {
        width: 7px;
    }

    /* ハンバーガーメニュー */
    .menu_btn {
        width: 24px;
        height: 40px;
        position: fixed;
        top: 45px;
        right: 45px;
        translate: 50% -50%;
    }

    .menu_btn span,
    .menu_btn span::before,
    .menu_btn span::after {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        line-height: 5px;
        border-radius: 50%;
        background-color: black;
        border: solid 1px black;
        transition: all 0.3s ease;
        position: relative;
    }

    .menu_btn span::before {
        position: absolute;
        top: -1px;
        right: 6px;
    }

    .menu_btn span::after {
        position: absolute;
        top: -1px;
        left: 6px;
    }

    .menu_content {
        position: fixed;
        top: 80px;
        right: 20px;
    }

    #menu_btn_check:hover~.menu_content,
    .menu_content:hover {
        top: 60px;
    }

    /* トップページ---------------------------------------- */

    .top-mv {
        margin-top: 50px;
        height: 550px;
    }

    .top-content {
        padding-bottom: 0;
    }

    .top-mv img {
        width: 20%;
        margin: 0 auto;
    }

    .top-df {
        flex-direction: column;

    }

    .top-df a {
        width: 100%;
        position: relative;
        overflow: hidden;
        /* ↑ブラー時の輪郭のぼやけを隠すため */

    }

    .top-yt {
        margin-top: 250px;
        display: none;
    }


    /* メニューページ---------------------------------------- */
    .menu-content-yakimono {
        width: 77%;
        margin: 150px auto;
    }


    .menu-content-course {
        margin-top: 150px;
    }

    .menu-content-pork,
    .menu-content-chicken,
    .course,
    .menu-alcohol {
        margin-top: 80px;
    }

    .menu-content-yakimono p,
    .menu-content-drink p {
        line-height: 3.75rem;
    }

    .sp-only img {
        display: block;
    }

    .menu-content-drink {
        margin: 0 auto 150px auto;
        display: block;
        width: 77%;
    }

    .menu-content-drink h2 {
        padding-top: 150px;
    }

    /* ファーマーページ ----------------------------------------*/
    .farmer-content {
        width: 77%;
        margin: 160px auto;
    }

    .farmer-content p {
        line-height: 2rem;
    }

    .farmer-content-text {
        margin-top: 50px;
    }

    .farmer-df img,
    .farmer-df a {
        width: 100%;
    }

    .farmer-df {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .farmer-df video {
        width: 101%;
        vertical-align: top;
    }

    /* コンタクトページ ----------------------------------------*/
    .contact-content {
        margin-top: 250px;
    }

}