@charset "utf-8";

#vdbanner {
    width: 0;
    height: 0;
}

/* リセットcss */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Hina Mincho', serif;
    background-color: #F5F0E6;
    font-size: 16px;
    color: #2f2b26;
    line-height: 50px;
    letter-spacing: 0.5em;
}

img {
    max-width: 100%;
}

.button {
    background-color: #80AA9F;
    width: 450px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    color: #F8F6F3;
    border: none;
    font-family: inherit;
    letter-spacing: 0.7em;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.button:hover {
    background-color: #669589;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(75, 54, 33, 0.25);
}

html {
    scroll-behavior: smooth;
}


.header {
    background-color: #669589;
    width: 100%;
}

.header-inner {
    height: 100px;
    margin: auto 5%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: block;
    width: 15vw;
    height: auto;
    max-width: 160px;
    max-height: 160px;
    margin-top: 10px;
}

.toggle-menu-button {
    display: none;
}

.site-menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1%;
    color: #F8F6F3;
}

.site-menu ul li {
    margin: 0 15px;
}

.site-menu ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 0 5px;
    white-space: nowrap;
}

/* 英語テキスト */
.site-menu ul li a .english {
    display: inline-block;
    transition: opacity 0.3s;
}

/* 日本語テキスト */
.site-menu ul li a .japanese {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: nowrap;
    font-size: 14px;
    transition: opacity 0.3s;
}

/* ホバーで切り替え */
.site-menu ul li a:hover .english {
    opacity: 0;
}

.site-menu ul li a:hover .japanese {
    opacity: 1;
}

.section-title {
    text-align: center
}

.hero {
    width: 100%;
    height: 500px;
    position: relative;
}

.hero img {
    width: 150%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hero-subcopy {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F5F0E680;
    padding: 1.5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 80%;
    line-height: 2.5;
    text-shadow: #F8F6F3 0 3px 4px;
}

.page-title {
    margin-top: 10%;
}


.intro {
    margin-top: 10%;
    display: flex;
    justify-content: center;
    z-index: 3;
    position: relative;
}

.intro img {
    max-height: 150px;
    width: auto;
}

.intro-text {
    width: 1200px;
    max-width: 80%;
    height: 700px;
    background: url(../image/decor/paper-803865_1920.jpg);
    background-size: contain;
    padding: 2%;
}

.intro-top {
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.intro-text p {
    margin: 2%;
    font-size: 15px;
}

.intro-text span {
    display: block;
    border-bottom: 1px solid #2C2A26;
    padding-bottom: 0.3em;
    margin-bottom: 0.3em;
}

.intro-date {
    display: flex;
    justify-self: flex-end;
}

.ribbon {
    position: absolute;
    background: url(../image/decor/ribbon.png) no-repeat center center;
    background-size: 100% auto;
    top: 50%;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 500px;
    z-index: 3;
}

.menu-section {
    margin: 20% 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.menu-top-title {
    margin: 15% auto 5%;
    text-align: center;
}

.menu-section ul {
    display: flex;
    width: 100%;
    margin-top: 5%;
    justify-content: center;
}

.menu-section li {
    margin: 0 5%;
    background-color: #927E63;
    border-radius: 15px;
    color: #F8F6F3;
    padding: 0 2.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-section li:hover {
    background-color: #4B3621;
    transform: scale(1.05);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-section li:active {
    background-color: #936689;
    transform: scale(1.05);
}

.menu-intro-card img {
    width: 400px;
    height: 300px;
    max-width: 100%;
    object-fit: cover;
}

.menu-intro-card {
    margin: 10% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    background-color: #F8F6F3;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    border-radius: 15px;
    padding: 2%;
}

.menu-intro-card img {
    width: 400px;
    height: 300px;
    max-width: 100%;
    object-fit: cover;
}

.menu-intro-card {
    margin: 10% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    background-color: #F8F6F3;
    width: 100%;
    height: 500px;
    padding: 2%;
}

.menu-intro-texts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    flex-grow: 1;
}

.menu-intro-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.price {
    text-align: end;
    margin-bottom: -5%;
}

.card-reverse {
    display: flex;
    flex-direction: row-reverse;
}

.menu-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-menu h2 {
    width: 100%;
    margin: 5% auto 10%;
    text-align: center;
}

.menu-cards {
    background-color: #80AA9Ff2;
    height: 120%;
    padding: 10% 0;
}

.menu-card {
    display: flex;
    flex-direction: column;
    background-color: #F8F6F3;
    width: 400px;
    height: 600px;
    text-align: center;
    padding: 1%;
    border-radius: 5px;
    box-shadow: 0 2px 8px #4B362173;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 2%;
}

.menu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px #4B362173;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title {
    font-size: 20px;
    margin-top: 5%;
    text-shadow: 0 0 1px #4B3621;
}

.card-text.description {
    font-size: 15px;
    margin: auto 0 8% 0;
}

.card-text.price {
    margin-bottom: 1%;
    text-shadow: 0 0 1px #927E63;
}

.menu-menu:not(#beverages) {
    padding: 5% 0;
}



.footer {
    background-color: #669589;
    width: 100%;
    padding: 20px 0;
    color: #F8F6F3;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .site-menu ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.footer .site-menu li {
    position: relative;
    list-style: none;
    padding: 0 2%;
}

.footer .site-menu li:not(:last-child)::after {
    content: "/";
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0.5;
}

.footer .site-menu a {
    text-decoration: none;
    font-weight: bold;
}

.footer .site-menu a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 12px;
    line-height: 2.5;
    margin: 5% 0;
    opacity: 0.7;
    letter-spacing: 1.2em;
}

.SNS {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    padding: 0 25%;
    box-sizing: border-box;
}

.SNS a img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.SNS a img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.copyright {
    font-size: 12px;
    color: #e0e0e0;
    margin-top: 10px;
}

.back-to-btn {
    position: fixed;
    bottom: 0;
    right: 3%;
    background: url(../image/top-button.png) no-repeat right;
    background-size: 100% 100%;
    width: 120px;
    height: 100px;
    cursor: pointer;
    z-index: 100;
    border: none;
    opacity: 0;
    transition: opacity 0.5s;
    display: block;
}