@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

/* Reset for Front Page - Hide Cocoon Default Elements */
.sakura-front-page-body {
  margin: 0 !important;
  padding: 0 !important;
}

.sakura-front-page-body #body {
  margin: 0 !important;
  padding: 0 !important;
}

.sakura-front-page-body .header,
.sakura-front-page-body .header-container,
.sakura-front-page-body #header,
.sakura-front-page-body .sidebar,
.sakura-front-page-body #sidebar,
.sakura-front-page-body .breadcrumb,
.sakura-front-page-body .content-top,
.sakura-front-page-body .page-header,
.sakura-front-page-body .entry-header,
.sakura-front-page-body .entry-title,
.sakura-front-page-body .footer,
.sakura-front-page-body #footer {
  display: none !important;
}

.sakura-front-page-body #container {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sakura-front-page-body .main {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sakura-front-page-body .site-content {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Reset for Detail Pages - Hide Cocoon Default Elements */
.sakura-detail-page-body {
  margin: 0 !important;
  padding: 0 !important;
}

.sakura-detail-page-body #body {
  margin: 0 !important;
  padding: 0 !important;
}

.sakura-detail-page-body .header,
.sakura-detail-page-body .header-container,
.sakura-detail-page-body #header,
.sakura-detail-page-body .sidebar,
.sakura-detail-page-body #sidebar,
.sakura-detail-page-body .breadcrumb,
.sakura-detail-page-body .content-top,
.sakura-detail-page-body .page-header,
.sakura-detail-page-body .entry-header:not(.news-detail-header),
.sakura-detail-page-body .entry-title:not(.news-detail-title),
.sakura-detail-page-body .footer:not(.sakura-footer),
.sakura-detail-page-body #footer:not(.sakura-footer) {
  display: none !important;
}

.sakura-detail-page-body #container {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sakura-detail-page-body .main {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sakura-detail-page-body .site-content {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* カラーパレット */
:root {
  --primary-color: #E89F3C;
  --secondary-color: #F5E6D3;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-dark: #1a1a1a;
  --bg-light: #F5E6D3;
}

/* ナビゲーション */
.sakura-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

.sakura-nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  transition: padding 0.3s ease;
  gap: 30px;
}

.sakura-nav.scrolled .nav-container {
  padding: 10px 40px;
}

/* ヘッダー言語切り替え（カスタムセレクター） */
.nav-language-item {
  position: relative;
  z-index: 10001;
}

.language-selector-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 8px 14px;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
}

.language-selector-btn svg {
  width: 18px;
  height: 18px;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10002;
  max-height: 400px;
  overflow-y: auto;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.lang-option:first-child {
  border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 8px 8px;
}

.lang-option:hover {
  background-color: rgba(232, 159, 60, 0.1);
}

.lang-option.active {
  background-color: rgba(232, 159, 60, 0.2);
  color: var(--primary-color);
  font-weight: 600;
}

/* Google Translateウィジェット（非表示） */
#google_translate_element_hidden {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Google Translateのバナーは表示 */
body > .skiptranslate,
#goog-gt-tt,
.goog-te-banner-frame {
  z-index: 99999 !important;
}

/* コンボボックス用（旧UI対応） */
#google_translate_element_header .goog-te-combo {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 20px !important;
  color: #fff !important;
  padding: 6px 12px !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  outline: none !important;
  transition: all 0.3s ease !important;
}

#google_translate_element_header .goog-te-combo:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: var(--primary-color) !important;
}

.site-branding .site-title {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
  transition: font-size 0.3s ease;
}

.sakura-nav.scrolled .site-title {
  font-size: 0.9rem;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 5px;
}

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

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

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-color);
}

/* 共通スタイル */
.sakura-front-page {
  overflow-x: hidden;
  padding-top: 0;
}

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

.section-title-center {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-bottom: 60px; /* footer-info-barのスペースを確保 */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  cursor: pointer;
  background: #1a1a1a; /* 動画読み込み中の背景色 */
}

/* 動画読み込み中のローディング表示 */
.hero-video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* 全画面表示時は contain に変更 */
.hero-video:fullscreen {
  object-fit: contain;
  background: #000;
}

