/**
 * MOKICHI TRATTORIA - Home Page Styles
 * トップページ専用のスタイルを定義
 */

/* =====================
   ヒーローセクション
===================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 0; /* ヘッダーの高さ分余白を削除 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.hero-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 20%; /* すべての画像が同じ幅で表示されるよう設定 */
    opacity: 1; /* すべての画像を常に完全表示 */
    transition: none; /* トランジションを削除 */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1); /* ロゴを白色に変換 */
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ヒーローボタンからアニメーションを削除 */
.hero-btn {
    transition: none;
}

.hero-scroller {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: none; /* トランジションを削除 */
}

.scroller-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.scroller-icon {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.scroller-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    /* アニメーションを削除 */
}

/* スクロールアニメーションキーフレームを削除 */

/* =====================
   コンセプトエリア全体
===================== */
.concept-wrapper {
    position: relative;
    background-image: url('../../img/Concept/01.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.concept-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

/* =====================
   コンセプトセクション
===================== */
.concept-section {
    padding: 4rem 0 2rem;  /* 7remから上4rem、下2remに変更して下部の余白を減らす */
    position: relative;
}

.concept-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;  /* 800pxから900pxに拡大 */
    margin: 0 auto;
}

.concept-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 30px;  /* 40pxから30pxに変更 */
    margin-bottom: 20px;
}

.concept-section .section-title {
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
    font-size: 1.8rem;
}

.concept-section p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center !important;
}

/* =====================
   コンセプトビジュアルセクション
===================== */
.concept-visual-section {
    padding: 20px 0 80px;
    position: relative;
    z-index: 1;
}

.concept-visual-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* 親コンテナのスタイル - タイトル・画像・テキストをまとめるコンテナ */
.concept-parent-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    min-height: 550px;
    padding: 0 20px; /* 両側に余白を追加 */
}

.concept-visual-layout {
    width: 65%; /* 幅を少し狭く */
    margin-right: 15%; /* 右側に余白を作って、タイトルのスペースを確保 */
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央揃えに戻す */
}

.concept-image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央揃えに戻す */
}

.concept-visual-image {
    width: 110%; /* フルサイズに戻す → 110%に拡大 */
    height: auto;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vertical-title {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 2.2; /* 行間を広げる */
    display: flex;
    gap: 2rem; /* タイトル行間のギャップを縮める */
    font-family: var(--font-serif-jp);
    font-weight: 500;
    z-index: 2;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    color: #B5953E;
    height: 650px; /* 縦幅を450pxから650pxに拡大 */
}

.vertical-title br {
    display: inline;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 0.7rem;
    line-height: 2.5; /* 3.0から2.5に行間を縮小 */
    letter-spacing: 0.35em;
    height: 420px;
    color: #fff;
    font-family: var(--font-sans);
    display: flex;
    justify-content: center; /* 中央揃えに戻す */
    align-items: center; /* 中央揃えに戻す */
    margin: 0 auto;
    text-align: justify;
    width: 85%; /* 95%から85%にさらに縮小 */
    gap: 1.2rem; /* 1.5remから1.2remに縮小 */
}

/* Responsive styles */
@media (min-width: 992px) {
    .concept-visual-layout {
        width: 65%;
        margin-right: 15%;
    }
}

@media (max-width: 991px) {
    .vertical-title {
        font-size: 1.6rem;
        gap: 2.5rem;
        right: 15px; /* 右からの距離を調整 */
    }
    
    .concept-visual-layout {
        width: 70%;
        margin-right: 10%;
    }
}

@media (max-width: 767px) {
    .concept-parent-container {
        min-height: 500px;
        padding: 0 10px; /* 余白を小さく */
    }
    
    .concept-visual-layout {
        width: 70%;
        margin-right: 10%;
    }

    .vertical-title {
        font-size: 1.4rem;
        gap: 2rem;
        right: 10px; /* さらに調整 */
    }

    .vertical-text {
        font-size: 0.6rem;
        height: 380px;
        letter-spacing: 0.3em;
        gap: 1.2rem;
    }
}

@media (max-width: 576px) {
    .concept-parent-container {
        min-height: 450px;
    }
    
    .concept-visual-layout {
        width: 75%;
        margin-right: 5%;
    }
    
    .vertical-title {
        font-size: 1.2rem;
        gap: 1rem;
        right: 5px; /* 最小限の余白 */
    }
    
    .vertical-text {
        font-size: 0.55rem;
        letter-spacing: 0.2em;
        height: 320px;
        gap: 1rem;
    }
    
    .concept-visual-image {
        margin-bottom: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
}

/* =====================
   メニューセクション
===================== */
.menu-section {
    padding: 6rem 0;
    background-color: #f9f7f5;
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('../../img/textures/food-pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.menu-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background-image: url('../../img/textures/food-pattern.png');
    opacity: 0.05;
    transform: rotate(180deg);
    z-index: 1;
}

.menu-section .container {
    position: relative;
    z-index: 2;
}

/* スライダーコンテナ */
.menu-slider-container {
    position: relative;
    margin: 4rem 0;
    overflow: hidden;
}

.menu-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    height: 500px;
}

.menu-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease; /* トランジションを速くして柔らかく */
}

.menu-slide.prev {
    transform: translateX(-80%) scale(0.8);
    opacity: 0.6;
    z-index: 1;
}

.menu-slide.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
}

