/* Import Google Fonts */
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap);

/* Custom font example */
/* @font-face {
  font-family: "Your Custom Font";
  font-style: normal;
  font-weight: 400;
  src: url(../font/your-font.ttf);
} */

/* Responsive breakpoints */
/* Desktop: > 1023px */
/* Mobile/Tablet: <= 1023px */

.displayNoneLess1023 {
  display: block;
}

.displayNoneMore1023 {
  display: none;
}

@media screen and (max-width: 1023px) {
  .displayNoneLess1023 {
    display: none;
  }

  .displayNoneMore1023 {
    display: block;
  }
}

/* CSS Variables */
:root {
  --primary-main: #2a7f62;
  --primary-dark: #20624b;
  --accent-yellow: #ffe83e;
  --white-main: #ffffff;
  --white-pale: #f6f9f8;
  --black-main: #333333;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--black-main);
  line-height: 1.6;
}

/* Header Styles */
.header {
  background: var(--white-main);
  backdrop-filter: blur(3px);
  padding: 0 98px 0;
  width: 100%;
}

/* Header Top Bar */
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 12px 0;
}

/* Logo Section */
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.header__logo-icon {
  width: 173px;
  height: auto;
}

.header__logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-main);
  line-height: 1.6;
}

/* Header Actions (CTA/Hamburger) */
.header__actions {
  display: flex;
  align-items: center;
}

.header__reservation-btn {
  background: var(--accent-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 23px 24px;
  gap: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header__reservation-btn:hover {
  opacity: 0.9;
}

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

.header__reservation-content i {
  font-size: 24px;
  color: var(--primary-dark);
}

.header__reservation-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.6;
}

.header__reservation-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
}

.header__nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-main);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.header__nav-item:hover {
  background-color: var(--white-pale);
}

.header__nav-item.active {
  border-bottom: 4px solid var(--primary-main);
}

/* Hamburger Menu Button */
.header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.header__hamburger-icon {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.header__hamburger:hover .header__hamburger-icon {
  opacity: 0.7;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  overflow-y: auto;
  transition: opacity 0.3s ease;
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--white-main);
  box-shadow: -9px 0 12px rgba(0, 0, 0, 0.03), 9px 0 12px rgba(0, 0, 0, 0.03), 0 9px 10px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 0 32px;
  transition: transform 0.3s ease;
  transform: translateX(0);
}

/* Close Button */
.mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--primary-main);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.mobile-menu__close:hover {
  color: var(--primary-dark);
}

/* Mobile Menu Logo */
.mobile-menu__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
}

.mobile-menu__logo-icon {
  width: 173px;
  height: auto;
}/* Mobile Menu Navigation */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.mobile-menu__nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-main);
  text-decoration: none;
  border-radius: 16px;
  transition: background-color 0.3s ease;
}

.mobile-menu__nav-item:hover {
  background-color: var(--white-pale);
}

/* Mobile Menu CTA Section */
.mobile-menu__cta {
  background: var(--accent-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 32px 16px;
  width: 100%;
}

.mobile-menu__cta-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.mobile-menu__cta-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-dark);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.mobile-menu__cta-button {
  background: var(--primary-main);
  color: var(--white-main);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 42px;
  border-radius: 16px;
  display: block;
  width: calc(100% - 32px);
  max-width: 400px;
  text-align: center;
  margin-top: 33px;
  transition: background-color 0.3s ease;
}

.mobile-menu__cta-button:hover {
  background: var(--primary-dark);
}

/* Business Hours Section */
.mobile-menu__hours {
  background: var(--white-main);
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  padding: 16px;
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__hours-table {
  width: 100%;
  border-collapse: collapse;
}

.mobile-menu__hours-table th {
  background: var(--white-pale);
  border-bottom: 1px solid #e3e3e3;
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black-main);
  text-align: center;
}

.mobile-menu__hours-table td {
  border-bottom: 1px solid #e3e3e3;
  padding: 18px 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-main);
}

.mobile-menu__hours-table th:first-child,
.mobile-menu__hours-table td:first-child {
  text-align: left;
  padding-left: 8px;
}

.mobile-menu__hours-time {
  font-size: 12px;
  line-height: 1.6;
}

.mobile-menu__hours-open {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.mobile-menu__hours-closed {
  color: #bdbdbd;
  font-size: 18px;
}

.mobile-menu__hours-notes {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #777777;
  line-height: 1.6;
}

.mobile-menu__hours-notes li {
  margin-bottom: 4px;
}

/* Phone CTA Button */
.mobile-menu__phone-button {
  background: var(--primary-main);
  color: var(--white-main);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  margin: 0 16px;
  transition: background-color 0.3s ease;
}

.mobile-menu__phone-button:hover {
  background: var(--primary-dark);
}

.mobile-menu__phone-icon {
  width: 24px;
  height: 24px;
}

/* Contact Info Section */
.mobile-menu__contact {
  background: var(--white-main);
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  padding: 16px;
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu__contact-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
}

.mobile-menu__contact-list li {
  margin-bottom: 4px;
}

.mobile-menu__contact-list a {
  color: var(--primary-main);
  text-decoration: underline;
}

.mobile-menu__map {
  margin-top: 10px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

/* Responsive Design */
@media screen and (max-width: 1023px) {
  .header {
    padding: 8px 16px 0;
  }

  .header__top {
    padding: 8px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header__hamburger {
    display: flex !important;
  }

  .header__logo {
    justify-content: flex-start;
  }

  /* Ensure desktop navigation is completely hidden on mobile */
  .header__nav {
    display: none !important;
  }

  .header__reservation-btn.displayNoneLess1023 {
    display: none !important;
  }
}

/* Prevent body scroll when menu is open */
body:has(.mobile-menu[style*="display: block"]) {
  overflow: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 683px;
  background-image: url('../img/pc-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.hero__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 68px;
  font-weight: 900;
  color: #20624B;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}

.hero__title .mobile-br {
  display: none;
}

/* Mobile Hero */
@media screen and (max-width: 1023px) {
  .hero {
    height: 567px;
    background-image: url('../img/mobile-hero.png');
    align-items: flex-end;
  }

  .hero__content {
    padding: 0 16px 40px;
  }

  .hero__title {
    font-size: 40px;
    max-width: 100%;
  }

  .hero__title .mobile-br {
    display: inline;
  }
}

/* About Section */
.about {
  background: var(--white-main);
  padding: 72px 120px 32px;
}

.about__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.about__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.about__description {
  background: var(--white-pale);
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  padding: 40px;
  width: 100%;
  max-width: 1040px;
}

.about__description p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0 0 0 0;
}

.about__description-highlight {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.about__profile {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 0 80px;
}

.about__profile-image {
  flex-shrink: 0;
  width: 250px;
  height: 314px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #bdbdbd;
}

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

.about__profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 32px;
}

.about__profile-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__profile-name-jp {
  font-size: 12px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0;
}

.about__profile-name-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about__profile-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0;
}

.about__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 4px 12px;
  border-radius: 120px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  white-space: nowrap;
}

.about__chip--outline {
  background: var(--white-main);
  border: 1px solid var(--primary-main);
  color: var(--black-main);
  font-weight: 700;
}

.about__chip--filled {
  background: var(--primary-main);
  color: var(--white-main);
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(144, 164, 174, 0.2);
}

.about__profile-qualifications {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.about__profile-specialty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.about__profile-specialty-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
}

.about__profile-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
}

.about__profile-bio {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
}

.about__profile-bio p {
  margin: 0;
}

.about__profile-bio-highlight {
  font-weight: 700 !important;
}

/* Carousel */
.about__carousel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.about__carousel-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 320px;
  overflow: hidden;
}

.about__carousel-track {
  display: flex;
  gap: 8px;
  transition: transform 0.5s ease;
  height: 100%;
}

