/* ============================================
   Section: Info (ご案内)
   ============================================ */
.section-info {
  padding: 0;
  background-color: var(--color-white);
}

.section-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* ---- News (Left) ---- */
.section-info__news {
  background-image: url('../images/news-bg.png');
  background-size: cover;
  background-position: center;
  padding: var(--spacing-3xl) var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-info__news-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.news-cards-wrapper {
  width: 100%;
  position: relative;
}

.news-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-height: 340px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #018E4A #e0e0e0;
}

.news-cards::-webkit-scrollbar {
  width: 6px;
}

.news-cards::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 3px;
}

.news-cards::-webkit-scrollbar-thumb {
  background: #018E4A;
  border-radius: 3px;
}

.news-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.news-card__date {
  display: block;
  font-family: var(--font-english);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.news-card__title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: var(--line-height-base);
}

.news-card__excerpt {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
}

.section-info__news-action {
  margin-top: var(--spacing-lg);
  text-align: center;
}

.btn--news-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 274px;
  padding: 14px 28px;
  background-color: #FFE902;
  color: var(--color-text);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  border: 4px solid var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
}

.btn--news-more:hover {
  opacity: 0.9;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn__arrow-circle {
  display: flex;
  align-items: center;
}

.section-info__guide {
  background-color: #F7F9F1;
  padding: var(--spacing-3xl) var(--spacing-2xl);
}

.section-info__title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

/* Schedule Table */
.schedule-table {
  margin-bottom: var(--spacing-md);
}

.schedule-table__notice {
  font-size: 16px;
  font-weight: var(--font-weight-light);
  letter-spacing: 0.11em;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
  text-align: center;
}

.schedule-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
  text-align: center;
  border: 1px solid #3A1E08;
}

.schedule-table__th {
  background-color: #FFE902;
  color: var(--color-text);
  padding: 8px 6px;
  font-weight: var(--font-weight-light);
  font-size: 16px;
}

.schedule-table__th--sat {
  background-color: #3b7dd8;
}

.schedule-table__th--access {
  background-color: #54CCEA;
  color: #3A1E08;
}

.schedule-table__th--highlight {
  background-color: #FFE902;
  color: var(--color-text);
}

.schedule-table__th--sun {
  background-color: #d85555;
}

.schedule-table__td {
  padding: 6px 6px;
  border: none;
  font-size: 13px;
  background-color: #FFFFFF;
}

.schedule-table__table tbody tr+tr .schedule-table__td {
  border-top: 1px solid #3A1E08;
}

.schedule-table__td--time {
  font-size: 16px;
  font-weight: var(--font-weight-light);
  text-align: center;
  white-space: nowrap;
  background-color: #FFFFFF;
  padding-top: 0;
  padding-bottom: 0;
}

.schedule-table__td-note {
  display: block;
  font-size: 11px;
  margin-top: -4px;
  color: var(--color-text-muted);
  font-weight: normal;
}

.schedule-doctor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: var(--font-weight-light);
}

.schedule-doctor__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #018E4A;
}

.schedule-doctor--closed {
  color: var(--color-text-muted);
}

.schedule-doctor--closed .schedule-doctor__dot {
  display: none;
}

.schedule-table__note {
  font-size: 16px;
  font-weight: var(--font-weight-light);
  color: var(--color-text-muted);
  margin-top: 12px;
  line-height: 1.4;
  text-align: center;
}

.schedule-table--mini .schedule-table__table {
  font-size: 11px;
}

.schedule-table--mini .schedule-table__th,
.schedule-table--mini .schedule-table__td {
  padding: 5px 4px;
}

.section-info__map {
  margin-bottom: var(--spacing-md);
  line-height: 0;
}

.section-info__map iframe {
  width: 100%;
}

.section-info__guide-actions {
  margin-top: var(--spacing-lg);
  text-align: center;
}

/* Google map button */
.btn--google-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 274px;
  padding: 14px 28px;
  background-color: var(--color-primary);
  border: 4px solid var(--color-white);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
}

.btn--google-map:hover {
  background-color: var(--color-primary-dark);
  opacity: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--google-map .btn__icon {
  display: flex;
  align-items: center;
}

.btn--google-map .btn__arrow {
  display: flex;
  align-items: center;
}

/* ============================================
   Accident Banner
   ============================================ */
.accident-banner {
  padding: var(--spacing-xl) var(--spacing-lg);
  padding-top: 100px;
}

.accident-banner__wrapper {
  max-width: var(--content-max);
  margin: 0 auto;
}

.accident-banner__link {
  display: block;
  transition: box-shadow var(--transition-base);
}

.accident-banner__link:hover {
  opacity: 1;
  box-shadow: var(--shadow-lg);
}

.accident-banner__img {
  width: 100%;
  height: auto;
  display: block;
}

.accident-banner__img--sp {
  display: none;
}

/* ============================================
   Features
   ============================================ */
.section-features {
  padding-bottom: 0;
  background: url('../images/features-bg.png') right 0 / contain no-repeat;
  background-color: var(--color-white);
  margin-top: -80px;
  padding-top: 80px;
}

.page-template-page-clinic .section-features {
  padding-top: 52px;
}

.page-template-page-clinic .section-features__heading-area {
  padding-top: 125px;
  margin-bottom: 0;
}

.section-features__heading-area {
  padding: 75px 0 var(--spacing-md);
  background: transparent;
}

.section-features__heading-area--clinic {
  padding-bottom: 40px;
}

.section-features__clinic-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--color-text);
  text-align: center;
}

