/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  /* min-widthは769px以上でのみ適用 */
}

@media (min-width: 769px) {
  body {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Section Title - 共通スタイル */
.section-title {
  font-size: 28px;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 3px;
  display: inline-block;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
  
  .section-title::after {
    content: none;
  }
}

.section-title-line-mobile {
  height: 1px;
  width: 100%;
  background-color: #333;
}

@media (min-width: 768px) {
  .section-title-line-mobile {
    display: none;
  }
}

/* ezo準拠: 見出しの残り幅を装飾線にする（vw依存を廃止） */
@media (min-width: 768px) {
  .visual-heading,
  .menu-heading,
  .news-heading,
  .access-heading,
  .contact-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .visual-heading .section-title,
  .menu-heading .section-title,
  .news-heading .section-title,
  .access-heading .section-title,
  .contact-heading .section-title {
    flex-shrink: 0;
  }

  .visual-heading::after,
  .menu-heading::after,
  .news-heading::after,
  .access-heading::after,
  .contact-heading::after {
    content: "";
    flex: 1 1 auto;
    min-width: 0;
    height: 1px;
    background-color: #333;
    align-self: center;
  }
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.hidden {
  opacity: 0;
  pointer-events: none;
}

.header-logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  filter: drop-shadow(0px 0px 16px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 8px rgba(255, 255, 255, 1));
  transition: opacity 0.3s ease;
}

.header-logo.hidden {
  opacity: 0;
  pointer-events: none;
}

.header-logo a {
  display: block;
  margin-left: -4px;
}

.header-logo img {
  width: 90px;
  height: 30px;
}

@media (min-width: 640px) {
  .header-logo {
    padding: 0 32px;
  }
  .header-logo img {
    width: 100px;
    height: 33px;
  }
}

@media (min-width: 1024px) {
  .header-logo {
    padding: 0 40px;
  }
}

/* Header Actions */
.header-actions {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  transition: opacity 0.3s ease;
}

.header-actions.hidden {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 640px) {
  .header-actions {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .header-actions {
    padding: 0 40px;
  }
}

.phone-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  color: #333;
}

.phone-button:hover {
  background-color: #333;
  color: #fff;
}

@media (min-width: 640px) {
  .phone-button {
    display: none;
  }
}

.reservation-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #333;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  color: #333;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.reservation-button:hover {
  background-color: #333;
  color: #fff;
}

.desktop-text {
  display: none;
}

.mobile-text {
  display: inline;
}

@media (min-width: 640px) {
  .desktop-text {
    display: inline;
  }
  .mobile-text {
    display: none;
  }
}

.hamburger-button {
  padding: 4px;
  margin:8px 0 0 0px;
  margin-right: 4px;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0px 0px 16px rgba(255, 255, 255, 1)) drop-shadow(0px 0px 8px rgba(255, 255, 255, 1));
}

.hamburger-button:hover {
  opacity: 0.7;
}

.hamburger-button svg line {
  transition: transform 0.2s ease, opacity 0.2s ease, stroke 0.2s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.hamburger-button.is-open svg line {
  /* 3本線の太さがバラつく（2/2/5）ため、✖表示時は統一 */
  stroke-width: 2;
}

.hamburger-button.is-open svg line:nth-child(1) {
  transform: translateY(20px) rotate(28deg) scaleX(0.94);
}

.hamburger-button.is-open svg line:nth-child(2) {
  opacity: 0;
}

.hamburger-button.is-open svg line:nth-child(3) {
  transform: translateY(-19.5px) rotate(-28deg) scaleX(0.94);
}

/* Full Screen Menu（translateX は横スクロール幅を押し広げるため clip-path で隠す） */
.full-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  background-color: rgba(217, 217, 217, 0.7);
  backdrop-filter: blur(8px);
  z-index: 90;
  clip-path: inset(0 0 0 100%);
  visibility: hidden;
  pointer-events: none;
  transition: clip-path 0.5s ease-in-out, visibility 0s linear 0.5s;
}

@media (min-width: 1024px) {
  .full-menu {
    left: 67%;
  }
}

