@charset 'UTF-8';

/* =========================================================
  GENERAL STYLING
========================================================= */

:root {
  /* Color */
  --color-light-grey: #ccc;
  --color-creamy-white: #fdfbf6;
  --color-sage-green: #5e9a73;
  --color-deep-spruce: #517d6c;
  --color-soft-mint: #a9d5b9;
  --color-light-sage: #86bda8;
  --color-blue-green: #23996c;
  --color-dusty-green: #57846f;
  --color-dark-amber: #49402a;
  --color-white: #ffffff;

  /* header logo width to reserve space for slider */
  --header-logo-height: 204px;
  --header-logo-width: 151px;
  --container-max: 1440px;
  --header-gap: 40px;
  --section-pad-x: 40px;
}

html {
  font-size: 18px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--color-creamy-white);
  background-image: url(../images/common/noise.webp);

  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

/* background noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--color-creamy-white);
  opacity: 0.95;
  pointer-events: none;
  z-index: -1;
}

/* =========================================================
  COMMON
========================================================= */
@media screen and (min-width: 641px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .pc_only {
    display: none !important;
  }
}


/*
  ボタン
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;

  padding: 10px 40px;
  border-radius: 999px;

  background: transparent;
  color: inherit;
  text-decoration: none;

  transition:
    background 0.3s,
    color 0.3s,
    border 0.3s,
    transform 0.2s;

  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.8px;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn--primary:hover {
  background: var(--color-deep-spruce);
}

.btn--outline {
  background: transparent;
  color: var(--color-dusty-green);
  border: 1px solid var(--color-dusty-green);
}
.btn--outline:hover {
  background: var(--color-sage-green);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--color-sage-green);
}
.btn--white:hover {
  background: #f3f3f3;
}

.btn--circle {
  width: 40px;
  height: 40px;
  padding: 0;
  gap: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sage-green);
  color: #fff;
  font-weight: 700;
}
.btn--circle:hover {
  transform: none;
}

.icon-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.icon-arrow--down {
  transform: rotate(90deg);
}

.icon-arrow--up {
  transform: rotate(-90deg);
}

.icon-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* =========================================================
  SECTION
========================================================= */
.section {
  padding: 60px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-inner.narrow {
  max-width: 800px;
}
.section-inner.center {
  text-align: center;
}

.section-title {
  margin-bottom: 40px;
  text-align: center;

  color: #57846f;
  font-family: "Zen Maru Gothic";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 32px */
  letter-spacing: 9.6px;
}

.section-title.white {
  color: #fff;
}

.section-title-icon {
  padding-top: 16px;
}

.section-button {
  text-align: center;
  margin-top: 40px;
}

/* =========================================================
  HEADER
========================================================= */
/*
HEADER TOP Page
================================================ */
.header-inner {
  display: grid;
  grid-template-columns: var(--header-logo-width) 1fr;
  align-items: start;
  column-gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 28px;
}

.header-right {
  display: grid;
  grid-template-columns: max-content auto;
  column-gap: 60px;
  /* justify-content: end; */
  justify-self: center;
  max-width: 100%;
}

.logo p {
  margin-top: 20px;
  font-size: 0.889rem;

  color: #000;

  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ======= ロゴ ======= */
.header .logo {
  text-align: center;
  align-self: start;
  grid-row: span 2;

  height: var(--header-logo-height);
  width: var(--header-logo-width);

  margin-left: 40px;
  transform: translateY(10px); /* -4〜-16px で調整 */
}

.header--page .logo {
  height: auto;
  width: auto;
}

.header .logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* ======= グローバルナビゲーション ======= */
.header .header-inner .header-nav {
  margin: 0;
}

.header .header-inner .header-nav ul {
  display: flex;
  justify-content: center;

  padding: 0;
  margin: 0;
  list-style: none;

  gap: 60px;
  width: max-content;
}

.header .header-inner .header-nav ul li {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.header .header-inner .header-nav .nav-subtitle {
  font-size: 0.667rem;
  color: var(--color-deep-spruce);
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
  letter-spacing: 1.2px;
}

.header .header-inner .header-nav ul li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

/* タイトル・サブタイトルをブロック化 */
.header.header--page .header-inner .header-nav .nav-title,
.header.header--page .header-inner .header-nav .nav-subtitle {
  display: block;
  line-height: 1.2;
}

/* タイトル */
.header .header-inner .header-nav .nav-title {
  display: block;
  line-height: 1.2;
}

/* サブタイトル */
.header .header-inner .header-nav .nav-subtitle {
  display: block;
  margin: 0;
  line-height: 1.2;
  font-size: 0.667rem;
  font-weight: 500;
  color: var(--color-deep-spruce);
  letter-spacing: 0.12em;
}

/*======= ハンバーガーメニュー ======= */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.header-nav-home {
  display: none;
}

.header-language {
  display: inline-block;
  justify-self: end;
}

.header-language__inner {
  position: relative;
  display: inline-block;
}
/* ======= 翻訳ボタン ======= */
.language-ui {
  display: flex;
  padding: 6px 14px;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #49402a;
  border-radius: 4px;
  background: var(--color-white);
  user-select: none;
  pointer-events: none; /* クリックは上のselectへ */
}

.language-ui__label {
  color: #49402a;

  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}

.language-ui__icon {
  width: 18.33px;
  height: 18.33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.language-icon-svg {
  width: 100%;
  height: 100%;
  color: #49402a;
}

.header-language__inner .gtranslate_wrapper {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.header-language__inner #google_translate_element2,
.header-language__inner .goog-te-gadget,
.header-language__inner .skiptranslate {
  display: none !important;
}

/* 本物のselectを全面に */
.header-language__inner select.gt_selector {
  padding: 0 10px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  pointer-events: auto;

  /* “Japanese”表示を強制的に消す */
  opacity: 1 !important;
  background: transparent;
  border: 0;
  color: transparent !important;
  text-shadow: none !important;
  font-size: 0 !important;

  -webkit-appearance: none;
  appearance: none;
}

.header-language__inner select.gt_selector option {
  font-size: 16px;
  color: #000;
}

/*
HEADER 下層ページ
================================================ */
.header.header--page .header-inner {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  column-gap: 60px;

  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 60px;
}

.header.header--page .logo {
  grid-row: auto;
  margin-left: 0;
  transform: none;
  align-self: center;
}

.header.header--page .header-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0;
  margin: 0;
  list-style: none;

  gap: 60px;
  width: max-content;
}

.header.header--page .header-nav ul li {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 100%; /* 18px */
  text-align: center;
}

.header.header--page .hamburger {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .header .header-nav a:hover {
    color: var(--color-dusty-green);
  }

  .header .header-nav li > a:hover .nav-title,
  .header .header-nav li > a:hover .nav-subtitle {
    color: var(--color-dusty-green);
  }

  .header .header-nav a {
    transition: color 0.2s ease;
  }
}

.header-language__inner select.gt_selector {
  padding: 0 10px;
  margin: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;

  background: transparent;
  border: 0;
  color: transparent !important;
  font-size: 0 !important;

  -webkit-appearance: none;
  appearance: none;
}

/* =========================================================
  TOPページ　hero-visual
========================================================= */
/*
TOP: SLIDER
================================================ */
.top-slider-section {
  position: relative;
  margin-left: calc((100vw - var(--container-max)) / 2 + var(--header-logo-width) + var(--header-gap) + 50px);
  width: calc(100vw - ((100vw - var(--container-max)) / 2 + var(--header-logo-width) + var(--header-gap)));
  margin-top: calc(var(--header-logo-height) * -1 + 70px);
  margin-bottom: 87px;
}

.top-slider-section::before {
  content: "";
  position: absolute;
  z-index: 50;
  width: 250px;
  height: 100%;
  background: url(../images/common/grass-decoration1.svg) no-repeat center / contain;

  left: calc(-1 * (var(--header-logo-width) + var(--header-gap) - 30px));
  bottom: -350px;
  transform: rotate(10deg);
  pointer-events: none;
}

.top-slider-image {
  border-radius: 60px 0 0 60px;
  overflow: hidden;
}

.top-slider-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.swiper-pagination-bullet {
  background-color: var(--color-white);
  opacity: 0.9;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-sage-green);
  opacity: 0.9;
}

.swiper-slide img {
  width: 100%;
  display: block;
}

.top-slider-copy {
  position: absolute;
  left: 8%;
  bottom: 13%;
  z-index: 2;
  color: var(--color-white);
  font-size: 2.222rem;
  text-shadow: 0px 0px 20px #49402a;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: 6px;
}

/*
  vertical-cta
================================================ */
.vertical-cta {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 1.111rem;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-align: center;

  background: var(--color-blue-green);
  color: #fff;
  text-decoration: none;

  max-width: 52px;
  padding: 20px 16px;
  border-radius: 16px 0 0 16px;

  transform: translateY(calc(-50% - var(--cta-shift)));

  transition: background 0.3s ease;

  gap: 0.6em; /* 文字と矢印の間 */
}

.vertical-cta:hover {
  background: var(--color-deep-spruce);
}

.vertical-cta.is-stopped {
  position: absolute;
  top: auto;
  bottom: 0;
  transform: none;
}
/*
  scroll-indicator
================================================ */
.scroll-indicator {
  position: absolute;
  left: 87px;
  bottom: 110px;
  z-index: 500;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  color: var(--color-sage-green);
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.scroll-text {
  writing-mode: vertical-rl;
}

.scroll-line {
  position: relative;
  width: 2px;
  height: 100px;
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.scroll-line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-sage-green);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

/* =========================================================
  TOP: NEWS
========================================================= */
.section.news {
  margin: 0;
}

.section.news {
  padding-left: 0;
  padding-right: 0;
}

.news-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 300px;
  padding-right: 100px;
}

.news-grid {
  display: grid;
  grid-template-columns: 157px 1px 1fr;
  column-gap: 60px;
  align-items: center;
  min-height: 112px;
}

.news-head {
  width: 157px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-head h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--color-dusty-green);

  letter-spacing: 0.3em;
  line-height: 1;
  white-space: nowrap;
}

.news-head .section-title {
  margin-bottom: 0;
  text-align: center;
}

.news-grid::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: 80px;
  justify-self: center;
  align-self: center;
  background: var(--color-sage-green);
}

.news-body {
  grid-column: 3;
}

.news-list {
  display: grid;
  row-gap: 29px;
}

.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 24px;
  align-items: center;
}

.news-item time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dusty-green);
  letter-spacing: 0.05em;
}

