/* 
========================================
Suzunoki Cafe CSS
========================================
*/

/* 
ベース設定
---------------------------------------- 
*/
:root {
    --color-white: #FAF8F4;
    --color-brown: #8B5E3C;
    --color-green: #1A3C2A;
    --color-light-green: #A8C3A0;
    --color-text: #333333;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-heading: 'Raleway', 'Noto Sans JP', sans-serif;
    --container-max-width: 1200px;
    --container-padding: 20px;
    --section-spacing: 80px;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: var(--color-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

a:hover {
    color: var(--color-green);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

section {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-green);
}

.btn {
    display: inline-block;
    background-color: var(--color-green);
    color: var(--color-white);
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.btn:hover {
    background-color: var(--color-brown);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 
ヘッダー
---------------------------------------- 
*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    max-width: 180px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-green);
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo a:hover {
    color: var(--color-brown);
}

.nav-pc ul {
    display: flex;
    align-items: center;
}

.nav-pc ul li {
    margin-left: 30px;
}

.nav-pc ul li a {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    color: var(--color-green);
}

.nav-pc ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-light-green);
    transition: width 0.3s ease;
}

.nav-pc ul li a:hover::after {
    width: 100%;
}

.btn-reserve {
    background-color: var(--color-green);
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: var(--border-radius);
}

.btn-reserve:hover {
    background-color: var(--color-brown);
    color: #ffffff !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-green);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav-sp {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-sp.active {
    transform: translateY(0);
}

.nav-sp ul li {
    margin: 15px 0;
    text-align: center;
}

.nav-sp ul li a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 10px;
    display: block;
    color: var(--color-green);
}

/* 
Heroセクション
---------------------------------------- 
*/
.section-hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 60, 42, 0.4);
    z-index: 3;
}

.section-hero .container {
    position: relative;
    z-index: 4;
}

