/* ============================================
   トップページ用メインスタイル
   ============================================ */

/* ============================================
   ヒーローセクション
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
    margin-top: 0;
}

@media screen and (min-width: 769px){
    .hero {
        min-height: 600px;
    }
}
.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-image img.active {
    opacity: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    width: 90%;
    max-width: 1000px;
    padding-bottom: 20px;
}

.hero-text {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hero-logo-image {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-catch {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-lead,
.hero-sublead {
    font-size: 18px;
    line-height: 1.9;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-award-badge {
    display: inline-flex;
    align-items: center;
    gap: 48px;
    padding: 0;
    margin: 0 auto;
}

.hero-award-badge img {
    display: block;
    height: 100px;
    width: auto;
    border-radius: 5px;
}

/* ヒーローアクションボタン（中央） */
.hero-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background-color: #fff;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.hero-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #fff5f0;
}

.animal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.animal-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.btn-text {
    white-space: nowrap;
}

/* 予約バナー（右下） */
.hero-reservation {
    position: absolute;
    bottom: 120px;
    right: 50px;
    z-index: 3;
    background: linear-gradient(135deg, #4CAF50 0%, #ffda76 100%);
    border-radius: 15px;
    padding: 20px 25px;
    color: #fff;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.reservation-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.reservation-close:hover {
    opacity: 1;
}

.reservation-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.reservation-content {
    flex: 1;
}

.reservation-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.4;
}

.reservation-subtitle {
    font-size: 12px;
    opacity: 0.9;
}

/* ヒーロー下部ナビゲーション */
.hero-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    padding-top: 20px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    /*box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);*/
    overflow: visible;
}

/* 波打つ境界線 */
.hero-bottom-nav::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q150,0 300,40 T600,40 T900,40 T1200,40 L1200,80 L0,80 Z' fill='rgba(255,255,255)'/%3E%3C/svg%3E");
    background-size: 100% 80px;
    background-repeat: no-repeat;
    background-position: top center;
    pointer-events: none;
    z-index: 0;
}

.hero-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s;
    min-width: 100px;
    position: relative;
    z-index: 1;
}

.hero-bottom-nav .nav-item:hover {
    background-color: #fff5f0;
    color: #4CAF50;
    transform: translateY(-3px);
}

.hero-bottom-nav .nav-item i {
    font-size: 24px;
    margin-bottom: 5px;
}

.hero-bottom-nav .nav-item span {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================
   セクション共通スタイル
   ============================================ */

/* お知らせセクション */
.news-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #fff 0%, #fffaf5 50%, #fff 100%);
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 35px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    color: #666;
    transition: all 0.3s;
    font-weight: 500;
}

.tab-btn:hover {
    border-color: #4CAF50;
    color: #4CAF50;
    background-color: #fff5f0;
}

.tab-btn.active {
    background: linear-gradient(135deg, #4CAF50 0%, #ffda76 100%);
    border-color: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.news-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ebdfcc;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ebdfcc;
    transition: background-color 0.3s;
}

.news-item:hover {
    background-color: rgba(255, 245, 240, 0.45);
}

.news-date {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    flex: 0 0 100px;
}

.news-category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    background-color: #f5f5f5;
    color: #666;
}

/* お知らせカテゴリ 
.news-category.info,
.news-category[class*="info"],
.news-category[class*="お知らせ"] {
    background: linear-gradient(135deg, #4a90e2 0%, #5ba3f5 100%);
    color: #fff;
}
*/
/* イベントカテゴリ
.news-category.event,
.news-category[class*="event"],
.news-category[class*="イベント"] {
    background: linear-gradient(135deg, #4CAF50 0%, #4CAF50 100%);
    color: #fff;
}
 */
/* 商品情報カテゴリ
.news-category.product,
.news-category[class*="product"],
.news-category[class*="商品情報"],
.news-category[class*="商品"] {
    background: linear-gradient(135deg, #50c878 0%, #6dd88f 100%);
    color: #fff;
}
 */
.news-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #333;
    flex: 1;
}

.news-title a {
    transition: color 0.3s;
}

.news-title a:hover {
    color: #4CAF50;
}

/* 「私たちのこだわり」セクション */
.commitment-section {
    padding: 40px 0;
    background-color: #fff;
}

.commitment-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.commitment-catch {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
}

