@charset "utf-8";

:root {
    --black: #2A2A2A;
    --white: #ffffff;
    --yellow: #FFE67F;
    --lyellow: #FFF583;
    --pink: #F6C8DD;
    --red: #EB6D57;
    --brown: #946134;
    --green: #D5EBE1;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", 'Open Sans', sans-serif;
    font-size: 1.6rem;
    overflow-x: hidden;
}

p {
    font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
    line-height: 1.6;
    color: var(--black);
}

a {
    font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
    display: inline-block;
    color: var(--black);
}

img {
    width: 100%;
    height: auto;
}

.head01 {
    display: inline-block;
    padding: 1rem 0;
}

.head01 .mv_logo {
    max-width: 200px;
}

.head02 {
    max-width: 200px;
    text-align: center;
    margin: 6rem auto 5rem;
}


/* flex */
.flexbox {
    display: flex;
}


/* frame */
.frame {
    width: 95%;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.content_wrapper {
    position: relative;
}

/*  */
.pc {
    display: none;
}

.sp {
    display: block;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    z-index: 999;
    padding: .8rem 0;
}

.hum {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.hum .hum-area {
    transition: all .6s;
    width: 50px;
    height: 50px;
}

.hum span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: var(--black);
    width: 45%;
}

.hum span:nth-of-type(1) {
    top: 15px;
}

.hum span:nth-of-type(2) {
    top: 23px;
}

.hum span:nth-of-type(3) {
    top: 31px;
}

.hum.active .hum-area {
    transform: rotate(360deg);
}

.hum.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.hum.active span:nth-of-type(2) {
    opacity: 0;
}

.hum.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

#g_nav_sp.panelactive {
    left: 0;
}

#g_nav_sp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100vh;
    background: var(--green);
    transition: all 0.6s;
}

#g_nav_sp ul.g_nav_list {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g_nav_sp.panelactive .g_nav_list {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.header_inner.sp .g_nav_list.flexbox {
    justify-content: left;
    flex-direction: column;
}

#g_nav_sp .g_nav_list li {
    list-style: none;
}

#g_nav_sp .g_nav_list li a {
    color: var(--black);
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    word-wrap: break-word;
}

#g_nav_sp .g_nav_list i {
    display: inline-block;
    margin-right: .5rem;
}

/* mv */
#mv {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.mv_logo {
    max-width: 50%;
    margin-left: 0;
    top: 15%;
    left: 5%;
    position: absolute;
}

.mv_catchcopy {
    position: absolute;
    left: 0;
    bottom: 100px;
    z-index: 10;
}

.mv_catchcopy span {
    display: inline-block;
    background-color: var(--green);
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    margin: 0 0 10px 0;
    padding: 10px 15px;
}

.slide-box {
    max-width: 60vw;
    height: 70%;
    overflow: hidden;
    display: inline-block;
    z-index: 99;
}

.slide-box div {
    position: absolute;
    bottom: 0;
    right: -10px;
    overflow: hidden;
    width: 80%;
    height: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -9;
    opacity: 0;
    animation-name: fade;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    border: 10px solid var(--yellow);
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        z-index: 0;

    }
}

.slide-box div:first-of-type {
    background-image: url(../img/slide_1_sp.jpg);
}

.slide-box div:nth-of-type(2) {
    background-image: url(../img/slide_2_sp.jpg);
    animation-delay: 4s;
}

.slide-box div:last-of-type {
    background-image: url(../img/slide_3_sp.jpg);
    animation-delay: 8s;
}

.date {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    color: var(--white);
    background-color: var(--brown);
    width: 100%;
    z-index: 9;
    position: absolute;
    bottom: 0;
    left: 0;
}

.wave {
    background: url(../img/pattern_dot.png) var(--yellow) top center;
}

/* about */
#about {
    background: url(../img/pattern_dot.png) var(--yellow) top center;
}

.about_inner p {
    line-height: 2.0;
    margin-bottom: 4rem;
}

