@charset "utf-8";

html {
    scroll-behavior: smooth;
}



body {
    background-color: #fff8f8;
    color: #111;
    font-family: "Zen Kaku Gothic New", system-ui;
}


header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ビデオが全体を覆う */
    z-index: -1;
    /* 他の要素より後ろに配置 */
}




input {
    display: none;
}

header ul {
    position: fixed;
    width: 100%;
    background-color: rgba(102, 100, 100, 0.9);
    display: flex;
    justify-content: space-around;
    z-index: 999;
}

header ul a {
    font-family: "Caveat", system-ui;
    text-decoration: none;
    color: #ffffff;
    font-size: 40px;
    letter-spacing: 0.2em;
}

a:hover {
    color: rgb(242, 153, 0);
}


.scroll {
    font-weight: bold;
    margin-top: 500px;
    padding: 100px;
    position: relative;
    text-align: center;
    color: #fff;
}

/*///////// 矢印のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    content: "";
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
}

/* /////////矢印のアニメーション */
@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translate(0, 0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: rotate(-45deg) translate(-20px, 20px);
    }

    100% {
        opacity: 0;
    }
}

/* ////////トップに戻るボタン///////// */
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 30;
}

.pagetop a {
    display: block;
    background-color: rgb(242, 153, 0);
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.8;
    border-radius: 30px;
}



.pagetop a:hover {
    display: block;
    background-color: #525252;
    text-align: center;
    /* color: #fff; */
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
    filter: alpha(opacity=50);
    -moz-opacity: 0.8;
    opacity: 0.8;
}

/*/////////// about/////////// */
h2 {
    font-weight: bolder;
    font-family: "Caveat", system-ui;
    font-size: 50px;
    text-align: center;
    padding: 120px 0 50px;
}

.text>p {
    text-align: center;
    line-height: 2.5;
    margin-bottom: 50px;
    font-size: 20px;
}

.text img {
    width: 50%;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    margin-bottom: 50px;
}

.photGarelly {
    display: grid;
    grid-template-rows: 40vw, 40vw;
    grid-template-columns: 50%, 50%;
}

.item01 {
    grid-row: 1/2;
    grid-column: 1/3;
}

.item02 {
    grid-row: 2/3;
    grid-column: 1/2;
}

.item03 {
    grid-row: 2/3;
    grid-column: 2/3;
}

.photGarelly li img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}

.box {
    width: 100%;
    margin: 0 0 50px;
    opacity: 0;
    transition: 0.6s;
    position: relative;
    top: 50px;
}

.active {
    opacity: 1;
    top: 0;
}

/*/////////// menu ///////////*/
#sectionmenu {
    position: relative;
    background-image: url(../image/Group1.png);
}

#menuSec::before {
    content: url(../image/Rectangle\ 102.png);
    opacity: 0.8;
    position: absolute;
    top: 100px;
    right: 10px;
}

#menuSec::after {
    content: url(../image/kuturoguhito.png);
    position: absolute;
    left: 10px;
    top: 550px;
}

.menupic {
    text-align: center;
}

.menupic img {
    width: 50%;
    margin-bottom: 20px;
}

h3 {
    font-weight: bolder;
    font-family: "Caveat", system-ui;
    font-size: 30px;
    text-align: center;
    padding-top: 30px;
    margin-bottom: 30px;

}

dd {
    text-align: center;
    margin-bottom: 30px;
}

dt {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

dd>span {
    font-weight: bold;
    font-size: 25px;
}

#sectionmenu {
    position: relative;
}

.drinklist::after {
    content: url(../image/Vector.png);
    position: absolute;
    left: 100px;
    bottom: 100px;
}

.sweetslist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sweetslist img {
    display: inline-block;
    width: 350px;
    height: 300px;
    margin: 10px 70px;
    border-radius: 20px;
    object-fit: cover;
}

/*////////// グーグルマップ ////////*/

.access {
    text-align: center;
    line-height: 2.5;
}

.accesslogo {
    margin-bottom: 30px;
}

.map iframe {

    width: 60%;
    height: 300px;
    margin-bottom: 50px;
}

.access {
    margin-bottom: 30px;
}

footer {
    text-align: center;
    background-color: #525252;
    color: #fff;
    padding: 10px;
}


.jikan {
    text-align: center;
    font-size: larger;
    margin-bottom: 30px;
}

/*///////// ここからレスポンシブ////////////*/
@media screen and (max-width: 960px) {

    header {
        width: 100%;
        height: 60vh;
    }

    header ul {
        display: block;
        z-index: -5;
    }

    h1 {
        font-size: 60px;
    }

    .text img {
        width: 90%;
    }

    ul {
        display: block;
    }

    /* ////////ハンバーガーメニュ―対応 */
    /* メニューを画面上部に固定表示しています */
    .gMenu {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 99999;
    }

    /* メニューアイコンを画面右上に */
    .gMenu .menu-icon {
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 12px;
        padding-top: 5px;
        height: 12px;
        z-index: 99999;
    }

    /* メニューアイコン（三本線）の真ん中の線 */
    .gMenu .menu-icon .navicon {
        background: #111;
        /* 色は自由に変更可能です */
        display: block;
        height: 2px;
        width: 31px;
        position: relative;
        transition: background .4s ease-out;
        /* 形が変わる時のアニメーション */
    }

    /* メニューアイコン（三本線）の上と下の線を疑似要素で追加 */
    .gMenu .menu-icon .navicon::before,
    .gMenu .menu-icon .navicon::after {
        background: #111;
        /* 色は自由に変更可能です */
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .4s ease-out;
        /* 形が変わる時のアニメーション */
        width: 100%;
    }

    .gMenu .menu-icon .navicon::before {
        top: 10px;
    }

    /* 位置を上にずらしています */
    .gMenu .menu-icon .navicon::after {
        top: -10px;
    }

    /* 位置を下にずらしています */
    /* 表示されるメニューです */
    .gMenu .menu {
        background-color: rgba(102, 100, 100, 0.9);
        overflow: hidden;
        max-height: 0;
        /* ★最初は高さを0にして非表示状態に */
        transition: max-height .6s;
        /* 表示されるときのアニメーション */
        text-align: center;
    }

    /* メニュー部分のデザインです */
    .gMenu .menu li:first-of-type {
        padding-top: 25px;
        padding-top: 50px;
    }

    .gMenu .menu li a {
        display: block;
        padding: 24px 20px;
        text-decoration: none;
    }

    /* チェックボックスは常に非表示です */
    .gMenu .menu-btn {
        display: none;
    }

    /* ▼▼▼以下はチェックボックスがONの時の状態です▼▼▼ */
    .gMenu .menu-btn:checked~.menu {
        max-height: 338px;
        /* ★チェックボックスがオンの時高さを338pxにして表示させます */
        transition: max-height .6s;
    }

    /* メニューボタンの中央の線を非表示に */
    .gMenu .menu-btn:checked~.menu-icon .navicon {
        background: transparent;
    }

    /* メニューボタンの上下の線を45度傾けて✕印を作ります */
    .gMenu .menu-btn:checked~.menu-icon .navicon::before {
        transform: rotate(-45deg);
        top: 0;
    }

    .gMenu .menu-btn:checked~.menu-icon .navicon::after {
        transform: rotate(45deg);
        top: 0;
    }

    /* menu 部分のイラストをなくす */
    #menuSec::before,
    #menuSec::after {
        display: none;
    }


    .map iframe {
        width: 90%;
    }
}