/*
Theme Name: Twenty Twenty-Four Child
Description: Twenty Twenty-Four Child Theme
Author: Your Name
Template: twentytwentyfour
Version: 1.0.0
*/

/* 親テーマのスタイルを読み込み */
@import url("../twentytwentyfour/style.css");

/* 見出し要素のリセット */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* 段落のリセット */
p {
  margin: 0;
  padding: 0;
}

/* リストのリセット */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* リンクのリセット */
a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ボタンのリセット */
button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

/* 入力フィールドのリセット */
input, textarea, select {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
}

/* 画像のリセット */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* テーブルのリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム要素のリセット */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* ブロック要素のボックスサイジング統一 */
* {
  box-sizing: border-box;
}

/* ここにカスタムCSSを追加 */

/* ヘッダーとナビゲーション */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
} .home .site-header {
    position: absolute;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
}

.site-header.scrolled {
    /* background: rgba(255, 255, 255, 0.98); */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15); */
}

.header-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px 0 0 ;
    min-height: 120px;
    color: white;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding img {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 240px;
    height: auto;
}@media (max-width: 768px) {
  .site-branding img {
    left: 15px;
    width: 120px;
  }
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #007cba;
}

.site-description {
    margin: 0 0 0 15px;
    font-size: 0.9rem;
    color: #666;
}

/* ナビゲーションメニュー */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
} .home .nav-menu a {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
}

.nav-menu a:hover {
    color: #ccc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #007cba;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* サブメニュー */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1001;
}

.nav-menu li:hover .sub-menu {
    display: block;
}

.nav-menu .sub-menu li {
    display: block;
    margin: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu .sub-menu a:last-child {
    border-bottom: none;
}

/* モバイルメニューボタン */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1002;
}

.menu-toggle-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-toggle-icon {
    background: transparent;
}

.menu-toggle.active .menu-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .menu-toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* モバイルメニュー */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 80px 20px 20px;
}

.mobile-menu.active {
    display: block;
    min-height: 100vh;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #007cba;
}

.mobile-nav-menu .sub-menu {
    display: none;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 10px 0;
    margin-top: 10px;
}

.mobile-nav-menu li:hover .sub-menu {
    display: block;
}

.mobile-nav-menu .sub-menu a {
    padding: 10px 0;
    border-bottom: none;
    font-size: 1rem;
}

/* フッター */
.site-footer {
    background: #2a2a2a;
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-navigation {
    flex: 1;
}

.footer-navigation .nav-menu {
    justify-content: center;
    gap: 20px;
}

.footer-navigation .nav-menu a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-navigation .nav-menu a:hover {
    opacity: 1;
    color: white;
}

.footer-navigation .nav-menu a::after {
    display: none;
}

.site-info {
    text-align: center;
    opacity: 0.7;
}

.site-info p {
    margin: 0;
    font-size: 0.9rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-navigation .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .header-content {
        /* padding: 10px 0; */
        padding-right: 0;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .site-description {
        display: none;
    }
    
    .footer-navigation .nav-menu {
        gap: 8px;
    }
    
    .footer-navigation .nav-menu a {
        font-size: 0.9rem;
    }
}

/* メインコンテンツの調整 */
.site-content {
    /* margin-top: 80px; */
}

/* ヒーローセクションの調整 */
.hero-section {
    /* margin-top: -80px; */
    /* padding-top: 80px; */
}
.hero-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-title img{
  width: 80%;
  max-width: 500px;
}

/* メニューが開いている時のbodyスタイル */
body.menu-open {
    overflow: hidden;
}

/* ヘッダー */
.home #header{
    position: absolute;
    top: 0;
    z-index: 2;
}
#headerimg{
    box-shadow: 0 4px rgba(0, 0, 0, 0.15);
    background: white;
}
#headerimg h1{
    margin: 0;
    padding: 0;
}
#headerimg img{
    max-height: 120px;
    background: white;
}
/* フッター */
.footer_area{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    background: #2a2a2a;
}.footer_area p{
    color: white;
}


/* .hero-section{
    position: relative;
} */

/* トップページ スタイル */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* お知らせスライダーセクション */
.news-slider-section {
    margin: 40px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
}

.slick-initialized .slick-slide{
    display: flex!important;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 2px;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.news-more-link {
    text-align: center;
    margin-top: 30px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 124, 186, 0.3);
}

.btn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 124, 186, 0.4);
    color: white;
    text-decoration: none;
}

.btn-more .arrow {
    transition: transform 0.3s ease;
}

.btn-more:hover .arrow {
    transform: translateX(4px);
}

/* 投稿一覧セクション */
.posts-section {
    margin: 60px 0;
}

.posts-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
}

.posts-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 2px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-item-image {
    position: relative;
    overflow: hidden;
}

.post-item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-item:hover .post-item-image img {
    transform: scale(1.05);
}