.full-menu.open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  pointer-events: auto;
  transition: clip-path 0.5s ease-in-out, visibility 0s linear 0s;
}

.full-menu.open ~ .header-logo {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .full-menu.open ~ .header-logo {
    opacity: 1;
    pointer-events: auto;
  }
}

.full-menu-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .full-menu-close {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .full-menu-close {
    padding: 0 32px;
  }
}

.close-menu-button {
  padding: 8px;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 110;
  opacity: 0;
  pointer-events: none;
}

.full-menu.open .close-menu-button {
  opacity: 1;
  pointer-events: auto;
}

/* ハンバーガーが✖に切り替わるため、こちらは非表示で運用 */
.close-menu-button {
  display: none;
}

.close-menu-button:hover {
  opacity: 0.7;
}

.full-menu-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 0 32px;
  gap: 8px; /* 16px → 8px に縮小 */
  min-height: calc(100vh - 176px);
}

@media (min-width: 640px) {
  .full-menu-nav {
    padding: 0 48px;
    gap: 12px; /* 640px以上で少し広げる */
  }
}

.menu-link {
  font-size: 24px;
  font-weight: 300;
  color: #000;
  transition: opacity 0.3s ease;
  text-align: left;
  line-height: 1.2; /* 行間を詰める */
}

.menu-link:hover {
  opacity: 0.7;
}

@media (min-width: 640px) {
  .menu-link {
    font-size: 32px;
    line-height: 1.3; /* 大きいフォントサイズでも行間を詰める */
  }
}

.social-icons {
  display: flex;
  gap: 16px;
  padding-top: 12px; /* 16px → 12px に縮小 */
  margin-top: 8px; /* 追加：メニューリンクとの間隔調整 */
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  color: #000;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #f0f0f0;
}

/* Main Content */
.main-content {
  /* No padding-top needed as hero is full height */
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Catch Copy */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-catch {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 40px;
  max-width: 29rem;
  pointer-events: none;
}

@media (min-width: 640px) {
  .hero-catch {
    padding: 0 32px 40px;
  }
}

@media (min-width: 1024px) {
  .hero-catch {
    padding: 0 40px 40px;
  }
}

.hero-catch-main {
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #333;
  margin-bottom: 8px;
  text-shadow: 0 0 16px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 1), 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.hero-catch-sub {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #333;
  text-shadow: 0 0 16px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 1), 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.mobile-br {
  display: inline;
}

@media (min-width: 768px) {
  .mobile-br {
    display: none;
  }
}

/* Concept Section */
.concept-section {
  padding: 32px 0;
  background-color: #F3F3F3;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .concept-section {
    padding: 64px 0;
  }
}

.concept-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .concept-container {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .concept-container {
    padding: 0 64px;
  }
}

@media (min-width: 1024px) {
  .concept-container {
    padding: 0 80px;
  }
}

.concept-decoration {
  position: absolute;
  width: 63px;
  height: 500px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 1024px) {
  .concept-decoration {
    display: block;
  }
}

.concept-decoration-left {
  left: 40px;
}

.concept-decoration-right {
  right: 40px;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .concept-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 64px 0;
  }
}

@media (min-width: 1024px) {
  .concept-grid {
    gap: 64px;
  }
}

@media (min-width: 1280px) {
  .concept-grid {
    gap: 80px;
  }
}

.concept-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .concept-left {
    gap: 40px;
    padding-left: 80px;
  }
}

@media (min-width: 1280px) {
  .concept-left {
    padding-left: 96px;
  }
}

.concept-title-wrapper {
  position: relative;
}

.concept-title {
  font-size: 28px;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .concept-title {
    font-size: 36px;
  }
}

.concept-title-line {
  height: 1px;
  width: 100%;
  background-color: #333;
}

@media (min-width: 768px) {
  .concept-title-line {
    display: none;
  }
}

.concept-subtitle {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .concept-subtitle {
    font-size: 32px;
  }
}

.concept-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .concept-right {
    padding-right: 80px;
  }
}

@media (min-width: 1280px) {
  .concept-right {
    padding-right: 96px;
  }
}