.section-features__heading-area .hero__badges {
  justify-content: center;
  padding-left: 0;
  margin-bottom: 24px;
}

.feature-block .hero__badges {
  justify-content: center;
  padding-left: 0;
  margin-top: var(--spacing-lg);
}

.feature-block .hero__badges .badge-circle--yellow,
.feature-block .hero__badges .badge-circle--green,
.feature-block .hero__badges .badge-circle--blue {
  width: 320px;
  height: 320px;
  gap: 12px;
}

.page-template-page-clinic .feature-block .hero__badges .badge-circle--yellow,
.page-template-page-clinic .feature-block .hero__badges .badge-circle--green,
.page-template-page-clinic .feature-block .hero__badges .badge-circle--blue {
  background-color: transparent;
  box-shadow: none;
}

.feature-block .hero__badges .badge-circle__sub {
  font-size: 39.6px;
}

.feature-block .hero__badges .badge-circle__main {
  font-size: 44px;
}

.feature-block .hero__badges .badge-circle--blue .badge-circle__sub {
  letter-spacing: -0.07em;
}

.feature-block .hero__badges .badge-circle--blue .badge-circle__main {
  letter-spacing: 0.1em;
}

.section-features__heading-area .section__heading {
  margin-bottom: 0;
}

.section-features__heading-area .container {
  padding: 0;
}

.text-accent {
  color: var(--color-primary);
}

/* Features heading badge */
.section__title-ja--features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 52px;
  letter-spacing: 0.15em;
  margin-left: 6px;
}

.section__title-ja--features-stacked {
  flex-direction: column;
  gap: 0;
}

.features-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 148px;
  flex-shrink: 0;
}

.features-badge__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features-badge__text {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--color-white);
  font-size: 58px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.feature-block {
  padding: var(--spacing-2xl) 0;
}

.feature-block--bg-01 {
  background-color: #FFF8E7;
}

.feature-block--bg-02 {
  background-color: var(--color-white);
  background-image: url('../images/feature-bg-02.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 80px;
}

.feature-block--bg-03 {
  background: url('../images/feature-bg-03.png') center / cover no-repeat;
}

.feature-block-group--04-05 {
  background: url('../images/feature-bg-04-05.png') center calc(100% - 40px) / cover no-repeat;
}

.feature-block__inner {
  display: flex;
  align-items: stretch;
  gap: var(--spacing-2xl);
}

.feature-block--left .feature-block__inner {
  flex-direction: row-reverse;
}

.feature-block--left {
  margin-bottom: 0;
}

.feature-block--center .feature-block__inner {
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.feature-block--center .feature-block__desc {
  padding-left: 100px;
  padding-right: 100px;
}

.feature-block--center .feature-block__image-col {
  max-width: 620px;
  width: 100%;
}

.feature-block__image-col {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 0;
}

.feature-block__number {
  margin-bottom: var(--spacing-md);
}

.feature-number__img {
  width: 120px;
  height: auto;
}

.feature-block__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.feature-block__image-wrapper--placeholder {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-pale));
}

.feature-block__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.feature-block-group--04-05 .feature-block:last-child .feature-block__text-col {
  margin-top: 30px;
}

.feature-block-group--04-05 .feature-block:first-child {
  padding-bottom: 20px;
}

.feature-block-group--04-05 .feature-block:first-child .feature-block__image {
  margin-top: 100px;
}

.feature-block:last-child .feature-block__image-col {
  padding-top: 0;
  align-items: center;
}

.feature-block__text-col {
  flex: 1;
  min-width: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.feature-block__title {
  font-size: 36px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
  text-align: center;
}

.feature-block__desc {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-light);
}

.feature-block__sub-desc {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-light);
  margin-top: var(--spacing-md);
}

/* Feature sub cards */
.feature-block__sub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: 60px;
}

.feature-sub-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 16px 16px 0;
}

.feature-sub-card__image-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  padding: 0;
}

.feature-sub-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
}

.feature-sub-card__label {
  padding: 16px 12px 20px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  white-space: nowrap;
}

/* Feature sub images */
.feature-block__sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.feature-block__sub-images .feature-sub-image:first-child {
  grid-row: 1 / 2;
}

.feature-block__sub-images .feature-sub-image:nth-child(2) {
  grid-row: 1 / 2;
}

.feature-block__sub-images .feature-sub-image:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

.feature-sub-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1.2;
}