.about__carousel-slide {
  flex: 0 0 auto;
  height: 320px;
  border-radius: 0;
  overflow: hidden;
}

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

.about__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: -9px 0 12px rgba(0, 0, 0, 0.03), 9px 0 12px rgba(0, 0, 0, 0.03), 0 9px 10px rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-main);
  transition: background 0.3s ease;
  z-index: 10;
}

.about__carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.about__carousel-btn--prev {
  left: 65px;
}

.about__carousel-btn--next {
  right: 65px;
}

.about__carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.about__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about__carousel-dot.active {
  background: var(--primary-main);
}

/* Mobile About */
@media screen and (max-width: 1023px) {
  .about {
    padding: 32px 16px;
  }

  .about__container {
    gap: 32px;
  }

  .about__title {
    font-size: 28px;
  }

  .about__description {
    padding: 16px;
  }

  .about__description p {
    font-size: 16px !important;
  }

  .about__description-highlight {
    font-size: 18px !important;
  }

  .about__profile {
    flex-direction: column;
    padding: 0 16px;
    gap: 16px;
  }

  .about__profile-image {
    width: 100%;
    max-width: 100%;
    height: 314px;
    margin: 0;
  }

  .about__profile-info {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .about__profile-header {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .about__profile-name-jp {
    font-size: 12px;
  }

  .about__profile-name {
    font-size: 18px;
  }

  .about__profile-qualifications,
  .about__profile-specialty {
    align-items: flex-start;
  }

  .about__profile-label {
    font-size: 16px;
  }

  .about__profile-bio {
    font-size: 16px;
    margin-top: 8px;
  }

  .about__carousel {
    width: 100vw;
    max-width: 375px;
    margin-left: calc(-50vw + 50%);
  }

  .about__carousel-container {
    height: 240px;
    max-width: 375px;
  }

  .about__carousel-slide {
    height: 240px;
  }

  .about__carousel-btn {
    width: 80px;
    height: 80px;
  }

  .about__carousel-btn svg {
    width: 52px;
    height: 52px;
  }

  .about__carousel-btn--prev {
    left: 0;
  }

  .about__carousel-btn--next {
    right: 0;
  }
}

/* Reasons Section */
.reasons {
  background: var(--white-pale);
  padding: 72px 120px;
}

.reasons__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.reasons__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 1200px;
}

.reasons__title-mobile {
  display: none;
}

.reasons__title-desktop {
  display: inline;
}

.reasons__row {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.reasons__card {
  flex: 1;
  background: var(--white-main);
  border: 1px solid var(--primary-main);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  min-height: 405px;
}

.reasons__card-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reasons__card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reasons__card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  width: 100%;
}

.reasons__card-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  text-align: center;
  margin: 0;
  width: 100%;
}

/* Mobile Reasons */
@media screen and (max-width: 1023px) {
  .reasons {
    padding: 32px 16px;
  }

  .reasons__container {
    gap: 32px;
  }

  .reasons__title {
    font-size: 28px;
    line-height: 1.6;
  }

  .reasons__title-desktop {
    display: none;
  }

  .reasons__title-mobile {
    display: inline;
  }

  .reasons__row {
    flex-direction: column;
    gap: 24px;
  }

  .reasons__card {
    min-height: auto;
    padding: 16px;
    gap: 16px;
  }

  .reasons__card-image {
    height: 180px;
  }

  .reasons__card-title {
    font-size: 18px;
  }

  .reasons__card-description {
    font-size: 16px;
  }
}

/* Symptoms Section */
.symptoms {
  background: var(--white-main);
  padding: 72px 120px;
}

.symptoms__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.symptoms__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.symptoms__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.symptoms__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.symptoms__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.symptoms__row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.symptoms__item {
  width: 213px;
  height: 213px;
  border-radius: 50%;
  background: var(--white-main);
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 33px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.symptoms__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(32, 98, 75, 0.15);
}

.symptoms__item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.symptoms__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.symptoms__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 50px;
  background: var(--primary-main);
  color: var(--white-main);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 16px;
  padding: 12px 24px;
  transition: background-color 0.3s ease;
}

.symptoms__button:hover {
  background: var(--primary-dark);
}

/* Mobile Symptoms */
@media screen and (max-width: 1023px) {
  .symptoms {
    padding: 32px 16px;
  }

  .symptoms__container {
    gap: 32px;
  }

  .symptoms__title {
    font-size: 28px;
  }

  .symptoms__subtitle {
    font-size: 16px;
  }

  .symptoms__grid {
    gap: 24px;
  }

  .symptoms__row {
    flex-direction: column;
    gap: 24px;
  }

  .symptoms__item {
    width: 180px;
    height: 180px;
    padding: 20px 28px;
  }

  .symptoms__label {
    font-size: 18px;
  }

  .symptoms__button {
    width: 100%;
    max-width: 306px;
  }
}

/* Blog Section */
.blog {
  background: var(--white-main);
  padding: 72px 120px;
}

.blog__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.blog__header {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  width: 100%;
}

.blog__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.blog__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.blog__subtitle-mobile {
  display: none;
}

.blog__subtitle-desktop {
  display: inline;
}

/* Carousel */
.blog__carousel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.blog__carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 226px;
  overflow: hidden;
}

.blog__carousel-track {
  display: flex;
  gap: 16px;
  height: 100%;
}

.blog__card {
  flex: 0 0 360px;
  background: var(--white-main);
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 226px;
}

.blog__card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0;
}

.blog__card-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 2.5px 0;
}

.blog__card-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0;
}

.blog__card-link {
  display: inline-block;
  height: 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-main);
  text-decoration: none;
  border-bottom: 1px solid #777777;
  line-height: 1.6;
  align-self: flex-start;
  transition: opacity 0.3s ease;
}

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

.blog__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: -9px 0 12px rgba(0, 0, 0, 0.03), 9px 0 12px rgba(0, 0, 0, 0.03), 0 9px 10px rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-main);
  transition: background 0.3s ease;
  z-index: 10;
}

.blog__carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.blog__carousel-btn--prev {
  left: 0;
}

.blog__carousel-btn--next {
  right: 0;
}

.blog__carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.blog__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.blog__carousel-dot.active {
  background: var(--primary-main);
}

/* Pagination (Mobile only) */
.blog__pagination {
  display: none;
  align-items: center;
  gap: 16px;
}

.blog__pagination-btn {
  background: var(--white-main);
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  height: 24px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--black-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  line-height: 1.6;
}

.blog__pagination-btn:hover:not(.blog__pagination-btn--disabled) {
  background: var(--white-pale);
}

.blog__pagination-btn--disabled {
  color: #bdbdbd;
  cursor: not-allowed;
}

.blog__pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog__pagination-number {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--white-main);
  border: 1px solid #e9e9e9;
  font-size: 12px;
  font-weight: 400;
  color: var(--black-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  line-height: 1.6;
}

.blog__pagination-number:hover {
  background: var(--white-pale);
}

.blog__pagination-number--active {
  background: var(--primary-main);
  color: var(--white-main);
  border-color: var(--primary-main);
}

.blog__pagination-ellipsis {
  font-size: 12px;
  color: var(--black-main);
  padding: 0 4px;
  line-height: 21px;
}

.blog__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 50px;
  background: var(--primary-main);
  color: var(--white-main);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 16px;
  padding: 12px 42px;
  transition: background-color 0.3s ease;
}

.blog__button:hover {
  background: var(--primary-dark);
}