.commitment-lead {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.commitment-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.commitment-item.reverse {
    direction: rtl;
}

.commitment-item.reverse > * {
    direction: ltr;
}

.commitment-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.commitment-item:hover .commitment-image img {
    transform: scale(1.05);
}

.commitment-content {
    padding: 20px;
}

.commitment-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #4CAF50;
    letter-spacing: 0.05em;
}

.commitment-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.commitment-text {
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin-bottom: 20px;
}

.commitment-text:last-child {
    margin-bottom: 0;
}

.commitment-closing {
    max-width: 900px;
    margin: 70px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.commitment-closing-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
}

.commitment-closing-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.awards-section {
    padding: 40px 0 60px;
    background: linear-gradient(to bottom, #fffaf5 0%, #fff 100%);
}

.awards-title .title-en {
    font-size: 16px;
    letter-spacing: 0.2em;
}

.awards-title .title-ja {
    font-size: 30px;
}

.awards-intro {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

.awards-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.awards-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.award-group {
    flex: 1 1 320px;
    max-width: 420px;
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.award-logo {
    text-align: center;
}

.award-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.award-group-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.award-group-list li {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
}

.award-group-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 18px;
    line-height: 1;
    top: 4px;
}

/* 商品紹介セクション */
.products-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #fffaf5 0%, #fff 100%);
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.products-lead {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
}

.products-sublead {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

.product-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-category-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 149, 82, 0.25);
}

.product-category-image {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.05);
}

.product-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-category-icon {
    width: 56px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe192 0%, #ffbc5d 100%);
    color: #704c00;
    display: inline-flex;
    font-weight: 700;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.product-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.product-category-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-category-label {
    font-size: 14px;
    font-weight: 700;
    color: #4CAF50;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-category-list {
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #555;
    line-height: 1.7;
}

.product-category-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

.product-category-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.product-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    flex: 1 1 180px;
}

.product-category-link:hover {
    background-color: #3e9143;
    transform: translateY(-2px);
}

.product-category-link--secondary {
    background-color: #ffe5c4;
    color: #d86700;
}

.product-category-link--secondary:hover {
    background-color: #ffd69c;
}

/* 「EAT & SHOPPING」セクション */
.eat-shopping-section {
    width: 100%;
    position: relative;
    background-color: #fffaf5;
}

.eat-shopping-section > .container {
    padding: 30px 0 50px;
}
.eat-shopping-section .product-category-actions{
    width: 95%;
    margin: auto;
}

.eat-shopping-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.eat-shopping-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.eat-shopping-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eat-shopping-banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.eat-shopping-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.eat-shopping-title-ja {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
}

.eat-shopping-title-en {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Arial', sans-serif;
}

.eat-shopping-lead {
    max-width: 900px;
    margin: 0px auto 30px;
    padding: 0 20px;
}

.eat-shopping-lead p {
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin-bottom: 25px;
    text-align: left;
}

.eat-shopping-lead p:last-child {
    margin-bottom: 0;
}

.eat-shopping-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.eat-shopping-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.eat-shopping-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.eat-shopping-item-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.eat-shopping-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.eat-shopping-item:hover .eat-shopping-item-image img {
    transform: scale(1.05);
}

.eat-shopping-item-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.eat-shopping-item-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #4CAF50;
    letter-spacing: 0.05em;
}

.eat-shopping-item-description {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
}

.eat-shopping-item-description:last-child {
    margin-bottom: 0;
}

.eat-shopping-item-description strong {
    color: #333;
    font-weight: 600;
}

/* 「シェーブル館のご案内」セクション */
.guide-section {
    padding: 40px 0;
    background-color: #fff;
}

.guide-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.guide-out img{
    max-width: 100%;
    height: auto;
}
.guide-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.guide-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.guide-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.info-table tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table tr:hover {
    background-color: #fffaf5;
}