.menu-slide.next {
    transform: translateX(80%) scale(0.8);
    opacity: 0.6;
    z-index: 1;
}

.menu-slide:not(.prev):not(.active):not(.next) {
    transform: translateX(120%) scale(0.6);
    opacity: 0;
    pointer-events: none;
}

/* メニュー画像コンテナ */
.menu-item {
    position: relative;
    max-width: 900px;
    width: 100%;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: none; /* ホバーエフェクトを削除 */
}

.menu-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.menu-info h3 {
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.menu-price {
    font-weight: 600;
    font-size: 1.5rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 矢印ナビゲーション */
.menu-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #1B5E41; /* 深い緑に変更 */
    background-color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: none; /* ホバーエフェクトを削除 */
}

.menu-nav-prev {
    left: 20px;
}

.menu-nav-next {
    right: 20px;
}

/* ドットインジケーター */
.menu-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.8rem;
}

.menu-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    transition: none; /* ホバーエフェクトを削除 */
}

.menu-dot.active {
    background-color: #1B5E41; /* 深い緑に変更 */
    transform: scale(1.2);
}

.menu-link-container {
    text-align: center;
    margin-top: 3rem;
}

.menu-link-container .btn-outline {
    padding: 0.9rem 3rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: none; /* ホバーエフェクトを削除 */
    color: #1B5E41; /* 深い緑に変更 */
    border-color: #1B5E41; /* 深い緑に変更 */
}

/* メニューカードのレスポンシブ対応 */
@media (max-width: 1200px) {
    .menu-carousel {
        height: 450px;
    }
    
    .menu-slide.prev,
    .menu-slide.next {
        transform: translateX(0) scale(0.8);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .menu-carousel {
        height: 400px;
    }
    
    .menu-info h3 {
        font-size: 1.5rem;
    }
    
    .menu-info p {
        font-size: 1rem;
    }
    
    .menu-price {
        font-size: 1.3rem;
    }
    
    .menu-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .menu-nav-prev {
        left: 10px;
    }
    
    .menu-nav-next {
        right: 10px;
    }
}

/* メニュータグ */
.menu-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #1B5E41; /* 深い緑に変更 */
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* =====================
   ビール＆日本酒セクション
===================== */
.brewery-section {
    padding: 6rem 0;
    background-color: #0a0a0a; /* 少し明るめの黒に変更 */
    position: relative;
    overflow: hidden;
    color: #fff;
}

.brewery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../img/backgrounds/波.jpg');
    background-position: center;
    background-size: cover;
    opacity: 0.2; /* 不透明度を下げてうっすらと表示 */
    mix-blend-mode: soft-light; /* ソフトな光の合成モードに変更 */
    z-index: 1;
}

/* 上部へのグラデーションオーバーレイ */
.brewery-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                               rgba(10, 10, 10, 0.9) 0%, 
                               rgba(10, 10, 10, 0.7) 20%, 
                               rgba(10, 10, 10, 0.5) 40%, 
                               rgba(10, 10, 10, 0.3) 60%, 
                               rgba(10, 10, 10, 0.1) 80%, 
                               rgba(10, 10, 10, 0) 100%);
    z-index: 2; /* z-indexを上げて波の上に表示 */
}

.brewery-section .container {
    position: relative;
    z-index: 3; /* z-indexを上げてコンテンツが見えるようにする */
}

.brewery-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-top: 4rem;
}

.brewery-image {
    flex: 1;
    position: relative;
    max-width: 45%;
}

.brewery-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.brewery-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: -1;
}

