/* 
Theme Name:kotozawa-soba
Version:1.0
Author:よしの
Description: A custom theme for a soba restaurant website.
 */

/* 全てのaタグのアンダーラインを削除 */
a {
  text-decoration: none !important;
  color: #fafafa;
}

/* スクロール時のフェードイン効果 */
.fadein {
  opacity: 0.15;
  transform: translateY(20px);
  transition: opacity 3s ease-in-out, transform 3s ease-in-out;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダー - レスポンシブ対応 */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fffaf5;
  color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #000000;
  flex-shrink: 0;
}

.site-title-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-title-link:hover {
  color: #8B4513;
}

/* デスクトップナビゲーション */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 300;
  font-size: 25px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8B4513;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ハンバーガーメニューボタン */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 2001;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: linear-gradient(135deg, rgba(255, 250, 245, 0.98), rgba(245, 240, 235, 0.98)) !important;
  z-index: 2147483647 !important;
  opacity: 0;
  visibility: hidden;
  transition: right 0.4s ease, opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  right: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* モバイルメニュークローズボタン */
.mobile-menu-close {
  position: absolute !important;
  top: 30px !important;
  right: 30px !important;
  background: none !important;
  border: none !important;
  color: #000000 !important;
  font-size: 40px !important;
  width: 50px !important;
  height: 50px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2147483648 !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  transition: all 0.3s ease !important;
  border-radius: 50% !important;
  border: 2px solid rgba(0, 0, 0, 0.3) !important;
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(0, 0, 0, 0.6) !important;
  transform: rotate(90deg) scale(1.1) !important;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  width: 100%;
  gap: 40px;
  background: transparent;
  position: relative;
  z-index: 10000;
  padding-top: 120px;
}

.mobile-nav a {
  color: #000000;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  padding: 15px 30px;
  width: 250px;
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInFromRight 0.6s ease forwards;
}

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }

.mobile-menu-overlay:not(.active) .mobile-nav a {
  opacity: 0;
  transform: translateX(50px);
  animation: none;
}

@keyframes slideInFromRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav a:hover {
  color: #333333;
  transform: translateY(-3px);
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #8B4513;
  transition: width 0.3s ease;
}

.mobile-nav a:hover::after {
  width: 100%;
}

/* メイン - 全画面統一背景 */
body {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
    background: linear-gradient(135deg, rgba(255, 250, 245, 0.98), rgba(245, 240, 235, 0.98));
    color: #000000;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100vh;
}

#weight {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* zokuスタイル - フルスクリーンヒーローセクション */
#hero-section {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
    z-index: 1;
}

/* スライダーコンテナ */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000000;
}

/* 各スライド */
.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.fade-slide:first-child {
    opacity: 1;
}

.fade-slide.active {
    opacity: 1;
}

/* 画像のスタイル */
.fade-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1.1);
    transition: transform 8s ease-in-out;
}

/* zokuスタイル - テキストオーバーレイ */
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 500;
    width: 100%;
}