.feature-sub-image--placeholder {
  background: linear-gradient(135deg, var(--color-primary-light), #d4edda);
}

.feature-sub-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Medical Content
   ============================================ */
.section-medical {
  padding: 0;
}

.section-medical__bg {
  padding: 0;
  background-color: #F5F4EB;
  position: relative;
  overflow: hidden;
}

.section-medical__deco {
  position: absolute;
  top: 0;
  width: auto;
  height: 320px;
  z-index: 0;
  pointer-events: none;
}

.section-medical__deco--left {
  left: 0;
  width: 320px;
  height: 320px;
  max-height: none;
  clip-path: circle(270px at 30px 30px);
  object-fit: cover;
  object-position: center;
}

.section-medical__deco--right {
  right: 0;
  width: 320px;
  height: 320px;
  max-height: none;
  clip-path: circle(270px at calc(100% - 30px) 30px);
  object-fit: cover;
  object-position: center;
}

.section-medical__header {
  text-align: center;
  margin-top: 140px;
  margin-bottom: 140px;
  padding: 0 var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.section-medical__header .section-title {
  font-size: 52px;
}

.section-title-deco {
  display: block;
  margin: 32px auto 0;
  width: 120px;
  height: auto;
}

.doctor-profile__section-title-text,
.section-title-deco-wrap {
  position: relative;
  display: inline-block;
}

.doctor-profile__section-title-text > .section-title-deco,
.section-title-deco-wrap > .section-title-deco {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 32px 0 0;
}

/* Homepage features title — shift deco left to sit under text only (excluding badge) */
.section__title-ja--features-deco {
  /* badge_width / 2 = 145 / 2 */
  transform: translateX(-72.5px);
}

.section-medical__main-title {
  font-size: clamp(80px, 12vw, 200px);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  letter-spacing: 0.1em;
}

.medical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: var(--spacing-2xl);
  background-color: var(--color-white);
  padding: 44px 44px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.medical-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
  transition: transform var(--transition-base);
}

.medical-card:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.medical-card__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.medical-card__body {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  z-index: 1;
}

.medical-card__title {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: 0.07em;
}

.medical-card__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Worries */
.section-worries__heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 1;
  margin-bottom: var(--spacing-sm);
}

.section-worries__heading-bg {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.section-worries__heading-bg--sp {
  display: none;
}

.section-worries__title {
  position: absolute;
  color: var(--color-white);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.15em;
  z-index: 1;
}

.section-worries {
  grid-column: 1 / -1;
  margin: 50px -44px 0;
  padding: 0 var(--spacing-2xl) 50px;
  background-color: #BCE1D1;
  border-radius: 0;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-sm);
}

.worry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md) var(--spacing-sm);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  position: relative;
}

.arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.worry-card__arrow {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;
}

.worry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  opacity: 1;
}

.worry-card__icon-wrapper {
  width: 110px;
  height: 110px;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.worry-card__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.worry-card__icon-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary-light);
}

.worry-card__title {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xs);
}

/* ============================================
   Self-pay
   ============================================ */
.section-selfpay {
  padding: var(--spacing-3xl) 0;
  background: url('../images/selfpay-bg.png') center / cover no-repeat;
  position: relative;
}

.section-selfpay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.section-selfpay .container {
  position: relative;
  z-index: 1;
}

.selfpay-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.selfpay-card {
  display: flex;
  width: 420px;
  height: 214px;
  background: var(--color-white);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.selfpay-card:hover {
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.selfpay-card__image-wrapper {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selfpay-card__image-wrapper--placeholder {
  background: linear-gradient(135deg, var(--color-primary-light), #d4edda);
}

.selfpay-card__image {
  width: 80%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.selfpay-card__body {
  flex: 1;
  padding: var(--spacing-sm) 20px var(--spacing-sm) 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.selfpay-card__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: var(--spacing-xs);
}

.selfpay-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: var(--line-height-loose);
  flex: 1;
}

.selfpay-card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}

/* ============================================
   Doctors
   ============================================ */
.section-doctors {
  padding: 0;
  background: url('../images/doctors-bg.png') center top / cover no-repeat;
  background-color: var(--color-white);
}

.section-doctors__heading-area {
  padding: 140px 0 0;
  background: transparent;
}

.home .section-doctors__heading-area {
  display: none;
}

.section-doctors__heading-area .section__heading {
  margin-bottom: 0;
}

.section-doctors__heading-area .section__title-ja {
  font-size: 36px;
}

.section-doctors__bg {
  padding: 160px 0 var(--spacing-3xl);
}

.section-doctors__heading {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-2xl);
}

.doctor-profile {
  display: flex;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
  align-items: flex-start;
}

.doctor-profile--main .doctor-profile__image-wrapper {
  width: 420px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.doctor-profile--sub {
  gap: var(--spacing-xl);
  max-width: 900px;
  margin: 0 auto var(--spacing-3xl);
}

.doctor-profile__image-wrapper--placeholder {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-primary-light), #d4edda);
}

.doctor-profile__image {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-profile__text-col {
  flex: 1;
}

.doctor-profile__section-title {
  text-align: left;
  margin-bottom: var(--spacing-lg);
  font-size: 52px;
}

@media (min-width: 769px) {
  .doctor-profile__section-title .section-title-deco {
    display: none;
  }
}

.doctor-profile--main .doctor-profile__image-wrapper .doctor-profile__name-area {
  margin-top: var(--spacing-md);
  justify-content: center;
}

.doctor-profile--main .doctor-profile__image-wrapper .doctor-profile__name {
  letter-spacing: 0.1em;
}

.doctor-profile__name-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--spacing-md);
}

.doctor-profile__role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 0;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
}