.info-table th {
    padding: 25px;
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
    text-align: left;
    vertical-align: top;
    background: linear-gradient(135deg, #fffaf5 0%, #fff 100%);
    border-left: 5px solid #4CAF50;
    width: 200px;
}

.info-table th i {
    font-size: 22px;
    margin-right: 12px;
}

.info-table th span {
    display: inline-block;
    vertical-align: middle;
}

.info-table td {
    padding: 25px;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    vertical-align: top;
}

.info-table td a {
    color: #4CAF50;
    font-weight: 600;
    transition: color 0.3s;
}

.info-table td a:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

.social-banners {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-banner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    border-radius: 12px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.social-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-banner.blog {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.social-banner.facebook {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

/* ============================================
   レスポンシブデザイン
   ============================================ */

/* タブレット (1024px以下) */
@media (max-width: 1024px) {
    .hero {
        height: 500px;
    }

    .awards-groups {
        gap: 24px;
    }

    .award-group {
        flex: 1 1 280px;
    }

    .hero-logo-image {
        max-height: 60px;
    }

    .hero-catch {
        font-size: 26px;
    }

    .hero-lead,
    .hero-sublead {
        font-size: 16px;
    }

    .hero-award-badge {
        padding: 0;
        gap: 36px;
    }

    .hero-award-badge img {
        height: 88px;
    }

    .hero-actions {
        gap: 15px;
    }

    .hero-reservation {
        bottom: 160px;
        right: 30px;
        max-width: 280px;
        padding: 15px 20px;
    }

    .hero-bottom-nav {
        gap: 20px;
        padding: 15px 0;
    }

    .hero-bottom-nav .nav-item {
        min-width: 80px;
        padding: 8px 10px;
    }

    .hero-bottom-nav .nav-item i {
        font-size: 20px;
    }

    .hero-bottom-nav .nav-item span {
        font-size: 12px;
    }

    .title-en {
        font-size: 28px;
    }

    .title-ja {
        font-size: 32px;
    }

    .commitment-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .commitment-item.reverse {
        direction: ltr;
    }

    .commitment-image {
        height: 300px;
    }

    .eat-shopping-banner {
        min-height: 300px;
    }

    .eat-shopping-title-ja {
        font-size: 36px;
    }

    .eat-shopping-title-en {
        font-size: 28px;
    }

    .eat-shopping-lead {
        margin: 50px auto 60px;
    }

    .eat-shopping-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .eat-shopping-item-image {
        height: 250px;
    }

    .guide-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guide-map iframe {
        height: 350px;
    }

    .product-category-grid {
        gap: 24px;
    }
}

/* 小型タブレット (768px以下) */
@media (max-width: 768px) {
    .awards-groups {
        gap: 20px;
    }

    .award-group {
        padding: 24px 22px;
    }

    .award-logo img {
        max-width: 180px;
    }

    .product-category-image {
        height: 200px;
    }

    .hero {
        height: 500px;
    }

    .hero-logo-image {
        max-height: 50px;
    }

    .hero-text {
        gap: 10px;
    }

    .hero-catch {
        font-size: 24px;
    }

    .hero-lead,
    .hero-sublead {
        font-size: 15px;
    }

    .hero-award-badge {
        padding: 0;
        gap: 28px;
    }

    .hero-award-badge img {
        height: 76px;
    }

    .hero-actions {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .hero-action-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-reservation {
        bottom: 140px;
        right: 20px;
        max-width: 250px;
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
    }

    .reservation-icon {
        font-size: 32px;
    }

    .reservation-title {
        font-size: 14px;
    }

    .reservation-subtitle {
        font-size: 11px;
    }

    .hero-bottom-nav {
        gap: 15px;
        padding: 12px 0;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-bottom-nav .nav-item {
        min-width: 70px;
        padding: 8px;
        flex-shrink: 0;
    }

    .hero-bottom-nav .nav-item i {
        font-size: 18px;
    }

    .hero-bottom-nav .nav-item span {
        font-size: 11px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .title-en {
        font-size: 24px;
    }

    .title-ja {
        font-size: 28px;
    }

    .eat-shopping-section > .container {
        padding: 40px 0;
    }

    .news-section,
    .commitment-section,
    .products-section,
    .guide-section {
        padding: 40px 0;
    }

    .news-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .news-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }

    .news-meta {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .news-meta .news-date {
        font-size: 13px;
    }

    .news-details {
        width: 100%;
    }

    .commitment-list {
        gap: 60px;
    }

    .eat-shopping-banner {
        min-height: 250px;
    }

    .eat-shopping-title-ja {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .eat-shopping-title-en {
        font-size: 24px;
    }

    .eat-shopping-lead {
        margin: 40px auto 50px;
        padding: 0 15px;
    }

    .eat-shopping-lead p {
        font-size: 15px;
        line-height: 1.9;
    }

    .eat-shopping-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .eat-shopping-item-image {
        height: 220px;
    }

    .eat-shopping-item-content {
        padding: 25px;
    }

    .eat-shopping-item-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .eat-shopping-item-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .commitment-image {
        height: 250px;
    }

    .commitment-title {
        font-size: 26px;
    }

    .commitment-text {
        font-size: 15px;
    }

    .products-intro {
        margin-bottom: 40px;
    }

    .products-lead {
        font-size: 24px;
    }

    .product-category-card {
        padding: 24px;
    }

    .product-category-actions {
        flex-direction: column;
    }

    .product-category-link {
        flex: 1 1 auto;
    }

    .social-banners {
        flex-direction: column;
    }
}

/* スマートフォン (480px以下) */
@media (max-width: 480px) {
    .award-group {
        padding: 22px 20px;
    }

    .award-group-list li {
        font-size: 14px;
    }

    .product-category-image {
        height: 180px;
    }

    .hero {
        height: 500px;
    }

    .hero-text {
        gap: 8px;
    }

    .hero-catch {
        font-size: 20px;
        line-height: 1.5;
    }

    .hero-lead,
    .hero-sublead {
        font-size: 14px;
    }

    .hero-award-badge {
        padding: 0;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-award-badge img {
        height: 60px;
    }

    .hero-actions {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .hero-action-btn {
        padding: 10px 16px;
        font-size: 12px;
        width: auto;
        max-width: 100%;
    }

    .animal-icon img {
        width: 20px;
        height: 20px;
    }

    .hero-reservation {
        bottom: 130px;
        right: 15px;
        max-width: 200px;
        padding: 10px 12px;
    }

    .reservation-close {
        top: 5px;
        right: 5px;
        font-size: 20px;
    }

    .reservation-icon {
        font-size: 24px;
    }

    .reservation-title {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .reservation-subtitle {
        font-size: 10px;
    }

    .hero-bottom-nav {
        gap: 10px;
        padding: 10px 0;
    }

    .hero-bottom-nav .nav-item {
        min-width: 60px;
        padding: 6px;
        gap: 5px;
    }

    .hero-bottom-nav .nav-item i {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .hero-bottom-nav .nav-item span {
        font-size: 10px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .title-en {
        font-size: 20px;
    }

    .title-ja {
        font-size: 24px;
        padding-bottom: 15px;
    }

    .eat-shopping-section > .container {
        padding: 50px 0;
    }

    .news-section,
    .commitment-section,
    .products-section,
    .guide-section {
        padding: 50px 0;
    }

    .news-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .news-item {
        flex-direction: column;
        gap: 12px;
        padding: 18px 0;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .news-details {
        width: 100%;
    }

    .commitment-list {
        gap: 50px;
    }

    .commitment-image {
        height: 220px;
    }

    .commitment-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .commitment-text {
        font-size: 14px;
        line-height: 1.9;
    }

    .products-lead {
        font-size: 20px;
    }

    .products-sublead {
        font-size: 14px;
    }

    .product-category-card {
        padding: 20px;
    }

    .product-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-category-icon {
        width: 44px;
        font-size: 18px;
    }

    .product-category-actions {
        flex-direction: column;
        gap: 10px;
    }

    .product-category-link {
        width: 100%;
    }

    .eat-shopping-banner {
        min-height: 200px;
    }

    .eat-shopping-title-ja {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .eat-shopping-title-en {
        font-size: 20px;
        letter-spacing: 0.15em;
    }

    .eat-shopping-lead {
        margin: 30px auto 40px;
        padding: 0 10px;
    }

    .eat-shopping-lead p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .eat-shopping-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .eat-shopping-item-image {
        height: 200px;
    }

    .eat-shopping-item-content {
        padding: 20px;
    }

    .eat-shopping-item-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .eat-shopping-item-description {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .guide-map iframe {
        height: 300px;
    }

    .info-table th,
    .info-table td {
        padding: 15px;
        font-size: 14px;
    }

    .info-table th {
        width: 150px;
        font-size: 16px;
    }

    .info-table th i {
        font-size: 18px;
        margin-right: 8px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

