/* ========================================
   Sub Page: Base
   ======================================== */
html, body {
  height: auto;
  overflow: auto;
}

/* ========================================
   Page Hero
   ======================================== */
.page-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 40px;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
}

/* ========================================
   Page Content
   ======================================== */
.page-content {
  padding-left: 200px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 60vh;
}

/* ========================================
   Page Footer
   ======================================== */
.page-footer {
  padding-left: 200px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: #b08d57;
  margin: 0 auto 50px;
}

/* ========================================
   About Page
   ======================================== */
.about-concept {
  margin-bottom: 100px;
}

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

.about-concept-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-concept-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about-concept-text p {
  font-size: 14px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.about-staff {
  margin-bottom: 100px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.staff-card {
  text-align: center;
}

.staff-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 20px;
}

.staff-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.staff-card:hover .staff-img img {
  filter: grayscale(0%);
}

.staff-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.staff-role {
  font-size: 12px;
  color: #b08d57;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.staff-quote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  line-height: 1.8;
}

.about-gallery {
  margin-bottom: 60px;
}

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

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* ========================================
   Menu Page
   ======================================== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-tab {
  padding: 15px 35px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.menu-tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.menu-tab.active {
  color: #b08d57;
  border-bottom-color: #b08d57;
}

.menu-category {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.menu-category.active {
  display: block;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.menu-item-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #b08d57;
  letter-spacing: 0.05em;
  margin-left: 30px;
  white-space: nowrap;
}

.menu-highlight {
  margin-top: 80px;
}

.menu-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.menu-highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.menu-highlight-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.menu-highlight-body {
  padding: 20px;
}

.menu-highlight-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.menu-highlight-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 10px;
}

.menu-highlight-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #b08d57;
}

/* ========================================
   Access Page
   ======================================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.access-map {
  background: #1a1a1a;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.access-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  color: #b08d57;
}

.access-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.8;
}

.access-info-label {
  min-width: 80px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.access-info-value {
  color: rgba(255, 255, 255, 0.9);
}

.access-routes {
  margin-bottom: 80px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.route-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.route-icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #b08d57;
}

.route-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.route-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}

.hours-section {
  margin-bottom: 60px;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 15px 20px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-table th {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  width: 40%;
}

.hours-table td {
  color: rgba(255, 255, 255, 0.9);
}

.hours-table tr.holiday td {
  color: #b08d57;
}

/* ========================================
   Blog Page
   ======================================== */
.blog-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.blog-card-page {
  display: block;
  background: #1a1a1a;
  overflow: hidden;
  transition: transform 0.3s;
  color: inherit;
}

.blog-card-page:hover {
  transform: translateY(-5px);
}

.blog-card-page-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card-page:hover .blog-card-page-img img {
  transform: scale(1.05);
}

.blog-card-page-body {
  padding: 25px 20px;
}

.blog-card-page-category {
  display: inline-block;
  font-size: 11px;
  color: #b08d57;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  border: 1px solid rgba(176, 141, 87, 0.3);
  padding: 3px 10px;
}

.blog-card-page-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.blog-card-page-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.pagination a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.pagination .active {
  color: #b08d57;
  border-color: #b08d57;
  background: rgba(176, 141, 87, 0.1);
}

.pagination .dots {
  border: none;
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Blog Article (Single Post)
   ======================================== */
.blog-article {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.blog-article-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.blog-article-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article-body p {
  font-size: 14px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.blog-article-back {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s, border-color 0.3s;
}

.blog-article-back:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  color: #b08d57;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.form-label .required {
  color: #b08d57;
  margin-left: 5px;
  font-size: 11px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #b08d57;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-textarea {
  height: 150px;
  resize: vertical;
}

.form-submit {
  display: inline-block;
  padding: 16px 60px;
  background: transparent;
  border: 1px solid #b08d57;
  color: #b08d57;
  font-size: 14px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-family: 'Cormorant Garamond', serif;
}

.form-submit:hover {
  background: #b08d57;
  color: #000;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  color: #b08d57;
}

.contact-info-block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-block:last-child {
  border-bottom: none;
}

.contact-info-block h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-weight: 400;
}

.contact-info-block p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   Responsive (Sub Pages)
   ======================================== */
@media (max-width: 1024px) {
  .page-content {
    padding-left: 160px;
    padding-right: 30px;
  }
  .page-footer {
    padding-left: 160px;
  }
}

@media (max-width: 768px) {
  .page-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-concept-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 350px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    flex-wrap: wrap;
  }

  .menu-tab {
    padding: 12px 20px;
    font-size: 14px;
  }

  .menu-highlight-grid {
    grid-template-columns: 1fr;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid-page {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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