.news-title {
  margin: 0;
  line-height: 1.6;
  font-weight: 700;
  min-width: 0;
}

.news-title a {
  color: var(--color-dark-amber);
  text-decoration: none;
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.news-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

/* 調整 */
.section.news .news-head {
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
}

.section.news .news-grid::before {
  align-self: center;
  height: 80px;
}

.section.news .news-list {
  row-gap: 14px;
}

.section.news .news-item {
  padding: 0;
  column-gap: 18px;
  align-items: center;
}

/* =========================================================
  TOP: ABOUT
========================================================= */
.section.about .section-title {
  margin-bottom: 0px;
}

.about {
  position: relative;
}

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

.about-image {
  margin-left: calc(50% - 33vw);
  width: 55vw;
  max-width: 55vw;
  height: 500px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 60px 60px 0;
  display: block;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
}

.about-content p {
  text-align: left;

  color: #49402a;

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.9px;
}

.about-content .btn {
  display: inline-flex;
  margin: 0 auto;
  width: 300px;
  height: 49px;
}

/* 1200pxを超える時だけ、左だけフルブリード */
@media (min-width: 1201px) {
  .about-image {
    /* 右端はグリッド内に残したまま、左方向にだけ広げる */
    margin-left: calc(50% - 50vw + var(--section-pad-x));
    width: calc(100% + (50vw - 50%) - var(--section-pad-x));
    max-width: none;

    height: clamp(360px, 32vw, 500px);
    overflow: hidden;
    border-radius: 0 32px 32px 0;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
  }

  .about-image,
  .about-content {
    min-width: 0;
  }

  .about-content {
    position: relative;
    z-index: 1;
  }
}

/* =========================================================
  TOP: SERVICE
========================================================= */
.service .section-inner {
  max-width: 920px;
}
.section.service {
  position: relative;
  z-index: 2;
}

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

  @media screen and (max-width: 640px) {
    max-width: 450px;
    margin-inline: auto;
  }
}

.service-list li {
  background: #fff;
  border-radius: 40px;
  filter: drop-shadow(4px 4px 4px rgba(81, 125, 108, 0.2));
}

.service-list img {
  width: 100%;
  border-radius: 40px 40px 0 0;
  margin-bottom: 15px;
  display: block;
}

.service-list p {
  padding: 15px 35px;
}

.service-list .btn {
  text-align: right;
}

.section.service::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 400px;
  height: 100%;
  background: url(../images/common/grass-decoration2.svg) no-repeat center / contain;
  top: -500px;
  right: 0;
  pointer-events: none;
}

.section.service::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 300px;
  height: 100%;
  background: url(../images/common/grass-decoration3.svg) no-repeat center / contain;
  left: 0;
  bottom: -250px;
  transform: rotate(10deg);
  pointer-events: none;
}

.service-list li {
  display: flex;
  flex-direction: column;
}

.service-list li > p {
  margin: 0;
  height: 180px;
  line-height: 2;
}

.service-list li > .btn--circle {
  margin: 0 30px 30px 0;
  align-self: flex-end;
  font-size: 1.2rem;
}

/* 修正上書き */
.service-list li {
  overflow: hidden;
}

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

  position: relative;
  padding-bottom: 50px;
}

.service-card-link > p {
  margin: 0;
  padding: 15px 35px;
  line-height: 2;
}

.service-card-link .btn--circle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  margin: 0;
}

.service-card-link:hover {
  filter: brightness(0.99);
}

.service-card-link:focus-visible {
  outline: 3px solid rgba(35, 153, 108, 0.35);
  outline-offset: 6px;
}

@media (hover: hover) and (pointer: fine) {
  .service-list li {
    transition:
      transform 0.25s ease,
      filter 0.25s ease;
  }

  .service-list li:hover {
    transform: translateY(-6px);
    filter: drop-shadow(4px 4px 4px rgba(81, 125, 108, 0.2));
  }
}

/* =========================================================
  TOP: INFO (診療時間・アクセス)
========================================================= */
/* ======= info ======= */
.section.info .section-inner {
  padding-inline: clamp(24px, 6vw, 80px);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-table {
  grid-column: 1 / -1;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;

  border-collapse: separate;
  border-spacing: 0;

  background: var(--color-white);
  color: var(--color-sage-green);

  border: 1px solid var(--color-sage-green);
  border-radius: 10px;
  overflow: hidden;
}

.info-schedule {
  grid-column: 1 / -1;
  max-width: 580px;
  margin: 0 auto;
}

.info-schedule .info-note {
  padding-top: 10px;
  text-align: left;

  color: var(--color-dark-amber);

  font-family: "Zen Maru Gothic";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.info-table th {
  padding: 8px 20px;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
  border-right: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-sage-green);
}

.info-table td {
  padding: 8px 20px;
  text-align: center;
  font-size: 1rem;
  color: #5e9a73;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
  border-right: 1px solid var(--color-sage-green);
  border-bottom: 1px solid var(--color-sage-green);
}

.info-table th:last-child,
.info-table td:last-child {
  border-right: none;
}

.info-table tbody tr:last-child th,
.info-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table th {
  color: var(--color-dark-amber);
}
.info-table thead th {
  color: var(--color-white);
}
.info-table thead {
  background: var(--color-sage-green);
  color: var(--color-white);
}

.info-table tbody th {
  border-right: 1px solid var(--color-sage-green);
}

/* ======= access ======= */
.access {
  grid-column: 1;
  background: transparent;
}

.access-title {
  font-size: 1.4rem;
  color: var(--color-dusty-green);
  margin-bottom: 20px;
  padding: 0 10px 10px 10px;
  border-bottom: 2px solid var(--color-dusty-green);

  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 24px */
  letter-spacing: 4.8px;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 20px;
}

.access-item dt {
  color: var(--color-dusty-green);
  text-align: right;

  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.access-item dd {
  color: var(--color-dark-amber);

  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.9px;
}

/* ======= payment ======= */
.info-payment {
  grid-column: 1;
}

.info-payment-title {
  font-size: 1.4rem;
  color: var(--color-dusty-green);
  margin-top: 80px;
  margin-bottom: 20px;
  padding: 0 10px 10px 10px;
  border-bottom: 2px solid var(--color-dusty-green);

  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 24px */
  letter-spacing: 4.8px;
}

.info-payment-text {
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 1rem;
  color: var(--color-dark-amber);
  line-height: 1.8;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.9px;
}

.info-payment-image {
  background: #fff;
  padding: 20px;
}
.info-payment-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======= map ======= */
.info-map {
  grid-column: 2;
  grid-row: 2 / span 2;
}
.info-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

/* =========================================================
  TOP: RESERVATION
========================================================= */
.reservation {
  background: var(--color-sage-green);
  padding: 60px 0px;
}

.section.reservation .section-title.white h2 {
  color: #fff;

  font-family: "Zen Maru Gothic";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 32px */
  letter-spacing: 9.6px;
}

.reservation-text {
  margin: 0 auto;
  max-width: 529px;

  color: #fff;

  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.reservation-text:last-of-type {
  margin-bottom: 30px; /* ボタンとの余白 */
}

.section.reservation .section-title.white {
  color: var(--color-white);
}

.section.reservation .btn--white {
  background: var(--color-white);
  color: var(--color-blue-green);
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  width: 300px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 1.8px;
}

/* =========================================================
  TOP: BLOG
========================================================= */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-list li a {
  display: block;
}

.blog-list li a img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.blog-list > li {
  max-width: 360px;
  justify-self: center;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  filter: drop-shadow(4px 4px 4px rgba(81, 125, 108, 0.2));

  position: relative;
  padding-bottom: 93px;
}

.blog-list .btn--circle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  margin: 0;
}

.blog-list > li > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-list > li > a img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-list > li > a time {
  display: block;
  padding: 20px 30px 0 30px;
  font-size: 1rem;
  color: var(--color-dusty-green);

  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.blog-list > li > a p {
  padding: 0px 30px 0 30px;
  font-size: 1.111rem;
  font-weight: 700;
  color: var(--color-dark-amber);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

@media (hover: hover) and (pointer: fine) {
  .blog-list li {
    transition:
      transform 0.25s ease,
      filter 0.25s ease;
  }

  .blog-list > li:hover {
    transform: translateY(-6px);
    filter: drop-shadow(4px 4px 4px rgba(81, 125, 108, 0.2));
  }
}

.blog-list {
  display: grid;
  gap: 30px;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  max-width: 1040px;
  margin: 0 auto;

  justify-content: center;
}

/* 2件だけのとき（＝2つ目が最後の要素） */
.section.blog .blog-list:has(> li:nth-child(2):last-child) {
  max-width: 760px;
}

/* =========================================================
  FOOTER
========================================================= */
.footer {
  background: var(--color-sage-green);
  color: #fff;
  padding: 80px 100px 20px 100px;
  margin: 0 auto;
}

.footer .footer-inner {
  max-width: 1168px;
  margin: 0 auto;
}

.footer .footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 60px;
}

/* left */
.footer .footer-info {
  text-align: center;
}

.footer .logo img {
  width: 220px;
  height: auto;
}

.footer .clinic-name {
  font-size: 24px;
  margin: 15px 0 5px;
}

.footer .clinic-type {
  padding: 29px 0;
  color: #fff;

  text-align: center;
  font-size: 1.111rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

.footer .clinic-address {
  text-align: left;

  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* center */
.footer .footer-center {
  display: grid;
  gap: 20px;
}

.schedule table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  color: var(--color-sage-green);
  border-radius: 20px;
  overflow: hidden;
}

.schedule thead {
  background: var(--color-soft-mint);
}

.schedule th {
  padding: 8px 20px;
  text-align: center;
  border: 1px solid var(--color-sage-green);
  color: var(--color-dark-amber);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
  white-space: nowrap;
}

.schedule td {
  padding: 8px 20px;
  text-align: center;
  border: 1px solid var(--color-sage-green);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.footer .schedule-note {
  padding-top: 10px;
  color: var(--color-white);
  font-size: 1rem;
}

.payment {
  border: 1px solid var(--color-white);
  border-radius: 20px;
  padding: 20px;
}

.payment h3 {
  margin-top: 0;
  border-bottom: 1px solid var(--color-white);
  padding: 0 10px 10px 10px;

  font-size: 1.333rem;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 24px */
  letter-spacing: 4.8px;
}

.payment p {
  padding: 10px 0;

  color: var(--color-white);

  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.9px;
}

.payment-list-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* right */
.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
  border-radius: 8px;
  display: block;
}

/* cta + nav */
.footer-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px 0;
}

.footer-cta .btn--white {
  width: 376px;
}

.footer-cta .btn--phone {
  line-height: 160%;
  letter-spacing: 1.8px;
}

.footer-nav {
  max-width: 1134px;
  margin: 0 auto;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.footer-nav li {
  position: relative;
  padding: 0 clamp(14px, 2vw, 26px);
}

/* 区切り線（｜） */
.footer-nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2em;
  background: rgba(255, 255, 255, 0.7);
}

.footer-nav a {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}
/* copyright */
.copyright {
  border-top: 1px solid rgba(255, 255, 255);
  margin-top: 60px;

  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 0.722rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.65px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-blue-green);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;

  opacity: 0.8;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

/* hoverできる端末だけ反応 */
@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover {
    opacity: 1;
    background: var(--color-deep-spruce);
    transform: translateY(-2px);
  }
}

/* Breadcrumb（Breadcrumb NavXT） */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto 10px;
  padding: 0 20px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;

  font-size: 1rem;
  font-weight: 500;
  color: var(--color-deep-spruce);
  letter-spacing: 0.04em;
}

.breadcrumb__list li {
  display: inline-flex;
  align-items: center;
}

/* 区切り： > */
.breadcrumb__list li + li::before {
  content: ">";
  margin: 0 6px;
  color: currentColor;
  opacity: 0.6;
}

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

.breadcrumb__list li:last-child {
  min-width: 0;
  max-width: min(60vw, 360px);
}

.breadcrumb__list li:last-child > a,
.breadcrumb__list li:last-child > span {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================
  FOOTER：中間幅用上書き
========================================================= */
@media (max-width: 1200px) and (min-width: 961px) {
  .footer .footer-main {
    gap: 32px;

    grid-template-columns: minmax(100px, 0.8fr) 1.6fr minmax(230px, 1.2fr);
    align-items: start;
  }

  .footer .logo img {
    width: min(100px, 100%);
    height: auto;
  }

  .footer .clinic-type {
    font-size: 16px;
  }

  .footer .clinic-address {
    font-size: 16px;
  }

  .footer-map iframe {
    min-height: 250px;
    height: 100%;
  }

  .footer {
    padding: 72px 60px 20px;
  }
}

/* =========================================================
   ABOUT PAGE
========================================================= */
/* HERO */
.section.about-page-hero {
  padding: 20px 0 200px 0;
}

.about-page-hero {
  overflow: visible;
}

.about-page-hero-inner,
.page-service .section-inner.about-page-hero-inner {
  gap: 48px 100px;
  align-items: center;
  display: flex;
  max-width: calc(((100vw - 1100px) / 2) + 1100px);
  margin-left: auto;
  margin-right: 0;
}

.about-page-hero-heading {
  position: relative;
  display: grid;
  place-items: start center;
  text-align: center;
  gap: 16px;
  flex: 1;
}

.about-page-hero-kicker {
  margin: 0;
  font-size: 2.222rem;
  letter-spacing: 0.15em;
  color: var(--color-dark-amber);
  font-weight: 700;
}

.about-page-hero-title {
  margin: 0;
}

.about-page-hero-title-en {
  display: inline-block;
  font-size: 1.333rem;
  letter-spacing: 0.25em;
  color: var(--color-deep-spruce);
  font-weight: 700;
}

.about-page-hero-mark {
  position: absolute;
  bottom: -200px;
  z-index: -1;
}
.about-page-hero-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page-hero-visual {
  position: relative;
  overflow: visible;
  width: 61%;
}

.about-page-hero-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 48px 0 0 48px;
}

.about-page-hero-deco {
  position: absolute;
  left: 40vw;
  top: auto;
  width: min(180px, 22vw);
  pointer-events: none;
  z-index: 20;
}

.about-page-hero-deco img {
  width: 100%;
  height: 330px;
  display: block;
}

/* greeting */
.about-page-greeting-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  column-gap: 60px;
  justify-items: start;

  max-width: 960px;
  margin: 0 auto;
}