.hero-logo {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    padding: 60px;
    border-radius: 0;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    margin: 0 0 20px 0;
    letter-spacing: 8px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    letter-spacing: 2px;
    opacity: 0.9;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* レスポンシブ対応 - ロゴ位置調整 */
@media (max-width: 1024px) {
    .hero-overlay {
        top: 40%;
        transform: translate(-50%, -50%);
    }
    
    .hero-logo {
        padding: 50px 40px;
    }
    
    .hero-title {
        font-size: 56px;
        letter-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        top: 35%;
        transform: translate(-50%, -50%);
    }
    
    .hero-logo {
        padding: 40px 30px;
        margin: 0 20px;
        background: rgba(0, 0, 0, 0.4);
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        top: 30%;
        transform: translate(-50%, -50%);
    }
    
    .hero-logo {
        padding: 30px 20px;
        margin: 0 15px;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* 横向き画面での特別調整 */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-overlay {
        top: 25%;
        transform: translate(-50%, -50%);
    }
    
    .hero-logo {
        padding: 20px 30px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    text-align: center;
    z-index: 500;
    font-size: 12px;
    letter-spacing: 2px;
    animation: fadeInOut 3s infinite;
}

.scroll-arrow {
    margin-top: 10px;
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* モバイルファースト - レスポンシブスタイル */
@media (max-width: 768px) {
    /* ヘッダー */
    header {
        padding: 15px 20px;
    }
    
    header h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    /* デスクトップメニューを非表示 */
    .nav-menu {
        display: none;
    }
    
    /* ハンバーガーメニューを表示 */
    .hamburger-menu {
        display: flex;
    }
    
    /* モバイルメニューを表示可能に */
    .mobile-menu-overlay {
        display: block;
    }
    
    /* ヒーローセクション */
    #hero-section {
        height: 80vh;
    }
    
    .fade-slide img {
        width: 100%;
        height: 100%;
        transform: scale(1.05);
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-logo {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    
    .main-visual-text {
        height: 60vh;
        min-height: 400px;
    }
    
    .main-overlay {
        padding: 30px 20px;
    }
    
    .text-block {
        max-width: 100%;
        padding: 40px 30px 40px 20px;
        text-align: left;
    }
    
    .text-block p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    #weight {
        margin-bottom: 30px;
    }
    
    #weight p:first-child {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    #weight p {
        font-size: 10px;
        text-align: center;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    #description p {
        font-size: 16px;
        text-align: center;
        line-height: 1.7;
    }
    
    /* ツーボックスエリア */
    .two-box-wrap {
        flex-direction: column;
        gap: 30px;
        margin: 30px auto;
        max-width: 500px;
        padding: 0 20px;
    }
    
    .box-item {
        width: 100%;
        height: 400px;
    }
    
    .box-item .box-overlay {
        padding: 40px 25px;
    }
    
    .box-item p:first-of-type {
        font-size: 22px;
        margin-bottom: 18px;
        letter-spacing: 0.5px;
    }
    
    .box-item p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .box-item p:last-of-type {
        font-size: 13px;
        padding: 8px 18px;
    }
    
    /* お知らせセクション */
    .news-section {
        margin: 30px 20px;
        padding: 25px 20px;
    }
    
    .news-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .news-item {
        padding: 12px 0;
        font-size: 14px;
    }
    
    .news-link {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 15px;
    }
    
    /* 店舗情報 */
    .shop-wrap {
        flex-direction: column;
        margin: 30px 20px;
        padding: 25px 20px;
        gap: 25px;
    }
    
    .shop-info p:first-child {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .shop-info p {
        font-size: 14px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .shop-map {
        max-width: 100%;
    }
    
    .shop-map iframe {
        height: 220px;
        width: 100%;
    }
    
    /* スクロールインジケーター */
    .scroll-indicator {
        bottom: 20px;
        font-size: 10px;
    }
    
    /* フッタースペーシング */
    body {
        padding-bottom: 20px;
    }
    
    /* コンテンツ間の統一スペーシング */
    .box-item + .box-item {
        margin-top: 0;
    }
    
    .news-section + div,
    .shop-wrap + div {
        margin-top: 0;
    }
}

/* 極小画面用 (320px-480px) */
@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }
    
    header h1 {
        font-size: 26px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .hero-logo {
        padding: 20px 15px;
        margin: 0 15px;
    }
    
    .main-visual-text {
        height: 50vh;
        min-height: 350px;
    }
    
    .main-overlay {
        padding: 20px 15px;
    }
    
    .text-block {
        padding: 30px 20px 30px 15px;
        text-align: left;
    }
    
    .text-block p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    #weight p:first-child {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    #weight p {
        font-size: 15px;
    }
    
    #description p {
        font-size: 14px;
    }
    
    .two-box-wrap {
        margin: 30px auto;
        gap: 25px;
        max-width: 400px;
        padding: 0 15px;
    }
    
    .box-item {
        height: 280px;
    }
    
    .box-item .box-overlay {
        padding: 30px 20px;
    }
    
    .box-item p:first-of-type {
        font-size: 18px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }
    
    .box-item p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .box-item p:last-of-type {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .news-section, .shop-wrap {
        margin: 25px 15px;
        padding: 20px 15px;
    }
    
    .shop-map iframe {
        height: 200px;
    }
}

/* 横向き画面での調整 */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-logo {
        padding: 20px 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .main-visual-text {
        flex-direction: row;
        gap: 20px;
    }
    
    .text-block {
        order: 1;
        flex: 1.2;
    }
    
    .image-block {
        order: 2;
        flex: 0.8;
    }
    
    .image-block img {
        max-width: 250px;
        height: 180px;
    }
}

/* タブレット用 */
@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 18px 30px;
    }
    
    header h1 {
        font-size: 26px;
    }
    
    .nav-menu a {
        margin-left: 20px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 56px;
        letter-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .two-box-wrap {
        gap: 60px;
        margin: 80px 40px;
    }
    
    .news-section, .shop-wrap {
        margin: 60px 40px;
        padding: 40px;
    }
}

/* メインビジュアル - 背景透明 */
#main-visual {
    margin-top: 0;
    background-color: transparent;
    clear: both;
    position: relative;
    z-index: 2;
}

/* テキスト部分 - 画像オーバーレイスタイル */
.main-visual-text {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
}

.main-visual-text img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(139, 69, 19, 0.3));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}