.about_inner .about_p_last {
    margin-bottom: 0;
}

.about_img {
    border-radius: 50%;
    margin-top: 0 !important;
}

.about_img img {
    filter: drop-shadow(3px 3px 5px rgba(180, 160, 39, 0.46));
    margin-bottom: 2rem !important;
}

.about_img_1 img {
    width: 60%;
}

.about_img_2 {
    text-align: right;
    margin-bottom: 0 !important;
}

.about_img_2 img {
    max-width: 40%;
}

/* menu */
#menu {
    background-color: var(--yellow);
    padding-bottom: 6rem;
}

.menu_inner {
    background: var(--white);
    padding: 6rem 0;
}

.menu_txt {
    text-align: center;
}

.menu_inner .menu_txt2 {
    color: #EB6D57;
    display: block;
    font-size: 90%;
    margin-bottom: 5rem;
}

.menu_list {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu_item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--brown);
    position: relative;
    padding: 3rem 0;
}


.menu_item:first-child {
    padding-top: 0 !important;
}

.menu_item:last-child::after {
    bottom: 0 !important;
}

.item_img {
    z-index: 999;
    text-align: center;
    max-width: 80%;
    filter: drop-shadow(3px 3px 3px rgba(121, 120, 119, 0.46));
    position: relative;
}

.item_description {
    background-color: var(--green);
    padding: 3rem 1rem 5rem;
}

.item_name {
    z-index: 999;
    font-size: 3rem;
    text-align: center;
    margin: 1rem 0;
    color: var(--brown);
}

.price {
    z-index: 999;
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.2;
    margin: 0 0 2rem;
    color: var(--brown);
}

.price span {
    font-size: 80%;
    vertical-align: bottom;
}

.item {
    z-index: 999;
}

.item p {
    color: var(--brown);
    line-height: 1.7;
}

/* shop */
.kusatsu_logo {
    max-width: 50%;
    margin: 3rem auto;
}

.map {
    width: 100%;
}

.shop_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 3rem auto;
}

.shop_list dt {
    width: 30%;
    text-align-last: justify;
    text-align: justify;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: nowrap;
    padding: .5rem;
    font-size: 1.7rem;
    border-top: 1px dashed var(--green);
    border-bottom: 1px dashed var(--green);
    font-weight: 600;
}

.shop_list dt::after {
    content: ":";
    width: 1rem;
    height: 1rem;
    padding: 0 1rem;
}

.shop_list dd {
    width: 70%;
    padding: .5rem;
    font-size: 1.7rem;
    border-top: 1px dashed var(--green);
    border-bottom: 1px dashed var(--green);
}

/* footer */
footer #media {
    background-color: var(--green);
    padding: 1rem 0;
}

.sns_list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 30%;
    text-align: center;
}

.sns_item {
    width: 33%;
}

.sns_item a {
    padding: 1rem;
}

.sns_item img {
    max-width: 30px;
}

.copyright {
    text-align: center;
    padding: 1rem 0;
}