.concept-text {
  color: #333;
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .concept-text {
    font-size: 18px;
  }
}

.concept-text p {
  margin-bottom: 0;
}

/* Visual Section */
.visual-section {
  padding: 32px 0;
  background-color: #fff;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .visual-section {
    padding: 64px 0;
  }
}

.visual-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .visual-container {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .visual-container {
    padding: 0 64px;
  }
}

@media (min-width: 1024px) {
  .visual-container {
    padding: 0 80px;
  }
}

.visual-heading {
  position: relative;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .visual-heading {
    margin-bottom: 64px;
  }
}

.visual-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .visual-grid {
    gap: 32px;
  }
}

.visual-row {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .visual-row {
    gap: 32px;
    grid-auto-rows: 1fr;
  }
}

.visual-row-1 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .visual-row-1 {
    grid-template-columns: 1.3fr 1fr;
  }
}

.visual-row-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .visual-row-2 {
    grid-template-columns: 0.85fr 1.3fr 0.85fr;
  }
}

.visual-row-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .visual-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.visual-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  min-width: 0;
}

@media (min-width: 768px) {
  .visual-item {
    aspect-ratio: auto;
    height: 100%;
  }
}

.visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Menu Section (Home) */
.menu-section-home {
  padding: 32px 0;
  background-color: #f3f3f3;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .menu-section-home {
    padding: 64px 0;
  }
}

.menu-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .menu-container {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .menu-container {
    padding: 0 64px;
  }
}

@media (min-width: 1024px) {
  .menu-container {
    padding: 0 80px;
  }
}

.menu-heading {
  position: relative;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .menu-heading {
    margin-bottom: 64px;
  }
}

.menu-dinner,
.menu-lunch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .menu-dinner,
  .menu-lunch {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }
}

.menu-dinner-image,
.menu-lunch-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

@media (min-width: 768px) {
  .menu-dinner-image,
  .menu-lunch-image {
    aspect-ratio: auto;
    height: 400px;
  }
}

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

.menu-dinner-text,
.menu-lunch-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SP: メニュー（テキスト）→写真 の順に統一 */
.menu-dinner-text {
  order: 1;
}

.menu-dinner-image {
  order: 2;
}

@media (min-width: 768px) {
  .menu-dinner-image {
    order: 1;
  }

  .menu-dinner-text {
    order: 2;
  }
}

