@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

img {
    width: 100%;
    vertical-align: bottom;
}

html {
    scroll-padding-top: 10vh;
    scroll-behavior: smooth;
}

body {
    background: url(../img/haikei.jpg);
    background-attachment: fixed;
}

h2,h3,p,dt,dd,li,a {
    color: #fff;
}

p,dt,dd,li,input,textarea {
    font-family: "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "Yu Mincho", 游明朝, YuMincho, 游明朝体, "MS PMincho", "ＭＳ Ｐ明朝", serif;
}

br {
    display: none;
}

/* loading */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: url(../img/haikei.jpg);
}

#loading_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    text-align: center;
}

.animation_loading {
    animation: rotate 40s infinite;
}

@keyframes rotate {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}

@media screen and (min-width:767px) {
    #loading_box{
        width: 10%;
    }
}

/* header */

header h1 {
    width: 100px;
    margin: 20px;
    animation: rotate 60s infinite;
}

@keyframes rotate {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}


.ham {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
}

.ham span {
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 4px;
    transition: all 1s;
}

.sp-nav {
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background: url(../img/haikei.jpg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
    transition: all 1s;
}

.sp-nav img{
    width: 70px;
}

header nav a {
    font-size: 20px;
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
}

.ham.active span:nth-child(1) {
    transform: translateY(13.5px) rotate(45deg);
}

.ham.active span:nth-child(2) {
    opacity: 0;
}

.ham.active span:nth-child(3) {
    transform: translateY(-13.5px) rotate(-45deg);
}

.sp-nav.active {
    opacity: 1;
    pointer-events: all;
}

.pc-nav {
    display: none;
}

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

    header h1 {
        width: 150px;
        margin: 0;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 99;
    }

    .ham {
        display: block;
        pointer-events: none;
    }

    .pc-nav {
        position: fixed;
        top: 30px;
        right: 30px;
        display: flex;
        gap: 20px;
        padding: 10px;
        z-index: 99;
    }

    .pc-nav a{
        display: block;
        width: 95px;
        text-align: center;
    }

    .pc-nav a .nav2{
        display: none;
    }
    .pc-nav a:hover .nav1{
        display: none;
    }
    .pc-nav a:hover .nav2{
        display: inline;
        color: #FFCB05;
        font-size: 16px;
    }

}

/* main */

h2 {
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 10vh;
    position: relative;
}


h2::before{
    content: url(../img/mamemame.png);
    display: block;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translate(-50%,0);
} 

h3 {
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26px;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 20px;
}

/* hero */
.fv {
    width: 100%;
    height: 90vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

.hero {
    display: block;
    width: 85%;
    height: 80vh;
    object-fit: cover;
    padding-top: 10vh;
    border-radius: 38% 34% 33% 26% / 39% 40% 29% 38%;
    margin: 0 auto;
}

.hero2 {
    display: none;
}

.moon {
    width: 200px;
    position: absolute;
    top: 55vh;
    right: 5%;
    animation: updown 3s ease-in-out infinite;
}

@keyframes updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }
}


.overlay {
    width: 100%;
    padding: 110vh 0 0;
    background: url(../img/haikei.jpg);
    background-attachment: fixed;
    opacity: 0;
    position: relative;
}

.about {
    width: 90%;
    margin: 0 auto 20vh;
}

.about h2 {
    text-align: left;
}

.about h2::before{
    content: none;
}

.about p {
    line-height: 2em;
    margin-bottom: 30px;
    text-align: justify;
}

.pic-area {
    position: relative;
    padding-bottom: 20vh;
}



.box1 {
    width: 80%;
    text-align: right;
    margin-left: 20%;
    margin-bottom: 10vh;
    opacity: 0;
    transition: all 2s;
    transform: translateY(100px);
}

.box1.fade {
    opacity: 1;
    transform: translateY(0);
}

.box2 {
    width: 50%;
    text-align: right;
    margin: 0 40% 5vh 10%;
    opacity: 0;
    transition: all 2s;
    transform: translateX(-10%);
}

.box2.fade {
    opacity: 1;
    transform: translateX(0);
}