/* Mobile Blog */
@media screen and (max-width: 1023px) {
  .blog {
    padding: 32px 16px;
  }

  .blog__container {
    gap: 24px;
  }

  .blog__title {
    font-size: 28px;
  }

  .blog__subtitle {
    font-size: 16px;
  }

  .blog__subtitle-desktop {
    display: none;
  }

  .blog__subtitle-mobile {
    display: inline;
  }

  /* Hide carousel, show pagination */
  .blog__carousel {
    gap: 16px;
  }

  .blog__carousel-container {
    max-width: 360px;
    height: auto;
    overflow: visible;
  }

  .blog__carousel-track {
    flex-direction: column;
    gap: 16px;
    transform: none !important;
    transition: none !important;
  }

  .blog__card {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 226px;
  }

  .blog__carousel-btn {
    display: none;
  }

  .blog__carousel-dots {
    display: none;
  }

  .blog__pagination {
    display: flex;
  }

  .blog__card-title {
    font-size: 20px;
  }

  .blog__card-description {
    font-size: 16px;
  }

  .blog__card-link {
    font-size: 12px;
    padding: 4px 12px;
    border: 1px solid var(--primary-main);
    border-radius: 120px;
    height: 28px;
    line-height: 1.75;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black-main);
    font-weight: 400;
    background: var(--white-main);
  }

  .blog__card-link:hover {
    background: var(--white-pale);
  }

  .blog__button {
    width: 100%;
    max-width: 360px;
  }
}

/* Reviews Section */
.reviews {
  background: var(--white-pale);
  padding: 72px 120px;
}

.reviews__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.reviews__header {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  width: 100%;
}

.reviews__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.reviews__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Reviews Carousel */
.reviews__carousel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.reviews__carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 184px;
  overflow: hidden;
}

.reviews__carousel-track {
  display: flex;
  gap: 16px;
  height: 100%;
}

.reviews__card {
  flex: 0 0 360px;
  background: var(--white-main);
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 184px;
}

.reviews__card-header {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  padding: 6.1px 0 2.5px;
}

.reviews__card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #e0e0e0;
  flex-shrink: 0;
}

.reviews__card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews__card-name {
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #6b7280;
  line-height: normal;
}

.reviews__card-rating {
  font-family: 'SF Pro Text', sans-serif;
  font-size: 16px;
  color: var(--accent-yellow);
  letter-spacing: 2px;
  line-height: normal;
  height: 19px;
  padding: 0.5px 0 1.5px;
}

.reviews__card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
  padding: 2.5px 0;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.reviews__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: -9px 0 12px rgba(0, 0, 0, 0.03), 9px 0 12px rgba(0, 0, 0, 0.03), 0 9px 10px rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-main);
  transition: background 0.3s ease;
  z-index: 10;
}

.reviews__carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.reviews__carousel-btn--prev {
  left: 0;
}

.reviews__carousel-btn--next {
  right: 0;
}

.reviews__carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.reviews__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reviews__carousel-dot.active {
  background: var(--primary-main);
}

/* Pagination (Mobile only) */
.reviews__pagination {
  display: none;
  align-items: center;
  gap: 16px;
}

.reviews__pagination-btn {
  background: var(--white-main);
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  height: 24px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--black-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  line-height: 1.6;
}

.reviews__pagination-btn:hover:not(.reviews__pagination-btn--disabled) {
  background: var(--white-pale);
}

.reviews__pagination-btn--disabled {
  color: #bdbdbd;
  cursor: not-allowed;
}

.reviews__pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews__pagination-number {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--white-main);
  border: 1px solid #e9e9e9;
  font-size: 12px;
  font-weight: 400;
  color: var(--black-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  line-height: 1.6;
}

.reviews__pagination-number:hover {
  background: var(--white-pale);
}

.reviews__pagination-number--active {
  background: var(--primary-main);
  color: var(--white-main);
  border-color: var(--primary-main);
}

/* CTA Buttons */
.reviews__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 306px;
}

.reviews__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 12px 42px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
  line-height: 1.6;
}

.reviews__button:hover {
  opacity: 0.9;
}

.reviews__button--primary {
  background: var(--primary-main);
  color: var(--white-main);
}

.reviews__button--secondary {
  background: var(--accent-yellow);
  color: var(--primary-dark);
}

.reviews__button--secondary i {
  font-size: 20px;
}

.reviews__button-text-mobile {
  display: none;
}

.reviews__button-text-desktop {
  display: inline;
}

/* Mobile Reviews */
@media screen and (max-width: 1023px) {
  .reviews {
    padding: 32px 16px;
  }

  .reviews__container {
    gap: 24px;
  }

  .reviews__title {
    font-size: 28px;
  }

  .reviews__subtitle {
    font-size: 16px;
  }

  .reviews__carousel {
    gap: 16px;
  }

  .reviews__carousel-container {
    max-width: 360px;
    height: auto;
    overflow: visible;
  }

  .reviews__carousel-track {
    flex-direction: column;
    gap: 16px;
    transform: none !important;
    transition: none !important;
  }

  .reviews__card {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 184px;
  }

  .reviews__carousel-btn {
    display: none;
  }

  .reviews__carousel-dots {
    display: none;
  }

  .reviews__pagination {
    display: flex;
  }

  .reviews__buttons {
    width: 100%;
    max-width: 360px;
  }

  .reviews__button-text-desktop {
    display: none;
  }

  .reviews__button-text-mobile {
    display: inline;
  }
}

/* Pricing Section */
.pricing {
  background: var(--white-main);
  padding: 72px 120px;
}

.pricing__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.pricing__header {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  width: 100%;
}

.pricing__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.pricing__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.pricing__subtitle-mobile {
  display: none;
}

.pricing__subtitle-desktop {
  display: inline;
}

/* Pricing Row */
.pricing__row {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

/* Pricing Cards */
.pricing__card {
  background: var(--white-main);
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  max-width: 548px;
  min-height: 284px;
}

.pricing__card--full {
  max-width: 1138px;
  height: 200px;
  width: 100%;
}

.pricing__card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  padding: 3px 0 3.5px;
}

/* Pricing Tables */
.pricing__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.pricing__table-header {
  background: #f6f9f8;
  border-bottom: 1px solid #e3e3e3;
  padding: 14.5px 12px 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  text-align: left;
  line-height: 1.6;
}

.pricing__table-cell {
  border-bottom: 1px solid #e3e3e3;
  padding: 15px 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}

/* Payment methods table specific styles */
.pricing__table--payment .pricing__table-header {
  text-align: center;
}

.pricing__table--payment .pricing__table-cell {
  text-align: center;
}

.pricing__table--payment .pricing__table-header:nth-child(1) {
  width: 153px;
}

.pricing__table--payment .pricing__table-header:nth-child(2) {
  width: 275px;
}

.pricing__table--payment .pricing__table-header:nth-child(3) {
  width: 210px;
}

.pricing__table--payment .pricing__table-header:nth-child(4) {
  width: 211px;
}

.pricing__table--payment .pricing__table-header:nth-child(5) {
  width: 210px;
}

.pricing__table--payment .pricing__table-header:nth-child(6) {
  width: 210px;
}

/* Pricing Note */
.pricing__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #777777;
  line-height: 1.6;
  margin: 0;
  padding: 4.5px 0 2.5px;
}

