:root {
    --maincolor: #796444;
}
/*フォント*/
@font-face {
    font-family: 'Shippori Mincho B1';
    src: url('../font/ShipporiMinchoB1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Inter';
    src: url('../font/Inter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*フォントサイズ*/
h1, h2, h3, h4, h5 {
    margin-block-start: 0;
    margin-block-end: 0;
}

h1 { font-size: 3.5em; }
h2 { font-size: 3em; }
h3 { font-size: 2em; }
h4 {
    font-size: 1.5em;
    font-family: 'Inter', serif;
}
h5 {
    font-size: 1em;
}

p{
 padding: 0;
}



body {
    margin: 0;
    font-family: 'Shippori Mincho B1', serif;
    background-image: url(../img/background.jpg);
}


.menu-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; 
    height: 50px;
    padding: 10px;
    box-sizing: border-box;
}


.close-button {
    position: absolute;
    top: 20px;
    right: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px; 
    padding: 10px;
    box-sizing: border-box;
}


.menu-button img,
.close-button img {
    width: 100%; 
    height: 100%;
    object-fit: contain;
}


.close-button {
    display: none;
}

/* Wrapper*/
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .header-top {
        display: flex;
    }

    .header-content,
    .vertical-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }


}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    text-align: center;
}


.menu-button.show,
.close-button.show {
    display: flex;
}
    /*セクション*/
section {
    padding: 60px 0;
    text-align: center;
    color: #424242;
}

/* Header */
.header {
    position: relative;
    width: 100vw;
    height: 680px;
    overflow: hidden;
}

/* Swiper  */
.swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Swiper Caption */
.swiper-caption {
    position: absolute;
    bottom: -480px;
    right: 138px;
    color: #fff;
    font-size: 14px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 15;
}
.header-content {
    position: relative;
    z-index: 10;
    padding: 20px 138px;
    display: flex;
    justify-content: space-between;
}

/* 左侧 */
.header-left {
    display: flex;
    gap: 20px;
}

/* Logo */
.logo {
    width: 100%;
}

/* 导航栏 */
.vertical-nav {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.vertical-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-nav li {
    margin-bottom: 10px;
}

.vertical-nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 10px;
    display: inline-block;
    position: relative;
    transition: border 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.vertical-nav a:hover {
    border: 1px solid #fff;
}

/* 右侧 */
.phone img {
    margin-right: 10px;
    width: 20px;
}

.reservation {
    text-align: right;
    color: #fff;
}

.reservation h5 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.reservation .phone {
    margin-bottom: 10px;
}
.web-reservation1{
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;  
}

.web-reservation1:hover {
    background-color: var(--maincolor);
    border: 1px solid var(--maincolor);
}
.web-reservation {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.web-reservation:hover {
    background-color: var(--maincolor);
    border: 1px solid var(--maincolor);
}

.web-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
}


@media (max-width: 768px) {
    .header{
        height: 340px;
    }
}

/* Overlay */
.header-top {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: -10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.header-top .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0;
    padding: 20px; 
}


.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.overlay-content {
    text-align: center;
}


.horizontal-nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.horizontal-nav li {
    margin: 15px 0;
}

.horizontal-nav a {
    color: #424242;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.horizontal-nav a:hover {
    color: var(--maincolor);
}



.overlay-content .reservation {
    padding-top: 60px;
    margin: 20px 0;
}

.overlay-content .reservation h5 {
    color: var(--maincolor);
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
}

.overlay-content .reservation .phone {
    font-size: 30px;
    margin-top: 10px;
    color: var(--maincolor)
}


.overlay-content .reservation .web-reservation {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #424242;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
}
.overlay-content .reservation .web-reservation:hover {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color:var(--maincolor);
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
}


.overlay-content .social-icons {

    margin-top: 20px;

}

@media (max-width: 768px) {
    .header-top {
        display: flex;
    }

    .header-content, .vertical-nav, .menu-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .swiper-caption {
    padding: 10px;
    position: absolute;
    bottom: -190px;
    right: 30px;
    color: #fff;
    font-size: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 15;
}
}

/* section */

section:nth-child(even) {
    background-image: url('../img/background2.jpg');
    background-size: cover;
    background-position: center;
}


section:nth-child(odd) {
    background-image: url('../img/background1.jpg');
    background-size: cover;
    background-position: center;
}



/* Section One */

.section-title {
    margin-bottom: 20px;
}

.section-title h4 {
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid #424242;
    font-weight: bold;
    background-color: #fff;
    color: #424242;
}

.notice-content{
    margin-top: 40px;
}
.notice-content h5 {
    font-size: 20px;
    color: var(--maincolor);
    margin-bottom: 10px;
    font-weight: bold;
}

.notice-content p {
    font-size: 16px;
    color: #424242;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .section-title h4 {
        font-size:20px;   
}

.notice-content h5 {
    font-size: 16px;
    text-wrap: nowrap;

}

.notice-content p {
    font-size: 14px;

}

}

