:root {
  --navy: #2f3440;
  --navy-light: #4b5364;
  --navy-soft: rgba(47, 52, 64, 0.16);

  --beige: #cfc39c;
  --beige-deep: #bca873;
  --beige-soft: #f7f4eb;
  --beige-bg: #ede7d6;

  --line: #d8d5cc;
  --text: #333;
  --white: #fff;
}

/* ----------------------------------------------------
共通
---------------------------------------------------- */
.w1200 {
  width: 95%;
  padding: 0 0%;
  max-width: 1200px;
  margin: auto;
}

/* すべての p に margin-bottom */
.under_main_bloc p {
  margin-bottom: 12px;
}

/* p が 1つだけのときだけ margin-bottom を 0 にする */
.under_main_bloc p:only-child {
  margin-bottom: 0;
}

/*--------------------------------------------------
下層 ヘッダー
--------------------------------------------------*/
.under_main {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 70vw;
  max-height: 480px;
  background-image: url(../images/top/section-background.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.under_main::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}

.under_main .ttl {
  position: absolute;
  z-index: 1;
  margin: auto;
  left: 0;
  right: 0;
  top: 70%;
  transform: translateY(50%);
  color: #fff;
  width: 95%;
  border-bottom: 1px solid #fff;
}

.under_main .ttl .under_h1 {
  color: #fff;
  font-size: 255%;
  letter-spacing: .1em;
  line-height: 1.2em;
  font-family: "Noto Serif JP", serif;
}

/* ------------- レスポンシブ ------------- */
@media (max-width: 1024px) {}

@media (max-width: 840px) {}

@media (max-width: 600px) {
  .under_main {
    height: 45vw;
  }

  .under_main .ttl {
    top: 65%;
  }

  .under_main .ttl .under_h1 {
    font-size: 120%;
  }

}


/*--------------------------------------------------
下層 基本枠
--------------------------------------------------*/
#under_page {
  width: 100%;
}

#under_page section {
  width: 100%;
  box-sizing: border-box;
  padding: 60px 0;
  background-color: #fbfaf7;
}

#under_page section:nth-child(2n) {
  background-color: #fff;
}

#under_page section .inner_section {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
}

#under_page section .clearfix:not(:last-child) {
  margin-bottom: 60px;
}

/*--------------------------------------------------
画像の配置
--------------------------------------------------*/
.clearfix {
  min-height: 1px;
  margin-bottom: 40px;
}

.clearfix:last-child {
  margin-bottom: 0;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.contents_img {
  width: 300px;
  float: right;
  margin: 6px 0 20px 20px;
}

.contents_img img {
  width: 100%;
  height: auto;
  display: block;
}


/* モバイル「画像→テキスト」 */
@media (max-width: 768px) {
  .contents_img {
    float: none;
    width: 100%;
    margin: 12px 0;
  }
}

/*--------------------------------------------------
下層 目次
--------------------------------------------------*/

.toc-wrap {
  border: 1px solid var(--navy);
  padding: 20px;
  margin: 80px auto;
  background-color: var(--beige-soft);
  box-shadow: 0 4px 8px rgba(47, 52, 64, 0.08);
  max-width: 1200px;
  width: 100%;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 20px;
}

.toc-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  font-size: 16px;
  padding: 10px;
}

.toc-list a:hover {
  color: rgba(47, 52, 64, 0.6);
}

.toc-icon {
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .toc-wrap {
    width: calc(100% - 24px);
    margin: 20px 12px;
  }

  .toc-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .toc-list a {
    font-size: 14px;
    padding: 0;
    display: block;
  }

  .toc-icon {
    margin-right: 8px;
    font-size: 16px;
  }
}

/*--------------------------------------------------
下層 見出し
--------------------------------------------------*/
/* ===== H2 デザイン ===== */
.u-h2 {
  position: relative;
  margin: 0 0 24px;
  padding: 12px 12px 12px 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  background-color: var(--beige-soft);
  color: var(--navy);
}

.u-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: var(--beige-deep);
}

/* ===== H3 デザイン ===== */
.u-h3 {
  position: relative;
  margin: 0 0 16px;
  padding: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}

.u-h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e6e0d1;
}

.u-h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: var(--beige-deep);
}

/* ===== H4 デザイン ===== */
.u-h4 {
  position: relative;
  margin: 20px 0 12px;
  padding-left: 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--navy);
}

.u-h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--beige-deep);
}

@media (max-width: 768px) {
  .u-h2 {
    font-size: 20px;
  }

  .u-h3 {
    font-size: 18px;
  }

  .u-h4 {
    font-size: 18px;
  }
}

/*--------------------------------------------------
カードデザイン
--------------------------------------------------*/
.card_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.card_item {
  border: 1px solid var(--line);
  padding: 26px;
  background: #fff;
  position: relative;
}

.card_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--beige-deep), var(--beige));
}

.card_h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: var(--beige-deep);
}

@media (max-width:768px) {

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

  .card_h3 {
    font-size: 18px;
  }

}

/*--------------------------------------------------
症状リスト
--------------------------------------------------*/
.medical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 20px;
  list-style: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(47, 52, 64, 0.05);
  padding: 30px;
}

.medical-tags li {
  font-size: 16px;
}

.medical-tags a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--beige-deep);
  border-radius: 20px;
  color: var(--navy);
  background: var(--beige-soft);
  text-decoration: none;
  transition: 0.3s;
}

.medical-tags a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* リンクなし */
.medical-tags li:not(:has(a)) {
  padding: 6px 14px;
  background: var(--beige-soft);
  color: var(--navy);
  border-radius: 20px;
}

@media (max-width: 768px) {
  .medical-tags {
    padding: 10px;
  }
}

/*--------------------------------------------------
よくある質問
--------------------------------------------------*/

/* summaryのデフォルトマーカー削除 */
summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* FAQカード */
.faq-item {
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  background: var(--beige-soft);
  color: var(--navy);
  padding: 22px 70px 22px 70px;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

/* Qマーク */
.faq-q::before {
  content: "Q.";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--beige-deep);
  font-weight: 600;
}

/* +ボタン */
.faq-q::after {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--beige-deep);
}