.no-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-thumbnail-text {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.post-item-content {
    padding: 20px;
}

.post-item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.post-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.post-category {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-item-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.post-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-item-title a:hover {
    color: #007cba;
}

.post-item-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-item-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-item-link:hover {
    color: #005a87;
    text-decoration: none;
}

.post-item-link .arrow {
    transition: transform 0.3s ease;
}

.post-item-link:hover .arrow {
    transform: translateX(3px);
}

/* ページネーション */
.posts-pagination {
    text-align: center;
    margin-top: 40px;
}

.posts-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.posts-pagination .page-numbers:hover,
.posts-pagination .page-numbers.current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

/* メインコンテンツエリア */
.main-content {
    margin: 40px 0;
    padding: 40px 0;
}

/* パララックスメインコンテンツエリア */
.main-content-parallax {
    position: relative;
    /* min-height: 120vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 80px 0;
    /* background-image: url('./images/tenpo_image.jpg'); 削除 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; iOSでサポートされていないため削除 */
    /* フォールバック用の背景色 */
    background-color: #2a2a2a;
}

/* iOS対応パララックス背景 */
/* .main-content-parallax::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('./images/tenpo_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

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

.parallax-background img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

/* オーバーレイを固定位置に変更 */
.parallax-background::after {
    /* content: ''; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.parallax-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content-article {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.entry-header {
    margin-bottom: 40px;
}

.entry-title {
  font-family: "Noto Sans JP", sans-serif;
    /* font-size: clamp(2.5rem, 5vw, 4rem); */
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: 0.05em;
    position: relative;
}

.entry-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #b85c38, #d2691e);
    border-radius: 1px;
}

.entry-subtitle {
  padding-top: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.entry-content {
    text-align: left;
}

.main-content-image {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-content-image:hover img {
    transform: scale(1.02);
}

.main-content-text {
    font-family: "Noto Serif JP", serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.main-content-text p {
    margin-bottom: 1.5em;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.main-content-text p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .main-content-parallax {
        /* min-height: 100vh; */
        padding: 60px 0;
        /* モバイルではパララックス効果を無効化 */
        background-attachment: scroll;
    }
    
    .main-content-article {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .entry-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .entry-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .main-content-text {
        font-size: 1rem;
        text-align: left;
    }
    
    /* 営業時間ブロックのモバイル対応 */
    .restaurant-hours-block {
        min-height: 50vh;
        padding: 60px 0;
        /* モバイルではパララックス効果を無効化 */
        background-attachment: scroll;
    }
    
    /* モバイルでは背景画像の高さを100%に変更 */
    .parallax-background img,
    .restaurant-hours-background img {
        height: 100%;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .main-content-parallax {
        /* min-height: 70vh; */
        padding: 40px 0;
    }
    
    .main-content-article {
        padding: 30px 15px;
        border-radius: 16px;
    }
    
    .entry-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 15px;
    }
    
    .entry-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
    
    .main-content-text {
        font-size: 0.95rem;
    }
    
    /* 小さいスマホでも背景画像の高さを100%に変更 */
    .parallax-background img,
    .restaurant-hours-background img {
        height: 100%;
        transform: scale(1);
    }
}

/* パララックス効果のアニメーション */
@media (prefers-reduced-motion: no-preference) {
    .parallax-background {
        transform: translateZ(0);
        will-change: transform;
    }
    
    .parallax-background img {
        animation: subtle-float 20s ease-in-out infinite;
    }
}

@keyframes subtle-float {
    0%, 100% {
        transform: scale(1.15) translateY(0);
    }
    50% {
        transform: scale(1.15) translateY(-10px);
    }
}

/* スクロール時のパララックス効果 */
@media (min-width: 769px) {
    .parallax-background {
        transform: translateY(0);
        transition: transform 0.1s ease-out;
    }
    
    .parallax-background.scrolled {
        transform: translateY(-10px);
    }
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h2 {
    font-size: 24px;
    color: #666;
    margin-bottom: 15px;
}

.no-posts p {
    color: #999;
    font-size: 16px;
}

/* お知らせアーカイブページ スタイル */
.archive-header {
    text-align: center;
    margin: 40px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
}

.archive-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    position: relative;
}

.archive-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #007cba, #005a87);
    border-radius: 2px;
}

.archive-description p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.news-archive-content {
    margin: 40px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-item-image {
    position: relative;
    overflow: hidden;
}

.news-item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-item-image img {
    transform: scale(1.05);
}

.news-item-tags {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-item-content {
    padding: 20px;
}

.news-item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.news-item-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.news-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item-title a:hover {
    color: #007cba;
}

.news-item-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-item-link:hover {
    color: #005a87;
    text-decoration: none;
}

.news-item-link .arrow {
    transition: transform 0.3s ease;
}

.news-item-link:hover .arrow {
    transform: translateX(3px);
}

/* ページネーション */
.news-pagination {
    text-align: center;
    margin-top: 40px;
}

.news-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.no-news {
    text-align: center;
    padding: 60px 20px;
}

.no-news h2 {
    font-size: 24px;
    color: #666;
    margin-bottom: 15px;
}

.no-news p {
    color: #999;
    font-size: 16px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .news-slider-section {
        margin: 30px 0;
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .posts-section {
        margin: 40px 0;
    }
    
    .posts-section-title {
        font-size: 24px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-item-content {
        padding: 15px;
    }
    
    .post-item-title {
        font-size: 16px;
    }
    
    .main-content {
        margin: 30px 0;
        padding: 30px 0;
    }
    
    .entry-title {
        font-size: 22px;
    }
    
    .archive-header {
        margin: 30px 0;
        padding: 30px 0;
    }
    
    .archive-title {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-item-content {
        padding: 15px;
    }
    
    .news-item-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .news-slider-section {
        margin: 20px 0;
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .btn-more {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .posts-section {
        margin: 30px 0;
    }
    
    .posts-section-title {
        font-size: 20px;
    }
    
    .post-item-content {
        padding: 12px;
    }
    
    .post-item-title {
        font-size: 15px;
    }
    
    .main-content {
        margin: 20px 0;
        padding: 20px 0;
    }
    
    .entry-title {
        font-size: 18px;
    }
    
    .archive-header {
        margin: 20px 0;
        padding: 20px 0;
    }
    
    .archive-title {
        font-size: 24px;
    }
    
    .news-item-content {
        padding: 12px;
    }
    
    .news-item-title {
        font-size: 15px;
    }
}

/* お知らせ詳細ページ */
.news-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.news-single .entry-header {
    margin-bottom: 30px;
    /* text-align: center; */
}

.news-single .news-meta {
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.news-single .news-date {
    width: fit-content;
    background: #666666;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.news-single .news-category {
    background: #007cba;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.news-single .entry-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.3;
}

.news-single .news-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.news-single .news-tag {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-single .new-tag {
    background: #ff6b6b;
    color: white;
}

.news-single .limited-tag {
    background: #ffa726;
    color: white;
}

.news-single .news-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-single .news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-single .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.news-single .entry-content h2,
.news-single .entry-content h3,
.news-single .entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.news-single .entry-content h2 {
    font-size: 24px;
}

.news-single .entry-content h3 {
    font-size: 20px;
}

.news-single .entry-content h4 {
    font-size: 18px;
}

.news-single .entry-content p {
    margin-bottom: 20px;
}

.news-single .entry-content ul,
.news-single .entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.news-single .entry-content li {
    margin-bottom: 8px;
}

.news-single .entry-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid #007cba;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.news-single .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-single .entry-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.news-single .news-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.news-single .nav-previous,
.news-single .nav-next {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.news-single .nav-previous:hover,
.news-single .nav-next:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-single .nav-previous a,
.news-single .nav-next a {
    display: block;
    text-decoration: none;
    color: #333;
}

.news-single .nav-subtitle {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.news-single .nav-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.news-single .news-back-link {
    text-align: center;
}

.news-single .back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-single .back-to-news:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 186, 0.3);
    color: white;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-single {
        padding: 20px 15px;
    }
    
    .news-single .entry-title {
        font-size: 24px;
    }
    
    .news-single .news-meta {
        /* flex-direction: column; */
        gap: 10px;
    }
    
    .news-single .news-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-single .nav-previous,
    .news-single .nav-next {
        padding: 15px;
    }
    
    .news-single .nav-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .news-single .entry-title {

        font-size: 20px;
    }
    
    .news-single .entry-content {

        font-size: 15px;
    }
    
    .news-single .news-featured-image {
        margin-bottom: 20px;
    }
    
    .news-single .entry-footer {
        margin-top: 30px;
        padding-top: 20px;
    }
}

/* モバイル最適化 */
@media (max-width: 480px) {
    .news-single .entry-title {
        font-size: 20px;
    }
    
    .news-single .entry-content {
        font-size: 15px;
    }
    
    .news-single .news-featured-image {
        margin-bottom: 20px;
    }
    
    .news-single .entry-footer {
        margin-top: 30px;
        padding-top: 20px;
    }
}

/* タッチデバイス最適化 */
@media (hover: none) and (pointer: coarse) {
    /* タッチデバイスでのホバー効果を無効化 */
    .post-item:hover,
    .news-item:hover,
    .news-single .nav-previous:hover,
    .news-single .nav-next:hover,
    .btn-more:hover,
    .back-to-news:hover {
        transform: none;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* タッチデバイスでのボタンサイズ最適化 */
    .btn-more,
    .back-to-news,
    .news-single .back-to-news {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 16px;
    }
    
    /* タッチデバイスでのナビゲーション最適化 */
    .news-single .nav-previous,
    .news-single .nav-next {
        min-height: 60px;
        padding: 20px;
    }
    
    /* タッチデバイスでのスライダー最適化 */
    .news-slider .slick-slide {
        padding: 0 5px;
    }
    
    /* タッチデバイスでのグリッド最適化 */
    .posts-grid,
    .news-grid {
        gap: 15px;
    }
    
    .post-item,
    .news-item {
        margin-bottom: 15px;
    }
}

/* 高解像度ディスプレイ対応 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .news-single .news-featured-image img,
    .post-item-image img,
    .news-item-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ダークモード対応 */
/* @media (prefers-color-scheme: dark) { */
@media (prefers-color-scheme: darkxxxxxxxx) {

    body{
        background: #1a1a1a;
    }
    .news-single {
        background: #1a1a1a;
        color: #ffffff;
    }
    
    .news-single .entry-title {
        color: #ffffff;
    }
    
    .news-single .entry-content {
        color: #e0e0e0;
    }
    
    .news-single .nav-previous,
    .news-single .nav-next {
        background: #2a2a2a;
        color: #ffffff;
    }
    
    .news-single .nav-previous:hover,
    .news-single .nav-next:hover {
        background: #3a3a3a;
    }
}

/* アクセシビリティ向上 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .post-item:hover,
    .news-item:hover,
    .btn-more:hover,
    .back-to-news:hover {
        transform: none;
    }
}

/* フォーカス表示の改善 */
.btn-more:focus,
.back-to-news:focus,
.news-single .back-to-news:focus,
.post-item-title a:focus,
.news-item-title a:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* 印刷対応 */
@media print {
    .news-slider-section,
    .news-navigation,
    .news-back-link,
    .btn-more {
        display: none !important;
    }
    
    .news-single {
        max-width: none;
        padding: 0;
    }
    
    .news-single .entry-title {
        font-size: 18pt;
        color: #000;
    }
    
    .news-single .entry-content {
        font-size: 12pt;
        color: #000;
    }
}

/* 固定ページ */
.page-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.page-article .entry-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-article .entry-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.page-article .page-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-article .page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-article .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.page-article .entry-content h2,
.page-article .entry-content h3,
.page-article .entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.page-article .entry-content h2 {
    font-size: 24px;
}

.page-article .entry-content h3 {
    font-size: 20px;
}

.page-article .entry-content h4 {
    font-size: 18px;
}

.page-article .entry-content p {
    margin-bottom: 20px;
}

.page-article .entry-content ul,
.page-article .entry-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-article .entry-content li {
    margin-bottom: 8px;
}

.page-article .entry-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid #007cba;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.page-article .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.page-article .entry-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.page-article .edit-link {
    display: inline-block;
    padding: 10px 20px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.page-article .edit-link:hover {
    background: #005a87;
    color: white;
    text-decoration: none;
}

.page-links {
    margin: 30px 0;
    text-align: center;
}

.page-links a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.page-links a:hover {
    background: #007cba;
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-article {
        padding: 20px 0;
    }
    
    .page-article .entry-title {
        font-size: 24px;
    }
    
    .page-article .entry-content {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-article .entry-title {
        font-size: 20px;
    }
    
    .page-article .entry-content {
        font-size: 14px;
    }
    
    .page-article .page-featured-image {
        margin-bottom: 20px;
    }
}

/* --- アラカルトメニュー一覧・詳細ページ用スタイル --- */
.a-la-carte-archive {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem 1rem;
  background: #fff;
}
.a-la-carte-archive-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
  color: #222;
}
.a-la-carte-category-block {
  margin-bottom: 3.5rem;
  border-radius: 1.2rem;
  background: #f8f8f8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.a-la-carte-category-header {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1.2rem 1.2rem 0 0;
  min-height: 120px;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
}
.a-la-carte-category-image {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-la-carte-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.a-la-carte-category-image:empty::before {
  content: '\f128';
  font-family: 'dashicons';
  font-size: 2.5rem;
  color: #bbb;
  display: block;
  text-align: center;
  line-height: 90px;
}
.a-la-carte-category-info {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}
.a-la-carte-category-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.2em 0;
  color: #333;
}
.a-la-carte-category-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.2em;
}
.a-la-carte-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.a-la-carte-menu-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.2s;
  position: relative;
  width: 100%;
  max-width: 340px;
  min-width: 260px;
  margin-bottom: 1.5rem;
}
.a-la-carte-menu-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.a-la-carte-menu-card.no-image .a-la-carte-menu-image {
  background: #ececec;
  min-height: 120px;
  color: #bbb;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-la-carte-menu-card.no-image .a-la-carte-menu-image::before {
  content: 'No Image';
  color: #bbb;
  font-size: 1em;
  font-weight: 500;
}
.a-la-carte-menu-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f3f3f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  max-height: 220px;
}
.a-la-carte-menu-image a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  transition: box-shadow 0.3s;
}
.a-la-carte-menu-image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.a-la-carte-menu-image a:hover img,
.a-la-carte-menu-card:hover .a-la-carte-menu-image a img {
  transform: scale(1.06);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  z-index: 2;
}
.a-la-carte-menu-content {
  padding: 1.1rem 1rem 1.2rem 1rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.a-la-carte-menu-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.3em 0;
  color: #222;
}
.a-la-carte-menu-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.a-la-carte-menu-title a:hover {
  color: #b85c38;
}
.a-la-carte-menu-desc {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 0.7em;
  min-height: 2.2em;
}
.a-la-carte-menu-meta {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 0.5em;
}
.menu-label {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 700;
  border-radius: 0.7em;
  padding: 0.18em 0.9em;
  margin-right: 0.2em;
  letter-spacing: 0.05em;
}
.menu-label.new {
  background: #e74c3c;
  color: #fff;
}
.menu-label.limited {
  background: #f7ca18;
  color: #7a5a00;
}
.a-la-carte-menu-small-item .menu-label {
  margin-right: 0.5em;
  font-size: 0.85em;
  padding: 0.15em 0.7em;
}
.a-la-carte-menu-desc.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.2em;
  max-height: 2.8em;
}
.no-menu {
  color: #aaa;
  font-size: 1rem;
  text-align: center;
  padding: 2em 0;
}

/* --- 詳細ページ --- */
.a-la-carte-single {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem 1rem;
  background: #fff;
}
.a-la-carte-single-card {
  background: #f8f8f8;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.a-la-carte-single-card.no-image .a-la-carte-single-image {
  background: #ececec;
  min-height: 180px;
  width: 100%;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-la-carte-single-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: #f3f3f3;
  border-radius: 0.7rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-la-carte-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.a-la-carte-single-content {
  width: 100%;
  text-align: left;
}
.a-la-carte-single-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #b85c38;
  text-align: center;
}
.a-la-carte-single-category {
  margin-bottom: 0.7em;
}
.menu-category {
  display: inline-block;
  background: #ececec;
  color: #7a5a00;
  font-size: 0.95em;
  border-radius: 0.7em;
  padding: 0.18em 0.9em;
  margin-right: 0.3em;
  font-weight: 600;
}
.a-la-carte-single-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.2em;
}
.a-la-carte-single-meta {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 0.5em;
}
@media (max-width: 900px) {
  .a-la-carte-menu-list {
    flex-direction: column;
    gap: 1.2rem;
  }
  .a-la-carte-menu-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .a-la-carte-archive, .a-la-carte-single {
    padding: 1.2rem 0.2rem 2rem 0.2rem;
  }
  .a-la-carte-category-header {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
  }
  .a-la-carte-category-image {
    width: 70px;
    height: 70px;
  }
  .a-la-carte-single-image {
    max-width: 100%;
  }
}

/* --- アラカルトメニュー 大サイズ --- */
.a-la-carte-menu-large {
  display: flex;
  align-items: flex-start;
  background: #fffbe9;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 2.2rem;
  overflow: hidden;
  min-height: 200px;
}
.a-la-carte-menu-large-image {
  flex: 0 0 220px;
  width: 220px;
  height: 180px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.a-la-carte-menu-large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.menu-ribbon {
  position: absolute;
  top: 14px;
  left: -30px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.95em;
  font-weight: 700;
  padding: 0.3em 2.2em;
  transform: rotate(-25deg);
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
  letter-spacing: 0.08em;
}
.menu-ribbon.limited {
  background: #f7ca18;
  color: #7a5a00;
}
.a-la-carte-menu-large-content {
  flex: 1 1 auto;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.a-la-carte-menu-large-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5em 0;
  color: #b85c38;
}
.a-la-carte-menu-large-title a {
  color: inherit;
  text-decoration: none;
}
.a-la-carte-menu-large-desc {
  font-size: 1.08rem;
  color: #555;
  margin-bottom: 0.7em;
}
.a-la-carte-menu-large-price {
  font-size: 1.15em;
  font-weight: 700;
  color: #b85c38;
  margin-top: 0.5em;
}

/* --- アラカルトメニュー 小サイズ --- */
.a-la-carte-menu-small-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 1.5em 0 0.5em 0;
  background: #fff;
  border-radius: 0.7em;
  padding: 1.2em 1em;
  width: 100%;
  box-sizing: border-box;
}
.a-la-carte-menu-small-item {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  word-break: break-all;
  border-bottom: 1px solid #eee;
  padding: 0.7em 0;
}
.a-la-carte-menu-small-item:last-child {
  border-bottom: none;
}
.a-la-carte-menu-small-title {
  flex: 0 1 auto;
  margin-right: 0.5em;
  white-space: normal;
}
.a-la-carte-menu-small-dot {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  margin: 0 0.5em;
  height: 1.2em;
}
.a-la-carte-menu-small-dot::before {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 1.5px dotted #bbb;
  height: 0.9em;
  position: relative;
  top: 0.2em;
}
.a-la-carte-menu-small-price {
  flex-shrink: 0;
  margin-left: 0.5em;
  font-weight: 700;
  color: #b85c38;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .a-la-carte-menu-small-list {
    grid-template-columns: 1fr;
    padding: 0.7em 0.3em;
  }
  .a-la-carte-menu-small-item {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 0.7em 0;
  }
  .a-la-carte-menu-small-dot {
    display: none;
  }
  .a-la-carte-menu-small-price {
    align-self: flex-end;
    margin-left: 0;
    margin-top: 0.2em;
  }
}

.a-la-carte-category-en {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #b85c38;
  line-height: 1.1;
  margin-bottom: 0.1em;
  text-transform: uppercase;
}

/* --- コースアーカイブページ用スタイル --- */
.course-section-view {
  margin-bottom: 1.5em;
  padding: 0;
}
.course-section-header {
  margin-bottom: 0.8em;
  text-align: center;
}
.course-section-en {
  display: block;
  font-size: 0.75em;
  font-weight: 700;
  color: #b85c38;
  text-align: center;
  margin-bottom: 0.4em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.course-section-ja {
  display: block;
  font-size: 1.05em;
  font-weight: 500;
  color: #222;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
.course-section-note {
  font-size: 0.9em;
  color: #d2691e;
  text-align: center;
  margin-bottom: 0.8em;
  font-style: italic;
}
@media (max-width: 600px) {
  .course-section-en {
    font-size: 0.7em;
  }
  .course-section-ja {
    font-size: 1em;
  }
  .course-section-note {
    font-size: 0.85em;
  }
}

/* --- コース紹介ページ --- */
.course-section-bg {
  width: 100vw;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0 80px 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.course-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.course-section-title {
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.08em;
  color: #b85c38;
}
.course-card-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.course-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s, transform 0.2s;
}
.course-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.02);
}
.course-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.course-card:hover .course-card-image img {
  transform: scale(1.06);
}
.course-card-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.course-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b85c38;
  margin: 0 0 0.5em 0;
  text-align: center;
}
.course-card-price {
  font-size: 1.15em;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.7em;
  text-align: center;
}
.course-card-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.2em;
  text-align: center;
}
.course-card-menu-list {
  list-style: none;
  margin: 1.8em 0 0 0;
  padding: 0;
  color: #2c2c2c;
  font-size: 0.95rem;
  line-height: 1.9;
  text-align: center;
  font-family: "Noto Serif JP", "Times New Roman", serif;
}
.course-card-menu-list li {
  margin-bottom: 1.5em;
  padding: 0;
  position: relative;
  border-bottom: 1px solid rgba(184,92,56,0.15);
  padding-bottom: 1.2em;
}
.course-card-menu-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.course-card-menu-list .menu-section {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
  color: #b85c38;
  text-align: center;
  margin-bottom: 0.6em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: "Noto Sans", "Arial", sans-serif;
  position: relative;
}
.course-card-menu-list .menu-section:after {
  content: '';
  position: absolute;
  bottom: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: #b85c38;
  opacity: 0.6;
}
.course-card-menu-list .menu-item {
  display: block;
  font-size: 1.08em;
  font-weight: 400;
  color: #2c2c2c;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  font-family: "Noto Serif JP", "Times New Roman", serif;
  letter-spacing: 0.02em;
}
.course-card-menu-list .menu-item:before {
  content: '';
  display: none;
}
@media (max-width: 600px) {
  .course-card-menu-list {
    font-size: 0.9rem;
    margin: 1.5em 0 0 0;
  }
  .course-card-menu-list .menu-section {
    font-size: 0.65em;
  }
  .course-card-menu-list .menu-item {
    font-size: 1.02em;
  }
}
@media (max-width: 900px) {
  .course-card-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .course-card {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .course-section-bg {
    padding: 30px 0 40px 0;
  }
  .course-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .course-card-content {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

/* --- コース詳細ページ --- */
.course-single {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem 1rem;
  background: #fff;
}
.course-single-card {
  background: #f8f8f8;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.course-single-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16/9;
  background: #f3f3f3;
  border-radius: 0.7rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.course-single-content {
  width: 100%;
  text-align: left;
}
.course-single-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #b85c38;
  text-align: center;
}
.course-single-price {
  font-size: 1.15em;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.7em;
  text-align: center;
}
.course-single-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.2em;
  text-align: center;
}
.course-single-menu-list {
  list-style: disc inside;
  margin: 0 0 0 0.5em;
  padding: 0;
  color: #555;
  font-size: 1.02rem;
}
.course-single-menu-list li {
  margin-bottom: 0.3em;
  padding-left: 0.2em;
}
@media (max-width: 600px) {
  .course-single {
    padding: 1.2rem 0.2rem 2rem 0.2rem;
  }
  .course-single-image {
    max-width: 100%;
  }
}

/* --- 営業時間ブロック --- */
.restaurant-hours-block {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 80px 0;
  /* background-image: url('./images/tenpo_image_02.jpg'); 削除 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; iOSでサポートされていないため削除 */
  /* フォールバック用の背景色 */
  background-color: #2a2a2a;
}

/* iOS対応パララックス背景 - 削除 */
/* .restaurant-hours-block::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('./images/tenpo_image_02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.restaurant-hours-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.restaurant-hours-background img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

.restaurant-hours-background::before {
  /* content: ''; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

.restaurant-hours-inner {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(184,92,56,0.07);
  padding: 36px 24px 28px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.restaurant-hours-title {
  font-size: 2rem;
  font-weight: 800;
  color: #b85c38;
  margin-bottom: 1.2em;
  letter-spacing: 0.08em;
}

.restaurant-hours-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  /* margin: 0 0 1.2em 0; */
  padding: 0;
}

.restaurant-hours-label {
  font-weight: 700;
  color: #b85c38;
  font-size: 1.08em;
  margin-bottom: 0.2em;
}

.restaurant-hours-value {
  font-size: 1.15em;
  color: #333;
  margin-bottom: 0.5em;
  min-width: 120px;
}

.restaurant-hours-list dt {
  width: 100%;
  text-align: center;
}

.restaurant-hours-list dd {
  width: 100%;
  text-align: center;
  margin: 0 0 1em 0;
}

.restaurant-hours-note {
  font-size: 0.98em;
  color: #d2691e;
  margin-top: 1.2em;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .restaurant-hours-inner {
    padding: 18px 6px 16px 6px;
  }
  .restaurant-hours-title {
    font-size: 1.3rem;
  }
  .restaurant-hours-list {
    /* gap: 1.2em 0.5em; */
  }
  .restaurant-hours-label, .restaurant-hours-value {
    font-size: 1em;
  }
  
  /* モバイルでは背景画像の高さを100%に変更 */
  .restaurant-hours-background img {
    height: 100%;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .restaurant-hours-inner {
    padding: 18px 6px 16px 6px;
  }
  .restaurant-hours-title {
    font-size: 1.3rem;
  }
  .restaurant-hours-list {
    /* gap: 1.2em 0.5em; */
  }
  .restaurant-hours-label, .restaurant-hours-value {
    font-size: 1em;
  }
  
  /* モバイルでは背景画像の高さを100%に変更 */
  .restaurant-hours-background img {
    height: 100%;
    transform: scale(1);
  }
}

/* --- Google Map（都庁）ブロック（上部情報外出し用） --- */
.restaurant-map-block {
  padding: 0;
  margin: 0;
  margin-top: 40px;
  width: 100vw;
  min-height: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /* background: #111; */
  overflow: hidden;
  z-index: 1;
}
.restaurant-map-info.restaurant-map-info-outside {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  background: #fff;
  color: #222;
  border-radius: 14px 14px 0 0;
  padding: 28px 32px 18px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 2;
  min-width: 260px;
  /* max-width: 800px; */
  margin: 0 auto 0 auto;
  text-align: center;
  margin-bottom: 0;
}
.restaurant-map-frame-wrap {
  margin: 0;
  width: 100vw;
  min-height: 220px;
  height: 36vw;
  max-height: 320px;
  position: relative;
  z-index: 1;
}
.restaurant-map-frame {
  width: 100vw;
  min-height: 220px;
  height: 36vw;
  max-height: 320px;
  filter: grayscale(1) contrast(1.1) brightness(0.95);
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}
.restaurant-map-title {
  font-size: 2rem;
  font-weight: 800;
  color: #b85c38;
  margin-bottom: 1.2em;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .restaurant-map-info.restaurant-map-info-outside {
    padding: 14px 8px 10px 8px;
    font-size: 0.98em;
    min-width: 0;
    max-width: 98vw;
  }
  .restaurant-map-frame-wrap, .restaurant-map-frame {
    min-height: 140px;
    height: 48vw;
    max-height: 220px;
  }
  .restaurant-map-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .restaurant-map-info.restaurant-map-info-outside {
    padding: 8px 4px 6px 4px;
    font-size: 0.92em;
  }
  .restaurant-map-frame-wrap, .restaurant-map-frame {
    min-height: 100px;
    height: 60vw;
    max-height: 140px;
  }
}

/* --- コースカード内の詳細ボタン --- */
.course-card-link {
  text-align: center;
  margin-top: 1.2em;
}
.course-card-link .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #b85c38, #a0522d);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(184,92,56,0.3);
}
.course-card-link .btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,92,56,0.4);
  color: white;
  text-decoration: none;
}
.course-card-link .btn-more .arrow {
  transition: transform 0.3s ease;
}
.course-card-link .btn-more:hover .arrow {
  transform: translateX(4px);
}
.no-course {
  text-align: center;
  color: #999;
  font-size: 1rem;
  padding: 2em 0;
}
@media (max-width: 600px) {
  .course-card-link .btn-more {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* --- Instagram ギャラリーセクション --- */
.instagram-gallery-section {
  width: 100vw;
  background: #f8f8f8;
  padding: 60px 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.common-header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.common-title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  letter-spacing: 0.05em;
}

.common-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.instagram-gallery-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.instagram-gallery-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  letter-spacing: 0.05em;
}

.instagram-gallery-subtitle {
  font-family: "Noto Serif JP", serif!important;
  font-size: 12px!important;
  font-weight: 400;
  color: #666;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.instagram-gallery-track {
  display: flex;
  animation: instagram-scroll 30s linear infinite;
  width: max-content;
}

.instagram-item {
  flex: 0 0 300px;
  height: 300px;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.instagram-icon {
  color: white;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

@keyframes instagram-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .instagram-gallery-section {
    padding: 40px 0;
  }
  
  .instagram-gallery-title {
    font-size: 2rem;
  }
  
  .instagram-gallery-subtitle {
    font-size: 1rem;
  }
  
  .instagram-item {
    flex: 0 0 250px;
    height: 250px;
    margin-right: 15px;
  }
  
  .instagram-gallery-track {
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .instagram-gallery-section {
    padding: 30px 0;
  }
  
  .instagram-gallery-title {
    font-size: 1.8rem;
  }
  
  .instagram-gallery-subtitle {
    font-size: 0.9rem;
  }
  
  .instagram-item {
    flex: 0 0 200px;
    height: 200px;
    margin-right: 10px;
  }
  
  .instagram-gallery-track {
    animation-duration: 20s;
  }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .instagram-gallery-track {
    animation: none;
  }
  
  .instagram-item:hover {
    transform: none;
  }
  
  .instagram-item:hover img {
    transform: none;
  }
} 

@media (max-width: 600px) {
  .restaurant-hours-block {
    min-height: 50vh;
    padding: 60px 0;
  }
  
  .restaurant-hours-inner {
    padding: 18px 6px 16px 6px;
    margin: 0 10px;
  }
  
  .restaurant-hours-title {
    font-size: 1.3rem;
  }
  
  .restaurant-hours-list {
    /* gap: 1.2em 0.5em; */
  }
  
  .restaurant-hours-label, .restaurant-hours-value {
    font-size: 1em;
  }
  
  /* モバイルでは背景画像の高さを100%に変更 */
  .restaurant-hours-background img {
    height: 100%;
    transform: scale(1);
  }
}

/* パララックス効果のアニメーション */
@media (prefers-reduced-motion: no-preference) {
    .restaurant-hours-background {
        transform: translateZ(0);
        will-change: transform;
    }
    
    .restaurant-hours-background img {
        animation: subtle-float-hours 20s ease-in-out infinite;
    }
}

@keyframes subtle-float-hours {
    0%, 100% {
        transform: scale(1.15) translateY(0);
    }
    50% {
        transform: scale(1.15) translateY(-10px);
    }
}

/* スクロール時のパララックス効果 */
@media (min-width: 769px) {
    .restaurant-hours-background {
        transform: translateY(0);
        transition: transform 0.1s ease-out;
    }
    
    .restaurant-hours-background.scrolled {
        transform: translateY(-10px);
    }
}

/* --- 404エラーページ --- */
.error-404-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
}

.error-404-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.error-404-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.error-404-number {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 300;
  color: #b85c38;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.error-404-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.error-404-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.error-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
  justify-content: center;
}

.error-404-btn.primary {
  background: linear-gradient(135deg, #b85c38, #a0522d);
  color: white;
  box-shadow: 0 4px 15px rgba(184, 92, 56, 0.3);
}

.error-404-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 92, 56, 0.4);
  color: white;
}

.error-404-btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.error-404-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: #b85c38;
  color: #b85c38;
}

.btn-icon {
  font-size: 16px;
}

.error-404-search {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.error-404-search h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  margin: 0 0 20px 0;
}

.error-404-search .search-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 10px;
}

.error-404-search .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease;
}

.error-404-search .search-field:focus {
  outline: none;
  border-color: #b85c38;
}

.error-404-search .search-submit {
  padding: 12px 20px;
  background: #b85c38;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404-search .search-submit:hover {
  background: #a0522d;
  transform: translateY(-1px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .error-404-page {
    padding: 40px 15px;
  }
  
  .error-404-content {
    padding: 40px 20px;
  }
  
  .error-404-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .error-404-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .error-404-search .search-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .error-404-search .search-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .error-404-content {
    padding: 30px 15px;
  }
  
  .error-404-description {
    font-size: 1rem;
  }
  
  .error-404-search h3 {
    font-size: 1.1rem;
  }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .error-404-btn:hover {
    transform: none;
  }
  
  .error-404-search .search-submit:hover {
    transform: none;
  }
}

/* --- 検索結果ページ --- */
.search-results-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  min-height: 80vh;
}

.search-results-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-results-header {
  text-align: center;
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-results-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.search-results-count {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin: 0 0 30px 0;
}

.search-form-container {
  max-width: 500px;
  margin: 0 auto;
}

.search-form-container .search-form {
  display: flex;
  gap: 10px;
}

.search-form-container .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease;
}

.search-form-container .search-field:focus {
  outline: none;
  border-color: #b85c38;
}

.search-form-container .search-submit {
  padding: 12px 20px;
  background: #b85c38;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-form-container .search-submit:hover {
  background: #a0522d;
  transform: translateY(-1px);
}

/* 検索結果グリッド */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.search-result-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.search-result-image {
  position: relative;
  overflow: hidden;
}

.search-result-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.search-result-item:hover .search-result-image img {
  transform: scale(1.05);
}

.search-result-content {
  padding: 20px;
}

.search-result-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.search-result-type {
  background: #b85c38;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.search-result-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.search-result-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.search-result-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-result-title a:hover {
  color: #b85c38;
}

.search-result-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b85c38;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-result-link:hover {
  color: #a0522d;
  text-decoration: none;
}

.search-result-link .arrow {
  transition: transform 0.3s ease;
}

.search-result-link:hover .arrow {
  transform: translateX(3px);
}

/* ページネーション */
.search-pagination {
  text-align: center;
  margin-top: 40px;
}

.search-pagination .pagination-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.search-pagination .page-numbers {
  display: inline-block;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
  background: #b85c38;
  color: white;
  border-color: #b85c38;
}

/* 検索結果なし */
.search-no-results {
  text-align: center;
  padding: 60px 20px;
}

.search-no-results-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.search-no-results-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.search-no-results-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.search-no-results-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 40px 0;
}

.search-no-results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.search-no-results-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 140px;
  justify-content: center;
}

