@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

ul {
    list-style-type: none;
}

h2 {
font-family: 'RocknRoll One', sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    display: block;
    width: 100%;
}

.thanks {
    color: #333;
    cursor: pointer;
    display: inline-block;
    width: 200px;
    line-height: 5em;
}

.thanks:hover {
    color: #999;
    transition: all 1.5s;
}


.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex1 {
    display: flex;
    justify-content: space-around;
}

button[type="submit"] {
    appearance: none;
}

/* ヘッダー */

header {
    width: 100%;
    position: sticky;
    background: #fff;
    z-index: 1;
}

header img {
    width: 25%;
    vertical-align: bottom;
    padding: 1.5%;
}

.hide_nav {
    width: 300px;
    height: 100vh;
    margin-left: -300px;
    background: #333;
    transition: all 0.5s;
    color: #fff;
    position: fixed;
    top: 0;
    z-index: 3;
    padding: 2% 2% 0 2%;
    font-size: 1.3rem;
    line-height: 5.0rem;
}

.hide_nav.open {
    margin-left: 0px;
}

.hide_nav img {
    width: 60%;
    margin-bottom: 5%;
}

header li {
    border-top: solid 2px #fff;
}

header li:last-child {
    border-bottom: solid 2px #fff;
}

.mask {
    display: none;
}

.mask.open {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.5;
}
.sns {
    font-size: 1.2rem;
}

.sns::after {
    content:"";
    background-image: url(../images/Instagram_Glyph_Gradient.png);
    background-size: contain;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 10px;
}

/* ハンバーガーメニュー */

.burger {
    width: 30px;
    height: 30px;
    position: relative;
    right: 1.5%;
    z-index: 3;
}

.burger span {
    display: block;
    border: solid 1px #000;
    width: 100%;
    transition: all 0.5s;
}

.burger span:first-child{
    position: absolute;
    top: 4px;
}

.burger span:nth-of-type(2) {
    position: absolute;
    top: 14px;
}

.burger span:last-child {
    position: absolute;
    bottom: 4px;
}

.burger.open span {
    transition: all 0.5s;
    border: solid 1px #ccc;
}

.burger.open span:first-child{
    position: absolute;
    transform: translateY(10px) rotate(315deg);
}

.burger.open span:nth-of-type(2) {
    display: none;
}

.burger.open span:last-child {
    position: absolute;
    transform: translateY(-10px) rotate(-315deg);
}

/* メイン */

#container {
    width: 100%;
    max-width: 1500px;
    margin: auto;
} 

#container h2 {
    margin: 3% 0;
    font-size: 2.0rem;
}

#container section {
    width: 90%;
    margin: 10% auto;
    text-align: center;
}

.splide__slide img {
    height: 50px;
}

.introduction {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: auto;
}

.maruka_logo {
    width: 500px;
    background-image: url(../images/S__172457989.jpg);
    background-size: contain;
}

.maruka_text {
    width: 100%;
    text-align: left;
    padding-left: 3%;
}

dl {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

dl dt {
    width: 10%;
    line-height: 2.0rem;
    font-weight: bold;
}

dl dd {
    width: 87%;
    line-height: 2.0rem;
    padding-left: 3%;
}

dl dd:last-of-type {
    line-height: 1.3rem;
}

/*  dl {
    background-image: url(../images/tenga.png);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: right bottom;
}

dl dd:last-of-type::after {
    content: url(../images/tenga.png);
    display: inline-block;
    transform: scale(1.0);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}*/

#event + img {
    width: 100%;
}

.video_area {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    overflow: hidden;
}

video {
    position: absolute;
    width: 100%;
    }

.top_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    color: #fff;
    text-align: center;
}

.top_text p:first-child {
    font-size: 1.5rem;
}

/* 出店情報 */
.point {
    width: 25%;
    height: 400px;
    text-align: left;
    padding-right: 1%;
}

.point p {
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.point p:hover {
    color: #a7a7a7;
}

.map {
    width: 75%;
}

.map h3 {
    text-align: left;
}

.map_1,
.map_2,
.map_3,
.map_4,
.map_5,
.map_6,
.map_7,
.map_8,
.map_9 {
    display: none;
}

.map_1.open,
.map_2.open,
.map_3.open,
.map_4.open,
.map_5.open,
.map_6.open,
.map_7.open,
.map_8.open,
.map_9.open {
    display: block;
    animation: appear 1.5s ease;
}

.text {
    font-size: 0.8rem;
    color: red;
}

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

    100% {
        opacity: 1;
    }
}