.hero-video:-webkit-full-screen {
  object-fit: contain;
  background: #000;
}

.hero-video:-moz-full-screen {
  object-fit: contain;
  background: #000;
}

.hero-video:-ms-fullscreen {
  object-fit: contain;
  background: #000;
}

.video-fullscreen-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-fullscreen-btn:hover {
  background: rgba(232, 159, 60, 0.8);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.video-fullscreen-btn svg {
  stroke: #fff;
}

/* Concept Section (ABOUT US) */
.concept-section {
  background: #f8f5f0;
  padding: 80px 0;
}

.section-header {
  text-align: left;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-radius: 3px;
}

.concept-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text {
  padding-right: 20px;
}

.concept-text .section-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #333;
}

.concept-description {
  line-height: 2;
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.concept-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Photo Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #1a1a1a;
  color: #fff;
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label-center {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-radius: 3px;
  margin-bottom: 30px;
}

.gallery-title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 30px;
  color: #fff;
}

.gallery-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

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

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 14px);
  opacity: 0.5;
  transition: all 0.5s ease;
  text-align: center;
}

.gallery-item.active {
  opacity: 1;
  transform: scale(1.1);
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-caption {
  display: none;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--primary-color);
}

/* Interior Section (Remove old styles) */
.interior-section {
  padding: 100px 0;
  background: #fff;
}

.interior-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.interior-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Menu Section */
.menu-section {
  padding: 80px 0;
  background: #f8f5f0;
}

.menu-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  color: #333;
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

/* News Section */
.news-section {
  padding: 80px 0;
  background: #E89F3C;
  color: #333;
}

.news-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
  color: #333;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.news-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-card-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.news-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-card-date {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 12px;
  display: block;
}

.news-card-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #333;
}

.news-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}