/* Section Two */


.chef-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.chef-image {
    flex: 1;
    text-align: center;
}

.chef-image img {
    width: 375px;
    height: 375px;
    display: block;
    margin: 0 auto;
}

.chef-name {
    margin-top: 10px;
    color: #424242;
    font-weight: bold;
}

.chef-description {
    flex: 2;
    text-align: left;
}

.chef-description p {
    font-size: 16px;
    color: #424242;
    line-height: 1.8;
    text-align: left;
    margin-top: 60px;
}

.chef-description .text {
    color: var(--maincolor);
    line-height: 1.8;
    text-align: center;
}

@media (max-width: 768px) {

    .chef-content {
        display: block;
        
}
.chef-image img {
    width: 250px;
    height: 250px;
    display: block;
    margin: 0 auto;
}

.chef-description p {
    font-size: 14px;
    margin-top: 40px;
}



}


/* Section Three */


.menu-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.menu-item img {
    width: 45%;
    height: auto;
    border: 1px solid #ddd;
    object-fit: cover;
}

.menu-description {
    max-width: 500px;
    text-align: left;
}

.menu-description h4 {
    color: var(--maincolor);
    margin-bottom: 10px;
    font-weight: bold;
}

.menu-description p {
    font-size: 16px;
    color: #424242;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .menu-description h4 {
        font-size: 16px;
    }

    .menu-description p {
        font-size: 14px;
    }

    .menu-item {
        gap: 20px;
    }

    .menu-item img {
        width: calc(100% + 20px);
        margin-left: -20px;
        border-radius: 0 80px 80px 0;
    }

    .menu-item.reverse {
        gap: 20px;
    }

    .menu-item.reverse img {
        width: calc(100% + 20px);
        margin-right: -20px;
        border-radius: 80px 0 0 80px;
    }

    .menu-item.reverse .menu-description{
        width: 50%;
    }
}


@media (max-width: 458px) {

    .menu-item img {
        width: calc(100% + 20px);
        height: auto;
        margin-left: -200px;
        border-radius: 0 80px 80px 0;
    }

    .menu-item.reverse {
        gap: 20px;
    }

    .menu-item.reverse img {
        margin-right: -210px;
        border-radius: 80px 0 0 80px;
        object-position: left center;
    }
}

/* Section four */


/* Section five */
.ins-content {
    display: flex
;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;}

/* Section six*/
.info-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.info-button {
    width: 200px;
    box-sizing: border-box;
    align-items: center;
    padding: 10px 20px;
    background-color: #424242;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    gap: 10px;
    transition: background-color 0.3s;
}

.info-button img {
    width: 20px;
    height: 20px;
}

.info-button a {
   font-size: 18px;
}

.info-button:hover {
    background-color: var(--maincolor);
}

.shop-details {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.shop-address{
    align-self: center;
}
.shop-address .line {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.label {
    display: inline-block;
    width: 200px;
    font-weight: bold;
    color: var(--maincolor);
    text-align: left;
}

.shop-name {
    flex: 1;
    color: #424242;
    text-align: right;
}

.shop-address .shop-name {
    color: #424242;
}

.shop-address .line::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #424242;
    position: absolute;
    bottom: 0;
    left: 0;
}

.shop-image {
    flex: 1;
}

.shop-image img {
    width: 464px;
    height: 390px;
}

.map-section {
    margin-top: 40px;
}

.map-section img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}

.map-caption {
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
    background-color: var(--maincolor);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}


@media (max-width: 768px) {
.shop-details{
 display: block;
     }


    .shop-image img {
        width: 100%;
        height: auto;

    }

.shop-name {
        font-size: 14px;
    }

 .label {
        font-size: 14px;
    }

}


@media (max-width: 458px) {

    .info-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px; 
        align-items: center; 
    }

}

/*フッター*/
.footer {
    padding: 20px 0;
    background-color: transparent;
}

.footer .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 138px;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.footer-logo img {
    width: 80px; 
}

.footer-right {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon img {
    width: 32px; 
    height: 32px;
}

.footer-nav {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
    margin-left: 10px;
}

.footer-nav a {
    color: #424242;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--maincolor);
}

.footer-copyright {
    margin-top: 20px;
    text-align: center;
    color: #424242;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer .wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    
 }

 @media (max-width: 468px) {
    .footer-nav {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        display: grid; 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: auto;
        gap: 1px;
        width: 100%;
        justify-items: center;
        padding: 0;
    }


    .footer-nav ul {
        display: contents; 
        padding: 0;
        font-size:14px;
    }

    .footer-right {
        display: block;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        order: 2;
        margin-top: 20px; 
    }

    .footer-right {
        order: 1; 
    }

    .footer-social {
        display: flex;
        justify-content: center;         width: 100%;
        margin: 20px auto;
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-copyright {

        font-size: 12px;
    }
}  
    