.search-no-results-btn.primary {
  background: linear-gradient(135deg, #b85c38, #a0522d);
  color: white;
  box-shadow: 0 4px 15px rgba(184, 92, 56, 0.3);
}

.search-no-results-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 92, 56, 0.4);
  color: white;
}

.search-no-results-btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-no-results-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: #b85c38;
  color: #b85c38;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .search-results-page {
    padding: 40px 0;
  }
  
  .search-results-header {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .search-results-title {
    font-size: 1.5rem;
  }
  
  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .search-result-content {
    padding: 15px;
  }
  
  .search-result-title {
    font-size: 16px;
  }
  
  .search-no-results-content {
    padding: 40px 20px;
  }
  
  .search-no-results-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .search-no-results-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .search-form-container .search-form {
    flex-direction: column;
    gap: 15px;
  }
  
  .search-form-container .search-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .search-results-header {
    padding: 20px 15px;
  }
  
  .search-results-title {
    font-size: 1.3rem;
  }
  
  .search-results-count {
    font-size: 1rem;
  }
  
  .search-result-content {
    padding: 12px;
  }
  
  .search-result-title {
    font-size: 15px;
  }
  
  .search-no-results-content {
    padding: 30px 15px;
  }
  
  .search-no-results-title {
    font-size: 1.4rem;
  }
  
  .search-no-results-description {
    font-size: 1rem;
  }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .search-result-item:hover {
    transform: none;
  }
  
  .search-result-link:hover .arrow {
    transform: none;
  }
  
  .search-no-results-btn:hover {
    transform: none;
  }
  
  .search-form-container .search-submit:hover {
    transform: none;
  }
}