@media screen and (min-width:480px) and (max-width:768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .mv_logo {
        top: 10%;
    }

    .slide-box {
        width: 40vw;
    }

    .slide-box div {
        width: 60%;
        height: 65%;
    }

}


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

    /*  */
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }

    .head01 .header_logo {
        max-width: 250px;

    }

    /* frame */
    .frame {
        max-width: 90%;
        margin: 0 auto;
    }

    .section {
        padding: 4rem 0;
    }

    .content_wrapper {
        position: relative;
    }

    /* header */

    .header_inner.pc {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    #g_nav_pc .g_nav_item a {
        padding: 2rem;
    }

    /* mv */
    .mv_logo {
        max-width: 40vw;
        margin-left: 0;
        top: 15%;
        position: absolute;
    }

    .slide-box {
        max-width: 50vw;
        height: 50%;
        overflow: hidden;
        display: inline-block;
        z-index: 99;
    }

    .slide-box div {
        width: 50%;
        height: 70%;
    }


    .slide-box div:first-of-type {
        background-image: url(../img/slide_1_pc.jpg);
    }

    .slide-box div:nth-of-type(2) {
        background-image: url(../img/slide_2_pc.jpg);
        animation-delay: 4s;
    }

    .slide-box div:last-of-type {
        background-image: url(../img/slide_3_pc.jpg);
        animation-delay: 8s;
    }

    /* about */

    .about_inner p {
        margin-bottom: 4rem;
    }

    .about_img {
        padding: 1rem 0;
    }

    .about_img img {
        filter: drop-shadow(3px 3px 5px rgba(180, 160, 39, 0.46));
    }

    .about_img_1 img {
        max-width: 50vw;
    }

    .about_img_2 {
        text-align: right;
    }

    .about_img_2 img {
        max-width: 30vw;
    }

    /* menu */

    .menu_item:after {
        bottom: 40px;
    }

    .item_name {
        font-size: 2.7rem;
    }

    .price {
        font-size: 2.3rem;
    }

    /* shop */
    .kusatsu_logo {
        max-width: 30%;
        margin: 5rem auto 3rem;
    }

    .map {
        width: 100%;
    }

    .shop_list {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 5rem auto 3rem;
    }

    /* footer */
    footer #media {
        background-color: var(--green);
        padding: 1rem 0;
    }

}

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

    /*  */
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }

    .head01 .header_logo {
        max-width: 250px;

    }

    /* frame */
    .frame {
        max-width: 1000px;
        margin: 0 auto;
    }

    .section {
        padding: 6rem 0;
    }

    .content_wrapper {
        position: relative;
    }

    /* header */

    .header_inner.pc {
        display: flex;
        flex-direction: row;
        justify-content: right;
        align-items: center;
    }

    #g_nav_pc .g_nav_item a {
        padding: 2rem;
    }

    /* mv */
    .mv_logo {
        max-width: 30vw;
        margin-left: 0;
        top: 15%;
        position: absolute;
    }

    .mv_catchcopy span {
        font-size: 24px;
    }

    .slide-box {

        overflow: hidden;
        display: inline-block;
        z-index: 99;
    }

    .slide-box div {
        width: 65%;
        height: 80%;
    }

    .slide-box div:first-of-type {
        background-image: url(../img/slide_1_pc.jpg);
    }

    .slide-box div:nth-of-type(2) {
        background-image: url(../img/slide_2_pc.jpg);
        animation-delay: 4s;
    }

    .slide-box div:last-of-type {
        background-image: url(../img/slide_3_pc.jpg);
        animation-delay: 8s;
    }

    .menu_item {
        flex-direction: row;
        justify-content: space-between;
    }

    .item_img {
        width: 40%;
        filter: drop-shadow(3px 3px 3px rgba(121, 120, 119, 0.46));
    }

    .item_description {
        width: 60%;
        padding: 4rem 2rem;
        background-color: var(--green);
    }

    .menu_item.flex_re {
        flex-direction: row-reverse;
    }


    .map iframe {
        display: block;
        height: 100%;
    }

    .kusatsu_logo {
        max-width: 40%;
    }

    .shop_info {
        margin: 5rem 0;
    }


    .shop_list {
        display: flex;
        flex-wrap: wrap;
        width: 80%;
        margin: 3rem auto;
    }

    .shop_list dt {
        width: 25%;
        text-align-last: justify;
        text-align: justify;
        padding: .5rem;
        font-size: 1.7rem;
        border-top: 1px dashed var(--green);
        border-bottom: 1px dashed var(--green);
        font-weight: 600;
    }

    .shop_list dt::after {
        content: ":";
        width: 1rem;
        height: 1rem;
        padding: 0 1rem;
    }

    .shop_list dd {
        width: 75%;
        padding: .5rem;
        font-size: 1.7rem;
        border-top: 1px dashed var(--green);
        border-bottom: 1px dashed var(--green);
    }
}