.box3 {
    width: 40%;
    text-align: right;
    margin: 0 10% 10vh 50%;
    float: left;
    opacity: 0;
    transition: all 2s;
    transform: translateX(10%);
}

.box3.fade {
    opacity: 1;
    transform: translateX(0);
}

.box4 {
    width: 60%;
    text-align: right;
    margin-right: 40%;
    opacity: 0;
    transition: all 2s;
    transform: translateY(100px);
}

.box4.fade {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (min-width:767px) {
    .about br {
        display: block;
    }

    .hero {
        max-width: 1000px;
        height: 90vh;
        padding-top: 15vh;
        margin-left: 5%;
    }

    .hero2 {
        display: block;
        width: 35%;
        height: 35vh;
        object-fit: cover;
        max-width: 400px;
        border-radius: 38% 34% 33% 26% / 39% 40% 29% 38%;
        position: absolute;
        top: 60vh;
        right: 5%;
    }

    .moon {
        width: 250px;
        top: 20vh;
        left: 70vw;
    }

    .about {
        width: 70%;
    }

    .pic-area {
        width: 80%;
        margin: 0 auto;
    }
}


/* memu */
#menu {
    width: 90%;
    margin: 0 auto 20vh;
}

#menu img {
    margin-bottom: 10px;
}

#menu h3:nth-child(3) {
    display: block;
    width: 200px;
    height: 80px;
    background: url(../img/icon/cap.png) no-repeat center;
    margin: 0 auto 30px;
    padding-top: 20px;
}

#menu h3:nth-child(5) {
    display: block;
    width: 200px;
    height: 80px;
    background: url(../img/icon/pan.png) no-repeat center;
    margin: 0 auto 30px;
    padding-top: 20px;
}

#menu h3 img {
    width: 30px;
    margin-left: 5px;
}

#menu p {
    line-height: 1.7em;
    text-align: justify;
}

#menu .reco-menu {
    margin-bottom: 10vh;

    p {
        line-height: 2em;
    }
    img{
        filter: sepia(100%);
    }
}


.reco-menu p:nth-child(1) {
    font-weight: bold;
    font-size: 20px;
    border-bottom: dashed #fff 1px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.menu-box {
    margin: 0 5px;
}

.menu-box p:nth-child(2) {
    font-weight: bold;
    border-bottom: dashed #fff 1px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.slider {
    position: relative;
    margin-bottom: 5vh;
}

.slide-arrow {
    opacity: 0.7;
    cursor: pointer;
    margin: auto;
    position: absolute;
    top: 50%;
    width: 40px;
    z-index: 9;
}

.prev-arrow {
    left: -15px;
}

.next-arrow {
    right: -15px;
}

.grand_menu{
    margin-bottom: 5vh;
}

.grand_menu+p {
    border: 1px dashed #fff;
    padding: 10px;
}

@media screen and (min-width:767px) {
    h2 {
        font-size: 50px;
    }

    #menu {
        width: 80%;
        max-width: 1000px;
    }

    .menu-box {
        margin: 0 10px;
    }

    #menu .grand_menu+p {
        text-align: center;
        br{
            display: block;
        }
    }

}

@media screen and (min-width:960px) {
    #menu br {
        display: block;
    }
    .reco-menu {
        position: relative;
        padding: 5vh 0;
        overflow: hidden;
        .text-area {
            position: relative;
            top: 0;
        }

        img {
            position: absolute;
            top: 0;
            left: 480px;
            width: 500px;

        }

        p:nth-child(1) {
            font-size: 26px;
            border-bottom: none;
        }
    }
    .slider{
        margin-bottom: 10vh;
    }
}


/* gallery */
.gallery {
    position: relative;
    margin-bottom: 10vh;
}

.pic1 {
    width: 70%;
    position: relative;
    top: 0;
    left: 5%;
    z-index: 1;
    opacity: 0;
    transition: all 2s;
}

.pic1.fade {
    opacity: 1;
}

.pic2 {
    width: 60%;
    position: relative;
    top: -10vh;
    right: -35%;
    opacity: 0;
    transition: all 2s;
}

.pic2.fade {
    opacity: 1;
}