.news-card-arrow {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.news-card:hover .news-card-arrow {
  background: #d08a25;
  transform: scale(1.1);
}

.no-news-message {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 1rem;
  grid-column: 1 / -1;
}

.news-more-wrapper {
  text-align: center;
}

.news-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-more-link:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Access Section */
.access-section {
  padding: 80px 0;
  background: #f8f5f0;
}

.section-header-left {
  margin-bottom: 20px;
}

.access-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
  color: #333;
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.access-map iframe {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.store-info-box,
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-heading {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.info-item {
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.info-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

.contact-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.contact-email {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
}

/* Footer Info Bar (FV下部) */
.footer-info-bar {
  background: rgba(42, 42, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 60px; /* 高さを固定 */
  display: flex;
  align-items: center;
}

.footer-info-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.info-icon {
  display: flex;
  align-items: center;
  opacity: 0.8;
  flex-shrink: 0;
}

.info-icon svg {
  stroke: var(--primary-color);
  width: 16px;
  height: 16px;
}

.info-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

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

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

/* スケルトンローダー */
.image-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.concept-image {
  position: relative;
}

.concept-image img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ABOUT USセクションの改善 */
.concept-description {
  line-height: 2;
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.concept-description strong {
  color: #333;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.concept-description.highlight strong {
  background: linear-gradient(transparent 65%, rgba(232, 159, 60, 0.3) 65%);
  padding: 0 2px;
}

/* ライトボックス */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-caption {
  display: none;
}

/* ギャラリーアイテムにカーソルポインター */
.gallery-item img[data-lightbox] {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img[data-lightbox]:hover {
  transform: scale(1.05);
}

/* Main Footer */
.sakura-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 0;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: var(--primary-color);
}

.footer-text {
  font-size: 0.9rem;
  line-height: 2;
  color: #ccc;
}

.footer-nav-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--primary-color);
}

.footer-info {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 10px;
}

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

.footer-copyright {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下 (タブレット)*/
@media screen and (max-width: 1023px){
  /* ナビゲーション */
  .sakura-nav {
    padding: 15px 0;
  }
  
  .nav-container {
    padding: 0 30px;
  }
  
  /* ハンバーガーメニュー表示 */
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 80px 0 40px;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-menu li a {
    display: block;
    padding: 20px 30px;
    font-size: 1rem;
  }
  
  .nav-menu li a::after {
    display: none;
  }
  
  /* モバイルメニュー内に言語切り替えを表示 */
  .nav-language-item {
    display: block !important;
    width: 100%;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .language-selector-btn {
    width: 100%;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  
  .language-dropdown {
    position: relative;
    top: 10px;
    right: auto;
    left: 0;
    width: 100%;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* ヒーローセクション */
  .hero-section {
    height: auto;
    min-height: auto;
    position: static;
    display: block;
    overflow: visible;
    width: 100%;
    margin-left: 0;
    padding: 0 !important;
  }
  
  .hero-video {
    position: static;
    width: 100%;
    height: auto;
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-overlay {
    padding: 60px 40px;
  }
  
  /* FV下部情報バー */
  .footer-info-bar {
    position: static;
    height: auto;
    padding: 15px 0;
  }
  
  .footer-info-content {
    flex-direction: column;
    padding: 0 20px;
    gap: 12px;
  }
  
  .footer-info-item {
    font-size: 0.8rem;
    justify-content: center;
    text-align: center;
  }
  
  .concept-content {
    gap: 50px;
  }
  
  .gallery-slider {
    padding: 0 60px;
  }
  
  .gallery-item {
    flex: 0 0 calc(50% - 10px);
  }
  
  .gallery-item img {
    height: 300px;
  }
  
  .menu-gallery {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .access-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-info-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-info-item {
    justify-content: center;
  }
}

/*834px以下 (タブレット縦)*/
@media screen and (max-width: 834px){
  .container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle-top {
    font-size: 0.9rem;
  }
  
  .hero-description p {
    font-size: 0.9rem;
  }
  
  .section-title-center,
  .menu-title,
  .news-section-title,
  .access-title,
  .gallery-title {
    font-size: 1.6rem;
  }
  
  .concept-text .section-title {
    font-size: 1.5rem;
  }
  
  .concept-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .menu-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .news-list {
    padding: 30px;
  }
}

/*480px以下 (スマートフォン)*/
@media screen and (max-width: 480px){
  .container {
    padding: 0 20px;
  }
  
  /* ナビゲーション */
  .sakura-nav {
    padding: 15px 0;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  .site-title {
    font-size: 0.9rem;
  }
  
  /* ヒーローセクション */
  .hero-section {
    height: auto;
    min-height: auto;
    position: static;
    display: block;
    overflow: visible;
    width: 100%;
    margin-left: 0;
    padding: 0 !important;
  }
  
  .hero-video {
    position: static;
    width: 100%;
    height: auto;
    display: block;
  }
  
  .hero-overlay {
    padding: 40px 20px;
    max-width: 100%;
  }
  
  .hero-subtitle-top {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin: 1rem 0 1.5rem;
    letter-spacing: 0.1em;
  }
  
  .hero-description {
    margin-top: 2rem;
  }
  
  .hero-description p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  
  .hero-description p br {
    display: none;
  }
  
  /* FV下部情報バー */
  .footer-info-bar {
    padding: 8px 0;
    position: static;
    height: auto;
    min-height: auto;
  }
  
  .footer-info-content {
    flex-direction: column;
    padding: 0 10px;
    gap: 6px;
  }
  
  .footer-info-item {
    font-size: 0.65rem;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 4px 0;
  }
  
  .footer-info-item .info-link,
  .footer-info-item span {
    word-break: break-all;
    line-height: 1.3;
  }
  
  .info-icon svg {
    width: 14px;
    height: 14px;
  }
  
  /* セクションラベル */
  .section-label,
  .section-label-center {
    font-size: 0.75rem;
    padding: 6px 20px;
  }
  
  /* 共通セクション */
  .concept-section,
  .menu-section,
  .news-section,
  .access-section {
    padding: 60px 0;
  }
  
  /* About Usセクション */
  .concept-text .section-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .concept-description {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }
  
  .concept-description br {
    display: none;
  }
  
  /* ギャラリーセクション */
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-header {
    margin-bottom: 40px;
  }
  
  .gallery-title {
    font-size: 1.4rem;
    margin-top: 20px;
  }
  
  .gallery-slider {
    padding: 0 50px;
  }
  
  .gallery-item {
    flex: 0 0 100%;
  }
  
  .gallery-item img {
    height: 280px;
  }
  
  .gallery-caption {
    font-size: 0.8rem;
    margin-top: 10px;
  }
  
  .slider-nav {
    width: 36px;
    height: 36px;
  }
  
  .slider-nav svg {
    width: 18px;
    height: 18px;
  }
  
  .slider-dots {
    margin-top: 30px;
  }
  
  /* メニューセクション */
  .menu-title,
  .news-section-title,
  .access-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .section-title-center {
    font-size: 1.3rem;
  }
  
  .menu-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .menu-item img {
    height: auto;
  }
  
  /* ニュースセクション */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .news-card-content {
    padding: 20px;
  }
  
  .news-card-image {
    height: 180px;
  }
  
  .news-card-title {
    font-size: 1rem;
  }
  
  .news-card-excerpt {
    font-size: 0.85rem;
  }
  
  /* アクセスセクション */
  .access-map iframe {
    height: 300px;
  }
  
  .store-info-box,
  .contact-box {
    padding: 20px;
  }
  
  .info-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .info-label {
    font-size: 0.8rem;
  }
  
  .info-text,
  .contact-text,
  .contact-email {
    font-size: 0.85rem;
  }
  
  .info-text br,
  .contact-email br {
    display: inline;
  }
  
  /* フッター */
  .sakura-footer {
    padding: 40px 0 0;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-content {
    gap: 30px;
    padding-bottom: 30px;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-text,
  .footer-menu li a,
  .footer-info {
    font-size: 0.85rem;
  }
  
  .footer-text br {
    display: inline;
  }
  
  .footer-bottom {
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
    gap: 15px;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ========================================
   Menu Modal Styles
   ======================================== */
.menu-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.menu-modal-content {
  position: relative;
  background: #fff;
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.menu-modal-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.menu-modal-close svg {
  width: 20px;
  height: 20px;
}

.menu-modal-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.menu-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-modal-info {
  padding: 40px;
}

.menu-modal-title {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.menu-modal-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.menu-modal-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* ========================================
   News Section Enhanced Styles
   ======================================== */
.news-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.news-item:hover {
  background: #fafafa;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
  border-radius: 8px;
}

.news-item:last-child {
  border-bottom: none;
}

.news-thumbnail {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

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

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

.news-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.news-date {
  font-size: 0.9rem;
  color: #999;
  font-weight: 500;
}

.news-category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-category.category-info,
.news-category.category-news {
  background: #e3f2fd;
  color: #1976d2;
}

.news-category.category-menu {
  background: #fff3e0;
  color: #f57c00;
}

.news-category.category-event {
  background: #f3e5f5;
  color: #7b1fa2;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.news-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: var(--primary-color);
}

.news-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

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

.news-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-more-btn:hover {
  background: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

/* ========================================
   Access Section Enhanced Styles
   ======================================== */
.access-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.route-buttons {
  display: flex;
  gap: 12px;
}

.route-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.route-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.route-btn svg {
  width: 20px;
  height: 20px;
}

.hours-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
}

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.status-badge.status-open {
  background: #d4edda;
  color: #155724;
}

.status-badge.status-closed {
  background: #f8d7da;
  color: #721c24;
}

.status-time {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.info-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

.info-text small {
  display: block;
  margin-top: 5px;
  color: #999;
  font-size: 0.85rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--primary-color);
}

.contact-item a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* Responsive Styles for New Sections */
@media (max-width: 834px) {
  .menu-modal-content {
    max-width: 100%;
    margin: 0;
  }
  
  .menu-modal-image {
    height: 300px;
  }
  
  .menu-modal-info {
    padding: 30px 20px;
  }
  
  .menu-modal-title {
    font-size: 1.5rem;
  }
  
  .news-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .news-thumbnail {
    width: 100%;
    height: 200px;
  }
  
  .route-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .route-btn {
    width: 100%;
    justify-content: center;
  }
  
  .map-overlay {
    bottom: 10px;
    left: 10px;
    right: 10px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .menu-modal.active {
    padding: 0;
  }
  
  .menu-modal-content {
    border-radius: 0;
  }
  
  .menu-modal-image {
    height: 250px;
  }
  
  .menu-modal-info {
    padding: 25px 15px;
  }
  
  .menu-modal-title {
    font-size: 1.3rem;
  }
  
  .menu-modal-description {
    font-size: 0.9rem;
  }
  
  .news-thumbnail {
    height: 180px;
  }
  
  .hours-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ========================================
   Page Top Button
   ======================================== */
.page-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.page-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top-btn:hover {
  background: var(--text-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-top-btn.clicked {
  animation: btnPulse 0.3s ease;
}

@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.9); }
}

.page-top-btn svg {
  color: #fff;
}

/* ========================================
   Enhanced Footer Styles
   ======================================== */
.footer-about {
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-icon:hover::before {
  transform: scale(1);
}

.social-icon svg {
  position: relative;
  z-index: 1;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(232, 159, 60, 0.4);
}

.social-facebook:hover { background: #1877f2; }
.social-instagram:hover { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-twitter:hover { background: #000; }
.social-line:hover { background: #00B900; }

.footer-info svg {
  vertical-align: middle;
}

.footer-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* ========================================
   Language Switcher (Google Translate)
   ======================================== */
.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Google翻訳ウィジェットのカスタマイズ */
#google_translate_element {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
}

#google_translate_element select {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

#google_translate_element select:hover {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}

#google_translate_element select option {
  background: #1a1a1a;
  color: #fff;
  padding: 8px;
}

/* Google翻訳バナーを非表示 */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
  position: static !important;
}

/* Google翻訳バナーの余白を削除 */
.skiptranslate {
  display: none !important;
}

body.translated-ltr {
  top: 0 !important;
  margin-top: 0 !important;
}

body.translated-rtl {
  top: 0 !important;
  margin-top: 0 !important;
}

/* ヘッダーのz-indexを確保 */
.sakura-nav {
  position: relative;
  z-index: 9999 !important;
}

/* Google翻訳のiframeを非表示 */
iframe.skiptranslate {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

#goog-gt-tt {
  display: none !important;
}

.goog-tooltip {
  display: none !important;
}

.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Google翻訳のロゴを小さく */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

.goog-te-gadget span {
  display: none !important;
}

.goog-te-combo {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50px !important;
  color: #fff !important;
  padding: 8px 16px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  outline: none !important;
  transition: all 0.3s ease !important;
}

.goog-te-combo:hover {
  border-color: var(--primary-color) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* ========================================
   Ripple Effect
   ======================================== */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ========================================
   Accessibility Enhancements
   ======================================== */
/* Focus styles for keyboard navigation */
.user-is-tabbing *:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

/* Better focus indicators for interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #FFB84D;
    --text-color: #000;
  }
  
  .social-icon {
    border: 2px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .page-loader {
    display: none !important;
  }
}

/* ========================================
   Performance Optimizations
   ======================================== */
/* Reduce repaints with will-change */
.hamburger,
.nav-menu,
.lightbox-modal,
.menu-modal,
.page-top-btn {
  will-change: transform;
}

/* GPU acceleration for animations */
.fade-in.visible,
.gallery-item,
.menu-item,
.news-item {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Prevent layout shift */
.skeleton-loader {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

/* Contain layout and paint */
.menu-item,
.news-item,
.gallery-item {
  contain: layout paint;
}

/* ========================================
   Design Consistency
   ======================================== */
/* Unified spacing system */
:root {
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-xxxl: 96px;
}

/* Section spacing */
.hero-section,
.info-bar,
.about-section,
.gallery-section,
.menu-section,
.news-section,
.access-section {
  padding: var(--spacing-xxxl) 0;
}

/* Typography hierarchy */
h1, .h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.2; }
h2, .h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.3; }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.4; }
h4, .h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); line-height: 1.5; }
h5, .h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); line-height: 1.5; }

/* Button system */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--text-color);
}

.btn-secondary:hover {
  background: var(--text-color);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 834px) {
  :root {
    --spacing-xxxl: 64px;
    --spacing-xxl: 48px;
    --spacing-xl: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-bottom-left {
    align-items: center;
  }
  
  .page-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xxxl: 48px;
    --spacing-xxl: 32px;
    --spacing-xl: 24px;
  }
  
  .language-switcher {
    flex-direction: column;
    width: 100%;
  }
  
  .lang-btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .lang-notification {
    right: 15px;
    left: 15px;
  }
}

/* ========================================
   News Detail Page Styles
   ======================================== */
.news-detail-page {
  padding-top: 60px;
}

.news-detail-hero {
  background: var(--bg-light);
  padding: 40px 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

.breadcrumb-nav span:last-child {
  color: var(--text-dark);
  font-weight: 500;
}

.news-detail-main {
  padding: 60px 0;
  background: #fff;
}

.news-detail-container {
  max-width: 800px;
  margin: 0 auto;
}

.news-detail-article {
  background: #fff;
}

.news-detail-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--bg-light);
}

.news-detail-date {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 15px;
}

.news-detail-title {
  font-size: 2rem;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.news-detail-thumbnail {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.news-detail-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail-content {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  margin-bottom: 60px;
}

.news-detail-content p {
  margin-bottom: 1.5rem;
}

.news-detail-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
}

.news-detail-content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.news-detail-content ul,
.news-detail-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.news-detail-content li {
  margin-bottom: 0.5rem;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.news-detail-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  text-align: center;
}

.btn-back-to-news {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-back-to-news:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-back-to-news svg {
  transition: transform 0.3s ease;
}

.btn-back-to-news:hover svg {
  transform: translateX(-4px);
}

/* Related News */
.related-news {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid var(--bg-light);
}

.related-news-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-dark);
  text-align: center;
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.related-news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-news-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

.related-news-info {
  padding: 20px;
}

.related-news-date {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 10px;
}

.related-news-card-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-dark);
}

/* ========================================
   News Archive Page Styles
   ======================================== */
.news-archive-page {
  padding-top: 60px;
}

.news-archive-hero {
  background: var(--primary-color);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.news-archive-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.news-archive-description {
  font-size: 1rem;
  opacity: 0.95;
  margin-top: 15px;
}

.news-archive-main {
  padding: 80px 0;
  background: #f8f5f0;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.news-archive-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.news-archive-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-archive-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.news-archive-content {
  padding: 25px;
}

.news-archive-date {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 12px;
}

.news-archive-card-title {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.news-archive-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 1.1rem;
}

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.news-pagination a,
.news-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  background: #fff;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-pagination a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-pagination .current {
  background: var(--primary-color);
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 834px) {
  .news-detail-title {
    font-size: 1.6rem;
  }
  
  .related-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .news-archive-title {
    font-size: 2rem;
  }
  
  .news-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .news-detail-hero {
    padding: 30px 0;
  }
  
  .news-detail-main {
    padding: 40px 0;
  }
  
  .news-detail-title {
    font-size: 1.4rem;
  }
  
  .news-detail-content {
    font-size: 0.95rem;
  }
  
  .related-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-archive-hero {
    padding: 60px 0;
  }
  
  .news-archive-title {
    font-size: 1.6rem;
  }
  
  .news-archive-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .news-pagination a,
  .news-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }
}

/* ========================================
   404 Error Page Styles
   ======================================== */
.error-404-page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
  padding: 80px 0;
}

.error-404-hero {
  width: 100%;
}

.error-404-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.error-404-title {
  font-size: 10rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-404-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.error-404-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(232, 159, 60, 0.3);
}

.btn-primary:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(-3px);
}

/* Responsive */
@media (max-width: 480px) {
  .error-404-page {
    padding: 60px 0;
  }
  
  .error-404-title {
    font-size: 6rem;
  }
  
  .error-404-subtitle {
    font-size: 1.5rem;
  }
  
  .error-404-description {
    font-size: 0.9rem;
  }
  
  .btn-primary {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}