.doctor-profile__name {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  padding-right: 1em; /* 左右のバランス調整用 */
}

/* ---- Read More (CSS-only accordion) ---- */
.read-more-2 {
  position: relative;
}

.read-more-2 input {
  display: none;
}

.read-more-2 label {
  display: none;
}

/* 共通アコーディオンスタイル（mixin的に使うクラス） */
.read-more-2--active p {
  display: -webkit-box;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.read-more-2--active:has(:checked) p {
  display: block;
}

.read-more-2--active p::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, rgba(248, 248, 241, 0) 0, rgba(248, 248, 241, .9) 50%, rgba(248, 248, 241, .9) 0, #F8F8F1);
  content: '';
}

.read-more-2--active:has(:checked) p::after {
  content: none;
}

.read-more-2--active label {
  display: flex;
  align-items: center;
  gap: 0 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #4f96f6;
  font-size: .8em;
  cursor: pointer;
}

.read-more-2--active label:hover {
  color: #c7511f;
  text-decoration: underline;
}

.read-more-2--active label .read-more-2__arrow-down {
  display: inline-block;
  width: 10px;
  height: 5px;
  background-color: #b6bdc3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.read-more-2--active label .read-more-2__arrow-up {
  display: none;
}

.read-more-2--active label .read-more-2__text-open {
  display: inline;
}

.read-more-2--active label .read-more-2__text-close {
  display: none;
}

/* チェック時：閉じるに切替 */
.read-more-2--active:has(:checked) label {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  justify-content: center;
  margin-top: 8px;
}

.read-more-2--active:has(:checked) label .read-more-2__arrow-down {
  display: none;
}

.read-more-2--active:has(:checked) label .read-more-2__arrow-up {
  display: inline-block;
  width: 10px;
  height: 5px;
  background-color: #b6bdc3;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.read-more-2--active:has(:checked) label .read-more-2__text-open {
  display: none;
}

.read-more-2--active:has(:checked) label .read-more-2__text-close {
  display: inline;
}

/* 分割型: 後半テキストを丸ごと開閉（PC/SP共通） */
.read-more-2--split {
  position: relative;
  width: 100%;
}

.read-more-2--split p {
  position: relative;
  margin: 0;
  max-height: 1.6em;
  overflow: hidden;
}

.read-more-2--split p::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(248, 248, 241, 0) 0%, #F8F8F1 90%);
  content: '';
}

.read-more-2--split:has(:checked) p {
  max-height: none;
  overflow: visible;
}

.read-more-2--split:has(:checked) p::after {
  content: none;
}

.read-more-2--split label {
  display: flex;
  align-items: center;
  gap: 0 4px;
  justify-content: center;
  margin-top: 8px;
  color: #4f96f6;
  font-size: .8em;
  cursor: pointer;
}

.read-more-2--split label:hover {
  color: #c7511f;
  text-decoration: underline;
}

.read-more-2--split label .read-more-2__arrow-down {
  display: inline-block;
  width: 10px;
  height: 5px;
  background-color: #b6bdc3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.read-more-2--split label .read-more-2__arrow-up {
  display: none;
}

.read-more-2--split label .read-more-2__text-open {
  display: inline;
}

.read-more-2--split label .read-more-2__text-close {
  display: none;
}

.read-more-2--split:has(:checked) label .read-more-2__arrow-down {
  display: none;
}

.read-more-2--split:has(:checked) label .read-more-2__arrow-up {
  display: inline-block;
  width: 10px;
  height: 5px;
  background-color: #b6bdc3;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.read-more-2--split:has(:checked) label .read-more-2__text-open {
  display: none;
}

.read-more-2--split:has(:checked) label .read-more-2__text-close {
  display: inline;
}

/* SPのみ有効（--always でないもの） */
@media (max-width: 768px) {
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) {
    /* SP時は --active と同じ振る舞い */
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) p {
    display: -webkit-box;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split):has(:checked) p {
    display: block;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) p::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, rgba(248, 248, 241, 0) 0, rgba(248, 248, 241, .9) 50%, rgba(248, 248, 241, .9) 0, #F8F8F1);
    content: '';
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split):has(:checked) p::after {
    content: none;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) label {
    display: flex;
    align-items: center;
    gap: 0 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #4f96f6;
    font-size: .8em;
    cursor: pointer;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) label:hover {
    color: #c7511f;
    text-decoration: underline;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) label .read-more-2__arrow-down {
    display: inline-block;
    width: 10px;
    height: 5px;
    background-color: #b6bdc3;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) label .read-more-2__arrow-up {
    display: none;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) label .read-more-2__text-open {
    display: inline;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split) label .read-more-2__text-close {
    display: none;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split):has(:checked) label {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    margin-top: 8px;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split):has(:checked) label .read-more-2__arrow-down {
    display: none;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split):has(:checked) label .read-more-2__arrow-up {
    display: inline-block;
    width: 10px;
    height: 5px;
    background-color: #b6bdc3;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split):has(:checked) label .read-more-2__text-open {
    display: none;
  }
  .read-more-2:not(.read-more-2--always):not(.read-more-2--split):has(:checked) label .read-more-2__text-close {
    display: inline;
  }
}