/* Mobile Pricing */
@media screen and (max-width: 1023px) {
  .pricing {
    padding: 32px 16px;
  }

  .pricing__container {
    gap: 24px;
  }

  .pricing__title {
    font-size: 28px;
  }

  .pricing__subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .pricing__subtitle-desktop {
    display: none;
  }

  .pricing__subtitle-mobile {
    display: inline;
  }

  .pricing__row {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 343px;
    padding-top: 0;
  }

  .pricing__card {
    max-width: 343px;
    width: 100%;
    height: auto;
    padding: 16px;
  }

  .pricing__card--full {
    max-width: 343px;
    height: auto;
  }

  .pricing__note {
    font-size: 14px;
  }

  /* Mobile payment methods table - custom grid layout */
  .pricing__table--payment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .pricing__table--payment thead {
    display: contents;
  }

  .pricing__table--payment tbody {
    display: contents;
  }

  .pricing__table--payment tr {
    display: contents;
  }

  /* Headers in grid order */
  .pricing__table--payment .pricing__table-header:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    width: auto !important;
    padding: 8px 12px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-header:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    width: auto !important;
    padding: 8px 12px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-header:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    width: auto !important;
    padding: 8px 12px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-header:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
    width: auto !important;
    padding: 8px 12px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-header:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
    width: auto !important;
    padding: 8px 12px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-header:nth-child(6) {
    grid-column: 2;
    grid-row: 5;
    width: auto !important;
    padding: 8px 12px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Data cells in grid order */
  .pricing__table--payment .pricing__table-cell:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
    width: auto !important;
    padding: 8px 12px;
    text-align: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-cell:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
    width: auto !important;
    padding: 8px 12px;
    text-align: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-cell:nth-child(3) {
    grid-column: 1;
    grid-row: 4;
    width: auto !important;
    padding: 8px 12px;
    text-align: center;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-cell:nth-child(4) {
    grid-column: 2;
    grid-row: 4;
    width: auto !important;
    padding: 8px 12px;
    text-align: center;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-cell:nth-child(5) {
    grid-column: 1;
    grid-row: 6;
    width: auto !important;
    padding: 8px 12px;
    text-align: center;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing__table--payment .pricing__table-cell:nth-child(6) {
    grid-column: 2;
    grid-row: 6;
    width: auto !important;
    padding: 8px 12px;
    text-align: center;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* CTA Section */
.cta {
  background: var(--accent-yellow);
  padding: 72px 120px;
}

.cta__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  width: 100%;
}

.cta__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.cta__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #20624B;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.cta__button {
  background: var(--primary-main);
  color: var(--white-main);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 42px;
  border-radius: 16px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s ease;
  line-height: 1.6;
}

.cta__button:hover {
  opacity: 0.9;
}

/* Mobile CTA */
@media screen and (max-width: 1023px) {
  .cta {
    padding: 32px 16px;
  }

  .cta__container {
    gap: 24px;
  }

  .cta__title {
    font-size: 28px;
  }

  .cta__subtitle {
    font-size: 16px;
  }

  .cta__button {
    width: 100%;
    max-width: 343px;
  }
}

/* FAQ Section */
.faq {
  background: var(--white-pale);
  padding: 72px 120px;
}

.faq__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.faq__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1040px;
}

.faq__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq__question {
  background: var(--primary-main);
  color: var(--white-pale);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  padding: 8px 16px;
  border-radius: 54px;
  margin: 0;
}

.faq__answer {
  padding: 8px 16px;
}

.faq__answer p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0;
}

/* Mobile FAQ */
@media screen and (max-width: 1023px) {
  .faq {
    background: var(--white-main);
    padding: 32px 16px;
  }

  .faq__container {
    gap: 24px;
  }

  .faq__title {
    font-size: 28px;
  }

  .faq__list {
    max-width: 100%;
  }

  .faq__question {
    font-size: 18px;
    white-space: normal;
  }

  .faq__answer {
    padding: 8px 16px;
  }

  .faq__answer p {
    font-size: 16px;
  }
}

/* News Section */
.news {
  background: var(--white-main);
  padding: 72px 120px;
}

.news__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.news__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.6;
  text-align: center;
  margin: 0;
  width: 100%;
  max-width: 1200px;
}

.news__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1040px;
}

.news__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  border-top: 1px solid #e3e3e3;
  padding-top: 16px;
}

.news__item:last-child {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 16px;
}

.news__date {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  padding: 0 16px;
  margin: 0;
}

.news__title-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
  padding: 8px 16px;
  margin: 0;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 50px;
  background: var(--primary-main);
  color: var(--white-main);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 16px;
  padding: 12px 42px;
  transition: background-color 0.3s ease;
  line-height: 1.6;
}

.news__button:hover {
  background: var(--primary-dark);
}

/* Mobile News */
@media screen and (max-width: 1023px) {
  .news {
    padding: 56px 20px;
  }

  .news__container {
    gap: 32px;
  }

  .news__title {
    font-size: 28px;
  }

  .news__button {
    width: 100%;
    max-width: 306px;
  }
}

/* Hours & Access Section */
.hours-access {
  background: var(--white-pale);
  padding: 72px 120px;
}

.hours-access__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: center;
}

.hours-access__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.6;
  text-align: center;
  margin: 0;
  width: 100%;
}

.hours-access__content {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1144px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

/* Left Column - Hours */
.hours-access__hours-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 629px;
  height: 405px;
  justify-content: space-between;
}

.hours-access__hours-card {
  background: var(--white-main);
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hours-access__table {
  width: 100%;
  border-collapse: collapse;
}

.hours-access__table-header {
  background: var(--white-pale);
  border-bottom: 1px solid #e3e3e3;
  padding: 14.5px 12px 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black-main);
  text-align: center;
  line-height: 1.6;
}

.hours-access__table-header--first {
  font-size: 16px;
  font-weight: 400;
  width: 143px;
}

.hours-access__table-cell {
  border-bottom: 1px solid #e3e3e3;
  padding: 15px 12px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  line-height: 1.6;
}

.hours-access__table-cell--time {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-main);
}

.hours-access__time-mobile {
  display: none;
}

.hours-access__table-cell--closed {
  font-size: 24px;
  font-weight: 400;
  color: #bdbdbd;
}

.hours-access__open-icon {
  width: auto;
  height: auto;
  display: inline-block;
}

.hours-access__notes {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #777777;
  line-height: 1.6;
}

.hours-access__notes li {
  margin-bottom: 0;
}

/* Booking Buttons */
.hours-access__buttons {
  display: flex;
  gap: 16px;
  height: 50px;
}

.hours-access__button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 12px 24px;
  border-radius: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
  line-height: 1.6;
}

.hours-access__button:hover {
  opacity: 0.9;
}

.hours-access__button--web {
  background: var(--accent-yellow);
  color: var(--primary-dark);
}

.hours-access__button--web i {
  font-size: 24px;
}

.hours-access__button--line {
  background: #06c755;
  color: var(--white-main);
  font-size: 16px;
}

.hours-access__button--line svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hours-access__button--phone {
  background: var(--primary-main);
  color: var(--white-main);
  font-size: 18px;
}

.hours-access__button-icon {
  width: 24px;
  height: 24px;
}

/* Right Column - Access Info */
.hours-access__access-card {
  background: var(--white-main);
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 495px;
  height: 405px;
}

.hours-access__info-list {
  list-style: disc;
  padding-left: 19.2px;
  margin: 0;
  padding-top: 4.5px;
  padding-bottom: 2.5px;
}

.hours-access__info-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  margin-bottom: 0;
}

.hours-access__phone-link {
  color: var(--primary-dark);
  text-decoration: none;
}

.hours-access__phone-link:hover {
  text-decoration: underline;
}