.flex3 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* グリッド */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 20px;
}

.grid .menu {
    border: solid 1px #333;
    padding: 2%;
}

.grid img {
    width:100%;
    transition: all 1s;
}

.grid img:hover {
    transform: scale(1.1);
}

figure {
    width: 95%;
    margin:3% auto 0;
    overflow: hidden;
}

figcaption {
    font-weight: bold;
    padding: 2%;
    font-size: 1.2rem;
}
/* フォーム */
form {
    background: #f2f2f2;
    padding: 3%;
    margin: auto;
}

.form_perts {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 2% 0%;
}

label {
    margin: 5px 0;
}

label span {
    font-size: 0.8rem;
    color: #f00;
}

input {
    background: #fff;
    width: 100%;
    line-height: 3.0rem;
    padding-left: 1%;
}

textarea {
    background: #fff;
    width: 100%;
    height: 200px;
}

.btn {
    margin:1% auto;
}

.btn button {
    width: 200px;
    line-height: 3.0rem;
    background: #fff;
    cursor: pointer;
    margin: 0 10px;
    color: #000;

}


/* フッター */
footer {
    background: #000;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    color: #fff;
}

footer img {
    width: 30%;
    object-fit: contain;
    vertical-align: bottom;
    margin-bottom: 3%;
}

footer a {
    text-align: center;
}

footer p {
    padding-bottom: 2%;
}

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

    header img {
        width: 40%;
    }

    .maruka_logo {
        width: 400px;
    }

    dl dt {
        width: 15%;
        font-size: 0.9rem;
    }

    dl dd {
        width: 85%;
        font-size: 0.9rem;
    }

    .point {
        width: 30%;
    }
    
    .map {
        width: 70%;
    }

    /* dl dd:last-of-type::after {
        transform: scale(0.7);
        right:-100px;
        top: 20px;
    } */

    footer img {
        width: 40%;
        object-fit: contain;
        vertical-align: bottom;
        margin-bottom: 3%;
    }
}

@media screen and (max-width:800px) {
    header img {
        width: 50%;
        vertical-align: bottom;
        padding: 1.5%;
    }

    .hide_nav {
        font-size: 0.9rem;
        width: 250px;
        line-height: 4.0rem;
    }

    .hide_nav img {
        width: 50%;
    }

    .burger {
        right: 3%;
    }

    video {
        width: 100%;
        height: 80vh;
        object-fit: cover;
    }

    .introduction {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: solid 3px #333;
        padding: 3%;
    }

    .maruka_logo {
        display: none;
    }

    .maruka_text {
        padding: 0;
    }

    /* dl {
        background-image: url(../images/tenga.png);
        background-repeat: no-repeat;
        background-size: 30%;
        background-position: right bottom;
    } */

    dl dt {
        width: 15%;
        line-height: 1.5rem;
        font-size: 0.9rem;
    }

    dl dd {
        width: 85%;
        line-height: 1.5rem;
        font-size: 0.9rem;
    }

    .flex3 {
        flex-direction: column;
    }

    .point {
        height: auto;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        padding: 2%;
        border: #000 solid 1px;
    }

    .map {
        width: 100%;
    }

    footer img {
        width: 60%;
        object-fit: contain;
        vertical-align: bottom;
        margin-bottom: 3%;
    }
}

@media screen and (max-width:580px){
    .burger {
        width: 20px;
        height: 20px;
    }

    .burger span:first-child {
        top: 2px;
    }

    .burger.open span:first-child {
        transform: translateY(7px) rotate(315deg);
    }

    .burger span:nth-of-type(2) {
        top: 9px;
    }

    .burger span:last-child {
        bottom: 2px;
    }

    .burger.open span:last-child {
        transform: translateY(-7px) rotate(-315deg);
    }

    /* dl {
        background-image: url(../images/tenga1.png);
        background-repeat: no-repeat;
        background-size: 55%;
        background-position: 130% 120%;
    } */

    dl dt {
        width: 20%;
        line-height: 1.3rem;
        font-size: 0.8rem;
    }

    dl dd {
        width: 80%;
        line-height: 1.3rem;
        font-size: 0.7rem;
    }

    dl dd:last-of-type {
        line-height: 1.0rem;
    }

    form {
        font-size: 0.9rem;
    }

    .btn button {
        width: 100px;
        line-height: 2.0rem;
        color: #000;
    }

    footer img {
        width: 70%;
        object-fit: contain;
        vertical-align: bottom;
        margin-bottom: 3%;
    }

    footer p {
        font-size: 0.8rem;
    }
}