.doctor-profile__message {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-light);
  text-align: left;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

/* Clinic photos */
.clinic-photos {
  display: flex;
  justify-content: center;
}

.clinic-photos__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.clinic-photos__item--placeholder {
  background: linear-gradient(135deg, var(--color-primary-light), #d4edda);
}

.clinic-photos__image {
  width: 93%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.clinic-photos-sp {
  display: none;
}

.clinic-photos-sp__image {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  border-radius: 0;
}

/* ============================================
   Column
   ============================================ */
.section-column {
  padding: var(--spacing-3xl) 0;
  background-color: #018E4A;
}

.section-column__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}

.section-column__title {
  text-align: left;
  font-size: 36px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-column__more-link {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-base);
}

.section-column__more-link:hover {
  opacity: 0.7;
}

.column-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.column-card {
  display: flex;
  align-items: stretch;
  min-height: 170px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.column-card:hover {
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.column-card__image-wrapper {
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  padding: 15px;
}

.column-card__image-wrapper--placeholder {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
}

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

.column-card__body {
  flex: 1;
  padding: 20px var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.column-card__date {
  font-family: var(--font-english);
  font-size: 16px;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.column-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: var(--line-height-base);
  margin-bottom: 6px;
}

.column-card__excerpt {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.column-card__excerpt-wrap {
  flex: 1;
  min-width: 0;
}

.column-card__more {
  font-size: inherit;
  color: var(--color-text-light);
}

/* ---- Column Archive (2-column layout) ---- */
.section-column-archive {
  padding: 60px 0 80px;
  background: url('../images/news-bg.png') center / cover no-repeat;
  position: relative;
}

.section-column-archive::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 249, 241, 0.7);
}

.section-column-archive .container {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  padding-right: 30px;
}

.column-archive {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ---- Sidebar ---- */
.column-archive__sidebar {
  flex: 3;
  min-width: 0;
  order: 1;
}

.column-sidebar__block {
  margin-bottom: 30px;
}

.column-sidebar__heading {
  display: inline-block;
  padding: 6px 40px;
  border-radius: 18.5px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  width: 100%;
  text-align: center;
}

.column-sidebar__heading--green {
  background-color: #018E4A;
}

.column-sidebar__heading--blue {
  background-color: #00ACDF;
}

.column-sidebar__heading--yellow {
  background-color: #F8DA21;
  color: #3A1E08;
}

/* Calendar */
.column-sidebar__cal-month {
  font-size: 16px;
  text-align: center;
  margin-bottom: 8px;
  color: #000;
}

.column-sidebar__cal-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #F8DA21;
  font-size: 12px;
}

.column-sidebar__cal-table thead th {
  background: #F8DA21;
  padding: 4px;
  text-align: center;
  font-weight: 400;
  color: #3A1E08;
}

.column-sidebar__cal-table td {
  padding: 4px;
  text-align: center;
  border: 1px solid #e0e0e0;
  color: #3A1E08;
}

.column-sidebar__cal-table td a {
  font-weight: 700;
  color: #018E4A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.column-sidebar__cal-table td a:hover {
  color: #016b38;
}

.column-sidebar__cal-active {
  background: #018E4A;
  color: #fff !important;
  display: inline-block;
  width: 100%;
  border-radius: 3px;
}

.column-sidebar__cal-table tfoot td {
  border: none;
  padding: 6px 4px;
  text-align: left;
}

.column-sidebar__cal-table tfoot a {
  color: #3A1E08;
  font-size: 13px;
}

/* Recent posts */
.column-sidebar__recent {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column-sidebar__recent-item {
  padding: 8px 0;
  border-bottom: 1px solid #cde8f0;
  font-size: 15px;
  font-weight: 350;
  line-height: 1.4;
}

.column-sidebar__recent-item a {
  color: #000;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.column-sidebar__recent-item a:hover {
  color: #018E4A;
}

/* Categories */
.column-sidebar__categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.column-sidebar__cat-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 13px;
  background: #3A1E08;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
}

.column-sidebar__cat-item a:hover {
  opacity: 0.85;
}

.column-sidebar__cat-item--active a {
  background: #018E4A;
}

.column-sidebar__cat-reset {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #018E4A;
  font-weight: 500;
}

.column-sidebar__cat-reset:hover {
  text-decoration: underline;
}

/* ---- Main content ---- */
.column-archive__main {
  flex: 7;
  min-width: 0;
  order: 2;
}

.column-archive__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed #ccc;
}

.column-archive__item:hover {
  opacity: 0.85;
}

.column-archive__thumb {
  width: 115px;
  height: 115px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 30px 30px 30px 5px;
  overflow: hidden;
}

.column-archive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-archive__body {
  flex: 1;
  min-width: 0;
}

.column-archive__title {
  font-size: 20px;
  font-weight: 700;
  color: #018E4A;
  line-height: 1.4;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.column-archive__date {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #3A1E08;
  margin-bottom: 6px;
}

.column-archive__excerpt {
  font-size: 15px;
  font-weight: 500;
  color: #3A1E08;
  line-height: 28px;
  letter-spacing: 0.19em;
  overflow: hidden;
  margin: 0;
  max-height: 56px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.column-archive__empty {
  text-align: center;
  padding: 60px 0;
  color: #666;
}

/* Pagination */
.column-archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
}

.column-archive__page-info {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 53px;
  height: 27px;
  border: 1px solid #018E4A;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #3A1E08;
}

.column-archive__page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid #018E4A;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #3A1E08;
}

.column-archive__page-num:hover {
  background: #e8f5ee;
}

.column-archive__page-num--active {
  background: #F8DA21;
}

/* ---- Column Single Article ---- */
.section-column-single {
  padding: var(--spacing-3xl) 0;
}

.column-article__header {
  margin-bottom: var(--spacing-lg);
}

.column-article__date {
  font-family: var(--font-english);
  font-size: 14px;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 8px;
}

.column-article__title {
  font-size: 28px;
  font-weight: 700;
  line-height: var(--line-height-base);
  color: var(--color-text);
}

.column-article__thumbnail {
  margin-bottom: var(--spacing-lg);
}

.column-article__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.column-article__content {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

.column-article__content p {
  margin-bottom: 1.5em;
}

.column-article__content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 2em 0 1em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}

.column-article__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 1.5em 0 0.8em;
}

.column-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.column-article__nav {
  margin-top: var(--spacing-2xl);
  text-align: center;
}

.column-article__back {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.column-article__back:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-column__empty {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: var(--spacing-xl) 0;
}

/* ============================================
   Recruit
   ============================================ */
.section-recruit {
  padding: 0;
}

.section-recruit__bg {
  padding: 50px 0 80px;
  background: url('../images/recruit-bg.png') center / cover no-repeat;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section-recruit__inner {
  position: relative;
  z-index: 2;
}

.section-recruit__heading {
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-recruit__banner {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.section-recruit__banner-img--sp {
  display: none;
}

@media (max-width: 768px) {
  .section-recruit__banner-img--pc {
    display: none;
  }
  .section-recruit__banner-img--sp {
    display: block;
  }
  .section-recruit .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-recruit__label {
  font-family: var(--font-english);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: #3A1E08;
  opacity: 1;
  display: block;
  letter-spacing: 0.1em;
}

.section-recruit__message {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-recruit__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.section-recruit__title-highlight {
  color: var(--color-accent);
}

.section-recruit__title-sub {
  color: var(--color-white);
}

.section-recruit__desc {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.section-recruit__content {
  text-align: center;
}

/* Roles */
.recruit-roles {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.recruit-role {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.recruit-role__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-role__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.3;
}

.section-recruit__action .btn--cta {
  background-color: var(--color-accent);
  color: var(--color-text);
}

.section-recruit__action .btn--arrow::after {
  background-color: var(--color-text);
}

/* ============================================
   Congestion
   ============================================ */
.section-congestion {
  padding: 45px 0 50px;
  background-color: #ECE6D7;
}

.section-congestion .container {
  padding-left: 12px;
  padding-right: 12px;
}

.section-congestion .section__heading {
  margin-bottom: 22px;
}

.congestion-badge {
  display: inline-block;
  height: 56px;
  width: auto;
  margin-left: 4px;
  vertical-align: sub;
  position: relative;
  top: 4px;
}

.congestion-subtitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #3A1E08;
  font-family: "Noto Sans JP";
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.congestion-table-wrapper {
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
}

.congestion-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  background-color: #fff;
}

.congestion-table__th,
.congestion-table__th--sat {
  background-color: #3A1E08;
  color: var(--color-white);
  padding: 10px 8px;
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  border: 1px solid #3A1E08;
}

.congestion-table__td {
  padding: 12px 2px;
  border: 1px solid #3A1E08;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  vertical-align: middle;
}

.congestion-table__td--label {
  background-color: var(--color-gray-light);
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  text-align: left;
  padding: 8px 20px;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
}

.congestion-table__td-note {
  display: inline-block;
  font-size: 11px;
  margin-left: 6px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-text-muted);
  font-weight: normal;
}

.congestion-table__td--closed {
  background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), #3A1E08 calc(50% - 0.5px), #3A1E08 calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

/* Congestion icons */
.congestion-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.congestion-icon[data-level="empty"] {
  background-color: #5bc0de;
}

.congestion-icon[data-level="normal"] {
  background-color: var(--color-primary);
}

.congestion-icon[data-level="busy"] {
  background-color: #e8a317;
}

.congestion-legend {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 6px 24px;
  border-radius: 30px;
}

.congestion-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3A1E08;
  font-family: "Noto Sans JP";
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.congestion-legend__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.congestion-legend__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.congestion-legend__item--empty .congestion-legend__dot {
  background-color: #5bc0de;
}

.congestion-legend__item--normal .congestion-legend__dot {
  background-color: var(--color-primary);
}

.congestion-legend__item--busy .congestion-legend__dot {
  background-color: #e8a317;
}

.congestion-notes {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-top: var(--spacing-md);
}

/* ============================================
   Access / Map
   ============================================ */
.section-access {
  padding: 100px 0;
  background-color: #fff;
}

.access-info {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 86px;
  margin-bottom: 0;
}

.access-info__left {
  flex-shrink: 0;
  margin-right: 0;
}

.access-info__logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  padding-right: 20px;
}

.access-info__logo .header__logo-link {
  padding: 0;
}

.access-info__address {
  font-style: normal;
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  margin-bottom: 30px;
  text-align: center;
}

.access-info__notice {
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-sm);
}

.access-info__right {
  flex: 1;
  max-width: 550px;
}

.access-info__cta-group {
  display: flex;
  gap: 0;
  margin-top: var(--spacing-md);
  width: 100%;
}

.access-info__cta-group .header__cta--phone {
  flex: 1;
  padding: 6px 30px;
}

/* Phone / LINE buttons in access */
.btn--phone-access {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
}

.btn--phone-access .btn__label {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.btn--phone-access .btn__content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn--phone-access .btn__number {
  font-size: var(--font-size-xl);
  font-family: var(--font-english);
}

.btn--line-access {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #06C755;
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
}

/* Footer phone/LINE buttons */
.btn--phone-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
}

.btn--line-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #06C755;
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
}

.access-map__heading {
  text-align: left;
  margin-bottom: 0;
  padding: 0 30px;
}

.access-map__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
}

.access-map__embed {
  width: 100%;
  line-height: 0;
  position: relative;
}

.access-map__embed iframe {
  width: 100%;
  height: 400px;
}

.access-map__action {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  padding: 0;
}

/* Maintenance Notice */
.maintenance-notice {
  background-color: #FFE902;
  padding: 12px 0;
  text-align: center;
  position: relative;
  z-index: 100;
}

.maintenance-notice__text {
  font-size: 15px;
  font-weight: 700;
  color: #3A1E08;
  letter-spacing: 0.05em;
}

/* 404 */
.section-404 {
  padding: 120px 0;
  text-align: center;
}

.section-404__title {
  font-size: 60px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-404__message {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.section-404__desc {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

/* ============================================
   Clinic Page - 当院の思い
   ============================================ */
.section-thought {
  position: relative;
  padding: 0;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-thought__bg {
  position: absolute;
  inset: 0;
  background: url('../images/thought-bg.png') center / cover no-repeat;
}

.section-thought__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-thought__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  padding: 100px 30px;
}

.section-thought__title {
  font-size: 40px;
  font-weight: 700;
  color: #F8DA21;
  letter-spacing: 0.14em;
  margin-bottom: 40px;
}

.section-thought__text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.section-thought__text--large {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.6;
}

.section-thought__text--small {
  font-size: 17px;
}

.section-thought__text + .section-thought__text {
  margin-top: 24px;
}

/* ============================================
   Clinic Page - 院内紹介
   ============================================ */
.section-gallery {
  padding: var(--spacing-3xl) 0;
  background-color: var(--color-white);
}

.section-gallery__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section-gallery__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 100px;
}

.section-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: calc(988px + 22px * 2 + 30px * 2);
  margin: 0 auto var(--spacing-lg);
}

.section-gallery__main-image {
  width: 988px;
  max-width: 988px;
  flex-shrink: 0;
}

.section-gallery__main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.section-gallery__arrow {
  width: auto;
  height: auto;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.section-gallery__arrow:hover {
  opacity: 0.6;
}

.section-gallery__arrow img {
  width: 22px;
  height: 44px;
}


.section-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  max-width: 988px;
  margin: 0 auto;
}

.section-gallery__thumb {
  width: 178px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  border: 2px solid transparent;
}

.section-gallery__thumb:hover,
.section-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--color-primary);
}

.section-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Clinic Page - 診療内容
   ============================================ */
.section-clinic-medical {
  padding: 60px 0 125px;
  background: url('../images/clinic-medical-bg.png') center / cover no-repeat;
  background-color: var(--color-gray-light);
}

.section-clinic-medical .section-title {
  font-size: 36px;
  margin-bottom: 100px;
}

.clinic-medical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 350px));
  grid-auto-rows: 1fr;
  gap: 25px 34px;
  justify-content: center;
}