.about-page-greeting-photo {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
.about-page-greeting-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page-greeting-body {
  color: var(--color-dark-amber);
  line-height: 2;
  max-width: 520px;
}

.about-page-greeting-text {
  color: #49402a;

  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.about-page-greeting-sign {
  margin-top: 40px;
  text-align: right;
  color: var(--color-dark-amber);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 35.2px */
  letter-spacing: 1.1px;
}

/* features */
.about-page-features .section-title {
  display: grid;
  justify-items: center;
  /* gap: 12px; */
  margin-top: 20px;
  margin-bottom: 18px;
  text-align: center;
}

.about-page-features .section-title h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--color-dusty-green);
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 32px */
  letter-spacing: 9.6px;
}

.about-page-features .section-title-icon {
  display: grid;
  place-items: center;
}

.about-page-features .section-title-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.about-page-features-lead {
  margin: 40px auto;
  max-width: 920px;
  text-align: center;
  color: var(--color-dark-amber);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.about-page-feature-list {
  justify-items: center;
  align-items: start;
  text-align: center;
  gap: 40px;
}

.about-page-feature-list > li.about-page-feature-card {
  padding: 0;
  border: none;
}

.service-list.about-page-feature-list {
  grid-template-columns: repeat(2, fit-content(430px));
  justify-content: center;
}

.about-page-feature-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  max-width: 430px;
  filter: drop-shadow(4px 4px 4px rgba(81, 125, 108, 0.2));
}

.about-page-feature-head {
  background: var(--color-light-sage);
  padding-top: 24px;
  padding: 24px 0 20px;
}

.about-page-feature-title {
  margin: 0;
  font-size: 1.444rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-style: normal;
  line-height: 150%; /* 39px */
  letter-spacing: 2.6px;
}

.about-page-feature-icon {
  background: var(--color-light-sage);
  text-align: center;
  padding: 0 0 24px;
}

.about-page-feature-icon img {
  width: 100px;
  height: auto;
  display: inline-block;
  margin: 0;
}

.about-page-feature-text {
  padding: 20px 30px;
  text-align: left;
  color: var(--color-dark-amber);
  background-color: var(--color-white);
}

.about-page-feature-text .text-main {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.9px;
}

.about-page-feature-text .text-note {
  margin: 15px 0 0;
  font-size: 0.778rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.7px;
}

.about-page-feature-text p {
  padding: 0;
}

/* ホバー無効化 */
.about-page-feature-card {
  filter: drop-shadow(4px 4px 4px rgba(81, 125, 108, 0.2));
}

.about-page-features .about-page-feature-card,
.about-page-features .about-page-feature-card * {
  transition: none;
}

.about-page-features .about-page-feature-card:hover,
.about-page-features .about-page-feature-card:hover * {
  transform: none;
  opacity: 1;
}

/* gallery */
.about-page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 40px;
}

.about-page-gallery-item {
  margin: 0;
  overflow: hidden;
}

.about-page-gallery-item img {
  width: 100%;
  border-radius: 24px;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  object-fit: cover;
  display: block;
}

.about-page-gallery-item figcaption {
  padding-top: 30px;
  color: var(--color-dark-amber);
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "Zen Maru Gothic";
  font-size: 1.333rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.2px;
}

/* outline */
.about-page-outline {
  padding: 120px 40px;
}

.about-page-outline .section-inner {
  max-width: 1100px;
}

.about-page-outline-card {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;

  background: #fff;
  border-radius: 60px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;

  padding: 60px;
}

.about-page-outline-table {
  width: 100%;
  max-width: 660px;
  border-collapse: collapse;
  background: transparent;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

.about-page-outline-table th,
.about-page-outline-table td {
  padding: 32px 0;
  border: none;
  vertical-align: middle;
  position: relative;
}

/* 左カラム */
.about-page-outline-table th {
  width: 200px;
  text-align: left;
  padding-right: 80px;
  padding-left: 60px;

  color: var(--color-deep-spruce);
  font-weight: 700;
  font-size: 1.333rem;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.about-page-outline-table tbody th {
  border-right: none;
}

/* 右カラム */
.about-page-outline-table td {
  width: 380px;
  text-align: left;
  padding-left: 0;
  padding-right: 60px;

  color: var(--color-dark-amber);
  font-size: 1.111rem;
  line-height: 1.9;
}

.about-page-outline-table tr th::after,
.about-page-outline-table tr td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(94, 154, 115, 0.45);
}

.outline-hours-row {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  column-gap: 0px;
  align-items: baseline;
}

.outline-hours-label {
  white-space: nowrap;
}

.outline-hours-time {
  min-width: 0;
  white-space: nowrap;
}

.outline-hours-row:not(:last-child) {
  margin-bottom: 10px;
}

.facility-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;

  @media screen and (max-width: 600px) {
    max-width: 450px;
    margin-inline: auto;
  }

  img {
    max-width: 100%;
    border-radius: 40px;

    @media screen and (max-width: 600px) {
      border-radius: 20px;
    }
  }

  .facility-intro_item {
    width: calc((100% - 40px) / 2);

    @media screen and (max-width: 600px) {
      width: 100%;
    }

    .facility-title {
      display: block;
      margin-top: 10px;
      font-weight: 500;
    }
  }

}

/* =========================================
   ABOUT：特徴カード 4枚のサイズを揃える
========================================= */

.service-list.about-page-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
  gap: 40px;
}

.about-page-feature-card {
  height: 100%;
  min-height: 360px;
}

.about-page-feature-head,
.about-page-feature-icon {
  flex: 0 0 auto;
}

.about-page-feature-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   SERVICE PAGE
========================================================= */
/* category pills */
.page-service .service-page-nav {
  padding: 48px 0;
}

.page-service .service-page-pill-list {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.page-service .service-page-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 40px;
  border-radius: 999px;
  background: var(--color-blue-green);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    background 0.2s,
    transform 0.2s;
  gap: 16px;
}

.page-service .service-page-pill:hover {
  background: var(--color-deep-spruce);
  transform: translateY(-2px);
}

/* blocks */
.page-service .service-page-block {
  padding: 60px 0;
}

.page-service .service-page-block:last-of-type {
  padding-bottom: 120px;
}