.hours-access__map {
  width: 451.2px;
  height: 252px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.hours-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Mobile Hours & Access */
@media screen and (max-width: 1023px) {
  .hours-access {
    padding: 32px 16px;
  }

  .hours-access__container {
    gap: 24px;
  }

  .hours-access__title {
    font-size: 28px;
  }

  .hours-access__content {
    flex-direction: column;
    gap: 16px;
    max-width: 343px;
    padding-top: 0;
  }

  /* Left Column - Hours (becomes top section) */
  .hours-access__hours-column {
    width: 100%;
    gap: 16px;
    height: auto;
    justify-content: flex-start;
  }

  .hours-access__hours-card {
    padding: 16px;
    gap: 8px;
  }

  .hours-access__table-header {
    font-size: 14px;
    padding: 8px 4px;
  }

  .hours-access__table-header--first {
    font-size: 14px;
    width: auto;
  }

  .hours-access__table-cell {
    padding: 18px 4px;
  }

  .hours-access__table-cell--time {
    font-size: 14px;
    width: 110px;
    padding: 18px 12px;
  }

  .hours-access__time-desktop {
    display: none;
  }

  .hours-access__time-mobile {
    display: inline;
  }

  .hours-access__table-cell--closed {
    font-size: 18px;
  }

  .hours-access__open-icon {
    width: 16px;
    height: 16px;
  }

  .hours-access__notes {
    padding-left: 18px;
    font-size: 12px;
  }

  /* Booking Buttons - Stacked vertically with different order */
  .hours-access__buttons {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  .hours-access__button {
    width: 100%;
    order: 0;
  }

  /* Reorder buttons: Phone, LINE, Web */
  .hours-access__button--phone {
    order: 1;
  }

  .hours-access__button--line {
    order: 2;
  }

  .hours-access__button--web {
    order: 3;
  }

  /* Right Column - Access Info (becomes bottom section) */
  .hours-access__access-card {
    width: 100%;
    height: auto;
    padding: 16px;
  }

  .hours-access__info-list {
    padding-left: 18px;
  }

  .hours-access__info-list li {
    font-size: 14px;
  }

  .hours-access__map {
    width: 100%;
    height: 252px;
  }
}

/* Footer Section */
.footer {
  background: var(--primary-dark);
  padding: 48px 0 80px;
}

.footer__container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

/* Logo & Branding */
.footer__branding {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer__logo {
  background: var(--white-main);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-icon {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-main);
  line-height: 1.6;
}

.footer__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white-main);
  line-height: 1.6;
}

/* Navigation */
.footer__nav {
  display: flex;
  gap: 0;
  width: 100%;
}

.footer__nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 12px 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white-main);
  text-decoration: none;
  line-height: 1.6;
  transition: opacity 0.3s ease;
  width: 140px;
}

.footer__nav-link:hover {
  opacity: 0.8;
}

/* Contact Info */
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer__info-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white-main);
  line-height: 1.6;
  margin: 0;
  white-space: nowrap;
}

.footer__info-text--mobile {
  display: none;
}

.footer__info-link {
  color: var(--white-main);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.footer__info-link:hover {
  opacity: 0.8;
}

/* Copyright */
.footer__copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #f6f6f6;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Footer */
@media screen and (max-width: 1023px) {
  .footer {
    padding: 72px 0;
  }

  .footer__container {
    max-width: 100%;
    padding: 0;
  }

  .footer__nav {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .footer__nav-link {
    width: 140px;
    flex: 0 0 auto;
    padding: 12px 0;
    height: 50px;
  }

  .footer__info-text--desktop {
    display: none;
  }

  .footer__info-text--mobile {
    display: block;
  }

  .footer__info-text {
    font-size: 16px;
    white-space: normal;
  }

  .footer__copyright {
    font-size: 12px;
  }
}

/* ============================
   ABOUT PAGE STYLES
   ============================ */

/* Breadcrumb Navigation */
.breadcrumb {
  background: var(--white-main);
  padding: 24px 120px 16px;
}

.breadcrumb__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  text-decoration: underline;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: var(--primary-main);
}

.breadcrumb__separator {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
}

.breadcrumb__current {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
}

/* Mobile Breadcrumb */
@media screen and (max-width: 1023px) {
  .breadcrumb {
    padding: 16px 16px 12px;
  }
}

/* Page Title Section */
.page-title {
  background: var(--white-pale);
  padding: 40px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Mobile Page Title */
@media screen and (max-width: 1023px) {
  .page-title {
    padding: 32px 16px;
  }

  .page-title__text {
    font-size: 28px;
  }
}

/* Facility Carousel */
.facility-carousel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 40px 0 32px;
  background: var(--white-main);
}

.facility-carousel__container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 320px;
  overflow: hidden;
}

.facility-carousel__track {
  display: flex;
  gap: 8px;
  transition: transform 0.5s ease;
  height: 100%;
  position: relative;
}

.facility-carousel__slide {
  flex: 0 0 auto;
  height: 320px;
  border-radius: 0;
  overflow: hidden;
}

.facility-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: -9px 0 12px rgba(0, 0, 0, 0.03), 9px 0 12px rgba(0, 0, 0, 0.03), 0 9px 10px rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-main);
  transition: background 0.3s ease;
  z-index: 10;
}

.facility-carousel__btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.facility-carousel__btn--prev {
  left: 65px;
}

.facility-carousel__btn--next {
  right: 65px;
}

.facility-carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.facility-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.facility-carousel__dot.active {
  background: var(--primary-main);
}

/* Mobile Facility Carousel */
@media screen and (max-width: 1023px) {
  .facility-carousel {
    padding: 32px 0 24px;
  }

  .facility-carousel__container {
    height: 240px;
    max-width: 375px;
  }

  .facility-carousel__slide {
    height: 240px;
  }

  .facility-carousel__btn {
    width: 60px;
    height: 60px;
  }

  .facility-carousel__btn svg {
    width: 40px;
    height: 40px;
  }

  .facility-carousel__btn--prev {
    left: 8px;
  }

  .facility-carousel__btn--next {
    right: 8px;
  }
}

/* Clinic Description Section */
.clinic-description {
  background: var(--white-main);
  padding: 40px 120px;
}

.clinic-description__container {
  max-width: 862px;
  margin: 0 auto;
  text-align: center;
}

.clinic-description__container p {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Clinic Description */
@media screen and (max-width: 1023px) {
  .clinic-description {
    background: var(--white-main);
    padding: 32px 16px;
  }

  .clinic-description__container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    max-width: 343px;
  }

  .clinic-description__container p {
    font-size: 16px;
  }
}

/* Staff Section */
.staff-section {
  background: var(--white-main);
  padding: 40px 120px;
}

.staff-section__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.staff-section__no-data {
  text-align: center;
  color: #777777;
  font-size: 16px;
  padding: 40px 0;
}

/* Staff Card */
.staff-card {
  display: flex;
  gap: 24px;
  width: 100%;
  padding: 0 80px;
}

.staff-card--reverse {
  flex-direction: row-reverse;
}

.staff-card__image {
  flex-shrink: 0;
  width: 250px;
  height: 314px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #bdbdbd;
}

.staff-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 32px;
}

.staff-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff-card__name-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.staff-card__furigana {
  font-size: 12px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0;
}

.staff-card__name-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.staff-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
  margin: 0;
}

.staff-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 4px 12px;
  border-radius: 120px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  white-space: nowrap;
}

.staff-card__chip--outline {
  background: var(--white-main);
  border: 1px solid var(--primary-main);
  color: var(--black-main);
  font-weight: 700;
}

.staff-card__chip--filled {
  background: var(--primary-main);
  color: var(--white-main);
  font-weight: 400;
  box-shadow: 0 2px 4px rgba(144, 164, 174, 0.2);
}

.staff-card__qualifications {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.staff-card__specialty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.staff-card__specialty-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
}

.staff-card__label {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
}

.staff-card__bio {
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.6;
}

.staff-card__bio p {
  margin: 0 0 8px 0;
}

.staff-card__bio p:last-child {
  margin-bottom: 0;
}

.staff-card__bio-highlight {
  font-weight: 700 !important;
}