.clinic-medical-card {
  background: var(--color-white);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.clinic-medical-card:hover {
  box-shadow: var(--shadow-md);
}

.clinic-medical-card__image {
  width: 100%;
  overflow: hidden;
}

.clinic-medical-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.clinic-medical-card__body {
  background-color: #BCE1D1;
  padding: 17px 25px;
  flex: 1;
}

.clinic-medical-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-align: center;
}

.clinic-medical-card__desc-line {
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 2px;
}

.clinic-medical-card__desc {
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================================
   Clinic Page - 患者さんへのご案内
   ============================================ */
.section-patient-notice {
  padding: var(--spacing-3xl) 100px;
  background: url('../images/patient-notice-bg.png') center / cover no-repeat;
  background-color: var(--color-white);
}

.section-patient-notice__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: var(--spacing-xl);
}

.patient-notice__content {
  max-width: 1000px;
  margin: 0 auto;
}

.patient-notice__text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 2.0;
  margin-bottom: var(--spacing-lg);
}

.patient-notice__subheading {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 24px;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.05em;
}

.section-patient-notice__sub-heading {
  width: 100%;
  padding: 10px 60px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(58, 30, 8, 0.70);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 50px;
  margin-bottom: 33px;
}

.section-patient-notice__body {
  padding: 0 50px;
}