.page-service .service-page-block-inner {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.service-item_heading {
  max-width: calc(((100vw - 900px) / 2) + 900px);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px 60px;
}

.service-page-block.is-reverse .service-item_heading {
  margin-left: auto;
}

.page-service .service-page-block-media {
  position: relative;
  overflow: hidden;
  width: 57%;
}
.page-service .service-page-block-media img {
  max-width: 100%;
}

.service-page-block.is-reverse .service-page-block-media,
.service-page-block.is-reverse img {
  border-radius: 32px 0 0 32px;
}

.page-service .service-page-block:not(.is-reverse) .service-page-block-media,
.page-service .service-page-block:not(.is-reverse) img {
  border-radius: 0 32px 32px 0;
}

.service-page-block.is-reverse .service-page-block-media {
  order: 2;
}
.service-page-block.is-reverse .service-page-block-content {
  order: 1;
}

.page-service .service-page-block-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 auto 0 0;
  text-align: center;
}

.page-service .service-page-block-title {
  text-align: center;
  color: var(--color-deep-spruce);
  font-size: 1.778rem;
  font-style: normal;
  font-weight: 900;
  line-height: 160%; /* 51.2px */
  letter-spacing: 9.6px;
}

.page-service .service-page-block-lead {
  margin-top: 40px;
  color: var(--color-dark-amber);
  line-height: 2;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.9px;
  text-align: left;
}

/* card */
.page-service .service-page-card {
  grid-row: 2;
  grid-column: 1 / -1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;

  padding: 40px 60px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 4px 0 rgba(81, 125, 108, 0.2);
}

.page-service .service-page-card-title {
  /* margin: 0 0 16px; */
  padding: 0 0 10px 10px;
  color: var(--color-deep-spruce);
  font-weight: 800;
  position: relative;
  font-size: 1.333rem;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 24px */
  letter-spacing: 4.8px;
  text-align: left;
}

.page-service .service-page-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(94, 154, 115, 0.55);
}

.page-service .service-page-card-text {
  padding: 20px 0 0;
  color: var(--color-dark-amber);
  line-height: 2;
  /* font-size: 0.92rem; */
  font-size: 1rem;
}

.page-service .service-page-card-list {
  padding: 20px 0 0;
  color: var(--color-sage-green);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

/* =========================================================
   SERVICE PAGE （上書き）
========================================================= */
.page-service .section-inner {
  max-width: 100%;
}

.page-service .service-page-pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.page-service .service-page-pill-list > li {
  max-width: 100%;
}

.page-service .service-page-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  min-height: 72px;
  padding: 10px 40px;
  border-radius: 999px;

  background: var(--color-blue-green);
  transition:
    background 0.2s,
    transform 0.2s;

  max-width: 300px;
}

.page-service .service-page-pill:hover {
  background: var(--color-deep-spruce);
  transform: translateY(-2px);
}

.page-service .service-page-pill-text {
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  text-align: left;

  color: #fff;

  font-family: "Zen Maru Gothic";
  font-size: 0.889rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 1.6px;
}

/* full-bleed service media on wide screens */
/* @media (min-width: 961px) {
  .page-service .service-page-block:not(.is-reverse) .service-page-block-media {
    margin-left: calc(50% - 50vw);
  }
  .page-service .service-page-block.is-reverse .service-page-block-media {
    margin-right: calc(50% - 50vw);
  }
} */

/* =========================================================
   CONTACT PAGE
========================================================= */
.section.contact-page-form {
  padding: 60px 40px 90px 40px;
}

/* lead */
.contact-page-lead {
  margin: 0 auto 28px;
  max-width: 750px;
  line-height: 160%;
  letter-spacing: 0.9px;
  font-weight: 500;
  color: var(--color-dark-amber);
  font-size: 1.333rem;
  text-align: center;
}

/* .page-contact-form .wpcf7 {
  max-width: 750px;
  margin: 0 auto;
}

.page-contact-form .wpcf7 form {
  display: grid;
  gap: 20px;
}

.page-contact-form .wpcf7 label {
  display: block;
  font-weight: 600;
  line-height: 1.4;
}

/* アスタリスク */
.page-contact-form .wpcf7 label span {
  margin-left: 6px;
  font-weight: 700;
  color: #e66;
  font-size: 0.9em;
}

.page-contact-form .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.page-contact-form .wpcf7 input[type="text"],
.page-contact-form .wpcf7 input[type="email"],
.page-contact-form .wpcf7 textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  line-height: 1.5;
}

/* textarea */
.page-contact-form .wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}

.page-contact-form .wpcf7 input:focus,
.page-contact-form .wpcf7 textarea:focus {
  outline: none;
  border-color: rgba(123, 186, 147, 0.8);
  box-shadow: 0 0 0 4px rgba(123, 186, 147, 0.25);
}

/* エラー表示 */
.page-contact-form .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.85rem;
}

.page-contact-form .wpcf7 input[type="submit"] {
  display: inline-block;
  width: auto;
  min-width: 300px;
  max-width: 300px;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: #7bba93;
  color: #fff;
}

/* hover */
.page-contact-form .wpcf7 input[type="submit"]:hover {
  opacity: 0.9;
}
*/

/* =========================================================
   CONTACT PAGE - overwrite
========================================================= */
.page-contact-form .wpcf7 {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark-amber);
}

.page-contact-form .wpcf7 form {
  display: grid;
  gap: 26px;
}

.page-contact-form .wpcf7 label,
.page-contact-form .wpcf7 .cf7-label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  line-height: 1.4;
  margin-bottom: 8px;
}

.page-contact-form .wpcf7 .req {
  margin-left: 8px;
  font-weight: 800;
  color: #e66;
  font-size: 0.95em;
}

.page-contact-form .wpcf7 .wpcf7-list-item-label,
.page-contact-form .wpcf7 .wpcf7-acceptance label,
.page-contact-form .wpcf7 .wpcf7-acceptance label span {
  color: var(--color-dark-amber) !important;
  font-weight: 600;
}

.page-contact-form .wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}

.page-contact-form .wpcf7 input[type="text"],
.page-contact-form .wpcf7 input[type="email"],
.page-contact-form .wpcf7 input[type="tel"],
.page-contact-form .wpcf7 textarea {
  width: 100%;
  padding: 16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 12px;
  background: #fff;
  color: #000;
  font: inherit;
  line-height: 1.5;
}

.page-contact-form .wpcf7 input[type="tel"] {
  background-color: #fff !important;
  -webkit-appearance: none;
  appearance: none;
}

.page-contact-form .wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}

.page-contact-form .wpcf7 input:focus,
.page-contact-form .wpcf7 textarea:focus {
  outline: none;
  border-color: rgba(94, 154, 115, 0.9);
  box-shadow: 0 0 0 4px rgba(94, 154, 115, 0.22);
}

.page-contact-form .wpcf7 input[type="radio"],
.page-contact-form .wpcf7 input[type="checkbox"] {
  width: 1.2em;
  height: 1.2em;
  transform: scale(1.1);
  accent-color: var(--color-sage-green);
}

.page-contact-form .wpcf7 .wpcf7-radio .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 12px 22px 0 0;
}

.page-contact-form .wpcf7 .wpcf7-radio .wpcf7-list-item-label {
  margin-left: 8px;
  font-size: 1.02rem;
}

.page-contact-form .wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.02rem;
  line-height: 1.6;
}

.page-contact-form .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.page-contact-form .wpcf7 .wpcf7-acceptance a {
  color: var(--color-sage-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-contact-form .wpcf7 .wpcf7-acceptance a:hover {
  opacity: 0.85;
}

.page-contact-form .wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.page-contact-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  display: block;
  line-height: 1.6;
}

.page-contact-form .wpcf7 .wpcf7-acceptance a {
  display: block;
  width: 100%;
  margin-bottom: 4px;
}

.page-contact-form .wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  transform: none;
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  margin: 0;
  margin-top: 0.26em;
  accent-color: var(--color-sage-green);
}

.page-contact-form .wpcf7 input[type="submit"] {
  display: block;
  justify-self: center;
  text-align: center;
  width: auto;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: var(--color-sage-green);
  color: #fff;
}

.page-contact-form .wpcf7 input[type="submit"]:hover {
  opacity: 0.9;
}

.privacy-consent p {
  line-height: 1.8;
  font-weight: 500;
}

.privacy-consent p a {
  color: var(--color-blue-green);
}

.privacy-consent .wpcf7-list-item {
  margin-left: 0;
}

.page-contact-form .privacy-consent label {
  font-size: 20px;
}

/* SP：ラジオを縦並び寄りにして見やすく */
@media (max-width: 640px) {
  .page-contact-form .wpcf7 {
    font-size: 1.02rem;
  }
  .page-contact-form .wpcf7 .wpcf7-radio .wpcf7-list-item {
    display: flex;
    margin-right: 0;
  }
}

/* =========================================================
   CONTACT THANKS PAGE
========================================================= */
.contact-thanks {
  padding: 120px 20px;
}

.contact-thanks__title {
  margin-bottom: 24px;
  color: var(--color-deep-spruce);
  font-size: 1.778rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.contact-thanks__text {
  max-width: 520px;
  margin: 0 auto 48px;
  color: var(--color-dark-amber);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

/* ボタンは主役感を出す */
.contact-thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

/* =========================================================
   ACCESS PAGE（page-access.php）
========================================================= */
.page-access .access-page-section-title {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 28px;
  text-align: center;
  font-size: 1.778rem;
}

.page-access .access-page-section-title h2 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 36px);
  letter-spacing: 0.22em;
  color: var(--color-deep-spruce);
  font-weight: 700;
}

.page-access .access-page-section-icon {
  display: grid;
  place-items: center;
}
.page-access .access-page-section-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* 交通アクセス*/
.page-access .access-page-transport-box {
  max-width: 863px;
  border-radius: 20px;
  border: 1px solid #517d6c;
  background: rgba(255, 255, 255, 0.63);
  padding: 25px 35px 39px 35px;
}

.page-access .access-page-transport-list {
  padding: 0 20px;
  display: grid;
  gap: 18px;
}

.page-access .access-page-transport-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 20px;
  align-items: start;
}

.page-access .access-page-transport-item dt {
  margin: 0;
  font-weight: 800;
  color: var(--color-dusty-green);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
}

.page-access .access-page-transport-item dd {
  color: var(--color-dark-amber);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.9px;
}

/* 所在地 */
.page-access .access-page-address {
  margin: 0 0 34px;
  display: flex;
  justify-content: left;
  gap: 16px;
  flex-wrap: wrap;
  align-items: baseline;
  color: var(--color-dark-amber);
}