/* Mobile Staff Section */
@media screen and (max-width: 1023px) {
  .staff-section {
    padding: 32px 16px;
  }

  .staff-card {
    flex-direction: column;
    padding: 0;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 343px;
    margin-left: auto;
    margin-right: auto;
  }

  .staff-card--reverse {
    flex-direction: column;
  }

  .staff-card__image {
    width: 100%;
    max-width: 100%;
    height: 314px;
    margin: 0;
  }

  .staff-card__content {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .staff-card__header {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .staff-card__furigana {
    font-size: 12px;
  }

  .staff-card__name {
    font-size: 18px;
  }

  .staff-card__qualifications,
  .staff-card__specialty {
    align-items: flex-start;
  }

  .staff-card__label {
    font-size: 16px;
  }

  .staff-card__bio {
    font-size: 16px;
    margin-top: 8px;
  }
}

/* Symptom Detail Page */
.symptom-detail {
  background: var(--white-main);
  padding: 40px 120px 64px;
}

.symptom-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.symptom-detail__icon {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--white-main);
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05), 9px 0 12px rgba(32, 98, 75, 0.05), 0 9px 10px rgba(32, 98, 75, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 33px;
}

.symptom-detail__icon img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.symptom-detail__content {
  flex: 1;
}

.symptom-detail__description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black-main);
  margin-bottom: 32px;
}

.symptom-detail__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  margin-top: 32px;
}

.symptom-detail__heading:first-of-type {
  margin-top: 0;
}

.symptom-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.symptom-detail__list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black-main);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.symptom-detail__list li:before {
  content: "・";
  position: absolute;
  left: 0;
}

.symptom-detail__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.symptom-detail__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 35%;
  min-width: 250px;
}

.symptom-detail__button--back {
  background: var(--primary-main);
  color: var(--white-main);
}

.symptom-detail__button--back:hover {
  background: var(--primary-dark);
}

.symptom-detail__button--reservation {
  background: var(--accent-yellow);
  color: var(--black-main);
}

.symptom-detail__button--reservation:hover {
  background: #ffd700;
}

/* Mobile Symptom Detail */
@media screen and (max-width: 1023px) {
  .symptom-detail {
    padding: 32px 16px;
  }

  .symptom-detail__container {
    flex-direction: column;
    gap: 24px;
  }

  .symptom-detail__icon {
    width: 213px;
    height: 213px;
    padding: 24px 33px;
    margin: 0 auto;
  }

  .symptom-detail__heading {
    font-size: 24px;
  }

  .symptom-detail__cta {
    gap: 16px;
  }

  .symptom-detail__button {
    width: 100%;
    min-width: auto;
  }
}

/* Back to Top Button */
.back-to-top {
  background: var(--white-main);
  padding: 0 120px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-to-top__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 50px;
  background: var(--primary-main);
  color: var(--white-main);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 16px;
  padding: 12px 42px;
  transition: background-color 0.3s ease;
  line-height: 1.6;
}

.back-to-top__button:hover {
  background: var(--primary-dark);
}

/* Mobile Back to Top */
@media screen and (max-width: 1023px) {
  .back-to-top {
    padding: 0 16px 32px;
  }

  .back-to-top__button {
    width: 100%;
    max-width: 343px;
  }
}

/* Reviews Section */
.reviews-section {
  background: var(--white-main);
  padding: 40px 120px;
}

.reviews-section__container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
  margin-bottom: 40px;
}

/* Review Card */
.review-card {
  background: var(--white-main);
  border-radius: 16px;
  padding: 21px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--black-main);
  line-height: 1.6;
}

.review-card__stars {
  font-size: 14px;
  color: #FFD700;
  letter-spacing: 2px;
  line-height: 1;
}

.review-card__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  line-height: 1.8;
  margin: 0;
}

/* Pagination */
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.reviews-pagination__button {
  padding: 8px 16px;
  background: var(--white-main);
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-pagination__button:hover {
  background: var(--white-pale);
  border-color: var(--primary-main);
}

.reviews-pagination__numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews-pagination__number {
  min-width: 36px;
  height: 36px;
  padding: 8px 12px;
  background: var(--white-main);
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-pagination__number:hover {
  background: var(--white-pale);
  border-color: var(--primary-main);
}

.reviews-pagination__number--active {
  background: var(--primary-main);
  border-color: var(--primary-main);
  color: var(--white-main);
  font-weight: 700;
}

.reviews-pagination__ellipsis {
  padding: 0 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--black-main);
}

/* Reviews CTA Buttons */
.reviews-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reviews-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 50px;
  border-radius: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  transition: all 0.3s ease;
  line-height: 1.6;
  gap: 8px;
}

.reviews-cta__button--review {
  background: var(--primary-main);
  color: var(--white-main);
}

.reviews-cta__button--review:hover {
  background: var(--primary-dark);
}

.reviews-cta__button--booking {
  background: var(--accent-yellow);
  color: var(--black-main);
}

.reviews-cta__button--booking:hover {
  background: #F5DC00;
}

.reviews-cta__button--booking i {
  font-size: 18px;
}

/* Mobile Reviews Section */
@media screen and (max-width: 1023px) {
  .reviews-section {
    padding: 32px 16px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .review-card {
    padding: 16px;
  }

  .reviews-pagination {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .reviews-pagination__button {
    padding: 6px 12px;
    font-size: 13px;
  }

  .reviews-pagination__numbers {
    gap: 4px;
  }

  .reviews-pagination__number {
    min-width: 32px;
    height: 32px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .reviews-cta {
    gap: 12px;
  }

  .reviews-cta__button {
    width: 100%;
    max-width: 343px;
  }
}

/* Base styles will be added later */
/* Reviews Page - 患者様の声 */
.reviews-page {
  background: var(--white-main);
  padding: 72px 120px;
}

.reviews-page__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* Loading and Error States */
.reviews-page__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}

.reviews-page__loading p {
  font-size: 16px;
  color: #666;
}

.error-message {
  color: #d32f2f;
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
}

.no-reviews {
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  color: #666;
}

.reviews-page__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-page__row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.reviews-page__card {
  background: var(--white-main);
  padding: 21px;
  border-radius: 16px;
  box-shadow: -9px 0 12px rgba(32, 98, 75, 0.05),
              9px 0 12px rgba(32, 98, 75, 0.05),
              0 9px 10px rgba(32, 98, 75, 0.05);
  width: 360px;
  height: 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-page__card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 4px;
}

.reviews-page__card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.reviews-page__card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-page__card-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6B7280;
}

.reviews-page__card-rating {
  font-size: 16px;
  color: #FFE83E;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.reviews-page__card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1A1A1A;
  margin: 0;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Reviews Page Pagination */
.reviews-page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviews-page__pagination-btn {
  width: 41px;
  height: 24px;
  padding: 0;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  background: var(--white-main);
  color: #333333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-page__pagination-btn:hover:not(.reviews-page__pagination-btn--disabled) {
  background: #F5F5F5;
}

.reviews-page__pagination-btn--disabled {
  border-color: #E9E9E9;
  color: #BDBDBD;
  cursor: not-allowed;
  background: var(--white-main);
}

.reviews-page__pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews-page__pagination-number {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  background: var(--white-main);
  color: #333333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-page__pagination-number:hover {
  background: #F5F5F5;
}

.reviews-page__pagination-number--active {
  background: #2A7F62;
  border-color: #2A7F62;
  color: var(--white-main);
}

.reviews-page__pagination-ellipsis {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: #333333;
  padding: 0;
}

/* Reviews Page CTA */
.reviews-page__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reviews-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 50px;
  border-radius: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  transition: all 0.3s ease;
  line-height: 1.6;
  gap: 8px;
}

.reviews-page__button--primary {
  background: var(--primary-main);
  color: var(--white-main);
}

.reviews-page__button--primary:hover {
  background: var(--primary-dark);
}

.reviews-page__button--secondary {
  background: var(--accent-yellow);
  color: var(--black-main);
}

.reviews-page__button--secondary:hover {
  background: #F5DC00;
}

.reviews-page__button--secondary i {
  font-size: 18px;
}

/* Mobile Reviews Page */
@media screen and (max-width: 1023px) {
  .reviews-page {
    padding: 32px 16px;
  }

  .reviews-page__container {
    gap: 32px;
  }

  .reviews-page__grid {
    gap: 16px;
  }

  .reviews-page__row {
    flex-direction: column;
    gap: 16px;
  }

  .reviews-page__card {
    width: 100%;
    padding: 16px;
    height: 240px;
  }

  .reviews-page__pagination {
    flex-wrap: wrap;
    gap: 12px;
  }

  .reviews-page__pagination-btn {
    width: 36px;
    height: 20px;
    font-size: 11px;
  }

  .reviews-page__pagination-numbers {
    gap: 4px;
  }

  .reviews-page__pagination-number {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .reviews-page__cta {
    gap: 12px;
  }

  .reviews-page__button {
    width: 100%;
    max-width: 343px;
  }
}

/* ===================================
   Blog Page
   =================================== */

.blog-page {
  padding: 48px 0;
  background: var(--white-main);
}

.blog-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.blog-page__list {
  display: flex;
  flex-direction: column;
}

/* Blog Card */
.blog-card {
  background: var(--white-main);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 2px;
  border-bottom: 1px solid #e5e7eb;
}

.blog-card:last-child {
  border-bottom: none;
}

.blog-card__link {
  display: flex;
  gap: 24px;
  text-decoration: none;
  color: var(--black-main);
  height: 100%;
}

.blog-card__link:hover {
  opacity: 0.8;
}

.blog-card__image {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.blog-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black-main);
  margin: 0;
}

.blog-card__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black-light);
  margin: 0;
}