.section-patient-notice__sub-body {
  padding: 0 50px;
}

.patient-notice__subtext {
  font-size: 16px;
  color: var(--color-text);
  line-height: 2.0;
}

/* ============================================
   Access Detail
   ============================================ */
/* Schedule Intro */
.section-schedule-intro .section-access-detail__title {
  margin-bottom: 90px;
}

.schedule-access-wrapper {
  background: url('../images/schedule-intro-bg.png') center top / cover no-repeat;
  background-color: var(--color-white);
}

.schedule-access-wrapper .section-schedule-intro {
  background: transparent;
}

.schedule-access-wrapper .section-access {
  background: transparent;
}

.section-schedule-intro {
  padding: 125px 0 75px;
}

.section-schedule-intro__image {
  text-align: center;
}

.section-schedule-intro__image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.access-page-top .section-access {
  padding-top: 0;
  padding-bottom: 65px;
}

.access-page-top .access-info__right .schedule-table {
  margin-bottom: 0;
}

.access-page-top + .section-map,
.access-page-top .section-map {
  display: none;
}

.section-access-detail {
  padding: 140px 0 100px;
  background-color: var(--color-white);
}

.section-access-detail__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  letter-spacing: 0.09em;
  margin-bottom: 100px;
  padding-bottom: 45px;
}