.page-access .access-page-address-label {
  color: var(--color-dusty-green);

  font-size: 1.111rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

.page-access .access-page-address-text {
  color: #49402a;

  font-size: 1.111rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
}

/* map */
.page-access .access-page-map-embed {
  max-width: 798px;
  margin: 0 auto 34px;
  overflow: hidden;
}

.page-access .access-page-map-embed iframe {
  width: 100%;
  height: min(520px, 55vh);
  min-height: 320px;
  border: 0;
  display: block;
}

.section.access-page-map {
  padding-bottom: 120px;
}

/* =========================================================
   FIRST VISIT（page-first.php）
========================================================= */

.page-first .first-lead__text {
  margin: 0;
  color: var(--color-dark-amber);
  font-size: 1.333rem;
  font-weight: 500;
  line-height: 40px;
}

.page-first .first-title {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0 0 26px;
  text-align: center;
}

.page-first .first-title__text {
  margin: 0;
  color: var(--color-dusty-green);
  font-size: 1.778rem;
  font-weight: 900;
  line-height: 100%; /* 32px */
  letter-spacing: 9.6px;
}

.page-first .first-title__icon {
  display: grid;
  place-items: center;
}
.page-first .first-title__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.page-first .first-block {
  padding-top: 28px;
  padding-bottom: 120px;
  margin-bottom: 0px;
}

.page-first .first-card {
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(94, 154, 115, 0.65);
  border-radius: 18px;
}

.page-first .first-card--simple {
  max-width: 848px;
  font-size: 1.111rem;
  font-weight: 700;
}

.page-first .first-items {
  margin: 0;
  padding: 40px 60px;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--color-dark-amber);
  font-size: 1.111rem;
  font-weight: 500;
  line-height: 40px;
}

.page-first .first-items li {
  position: relative;
  padding-left: 1.1em;
}
.page-first .first-items li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-dark-amber);
}

.page-first .first-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 50px;
}

.page-first .first-flow__card {
  padding: 40px 10px;
  max-width: 848px;
  overflow: hidden;
}

.page-first .first-card__head {
  padding: 14px 18px 10px;
}

.page-first .first-card__head::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--color-dusty-green);
  width: calc(100%);
  margin: 8px auto 0;
}

.page-first .first-card__headText {
  margin: 0;
  padding: 0 10px 10px 10px;
  font-weight: 700;
  color: var(--color-dusty-green);
  letter-spacing: 0.08em;
  font-size: 1.333rem;
}

.page-first .first-card__body {
  padding: 14px 18px 18px;
  color: var(--color-dark-amber);
  line-height: 2;
}

.page-first .first-card__body p {
  margin: 0 0 10px;
  font-size: 1rem;

  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.9px;
}

.page-first .first-card__body .first-note {
  margin: 0 0 8px;
  color: var(--color-dark-amber);
  font-size: 1rem;
  opacity: 0.92;
  line-height: 160%;
  letter-spacing: 0.9px;
}

.page-first .first-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.page-first .first-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 360px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-blue-green);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-first .first-pill:hover {
  background: var(--color-deep-spruce);
  transform: translateY(-2px);
}

.page-first .first-pay {
  margin: 12px 0 16px;
  padding-top: 10px;
  display: flex;
  justify-content: center;
}

.page-first .first-pay img {
  width: min(520px, 100%);
  height: auto;
  display: block;
}

.page-first .first-faq {
  max-width: 848px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.page-first .first-faq__item {
  background: rgba(94, 154, 115, 0.18); /* 薄い緑グレー */
  border-radius: 10px;
  overflow: hidden;
}

.page-first .first-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 14px 46px 14px 16px;
  color: var(--color-dark-amber);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}

.page-first .first-faq__q::-webkit-details-marker {
  display: none;
}

.page-first .first-faq__q::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--color-dark-amber);
  opacity: 0.95;
}

.page-first .first-faq__item[open] .first-faq__q::after {
  content: "▲";
}

.page-first .first-faq__a {
  padding: 40px 30px;
  color: var(--color-dark-amber);
  background-color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.9px;
}

.page-first .first-bottomText {
  margin: 50px 0 0 0;
  text-align: center;
  color: var(--color-dark-amber);
  font-size: 1.333rem;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
}

.payment-list li::after {
  content: "、";
}

.payment-list li:last-child::after {
  content: none;
}

.payment-head {
  font-weight: bold !important;
  margin-bottom: 0px !important;
}

.payment-block {
  margin-bottom: 20px;
}

.payment-block:last-child {
  margin-bottom: 0;
}



/* =========================================================
   BLOG PAGE（home.php 用）
========================================================= */
.section.blog {
  padding: 60px 40px 120px 40px;
}

.section.blog-page-hero .section-title {
  margin-bottom: 0;
}

.page-blog .blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-item-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-item-date {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--color-sage-green);
}

.blog-item-title {
  margin: 6px 0 0;
  line-height: 1.6;
  color: var(--color-dark-amber);
}

/* pagination */
.blog-page-pagination .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-page-pagination .page-numbers {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--color-sage-green);
  color: var(--color-sage-green);
  text-decoration: none;
}

.blog-page-pagination .page-numbers.current {
  background: var(--color-sage-green);
  color: #fff;
}

.page.page-blog .blog-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;

  display: grid;
  gap: 30px;

  /* 投稿数が1〜2件でも自動で列数が減って中央に寄る */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  max-width: 1040px;
  justify-content: center;
}

/* 1件のときに横に伸びすぎないように */
.page.page-blog .blog-list > li {
  max-width: 340px;
  justify-self: center;
}

.page.page-blog .blog-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page.page-blog .blog-item-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.page.page-blog .blog-item-date {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--color-sage-green);
}

.page.page-blog .blog-item-title {
  margin: 6px 0 0;
  line-height: 1.6;
  color: var(--color-dark-amber);
}

.page.page-blog .blog-list:has(> li:nth-child(2):last-child) {
  max-width: 760px;
}

.blog-list-back {
  margin-top: 48px;
  text-align: center;
}

.blog-list-back a {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--color-deep-spruce);
  border-radius: 999px;
  color: var(--color-deep-spruce);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    background 0.3s,
    color 0.3s;
}

.blog-list-back a:hover {
  background: var(--color-deep-spruce);
  color: #fff;
}

.page.page-blog .blog-list-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page.page-blog .blog-list-back .icon-arrow {
  line-height: 0;
  transform: none;
}

.page.page-blog .blog-list-back .icon-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* =========================================================
   SINGLE BLOG
========================================================= */
.section.single-hero .section-title {
  margin-bottom: 0;
}

.page-single .section-inner.narrow {
  max-width: 860px;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-dark-amber);
}

.single-category {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-category li {
  background: var(--color-soft-mint);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.single-title {
  margin: 0 0 24px;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.6;
  color: var(--color-deep-spruce);
}

.single-thumbnail {
  margin: 0 0 32px;
}

.single-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.single-body {
  line-height: 2;
  color: var(--color-dark-amber);
}

.single-body h2,
.single-body h3 {
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--color-deep-spruce);
}

.single-body p {
  margin-bottom: 24px;
}

.single-body ul,
.single-body ol {
  margin-bottom: 24px;
  padding-left: 1.4em;
}

.news-single-content {
  line-height: 2;
  color: var(--color-dark-amber);
}

.news-single-content h2,
.news-single-content h3 {
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--color-deep-spruce);
}

.news-single-content p {
  margin-bottom: 24px;
}

.news-single-content ul,
.news-single-content ol {
  margin-bottom: 24px;
  padding-left: 1.4em;
}

.single-pager {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}

.single-pager a {
  color: var(--color-sage-green);
  text-decoration: none;
  font-weight: 700;
}

.single-back {
  margin-top: 56px;
  text-align: center;
}

.single-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--color-sage-green);
  color: var(--color-sage-green);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.single-back-link:hover {
  background: var(--color-sage-green);
  color: #fff;
  transform: translateY(-2px);
}

.single-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.single-back .icon-arrow {
  line-height: 0;
  transform: none;
}

.single-back .icon-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.page.page-news-single .section {
  padding: 60px 40px 120px 40px;
}

.section.single-content {
  padding: 60px 40px 120px 40px;
}

/* =========================================================
   BLOG / NEWS 本文用 見出しデザイン（Gutenberg）
========================================================= */

/* ========= H2 ========= */
.single-body h2.wp-block-heading,
.news-single-content h2.wp-block-heading {
  font-size: 20px;
  padding: 20px 20px 20px 50px;
  text-indent: -25px;
  display: block;
  color: var(--color-dark-amber);
  background: rgba(123, 186, 147, 0.18);
  color: var(--color-deep-spruce);
  border-radius: 30px 0 0 30px;
}

.single-body h2.wp-block-heading::before,
.news-single-content h2.wp-block-heading::before {
  content: "●";
  color: var(--color-sage-green);
  margin-right: 8px;
}

/* ========= H3 ========= */
.single-body h3.wp-block-heading,
.news-single-content h3.wp-block-heading {
  color: var(--color-dark-amber);
  font-size: 18px;
  padding: 15px 20px;
  display: block;
  position: relative;
  border-left: 8px solid var(--color-deep-spruce);
}

.single-body h3.wp-block-heading::before,
.news-single-content h3.wp-block-heading::before {
  position: absolute;
  content: "";
  left: -8px;
  bottom: 0;
  width: 8px;
  height: 50%;
  background-color: var(--color-soft-mint);
}

/* ========= H4 ========= */
.single-body h4.wp-block-heading,
.news-single-content h4.wp-block-heading {
  color: var(--color-dark-amber);
  font-size: 16px;
  padding: 8px 40px;
  display: block;
  position: relative;
}

.single-body h4.wp-block-heading::before,
.news-single-content h4.wp-block-heading::before {
  content: "❖";
  font-weight: 900;
  position: absolute;
  font-size: 30px;
  left: 0;
  top: -4px;
  color: var(--color-sage-green);
}

.page.page-news-single h1 {
  padding-top: 50px;
}

.page.page-news-single .section.section-title {
  margin-bottom: 0;
}

.page-news-single .section-title {
  margin-bottom: 0;
}

.news-single-back {
  margin-top: 48px;
  text-align: center;
}

.news-single-back a {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--color-deep-spruce);
  border-radius: 999px;
  color: var(--color-deep-spruce);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    background 0.3s,
    color 0.3s;
}

.news-single-back a:hover {
  background: var(--color-deep-spruce);
  color: #fff;
}

.page-news-single .news-single-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-news-single .news-single-back .icon-arrow {
  line-height: 0;
  transform: none;
}

.page-news-single .news-single-back .icon-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* =========================================================
   NEWS 一覧（archive-news.php）
========================================================= */