.blog-card__tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.blog-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 4px 12px;
  background: var(--white-main);
  border: 1px solid var(--primary-main);
  border-radius: 120px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
  color: var(--black-main);
}

/* Mobile Blog Page */
@media screen and (max-width: 1023px) {
  .blog-page {
    padding: 32px 0;
  }

  .blog-page__container {
    padding: 0 16px;
    gap: 32px;
  }

  .blog-page__list {
    gap: 0;
  }

  .blog-card {
    padding: 21px;
  }

  .blog-card__link {
    flex-direction: column;
    gap: 16px;
  }

  .blog-card__image {
    width: 100%;
    height: 200px;
  }

  .blog-card__content {
    padding: 0;
  }

  .blog-card__title {
    font-size: 18px;
  }

  .blog-card__description {
    font-size: 13px;
  }
}

/* ===================================
   Blog Post Detail Page
   =================================== */

.blog-post {
  padding: 48px 0;
  background: var(--white-main);
}

.blog-post__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Blog Post Header */
.blog-post__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-post__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black-main);
  margin: 0;
}

.blog-post__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Blog Post Featured Image */
.blog-post__featured-image {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.blog-post__featured-image img {
  width: 60%;
  height: auto;
  display: block;
}

/* Blog Post Content */
.blog-post__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.blog-post__content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--black-main);
  margin: 0;
}

.blog-post__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-post__section-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--black-main);
  margin: 0;
  padding-left: 8px;
  border-left: 3px solid var(--primary-main);
}

.blog-post__illustration {
  width: 100%;
  display: flex;
  justify-content: center;
}

.blog-post__instructions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

/* Blog Post CTA Buttons */
.blog-post__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.blog-post__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 50px;
  border-radius: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  transition: all 0.3s ease;
  gap: 8px;
}

.blog-post__button--back {
  background: var(--primary-main);
  color: var(--white-main);
}

.blog-post__button--back:hover {
  background: var(--primary-dark);
}

.blog-post__button--booking {
  background: var(--accent-yellow);
  color: var(--primary-dark);
}

.blog-post__button--booking:hover {
  background: #F5DC00;
}

.blog-post__button--booking i {
  font-size: 18px;
}

/* Mobile Blog Post */
@media screen and (max-width: 1023px) {
  .blog-post {
    padding: 32px 0;
  }

  .blog-post__container {
    padding: 0 16px;
    gap: 24px;
  }

  .blog-post__title {
    font-size: 24px;
  }

  .blog-post__featured-image img {
    width: 100%;
  }

  .blog-post__content {
    gap: 20px;
  }

  .blog-post__content p {
    font-size: 14px;
  }

  .blog-post__section-heading {
    font-size: 18px;
    padding-left: 12px;
    border-left-width: 3px;
  }

  .blog-post__cta {
    align-items: stretch;
    width: 100%;
    max-width: 343px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-post__button {
    width: 100%;
  }
}

/* ===================================
   News Page
   =================================== */

.news-page {
  padding: 48px 0;
  background: var(--white-main);
}

.news-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.news-page__list {
  display: flex;
  flex-direction: column;
}

/* News Item */
.news-item {
  background: var(--white-main);
  border-bottom: 1px solid #e5e7eb;
}

.news-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.news-item__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--black-main);
}

.news-item__link:hover .news-item__title {
  opacity: 0.8;
}

.news-item__date {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black-main);
  padding: 16px;
  padding-bottom: 0;
}

.news-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--black-main);
  margin: 0;
  padding: 8px 16px;
  padding-bottom: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

/* Mobile News Page */
@media screen and (max-width: 1023px) {
  .news-page {
    padding: 32px 0;
  }

  .news-page__container {
    padding: 0 16px;
    gap: 32px;
  }

  .news-item__date {
    font-size: 12px;
  }

  .news-item__title {
    font-size: 14px;
  }
}
/* ===================================
   News Post Detail Page
   =================================== */

.news-post {
  padding: 72px 0;
  background: var(--white-main);
}

.news-post__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Header */
.news-post__header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.news-post__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--black-main);
  margin: 0;
}

.news-post__date {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black-main);
}

/* Content */
.news-post__content {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black-main);
}

.news-post__content p {
  margin: 0;
}

.news-post__content strong {
  font-weight: 700;
}

/* CTA Buttons */
.news-post__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 306px;
  margin: 0 auto;
}

.news-post__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  padding: 12px 42px;
  border-radius: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.news-post__button:hover {
  opacity: 0.8;
}

.news-post__button--back {
  background: var(--primary-main);
  color: var(--white-main);
}

.news-post__button--booking {
  background: var(--accent-yellow);
  color: var(--primary-dark);
}

.news-post__button i {
  font-size: 20px;
}

/* Mobile News Post */
@media screen and (max-width: 1023px) {
  .news-post {
    padding: 48px 0;
  }

  .news-post__container {
    padding: 0 24px;
    gap: 24px;
  }

  .news-post__title {
    font-size: 24px;
  }

  .news-post__date {
    font-size: 12px;
  }

  .news-post__content {
    font-size: 14px;
  }

  .news-post__cta {
    width: 100%;
    max-width: 343px;
  }
}
/* ===================================
   Reservation Page
   =================================== */

/* Simple Header (Logo Only) */
.reservation-header {
  height: 74px;
  background: var(--white-main);
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  padding: 0 120px;
}

.reservation-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.reservation-header__logo-icon {
  width: 173px;
  height: auto;
}

.reservation-header__logo-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-main);
}

/* Title Section */
.reservation-title {
  background: var(--white-pale);
  padding: 40px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-title__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--primary-dark);
  text-align: center;
  margin: 0;
}

/* Main Content */
.reservation-content {
  background: var(--white-pale);
  padding: 72px 0;
}

.reservation-content__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  gap: 40px;
}

.reservation-content__left,
.reservation-content__right {
  flex: 1;
  max-width: 580px;
}

.reservation-content__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Override hours-access components for reservation page */
.reservation-content__left .hours-access__access-card {
  width: 100%;
  height: auto;
  flex: 1;
}

.reservation-content__left .hours-access__map {
  flex: 1;
  align-self: center;
}