.section-access-detail__map-area {
  position: relative;
  max-width: 1240px;
  margin: 0 auto 40px;
}

.section-access-detail__map-embed {
  width: 100%;
  line-height: 0;
}

.section-access-detail__map-embed iframe {
  width: 100%;
  height: 444px;
}

.section-access-detail__map-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.section-access-detail__block {
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 85px;
}

.section-access-detail__block:last-child {
  padding-bottom: 0;
}

.section-access-detail__heading {
  background-color: #018E4A;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 24px;
  letter-spacing: 0.19em;
  border-radius: 10px 10px 10px 1px;
  box-shadow: 0 4px 4px 0 rgba(58, 30, 8, 0.70);
  margin-bottom: 30px;
}

.section-access-detail__body {
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.6;
  padding: 0 16px;
}

.section-access-detail__body p {
  margin-bottom: 4px;
}

.section-access-detail__body--with-map {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.section-access-detail__body-text {
  flex: 1;
}

.section-access-detail__body-map {
  width: 378px;
  flex-shrink: 0;
}

.section-access-detail__body-map img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ============================================
   Ortho Page Sections
   ============================================ */
.section-ortho-about {
  padding: 0 0 80px;
  background: url('../images/ortho-about-bg.png') center / cover no-repeat;
  background-color: var(--color-white);
}

.ortho-checklist-heading__sp {
  display: none;
}

.page-template-page-access .hero__headline--text {
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
}

.section-ortho-about > .container {
  padding-left: 80px;
  padding-right: 80px;
}

.section-ortho-about__checklist-list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #3A1E08;
  border-radius: 2px;
}

.section-ortho-treatment {
  padding: 0 0 80px;
  background-color: var(--color-white);
}

.section-ortho-rehab {
  padding: 0 0 80px;
  background: url('../images/ortho-rehab-bg.png') center / cover no-repeat;
  background-color: var(--color-white);
}

.section-ortho-rehab > .container {
  padding-left: 80px;
  padding-right: 80px;
}

.section-ortho-menu {
  padding: 0;
  background-color: var(--color-white);
}

.section-ortho-menu > .container {
  padding-left: 20px;
  padding-right: 20px;
}

.section-ortho-menu__btn:hover {
  opacity: 0.8;
}


.section-ortho-faq {
  padding: 0 0 100px;
  background: url('../images/ortho-faq-bg.png') center / cover no-repeat;
}

.ortho-faq__content {
  max-width: 1060px;
  margin: 0 auto;
  padding-top: 64px;
}

.ortho-faq__item {
  margin-bottom: 60px;
}

/* Q row: icon left, bubble right */
.ortho-faq__q-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

/* A row: bubble left, icon right */
.ortho-faq__a-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.ortho-faq__icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.ortho-faq__icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Q bubble */
.ortho-faq__q-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #3A1E08;
  color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  position: relative;
  margin-left: 60px;
}

.ortho-faq__q-box::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 16px solid #3A1E08;
}

.ortho-faq__q-label {
  font-family: var(--font-english);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.ortho-faq__q-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

/* A bubble */
.ortho-faq__a-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #018E4A;
  color: #fff;
  padding: 30px 40px;
  border-radius: 20px;
  position: relative;
  margin-right: 60px;
}

.ortho-faq__a-box::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 60px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid #018E4A;
}

.ortho-faq__a-label {
  font-family: var(--font-english);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.ortho-faq__a-text {
  font-size: 17px;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.05em;
}

.section-ortho-faq {
  background-color: var(--color-white);
}