.brewery-text {
    flex: 1;
    max-width: 45%;
}

.brewery-text h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
    color: #fff; /* 白テキストを強調 */
}

.brewery-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #fff; /* グラデーションから白に変更 */
}

.brewery-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.brewery-labels {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.brewery-label {
    text-align: center;
    flex: 1;
}

.brewery-label-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brewery-label-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brewery-label-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.brewery-label-type {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    transition: none; /* トランジションを削除 */
}

@media (max-width: 992px) {
    .brewery-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .brewery-image, .brewery-text {
        max-width: 100%;
    }
    
    .brewery-image {
        order: -1;
    }
    
    .brewery-labels {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .brewery-label {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 576px) {
    .brewery-label {
        flex: 0 0 100%;
    }
}

/* =====================
   予約セクション
===================== */
.reservation-section {
    padding: 7rem 0;
    background-color: #f9f7f5;
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('../../img/textures/food-pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.reservation-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reservation-text {
    margin-bottom: 2.5rem;
}

.reservation-text p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.reservation-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.reservation-buttons .btn-outline {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background-color: #1B5E41; /* 深い緑に変更 */
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: none; /* ホバーエフェクトを削除 */
}

.btn-icon {
    margin-right: 0.8rem;
    font-size: 1.4rem;
}

/* 所在地とマップのスタイル */
.location-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-container {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.address-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    color: #1B5E41; /* 深い緑に変更 */
}

.address-container address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.map-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background-color: #1B5E41; /* 深い緑に変更 */
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: none; /* ホバーエフェクトを削除 */
}

.map-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    line-height: 0;
    border: 4px solid #fff;
    height: 400px;
}

/* 大きな画面サイズでのレイアウト */
@media (min-width: 992px) {
    .location-info {
        flex-direction: row;
        align-items: stretch;
    }
    
    .address-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .map-container {
        flex: 2;
        height: auto;
    }
}

@media (max-width: 768px) {
    .reservation-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .reservation-buttons .btn-outline {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    .address-container h3 {
        font-size: 1.3rem;
    }
    
    .address-container address {
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* =====================
   インスタグラムギャラリー
===================== */
.instagram {
    padding: 7rem 0;
}

.instagram-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.instagram-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.instagram-icon {
    color: #fff;
    font-size: 2rem;
}

.instagram-item:hover .instagram-image {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.instagram-logo {
    font-size: 2rem;
    color: var(--color-text-dark);
}

.instagram-name {
    font-family: var(--font-en-sans);
    font-size: 1.2rem;
    font-weight: 500;
}

/* =====================
   レスポンシブ対応
===================== */
@media (max-width: 1024px) {
    /* .concept-section {
        background-attachment: scroll;
    } を削除 - もう必要ない */
    
    .brewery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .brewery-content, .brewery-image {
        grid-column: span 1;
        padding-right: 0;
        padding-left: 0;
    }
    
    .brewery::before {
        width: 0;
    }
    
    .brewery-image-accent {
        top: -30px;
        right: -30px;
        width: 200px;
        height: 200px;
    }
    
    .menu-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 90%;
    }
    
    .concept-text {
        padding: 1.5rem;
    }
    
    .menu-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    
    .beer-list {
        flex-wrap: wrap;
    }
    
    .beer-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .reservation-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reservation-text p {
        font-size: 1.1rem;
    }
    
    .reservation-buttons .btn-outline {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    .address-container h3 {
        font-size: 1.3rem;
    }
    
    .address-container address {
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-text {
        font-size: 0.85rem;
    }
    .hero-logo img {
        max-width: 240px;
    }
}

/* 営業情報カードのコンテナ */
.info-cards-container {
    display: flex;
    flex-direction: column;  /* 横並びから縦並びに変更 */
    gap: 20px;
}

/* 営業情報のカード */
.info-card {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 30px;
    width: 100%;  /* 幅を100%に設定 */
    max-width: 900px;  /* 最大幅を700pxから900pxに増やす */
    margin: 0 auto;  /* 中央揃え */
}

.info-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 500;
}

/* セクションヘッダーの装飾 */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #1B5E41; /* 深い緑に変更 */
}

.section-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.title-decoration .line {
    width: 30px;
    height: 1px;
    background-color: #1B5E41; /* 深い緑に変更 */
}

.title-decoration .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #1B5E41; /* 深い緑に変更 */
    margin: 0 10px;
}

@media (max-width: 1024px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
}