/* 開いた時 */
.faq-item[open] .faq-q {
  background: var(--navy);
  color: #fff;
}

.faq-item[open] .faq-q::before {
  color: #fff;
}

/* −ボタン */
.faq-item[open] .faq-q::after {
  content: "−";
  color: var(--beige);
}

/* 回答 */
.faq-a {
  background: #fff;
  padding: 28px 30px 28px 70px;
  line-height: 1.9;
  position: relative;
}

/* Aマーク */
.faq-a::before {
  content: "A.";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--beige-deep);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}

/* summary矢印削除 */
summary::-webkit-details-marker {
  display: none;
}

/*--------------------------------------------------
料金表
--------------------------------------------------*/

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 20px;
}

/* 枠 */
.price-table th,
.price-table td {
  border: 1px solid #e4ddca;
}

.price-table th {
  width: 60%;
  text-align: left;
  padding: 16px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  color: #fff;
  font-weight: 500;
}

.price-table td {
  padding: 16px;
  text-align: right;
  font-weight: 500;
  background: #fff;
  color: var(--text);
}

.price-table span {
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  display: block;
  margin-top: 4px;
}


/* ------------------------
  診療の流れ
------------------------ */
.flow-chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.flow-col {
  position: relative;
}

.flow-head {
  min-height: 70px;
  margin-bottom: 18px;
  padding: 16px 12px;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid rgba(47, 52, 64, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: inherit;
}

.flow-head.first {
  background: linear-gradient(90deg,
      rgba(188, 168, 115, 0.28) 0%,
      rgba(207, 195, 156, 0.12) 100%);
  color: #8b7142;
  border: 1px solid rgba(188, 168, 115, 0.38);
}

.flow-head.second {
  background: linear-gradient(90deg,
      rgba(75, 83, 100, 0.22) 0%,
      rgba(47, 52, 64, 0.10) 100%);
  color: var(--navy);
  border: 1px solid rgba(47, 52, 64, 0.22);
}

.flow-head.repeat {
  background: linear-gradient(90deg,
      rgba(47, 52, 64, 0.26) 0%,
      rgba(47, 52, 64, 0.10) 100%);
  color: var(--navy);
  border: 1px solid rgba(47, 52, 64, 0.26);
}

.flow-box {
  position: relative;
  padding: 15px 14px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(250, 248, 242, 1) 100%);
  border: 1px solid rgba(47, 52, 64, 0.14);
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  box-sizing: border-box;
}

.flow-box.accent {
  background: linear-gradient(90deg,
      rgba(207, 195, 156, 0.18) 0%,
      rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(188, 168, 115, 0.26);
}

/* 矢印 */
.flow-arrow {
  position: relative;
  width: 4px;
  height: 24px;
  margin: 0 auto 12px;
  background: var(--beige-deep);
}

.flow-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--beige-deep);
}

.flow-arrow+.flow-box {
  margin-top: 4px;
}

/* タブレット */
@media (max-width: 1024px) {
  .flow-chart {
    gap: 18px;
  }

  .flow-head {
    min-height: 78px;
    padding: 14px 10px;
  }

  .flow-head h3 {
    font-size: 22px;
  }

  .flow-box {
    padding: 14px 12px;
    font-size: 16px;
  }

  .flow-arrow {
    height: 22px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .flow-chart {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .flow-head {
    min-height: auto;
    margin-bottom: 14px;
    padding: 14px 10px;
  }

  .flow-head h3 {
    font-size: 20px;
  }

  .flow-box {
    padding: 14px 12px;
    font-size: 16px;
    line-height: 1.55;
  }

  .flow-arrow {
    width: 4px;
    height: 20px;
    margin: 0 auto 10px;
  }

  .flow-arrow::after {
    bottom: -8px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid var(--beige-deep);
  }

  .flow-arrow+.flow-box {
    margin-top: 4px;
  }
}

/* =========================
   メインテナンスの流れ
========================= */
.mnt-flow {
  margin-top: 40px;
}

.mnt-flow__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(47, 52, 64, 0.08);
}

.mnt-flow__num {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige-deep) 0%, var(--beige) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px rgba(188, 168, 115, 0.28);
}

.mnt-flow__content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
}

.mnt-flow__body {
  min-width: 0;
}

.mnt-flow__title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.mnt-flow__text {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
}

.mnt-flow__media {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--beige-soft);
  border: 1px solid var(--line);
}

.mnt-flow__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mnt-flow__arrow {
  position: relative;
  width: 2px;
  height: 40px;
  margin: 10px auto;
  background: linear-gradient(to bottom, var(--beige) 0%, var(--navy-light) 100%);
}

.mnt-flow__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--navy-light);
  border-bottom: 2px solid var(--navy-light);
  transform: translateX(-50%) rotate(45deg);
  background: var(--white);
}

.mnt-flow__item:hover {
  transform: translateY(-2px);
  transition: 0.3s ease;
  box-shadow: 0 14px 36px rgba(47, 52, 64, 0.12);
}

@media screen and (max-width: 991px) {
  .mnt-flow__content {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
  }
}