.menu-dinner-title,
.menu-lunch-title {
  font-size: 24px;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .menu-dinner-title,
  .menu-lunch-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.menu-dinner-description,
.menu-lunch-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .menu-dinner-description,
  .menu-lunch-description {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.menu-dinner-link,
.menu-lunch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.menu-dinner-link:hover,
.menu-lunch-link:hover {
  opacity: 0.7;
}

.menu-lunch {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .menu-lunch {
    display: grid;
  }
}

.menu-lunch-text {
  order: 1;
}

.menu-lunch-image {
  order: 2;
}

@media (min-width: 768px) {
  .menu-lunch-text {
    order: 1;
  }
  .menu-lunch-image {
    order: 2;
  }
}

/* Menu Section Detailed Styles */
.menu-item-group {
  margin-bottom: 24px;
}

.menu-item-label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.menu-item-details {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.menu-item-details p {
  margin-bottom: 4px;
}

.menu-item-spacing {
  margin-top: 12px !important;
}

.menu-divider {
  height: 1px;
  width: 100%;
  background-color: #333;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .menu-divider {
    margin-bottom: 64px;
  }
}

/* Read More Button */
.menu-read-more,
.news-read-more {
  margin-top: 48px;
  text-align: right;
}

.read-more-link {
  display: inline-block;
  color: #333;
  font-weight: 200;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.read-more-link:hover {
  opacity: 0.7;
}

.read-more-text {
  display: block;
  font-size: 24px;
  margin-bottom: 0;
}

.read-more-arrow {
  transition: all 0.3s ease-out;
  transform-origin: left;
}

.read-more-link:hover .read-more-arrow {
  transform: scaleX(1.1) translateX(4px);
}

/* News Section (Home) */
.news-section-home {
  padding: 32px 0;
  background-color: #fff;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .news-section-home {
    padding: 64px 0;
  }
}

.news-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .news-container {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .news-container {
    padding: 0 64px;
  }
}

@media (min-width: 1024px) {
  .news-container {
    padding: 0 80px;
  }
}

.news-heading {
  position: relative;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .news-heading {
    margin-bottom: 64px;
  }
}

.news-list-home {
}

.news-list-home .news-item {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #c5c5c5;
  padding: 24px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
}

.news-list-home .news-item:hover {
  background-color: #f9f9f9;
}

.news-list-home .news-date {
  color: #999;
  font-size: 16px;
  font-weight: 300;
  display: inline-block;
  margin-right: 16px;
}

.news-list-home .news-category {
  background-color: #d9d9d9;
  color: #666;
  margin-right: 5px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  min-height: 30px;
}

.news-list-home .news-title {
  color: #333;
  font-size: 20px;
  font-weight: 300;
  margin-top: 12px;
  transition: opacity 0.3s ease;
}

.news-list-home .news-item:hover .news-title {
  opacity: 0.7;
}

.news-loading {
  text-align: center;
  padding: 32px;
  color: #666;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
  .news-item {
    flex-direction: row;
    gap: 24px;
  }
}

.news-item:hover {
  opacity: 0.7;
}

.news-date {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  min-width: 100px;
}

.news-content {
  flex: 1;
}

.news-category {
  display: inline-block;
  padding: 4px 12px;
  background-color: #333;
  color: #fff;
  font-size: 12px;
  margin-bottom: 8px;
}

.news-title-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

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

.news-view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 48px;
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.news-view-all-button:hover {
  background-color: #333;
  color: #fff;
}

/* Owner-Chef Section */
.owner-chef-section {
  background-color: #f3f3f3;
}

.owner-chef-container {
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .owner-chef-container {
    position: relative;
  }
}

@media (min-width: 768px) {
  .owner-chef-section {
    padding: 0;
  }
}

.owner-chef-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .owner-chef-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.owner-chef-text-content {
  background-color: #f3f3f3;
  padding: 0 32px 24px;
  position: relative;
}

@media (min-width: 640px) {
  .owner-chef-text-content {
    padding: 0 40px 40px;
  }
}

@media (min-width: 768px) {
  .owner-chef-text-content {
    padding: 0 80px 40px;
  }
}

@media (min-width: 1280px) {
  .owner-chef-text-content {
    padding: 0 96px 40px;
  }
}

.owner-chef-section-heading {
  padding: 24px 32px 0;
}

@media (min-width: 640px) {
  .owner-chef-section-heading {
    padding: 40px 40px 0;
  }
}

@media (min-width: 768px) {
  .owner-chef-section-heading {
    padding: 64px 80px 0;
  }
}

@media (min-width: 1280px) {
  .owner-chef-section-heading {
    padding: 64px 96px 0;
  }
}

@media (min-width: 768px) {
  .owner-chef-section--heading-on-image {
    position: relative;
  }

  .owner-chef-section-heading--on-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;
    pointer-events: none;
    margin-bottom: 0;
  }

  .owner-chef-section--heading-on-image .owner-chef-text-content {
    padding-top: 5.75rem;
  }

  .owner-chef-section-heading--on-image .section-title-line-desktop {
    pointer-events: auto;
  }
}

.owner-chef-heading {
  position: relative;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .owner-chef-heading {
    margin-bottom: 64px;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

.owner-chef-heading .section-title::after {
  content: none;
}

.owner-chef-heading .section-title-common {
  flex-shrink: 0;
}

.owner-chef-heading .section-title-line-desktop {
  display: none;
}

@media (min-width: 768px) {
  .owner-chef-heading .section-title-line-desktop {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    height: 1px;
    background-color: #333;
    align-self: center;
  }
}

/* owner-chef-heading の position: relative を上書きして、PCでは見出しを写真上に固定 */
@media (min-width: 768px) {
  .owner-chef-section--heading-on-image .owner-chef-section-heading--on-image.owner-chef-heading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;
  }
}

.owner-chef-title {
  font-size: 28px;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .owner-chef-title {
    font-size: 36px;
  }
}

.owner-chef-title-line {
  display: none;
}

.owner-chef-title-line-mobile {
  height: 1px;
  width: 100%;
  background-color: #333;
}

@media (min-width: 768px) {
  .owner-chef-title-line-mobile {
    display: none;
  }
}

.owner-chef-bio-wrapper {
  margin-top: 2rem;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .owner-chef-bio-wrapper {
    margin-top: 3rem;
    padding-bottom: 40px;
  }
}

.owner-chef-name {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.07em;
  line-height: 1.45;
  margin-bottom: 32px;
}

.owner-chef-bio {
  color: #333;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.05em;
}

.owner-chef-bio p {
  margin-bottom: 24px;
}

.owner-chef-bio p:last-child {
  margin-bottom: 0;
}

.owner-chef-image-content {
  position: relative;
  height: 500px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .owner-chef-image-content {
    height: auto;
  }
}

.owner-chef-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:20% 60%;
}

@media (max-width: 768px) {
  .owner-chef-image-content {
    overflow: hidden;
  }

  .owner-chef-image-content img {
    transform: scale(1.2);
    transform-origin: left center;
  }
}



/* Access Section (Home) */
.access-section-home {
  background-color: #fff;
  padding: 32px 0;
}

@media (min-width: 768px) {
  .access-section-home {
    padding: 64px 0;
  }
}

.access-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .access-container {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .access-container {
    padding: 0 64px;
  }
}

@media (min-width: 1024px) {
  .access-container {
    padding: 0 80px;
  }
}

.access-heading {
  position: relative;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .access-heading {
    margin-bottom: 64px;
  }
}

.access-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .access-content {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.access-map {
  position: relative;
  aspect-ratio: 4/3;
  background-color: #ffd9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .access-map {
    aspect-ratio: auto;
    height: 100%;
  }
}

.access-map iframe {
  width: 100%;
  height: 100%;
}

.access-info {
  background-color: #f3f3f3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .access-info {
    padding: 40px;
  }
}