/* オーバーレイを固定位置に変更 */
.restaurant-hours-background::after {
  /* content: ''; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* --- 店舗一覧（shop-card）用スタイル --- */
.shop-card-list, .shop-list {
  /* display: flex; flex-wrap: wrap; gap: 32px 24px; margin: 32px 0 0 0; justify-content: flex-start; 削除 */
}
.shop-card {
  /* width: calc(33.333% - 16px); min-width: 260px; max-width: 340px; 削除 */
  /* width: calc(50% - 12px); min-width: 180px; max-width: 100%; 削除 */
}
@media (max-width: 900px) {
  .shop-card-list, .shop-list {
    /* gap: 24px 12px; 削除 */
  }
  .shop-card {
    /* width: calc(50% - 12px); min-width: 180px; max-width: 100%; 削除 */
  }
}
@media (max-width: 600px) {
  .shop-card-list, .shop-list {
    /* flex-direction: column; gap: 18px 0; 削除 */
  }
  .shop-card {
    /* width: 100%; min-width: 0; max-width: 100%; 削除 */
  }
  .shop-card-content {
    padding: 14px 10px 10px 10px;
  }
}
.shop-info-table th{
  padding-right: 20px;
}
.shop-main-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-featured-image.shop-featured-image{
  display: flex;
  align-items: center;
  width: 100vw;
  overflow: hidden;
}@media (max-width: 900px) {
  .news-featured-image.shop-featured-image{
    height: 240px;
  }
}.news-featured-image.shop-featured-image img{
  width: 100%;
  height: fit-content;
  max-width: 100vw;
}@media (max-width: 900px) {
  .news-featured-image.shop-featured-image img{
    /* width: fit-content; */
    /* height: 100%; */
  }
}

html, body, #main, .site-main, .container {
  overflow-x: hidden !important;
}