.page.page-news .section {
  padding: 60px 40px 120px 40px;
}

.page.page-news h1 {
  padding-top: 50px;
}

.page-news .section-title {
  margin-bottom: 0;
}

/* 一覧全体 */
.page-news .news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 1件（カード風） */
.page-news .news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;

  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* 日付 */
.page-news .news-item time {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 6px 10px;
  border-radius: 999px;
  color: var(--color-dusty-green);
  font-size: 1rem;
  font-weight: 700;
}

/* タイトルリンク */
.page-news .news-item p {
  margin: 0;
  line-height: 1.7;
}

.page-news .news-item a {
  color: var(--color-dark-amber);
  text-decoration: none;
  font-weight: 700;
}

.page-news .news-item a:hover {
  color: var(--color-sage-green);
}

/* ページネーション */
.page-news .section-button .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .section-button .page-numbers {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--color-sage-green);
  color: var(--color-sage-green);
  text-decoration: none;
}

.page-news .section-button .page-numbers.current {
  background: var(--color-sage-green);
  color: #fff;
}

.page-news-single .news-single time {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-soft-mint);
  color: var(--color-dark-amber);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-news-single .news-single-title {
  margin: 0 0 24px;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.6;
  color: var(--color-deep-spruce);
}

/* 本文*/
.page-news-single .news-single-content {
  line-height: 2;
  color: var(--color-dark-amber);
}

.page-news-single .news-single-content p {
  margin-bottom: 24px;
}
.page-news-single .news-single-content ul,
.page-news-single .news-single-content ol {
  margin-bottom: 24px;
  padding-left: 1.4em;
}

.news-list-back {
  margin-top: 48px;
  text-align: center;
}

.news-list-back a {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--color-deep-spruce);
  border-radius: 999px;
  color: var(--color-deep-spruce);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition:
    background 0.3s,
    color 0.3s;
}

.news-list-back a:hover {
  background: var(--color-deep-spruce);
  color: #fff;
}

.page-news .news-list-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-news .news-list-back .icon-arrow {
  line-height: 0;
  transform: none;
}

.page-news .news-list-back .icon-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* 長いタイトルを「…」で省略 */
.page-news .news-item p {
  margin: 0;
  line-height: 1.7;
  min-width: 0;
}

.page-news .news-item a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* =========================================================
   Privacy Policy Page
========================================================= */
.page-privacy {
  padding: 64px 40px 120px;
}

.page-privacy .page-inner {
  width: min(920px, 92%);
  margin: 0 auto;
}

.page-privacy .page-title {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
  color: #000;
}

/* 本文エリア */
.page-privacy .page-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-dark-amber);
}

/* 段落 */
.page-privacy .page-content p {
  margin: 0 0 1.1em;
}

/* 見出し */
.page-privacy .page-content h2 {
  margin: 1.8em 0 0.7em;
  padding-left: 14px;
  border-left: 4px solid var(--color-sage-green);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  color: #000;
}

.page-privacy .page-content h3 {
  margin: 1.4em 0 0.6em;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.45;
  color: #000;
}

/* 箇条書き */
.page-privacy .page-content ul,
.page-privacy .page-content ol {
  margin: 0.2em 0 1.2em 1.2em;
  padding: 0;
}

.page-privacy .page-content li {
  margin: 0.35em 0;
}

.page-privacy .page-content hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* リンク */
.page-privacy .page-content a {
  color: var(--color-sage-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-privacy .page-content a:hover {
  opacity: 0.85;
}

/* =========================================================
   popup
========================================================= */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none; /* 最初は非表示 */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-logo {
  margin-bottom: 40px;
  text-align: center;
}
.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  position: relative;
}
.popup-content::before {
  content: "×";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 30px;
}
.popup-txt {
  font-size: 22px;
  text-align: center;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 640px) {
  .popup-content {
    padding: 30px;
  }
  .popup-txt {
    font-size: 19px;
  }
}

/* =========================================================
   404
========================================================= */
.page-404 .notfound-lead {
  margin: 60px 0;
  line-height: 1.8;
}

/* =========================================================
   RESPONSIVE
   - <=1200
   - <=960
   - <=640
========================================================= */
/* ---------- <=1200px ---------- */
@media (max-width: 1200px) {
  html {
    overflow-x: hidden;
  }

  body {
    background-image: none;
    overflow-x: hidden;
  }
  body::before {
    display: none;
  }

  /* ========== header ========== */
  /* （下層は header-inner 直下に要素がある） */
  .header .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo hamburger"
      "logo language";
    align-items: start;
    column-gap: 16px;
    row-gap: 12px;
    padding: 20px;
    text-align: left;
  }

  .header .logo {
    grid-area: logo;
    grid-row: auto;
    margin: 0;
    transform: none;
    width: auto;
    height: auto;
    justify-self: start;
    text-align: left;
  }

  .header:not(.header--page) .logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
  }

  .logo p {
    margin-top: 10px;
    font-size: 0.889rem;

    color: #000;

    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  /* HAMBURGER：右上 */
  .header .hamburger {
    grid-area: hamburger;
    display: block;
    width: 32px;
    height: 24px;
    position: static;
    justify-self: end;
    align-self: start;
    z-index: 1001;

    background: none;
    border: none;
    cursor: pointer;
  }

  .header .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-deep-spruce);
    margin-bottom: 6px;
    transition: 0.3s;
  }
  .header .hamburger span:last-child {
    margin-bottom: 0;
  }

  /* LANGUAGE：右下 */
  .header .header-language {
    grid-area: language;
    justify-self: end;
    align-self: start;
    margin: 0;
  }

  .header .language-ui {
    padding: 6px 10px;
    gap: 6px;
    border-width: 1px;
    border-radius: 4px;
  }

  .header .language-ui__label {
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .header .language-ui__icon {
    width: 16px;
    height: 16px;
  }

  .header .language-icon-svg {
    width: 16px;
    height: 16px;
  }

  .language-ui {
    margin-bottom: 0;
  }

  /* ハンバーガーメニュー　*/
  body.is-menu-open .vertical-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .header .header-nav {
    position: fixed;
    inset: 0;
    display: none;
    padding-top: 100px;
    height: 100vh;
    z-index: 1000;
    background: rgba(253, 251, 246, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
    margin: 0;
  }

  .header .header-nav.is-open {
    display: block;
  }

  body.is-menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }

  body.is-menu-open .language {
    display: none;
  }

  .header .header-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    gap: 12px;
  }

  .header .header-inner .header-nav ul {
    width: 100%;
    max-width: 100%;
    gap: 30px;
  }

  .header .header-nav ul li {
    margin: 0;
    width: 100%;
    font-size: 1.45rem;
  }

  .header .header-nav ul li a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 16px 24px; */
    line-height: 1.2;
    text-decoration: none;
  }

  .header .header-nav .nav-subtitle {
    margin-top: 6px;
    font-size: 0.9rem;
  }

  .header .header-nav-home {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
    padding: 16px 0;
    color: var(--color-dark-amber);
  }

  .header .hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .header .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* -------------------------
    TOPと下層で構造が違うので 下層header-right をミニgrid化
       （hamburger / language が header-right の中にいるため）
  ------------------------- */
  .header:not(.header--page) .header-right {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "nav hamburger"
      "nav language";
    align-items: start;
    column-gap: 16px;
    row-gap: 15px;

    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .header:not(.header--page) .header-right .header-nav {
    grid-area: nav;
  }
  .header:not(.header--page) .header-right .hamburger {
    grid-area: hamburger;
  }
  .header:not(.header--page) .header-right .header-language {
    grid-area: language;
  }

  /* ======= header 下層ページ ======= */
  .header.header--page .header-inner {
    padding: 16px 20px;
  }

  .header.header--page .header-nav {
    display: none;
  }
  .header.header--page .header-nav.is-open {
    display: block;
  }

  .header.header--page .hamburger {
    display: block;
    grid-area: hamburger;
    position: static;
    width: 32px;
    height: 24px;
    justify-self: end;
    align-self: start;
    z-index: 1001;
  }

  .header.header--page .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-deep-spruce);
    margin-bottom: 6px;
    transition: 0.3s;
  }
  .header.header--page .hamburger span:last-child {
    margin-bottom: 0;
  }

  /* ================== */
  /* header SP 上書き修正 */
  /* ================== */
  .header:not(.header--page) .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px;
    text-align: left;
  }

  /* ロゴは左 */
  .header:not(.header--page) .logo {
    margin: 0;
    transform: none;
    width: auto;
    height: auto;
    justify-self: auto;
    text-align: center;
  }

  .logo p {
    margin-top: 5px;
    font-size: 0.555rem;

    color: #000;

    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  /* 右側（LANGUAGEとハンバーガーだけ）を横並び */
  .header:not(.header--page) .header-right {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: auto;
    justify-self: auto;
    margin-top: 10px;
  }

  .header:not(.header--page) .header-nav {
    display: none;
  }

  .header:not(.header--page) .header-language {
    order: 1;
    margin: 0;
  }

  /* ハンバーガーは一番右 */
  .header:not(.header--page) .hamburger {
    order: 2;
    display: block;
    width: 32px;
    height: 32px;
    position: static;
    margin: 0;
  }

  .header:not(.header--page) .language-ui {
    gap: 3px;
    align-items: center;
  }

  .header:not(.header--page) .language-ui__label {
    font-size: 0.888rem;
  }

  .header:not(.header--page) .language-ui__icon {
    width: 18px;
    height: 18px;
  }

  .header:not(.header--page) .header-language__inner select.gt_selector {
    padding: 0;
  }

  .header:not(.header--page) .header-nav.is-open {
    display: block;
  }

  .header.header--page .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 20px 60px;
  }

  .header.header--page .header-nav {
    display: none;
  }
  .header.header--page .header-nav.is-open {
    display: block;
  }

  /* ロゴ（左） */
  .header.header--page .logo {
    margin: 0;
    transform: none;
    width: auto;
    height: auto;
    order: 1;
  }

  .header.header--page .logo img {
    max-width: 150px;
    width: 100%;
    height: auto;
  }

  /* LANGUAGE（中央〜右寄り） */
  .header.header--page .header-language {
    order: 2;
    margin: 0;
  }

  /* ハンバーガー（右端） */
  .header.header--page .hamburger {
    order: 3;
    display: block;
    position: static;
    width: 32px;
    height: 32px;
    margin: 0;

    grid-area: auto;
    justify-self: auto;
    align-self: auto;
  }

  .header.header--page .language-ui {
    gap: 3px;
    align-items: center;
  }
  .header.header--page .language-ui__label {
    font-size: 0.888rem;
  }
  .header.header--page .language-ui__icon {
    width: 18px;
    height: 18px;
  }

  .header.header--page .header-language__inner select.gt_selector {
    padding: 0;
  }

  .header.header--page .header-inner {
    align-items: center;
  }

  .header.header--page .header-right {
    align-items: center;
  }

  .header.header--page .header-language {
    align-self: center;
  }

  .header.header--page .hamburger {
    align-self: center;
  }

  .header.header--page .header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .header.header--page .logo {
    margin-right: auto;
  }

  .header.header--page .header-language {
    margin: 0;
  }

  .header.header--page .hamburger {
    margin: 0;
  }

  .header:not(.header--page) .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  /* キャッチ（p）を上へ */
  .header:not(.header--page) .logo p {
    order: 1;
    margin: 0;
    font-size: 0.666rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
    white-space: nowrap;
    align-self: flex-end;
  }

  /* ロゴを下へ */
  .header:not(.header--page) .logo .site-logo {
    order: 2;
    margin: 0;
  }

  /* ======= top slider ======= */
  .top-slider-section {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 0 0;
  }

  .top-slider-section::before {
    display: none;
  }

  .top-slider-image {
    border-radius: 0;
  }

  .top-slider-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }

  .top-slider-copy {
    font-size: 1.333rem;
    white-space: nowrap;
  }

  .scroll-indicator {
    display: none;
  }

  /* ======= deco ======= */
  .section.service::before,
  .section.service::after {
    display: none;
  }
}