.access-info-item {
  border-bottom: 1px solid #333;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

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

.access-label {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.access-value {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.access-phone {
  font-size: 20px;
  font-weight: 500;
}

.access-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.access-link:hover {
  opacity: 0.7;
}

/* Contact Section (Home) */
.contact-section-home {
  background-color: #fff;
  padding: 40px 0;
}

@media (min-width: 768px) {
  .contact-section-home {
    padding: 64px 0;
  }
}

@media (min-width: 1024px) {
  .contact-section-home {
    padding: 112px 0;
  }
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .contact-container {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .contact-container {
    padding: 0 64px;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    padding: 0 80px;
  }
}

.contact-heading {
  position: relative;
  margin-bottom: 48px;
}

.contact-title {
  font-size: 28px;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 3px;
  padding-right: 16px;
  display: inline-block;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 36px;
    border-right: 1px solid #333;
    padding-right: calc(100vw - 100%);
  }
}

.contact-title-line {
  display: none;
}

.contact-title-line-mobile {
  height: 1px;
  width: 100%;
  background-color: #333;
}

@media (min-width: 768px) {
  .contact-title-line-mobile {
    display: none;
  }
}

.contact-content-sections {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* 電話でのお問い合わせ */
.contact-phone-section {
  padding-bottom: 32px;
  border-bottom: 1px solid #c5c5c5;
}

.contact-phone-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-phone-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.contact-phone-info {
  flex: 1;
}

.contact-section-title {
  font-size: 24px;
  font-weight: 300;
  color: #333;
  margin-bottom: 8px;
}

.contact-phone-number {
  display: block;
  font-size: 36px;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 8px;
  transition: opacity 0.3s ease;
}

@media (min-width: 1024px) {
  .contact-phone-number {
    font-size: 48px;
  }
}

.contact-phone-number:hover {
  opacity: 0.7;
}

contact-phone-hours {
  font-size: 16px;
  font-weight: 300;
  color: #666;
}

/* 取材・撮影窓口 */
.contact-coverage-section {
  /* No border for last section */
}

.contact-coverage-text {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-coverage-note {
  font-size: 14px;
}

.contact-coverage-button-wrapper {
  text-align: right;
}

.contact-coverage-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: rgba(217, 217, 217, 0.6);
  border: 1px solid #000;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.contact-coverage-button:hover {
  background-color: #000;
  color: #fff;
}

/* Footer */
.footer {
  background-color: #f3f3f3;
  border-top: 1px solid #949494;
  padding: 48px 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 300;
}

.footer-nav a {
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-nav span {
  color: #999;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Breadcrumb */
.breadcrumb {
  background-color: #f3f3f3;
  padding: 16px 0;
}

.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

@media (min-width: 640px) {
  .breadcrumb-container {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .breadcrumb-container {
    padding: 0 64px;
  }
}

@media (min-width: 1024px) {
  .breadcrumb-container {
    padding: 0 80px;
  }
}

.breadcrumb-container a {
  color: #666;
  transition: color 0.3s ease;
}

.breadcrumb-container a:hover {
  color: #333;
}

.breadcrumb-container .current {
  color: #333;
}

/* Page Hero */
.page-hero {
  position: relative;
  height: 250px;
  overflow: hidden;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .page-hero {
    height: 350px;
  }
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-title {
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
  .page-hero-title {
    font-size: 72px;
  }
}

/* WordPress Content Styling */
.wordpress-content {
  background: #fff;
  padding: 48px 24px;
}

@media (min-width: 640px) {
  .wordpress-content {
    padding: 48px 40px;
  }
}

@media (min-width: 768px) {
  .wordpress-content {
    padding: 64px 64px;
  }
}

@media (min-width: 1024px) {
  .wordpress-content {
    padding: 64px 80px;
  }
}

.wordpress-content > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.wordpress-content section {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .wordpress-content section {
    margin-bottom: 64px;
  }
}

.wordpress-content h2 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .wordpress-content h2 {
    font-size: 36px;
    margin-bottom: 48px;
  }
}

.wordpress-content h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .wordpress-content h3 {
    font-size: 28px;
  }
}

.wordpress-content p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.wordpress-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 32px;
  border-radius: 4px;
}

/* News Page Styles */
.news-page-section {
  padding: 64px 0;
  background-color: #fff;
}

@media (min-width: 1024px) {
  .news-page-section {
    padding: 96px 0;
  }
}

.news-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .news-page-container {
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .news-page-container {
    padding: 0 64px;
  }
}

@media (min-width: 1024px) {
  .news-page-container {
    padding: 0 80px;
  }
}

/* News Page List */
.news-page-list {
  margin: 0;
}

.news-page-list .news-item {
  border-bottom: 1px solid #c5c5c5;
  padding: 32px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  text-decoration: none;
}

.news-page-list .news-item:hover {
  background-color: #f9f9f9;
}

.news-page-list .news-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.news-page-list .news-item-date {
  color: #999;
  font-size: 16px;
  font-weight: 300;
}

.news-page-list .news-item-category {
  background-color: #d9d9d9;
  color: #666;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 300;
}

.news-page-list .news-item-title {
  color: #333;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.6;
}

.news-page-list .news-item-excerpt {
  color: #666;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
  padding: 32px 0;
}

.pagination-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #c5c5c5;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.pagination-button:hover:not(:disabled) {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.pagination-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #c5c5c5;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 4px;
}

.page-number:hover {
  background-color: #f5f5f5;
  border-color: #999;
}

.page-number.active {
  background-color: #333;
  border-color: #333;
  color: #fff;
  cursor: default;
}

.page-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: #999;
  font-size: 16px;
}

/* Back Button */
.back-button-wrapper {
  margin-top: 64px;
  margin-bottom: 80px;
  text-align: left;
}

@media (min-width: 768px) {
  .back-button-wrapper {
    margin-bottom: 120px;
  }
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-button:hover {
  background-color: #333;
  color: #fff;
}