.hero-content {
    color: var(--color-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-logo {
    max-width: 700px;
    margin: 0 auto 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: fadeInUp 1.5s ease-out forwards;
    width: 60%;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--color-white);
    font-size: 1.5rem;
    z-index: 5;
    cursor: pointer;
}

.hero-btn {
    animation: fadeInUp 1.5s ease-out 0.5s backwards;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(26, 60, 42, 0.8);
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-btn:hover {
    transform: scale(1.05) translateY(-5px);
    background-color: var(--color-brown);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover::before {
    opacity: 1;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 0.5;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* 
Conceptセクション
---------------------------------------- 
*/
.section-concept {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
}

.section-concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(250, 248, 244, 0.5) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 70%, rgba(250, 248, 244, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

.about-title {
    font-size: 3.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 80px;
    color: #333333;
    font-weight: 200;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #333333;
}

.concept-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.concept-main-image {
    grid-column: 1 / 13;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.concept-main-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.concept-image-side {
    height: 300px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.concept-image-side.right {
    grid-column: 8 / 13;
    grid-row: 2;
}

.concept-image-side.left {
    grid-column: 1 / 6;
    grid-row: 3;
}

.concept-image-bottom {
    grid-column: 5 / 9;
    grid-row: 4;
    height: 280px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.concept-main-image img,
.concept-image-side img,
.concept-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-text-block {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.concept-text-block h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-green);
    margin-bottom: 15px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.concept-text-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-light-green);
}

.concept-text-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    letter-spacing: 0.03em;
}

.block-1 {
    grid-column: 2 / 7;
    grid-row: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.block-2 {
    grid-column: 2 / 7;
    grid-row: 3;
    margin-left: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.block-3 {
    grid-column: 9 / 12;
    grid-row: 4;
    margin-top: -30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--color-light-green);
    z-index: 2;
}

@media (max-width: 1024px) {
    .section-concept {
        padding: 80px 0 100px;
    }
    
    .about-title {
        font-size: 3rem;
        margin-bottom: 60px;
    }
    
    .concept-layout {
        grid-gap: 20px;
    }
    
    .concept-main-image {
        height: 450px;
    }
    
    .concept-image-side {
        height: 250px;
    }
    
    .concept-text-block {
        padding: 25px;
    }
    
    .block-2 {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .section-concept {
        padding: 60px 0 80px;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
        letter-spacing: 0.15em;
    }
    
    .concept-layout {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .concept-main-image {
        height: 350px;
    }
    
    .concept-image-side.right,
    .concept-image-side.left,
    .concept-image-bottom {
        grid-column: 1;
        height: 280px;
        margin: 0;
    }
    
    .concept-main-image {
        grid-row: 1;
    }
    
    .block-1 {
        grid-column: 1;
        grid-row: 2;
        margin: -60px 20px 0;
    }
    
    .concept-image-side.right {
        grid-row: 3;
    }
    
    .block-2 {
        grid-column: 1;
        grid-row: 4;
        margin: -60px 20px 0;
    }
    
    .concept-image-side.left {
        grid-row: 5;
    }
    
    .block-3 {
        grid-column: 1;
        grid-row: 6;
        margin: -60px 20px 0;
        border-left: none;
        border-top: 3px solid var(--color-light-green);
    }
    
    .concept-image-bottom {
        grid-row: 7;
        margin-top: 20px;
    }
    
    .concept-text-block h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .section-concept {
        padding: 50px 0 70px;
    }
    
    .concept-main-image {
        height: 300px;
    }
    
    .concept-text-block {
        padding: 20px;
    }
    
    .block-1,
    .block-2,
    .block-3 {
        margin: -40px 15px 0;
        width: calc(100% - 30px);
        grid-column: 1;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .concept-text-block h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .concept-text-block p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .concept-text-block p br {
        display: none;
    }
    
    .concept-image-side.right,
    .concept-image-side.left,
    .concept-image-bottom {
        width: 100%;
        grid-column: 1;
        margin: 0;
    }
    
    .concept-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

/* 
Menuセクション
---------------------------------------- 
*/
.menu-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 60, 42, 0.05);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(26, 60, 42, 0.1);
}

.menu-img {
    height: 220px;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.menu-card:hover .menu-img img {
    transform: scale(1.05);
}

.menu-card h3 {
    color: var(--color-green);
    font-size: 1.3rem;
    padding: 20px 20px 10px;
    font-weight: 500;
}

.menu-card p {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: var(--color-text);
}

/* 
Menuセクション（新）
---------------------------------------- 
*/
.menu-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-category {
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: none;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-green), var(--color-light-green));
}

.menu-category::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none"><path d="M80 20C80 31.05 71.05 40 60 40C71.05 40 80 48.95 80 60C80 48.95 88.95 40 100 40C88.95 40 80 31.05 80 20Z" fill="rgba(168, 195, 160, 0.15)"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-green);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 94, 60, 0.15);
    position: relative;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-light-green);
}

.menu-section {
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.menu-section-title {
    font-size: 1.4rem;
    color: var(--color-brown);
    margin-bottom: 20px;
    font-weight: 500;
    padding-left: 15px;
    border-left: 3px solid var(--color-light-green);
    letter-spacing: 0.03em;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 14px 40px;
    position: relative;
    z-index: 1;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dotted rgba(139, 94, 60, 0.2);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px);
    border-bottom-color: rgba(139, 94, 60, 0.4);
}

.sub-item {
    padding-left: 20px;
    font-size: 0.95em;
    border-bottom: none;
}

.sub-item:hover {
    transform: translateX(3px);
}

.menu-item-name {
    padding-right: 15px;
    position: relative;
    z-index: 1;
}

.menu-item-price {
    white-space: nowrap;
    color: var(--color-brown);
    font-weight: 500;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2px 8px;
    border-radius: 20px;
}

.menu-note {
    font-size: 0.9rem;
    margin-top: 20px;
    color: var(--color-brown);
    text-align: right;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* 
Galleryセクション
---------------------------------------- 
*/
.section-gallery {
    background-color: var(--color-white);
    position: relative;
    padding-bottom: 100px;
}

.section-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 60, 42, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.gallery-wrapper {
    position: relative;
    margin: 0 auto;
    transition: transform 0.5s ease;
}

.gallery-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    display: block;
    opacity: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.gallery-dots {
    display: flex;
    margin: 0 15px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(26, 60, 42, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: var(--color-green);
    transform: scale(1.2);
}

.gallery-prev,
.gallery-next {
    background-color: var(--color-white);
    color: var(--color-green);
    border: 1px solid var(--color-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--color-green);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
}

/* 
Accessセクション
---------------------------------------- 
*/
.section-access {
    background: linear-gradient(135deg, rgba(26, 60, 42, 0.05) 0%, rgba(26, 60, 42, 0.02) 100%);
}

.access-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    height: 420px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

.map-container .btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.shop-info {
    padding: 25px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shop-info dl {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 15px 10px;
}

.shop-info dt {
    font-weight: 500;
    color: var(--color-green);
}

.shop-info dd {
    margin-bottom: 15px;
    color: var(--color-text);
}

/* 
Reserveセクション
---------------------------------------- 
*/
.section-reserve {
    background-color: var(--color-green);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.section-reserve .section-title {
    color: #fff;
}

.reserve-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.reserve-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reserve-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.reserve-method {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: left;
}

.reserve-method h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.reserve-method p {
    margin-bottom: 15px;
    text-align: left;
    padding-left: 0;
    position: relative;
}

.reserve-method p:before {
    content: "";
    position: absolute;
    left: 0;
}

.reserve-note {
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
    text-align: left;
    padding-left: 0;
}

.btn-tel {
    background-color: #fff;
    color: var(--color-green);
    padding: 12px 30px;
    font-size: 1.2rem;
    margin: 15px auto;
    display: block;
    text-align: center;
    max-width: 300px;
}

.btn-tel:hover {
    background-color: var(--color-brown);
    color: #fff;
}

@media (max-width: 768px) {
    .reserve-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reserve-image {
        height: auto;
    }
    
    .reserve-method {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .reserve-method {
        padding: 20px 15px;
    }
    
    .reserve-method p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.4;
        padding-left: 0;
    }
    
    .reserve-note {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .btn-tel {
        width: 100%;
        max-width: none;
        font-size: 1.1rem;
        padding: 10px 15px;
    }
}

/* 
Footer
---------------------------------------- 
*/
#footer {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 50px 0 40px;
    position: relative;
}

#footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--color-light-green), var(--color-brown));
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 25px;
}

.footer-nav ul li a {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--color-light-green);
}

.footer-nav ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.social-links a {
    color: var(--color-white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--color-light-green);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* 
アニメーション
---------------------------------------- 
*/
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 
レスポンシブ対応
---------------------------------------- 
*/
@media (max-width: 1024px) {
    :root {
        --section-spacing: 60px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .concept-wrapper {
        gap: 30px;
    }

    .menu-cards {
        gap: 20px;
    }

    .gallery-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .reserve-wrapper {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 50px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .nav-pc {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        max-width: none;
        width: 70%;
        margin-bottom: 30px;
    }

    .concept-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .menu-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .access-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 300px;
    }

    .reserve-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reserve-info {
        padding: 25px 20px;
    }

    .reserve-form {
        padding: 25px;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        gap: 15px 25px;
    }

    .menu-list {
        grid-template-columns: 1fr;
    }
    
    .menu-category {
        padding: 25px 20px;
    }

    .menu-category-title {
        font-size: 1.8rem;
    }
    
    .social-links {
        margin: 20px 0;
    }
    
    .social-links a {
        margin: 0 10px;
    }

    .section-hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero-slide {
        background-size: 300%;
        background-position: center;
    }
}

@media (max-width: 576px) {
    :root {
        --section-spacing: 40px;
        --container-padding: 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 75%;
        margin-bottom: 25px;
    }
    
    .hero-btn {
        width: 130px;
        height: 130px;
        font-size: 0.95rem;
    }
    
    .scroll-down {
        bottom: 20px;
    }

    .menu-cards {
        grid-template-columns: 1fr;
    }

    .gallery-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .gallery-nav {
        margin-top: 15px;
    }

    .shop-info dl {
        grid-template-columns: 1fr;
    }

    .shop-info dt {
        margin-bottom: 5px;
    }

    .shop-info dd {
        margin-bottom: 20px;
    }
    
    .reserve-info {
        padding: 20px 15px;
    }
    
    .reserve-form {
        padding: 20px 15px;
    }
    
    .concept-text p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .menu-item {
        padding: 10px 0;
    }
    
    .menu-item-name, .menu-item-price {
        font-size: 0.95rem;
    }
    
    .btn-tel {
        width: 100%;
        text-align: center;
    }

    .section-hero {
        height: 100vh;
        min-height: 450px;
    }

    .hero-slide {
        background-size: 300%;
        background-position: center;
    }
    
    .reserve-method {
        padding: 20px 15px;
    }
    
    .reserve-method p {
        font-size: 0.95rem;
        padding-left: 15px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .reserve-note {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* より小さいスマートフォン向け */
@media (max-width: 375px) {
    .logo a {
        font-size: 1rem;
    }
    
    .hero-logo {
        width: 85%;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        width: 120px;
        height: 120px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .menu-tab-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .menu-tab-nav {
        gap: 4px;
    }
    
    .gallery-dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .reserve-note {
        font-size: 0.85rem;
    }

    .hero-slide {
        background-size: 300%;
    }
}

/* メディアクエリの最適化 - メニュータブ */
@media (max-width: 768px) {
    .menu-tab-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* ハンバーガーメニュー最適化 */
    .hamburger {
        z-index: 1001;
    }
    
    .nav-sp {
        padding: 15px 0;
        z-index: 999;
    }
    
    .nav-sp ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-sp ul li a {
        display: block;
        padding: 10px 15px;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .menu-tab-nav {
        gap: 5px;
    }
    
    .menu-tab-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    /* タッチ領域の最適化 */
    .gallery-prev, .gallery-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-dot {
        margin: 0 5px;
    }
    
    /* フッターの最適化 */
    .footer-nav ul {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
        font-size: 0.85rem;
    }
}

/* 臨時休業のお知らせスタイル */
.special-notice {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  background-color: rgba(255, 87, 87, 0.15);
  border: 1px solid #ff5757;
  border-radius: 4px;
  color: #ff5757;
  font-size: 0.85em;
  font-weight: 500;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* 
Menuセクション タブ切り替え
---------------------------------------- 
*/
.menu-tabs {
    margin-top: 30px;
}

.menu-tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
}

.menu-tab-nav::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(139, 94, 60, 0.15);
}

.menu-tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    color: var(--color-text);
    transition: all 0.3s ease;
    font-family: var(--font-body);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.menu-tab-btn:hover {
    background-color: rgba(168, 195, 160, 0.15);
    color: var(--color-green);
}

.menu-tab-btn.active {
    background-color: var(--color-green);
    color: white;
}

.menu-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--color-green);
}

.menu-tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.menu-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .menu-tab-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .menu-tab-nav {
        gap: 5px;
    }
    
    .menu-tab-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* 遅延読み込み画像のスタイル */
.lazy-image {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.lazy-image[src^="http"] {
    opacity: 1;
}

/* パフォーマンス最適化 */
img, a {
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
} 