.loop {
    position: absolute;
    top: 40%;
    width: 100%;
    transform: translate(0, -50%);
    margin-inline: auto;
    overflow: hidden;
    z-index: 1;
}

.loop p {
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2em;
    animation: loop 60s linear infinite;
    width: 100%;
    font-size: 90px;
    white-space: nowrap;
}

@keyframes loop {
    0% {
        transform: translateX(-30%);
    }

    50% {
        transform: translateX(70%);
    }

    100% {
        transform: translateX(-30%);
    }
}

@media screen and (min-width:767px) {
    .loop p {
        font-size: 100px;
    }

    .pic-area2 {
        position: relativ;
        width: 80%;
        margin: 0 auto;
    }

    .gallery .pic1 {
        max-width: 700px;
    }

    .gallery .pic2 {
        top: -20vh;
        max-width: 650px;
    }
}


/* access */

#access {
    width: 90%;
    margin: 0 auto 20vh;
}

iframe {
    width: 100%;
    height: 40vh;
    margin-bottom: 5vh;
}

#access li {
    margin-bottom: 5px;
    text-align: center;
}

@media screen and (min-width:767px) {
    #access {
        width: 80%;
        max-width: 1000px;
    }

    iframe {
        height: 500px;
        filter: sepia(.25);
    }
}

/* news */

#news {
    width: 90%;
    margin: 0 auto 20vh;
}

#news .flex-box {
    margin-bottom: 10px;
    border-bottom: dashed #fff 1px;
    padding: 10px;
    dt {
        margin-bottom: 5px;
    }
}


@media screen and (min-width:767px) {
    #news .flex-box {
        display: flex;
        gap: 50px;
        padding: 20px;
    }

    #news {
        width: 80%;
        max-width: 1000px;
    }
    #news a:hover{
        color: #FFCB05;
    }
}

/* contact */
#contact{
    background: url(../img/contact_back.jpg) no-repeat center;
    .filter{
        padding: 20vh 0;
        backdrop-filter: blur(10px);
    }
}

.form-container{
    width: 90%;
    margin: 0 auto;
}

.form-container p{
    text-align: center;
    margin-bottom: 5vh;
}

.form-container h3{
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    background: url(../img/icon/tel.svg) no-repeat;
    padding-left: 40px;
    width: fit-content;
    margin: 0 auto 5px;
}

#contact .column{
    margin-bottom: 5vh;
}

form dl{
    margin-bottom: 10px;
}

#contact span{
    margin-left: 5px;
    color: #FFCB05;
}

form dt{
    font-weight: bold;
    margin-bottom: 5px;
}

form dl:nth-child(-n+3) input{
    width: 100%;
    padding: 15px;
    font-size: 16px;
}
form ul{
    display: flex;
    gap: 20px;
}

form input[type="radio"] {
    margin-right: 5px;
}

form textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 16px;
}

form div{
    width: 50%;
    margin: 0 auto;
}

form input[type="submit"]{
    width: 100%;
    padding: 15px;
    background: #4A2400;
    color: #fff;
    border: 0;
    font-size: 16px;
}


@media screen and (min-width:767px) {
    #contact{
        background-attachment: fixed;
    }
    #contact .form-container{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        h2,h3,p{
            text-align: left;
        }
    }
    #contact h2{
        margin-bottom: 5vh;
    }
    #contact h3{
        margin: 0;
    }
    form{
        width: 40%;
    }
    form dl:nth-child(-n+3) input{
        width: 100%;
        padding: 5px 15px;
    }
    form div{
        width: 100%;
    }
    form input[type="submit"]:hover{
        background-color: #391c00;
    }
}


/* footer */
footer {
    width: 100%;
    background: #FFCB05;
    padding: 20px 10px;
}

footer img {
    width: 100px;
}

footer .flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

footer li:nth-child(1) {
    font-weight: bold;
}

footer p {
    text-align: center;
}

.top-button{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.top-button img{
    width: 60px;
}


@media screen and (min-width:767px) {
    .top-button{
        bottom: 20px;
        right: 20px;
        transition: all 0.3s ease-in;
    }
    .top-button:hover{
        transform: rotate(5deg);
    }
    .top-button img{
        width: 80px;
    }
}