@media screen and (max-width: 767px) {
  .mnt-flow {
    margin-top: 28px;
  }

  .mnt-flow__item {
    gap: 16px;
    padding: 20px 18px;
  }

  .mnt-flow__num {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .mnt-flow__content {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .mnt-flow__title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.5;
  }

  .mnt-flow__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .mnt-flow__media {
    aspect-ratio: 16 / 10;
  }

  .mnt-flow__arrow {
    height: 28px;
    margin: 8px auto;
  }

  .mnt-flow__arrow::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 768px) {
  .mnt-flow__num {
    align-self: center;
  }
}

/* =========================
   access page
========================= */
.access-page {
  color: var(--text);
}

.access-main,
.access-detail,
.access-hours,
.access-cta {
  padding: 100px 0;
}

.access-detail,
.access-cta {
  background: var(--beige-soft);
}

.access-main__head,
.access-hours__head {
  margin-bottom: 40px;
}

.access-main__en {
  margin: 0 0 14px;
  color: var(--beige-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.access-main__lead {
  margin-top: 20px;
  font-size: 16px;
  line-height: 2;
}

/* =========================
   上段：地図＋医院情報
========================= */
.access-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 40px;
  align-items: stretch;
}

.access-map,
.access-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.access-map__frame,
.access-info__card {
  margin-top: 0;
  height: 100%;
}

.access-map__frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(47, 52, 64, 0.08);
}

.access-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.access-info__card {
  padding: 36px 36px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(47, 52, 64, 0.08);
}

.access-info__label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 14px;
  background: var(--beige-soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.access-info__name {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.access-info__list {
  margin: 0;
}

.access-info__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.access-info__row:first-child {
  padding-top: 0;
}

.access-info__row dt {
  color: var(--navy);
  font-weight: 700;
}

.access-info__row dd {
  margin: 0;
  line-height: 1.9;
}

.access-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.access-info__tags li {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
  color: var(--navy);
  font-size: 13px;
  line-height: 1.4;
}

/* =========================
   中段：電車・車 2カラム
========================= */
.access-cards {
  display: grid;
  gap: 28px;
}

.access-cards--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  align-items: stretch;
}

.access-cards--2col .access-card {
  width: 100%;
  max-width: none;
  height: 100%;
  box-sizing: border-box;
}

.access-card {
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.access-card__icon {
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--beige);
  color: var(--beige-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.access-card__title {
  margin-bottom: 18px;
}

.access-card__text,
.access-card__sub {
  margin: 0;
  line-height: 2;
}

.access-card__sub {
  margin-top: 12px;
}

/* =========================
   診療時間
========================= */
.access-hours__wrap {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 32px;
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.access-hours__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.access-hours__table th,
.access-hours__table td {
  border: 1px solid var(--line);
  padding: 18px 12px;
  text-align: center;
  font-size: 15px;
}

.access-hours__table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.access-hours__table tbody th {
  background: var(--beige-soft);
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.access-hours__note {
  margin: 18px 0 0;
  color: var(--navy);
  font-weight: 700;
}

/* =========================
   CTA
========================= */
.access-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: center;
  padding: 44px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.access-cta__text p {
  line-height: 2;
}

.access-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.access-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.access-btn--primary {
  background: var(--navy);
  color: var(--white);
}

.access-btn--primary:hover {
  background: var(--navy-light);
}

.access-btn--line {
  background: var(--beige-soft);
  color: var(--navy);
  border: 1px solid var(--line);
}

.access-btn--line:hover {
  background: var(--beige-bg);
}

/* =========================
   tablet
========================= */
@media screen and (max-width: 1100px) {
  .access-main__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-map__frame iframe {
    min-height: 400px;
  }

  .access-cards--2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .access-cta__btns {
    max-width: 360px;
  }
}

/* =========================
   sp
========================= */
@media screen and (max-width: 767px) {
  .access-main,
  .access-detail,
  .access-hours,
  .access-cta {
    padding: 70px 0;
  }

  .access-main__head,
  .access-hours__head {
    margin-bottom: 28px;
  }

  .access-main__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.9;
  }

  .access-main__grid {
    gap: 20px;
  }

  .access-map__frame iframe {
    min-height: 300px;
  }

  .access-info__card {
    padding: 24px 18px;
  }

  .access-info__label {
    margin-bottom: 12px;
  }

  .access-info__name {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .access-info__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .access-info__row dt {
    font-size: 14px;
  }

  .access-info__row dd {
    font-size: 14px;
    line-height: 1.8;
  }

  .access-info__tags {
    gap: 8px;
    margin-top: 18px;
  }

  .access-info__tags li {
    padding: 8px 12px;
    font-size: 12px;
  }

  .access-card {
    padding: 24px 18px;
  }

  .access-card__icon {
    margin-bottom: 14px;
  }

  .access-card__text,
  .access-card__sub {
    font-size: 14px;
    line-height: 1.9;
  }

  .access-hours__wrap {
    padding: 18px 14px;
    overflow-x: auto;
  }

  .access-hours__table {
    min-width: 720px;
  }

  .access-hours__table th,
  .access-hours__table td {
    padding: 14px 10px;
    font-size: 14px;
  }

  .access-hours__note {
    margin-top: 14px;
    font-size: 14px;
  }

  .access-cta__box {
    gap: 24px;
    padding: 26px 18px;
  }

  .access-cta__text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .access-btn {
    min-height: 54px;
    font-size: 14px;
  }
}

/* =========================
   doctor page
========================= */
.doctor-page {
  color: var(--text);
}

.doctor-fv,
.doctor-message,
.doctor-career,
.doctor-profile,
.doctor-paper,
.doctor-cta {
  padding: 100px 0;
}

.doctor-message,
.doctor-paper {
  background: var(--beige-soft);
}

.doctor-en {
  margin: 0 0 14px;
  color: var(--beige-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.doctor-sec-head {
  margin-bottom: 34px;
}

.doctor-fv__grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.doctor-fv__media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.doctor-fv__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-fv__position {
  margin: 0 0 10px;
  color: var(--navy);
  font-weight: 700;
}

.doctor-fv__name {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.3;
  font-weight: 700;
}

.doctor-fv__lead {
  margin: 0;
  line-height: 2;
}

.doctor-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.doctor-points__item {
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.doctor-points__ttl {
  margin: 0 0 10px;
  color: var(--beige-deep);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.doctor-points__text {
  margin: 0;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 700;
}

.doctor-message__box,
.doctor-profile__card,
.doctor-paper__list,
.doctor-cta__box {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.doctor-message__box {
  padding: 44px 40px;
}

.doctor-message__body p {
  margin: 0 0 18px;
  line-height: 2;
}

.doctor-message__body p:last-child {
  margin-bottom: 0;
}

.doctor-timeline {
  border-top: 1px solid var(--line);
}

.doctor-timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.doctor-timeline__year {
  color: var(--beige-deep);
  font-size: 28px;
  line-height: 1.2;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  font-weight: 700;
}

.doctor-timeline__text {
  line-height: 1.9;
}

.doctor-profile__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.doctor-profile__card {
  padding: 36px 32px;
}

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

.doctor-list li {
  position: relative;
  padding: 0 0 0 18px;
  margin-bottom: 14px;
  line-height: 1.9;
}

.doctor-list li:last-child {
  margin-bottom: 0;
}

.doctor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 7px;
  height: 7px;
  background: var(--beige-deep);
  border-radius: 50%;
  transform: translateY(-50%);
}

.doctor-paper__lead {
  margin-bottom: 26px;
}

.doctor-paper__lead p {
  margin: 0;
  line-height: 2;
}

.doctor-paper__list {
  margin: 0;
  padding: 30px 32px;
  list-style: none;
}

.doctor-paper__list li {
  border-bottom: 1px solid var(--line);
}

.doctor-paper__list li:last-child {
  border-bottom: none;
}

.doctor-paper__list a {
  display: block;
  padding: 18px 0;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.8;
  transition: 0.3s ease;
}

.doctor-paper__list a:hover {
  color: var(--beige-deep);
}

.doctor-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: center;
  padding: 44px 40px;
}

.doctor-cta__text p {
  line-height: 2;
}

.doctor-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doctor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.doctor-btn--primary {
  background: var(--navy);
  color: var(--white);
}

.doctor-btn--primary:hover {
  background: var(--navy-light);
}

.doctor-btn--line {
  background: var(--beige-soft);
  color: var(--navy);
  border: 1px solid var(--line);
}

.doctor-btn--line:hover {
  background: var(--beige-bg);
}

/* tablet */
@media screen and (max-width: 1100px) {
  .doctor-fv__grid,
  .doctor-profile__grid,
  .doctor-cta__box {
    grid-template-columns: 1fr;
  }

  .doctor-points {
    grid-template-columns: 1fr;
  }
}

/* sp */
@media screen and (max-width: 767px) {
  .doctor-fv,
  .doctor-message,
  .doctor-career,
  .doctor-profile,
  .doctor-paper,
  .doctor-cta {
    padding: 70px 0;
  }

  .doctor-fv__grid {
    gap: 24px;
  }

  .doctor-fv__name {
    font-size: 32px;
  }

  .doctor-message__box,
  .doctor-profile__card,
  .doctor-paper__list,
  .doctor-cta__box {
    padding: 24px 18px;
  }

  .doctor-timeline__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .doctor-timeline__year {
    font-size: 24px;
  }

  .doctor-paper__list a,
  .doctor-message__body p,
  .doctor-paper__lead p,
  .doctor-timeline__text,
  .doctor-list li,
  .doctor-cta__text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .doctor-btn {
    min-height: 54px;
    font-size: 14px;
  }
}

/* =========================
   clinic page
========================= */
.clinic-page {
  color: var(--text);
}

.clinic-fv,
.clinic-gallery,
.clinic-equipment,
.clinic-policy,
.clinic-cta {
  padding: 100px 0;
}

.clinic-gallery,
.clinic-policy {
  background: var(--beige-soft);
}

.clinic-en {
  margin: 0 0 14px;
  color: var(--beige-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.clinic-sec-head {
  margin-bottom: 34px;
}

.clinic-sec-head__lead {
  margin: 18px 0 0;
  line-height: 2;
}

.clinic-fv__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 48px;
  align-items: center;
}

.clinic-fv__lead {
  margin: 18px 0 0;
  line-height: 2;
}

.clinic-fv__media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(47, 52, 64, 0.08);
}

.clinic-fv__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-fv__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.clinic-fv__point {
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.05);
}

.clinic-fv__point-en {
  margin: 0 0 8px;
  color: var(--beige-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.clinic-fv__point-ja {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.7;
}

/* gallery */
.clinic-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.clinic-gallery__item {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.05);
  overflow: hidden;
}

.clinic-gallery__item--lg {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.clinic-gallery__photo {
  margin: 0;
  background: var(--beige-bg);
}

.clinic-gallery__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.clinic-gallery__body {
  padding: 24px;
}

.clinic-gallery__title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.5;
}

.clinic-gallery__text {
  margin: 0;
  line-height: 2;
}

/* equipment */
.clinic-equipment__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.clinic-equipment__card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.05);
  overflow: hidden;
}

.clinic-equipment__photo {
  margin: 0;
  background: var(--beige-bg);
}

.clinic-equipment__photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.clinic-equipment__body {
  padding: 24px;
}

.clinic-equipment__label {
  margin: 0 0 10px;
  color: var(--beige-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.clinic-equipment__title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.5;
}

.clinic-equipment__text {
  margin: 0;
  line-height: 2;
}

/* policy */
.clinic-policy__box,
.clinic-cta__box {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.clinic-policy__box {
  padding: 44px 40px;
}

.clinic-policy__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.clinic-policy__item {
  padding: 24px 20px;
  background: var(--beige-soft);
  border: 1px solid var(--line);
}

.clinic-policy__title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.5;
}

.clinic-policy__text {
  margin: 0;
  line-height: 2;
}

/* cta */
.clinic-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: center;
  padding: 44px 40px;
}

.clinic-cta__text p {
  line-height: 2;
}

.clinic-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clinic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.clinic-btn--primary {
  background: var(--navy);
  color: var(--white);
}

.clinic-btn--primary:hover {
  background: var(--navy-light);
}

.clinic-btn--line {
  background: var(--beige-soft);
  color: var(--navy);
  border: 1px solid var(--line);
}

.clinic-btn--line:hover {
  background: var(--beige-bg);
}

/* tablet */
@media screen and (max-width: 1100px) {
  .clinic-fv__grid,
  .clinic-gallery__item--lg,
  .clinic-cta__box {
    grid-template-columns: 1fr;
  }

  .clinic-fv__points,
  .clinic-policy__grid {
    grid-template-columns: 1fr;
  }
}

/* sp */
@media screen and (max-width: 767px) {
  .clinic-fv,
  .clinic-gallery,
  .clinic-equipment,
  .clinic-policy,
  .clinic-cta {
    padding: 70px 0;
  }

  .clinic-gallery__grid,
  .clinic-equipment__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .clinic-gallery__item--lg {
    grid-column: span 1;
  }

  .clinic-sec-head {
    margin-bottom: 24px;
  }

  .clinic-sec-head__lead,
  .clinic-fv__lead,
  .clinic-gallery__text,
  .clinic-equipment__text,
  .clinic-policy__text,
  .clinic-cta__text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .clinic-gallery__body,
  .clinic-equipment__body,
  .clinic-policy__box,
  .clinic-cta__box {
    padding: 24px 18px;
  }

  .clinic-gallery__title,
  .clinic-equipment__title,
  .clinic-policy__title {
    font-size: 20px;
  }

  .clinic-equipment__photo img {
    height: 220px;
  }

  .clinic-btn {
    min-height: 54px;
    font-size: 14px;
  }
}

/* =========================
   whitening page
========================= */
.whitening-page .card_grid {
  align-items: stretch;
}

.whitening-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}

.whitening-plan-card {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.whitening-plan-card__head {
  margin-bottom: 20px;
}

.whitening-plan-card__en {
  margin: 0 0 10px;
  color: var(--beige-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.whitening-block {
  margin-top: 24px;
}

.whitening-h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.whitening-list {
  margin: 0;
  padding-left: 1.2em;
}

.whitening-list li {
  margin-bottom: 8px;
  line-height: 1.9;
}

.whitening-list li:last-child {
  margin-bottom: 0;
}

.whitening-note {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.whitening-step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.whitening-step {
  display: flex;
  gap: 16px;
  padding: 18px 18px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
}

.whitening-step__num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  letter-spacing: 0.08em;
}

.whitening-step__body h5 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

.whitening-step__body p {
  margin: 0;
  line-height: 1.9;
}

.related-links {
  margin-top: 18px;
}

.related-links--cta {
  margin-top: 24px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.3s ease;
}

.related-link:hover {
  background: var(--beige-bg);
}

.related-link--cta {
  min-height: 60px;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.related-link--cta:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.whitening-cta {
  padding: 44px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.whitening-cta__body p {
  line-height: 2;
}

/* sp */
@media screen and (max-width: 767px) {
  .whitening-plan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .whitening-plan-card {
    padding: 24px 18px;
  }

  .whitening-h4 {
    font-size: 16px;
  }

  .whitening-list li,
  .whitening-step__body p,
  .whitening-note,
  .whitening-cta__body p {
    font-size: 14px;
    line-height: 1.9;
  }

  .whitening-step {
    gap: 12px;
    padding: 14px;
  }

  .whitening-step__num {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .whitening-step__body h5 {
    font-size: 15px;
  }

  .related-link {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .related-link--cta {
    min-height: 54px;
  }

  .whitening-cta {
    padding: 26px 18px;
  }
}

/* =========================
   perio page
========================= */
.perio-page .card_grid {
  align-items: stretch;
}

.perio-check {
  margin: 24px 0;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
}

.perio-check__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.perio-check__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  line-height: 1.9;
}

.perio-check__list li:last-child {
  margin-bottom: 0;
}

.perio-check__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--beige-deep);
  background: var(--white);
  transform: translateY(-50%);
  box-sizing: border-box;
}

.perio-check__list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.72em;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--beige-deep);
  border-bottom: 2px solid var(--beige-deep);
  transform: translateY(-60%) rotate(45deg);
}

.perio-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.perio-stage-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.perio-stage-card__head {
  margin-bottom: 14px;
}

.perio-stage-card__depth {
  margin: 8px 0 0;
  color: var(--beige-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.perio-stage-card__treatment {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.perio-h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.perio-method {
  margin-top: 18px;
}

.perio-systemic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: center;
  padding: 40px 36px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.perio-systemic__body p {
  line-height: 2;
}

.perio-systemic__img {
  margin: 0;
  text-align: center;
}

.perio-systemic__img img {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  height: auto;
}

.perio-cta {
  padding: 44px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.perio-cta__body p {
  line-height: 2;
}

.related-links {
  margin-top: 24px;
}

.related-links--cta {
  margin-top: 28px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.3s ease;
}

.related-link:hover {
  background: var(--beige-bg);
}

.related-link--cta {
  min-height: 60px;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.related-link--cta:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

/* sp */
@media screen and (max-width: 767px) {
  .perio-check {
    padding: 22px 18px;
    margin: 18px 0;
  }

  .perio-check__list li {
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.9;
  }

  .perio-stage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .perio-stage-card {
    padding: 24px 18px;
  }

  .perio-stage-card__depth {
    font-size: 13px;
  }

  .perio-h4 {
    font-size: 16px;
  }

  .perio-systemic {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 18px;
  }

  .perio-systemic__body p,
  .perio-stage-card p,
  .perio-method p,
  .perio-cta__body p {
    font-size: 14px;
    line-height: 1.9;
  }

  .perio-systemic__img img {
    max-width: 180px;
  }

  .perio-cta {
    padding: 26px 18px;
  }

  .related-link {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .related-link--cta {
    min-height: 54px;
  }
}

/* =========================
   denture page
========================= */
.denture-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.denture-type-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.denture-type-card__head {
  margin-bottom: 18px;
}

.denture-type-card__en {
  margin: 0 0 10px;
  color: var(--beige-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.denture-block {
  margin-top: 18px;
}

.denture-h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.denture-flow {
  margin-top: 28px;
}

.denture-flow__item {
  display: flex;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.denture-flow__num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: "Cormorant Garamond","Times New Roman",serif;
  letter-spacing: 0.08em;
}

.denture-flow__body {
  flex: 1;
}

.denture-flow__body p {
  margin: 0;
  line-height: 2;
}

.denture-flow__arrow {
  position: relative;
  width: 2px;
  height: 34px;
  margin: 10px auto;
  background: linear-gradient(to bottom, var(--beige) 0%, var(--navy-light) 100%);
}

.denture-flow__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--navy-light);
  border-bottom: 2px solid var(--navy-light);
  transform: translateX(-50%) rotate(45deg);
  background: var(--white);
}

.denture-cta {
  padding: 44px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.denture-cta__body p {
  line-height: 2;
}

.related-links {
  margin-top: 24px;
}

.related-links--cta {
  margin-top: 28px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.3s ease;
}

.related-link:hover {
  background: var(--beige-bg);
}

.related-link--cta {
  min-height: 60px;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.related-link--cta:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

/* sp */
@media screen and (max-width: 767px) {
  .denture-type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .denture-type-card {
    padding: 24px 18px;
  }

  .denture-h4 {
    font-size: 16px;
  }

  .denture-flow__item {
    gap: 14px;
    padding: 20px 18px;
  }

  .denture-flow__num {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .denture-flow__body p,
  .denture-type-card p,
  .denture-cta__body p {
    font-size: 14px;
    line-height: 1.9;
  }

  .denture-cta {
    padding: 26px 18px;
  }

  .related-link {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .related-link--cta {
    min-height: 54px;
  }
}

/* =========================
   esthetic page
========================= */
.esthetic-page .medical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.esthetic-page .medical-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
  color: var(--navy);
  font-size: 13px;
  line-height: 1.4;
}

.esthetic-intro-card {
  margin-top: 32px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.esthetic-price-table {
  margin-top: 28px;
}

.esthetic-note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.8;
}

.esthetic-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.esthetic-policy-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.esthetic-balance {
  margin: 18px 0;
}

.esthetic-balance__item + .esthetic-balance__item {
  margin-top: 14px;
}

.esthetic-h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.esthetic-balance__item p {
  margin: 0;
  line-height: 1.9;
}

.esthetic-list {
  margin: 0;
  padding-left: 1.2em;
}

.esthetic-list li {
  margin-bottom: 8px;
  line-height: 1.9;
}

.esthetic-list li:last-child {
  margin-bottom: 0;
}

.esthetic-material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.esthetic-material-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.esthetic-material-card__head {
  margin-bottom: 18px;
}

.esthetic-material-card__en {
  margin: 0 0 10px;
  color: var(--beige-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.esthetic-material-card__price {
  margin: 8px 0 0;
  color: var(--beige-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.esthetic-material-block {
  margin-top: 18px;
}

.esthetic-cta {
  padding: 44px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.esthetic-cta__body p {
  line-height: 2;
}

.related-links {
  margin-top: 24px;
}

.related-links--cta {
  margin-top: 28px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.3s ease;
}

.related-link:hover {
  background: var(--beige-bg);
}

.related-link--cta {
  min-height: 60px;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.related-link--cta:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

/* sp */
@media screen and (max-width: 767px) {
  .esthetic-page .medical-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .esthetic-page .medical-tags span {
    padding: 8px 12px;
    font-size: 12px;
  }

  .esthetic-intro-card,
  .esthetic-policy-card,
  .esthetic-material-card,
  .esthetic-cta {
    padding: 24px 18px;
  }

  .esthetic-policy-grid,
  .esthetic-material-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .esthetic-note,
  .esthetic-policy-card p,
  .esthetic-balance__item p,
  .esthetic-material-card p,
  .esthetic-list li,
  .esthetic-cta__body p {
    font-size: 14px;
    line-height: 1.9;
  }

  .esthetic-h4 {
    font-size: 16px;
  }

  .related-link {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .related-link--cta {
    min-height: 54px;
  }
}

/* =========================
   ortho page
========================= */
.ortho-check {
  margin: 24px 0;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
}

.ortho-check__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ortho-check__list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.9;
}

.ortho-check__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 18px;
  height: 18px;
  border: 2px solid var(--beige-deep);
  background: var(--white);
  transform: translateY(-50%);
  box-sizing: border-box;
}

.ortho-check__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.72em;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--beige-deep);
  border-bottom: 2px solid var(--beige-deep);
  transform: translateY(-60%) rotate(45deg);
}

.ortho-counseling {
  margin-top: 28px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.ortho-list {
  margin: 0;
  padding-left: 1.2em;
}

.ortho-list li {
  margin-bottom: 8px;
  line-height: 1.9;
}

.ortho-list li:last-child {
  margin-bottom: 0;
}

.ortho-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.ortho-benefit-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.ortho-phase {
  margin-top: 36px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.ortho-phase__item + .ortho-phase__item {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.ortho-h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.ortho-device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.ortho-device-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.ortho-device-card__head {
  margin-bottom: 18px;
}

.ortho-device-card__en {
  margin: 0 0 10px;
  color: var(--beige-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.ortho-device-block + .ortho-device-block {
  margin-top: 20px;
}

.ortho-price-table {
  margin-top: 28px;
}

.ortho-cta {
  padding: 44px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.ortho-cta__body p,
.ortho-counseling p,
.ortho-benefit-card p,
.ortho-phase p,
.ortho-device-card p {
  line-height: 2;
}

/* sp */
@media screen and (max-width: 767px) {
  .ortho-check {
    padding: 22px 18px;
    margin: 18px 0;
  }

  .ortho-check__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ortho-check__list li {
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.9;
  }

  .ortho-counseling,
  .ortho-benefit-card,
  .ortho-phase,
  .ortho-device-card,
  .ortho-cta {
    padding: 24px 18px;
  }

  .ortho-benefit-grid,
  .ortho-device-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .ortho-phase {
    margin-top: 24px;
  }

  .ortho-phase__item + .ortho-phase__item {
    margin-top: 20px;
    padding-top: 20px;
  }

  .ortho-h4 {
    font-size: 16px;
  }

  .ortho-list li,
  .ortho-counseling p,
  .ortho-benefit-card p,
  .ortho-phase p,
  .ortho-device-card p,
  .ortho-cta__body p {
    font-size: 14px;
    line-height: 1.9;
  }
}

/* =========================
   caries page
========================= */
.caries-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.caries-feature-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.caries-feature-card__head {
  margin-bottom: 18px;
}

.caries-feature-card__en {
  margin: 0 0 10px;
  color: var(--beige-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.caries-feature-block + .caries-feature-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.caries-h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.caries-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.caries-stage-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.caries-stage-card__treatment {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.caries-cta {
  padding: 44px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
}

.caries-cta__body p,
.caries-feature-card p,
.caries-stage-card p {
  line-height: 2;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.related-links--cta {
  margin-top: 28px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: var(--beige-soft);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.3s ease;
}

.related-link:hover {
  background: var(--beige-bg);
}

.related-link--cta {
  min-height: 60px;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.related-link--cta:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

/* sp */
@media screen and (max-width: 767px) {
  .caries-feature-grid,
  .caries-stage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .caries-feature-card,
  .caries-stage-card,
  .caries-cta {
    padding: 24px 18px;
  }

  .caries-h4 {
    font-size: 16px;
  }

  .caries-cta__body p,
  .caries-feature-card p,
  .caries-stage-card p {
    font-size: 14px;
    line-height: 1.9;
  }

  .related-links {
    gap: 10px;
  }

  .related-link {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .related-link--cta {
    min-height: 54px;
  }
}

/* =========================
   coming soon
========================= */
.comingsoon-section {
  padding: 100px 0;
}

.comingsoon-box {
  padding: 56px 40px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(47, 52, 64, 0.06);
  text-align: center;
}

.comingsoon-en {
  margin: 0 0 14px;
  color: var(--beige-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-family: "Cormorant Garamond","Times New Roman",serif;
}

.comingsoon-box .u-h2 {
  margin-bottom: 20px;
}

.comingsoon-text {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
}

.comingsoon-sub {
  margin: 14px 0 0;
  color: var(--navy-light);
  font-size: 15px;
  line-height: 1.9;
}

.comingsoon-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.comingsoon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 260px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.6;
  transition: 0.3s ease;
}

.comingsoon-btn--primary {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
}

.comingsoon-btn--primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.comingsoon-btn--line {
  background: var(--beige-soft);
  border: 1px solid var(--line);
  color: var(--navy);
}

.comingsoon-btn--line:hover {
  background: var(--beige-bg);
}

/* sp */
@media screen and (max-width: 767px) {
  .comingsoon-section {
    padding: 70px 0;
  }

  .comingsoon-box {
    padding: 32px 18px;
  }

  .comingsoon-text {
    font-size: 14px;
    line-height: 1.9;
  }

  .comingsoon-sub {
    font-size: 14px;
    line-height: 1.8;
  }

  .comingsoon-links {
    gap: 12px;
    margin-top: 24px;
  }

  .comingsoon-btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 14px;
  }
}

/* =========================
   応募フォーム
========================= */
.recruit-section {
  max-width: 980px;
  margin: 0 auto 72px;
}

.recruit-section--form {
  margin-top: 96px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading__title {
  flex-shrink: 0;
  margin: 0;
  color: #c7ab63;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.section-heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #d8c79c;
}

.recruit-lead {
  margin: 0 0 24px;
  color: #5f564b;
  font-size: 2rem;
  line-height: 1.8;
}

.recruit-section__label {
  margin: 0 0 20px;
  color: #5f564b;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.recruit-card {
  padding: 30px 36px 36px;
  border: 1px solid #ebe3d8;
  background: rgba(255, 255, 255, 0.9);
}

.recruit-card--intro {
  padding-top: 24px;
  padding-bottom: 24px;
}

.recruit-card__title {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d8c79c;
  color: #c7ab63;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}

.recruit-copy {
  margin-bottom: 16px;
}

.recruit-copy p {
  margin: 0 0 8px;
  color: #5f564b;
  font-size: 1.1rem;
  line-height: 2;
}

.gold-dot-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gold-dot-list--compact {
  margin-bottom: 28px;
}

.gold-dot-list li {
  position: relative;
  padding-left: 1.4em;
  color: #5f564b;
  font-size: 1.1rem;
  line-height: 2;
}

.gold-dot-list li + li {
  margin-top: 2px;
}

.gold-dot-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #c7ab63;
  font-weight: 700;
}

.job-detail {
  margin: 0;
  border-top: 1px solid #f0ebe2;
}

.job-detail__row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dotted #d9d2c5;
}

.job-detail__head {
  flex: 0 0 150px;
  margin: 0;
  padding: 10px 14px;
  background: #ccb26c;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
}

.job-detail__head span {
  font-size: 1.15rem;
}

.job-detail__body {
  flex: 1 1 auto;
  margin: 0;
  color: #5f564b;
  font-size: 1.1rem;
  line-height: 2;
}

.job-detail__list,
.job-detail__numbered {
  margin: 0;
  padding-left: 1.5em;
}

.job-detail__list li,
.job-detail__numbered li {
  margin: 0;
}

.time-list {
  display: grid;
  gap: 4px;
}

.time-list__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-list__day {
  min-width: 1.5em;
  font-weight: 700;
  color: #4f473f;
}

.time-list__text {
  flex: 1;
}

.form-copy {
  margin: 0 0 18px;
  color: #5f564b;
  font-size: 1.5rem;
  line-height: 1.8;
}

.form-placeholder {
  max-width: 680px;
  min-height: 520px;
  margin: 0 auto;
  border: 2px solid #d8c79c;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
}

.form-placeholder::before {
  content: "フォーム挿入エリア";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #c7ab63;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

@media (max-width: 767px) {
  .recruit-section {
    margin-bottom: 48px;
  }

  .recruit-section--form {
    margin-top: 64px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 16px;
  }

  .section-heading__title {
    font-size: 3.8rem;
  }

  .recruit-lead {
    margin-bottom: 16px;
    font-size: 1.2rem;
  }

  .recruit-section__label {
    margin-bottom: 14px;
    font-size: 2.1rem;
  }

  .recruit-card {
    padding: 18px 16px 22px;
  }

  .recruit-card__title {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 1.2rem;
  }

  .recruit-copy p,
  .gold-dot-list li,
  .job-detail__body {
    font-size: 1.0rem;
    line-height: 1.9;
  }

  .job-detail__row {
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .job-detail__head {
    flex: none;
    width: 100%;
    padding: 8px 12px;
  }

  .form-copy {
    font-size: 1.6rem;
  }

  .form-placeholder {
    min-height: 280px;
  }
}

/* ======================================
   recruit form / Contact Form 7
   ====================================== */

.recruit-section--form .form-placeholder {
  max-width: 680px;
  margin: 0 auto;
  padding: 26px 28px 30px;
  border: 2px solid #d8c79c;
  background: rgba(255, 255, 255, 0.95);
  min-height: auto;
}

.recruit-section--form .form-placeholder::before {
  display: none;
}

.recruit-section--form .wpcf7 {
  color: #5f564b;
  font-size: 14px;
  line-height: 1.8;
}

.recruit-section--form .wpcf7 form {
  margin: 0;
}

.recruit-section--form .wpcf7 p {
  margin: 0 0 14px;
}

.recruit-section--form .wpcf7 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

.recruit-section--form .wpcf7 tr {
  border-bottom: 1px solid #eee6d8;
}

.recruit-section--form .wpcf7 td {
  padding: 12px 0;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.8;
}

.recruit-section--form .wpcf7 td.yoyaku {
  width: 185px;
  padding-right: 18px;
}

.recruit-section--form .wpcf7 .b {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 10px;
  background: #ccb26c;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  border-radius: 2px;
}

.recruit-section--form .wpcf7 .sankou {
  color: #d77d7d;
  font-size: 12px;
  vertical-align: middle;
}

.recruit-section--form .wpcf7 input[type="text"],
.recruit-section--form .wpcf7 input[type="email"],
.recruit-section--form .wpcf7 input[type="tel"],
.recruit-section--form .wpcf7 input[type="number"],
.recruit-section--form .wpcf7 textarea,
.recruit-section--form .wpcf7 select {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #ddd8cf;
  background: #fff;
  color: #5f564b;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.recruit-section--form .wpcf7 textarea {
  height: 140px;
  padding: 12px 14px;
  resize: vertical;
}

.recruit-section--form .wpcf7 input::placeholder,
.recruit-section--form .wpcf7 textarea::placeholder {
  color: #b8b0a5;
  font-size: 13px;
}

.recruit-section--form .wpcf7 input[type="text"]:focus,
.recruit-section--form .wpcf7 input[type="email"]:focus,
.recruit-section--form .wpcf7 input[type="tel"]:focus,
.recruit-section--form .wpcf7 input[type="number"]:focus,
.recruit-section--form .wpcf7 textarea:focus,
.recruit-section--form .wpcf7 select:focus {
  outline: none;
  border-color: #c7ab63;
  background: #fffdf8;
}

/* radio */
.recruit-section--form .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}

.recruit-section--form .wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
}

.recruit-section--form .wpcf7 .wpcf7-list-item {
  margin: 0;
}

.recruit-section--form .wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.recruit-section--form .wpcf7 input[type="radio"] {
  margin: 0;
  accent-color: #c7ab63;
}

/* age "歳" */
.recruit-section--form .wpcf7 td .your-age-wrap,
.recruit-section--form .wpcf7 td .age-unit {
  display: inline-block;
}

.recruit-section--form .wpcf7 input[name="your-age"] {
  width: 160px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

/* checkbox */
.recruit-section--form .wpcf7 .contact-check {
  display: block;
  margin-top: 18px;
}

.recruit-section--form .wpcf7 .contact-check .wpcf7-list-item {
  display: block;
}

.recruit-section--form .wpcf7 .contact-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: #5f564b;
  font-size: 13px;
  line-height: 1.8;
}

.recruit-section--form .wpcf7 input[type="checkbox"] {
  margin: 4px 0 0;
  accent-color: #c7ab63;
  flex-shrink: 0;
}

/* submit */
.recruit-section--form .wpcf7 #mail_submit2,
.recruit-section--form .wpcf7 input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 52px;
  margin: 18px auto 0;
  border: none;
  background: #ccb26c;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.recruit-section--form .wpcf7 #mail_submit2:hover,
.recruit-section--form .wpcf7 input[type="submit"]:hover {
  opacity: 0.88;
}

/* response */
.recruit-section--form .wpcf7 .wpcf7-spinner {
  margin: 10px 0 0 10px;
}

.recruit-section--form .wpcf7 .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid #ddd8cf;
  font-size: 13px;
  line-height: 1.8;
  color: #5f564b;
  background: #fff;
}

.recruit-section--form .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #cf6d6d;
  font-size: 12px;
  line-height: 1.6;
}

.recruit-section--form .wpcf7 form.invalid .wpcf7-response-output,
.recruit-section--form .wpcf7 form.unaccepted .wpcf7-response-output,
.recruit-section--form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #e2b6b6;
  background: #fff8f8;
}

.recruit-section--form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #c7ab63;
  background: #fffdf7;
}

/* last note */
.recruit-section--form .wpcf7 p:last-of-type {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 12px;
  color: #766f66;
}

/* responsive */
@media (max-width: 767px) {
  .recruit-section--form .form-placeholder {
    padding: 18px 16px 22px;
	margin: 0 10px;
  }

  .recruit-section--form .wpcf7 table,
  .recruit-section--form .wpcf7 tbody,
  .recruit-section--form .wpcf7 tr,
  .recruit-section--form .wpcf7 td {
    display: block;
    width: 100%;
  }

  .recruit-section--form .wpcf7 tr {
    padding: 0 0 10px;
  }

  .recruit-section--form .wpcf7 td {
    padding: 8px 0;
  }

  .recruit-section--form .wpcf7 td.yoyaku {
    width: 100%;
    padding-right: 0;
    padding-bottom: 4px;
  }

  .recruit-section--form .wpcf7 .b {
    font-size: 11px;
    padding: 2px 8px;
  }

  .recruit-section--form .wpcf7 .sankou {
    font-size: 11px;
  }

  .recruit-section--form .wpcf7 input[type="text"],
  .recruit-section--form .wpcf7 input[type="email"],
  .recruit-section--form .wpcf7 input[type="tel"],
  .recruit-section--form .wpcf7 input[type="number"],
  .recruit-section--form .wpcf7 textarea,
  .recruit-section--form .wpcf7 select {
    height: 40px;
    font-size: 13px;
  }

  .recruit-section--form .wpcf7 input[name="your-age"] {
    width: 120px;
  }

  .recruit-section--form .wpcf7 #mail_submit2,
  .recruit-section--form .wpcf7 input[type="submit"] {
    height: 48px;
    font-size: 13px;
  }
}

/* ======================================
   instagram
   ====================================== */
.top-instagram{
  width: 80%;
  margin: 0 auto;
}

.top-instagram #sb_instagram,
.top-instagram .sb_instagram{
  width: 100% !important;
  max-width: 100% !important;
}
@media (max-width: 767px){
  .top-instagram{
    width: 95%;
  }
}