/* 左の文章部分 */
.text-block {
    max-width: 600px;
    text-align: left;
    padding: 60px 80px 60px 60px;
    margin-left: 0;
}

.text-block p {
    color: #ffffff;
    font-size: 18px;
    line-height: 2.0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 25px;
}

#weight {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff;
}

#weight p:first-child {
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* レスポンシブ対応のための新しいクラス */
.responsive-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
}

.responsive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: filter 0.3s ease;
}

.responsive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(139, 69, 19, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}

.responsive-text-block {
    max-width: 70%;
    width: 100%;
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.weight-section {
    margin-bottom: 30px;
}

.description-section {
    margin-top: 20px;
}

.main-subtitle {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.main-description, .story-text, .tradition-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

.mobile-break {
    display: inline;
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .responsive-container {
        height: 60vh;
        min-height: 450px;
    }
    
    .responsive-text-block {
        max-width: 85%;
        padding: 35px;
    }
    
    .main-subtitle {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .main-description, .story-text, .tradition-text {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .responsive-container {
        height: 70vh;
        min-height: 450px;
    }
    
    .responsive-overlay {
        align-items: center;
        justify-content: center;
        padding: 15px;
    }
    
    .responsive-text-block {
        max-width: 95%;
        padding: 25px 20px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 6px;
    }
    
    .weight-section {
        margin-bottom: 25px;
    }
    
    .description-section {
        margin-top: 15px;
        display: none; /* モバイル表示時に非表示 */
    }
    
    .main-subtitle {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }
    
    .main-description, .story-text, .tradition-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .mobile-break br {
        display: none;
    }
}

/* 小さなモバイル対応 */
@media (max-width: 480px) {
    .responsive-container {
        height: 60vh;
        min-height: 400px;
    }
    
    .responsive-text-block {
        max-width: 98%;
        padding: 20px 15px;
    }
    
    .main-subtitle {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .main-description, .story-text, .tradition-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .weight-section {
        margin-bottom: 20px;
    }
    
    .description-section {
        display: none; /* 480px以下でも確実に非表示 */
    }
}

/* 横向き画面対応 */
@media (max-width: 768px) and (orientation: landscape) {
    .responsive-container {
        height: 100vh;
        min-height: 400px;
    }
    
    .responsive-text-block {
        padding: 15px;
    }
    
    .main-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .main-description, .story-text, .tradition-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .description-section {
        display: none; /* 横向き画面でも非表示 */
    }
}

/* 既存の#description スタイルは維持 */

#description {
    font-size: 18px;
}

#description p {
    text-align: center;
    margin-left: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.8;
}

#weight p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    line-height: 1.7;
}

/* モダンなセクションデザイン */
.modern-sections {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 300;
  color: #333;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
}

.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #8B4513, #A0522D);
  margin: 0 auto;
  border-radius: 1px;
}

.section-content {
  color: #555;
  line-height: 1.8;
}

/* お知らせセクション */
.news-item-modern {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: padding-left 0.3s ease;
}

.news-item-modern:hover {
  padding-left: 10px;
}

.news-item-modern:last-child {
  border-bottom: none;
  margin-bottom: 30px;
}

.news-date {
  display: inline-block;
  font-size: 14px;
  color: #8B4513;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
}

.modern-link {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  margin-top: 20px;
  background: linear-gradient(135deg, #8B4513, #A0522D);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.modern-link:hover {
  transform: translateY(-2px);
}

/* 店舗情報セクション */
.shop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.shop-info-modern {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 14px;
  color: #8B4513;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
  font-weight: bold;
}

.info-value {
  font-size: 18px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.shop-map-modern {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.shop-map-modern iframe {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.shop-map-modern:hover iframe {
  transform: scale(1.02);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .modern-sections {
    margin: 40px auto;
    gap: 40px;
    padding: 0 15px;
  }
  
  .section-container {
    padding: 30px 25px;
    border-radius: 12px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .shop-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .news-item-modern {
    padding: 15px 0;
  }
  
  .news-text {
    font-size: 15px;
  }
  
  .info-value {
    font-size: 16px;
  }
  
  .modern-link {
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 25px 20px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .news-text {
    font-size: 14px;
  }
  
  .info-value {
    font-size: 15px;
  }
  
  .shop-map-modern iframe {
    height: 250px;
  }
}

.two-box-wrap {
  display: flex;
  gap: 80px;
  margin: 50px auto;
  background-color: transparent;
  justify-content: center;
  max-width: 1200px;
}

.box-item {
  position: relative;
  width: 45%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.box-item:hover {
  transform: translateY(-5px);
}

.box-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.3s ease;
}

.box-item:hover img {
  filter: brightness(0.4);
}

.box-item .box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(139, 69, 19, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
  text-align: center;
  z-index: 2;
  box-sizing: border-box;
}

.box-item p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-size: 16px;
  max-width: 100%;
}

.box-item p:first-of-type {
  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.box-item p:last-of-type {
  color: #f5d67a;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid #f5d67a;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.box-item:hover p:last-of-type {
  background-color: #f5d67a;
  color: #8B4513;
}

/* レスポンシブボックス対応 */
.responsive-boxes {
  display: flex;
  gap: 60px;
  margin: 50px auto;
  background-color: transparent;
  justify-content: center;
  max-width: 1200px;
}

.responsive-box {
  position: relative;
  width: 45%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.responsive-box-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.3s ease;
}

.responsive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(139, 69, 19, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
  text-align: center;
  z-index: 2;
  box-sizing: border-box;
}

.box-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.box-description {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  max-width: 100%;
}

.box-link {
  color: #f5d67a;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid #f5d67a;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.mobile-line-break {
  display: inline;
}

/* タブレット対応 */
@media (max-width: 1024px) {
  .responsive-boxes {
    gap: 60px;
    margin: 40px 30px;
    max-width: 900px;
  }
  
  .responsive-box {
    height: 450px;
  }
  
  .box-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .box-description {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .box-link {
    font-size: 15px;
    padding: 10px 20px;
  }
}

/* モバイル対応 */
@media (max-width: 768px) {
  .responsive-boxes {
    flex-direction: column;
    gap: 30px;
    margin: 30px 20px;
    max-width: 500px;
  }
  
  .responsive-box {
    width: 100%;
    height: 400px;
  }
  
  .responsive-overlay {
    padding: 30px 25px;
    justify-content: center;
  }
  
  .box-title {
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }
  
  .box-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  
  .box-link {
    font-size: 14px;
    padding: 10px 18px;
  }
  
  .mobile-line-break br {
    display: none;
  }
}

/* 小さなモバイル対応 */
@media (max-width: 480px) {
  .responsive-boxes {
    gap: 25px;
    margin: 25px 15px;
    max-width: 400px;
  }
  
  .responsive-box {
    height: 350px;
  }
  
  .responsive-overlay {
    padding: 25px 20px;
  }
  
  .box-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .box-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .box-link {
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* タッチデバイス対応 */
@media (hover: none) and (pointer: coarse) {
  .responsive-box:hover {
    transform: none;
  }
  
  .responsive-box:active {
    transform: scale(0.98);
  }
  
  .responsive-box:hover .responsive-box-img {
    filter: brightness(0.6);
  }
  
  .responsive-box:active .responsive-box-img {
    filter: brightness(0.4);
  }
}

.shop-wrap {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin: 20px 20px;
  background: linear-gradient(135deg, rgba(255, 248, 240, 0.95), rgba(250, 240, 230, 0.95));
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(7, 4, 2, 0.3);
  backdrop-filter: blur(10px);
}

.shop-info {
  flex: 1;
  margin-left: 0;
  padding-right: 30px;
}

.shop-info p {
  border-bottom: 1px solid rgba(139, 69, 19, 0.2);
  padding-bottom: 15px;
  margin-bottom: 15px;
  color: #333333;
  line-height: 1.7;
}

.shop-info p:first-child {
  color: #8B4513;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(139, 69, 19, 0.3);
}

.shop-map {
  flex: 1;
  max-width: 500px;
  margin-right: 0;
}

.shop-map iframe {
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.2);
}

/* お知らせセクション */
.news-section {
  margin: 20px 20px;
  background: #ffffff;
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(7, 4, 2, 0.3);
  backdrop-filter: blur(10px);
}

.news-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 300;
  color: #8B4513;
  text-align: center;
  letter-spacing: 2px;
}

.news-item {
  border-bottom: 1px solid rgba(139, 69, 19, 0.2);
  line-height: 1.8;
  padding: 15px 0;
  color: #333333;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.news-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #8B4513, #A0522D);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(7, 4, 2, 0.3);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.news-link:hover {
  background: linear-gradient(135deg, #A0522D, #8B4513);
  border-color: rgba(139, 69, 19, 0.5);
  transform: translateY(-2px);
}

/* お知らせページ専用スタイル */
.news-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.news-page .container {
  background: #ffffff;
}

.page-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
  border-bottom: 2px solid #8B4513;
  padding-bottom: 10px;
}

.news-list {
  margin-top: 30px;
}

.news-list .news-item {
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.news-list .news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.news-date {
  color: #8B4513;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  border-left: 4px solid #8B4513;
  padding-left: 10px;
}

.news-content h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.news-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* アコーディオン用スタイル */
.accordion .news-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.accordion .news-header:hover {
  background-color: #f5f5f5;
}

.accordion .news-header h3 {
  margin: 0;
  flex-grow: 1;
  margin-left: 15px;
}

.accordion-icon {
  font-size: 20px;
  font-weight: bold;
  color: #8B4513;
  width: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.accordion .news-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  background-color: #fafafa;
}

.accordion.active .news-content {
  padding: 15px;
}

.accordion .news-date {
  color: #8B4513;
  font-size: 14px;
  font-weight: bold;
  border-left: 4px solid #8B4513;
  padding-left: 10px;
  margin: 0;
}

/* カレンダーセクションのレスポンシブ対応 */
.calendar-section {
  margin: 20px 20px;
  background: #ffffff;
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(7, 4, 2, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
}

.calendar-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 300;
  color: #8B4513;
  text-align: center;
  letter-spacing: 2px;
}

.calendar-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.2);
}

/* The Events Calendar用スタイル */
.calendar-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.calendar-center .tribe-events-calendar {
  margin: 0 auto;
  max-width: 100%;
}

.calendar-center #tribe-events {
  margin: 0 auto;
}

/* さらなるレスポンシブ強化 */
@media (max-width: 1024px) {
  .calendar-section {
    margin: 20px 20px;
    padding: 30px 20px;
  }
  
  .calendar-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .calendar-section {
    margin: 30px 20px;
    padding: 25px 15px;
  }
  
  .calendar-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .calendar-image {
    max-width: 100%;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .calendar-section {
    margin: 20px 15px;
    padding: 20px 10px;
  }
  
  .calendar-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* ===== NEWS PAGE RESPONSIVE STYLES ===== */

/* タブレット（1024px以下）*/
@media (max-width: 1024px) {
  .news-page {
    max-width: 90%;
    margin: 30px auto;
    padding: 0 15px;
  }
  
  .page-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .accordion .news-header {
    padding: 12px;
  }
  
  .accordion .news-header h3 {
    font-size: 16px;
    margin-left: 10px;
  }
  
  .news-date {
    font-size: 13px;
  }
}

/* モバイル（768px以下）*/
@media (max-width: 768px) {
  .news-page {
    max-width: 95%;
    margin: 20px auto;
    padding: 0 10px;
  }
  
  .page-title {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 8px;
  }
  
  .news-list .news-item {
    margin-bottom: 15px;
    border-radius: 6px;
  }
  
  .accordion .news-header {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .accordion .news-header h3 {
    font-size: 15px;
    margin-left: 0;
    margin-top: 5px;
    line-height: 1.4;
  }
  
  .news-date {
    font-size: 12px;
    padding-left: 8px;
  }
  
  .accordion-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
  }
  
  .accordion .news-content {
    padding: 0 10px;
  }
  
  .accordion.active .news-content {
    padding: 12px 10px;
  }
  
  .news-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 小さなモバイル（480px以下）*/
@media (max-width: 480px) {
  .news-page {
    max-width: 100%;
    margin: 15px auto;
    padding: 0 5px;
  }
  
  .page-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 6px;
  }
  
  .news-list .news-item {
    margin-bottom: 10px;
    border-radius: 4px;
  }
  
  .accordion .news-header {
    padding: 8px;
    position: relative;
  }
  
  .accordion .news-header h3 {
    font-size: 14px;
    line-height: 1.3;
    padding-right: 25px;
  }
  
  .news-date {
    font-size: 11px;
    padding-left: 6px;
    border-left-width: 3px;
  }
  
  .accordion-icon {
    right: 8px;
    top: 8px;
    font-size: 16px;
    width: 20px;
  }
  
  .accordion .news-content {
    padding: 0 8px;
  }
  
  .accordion.active .news-content {
    padding: 10px 8px;
  }
  
  .news-content p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  /* ホバー効果をモバイルで無効化 */
  .news-list .news-item:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .accordion .news-header:hover {
    background-color: transparent;
  }
}

/* 横向きモバイル対応 */
@media (max-width: 768px) and (orientation: landscape) {
  .news-page {
    margin: 10px auto;
  }
  
  .page-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .news-list .news-item {
    margin-bottom: 8px;
  }
  
  .accordion .news-header {
    padding: 8px;
  }
  
  .accordion .news-header h3 {
    font-size: 14px;
  }
}




