/*  */
/* header */
/*  */

/* header main */
.header{
    display: flex;
    justify-content: space-between;
    /* background-color: #fff; */
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); */
    padding: 10px 3%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
}
.header .logo{
    width: 100px;
}

main{
    padding-top: 80px;
}
/*  */
/* fixed-reservation */
/*  */
.fixed-reservation{
    background-color: #333;
    color: #fff;
    writing-mode: vertical-rl;
    text-decoration: none;
    position: fixed;
    bottom: 10%;
    right: 0;
    z-index: 10;
    padding: 20px;
    letter-spacing: .5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border: #333 2px solid;
}
.fixed-reservation:hover{
    background-color: #fff;
    color: #333;
}

/* hamburger menu */
.header-right{
    margin: auto 0;
    height: fit-content;
}
.hamburger {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    z-index: 1000;
    margin-left: 15px;
    margin: auto 0;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    background-color: #333; 
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    position: absolute;
    transition: all .3s ease-in-out;
}

.hamburger::before {
    top: 0;
}

.hamburger span {
    top: 11px;
}

.hamburger::after {
    bottom: 0;
}

.hamburger.active::before {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span {
    opacity: 0;
}

.hamburger.active::after {
    transform: translateY(-11px) rotate(-45deg);
}

.menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.menu.active {
    display: block;
    transform: translateX(0);
}

.menu ul {
    padding: 60px 0 0 0;
    margin: 0;
    list-style: none;
}

.menu ul li {
    padding: 0;
    margin: 0;
}

.menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.menu ul li a:hover {
    background-color: #f5f5f5;
    padding-left: 25px;
    color: #ff7900;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.overlay.active {
    display: block;
}
.menu ul > a{
    background-color: #434343;
    color: #fff;
    padding: 10px 0;
    width: 90%;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    text-decoration: none;
    text-align: center;
    border: #434343 2px solid;
}
.menu ul > a:hover{
    background-color: #fff;
    color: #434343;
}








/*  */
/*     hero     */
/*  */

.hero.hero-pc{
    background-color: #fff;
    position: relative;
}

/* hero-images */
.hero-images{
    width: calc(100% - 100px);
    display: flex;
    margin: 0 auto 50px;
    position: relative;
}
.hero-images > img{
    width: 50%;
}
.hero-images > img:nth-child(1){
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.hero-images > img:nth-child(2){
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
/* hero-image h2 */
.hero-pc > h2{
    color: #fff;
    font-size: 8rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* hero 左下 */
.hero-btm-left{
    position: absolute;
    background-color: #fff;
    color: #434343;
    padding: 20px 60px;
    bottom: 50px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}
.hero-btm-left > p{
    text-align: center;
    font-weight: 900;
}
.hero-btm-left > a{
    text-decoration: none;
    background-color: #434343;
    color: #fff;
    padding: 8px 30px;
    border-radius: 30px;
    display: block;
    margin-top: 10px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    border: 2px solid #434343;
}
.hero-btm-left > a:hover{
    background-color: #fff;
    color: #434343;
}


/*  */
/*    features    */
/*  */
.features{
    background-color: #f5f5f5;
    padding: 30px 4%;
    position: relative;
}
.features > p{
    position: absolute;
    font-size: 5rem;
    top: 20px;
    font-weight: 900;
    z-index: 0;
    color: #fff;
}
.features > h3{
    text-align: center;
    color: #434343;
}
.features > h3::after{
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    margin: 5px auto;
    background-color: #434343;
}

/* feature-1 */
.feature-1{
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}
.feature-1 > img{
    width: 40%;
    max-width: 250px;
    box-shadow: 14px 14px 50px 0px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}
.feature-1 > div{
    width: 50%;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-1 > div > h4{
    font-size: 2rem;
    margin: 0 0 10px;
}
.feature-1 > div > p{
    margin: 0 0 10px;
    line-height: 2;
}
/* feature-2 */
.feature-2{
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 40px auto 0;
    align-items: stretch;
}
.feature-2 > img{
    width: 40%;
    max-width: 250px;
    box-shadow: 14px 14px 50px 0px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}
.feature-2 > div{
    width: 50%;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-2 > div > h4{
    font-size: 2rem;
    margin: 0 0 10px;
}
.feature-2 > div > p{
    margin: 0 0 10px;
    line-height: 2;
}

/*  */
/* meals */
/*  */
.meals{
    padding: 30px 4%;
    position: relative;
}
.meals > p{
    position: absolute;
    font-size: 5rem;
    top: 20px;
    font-weight: 900;
    z-index: 0;
    color: #fff;
}
.meals > h3{
    text-align: center;
    color: #434343;
    font-size: 1.8rem;
}
.meals > h3::after{
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    margin: 5px auto;
    background-color: #434343;
}
.meal{
    display: flex;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.meal > img{
    width: 50%;
}
.meal-description{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.meal-description > h4{
    font-size: 1.3rem;
}
.meal-description > p{
    line-height: 2;
    padding-right: 20px;
}
.menu-1-meal-description{
    padding-left:  20px;
    text-align: left;
}
.meal:nth-child(2){
    text-align: right;
    margin-top: 50px;
}
.meal:nth-child(3){
    text-align: left;
}
.meals > a{
    text-decoration: none;
    color: #fff;
    background-color: #434343;
    padding: 15px 100px;
    font-size: .9rem;
    font-weight: 100;
    display: block;
    width: fit-content;
    margin: 50px auto;
    box-shadow: 14px 14px 50px 0px rgba(0, 0, 0, 0.2);
    border: #434343 2px solid;
}
.meals > a:hover{
    background-color: #fff;
    color: #434343;
}


/*  */
/* reservation */
/*  */

.reservation{
    display: flex;
    padding: 30px 5%;
    justify-content: space-between;
    background-color: #f5f5f5;
}
.reservation > img{
    width: 40%;
    max-width: 400px;
    max-height: 400px;
    margin: auto 0;
    display: block;
}
.reservation > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}
.reservation > div > h3{
    text-align: center;
    color: #434343;
    font-size: 1.4rem;
}
.reservation > div > h3::after{
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    margin: 5px auto;
    background-color: #434343;
}
.reservation > div > h4{
    text-align: center;
    font-size: 1.8rem;
    margin: 20px 0 10px;
}
.reservation > div > p{
    line-height: 2;
}
.reservation > div > a{
    text-decoration: none;
    background-color: #333;
    color: #fff;
    font-size: .9rem;
    padding: 15px 80px;
    display: block;
    margin: 20px auto;
    width: fit-content;
    box-shadow: 14px 14px 50px 0px rgba(0, 0, 0, 0.2);
    border: #333 2px solid;
}
.reservation > div > a:hover{
    background-color: #fff;
    color: #333;
}

/*  */
/* access */
/*  */

.access{
    padding: 30px 3%;
}
.access > h3{
    text-align: center;
    color: #434343;
    font-size: 1.4rem;
}
.access > h3::after{
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    margin: 5px auto;
    background-color: #434343;
}
.access-main{
    display: flex;
    justify-content: space-around;
    margin: 20px auto;
    width: 90%;
}
.access-main > iframe{
    width: 40%;
    min-height: 300px;
    display: inline-block;
    height: auto;
}
.access-main > div{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.access-content{
    margin: 20px 0;
}
.access-content > p{
    line-height: 2;
}


/*  */
/* Footer */
/*  */
footer{
    padding: 20px 3%;
    background-color: #f5f5f5;
}
footer > p{
    text-align: center;
}
footer > ul{
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 20px auto;
}
footer > ul > li{
    list-style: none;
    color: #434343;
    margin: 0 20px;
}
footer > ul > li > a > img{
    width: 50px;
}




/* レスポンシブ */
@media (max-width: 870px) {
    .feature-1 > div{
        padding: 20px;
    }
    .feature-2 > div{
        padding: 20px;
    }
    .feature-1 > div > p{
        line-height: 2;
    }
    .feature-2 > div > p{
        line-height: 2;
    }
    .feature-1 > div > h4{
        font-size: 1.7rem;
    }
    .feature-2 > div > h4{
        font-size: 1.7rem;
    }
    .hero-btm-left{
        display: none;
    }
    .meal-description{
        padding: 10px 20px;
    }
    .hero-images{
        width: calc(100% - 40px);
        margin: 20px auto;
    }
}

@media (max-width: 600px) {
    .header .logo{
        /* width: 40px; */
    }
    .fixed-reservation{
        display: none;
    }
    .hero-images{
        width: 100%;
        margin: 0;
    }

    .hero-pc > h2{
        /* display: none; */
        font-size: 5rem;
    }
    .hero-images > img:nth-child(1){
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        height: 60vh;
        object-fit: cover;
    }
    .hero-images > img:nth-child(2){
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        height: 60vh;
        object-fit: cover;
    }
    .hero.hero-pc{
        margin-bottom: 143px;
    }
    .hero-btm-left{
        display: block;
        z-index: 1;
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: -143px;
    }
    .hero-btm-left > a{
        text-align: center;
    }

    .features > p{
        display: none;
    }

    .features > h3{
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    .feature-1{
        flex-direction: column;
    }
    .feature-1 > img{
        width: 100%;
        max-width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }
    .feature-1 > div{
        width: 100%;
    }
    .feature-1 > div > h4{
        width: 100%;
        text-align: center;
    }
    .feature-1 > div > p{
        width: 100%;
        text-align: center;
    }
    
    .feature-2{
        flex-direction: column-reverse;
    }
    .feature-2 > img{
        width: 100%;
        max-width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }
    .feature-2 > div{
        width: 100%;
    }
    .feature-2 > div > h4{
        width: 100%;
        text-align: center;
    }
    .feature-2 > div > p{
        width: 100%;
        text-align: center;
    }

    .meal{
        flex-direction: column;
        margin: 20px 0;
        width: 100%;
    }
    .meal > img{
        width: 100%;
        border-radius: 15px;
        box-shadow: 14px 14px 50px 0px rgba(0, 0, 0, 0.2);
    }
    .meal-description{
        width: 100%;
        padding: 10px;
    }
    .meal:nth-child(2){
        text-align: left;
    }
    .meal:nth-child(3){
        flex-direction: column-reverse;
    }

    .meals > a{
        margin: 20px auto;
    }

    .reservation{
        flex-direction: column-reverse;
    }
    .reservation > div{
        width: 100%;
    }
    .reservation > img{
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin: 0 auto;
    }
    .access-main{
        flex-direction: column-reverse;
        margin: 40px auto 20px;
    }
    .access-main > iframe{
        width: 100%;
        height: 250px;
    }
    .access-main > div{
        width: 100%;
        margin: 40px 0;
    }
}


/* Buy Hover */
/*  */
/* Delete this when you make website */
/*  */
.buy-hover{
    position: fixed;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
    color: #1a1a1a;
    font-family: 'Open Sans', sans-serif;
    flex-direction: column;
}
.buy-hover > span{
    display: block;
    margin: auto 0;
}
.buy-hover-btns{
    display: flex;
    width: fit-content;
    margin: 20px auto 10px;
}
.buy-hover-btns > a{
    background-color: #e3fc03;
    color: #1a1a1a;
    font-size: .9rem;
    display: block;
    padding: 10px 40px 10px 30px;
    width: fit-content;
    text-align: center;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    /* min-width: 160px; */
    position: relative;
    margin: auto 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}
.buy-hover-btns > a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 4px solid #000000;
    border-right: 4px solid rgb(0, 0, 0);
}
.buy-hover-btns > a:hover{
    background-color: #d4ed02;
    transform: translateY(-2px);
    transition: all .3s ease-in;
}
.buy-hover-btns > a.buy-hover-btns-back{
    background-color: #333;
    color: #fff;
    /* border: #1a1a1a 1px solid; */
}
.buy-hover-btns > a.buy-hover-btns-back::after{
    border-color: #fff;
}
@media (max-width: 600px) {
    .buy-hover{
        flex-direction: column;
    }
    .buy-hover > a{
        margin: 20px auto 0;
    }
    .buy-hover > span{
        font-size: .85rem;
    }
}