/* ---------- <=960px ---------- */
@media (max-width: 960px) {
  html {
    font-size: 16px;
  }

  .btn {
    padding: 10px 20px;
  }

  .header-inner {
    gap: 50px;
  }

  /* ======= top SERVICE ======= */
  .section.news .news-body,
  .section.news .news-list,
  .section.news .news-item,
  .section.news .news-title {
    min-width: 0;
    max-width: 100%;
  }

  /* ======= TOP INFO ======= */
  .access-item {
    grid-template-columns: 1fr;
    row-gap: 6px;
    column-gap: 0;
  }

  .access-item dt {
    text-align: left;
  }

  .access-item dd {
    margin-left: 0;
  }

  .reservation-text {
    text-align: left;
  }

  .reservation-text:last-of-type {
    margin-bottom: 30px;
  }

  /* ======= ABOUT page ======= */
  .section.about-page-hero {
    padding: 20px 40px 60px;
  }

  .about-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 100px;
    flex-direction: column;
  }

  .about-page-hero-visual {
    margin-right: 0;
    width: 100%;
  }

  .about-page-hero .about-page-hero-visual > img {
    height: 350px;
    object-fit: cover;
  }

  .about-page-greeting-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 24px;
  }
  .about-page-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list.about-page-feature-list {
    grid-template-columns: 1fr;
    justify-content: center;
    column-gap: 0;
    row-gap: 40px;
  }

  .service-list.about-page-feature-list > li.about-page-feature-card {
    width: min(430px, 100%);
  }

  .about-page-feature-card {
    min-height: 400px;
  }

  /* ======= ABOUT page deco ======= */
  .about-page-hero-mark {
    bottom: -70px;
    width: min(120px, 92vw);
    pointer-events: none;
  }

  .about-page-hero-deco {
    z-index: 2;
    left: auto;
    right: 2vw;
    top: 75%;
    width: clamp(140px, 18vw, 160px);
    pointer-events: none;
  }

  .about-page-hero-deco > img {
    height: auto;
    width: 100%;
    display: block;
  }

  .about-page-hero-visual img {
    border-radius: 48px;
  }

  /* ======= SERVICE page ======= */
  .page-service .service-page-block.section {
    padding: 44px 16px;
  }

  /* 1カラム化 */
  .page-service .service-page-block-inner {
    row-gap: 25px;
  }

  /* is-reverse はSPでは無視 */
  .page-service .service-page-block.is-reverse .service-page-block-inner {
    display: flex;
    flex-direction: column;
  }

  .service-item_heading {
    flex-direction: column;
  }

  .page-service .service-page-block {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .page-service .service-page-block:not(.is-reverse) .service-page-block-media,
  .page-service .service-page-block:not(.is-reverse) img,
  .page-service .service-page-block.is-reverse .service-page-block-media,
  .page-service .service-page-block.is-reverse img {
    border-radius: 30px;
  }

  .page-service .service-page-block-media {
    width: 100%;
  }

  .page-service .service-page-card-text {
    padding-top: 0;
  }

  .page-service .service-page-block-title {
    color: var(--color-deep-spruce);
    font-style: normal;
    font-weight: 900;
    line-height: 160%; /* 51.2px */
    letter-spacing: 9.6px;
  }

  .page-service .service-page-block-content {
    text-align: center;
  }

  .page-service .service-page-block-content {
    margin: 0 auto;
  }

  .page-service .service-page-block.is-reverse .service-page-block-content {
    grid-column: 1;
    margin: 0 auto;
  }

  .page-service .service-page-block-lead {
    margin: 0;
    margin-top: 16px;
    text-align: left;
    line-height: 1.9;
  }

  .page-service .service-page-card {
    max-width: 100%;
    margin: 6px 0 0;
    padding: 18px 18px;
    border-radius: 22px;
  }

  .page-service .service-page-card-title {
    margin: 0 0 12px;
    padding-bottom: 12px;
    /* font-size: 1.333rem; */
  }

  .page-service .service-page-pill-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-service .service-page-pill-list > li {
    width: 100%;
    padding: 0;
  }

  .page-service .service-page-pill {
    width: 100%;
    justify-content: center;
    white-space: normal;
    padding: 12px 14px;
  }

  /* 表示順変更 */
  .page-service .service-page-block-content {
    order: 1;
  }
  .page-service .service-page-block-media {
    order: 2;
  }
  .page-service .service-page-card {
    order: 3;
  }

  .page-service .service-page-pill-list {
    display: grid;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    grid-template-columns: repeat(2, minmax(260px, 300px));
    justify-content: center;
    gap: 12px;
  }

  .page-service .service-page-pill-list > li {
    width: 100%;
  }

  .page-service .service-page-pill {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 14px;
    min-height: 72px;
  }

  .page-service .service-page-pill-text {
    min-width: 0;
    text-align: left;
  }

  .page-service .service-page-pill {
    position: relative;
    padding-right: 56px;
  }

  .page-service .service-page-pill .icon-arrow {
    position: absolute;
    right: 24px;
    top: 40%;
  }

  .page-service .service-page-pill .icon-arrow svg {
    width: 20px;
    height: 20px;
  }

  /* ======= NESWS 一覧 page ======= */
  .section.news .news-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;

    min-height: auto;
  }

  .section.news .news-grid::before {
    content: none;
    display: none;
  }

  .section.news .news-shell {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section.news .news-head {
    width: auto;
    justify-content: center;
    align-items: center;
  }

  .section.news .news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .section.news .news-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
  }

  .section.news .news-actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
  }

  .section.news .news-actions .btn {
    width: 287px;
    height: 40px;
  }

  .section.news .news-list {
    align-items: flex-start;
    text-align: left;
  }

  .section.news .news-item {
    align-items: flex-start;
    text-align: left;
  }

  .section.news .news-item time,
  .section.news .news-item .news-title {
    text-align: left;
  }

  /* ======= footer ======= */
  .footer {
    padding: 40px 20px 20px;
  }

  .footer .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer .logo img {
    width: 100px;
  }

  .schedule th,
  .schedule td {
    padding: 6px;
  }

  .footer .schedule-note {
    font-size: 0.8rem;
  }

  .payment {
    padding: 10px;
  }
  .payment h3 {
    font-size: 1rem;
  }

  .footer-map iframe {
    min-height: 200px;
    aspect-ratio: 16 / 9;
  }

  .footer-cta {
    flex-direction: column;
    gap: 15px;
  }

  .footer-cta .btn--white {
    width: 100%;
  }

  /* ======= footer nav ======= */
  .footer-nav {
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
  }

  .footer-nav ul,
  #menu-footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .footer-nav li,
  #menu-footer-navigation li {
    width: 100%;
    padding: 0;
    position: static;
  }

  /* PCの区切り線を完全に無効化 */
  .footer-nav li + li::before {
    content: none;
  }

  .footer-nav a,
  #menu-footer-navigation a {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
}