.reservation-content__left .hours-access__map iframe {
  height: 100%;
  min-height: 300px;
}

/* Reservation Form Card */
.reservation-form-card {
  background: var(--white-main);
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 32px;
}

/* Reservation Form */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.reservation-form__field {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reservation-form__field--textarea {
  align-items: flex-start;
}

.reservation-form__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--black-main);
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 11px;
}

.reservation-form__field--textarea .reservation-form__label {
  padding-top: 6px;
}

.reservation-form__required {
  color: #E53935;
  font-size: 12px;
}

.reservation-form__input {
  flex: 1;
  height: 48px;
  padding: 12px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  background: var(--white-main);
  transition: border-color 0.3s ease;
}

.reservation-form__input:focus {
  outline: none;
  border-color: var(--primary-main);
}

.reservation-form__input::placeholder {
  color: #BDBDBD;
}

select.reservation-form__input {
  padding-right: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.reservation-form__input--datetime {
  width: 100%;
  cursor: pointer;
}

.reservation-form__input--datetime::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: opacity(0.6);
}

.reservation-form__input--datetime::-webkit-calendar-picker-indicator:hover {
  filter: opacity(1);
}

.reservation-form__textarea {
  flex: 1;
  min-height: 120px;
  padding: 12px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--black-main);
  background: var(--white-main);
  resize: vertical;
  transition: border-color 0.3s ease;
}

.reservation-form__textarea:focus {
  outline: none;
  border-color: var(--primary-main);
}

.reservation-form__textarea::placeholder {
  color: #BDBDBD;
}


.reservation-picker {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: auto;
  min-width: 400px;
  background: var(--white-main);
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.reservation-picker__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.reservation-picker__header-left {
  display: flex;
  gap: 4px;
}

.reservation-picker__header-right {
  display: flex;
  gap: 4px;
}

.reservation-picker__month {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--black-main);
  flex: 1;
  text-align: center;
}

.reservation-picker__nav {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--black-main);
  cursor: pointer;
  padding: 4px;
}

.reservation-picker__time-display {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--black-main);
  margin-left: 16px;
}

.reservation-picker__body {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.reservation-picker__calendar {
  border-collapse: collapse;
  flex-shrink: 0;
}

.reservation-picker__calendar th {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #757575;
  text-align: center;
  padding: 8px;
}

.reservation-picker__calendar td {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black-main);
  text-align: center;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.reservation-picker__calendar td:hover {
  background-color: #F5F5F5;
}

.reservation-picker__calendar td:empty {
  cursor: default;
}

.reservation-picker__calendar td:empty:hover {
  background-color: transparent;
}

.reservation-picker__day--today {
  border: 1px solid var(--black-main) !important;
  font-weight: 700;
}

.reservation-picker__day--selected {
  background-color: var(--primary-main) !important;
  color: var(--white-main) !important;
  font-weight: 700;
}

.reservation-picker__time {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.reservation-picker__time-column {
  display: flex;
  flex-direction: column;
  width: 32px;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
}

.reservation-picker__time-item {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--black-main);
  text-align: center;
  padding: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reservation-picker__time-item:hover {
  background-color: #F5F5F5;
}

.reservation-picker__ok {
  align-self: flex-end;
  width: auto;
  min-width: 60px;
  height: 32px;
  background: var(--primary-main);
  color: var(--white-main);
  border: none;
  border-radius: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 16px;
  transition: opacity 0.3s ease;
}

.reservation-picker__ok:hover {
  opacity: 0.9;
}

/* Form Footer */
.reservation-form__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
}

.reservation-form__privacy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reservation-form__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.reservation-form__privacy-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: var(--black-main);
  cursor: pointer;
}

.reservation-form__privacy-link {
  color: var(--primary-main);
  text-decoration: underline;
}

.reservation-form__submit {
  width: 306px;
  height: 50px;
  background: var(--accent-yellow);
  color: var(--primary-dark);
  border: none;
  border-radius: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.reservation-form__submit:hover {
  opacity: 0.9;
}

/* Reservation Thanks Page */
.reservation-thanks {
  background: var(--white-pale);
  padding: 72px 120px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-thanks__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 800px;
}

.reservation-thanks__message {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: var(--black-main);
  text-align: center;
}

.reservation-thanks__message p {
  margin: 0;
}

.reservation-thanks__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 50px;
  background: var(--primary-main);
  color: var(--white-main);
  border-radius: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.reservation-thanks__button:hover {
  opacity: 0.9;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 1023px) {
  /* Header */
  .reservation-header {
    padding: 0 24px;
    height: 60px;
  }

  /* Title */
  .reservation-title {
    padding: 32px 16px;
  }

  .reservation-title__text {
    font-size: 28px;
  }

  /* Content */
  .reservation-content {
    padding: 48px 0;
  }

  .reservation-content__container {
    padding: 0 24px;
    flex-direction: column;
    gap: 32px;
  }

  .reservation-content__left,
  .reservation-content__right {
    max-width: 100%;
  }

  /* Reorder: Form first, then hours/map */
  .reservation-content__right {
    order: -1;
  }

  /* Left Column Spacing */
  .reservation-content__left {
    gap: 24px;
  }

  /* Form Card */
  .reservation-form-card {
    padding: 24px;
  }

  /* Form */
  .reservation-form__field {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .reservation-form__label {
    min-width: auto;
    padding-top: 0;
  }

  .reservation-form__field--textarea .reservation-form__label {
    padding-top: 0;
  }

  .reservation-form__input,
  .reservation-form__textarea,
  .reservation-form__datetime {
    width: 100%;
  }

  .reservation-form__submit {
    width: 100%;
    max-width: 343px;
  }

  /* Picker */
  .reservation-picker {
    left: 0;
    right: 0;
  }

  /* Thanks Page */
  .reservation-thanks {
    padding: 48px 24px;
  }

  .reservation-thanks__button {
    width: 100%;
    max-width: 343px;
  }
}

/* ===================================
   Privacy Policy Page
   =================================== */

/* Privacy Policy Section */
.privacy-policy {
  background: var(--white-main);
  padding: 48px 0 64px;
}

.privacy-policy__container {
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Introduction */
.privacy-policy__intro {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}

.privacy-policy__intro strong {
  font-weight: 700;
}

/* Article Sections */
.privacy-policy__article {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}

.privacy-policy__article-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 8px 0;
}

.privacy-policy__article p {
  margin: 0 0 8px 0;
}

.privacy-policy__article p:last-child {
  margin-bottom: 0;
}

/* Ordered Lists */
.privacy-policy__article ol {
  margin: 0;
  padding-left: 24px;
  list-style-type: decimal;
}

.privacy-policy__article ol ol {
  list-style-type: lower-alpha;
  padding-left: 24px;
}

.privacy-policy__article ol ol ol {
  list-style-type: lower-roman;
  padding-left: 24px;
}

.privacy-policy__article li {
  margin-bottom: 4px;
  line-height: 1.6;
}

.privacy-policy__article li:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.privacy-policy__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.privacy-policy__button {
  background: #2A7F62;
  color: var(--white-main);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  padding: 12px 42px;
  border-radius: 16px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.privacy-policy__button:hover {
  background: #20624B;
}

/* Mobile Styles */
@media screen and (max-width: 1023px) {
  .privacy-policy {
    padding: 32px 0 48px;
  }

  .privacy-policy__container {
    padding: 0 16px;
  }

  .privacy-policy__article-title {
    font-size: 16px;
  }

  .privacy-policy__button {
    width: 100%;
    max-width: 343px;
  }
}

/* Footer Privacy Policy Link */
.footer__privacy {
  text-align: center;
  margin: 0;
}

.footer__privacy-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-main);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__privacy-link:hover {
  opacity: 0.8;
}