/* --- 共通ユーティリティクラス（Tailwind風） --- */
.tw-font-bold { font-weight: bold; }
.tw-text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.tw-mb-1 { margin-bottom: 0.25rem; }
.tw-mb-2 { margin-bottom: 0.5rem; }
.tw-mb-6 { margin-bottom: 1.5rem; }
.tw-text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.tw-text-gray-600 { color: #4b5563; }
.tw-grid { display: grid; }
.tw-grid-cols-1 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .tw-sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .tw-md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tw-gap-6 { gap: 1.5rem; }
.tw-flex { display: flex; }
.tw-flex-wrap { flex-wrap: wrap; }
.tw-gap-2 { gap: 0.5rem; }
.tw-border { border: 1px solid #eee; }
.tw-rounded { border-radius: 0.5rem; }
.tw-p-4 { padding: 1rem; }
.tw-w-full { width: 100%; }
.tw-h-40 { height: 10rem; }
.tw-object-cover { object-fit: cover; }
.tw-active, .industry-btn.active { background: #007cba; color: #fff; }

/* --- 共通カード型UI（news-cardベース） --- */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card:hover .card-thumb img {
  transform: scale(1.05);
}
.card-content {
  padding: 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #222;
  line-height: 1.3;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.badge {
  width: fit-content;
  background: #f0f0f0;
  color: #555;
  font-size: 0.85em;
  padding: 2px 10px;
  border-radius: 12px;
  margin-right: 4px;
  display: inline-block;
}
.badge-new {
  background: #ffecb3;
  color: #bfa100;
}
.badge-recommend {
  background: #ffe0e6;
  color: #d72660;
}
.card-hours {
  font-size: 0.95em;
  color: #444;
  display: flex;
  gap: 12px;
}
.card-holidays {
  font-size: 0.92em;
  color: #888;
  margin-top: 2px;
}
.card-excerpt {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 900px) {
  .card-list {
    gap: 24px 12px;
  }
  .card {
    width: 100%;
    /* width: calc(50% - 12px); */
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .card-list {
    flex-direction: column;
    gap: 18px 0;
  }
  .card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .card-content {
    padding: 14px 10px 10px 10px;
  }
}

.card-list, .shop-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.card-wrapper {
  width: 100%;
  height: 100%;
  /* display: flex; 削除 */
}
.card, .shop-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .card-list, .shop-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .card-list, .shop-card-list {
    grid-template-columns: 1fr;
  }
}

/* --- フロントお知らせシンプルリスト --- */
.news-simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.news-simple-item {
  border-bottom: 1px solid #eee;
  padding: 18px 0 12px 0;
  transition: background 0.2s;
}
.news-simple-item:last-child {
  border-bottom: none;
}
.news-simple-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: #222;
  transition: color 0.2s;
}
.news-simple-link:hover {
  color: #007cba;
  background: #f7faff;
}
.news-simple-date {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 2px;
}
.news-simple-cat {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  font-size: 0.85em;
  padding: 2px 10px;
  border-radius: 12px;
  margin-right: 8px;
  margin-bottom: 2px;
}
.news-simple-title {
  font-size: 1.08em;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.5;
}
.news-simple-excerpt {
  font-size: 0.97em;
  color: #666;
  margin-top: 2px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .news-simple-list {
    max-width: 98vw;
    padding-left: 4px;
    padding-right: 4px;
  }
  .news-simple-title {
    font-size: 1em;
  }
  .news-simple-excerpt {
    font-size: 0.93em;
  }
}

.shop-sns-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 1.2em 0 1.5em 0;
}
.sns-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f7f7f7;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.sns-icon-link:hover {
  background: #e0eaff;
  box-shadow: 0 2px 8px rgba(0,124,186,0.10);
}
.sns-icon-link svg {
  width: 22px;
  height: 22px;
  display: block;
}