/* ---------- <=640px ---------- */
@media (max-width: 640px) {
  /* ======= top ======= */
  .section {
    padding: 30px 20px;
  }

  .section-title :is(h1, h2) {
    font-size: 1.556rem;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }

  .about-page-hero .about-page-hero-visual > img {
    object-fit: unset;
    height: auto;
    width: 100%;
  }

  /* vertical-cta スマホ表示*/
  .vertical-cta {
    opacity: 0.85;
    font-size: 18px;
    padding: 15px 13px;
    max-width: 50px;
  }
  .vertical-cta:hover,
  .vertical-cta:focus {
    opacity: 1;
    translate: 0 0;
  }

  /* top news */
  .section.news {
    margin-left: 0;
    padding: 60px 20px;
    width: 100%;
  }

  .news-inner {
    margin: 0 auto;
    justify-items: center;
  }

  .news-list .btn {
    margin: 44px auto;
  }

  .section.news {
    margin-left: 0;
    padding: 60px 20px;
    width: 100%;
  }

  .section.news .news-body,
  .section.news .news-list,
  .section.news .news-item,
  .section.news .news-title {
    min-width: 0;
    max-width: 100%;
  }

  /* ======= top ABOUT ======= */
  /* grids */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* about image full-bleed解除 */
  .about-image {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: initial;
    border-radius: 40px;
  }

  .about-content {
    padding: 24px 16px;
    text-align: center;
  }
  .about-content p {
    margin: 0 auto 10px;
    text-align: left;
  }

  /* lists */
  .service-list,
  .blog-list {
    grid-template-columns: 1fr;
  }

  /* info order */
  .section.info .section-inner {
    padding: 0;
  }

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

  .info-schedule {
    max-width: none;
    margin: 0;
  }

  .info-table {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .info-table th,
  .info-table td {
    padding: 8px 10px;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    white-space: nowrap;
  }

  .info-table tbody th {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 1rem;
  }

  .info-table thead th {
    padding: 8px 6px;
    font-size: 1rem;
    letter-spacing: 0.02em;
  }

  .info-table td {
    padding-left: 6px;
    padding-right: 6px;
  }

  .info-schedule .info-note {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }

  .info-map {
    grid-column: auto;
    grid-row: auto;
  }
  .info-map iframe {
    min-height: 220px;
  }

  .info-payment-title {
    margin-top: 0;
  }

  /* ======= ABOUT page ======= */
  .section.about-page-hero {
    padding: 0 20px;
  }

  .about-page-hero-kicker {
    font-size: 1.444rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

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

  .about-page-feature-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-page-feature-head {
    min-height: auto;
    padding: 20px 18px 14px;
  }
  .about-page-feature-title {
    font-size: 1.25rem;
  }
  .about-page-feature-icon img {
    width: 60px;
  }
  .about-page-feature-text {
    padding: 18px 18px 22px;
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .about-page-gallery-item figcaption {
    font-size: 1.125rem;
    padding-top: 8px;
  }

  /* ======= ABOUT page outline table ======= */
  .about-page-outline {
    padding: 72px 16px;
  }

  .about-page-outline-card {
    border-radius: 24px;
    padding: 20px 16px;
    margin-top: 24px;
  }

  .about-page-outline-table {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .about-page-outline-table tr {
    display: block;
    position: relative;
    padding: 16px 0;
  }

  .about-page-outline-table th,
  .about-page-outline-table td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    position: static;
  }

  .about-page-outline-table th {
    text-align: left;
    font-size: 1rem;
    letter-spacing: 0.1em;
    white-space: normal;
    margin-bottom: 8px;
  }

  .about-page-outline-table td {
    font-size: 1rem;
    line-height: 1.75;
    word-break: break-word;
    padding: 0 8px;
  }

  .about-page-outline-table tr::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(94, 154, 115, 0.45);
  }

  .about-page-outline-table tr th::after,
  .about-page-outline-table tr td::after {
    content: none;
  }

  .outline-hours-row {
    display: block;
  }

  .outline-hours-label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .outline-hours-time {
    display: block;
    line-height: 1.7;
  }

  .about-page-hero-deco {
    width: clamp(80px, 18vw, 90px);
  }

  .about-page-feature-card {
    min-height: 350px;
  }

  /* ======= FIRST page ======= */
  .page-first .first-block {
    margin-bottom: 10px;
  }

  .page-first .first-lead__text br {
    display: none;
  }

  .page-first .first-lead__text {
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
  }

  .page-first .first-card__headText {
    margin: 0;
    font-weight: 700;
    color: var(--color-dusty-green);
    letter-spacing: 0.08em;
    font-size: 1.222rem;
  }

  .page-first .first-pill {
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
  }

  .page-first .first-title__text {
    font-size: 24px;
  }

  .page-first .first-bottomText {
    font-size: 1rem;
  }

  .page-first .first-items {
    font-size: 1rem;
    font-weight: 700;
    padding: 0;
  }

  .page-first .first-card--simple {
    padding: 18px 18px;
    font-size: 1rem;
    border-radius: 16px;
  }

  .page-first .first-flow__card {
    border-radius: 16px;
    padding: 20px 10px;
  }

  .page-first .first-card__head {
    padding: 12px 14px 10px;
  }

  .page-first .first-card__headText {
    font-size: 18px;
  }

  .page-first .first-card__body {
    padding: 12px 14px 14px;
  }

  .page-first .first-pill {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
  }

  /* ======= SERVICE page ======= */
  .page-service .service-page-pill-text {
    font-size: 16px;
  }
  .page-service .service-page-pill-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-service .service-page-pill {
    width: 100%;
    justify-content: center;
  }

  .page-service .service-page-block-title {
    font-size: 24px;
  }

  .page-service .service-page-card-title {
    font-size: 20px;
  }

  .page-service .service-page-card-text {
    font-size: 16px;
  }

  .page-service .service-page-card-list {
    font-size: 16px;
  }

  /* ======= CONTACT page ======= */
  .page-contact-form h2 {
    font-size: 1.444rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

  .page-contact-form .wpcf7 input[type="submit"] {
    width: 100%;
    margin-left: 0;
  }

  .page-contact-form .wpcf7 input[type="text"],
  .page-contact-form .wpcf7 input[type="email"],
  .page-contact-form .wpcf7 textarea {
    font-size: 16px;
  }

  /* ======= ACCESS page ======= */
  .page-access .access-page-transport-box {
    padding: 18px 18px;
    border-radius: 20px;
  }

  .page-access .access-page-transport-item {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }

  .page-access .access-page-map-embed iframe {
    min-height: 240px;
    height: 320px;
  }

  .page-access .access-page-transport-item dt {
    font-size: 1rem;
  }

  .page-access .access-page-transport-item dd {
    font-size: 1rem;
  }

  .page-access .access-page-address {
    margin: 0 0 22px;
    gap: 5px;
    flex-direction: column;
  }

  .page-access .access-page-address-label {
    font-size: 1rem;
    display: block;
  }

  .page-access .access-page-address-text {
    font-size: 1rem;
    display: block;
  }

  .page-contact-form .wpcf7 form {
    display: grid;
    gap: 5px;
  }

  /* ======= CONTACT THANKS page ======= */
  .page-id-59 .vertical-cta {
    display: none;
  }

  .contact-thanks {
    padding: 80px 16px;
  }

  .contact-thanks__title {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
  }

  .contact-thanks__text {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 0 8px;
  }

  .contact-thanks__btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* ======= SINGLE page ======= */
  .single-pager {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* ======= page-privacy ======= */
  .page-privacy {
    padding: 44px 0 72px;
  }
  .page-privacy .page-content {
    font-size: 1.02rem;
    line-height: 1.85;
  }
  .page-privacy .page-content h2 {
    padding-left: 12px;
  }

  /* ======= news一覧 page ======= */
  .page-news .news-item {
    grid-template-columns: 1fr;
    gap: 0 10px;
  }
  .page-news .news-item time {
    justify-self: start;
  }

  /* NEWS */
  .section.news .news-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =========================================================
   英語・ポルトガル語 翻訳対応（pt / en）
========================================================= */

/* ======================
   header
====================== */
html[lang="pt"] .header-nav ul,
html[lang="en"] .header-nav ul {
  flex-wrap: wrap;
  row-gap: 12px;
}

html[lang="pt"] .header-nav .nav-title,
html[lang="en"] .header-nav .nav-title {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: normal;
  text-align: center;
}

html[lang="pt"] .logo p,
html[lang="en"] .logo p {
  display: none;
}

html[lang="pt"] .header.header--page .header-nav ul,
html[lang="en"] .header.header--page .header-nav ul {
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  justify-content: center;
}

html[lang="pt"] .header.header--page .header-nav ul li,
html[lang="en"] .header.header--page .header-nav ul li {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: normal;
}

html[lang="pt"] .header.header--page .nav-title,
html[lang="pt"] .header.header--page .nav-subtitle,
html[lang="en"] .header.header--page .nav-title,
html[lang="en"] .header.header--page .nav-subtitle {
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

html[lang="pt"] .header.header--page .language-ui__label,
html[lang="en"] .header.header--page .language-ui__label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ======================
   footer（共通）
====================== */
html[lang="pt"] .footer .clinic-type,
html[lang="pt"] .footer .clinic-address,
html[lang="pt"] .footer .schedule-note,
html[lang="pt"] .footer .payment p,
html[lang="pt"] .footer-nav a,
html[lang="en"] .footer .clinic-type,
html[lang="en"] .footer .clinic-address,
html[lang="en"] .footer .schedule-note,
html[lang="en"] .footer .payment p,
html[lang="en"] .footer-nav a {
  overflow-wrap: anywhere;
  word-break: break-word;
  letter-spacing: 0.02em;
}

/* ======================
   <=640px（SP）
====================== */
@media (max-width: 640px) {
  html[lang="pt"] .footer,
  html[lang="en"] .footer {
    padding: 56px 16px 20px;
  }

  html[lang="pt"] .footer .footer-main,
  html[lang="en"] .footer .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  html[lang="pt"] .footer .footer-info,
  html[lang="en"] .footer .footer-info {
    text-align: center;
  }

  html[lang="pt"] .footer .logo img,
  html[lang="en"] .footer .logo img {
    width: min(200px, 70vw);
    height: auto;
  }

  /* ---- 診療時間テーブル ---- */
  html[lang="pt"] .footer .schedule,
  html[lang="en"] .footer .schedule {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  html[lang="pt"] .footer .schedule table,
  html[lang="en"] .footer .schedule table {
    min-width: 520px;
  }

  html[lang="pt"] .footer .schedule th,
  html[lang="pt"] .footer .schedule td,
  html[lang="en"] .footer .schedule th,
  html[lang="en"] .footer .schedule td {
    padding: 6px 10px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }

  /* ---- 支払い ---- */
  html[lang="pt"] .footer .payment,
  html[lang="en"] .footer .payment {
    padding: 16px;
    border-radius: 16px;
  }

  html[lang="pt"] .footer .payment h3,
  html[lang="en"] .footer .payment h3 {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
  }

  html[lang="pt"] .footer .payment p,
  html[lang="en"] .footer .payment p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* ---- フッターCTA ---- */
  html[lang="pt"] .footer-cta,
  html[lang="en"] .footer-cta {
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
  }

  html[lang="pt"] .footer-cta .btn--white,
  html[lang="en"] .footer-cta .btn--white {
    width: 100%;
    max-width: 420px;
  }

  /* ---- フッターナビ ---- */
  html[lang="pt"] .footer-nav ul,
  html[lang="en"] .footer-nav ul {
    flex-wrap: wrap;
    row-gap: 12px;
    justify-content: center;
  }

  html[lang="pt"] .footer-nav li,
  html[lang="en"] .footer-nav li {
    padding: 0 12px;
  }

  html[lang="pt"] .footer-nav a,
  html[lang="en"] .footer-nav a {
    white-space: normal;
    line-height: 1.4;
    text-align: center;
  }

  /* 区切り線は翻訳＋SPでは非表示 */
  html[lang="pt"] .footer-nav li + li::before,
  html[lang="en"] .footer-nav li + li::before {
    display: none;
  }

  .header.header--page .header-nav ul li {
    font-size: 18px;
  }
  .header .header-inner .header-nav .nav-subtitle {
    font-size: 14px;
  }

  .about-page-hero-visual {
    margin-bottom: 50px;
  }

  .about-page-hero-visual img {
    border-radius: 20px;
  }

  .contact-page-lead {
    font-size: 16px;
    text-align: left;
  }
}
