/* =========================================================
   TOP TEST2 専用CSS
   元ファイル：top-test.css
   このファイルのみを page-top-test2.php から読み込みます。
   公開TOP用 top-test.css は編集しないでください。
========================================================= */

/* ==============================
  base
============================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #0b2144;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.8;
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
	body {
		padding-top: 0px;
	}
}


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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}


/* ==============================
  ヘッダー
============================== */
.asteo-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	width: 100%;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.asteo-header__inner {
  width: 100%;
  margin: 0 auto;
}

.asteo-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  height: 66px;
  margin: 0 auto;
  padding: 0 28px;
}

.asteo-header__logo {
  width: 304px;
  margin: 0;
  line-height: 1;
}

.asteo-header__logo a {
  display: block;
}

.asteo-header__logo img {
  width: 100%;
}

.asteo-header__info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.asteo-header__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0b2144;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.asteo-header__tel i {
  font-size: 18px;
}

.asteo-header__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 170px;
  height: 44px;
  padding: 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #b18a46 0%, #c9a763 100%);
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(126, 88, 34, 0.18);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.asteo-header__reserve:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.asteo-header__hamburger {
  display: none;
}


/* ==============================
  メニュー
============================== */
.asteo-header__nav {
  border-top: 1px solid #f0ede8;
  background: #fff;
}

.asteo-header__nav > ul {
  display: flex;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
}

.asteo-header__nav > ul > li {
  position: relative;
  width: 12.5%;
}

.asteo-header__nav > ul > li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 1px;
  height: 32px;
  background: #e5ded2;
}

.asteo-header__nav > ul > li:last-child::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: 1px;
  height: 32px;
  background: #e5ded2;
}

.asteo-header__nav > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 58px;
  color: #0b2144;
  transition: color 0.3s ease, background 0.3s ease;
}

.asteo-header__nav > ul > li > a:hover {
  color: #b18a46;
  background: #fbf8f1;
}

.asteo-header__nav > ul > li > a span {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.asteo-header__nav > ul > li > a small {
  display: block;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1;
}


/* ==============================
  Header Dropdown Menu
============================== */
.asteo-header__nav-item--has-dropdown {
  position: relative;
}

.asteo-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 200;
  width: 560px;
  background: #fff;
  border-top: 1px solid #d8d3cc;
  border-left: 1px solid #d8d3cc;
  box-shadow: 0 14px 28px rgba(15, 28, 54, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.asteo-header__nav-item--has-dropdown:hover .asteo-header__dropdown,
.asteo-header__nav-item--has-dropdown:focus-within .asteo-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.asteo-header__dropdown-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asteo-header__dropdown-list li {
  width: auto;
}

.asteo-header__dropdown-list li::before,
.asteo-header__dropdown-list li::after {
  display: none !important;
}

.asteo-header__dropdown-list a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 18px;
  color: #0b2144;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  background: #fff;
  border-right: 1px solid #d8d3cc;
  border-bottom: 1px solid #d8d3cc;
  transition: color 0.3s ease, background 0.3s ease;
}

.asteo-header__dropdown-list a:hover {
  color: #b18a46;
  background: #fbf8f1;
}


/* ==============================
  ファーストビュー
============================== */
.asteo-fv {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.2) 58%, rgba(255, 255, 255, 0) 100%),
    url("../images/top/topfv-pc.png") center right / cover no-repeat;
}

.asteo-fv::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -190px;
  width: 560px;
  height: 560px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0) 59%),
    conic-gradient(from 25deg, rgba(183, 145, 70, 0.32), rgba(255, 255, 255, 0), rgba(183, 145, 70, 0.22), rgba(255, 255, 255, 0));
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
}

.asteo-fv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36%;
  height: 150px;
  background:
    linear-gradient(135deg, rgba(183, 145, 70, 0.14), rgba(255, 255, 255, 0) 70%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.asteo-fv__inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  min-height: 640px;
  margin: 0 auto;
  padding: 76px 3% 60px;
}

.asteo-fv__content {
  width: min(60%, 710px);
}

.asteo-fv__lead {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  padding-bottom: 8px;
  color: #0b2144;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.asteo-fv__lead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: #b18a46;
}

.asteo-fv__catch {
  margin: 0;
  color: #0b2144;
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.65;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.asteo-fv__catch span {
  color: #b18a46;
}

.asteo-fv__deco {
  position: relative;
  width: 410px;
  max-width: 100%;
  height: 20px;
  margin: 22px 0 24px;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 9px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 9px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-fv__deco::before,
.asteo-fv__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 18px);
  height: 1px;
  background: #b18a46;
}

.asteo-fv__deco::before {
  left: 0;
}

.asteo-fv__deco::after {
  right: 0;
}

.asteo-fv__text {
  margin: 0 0 30px;
  color: #1f3152;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.05;
}

.asteo-fv__btns {
  display: flex;
  align-items: center;
  gap: 22px;
}

.asteo-fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 66px;
  padding: 0 28px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.asteo-fv__btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.asteo-fv__btn--tel {
  gap: 10px;
  color: #0b2144;
  background: #fff;
  border: 1px solid #ded5c4;
  box-shadow: 0 5px 15px rgba(80, 64, 42, 0.08);
}

.asteo-fv__btn--reserve {
  gap: 16px;
  color: #fff;
  background: linear-gradient(135deg, #b18a46 0%, #c9a763 100%);
  box-shadow: 0 5px 15px rgba(126, 88, 34, 0.18);
}


/* ==============================
  Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-header__logo {
    width: 260px;
  }

  .asteo-header__tel {
    font-size: 22px;
  }

  .asteo-header__reserve {
    min-width: 150px;
    font-size: 13px;
  }

  .asteo-header__nav > ul > li > a span {
    font-size: 12px;
  }

  .asteo-fv {
    min-height: 560px;
    background-position: center right 32%;
  }

  .asteo-fv__inner {
    min-height: 560px;
    padding: 60px 5%;
  }

  .asteo-fv__content {
    width: 54%;
  }

  .asteo-fv__text {
    font-size: 15px;
  }

  .asteo-fv__btn {
    min-width: 200px;
    height: 58px;
    font-size: 16px;
  }
}


/* ==============================
  SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-header {
/*     position: sticky; */
    top: 0;
  }

  .asteo-header__top {
    height: 64px;
    padding: 0 16px;
  }

  .asteo-header__logo {
    width: 220px;
  }

  .asteo-header__info {
    display: none;
  }

  .asteo-header__hamburger {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    background: #0b2144;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }

  .asteo-header__hamburger span {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .asteo-header__hamburger span:nth-child(1) {
    top: 13px;
  }

  .asteo-header__hamburger span:nth-child(2) {
    top: 20px;
  }

  .asteo-header__hamburger span:nth-child(3) {
    top: 27px;
  }

  .asteo-header.is-open .asteo-header__hamburger span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .asteo-header.is-open .asteo-header__hamburger span:nth-child(2) {
    opacity: 0;
  }

  .asteo-header.is-open .asteo-header__hamburger span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .asteo-header__nav {
    display: none;
    border-top: 1px solid #eee8dc;
  }

  .asteo-header.is-open .asteo-header__nav {
    display: block;
  }

  .asteo-header__nav > ul {
    display: block;
    padding: 0;
  }

  .asteo-header__nav > ul > li {
    width: 100%;
  }

  .asteo-header__nav > ul > li::before,
  .asteo-header__nav > ul > li:last-child::after {
    display: none;
  }

  .asteo-header__nav > ul > li > a {
    align-items: flex-start;
    height: auto;
    padding: 16px 22px;
    border-bottom: 1px solid #eee8dc;
  }

  .asteo-header__nav > ul > li > a span {
    font-size: 15px;
  }

  .asteo-header__nav > ul > li > a small {
    margin-top: 3px;
    font-size: 10px;
  }

  .asteo-header__nav-item--has-dropdown > .asteo-header__nav-link {
    position: relative;
    padding-right: 52px;
  }

  .asteo-header__nav-item--has-dropdown > .asteo-header__nav-link::after {
    content: "＋";
    position: absolute;
    top: 50%;
    right: 22px;
    color: #b18a46;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
  }

  .asteo-header__nav-item--has-dropdown.is-dropdown-open > .asteo-header__nav-link::after {
    content: "−";
  }

  .asteo-header__dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .asteo-header__nav-item--has-dropdown:hover .asteo-header__dropdown,
  .asteo-header__nav-item--has-dropdown:focus-within .asteo-header__dropdown {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
  }

  .asteo-header__nav-item--has-dropdown.is-dropdown-open .asteo-header__dropdown {
    max-height: 900px;
    opacity: 1;
    visibility: visible;
  }

  .asteo-header__dropdown-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee8dc;
    list-style: none;
  }

  .asteo-header__dropdown-list li {
    width: auto;
  }

  .asteo-header__dropdown-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    padding: 8px 8px;
    color: #0b2144;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-align: center;
    background: #fff;
    border-right: 1px solid #eee8dc;
    border-bottom: 1px solid #eee8dc;
  }

  .asteo-header__dropdown-list a:hover {
    color: #b18a46;
    background: #fbf8f1;
  }

  .asteo-fv {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.82) 42%, #fff 78%),
      url("../images/top/topfv-sp.png") center top / 100% auto no-repeat;
  }

  .asteo-fv::before {
    left: -170px;
    bottom: -150px;
    width: 400px;
    height: 400px;
  }

  .asteo-fv::after {
    width: 70%;
    height: 120px;
  }

  .asteo-fv__inner {
    min-height: auto;
    padding: 50vw 20px 42px;
  }

  .asteo-fv__content {
    width: 100%;
  }

  .asteo-fv__lead {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .asteo-fv__catch {
    font-size: 28px;
    letter-spacing: 0.08em;
    line-height: 1.65;
  }

  .asteo-fv__deco {
    width: 260px;
    height: 18px;
    margin: 18px 0;
  }

  .asteo-fv__text {
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.9;
  }

  .asteo-fv__text br {
    display: none;
  }

  .asteo-fv__btns {
    flex-direction: column;
    gap: 12px;
  }

  .asteo-fv__btn {
    width: 100%;
    min-width: initial;
    height: 56px;
    padding: 0 18px;
    font-size: 15px;
  }
}

/* ==============================
  アクセス（インフォメーションブロック）
============================== */
.asteo-access {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  background: #fff;
}

.asteo-access::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  background:
    radial-gradient(
      ellipse 58% 86% at 20% 52%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.96) 38%,
      rgba(255, 255, 255, 0.72) 54%,
      rgba(255, 255, 255, 0.28) 68%,
      rgba(255, 255, 255, 0) 82%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.98) 30%,
      rgba(255, 255, 255, 0.78) 44%,
      rgba(255, 255, 255, 0.36) 58%,
      rgba(255, 255, 255, 0.08) 72%,
      rgba(255, 255, 255, 0) 88%
    );
  pointer-events: none;
}

.asteo-access::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -78px;
  z-index: 3;
  width: 116%;
  height: 160px;
  background: #061d3c;
  border-top: 4px solid #b18a46;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(2deg);
  pointer-events: none;
}

.asteo-access__visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 68%;
  height: 100%;
}

.asteo-access__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.asteo-access__inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  min-height: 580px;
  margin: 0 auto;
  padding: 78px 6% 100px;
}

.asteo-access__content {
  width: min(44%, 520px);
  text-align: center;
}

.asteo-access__heading {
  position: relative;
}

.asteo-access__heading::before,
.asteo-access__heading::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 62px;
  height: 1px;
  background: #d5bd83;
}

.asteo-access__heading::before {
  left: calc(50% - 112px);
}

.asteo-access__heading::after {
  right: calc(50% - 112px);
}

.asteo-access__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto 8px;
}

.asteo-access__icon::before {
  content: "✦";
  display: block;
  color: #b18a46;
  font-size: 16px;
  line-height: 1;
}

.asteo-access__en {
  margin: 0 0 14px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.35em;
  line-height: 1;
}

.asteo-access__title {
  margin: 0;
  color: #0b2144;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.75;
}

.asteo-access__title span {
  display: inline-block;
  margin: 0 4px;
  color: #b18a46;
  font-size: 1.45em;
  line-height: 1;
}

.asteo-access__deco {
  position: relative;
  width: 380px;
  max-width: 100%;
  height: 18px;
  margin: 24px auto 22px;
}

.asteo-access__deco::before,
.asteo-access__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 18px);
  height: 1px;
  background: #d5bd83;
}

.asteo-access__deco::before {
  left: 0;
}

.asteo-access__deco::after {
  right: 0;
}

.asteo-access__deco {
  background:
    radial-gradient(circle at center, #d5bd83 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 8px) center, #d5bd83 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 8px) center, #d5bd83 0 2px, transparent 3px);
}

.asteo-access__text {
  margin: 0 0 34px;
  color: #0b2144;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.05;
}

.asteo-access__message {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 18px 42px;
  color: #0b2144;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d9bd82;
  border-radius: 999px;
}

.asteo-access__message::before,
.asteo-access__message::after {
  content: "✦";
  position: absolute;
  top: 50%;
  color: #c9a763;
  font-size: 16px;
  transform: translateY(-50%);
}

.asteo-access__message::before {
  left: 20px;
}

.asteo-access__message::after {
  right: 20px;
}

.asteo-access__message p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
}


/* ==============================
  Access Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-access {
    min-height: 520px;
  }

  .asteo-access__inner {
    min-height: 520px;
    padding: 64px 5% 90px;
  }

  .asteo-access__content {
    width: 48%;
  }

  .asteo-access__title {
    font-size: 32px;
  }

  .asteo-access__text {
    font-size: 16px;
  }
}


/* ==============================
  Access SP
============================== */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .asteo-access {
    min-height: auto;
    padding-top: 0;
    background: #fff;
  }

  .asteo-access::before {
    display: none;
  }

  .asteo-access::after {
    left: -18%;
    bottom: -54px;
    width: 136%;
    height: 96px;
    border-top-width: 3px;
    transform: rotate(2deg);
  }

  .asteo-access__visual {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .asteo-access__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 30%, #fff 100%);
  }

  .asteo-access__visual img {
    object-position: center;
  }

  .asteo-access__inner {
    min-height: auto;
    padding: 36px 20px 74px;
  }

  .asteo-access__content {
    width: 100%;
  }

  .asteo-access__heading::before,
  .asteo-access__heading::after {
    width: 48px;
  }

  .asteo-access__heading::before {
    left: calc(50% - 94px);
  }

  .asteo-access__heading::after {
    right: calc(50% - 94px);
  }

  .asteo-access__en {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .asteo-access__title {
    font-size: 25px;
    letter-spacing: 0.08em;
    line-height: 1.75;
  }

  .asteo-access__title span {
    font-size: 1.5em;
  }

  .asteo-access__deco {
    width: 260px;
    margin: 20px auto 18px;
  }

  .asteo-access__text {
    margin-bottom: 26px;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.9;
  }

  .asteo-access__text br {
    display: none;
  }

  .asteo-access__message {
    padding: 16px 34px;
    border-radius: 18px;
  }

  .asteo-access__message::before {
    left: 14px;
  }

  .asteo-access__message::after {
    right: 14px;
  }

  .asteo-access__message p {
    font-size: 13px;
    letter-spacing: 0.04em;
  }
}

/* ==============================
  こんなお悩み・症状はありませんか？
============================== */
.asteo-worry {
  position: relative;
  overflow: hidden;
  padding: 70px 0 58px;
  background:
    radial-gradient(ellipse at 88% 4%, rgba(211, 185, 130, 0.18) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.asteo-worry::before {
  content: "";
  position: absolute;
  left: -160px;
  top: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(177, 138, 70, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.asteo-worry::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0) 56%, rgba(177, 138, 70, 0.2) 57%, rgba(177, 138, 70, 0.2) 58%, rgba(255, 255, 255, 0) 59%),
    conic-gradient(from 210deg, rgba(177, 138, 70, 0.22), rgba(255, 255, 255, 0), rgba(177, 138, 70, 0.12), rgba(255, 255, 255, 0));
  border-radius: 50%;
  pointer-events: none;
}

.asteo-worry__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 55px;
}

.asteo-worry__person {
  position: absolute;
  top: -70px;
  right: 0;
  z-index: 0;
  width: 700px;
  pointer-events: none;
  overflow: hidden;
}

.asteo-worry__person img {
  display: block;
  width: 100%;
  height: auto;
}

.asteo-worry__person::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.75) 16%, rgba(255,255,255,0) 34%),
    linear-gradient(270deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 16%),
    linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0) 16%),
    linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.75) 22%, rgba(255,255,255,0) 42%);
}

.asteo-worry__heading {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto 32px;
  text-align: center;
}

.asteo-worry__ornament {
  position: relative;
  width: 110px;
  height: 20px;
  margin: 0 auto 14px;
}

.asteo-worry__ornament::before,
.asteo-worry__ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 1px;
  background: #d5bd83;
}

.asteo-worry__ornament::before {
  left: 0;
}

.asteo-worry__ornament::after {
  right: 0;
}

.asteo-worry__ornament {
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 7px) center, #d5bd83 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 7px) center, #d5bd83 0 2px, transparent 3px);
}

.asteo-worry__title {
  margin: 0 0 18px;
  color: #0b2144;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.asteo-worry__title span {
  color: #b18a46;
}

.asteo-worry__lead {
  margin: 0;
  color: #1f3152;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}

.asteo-worry__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asteo-worry__item {
  position: relative;
  min-height: 172px;
  padding: 24px 18px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #eadfcb;
  box-shadow: 0 8px 20px rgba(80, 64, 42, 0.08);
  text-align: center;
}

.asteo-worry__check {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 20px;
  height: 20px;
  border: 1px solid #c9a763;
  border-radius: 50%;
}

.asteo-worry__check::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid #c9a763;
  border-bottom: 1.5px solid #c9a763;
  transform: rotate(-45deg);
}

.asteo-worry__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin: 0 auto 12px;
  color: #0b2144;
  font-size: 36px;
  line-height: 1;
}

.asteo-worry__item h3 {
  margin: 0 0 12px;
  color: #0b2144;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.asteo-worry__item p {
  margin: 0;
  color: #1f3152;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.asteo-worry__btn-wrap {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  text-align: center;
}

.asteo-worry__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-width: 340px;
  height: 58px;
  padding: 0 34px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #b18a46 0%, #c9a763 100%);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(126, 88, 34, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.asteo-worry__btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}


/* ==============================
  Worry Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-worry__inner {
    padding: 0 32px;
  }

  .asteo-worry__person {
    width: 260px;
    right: 0;
  }

  .asteo-worry__heading {
    max-width: 680px;
  }

  .asteo-worry__list {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==============================
  Worry SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-worry {
    padding: 52px 0 44px;
  }

  .asteo-worry::before {
    left: -220px;
    top: -190px;
  }

  .asteo-worry::after {
    left: -230px;
    bottom: -260px;
  }

  .asteo-worry__inner {
    padding: 0 18px;
  }

  .asteo-worry__person {
    width: min(78%, 260px);
    margin: 0 0 -8px auto;
  }

  .asteo-worry__heading {
    margin-bottom: 26px;
  }

  .asteo-worry__title {
    font-size: 25px;
    letter-spacing: 0.06em;
    line-height: 1.65;
    text-align: left;
    margin-top: -35px;
  }

  .asteo-worry__lead {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.9;
    text-align: left;
  }

  .asteo-worry__lead br {
    display: none;
  }

  .asteo-worry__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .asteo-worry__item {
    min-height: auto;
    padding: 22px 18px 18px;
  }

  .asteo-worry__icon {
    height: 38px;
    margin-bottom: 10px;
    font-size: 32px;
  }

  .asteo-worry__item h3 {
    font-size: 16px;
  }

  .asteo-worry__item p {
    font-size: 13px;
  }

  .asteo-worry__btn {
    width: 100%;
    min-width: initial;
    height: 56px;
    gap: 22px;
    padding: 0 18px;
    font-size: 15px;
  }
}

/* ==============================
  他院で「抜歯」と言われた方へ
============================== */
.asteo-second {
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
  background:
    radial-gradient(ellipse at 12% 8%, rgba(177, 138, 70, 0.14) 0%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.asteo-second::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(177, 138, 70, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.asteo-second::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 72px;
  z-index: 1;
  width: 116%;
  height: 130px;
  background: #061d3c;
  border-top: 4px solid #b18a46;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.asteo-second__bg-photo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 58%;
  height: 420px;
  overflow: hidden;
}

.asteo-second__bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.82) 18%, rgba(255,255,255,0.2) 44%, rgba(255,255,255,0) 66%),
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 22%),
    linear-gradient(0deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0) 24%);
  pointer-events: none;
}

.asteo-second__bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.asteo-second__inner {
  position: relative;
  z-index: 2;
  max-width: 98%;
  margin: 0 auto;
  padding: 0 48px 96px;
}

.asteo-second__intro {
  position: relative;
  min-height: 330px;
}

.asteo-second__heading {
  width: min(48%, 620px);
  text-align: center;
}

.asteo-second__ornament {
  position: relative;
  width: 112px;
  height: 18px;
  margin: 0 auto 12px;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 7px) center, #d5bd83 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 7px) center, #d5bd83 0 2px, transparent 3px);
}

.asteo-second__ornament::before,
.asteo-second__ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 1px;
  background: #d5bd83;
}

.asteo-second__ornament::before {
  left: 0;
}

.asteo-second__ornament::after {
  right: 0;
}

.asteo-second__title {
  margin: 0;
  color: #0b2144;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.55;
}

.asteo-second__title span {
  color: #b18a46;
}

.asteo-second__sub {
  margin: 0 0 18px;
  color: #b18a46;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.asteo-second__catch {
  margin: 0 0 16px;
  color: #0b2144;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.75;
}

.asteo-second__lead {
  /* margin: 0; */
  color: #1f3152;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
}

.asteo-second__points {
  position: absolute;
  right: 18%;
  bottom: 36px;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asteo-second__points li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(80, 64, 42, 0.12);
  text-align: center;
}

.asteo-second__point-icon {
  margin-bottom: 8px;
  color: #b18a46;
  font-size: 34px;
  line-height: 1;
}

.asteo-second__points p {
  margin: 0;
  color: #0b2144;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.asteo-second__cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.asteo-second-card {
  position: relative;
  padding: 34px 38px 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(80, 64, 42, 0.12);
  border: 1px solid #eadfcb;
}

.asteo-second-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d8c493;
}

.asteo-second-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  color: #fff;
  font-family: "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  background: linear-gradient(135deg, #b18a46 0%, #d8bd7f 100%);
  transform: rotate(45deg);
}

.asteo-second-card__num::before {
  content: attr(class);
}

.asteo-second-card__num {
  position: relative;
}

.asteo-second-card__num {
  font-size: 0;
}

.asteo-second-card__num::after {
  content: "01";
  font-size: 20px;
  transform: rotate(-45deg);
}

.asteo-second-card:nth-child(2) .asteo-second-card__num::after {
  content: "02";
}

.asteo-second-card__head h3 {
  margin: 0;
  color: #0b2144;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.asteo-second-card__body p {
  margin: 0 0 22px;
  color: #1f3152;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.asteo-second-card__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.asteo-second-card__photos figure {
  margin: 0;
}

.asteo-second-card__photos img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.asteo-second-card__photos figcaption {
  margin-top: 8px;
  color: #1f3152;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

.asteo-second-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.asteo-second-flow li {
  position: relative;
  text-align: center;
}

.asteo-second-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 64px;
  right: -14px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #b18a46;
  border-right: 2px solid #b18a46;
  transform: rotate(45deg);
}

.asteo-second-flow__num {
  display: block;
  margin-bottom: 6px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
}

.asteo-second-flow h4 {
  margin: 0 0 12px;
  color: #0b2144;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.asteo-second-flow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  color: #b18a46;
  font-size: 28px;
  background: #fbf4e8;
  border-radius: 50%;
}

.asteo-second-flow p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.asteo-second__bottom {
  position: relative;
  z-index: 4;
  background: #061d3c;
}

.asteo-second__bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 48px 26px;
}

.asteo-second__bottom-copy {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.65;
}

.asteo-second__bottom-copy::first-line {
  color: #fff;
}

.asteo-second__bottom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 340px;
  height: 58px;
  padding: 0 28px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #b18a46 0%, #c9a763 100%);
  border-radius: 4px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.asteo-second__bottom-btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.asteo-second__bottom-tel {
  display: block;
  padding-left: 28px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.asteo-second__bottom-tel span {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.asteo-second__bottom-tel strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* ==============================
  Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-second__bg-photo {
    width: 60%;
    height: 360px;
  }

  .asteo-second__inner {
    padding: 0 32px 86px;
  }

  .asteo-second__heading {
    width: 52%;
  }

  .asteo-second__points {
    right: 6%;
    bottom: 26px;
  }

  .asteo-second__points li {
    width: 112px;
    height: 112px;
  }

  .asteo-second__cards {
    grid-template-columns: 1fr;
  }

  .asteo-second__bottom-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .asteo-second__bottom-tel {
    padding-left: 0;
    border-left: none;
  }
}

/* ==============================
  SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-second {
    padding-top: 46px;
  }

  .asteo-second::before {
    top: -220px;
    right: -280px;
  }

  .asteo-second::after {
    bottom: 220px;
    height: 92px;
    border-top-width: 3px;
  }

  .asteo-second__bg-photo {
    /* position: relative; */
    width: 100%;
    height: 260px;
    margin-top: 24px;
  }

  .asteo-second__bg-photo::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,0) 40%, #fbf8f1 100%),
      linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 32%);
  }

  .asteo-second__bg-photo img {
  object-position: left;
}

  .asteo-second__inner {
    padding: 0 18px 64px;
  }

  .asteo-second__intro {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .asteo-second__heading {
    width: 100%;
    order: -1;
  }

  .asteo-second__title {
    font-size: 30px;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .asteo-second__sub {
    font-size: 14px;
    text-align: left;
  }

  .asteo-second__catch {
    font-size: 17px;
  }

  .asteo-second__lead {
    font-size: 13px;
    text-align: left;
  }

  .asteo-second__lead br {
    display: none;
  }

  .asteo-second__points {
    position: static;
    justify-content: center;
    gap: 8px;
    margin: 0 0 10px 0;
  }

  .asteo-second__points li {
    width: 104px;
    height: 104px;
    padding: 16px 5px;
  }

  .asteo-second__point-icon {
    font-size: 26px;
  }

  .asteo-second__points p {
    font-size: 10px;
  }

  .asteo-second__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .asteo-second-card {
    padding: 28px 20px 24px;
  }

  .asteo-second-card__head {
    gap: 14px;
  }

  .asteo-second-card__num {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .asteo-second-card__num::after {
    font-size: 17px;
  }

  .asteo-second-card__head h3 {
    font-size: 18px;
  }

  .asteo-second-card__body p {
    font-size: 13px;
  }

  .asteo-second-card__photos {
    grid-template-columns: 1fr;
  }

  .asteo-second-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .asteo-second-flow li {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    align-items: center;
    text-align: left;
  }

  .asteo-second-flow li:not(:last-child)::after {
    display: none;
  }

  .asteo-second-flow__num {
    grid-column: 2;
    margin-bottom: 2px;
  }

  .asteo-second-flow h4 {
    grid-column: 2;
    margin-bottom: 8px;
  }

  .asteo-second-flow__icon {
    grid-row: 1 / 4;
    width: 44px;
    height: 44px;
    margin: 0;
    font-size: 20px;
  }

  .asteo-second-flow p {
    grid-column: 2;
    font-size: 12px;
  }

  .asteo-second__bottom-inner {
    padding: 26px 18px 28px;
  }

  .asteo-second__bottom-copy {
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .asteo-second__bottom-btn {
    width: 100%;
    min-width: initial;
    height: 56px;
    gap: 18px;
    padding: 0 18px;
    font-size: 14px;
  }

  .asteo-second__bottom-tel strong {
    font-size: 26px;
  }
}

/* ==============================
  神戸三宮アステオ歯科が選ばれる理由
============================== */
.asteo-reason {
  position: relative;
  overflow: hidden;
  padding: 72px 0 74px;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(177, 138, 70, 0.14) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fbf8f1 0%, #fff 100%);
}

.asteo-reason__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 20px;
  max-width: 98%;
  margin: 0 auto;
  padding: 0 20px;
}

.asteo-reason__heading {
  padding-top: 18px;
}

.asteo-reason__en {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.34em;
  line-height: 1;
}

.asteo-reason__en::before,
.asteo-reason__en::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 74px;
  height: 1px;
  background: #b18a46;
}

.asteo-reason__en::before {
  left: -22px;
}

.asteo-reason__en::after {
  right: -22px;
}

.asteo-reason__title {
  margin: 0 0 28px;
  color: #0b2144;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.asteo-reason__title span {
  position: relative;
  display: inline-block;
  font-size: 1.16em;
}

.asteo-reason__title span::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: 6px;
  width: 92px;
  height: 22px;
  border-bottom: 2px solid #b18a46;
  border-radius: 0 0 100% 100%;
  transform: rotate(-8deg);
}

.asteo-reason__lead {
  margin: 0;
  color: #1f3152;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.05;
}

.asteo-reason__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "card01 card02"
    "card03 card04"
    "card05 card05";
  gap: 22px;
}

.asteo-reason-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e6d8bf;
  border-radius: 0 0 34px 0;
  box-shadow: 0 12px 24px rgba(80, 64, 42, 0.12);
}

.asteo-reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.asteo-reason-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  z-index: 3;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(177, 138, 70, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.asteo-reason-card--01 {
  grid-area: card01;
}

.asteo-reason-card--02 {
  grid-area: card02;
}

.asteo-reason-card--03 {
  grid-area: card03;
}

.asteo-reason-card--04 {
  grid-area: card04;
}

.asteo-reason-card--05 {
  grid-area: card05;
  grid-template-columns: 42% 58%;
  min-height: 160px;
}

.asteo-reason-card__body {
  position: relative;
  z-index: 4;
  padding: 26px 10px 24px 22px;
}

.asteo-reason-card__num {
  display: inline-block;
  margin-right: 12px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.asteo-reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b18a46;
  font-size: 26px;
  vertical-align: top;
  transform: translateY(6px);
}

.asteo-reason-card h3 {
  margin: 18px 0 14px;
  color: #0b2144;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.asteo-reason-card p {
  margin: 0;
  color: #1f3152;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.85;
}

.asteo-reason-card__photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100%;
}

.asteo-reason-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.78) 20%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

.asteo-reason-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asteo-reason-card--01 .asteo-reason-card__photo img {
  object-position: center;
}

.asteo-reason-card--02 .asteo-reason-card__photo img,
.asteo-reason-card--05 .asteo-reason-card__photo img {
  object-position: center right;
}

.asteo-reason-card--03 .asteo-reason-card__photo img {
  object-position: center;
}

.asteo-reason-card--04 .asteo-reason-card__photo img {
  object-position: center;
}


/* ==============================
  Reason Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-reason {
    padding: 64px 0 68px;
  }

  .asteo-reason__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 32px;
  }

  .asteo-reason__heading {
    max-width: 760px;
    padding-top: 0;
    text-align: center;
    margin: 0 auto;
  }

  .asteo-reason__lead {
    font-size: 14px;
  }

  .asteo-reason__cards {
    max-width: 960px;
    margin: 0 auto;
  }

  .asteo-reason__heading::after {
    display: none;
  }
}


/* ==============================
  Reason SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-reason {
    padding: 52px 0 58px;
  }

  .asteo-reason::before {
    left: -24%;
    bottom: -96px;
    width: 148%;
    height: 150px;
    border-top-width: 3px;
  }

  .asteo-reason::after {
    right: -330px;
    top: -250px;
  }

  .asteo-reason__inner {
    padding: 0 18px;
  }

  .asteo-reason__en {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .asteo-reason__title {
    margin-bottom: 20px;
    font-size: 28px;
    letter-spacing: 0.06em;
  }

  .asteo-reason__title span::after {
    right: -18px;
    width: 70px;
  }

  .asteo-reason__lead {
    font-size: 14px;
    text-align: left;
  }

  .asteo-reason__lead br {
    display: none;
  }

  .asteo-reason__cards {
    grid-template-columns: 1fr;
    grid-template-areas:
      "card01"
      "card02"
      "card03"
      "card04"
      "card05";
    gap: 16px;
  }

  .asteo-reason-card,
  .asteo-reason-card--05 {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 0 0 28px 0;
  }

  .asteo-reason-card__body {
    padding: 24px 20px 20px;
  }

  .asteo-reason-card__num {
    font-size: 42px;
  }

  .asteo-reason-card h3 {
    margin-top: 14px;
    font-size: 18px;
  }

  .asteo-reason-card__photo {
    height: 190px;
  }

  .asteo-reason-card__photo::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 16%, rgba(255,255,255,0) 42%);
  }
}

/* ==============================
  Shields Banner
============================== */
.asteo-shields-banner {
  padding: 56px 0;
  background: #fbf8f1;
}

.asteo-shields-banner__inner {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}

.asteo-shields-banner__link {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(52, 40, 22, 0.12);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.asteo-shields-banner__link:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.asteo-shields-banner picture,
.asteo-shields-banner img {
  display: block;
  width: 100%;
}

.asteo-shields-banner img {
  height: auto;
}

/* ==============================
  SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-shields-banner {
    padding: 36px 0;
  }

  .asteo-shields-banner__inner {
    width: calc(100% - 32px);
  }

  .asteo-shields-banner__link {
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(52, 40, 22, 0.1);
  }
}

/* ==============================
  あなたの歯を守る、歯を残す 3つの盾
============================== */
/* .asteo-shields {
  position: relative;
  overflow: hidden;
  padding: 58px 0 70px;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.12) 0%, rgba(6,29,60,0) 46%),
    linear-gradient(180deg, #071f3f 0%, #061a36 100%);
}

.asteo-shields::before,
.asteo-shields::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  pointer-events: none;
}

.asteo-shields::before {
  top: -360px;
  left: -9%;
  width: 118%;
  height: 740px;
  transform: rotate(-8deg);
}

.asteo-shields::after {
  right: -20%;
  bottom: -360px;
  width: 92%;
  height: 720px;
  transform: rotate(-16deg);
}

.asteo-shields__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.asteo-shields__heading {
  margin-bottom: 34px;
  text-align: center;
}

.asteo-shields__en {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 10px;
  color: #d6bd81;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.28em;
  line-height: 1;
}

.asteo-shields__en::before,
.asteo-shields__en::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: #d6bd81;
}

.asteo-shields__en::before {
  left: -42px;
}

.asteo-shields__en::after {
  right: -42px;
}

.asteo-shields__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.55;
}

.asteo-shields__title span {
  display: inline-block;
  margin: 0 4px;
  color: #d6bd81;
  font-size: 1.45em;
  line-height: 1;
}

.asteo-shields__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
}

.asteo-shields__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.asteo-shield-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 62px 26px 0;
  color: #0b2144;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,244,232,0.96) 100%);
  border: 2px solid rgba(214, 189, 129, 0.68);
  border-radius: 96px 96px 18px 18px / 58px 58px 18px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.asteo-shield-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  border: 1px solid rgba(177, 138, 70, 0.28);
  border-radius: 86px 86px 14px 14px / 52px 52px 14px 14px;
  pointer-events: none;
}

.asteo-shield-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  z-index: 3;
  width: 94%;
  height: 52px;
  background: #071f3f;
  border-top: 2px solid rgba(214, 189, 129, 0.75);
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.asteo-shield-card__badge {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 70px;
  color: #8d6b35;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(141, 107, 53, 0.55);
  clip-path: polygon(50% 0, 92% 14%, 92% 62%, 50% 100%, 8% 62%, 8% 14%);
  transform: translateX(-50%);
}

.asteo-shield-card__badge span {
  display: block;
  font-family: "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.asteo-shield-card__badge strong {
  display: block;
  margin-top: 3px;
  font-family: "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.asteo-shield-card__body {
  position: relative;
  z-index: 2;
}

.asteo-shield-card h3 {
  margin: 52px 0 10px;
  color: #0b2144;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.55;
}

.asteo-shield-card__sub {
  margin: 0 0 16px;
  color: #8d6b35;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.asteo-shield-card__text {
  margin: 0;
  color: #1f3152;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.9;
  text-align: left;
}

.asteo-shield-card__photo {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 178px;
  overflow: hidden;
}

.asteo-shield-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(250,244,232,1) 0%, rgba(250,244,232,0.54) 26%, rgba(250,244,232,0) 48%),
    linear-gradient(0deg, rgba(250,244,232,0.12) 0%, rgba(250,244,232,0) 46%);
  pointer-events: none;
}

.asteo-shield-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asteo-shield-card:nth-child(1) .asteo-shield-card__photo img {
  object-position: center bottom;
}

.asteo-shield-card:nth-child(2) .asteo-shield-card__photo img {
  object-position: center;
}

.asteo-shield-card:nth-child(3) .asteo-shield-card__photo img {
  object-position: center;
}

.sp-only {
  display: none;
}


/* ==============================
  Three Shields Tablet
============================== */
/* @media screen and (max-width: 1100px) {
  .asteo-shields__inner {
    padding: 0 32px;
  }

  .asteo-shields__cards {
    gap: 24px;
    max-width: 920px;
  }

  .asteo-shield-card {
    padding: 58px 22px 0;
  }

  .asteo-shield-card h3 {
    font-size: 23px;
  }
} */


/* ==============================
  Three Shields SP
============================== */
/* @media screen and (max-width: 767px) {
  .asteo-shields {
    padding: 50px 0 58px;
  }

  .asteo-shields::before {
    top: -260px;
    left: -42%;
    width: 170%;
    height: 520px;
  }

  .asteo-shields::after {
    right: -80%;
    bottom: -300px;
    width: 150%;
    height: 560px;
  }

  .asteo-shields__inner {
    padding: 0 18px;
  }

  .asteo-shields__heading {
    margin-bottom: 28px;
  }

  .asteo-shields__en {
    font-size: 13px;
  }

  .asteo-shields__title {
    font-size: 27px;
    letter-spacing: 0.06em;
  }

  .asteo-shields__lead {
    font-size: 13px;
    letter-spacing: 0.03em;
    text-align: left;
  }

  .asteo-shields__lead br {
    display: none;
  }

  .asteo-shields__cards {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 320px;
  }

  .asteo-shield-card {
    min-height: 420px;
    padding: 58px 24px 0;
  }

  .asteo-shield-card h3 {
    margin-top: 50px;
    font-size: 24px;
  }

  .asteo-shield-card__sub {
    font-size: 14px;
  }

  .asteo-shield-card__text {
    font-size: 13px;
  }

  .asteo-shield-card__photo {
    height: 170px;
  }

  .sp-only {
    display: block;
  }
}  */

/* ==============================
  わかりやすい説明と痛みに配慮した治療
============================== */
.asteo-comfort {
  position: relative;
  overflow: hidden;
  padding: 58px 0 48px;
  background:
    linear-gradient(180deg, #071f3f 0%, #071f3f 44%, #fbf7ef 44%, #fbf7ef 100%);
}

.asteo-comfort::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 46%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.16) 0%, rgba(7,31,63,0) 54%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.asteo-comfort__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.asteo-comfort__heading {
  margin-bottom: 34px;
  color: #fff;
  text-align: center;
}

.asteo-comfort__title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.55;
}

.asteo-comfort__deco {
  position: relative;
  width: 270px;
  height: 20px;
  margin: 12px auto 16px;
  background:
    radial-gradient(circle at center, #d6bd81 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 10px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 10px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-comfort__deco::before,
.asteo-comfort__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  height: 1px;
  background: #d6bd81;
}

.asteo-comfort__deco::before {
  left: 0;
}

.asteo-comfort__deco::after {
  right: 0;
}

.asteo-comfort__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
}

.asteo-comfort__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.asteo-comfort-card {
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e4d3b8;
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(52, 40, 22, 0.16);
}

.asteo-comfort-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #dec79a;
  border-radius: 8px;
  pointer-events: none;
}

.asteo-comfort-card__inner {
  position: relative;
  z-index: 1;
  padding: 24px 26px 24px;
}

.asteo-comfort-card__head {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d7bd82;
}

.asteo-comfort-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  color: #0b2144;
  font-family: "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  background:
    radial-gradient(circle, #fff 0%, #fff 58%, #f9f1e3 59%, #f9f1e3 100%);
  border: 1px solid #d8c493;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fbf7ef;
}

.asteo-comfort-card__head h3 {
  margin: 0;
  color: #0b2144;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.asteo-comfort-card__content {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 22px;
  align-items: start;
}

.asteo-comfort-card__photo {
  overflow: hidden;
  border-radius: 8px;
}

.asteo-comfort-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.asteo-comfort-card__text p {
  margin: 0 0 14px;
  color: #1f3152;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.95;
}

.asteo-comfort-card__text p:last-child {
  margin-bottom: 0;
}

.asteo-comfort-card__note {
  padding: 10px 12px;
  background: #fbf4e8;
  border-radius: 6px;
}

.asteo-comfort-card__bottom {
  margin-top: 26px;
}

.asteo-comfort-card__bottom-title {
  position: relative;
  margin: 0 0 18px;
  color: #b18a46;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.asteo-comfort-card__bottom-title::before,
.asteo-comfort-card__bottom-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: #d8c493;
}

.asteo-comfort-card__bottom-title::before {
  left: 0;
}

.asteo-comfort-card__bottom-title::after {
  right: 0;
}

.asteo-comfort-card__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.asteo-comfort-card__features li {
  position: relative;
  padding: 0 12px;
  text-align: center;
}

.asteo-comfort-card__features li + li {
  border-left: 1px solid #ded2bd;
}

.asteo-comfort-card__features span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  color: #0b2144;
  font-size: 24px;
  background: #fbf4e8;
  border: 1px solid #eadcc4;
  border-radius: 50%;
}

.asteo-comfort-card__features p {
  margin: 0;
  color: #1f3152;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.asteo-comfort__message {
  position: relative;
  width: min(100%, 820px);
  margin: 16px auto 0;
  padding: 12px 42px;
  color: #0b2144;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d8c493;
  border-radius: 4px;
  text-align: center;
}

.asteo-comfort__message::before {
  content: "❧";
  position: absolute;
  left: 24px;
  top: 50%;
  color: #b18a46;
  font-size: 22px;
  transform: translateY(-50%);
}

.asteo-comfort__message p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.7;
}


/* ==============================
  Comfort Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-comfort__inner {
    padding: 0 32px;
  }

  .asteo-comfort__cards {
    gap: 22px;
  }

  .asteo-comfort-card__inner {
    padding: 22px 20px;
  }

  .asteo-comfort-card__head {
    grid-template-columns: 64px 1fr;
  }

  .asteo-comfort-card__num {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .asteo-comfort-card__head h3 {
    font-size: 22px;
  }

  .asteo-comfort-card__content {
    grid-template-columns: 1fr;
  }
}


/* ==============================
  Comfort SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-comfort {
    padding: 48px 0 42px;
    background:
      linear-gradient(180deg, #071f3f 0%, #071f3f 28%, #fbf7ef 28%, #fbf7ef 100%);
  }

  .asteo-comfort__inner {
    padding: 0 18px;
  }

  .asteo-comfort__heading {
    margin-bottom: 28px;
  }

  .asteo-comfort__title {
    font-size: 27px;
    letter-spacing: 0.06em;
  }

  .asteo-comfort__deco {
    width: 220px;
  }

  .asteo-comfort__lead {
    font-size: 13px;
    letter-spacing: 0.03em;
    text-align: left;
  }

  .asteo-comfort__lead br {
    display: none;
  }

  .asteo-comfort__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .asteo-comfort-card {
    padding: 9px;
  }

  .asteo-comfort-card__inner {
    padding: 22px 16px 20px;
  }

  .asteo-comfort-card__head {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .asteo-comfort-card__num {
    width: 56px;
    height: 56px;
    font-size: 24px;
    box-shadow: inset 0 0 0 4px #fbf7ef;
  }

  .asteo-comfort-card__head h3 {
    font-size: 19px;
    letter-spacing: 0.05em;
  }

  .asteo-comfort-card__content {
    gap: 16px;
  }

  .asteo-comfort-card__text p {
    font-size: 13px;
  }

  .asteo-comfort-card__text br {
    display: none;
  }

  .asteo-comfort-card__bottom-title::before,
  .asteo-comfort-card__bottom-title::after {
    width: 18%;
  }

  .asteo-comfort-card__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .asteo-comfort-card__features li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  .asteo-comfort-card__features li + li {
    padding-top: 14px;
    border-left: none;
    border-top: 1px solid #ded2bd;
  }

  .asteo-comfort-card__features span {
    margin: 0;
  }

  .asteo-comfort__message {
    margin-top: 18px;
    padding: 14px 20px;
  }

  .asteo-comfort__message::before {
    display: none;
  }

  .asteo-comfort__message p {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
}

/* ==============================
  精密治療を支える設備
============================== */
.asteo-equipment {
  position: relative;
  overflow: hidden;
  padding: 56px 0 62px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(177, 138, 70, 0.08) 0%, rgba(255,255,255,0) 46%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.asteo-equipment::before {
  content: "";
  position: absolute;
  inset: 14px 12px;
  border: 1px solid rgba(7, 31, 63, 0.38);
  pointer-events: none;
}

.asteo-equipment__inner {
  position: relative;
  z-index: 1;
  max-width: 98%;
  margin: 0 auto;
  padding: 0 48px;
}

.asteo-equipment__heading {
  margin-bottom: 28px;
  text-align: center;
}

.asteo-equipment__en {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.32em;
  line-height: 1;
}

.asteo-equipment__en::before,
.asteo-equipment__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 76px;
  height: 1px;
  background: #d6bd81;
}

.asteo-equipment__en::before {
  right: calc(100% + 18px);
}

.asteo-equipment__en::after {
  left: calc(100% + 18px);
}

.asteo-equipment__title {
  margin: 0;
  color: #0b2144;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.45;
}

.asteo-equipment__deco {
  position: relative;
  width: 310px;
  height: 18px;
  margin: 10px auto 0;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 10px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 10px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-equipment__deco::before,
.asteo-equipment__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 32px);
  height: 1px;
  background: #d6bd81;
}

.asteo-equipment__deco::before {
  left: 0;
}

.asteo-equipment__deco::after {
  right: 0;
}

.asteo-equipment__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px 18px;
}

.asteo-equipment-card {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  grid-column: span 2;
  min-height: 150px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 31, 63, 0.42);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(52, 40, 22, 0.06);
}

.asteo-equipment-card--wide {
  grid-column: span 3;
}

.asteo-equipment-card__photo {
  overflow: hidden;
  border-radius: 2px;
}

.asteo-equipment-card__photo img {
  width: 100%;
  height: 100%;
  min-height: 134px;
  object-fit: cover;
}

.asteo-equipment-card__body {
  padding: 16px 16px 14px 22px;
}

.asteo-equipment-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.asteo-equipment-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: #b18a46;
  font-size: 22px;
  border: 1px solid #d6bd81;
  border-radius: 50%;
}

.asteo-equipment-card h3 {
  position: relative;
  margin: 0;
  padding-bottom: 10px;
  color: #0b2144;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.asteo-equipment-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 8px;
  background:
    radial-gradient(circle at center, #d6bd81 0 2px, transparent 3px),
    linear-gradient(90deg, #d6bd81 0%, #d6bd81 100%);
  background-size: 10px 8px, 100% 1px;
  background-position: center center, center center;
  background-repeat: no-repeat;
}

.asteo-equipment-card h3 span {
  font-size: 0.5em;
}

.asteo-equipment-card p {
  margin: 0;
  color: #1f3152;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

/* ==============================
  Equipment Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-equipment__inner {
    padding: 0 32px;
  }

  .asteo-equipment__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .asteo-equipment-card,
  .asteo-equipment-card--wide {
    grid-column: auto;
    grid-template-columns: 44% 56%;
  }

  .asteo-equipment-card h3 {
    font-size: 19px;
  }
}

/* ==============================
  Equipment SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-equipment {
    padding: 46px 0 48px;
  }

  .asteo-equipment::before {
    inset: 8px;
  }

  .asteo-equipment__inner {
    padding: 0 18px;
  }

  .asteo-equipment__heading {
    margin-bottom: 24px;
  }

  .asteo-equipment__en {
    font-size: 13px;
    letter-spacing: 0.24em;
  }

  .asteo-equipment__en::before,
  .asteo-equipment__en::after {
    width: 44px;
  }

  .asteo-equipment__title {
    font-size: 27px;
    letter-spacing: 0.1em;
  }

  .asteo-equipment__deco {
    width: 230px;
  }

  .asteo-equipment__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .asteo-equipment-card,
  .asteo-equipment-card--wide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .asteo-equipment-card__photo img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .asteo-equipment-card__body {
    padding: 18px 16px 16px;
  }

  .asteo-equipment-card__head {
    gap: 10px;
  }

  .asteo-equipment-card__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .asteo-equipment-card h3 {
    font-size: 18px;
  }

  .asteo-equipment-card p {
    font-size: 13px;
  }

  .asteo-equipment-card p br {
    display: none;
  }
}

/* ==============================
  徹底した滅菌・感染予防対策
============================== */
.asteo-sterilization {
  position: relative;
  overflow: hidden;
  padding: 54px 0 58px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(177, 138, 70, 0.08) 0%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.asteo-sterilization::before {
  content: "";
  position: absolute;
  inset: 14px 12px;
  border: 1px solid rgba(7, 31, 63, 0.42);
  pointer-events: none;
}

.asteo-sterilization__inner {
  position: relative;
  z-index: 1;
  max-width: 98%;
  margin: 0 auto;
  padding: 0 48px;
}

.asteo-sterilization__heading {
  margin-bottom: 26px;
  text-align: center;
}

.asteo-sterilization__en {
  position: relative;
  display: inline-block;
  margin: 0 0 8px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.28em;
  line-height: 1;
}

.asteo-sterilization__en::before,
.asteo-sterilization__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 74px;
  height: 1px;
  background: #d6bd81;
}

.asteo-sterilization__en::before {
  right: calc(100% + 18px);
}

.asteo-sterilization__en::after {
  left: calc(100% + 18px);
}

.asteo-sterilization__title {
  margin: 0;
  color: #0b2144;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.asteo-sterilization__deco {
  position: relative;
  width: 220px;
  height: 18px;
  margin: 8px auto 0;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 9px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 9px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-sterilization__deco::before,
.asteo-sterilization__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  height: 1px;
  background: #d6bd81;
}

.asteo-sterilization__deco::before {
  left: 0;
}

.asteo-sterilization__deco::after {
  right: 0;
}

.asteo-sterilization__content {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 28px;
  align-items: stretch;
}

.asteo-sterilization__photo {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(52, 40, 22, 0.06);
}

.asteo-sterilization__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 72%, rgba(255,255,255,0.78) 100%),
    linear-gradient(0deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 28%);
  pointer-events: none;
}

.asteo-sterilization__photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.asteo-sterilization__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asteo-sterilization__list li {
  display: grid;
  grid-template-columns: 55px 210px 1fr;
  align-items: center;
  min-height: 68px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e7dcc8;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(52, 40, 22, 0.04);
}

.asteo-sterilization__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #b18a46;
  font-size: 21px;
  border: 1px solid #d6bd81;
  border-radius: 4px;
}

.asteo-sterilization__list h3 {
  position: relative;
  margin: 0;
  padding: 0 5px;
  color: #0b2144;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.asteo-sterilization__list h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 34px;
  background: #e1d6c4;
  transform: translateY(-50%);
}

.asteo-sterilization__list p {
  margin: 0;
  padding-left: 24px;
  color: #1f3152;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.75;
}


/* ==============================
  Sterilization Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-sterilization__inner {
    padding: 0 32px;
  }

  .asteo-sterilization__content {
    grid-template-columns: 1fr;
  }

  .asteo-sterilization__photo {
    min-height: 280px;
  }

  .asteo-sterilization__photo img {
    min-height: 280px;
  }

  .asteo-sterilization__list li {
    grid-template-columns: 70px 220px 1fr;
  }
}


/* ==============================
  Sterilization SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-sterilization {
    padding: 46px 0 48px;
  }

  .asteo-sterilization::before {
    inset: 8px;
  }

  .asteo-sterilization__inner {
    padding: 0 18px;
  }

  .asteo-sterilization__heading {
    margin-bottom: 22px;
  }

  .asteo-sterilization__en {
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .asteo-sterilization__en::before,
  .asteo-sterilization__en::after {
    width: 42px;
  }

  .asteo-sterilization__title {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .asteo-sterilization__deco {
    width: 200px;
  }

  .asteo-sterilization__content {
    gap: 20px;
  }

  .asteo-sterilization__photo {
    min-height: auto;
  }

  .asteo-sterilization__photo img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .asteo-sterilization__list {
    gap: 10px;
  }

  .asteo-sterilization__list li {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 16px;
  }

  .asteo-sterilization__icon {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .asteo-sterilization__list h3 {
    padding: 0;
    font-size: 16px;
  }

  .asteo-sterilization__list h3::after {
    display: none;
  }

  .asteo-sterilization__list p {
    grid-column: 2;
    padding-left: 0;
    font-size: 13px;
  }

  .asteo-sterilization__list p br {
    display: none;
  }
}

/* ==============================
  初めての方へ
============================== */
.asteo-first {
  position: relative;
  overflow: hidden;
  padding: 58px 0 62px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(177, 138, 70, 0.08) 0%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.asteo-first__inner {
  position: relative;
  z-index: 1;
  max-width: 97%;
  margin: 0 auto;
  padding: 0 48px;
}

.asteo-first__heading {
  margin-bottom: 38px;
  text-align: center;
}

.asteo-first__title {
  margin: 0 0 6px;
  color: #0b2144;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.asteo-first__en {
  margin: 0;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.28em;
  line-height: 1;
}

.asteo-first__deco {
  position: relative;
  width: 190px;
  height: 18px;
  margin: 10px auto 12px;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 9px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 9px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-first__deco::before,
.asteo-first__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  height: 1px;
  background: #d6bd81;
}

.asteo-first__deco::before {
  left: 0;
}

.asteo-first__deco::after {
  right: 0;
}

.asteo-first__lead {
  margin: 0;
  color: #1f3152;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.asteo-first__flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: first-step;
}

.asteo-first__item {
  position: relative;
  min-height: 278px;
  padding: 64px 22px 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #0b2144;
  border-radius: 4px;
  text-align: center;
  clip-path: none;
  overflow: visible;
}

.asteo-first__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 4px solid #b18a46;
  border-right: 4px solid #b18a46;
  transform: translateY(-50%) rotate(45deg);
}

.asteo-first__step {
  position: absolute;
  top: -26px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: linear-gradient(135deg, #b18a46 0%, #c9a763 100%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.asteo-first__step span {
  display: block;
  margin-bottom: 2px;
  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.asteo-first__step strong {
  display: block;
  font-family: "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.asteo-first__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  margin: 0 auto 20px;
  color: #b18a46;
  font-size: 48px;
  line-height: 1;
}

.asteo-first__item h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 14px;
  color: #0b2144;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.asteo-first__item h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: #d6bd81;
  transform: translateX(-50%);
}

.asteo-first__item p {
  margin: 0;
  color: #1f3152;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: left;
}

.asteo-first__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 720px);
  margin: 36px auto 0;
  padding: 14px 28px;
  color: #0b2144;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d6bd81;
}

.asteo-first__note i {
  color: #b18a46;
  font-size: 22px;
}

.asteo-first__note p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
}


/* ==============================
  First Visit Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-first__inner {
    padding: 0 32px;
  }

  .asteo-first__flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .asteo-first__item:not(:last-child)::after {
    display: none;
  }
}


/* ==============================
  First Visit SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-first {
    padding: 46px 0 48px;
  }

  .asteo-first__inner {
    padding: 0 18px;
  }

  .asteo-first__heading {
    margin-bottom: 34px;
  }

  .asteo-first__title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .asteo-first__en {
    font-size: 13px;
  }

  .asteo-first__lead {
    font-size: 13px;
    letter-spacing: 0.03em;
  }

  .asteo-first__flow {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .asteo-first__item {
    min-height: auto;
    padding: 58px 20px 24px;
  }

  .asteo-first__icon {
    height: 50px;
    margin-bottom: 16px;
    font-size: 42px;
  }

  .asteo-first__item h3 {
    font-size: 17px;
  }

  .asteo-first__item p {
    font-size: 13px;
  }

  .asteo-first__note {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 30px;
    padding: 14px 16px;
  }

  .asteo-first__note i {
    margin-top: 3px;
    font-size: 19px;
  }

  .asteo-first__note p {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

/* ==============================
  ドクター紹介
============================== */
.asteo-doctor {
  position: relative;
  overflow: hidden;
  padding: 58px 0 64px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(177, 138, 70, 0.12) 0%, rgba(255,255,255,0) 36%),
    radial-gradient(ellipse at 92% 8%, rgba(177, 138, 70, 0.1) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.asteo-doctor::before,
.asteo-doctor::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(177, 138, 70, 0.26);
  border-radius: 50%;
  pointer-events: none;
}

.asteo-doctor::before {
  top: -420px;
  left: -220px;
}

.asteo-doctor::after {
  top: -360px;
  right: -240px;
}

.asteo-doctor__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.asteo-doctor__heading {
  margin-bottom: 30px;
  text-align: center;
}

.asteo-doctor__en {
  position: relative;
  display: inline-block;
  margin: 0 0 8px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.asteo-doctor__en::before,
.asteo-doctor__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 84px;
  height: 1px;
  background: #d6bd81;
}

.asteo-doctor__en::before {
  right: calc(100% + 18px);
}

.asteo-doctor__en::after {
  left: calc(100% + 18px);
}

.asteo-doctor__title {
  position: relative;
  margin: 0 0 16px;
  color: #0b2144;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
}

.asteo-doctor__title::after {
  content: "";
  display: block;
  width: 160px;
  height: 16px;
  margin: 8px auto 0;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 9px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 9px) center, #d6bd81 0 2px, transparent 3px),
    linear-gradient(90deg, #d6bd81 0%, #d6bd81 100%);
  background-size: 100% 16px, 100% 16px, 100% 16px, 100% 1px;
  background-position: center;
  background-repeat: no-repeat;
}

.asteo-doctor__lead {
  margin: 0;
  color: #1f3152;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.asteo-doctor__main {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 34px;
  align-items: stretch;
  margin-bottom: 24px;
}

.asteo-doctor__photo-box {
  position: relative;
}

.asteo-doctor__photo {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 390px;
  border: 1px solid #d6bd81;
  box-shadow: 0 12px 24px rgba(52, 40, 22, 0.12);
}

.asteo-doctor__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 8px solid rgba(255, 255, 255, 0.36);
  pointer-events: none;
}

.asteo-doctor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.asteo-doctor__name {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(78%, 360px);
  padding: 13px 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 29, 60, 0.96) 0%, rgba(8, 36, 75, 0.96) 100%);
  border: 1px solid #b18a46;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.asteo-doctor__name::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 6px;
  width: 70px;
  height: 20px;
  border-bottom: 1px solid rgba(214, 189, 129, 0.7);
  border-radius: 0 0 100% 100%;
  transform: rotate(-8deg);
}

.asteo-doctor__name span {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.asteo-doctor__name strong {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.asteo-doctor__message {
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d6bd81;
  box-shadow: 0 12px 24px rgba(52, 40, 22, 0.12);
}

.asteo-doctor__message::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 72px;
  height: 72px;
  background:
    linear-gradient(135deg, rgba(224, 206, 165, 0.6) 0%, rgba(255, 255, 255, 0.95) 52%, rgba(177, 138, 70, 0.28) 53%, rgba(177, 138, 70, 0.28) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.asteo-doctor__message-inner {
  height: 100%;
  padding: 28px 34px 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 189, 129, 0.48);
}

.asteo-doctor__message h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 16px;
  color: #0b2144;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
}

.asteo-doctor__message h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 220px;
  height: 1px;
  background: #d6bd81;
  transform: translateX(-50%);
}

.asteo-doctor__message p {
  margin: 0 0 14px;
  color: #1f3152;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.95;
}

.asteo-doctor__message p:last-child {
  margin-bottom: 0;
}

.asteo-doctor__message-catch {
  position: relative;
  margin-top: 20px !important;
  color: #b18a46 !important;
  font-size: 27px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.5 !important;
  text-align: center;
}

.asteo-doctor__message-catch::before,
.asteo-doctor__message-catch::after {
  color: #b18a46;
  font-size: 36px;
  line-height: 1;
}

.asteo-doctor__message-catch::before {
  content: "“";
  margin-right: 10px;
}

.asteo-doctor__message-catch::after {
  content: "”";
  margin-left: 10px;
}

.asteo-doctor__cards {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 22px;
}

.asteo-doctor-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e1d1ad;
  box-shadow: 0 10px 22px rgba(52, 40, 22, 0.1);
}

.asteo-doctor-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 46px;
  height: 46px;
  background:
    linear-gradient(135deg, rgba(224, 206, 165, 0.58) 0%, rgba(255, 255, 255, 0.96) 52%, rgba(177, 138, 70, 0.26) 53%, rgba(177, 138, 70, 0.26) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.asteo-doctor-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  color: #d6bd81;
  font-size: 30px;
  background: #071f3f;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(214, 189, 129, 0.65);
}

.asteo-doctor-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 12px;
  color: #0b2144;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.asteo-doctor-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 1px;
  background: #d6bd81;
}

.asteo-doctor-card p,
.asteo-doctor-card li {
  color: #1f3152;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

.asteo-doctor-card p {
  margin: 0;
}

.asteo-doctor-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.asteo-doctor-card li {
  margin: 0;
}

/* ==============================
  Doctor Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-doctor__inner {
    padding: 0 32px;
  }

  .asteo-doctor__main {
    grid-template-columns: 1fr;
  }

  .asteo-doctor__photo {
    min-height: 460px;
  }

  .asteo-doctor__cards {
    grid-template-columns: 1fr;
  }

  .asteo-doctor-card {
    grid-template-columns: 80px 1fr;
  }
}

/* ==============================
  Doctor SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-doctor {
    padding: 46px 0 48px;
  }

  .asteo-doctor::before {
    top: -470px;
    left: -360px;
  }

  .asteo-doctor::after {
    top: -430px;
    right: -380px;
  }

  .asteo-doctor__inner {
    padding: 0 18px;
  }

  .asteo-doctor__heading {
    margin-bottom: 26px;
  }

  .asteo-doctor__en {
    font-size: 14px;
  }

  .asteo-doctor__en::before,
  .asteo-doctor__en::after {
    width: 52px;
  }

  .asteo-doctor__title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .asteo-doctor__lead {
    font-size: 13px;
    text-align: left;
  }

  .asteo-doctor__lead br {
    display: none;
  }

  .asteo-doctor__main {
    gap: 22px;
  }

  .asteo-doctor__photo {
    min-height: auto;
  }

  .asteo-doctor__photo img {
    aspect-ratio: 4 / 5;
  }

  .asteo-doctor__name {
    width: 88%;
    padding: 11px 18px;
    gap: 12px;
  }

  .asteo-doctor__name span {
    font-size: 14px;
  }

  .asteo-doctor__name strong {
    font-size: 20px;
  }

  .asteo-doctor__message {
    padding: 8px;
  }

  .asteo-doctor__message-inner {
    padding: 24px 18px 24px;
  }

  .asteo-doctor__message h3 {
    font-size: 19px;
    letter-spacing: 0.05em;
  }

  .asteo-doctor__message h3::after {
    width: 160px;
  }

  .asteo-doctor__message p {
    font-size: 13px;
  }

  .asteo-doctor__message-catch {
    font-size: 18px !important;
    letter-spacing: 0.06em !important;
  }

  .asteo-doctor__message-catch::before {
  content: "“";
  margin-right: 3px;
}

.asteo-doctor__message-catch::after {
  content: "”";
  margin-left: 3px;
}

  .asteo-doctor-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
    text-align: center;
  }

  .asteo-doctor-card__icon {
    margin: 0 auto;
  }

  .asteo-doctor-card h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .asteo-doctor-card ul {
    display: inline-block;
    text-align: left;
  }
}

/* ==============================
  Review heading
============================== */
.review-section .head_wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 46px;
  padding: 0 24px;
  text-align: center;
}

.review-section .head_wrap::before {
  content: "REVIEW";
  display: block;
  margin-bottom: 18px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.26em;
  line-height: 1;
}

.review-section .head_wrap::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(
    90deg,
    rgba(177, 138, 70, 0),
    rgba(177, 138, 70, 1),
    rgba(177, 138, 70, 0)
  );
}

.review-section .ttl {
  margin: 0;
  color: #071f3f;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.review-section .ttl .h2size1 {
  color: #071f3f;
  font-size: 1.15em;
  font-weight: 700;
}

.review-section .ttl .featureline {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0 0.08em;
}

.review-section .ttl .featureline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.12em;
  z-index: -1;
  width: 100%;
  height: 0.38em;
  background: linear-gradient(
    90deg,
    rgba(214, 189, 129, 0.35),
    rgba(214, 189, 129, 0.75)
  );
}

/* ==============================
  SP
============================== */
@media screen and (max-width: 767px) {
  .review-section .head_wrap {
    margin-bottom: 34px;
    padding: 0 18px;
  }

  .review-section .head_wrap::before {
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .review-section .head_wrap::after {
    width: 68px;
    margin-top: 18px;
  }

  .review-section .ttl {
    font-size: 28px;
    letter-spacing: 0.05em;
    line-height: 1.65;
  }

  .review-section .ttl .h2size1 {
    font-size: 1.12em;
  }
}

/* ==============================
  Review section
============================== */
.review-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(214, 189, 129, 0.14) 0%, rgba(214, 189, 129, 0) 44%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.review-section__inner {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .review-section {
    padding: 62px 0;
  }

  .review-section__inner {
    width: calc(100% - 32px);
  }
}

/* ==============================
  アクセス・診療時間
============================== */
.asteo-access-info {
  position: relative;
  overflow: hidden;
  padding: 58px 0 64px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(177, 138, 70, 0.08) 0%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.asteo-access-info::before {
  content: "";
  position: absolute;
  inset: 14px 12px;
  border: 1px solid rgba(7, 31, 63, 0.42);
  pointer-events: none;
}

.asteo-access-info__inner {
  position: relative;
  z-index: 1;
  max-width: 98%;
  margin: 0 auto;
  padding: 0 48px;
}

.asteo-access-info__heading {
  margin-bottom: 34px;
  text-align: center;
}

.asteo-access-info__en {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.28em;
  line-height: 1;
}

.asteo-access-info__en::before,
.asteo-access-info__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 74px;
  height: 1px;
  background: #d6bd81;
}

.asteo-access-info__en::before {
  right: calc(100% + 18px);
}

.asteo-access-info__en::after {
  left: calc(100% + 18px);
}

.asteo-access-info__title {
  margin: 0;
  color: #0b2144;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.45;
}

.asteo-access-info__deco {
  position: relative;
  width: 220px;
  height: 18px;
  margin: 10px auto 0;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 9px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 9px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-access-info__deco::before,
.asteo-access-info__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  height: 1px;
  background: #d6bd81;
}

.asteo-access-info__deco::before {
  left: 0;
}

.asteo-access-info__deco::after {
  right: 0;
}

.asteo-access-info__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
}

.asteo-access-info__map,
.asteo-access-info__detail {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 31, 63, 0.42);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(52, 40, 22, 0.08);
}

.asteo-access-info__map {
  overflow: hidden;
  padding: 14px;
}

.asteo-access-info__map--google {
  overflow: hidden;
  padding: 14px;
}

.asteo-access-info__map--google iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 4px;
}

.asteo-access-info__detail {
  padding: 34px 34px 28px;
}

.asteo-access-info__schedule h3 {
  position: relative;
  margin: 0 0 18px;
  color: #0b2144;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-align: center;
}

.asteo-access-info__schedule h3::before,
.asteo-access-info__schedule h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 78px;
  height: 1px;
  background: #d6bd81;
}

.asteo-access-info__schedule h3::before {
  right: calc(50% + 72px);
}

.asteo-access-info__schedule h3::after {
  left: calc(50% + 72px);
}

.asteo-access-info__schedule table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: #fff;
  color: #0b2144;
  font-size: 15px;
  table-layout: fixed;
}

.asteo-access-info__schedule th,
.asteo-access-info__schedule td {
  padding: 13px 8px;
  border: 1px solid #e1d6c4;
  text-align: center;
  vertical-align: middle;
}

.asteo-access-info__schedule thead th {
  color: #fff;
  font-weight: 500;
  background: #071f3f;
}

.asteo-access-info__schedule tbody th {
  width: 34%;
  color: #0b2144;
  font-weight: 500;
  background: #fbf8f1;
}

.asteo-access-info__schedule td {
  color: #b18a46;
  font-size: 18px;
  font-weight: 600;
}

.asteo-access-info__holiday {
  margin: 14px 0 0;
  color: #0b2144;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}

.asteo-access-info__deco-line {
  position: relative;
  width: 100%;
  height: 18px;
  margin: 18px auto 20px;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 9px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 9px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-access-info__deco-line::before,
.asteo-access-info__deco-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 34px);
  height: 1px;
  background: #d6bd81;
}

.asteo-access-info__deco-line::before {
  left: 0;
}

.asteo-access-info__deco-line::after {
  right: 0;
}

.asteo-access-info__address {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.asteo-access-info__address i {
  color: #b18a46;
  font-size: 26px;
  text-align: center;
}

.asteo-access-info__address p {
  margin: 0;
  color: #0b2144;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.asteo-access-info__contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.asteo-access-info__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b2144;
  line-height: 1;
}

.asteo-access-info__tel i {
  color: #b18a46;
  font-size: 28px;
}

.asteo-access-info__tel span {
  color: #0b2144;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.asteo-access-info__tel strong {
  color: #0b2144;
  font-family: "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.asteo-access-info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 230px;
  height: 62px;
  padding: 0 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: #071f3f;
  border: 1px solid #b18a46;
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(7, 31, 63, 0.18);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.asteo-access-info__btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.asteo-access-info__station {
  position: relative;
  margin: 16px 0 0;
  color: #0b2144;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
}

.asteo-access-info__station::before,
.asteo-access-info__station::after {
  content: "";
  display: inline-block;
  width: 54px;
  height: 1px;
  margin: 0 14px;
  background: #d6bd81;
  vertical-align: middle;
}


/* ==============================
  Access Info Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-access-info__inner {
    padding: 0 32px;
  }

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

  .asteo-access-info__map img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .asteo-access-info__contact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .asteo-access-info__tel {
    justify-content: center;
  }

  .asteo-access-info__btn {
    width: min(100%, 360px);
    margin: 0 auto;
  }
}


/* ==============================
  Access Info SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-access-info {
    padding: 46px 0 48px;
  }

  .asteo-access-info::before {
    inset: 8px;
  }

  .asteo-access-info__inner {
    padding: 0 18px;
  }

  .asteo-access-info__heading {
    margin-bottom: 24px;
  }

  .asteo-access-info__en {
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .asteo-access-info__en::before,
  .asteo-access-info__en::after {
    width: 44px;
  }

  .asteo-access-info__title {
    font-size: 27px;
    letter-spacing: 0.08em;
  }

  .asteo-access-info__deco {
    width: 200px;
  }

  .asteo-access-info__map {
    padding: 10px;
  }

  .asteo-access-info__map--google {
    padding: 10px;
  }

  .asteo-access-info__map--google iframe {
    min-height: 320px;
  }

  .asteo-access-info__detail {
    padding: 24px 16px 22px;
  }

  .asteo-access-info__schedule h3 {
    font-size: 19px;
  }

  .asteo-access-info__schedule h3::before,
  .asteo-access-info__schedule h3::after {
    width: 42px;
  }

  .asteo-access-info__schedule h3::before {
    right: calc(50% + 58px);
  }

  .asteo-access-info__schedule h3::after {
    left: calc(50% + 58px);
  }

  .asteo-access-info__schedule table {
    font-size: 12px;
  }

  .asteo-access-info__schedule th,
  .asteo-access-info__schedule td {
    padding: 10px 4px;
  }

  .asteo-access-info__schedule tbody th {
    font-size: 11px;
    line-height: 1.4;
  }

  .asteo-access-info__schedule td {
    font-size: 14px;
  }

  .asteo-access-info__holiday {
    font-size: 14px;
  }

  .asteo-access-info__address {
    grid-template-columns: 28px 1fr;
    align-items: flex-start;
  }

  .asteo-access-info__address i {
    margin-top: 3px;
    font-size: 22px;
  }

  .asteo-access-info__address p {
    font-size: 13px;
  }

  .asteo-access-info__tel {
    flex-wrap: wrap;
    gap: 8px;
  }

  .asteo-access-info__tel i {
    font-size: 22px;
  }

  .asteo-access-info__tel span {
    font-size: 15px;
  }

  .asteo-access-info__tel strong {
    font-size: 28px;
  }

  .asteo-access-info__btn {
    width: 100%;
    min-width: initial;
    height: 56px;
    font-size: 14px;
  }

  .asteo-access-info__station {
    font-size: 13px;
  }

  .asteo-access-info__station::before,
  .asteo-access-info__station::after {
    width: 34px;
    margin: 0 8px;
  }
}

/* ==============================
  よくあるご質問
============================== */
.asteo-faq {
  position: relative;
  overflow: hidden;
  padding: 58px 0 64px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(177, 138, 70, 0.08) 0%, rgba(255,255,255,0) 44%),
    linear-gradient(180deg, #fff 0%, #fbf8f1 100%);
}

.asteo-faq::before {
  content: "";
  position: absolute;
  inset: 14px 12px;
  border: 1px solid rgba(7, 31, 63, 0.42);
  pointer-events: none;
}

.asteo-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.asteo-faq__heading {
  margin-bottom: 34px;
  text-align: center;
}

.asteo-faq__en {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.28em;
  line-height: 1;
}

.asteo-faq__en::before,
.asteo-faq__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 74px;
  height: 1px;
  background: #d6bd81;
}

.asteo-faq__en::before {
  right: calc(100% + 18px);
}

.asteo-faq__en::after {
  left: calc(100% + 18px);
}

.asteo-faq__title {
  margin: 0;
  color: #0b2144;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.45;
}

.asteo-faq__deco {
  position: relative;
  width: 250px;
  height: 18px;
  margin: 12px auto 18px;
  background:
    radial-gradient(circle at center, #b18a46 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 9px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 9px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-faq__deco::before,
.asteo-faq__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: #d6bd81;
}

.asteo-faq__deco::before {
  left: 0;
}

.asteo-faq__deco::after {
  right: 0;
}

.asteo-faq__lead {
  margin: 0;
  color: #1f3152;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.asteo-faq__list {
  display: grid;
  gap: 14px;
}

.asteo-faq__item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 31, 63, 0.42);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(52, 40, 22, 0.08);
}

.asteo-faq__item summary {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 42px;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 12px 24px;
  color: #0b2144;
  cursor: pointer;
  list-style: none;
}

.asteo-faq__item summary::-webkit-details-marker {
  display: none;
}

.asteo-faq__q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  border: 1px solid #d6bd81;
  border-radius: 50%;
}

.asteo-faq__question {
  position: relative;
  display: block;
  padding-left: 24px;
  color: #0b2144;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.asteo-faq__question::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 36px;
  background: #d6bd81;
  transform: translateY(-50%);
}

.asteo-faq__item summary::after {
  content: "＋";
  justify-self: end;
  color: #b18a46;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.asteo-faq__item[open] summary::after {
  content: "−";
}

.asteo-faq__answer {
  padding: 0 84px 24px 112px;
}

.asteo-faq__answer p {
  position: relative;
  margin: 0;
  padding: 18px 22px;
  color: #1f3152;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.9;
  background: #fbf8f1;
  border-top: 1px solid #eadfcb;
}

.asteo-faq__answer p::before {
  content: "A";
  position: absolute;
  top: 18px;
  left: -34px;
  color: #b18a46;
  font-family: "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}


/* ==============================
  FAQ SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-faq {
    padding: 46px 0 48px;
  }

  .asteo-faq::before {
    inset: 8px;
  }

  .asteo-faq__inner {
    padding: 0 18px;
  }

  .asteo-faq__heading {
    margin-bottom: 26px;
  }

  .asteo-faq__en {
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .asteo-faq__en::before,
  .asteo-faq__en::after {
    width: 44px;
  }

  .asteo-faq__title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .asteo-faq__deco {
    width: 200px;
  }

  .asteo-faq__lead {
    font-size: 13px;
    letter-spacing: 0.03em;
    text-align: left;
  }

  .asteo-faq__item summary {
    grid-template-columns: 42px 1fr 26px;
    gap: 10px;
    min-height: 62px;
    padding: 12px 14px;
  }

  .asteo-faq__q {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .asteo-faq__question {
    padding-left: 14px;
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .asteo-faq__question::before {
    height: 30px;
  }

  .asteo-faq__item summary::after {
    font-size: 24px;
  }

  .asteo-faq__answer {
    padding: 0 14px 16px 66px;
  }

  .asteo-faq__answer p {
    padding: 14px 16px;
    font-size: 13px;
    letter-spacing: 0.03em;
  }

  .asteo-faq__answer p::before {
    left: -30px;
    font-size: 22px;
  }
}

/* ==============================
  三宮で歯医者をお探しなら、神戸三宮アステオ歯科へ
============================== */
.asteo-bottom-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 29, 60, 0.96) 0%, rgba(6, 29, 60, 0.88) 48%, rgba(6, 29, 60, 0.76) 100%),
    url("img/top/bottom-cta-bg.jpg") center / cover no-repeat;
}

.asteo-bottom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.asteo-bottom-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.asteo-bottom-cta__deco {
  position: relative;
  width: 300px;
  height: 20px;
  margin: 0 auto 30px;
  background:
    radial-gradient(circle at center, #d6bd81 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 10px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 10px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-bottom-cta__deco::before,
.asteo-bottom-cta__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 34px);
  height: 1px;
  background: #d6bd81;
}

.asteo-bottom-cta__deco::before {
  left: 0;
}

.asteo-bottom-cta__deco::after {
  right: 0;
}

.asteo-bottom-cta__title {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.asteo-bottom-cta__line {
  position: relative;
  width: min(100%, 620px);
  height: 18px;
  margin: 24px auto 24px;
  background:
    radial-gradient(circle at center, #d6bd81 0 3px, transparent 4px),
    radial-gradient(circle at calc(50% - 9px) center, #d6bd81 0 2px, transparent 3px),
    radial-gradient(circle at calc(50% + 9px) center, #d6bd81 0 2px, transparent 3px);
}

.asteo-bottom-cta__line::before,
.asteo-bottom-cta__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 34px);
  height: 1px;
  background: rgba(214, 189, 129, 0.85);
}

.asteo-bottom-cta__line::before {
  left: 0;
}

.asteo-bottom-cta__line::after {
  right: 0;
}

.asteo-bottom-cta__lead {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.asteo-bottom-cta__btns {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 34px;
}

.asteo-bottom-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 380px;
  height: 78px;
  padding: 0 28px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 6px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.asteo-bottom-cta__btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.asteo-bottom-cta__btn i {
  font-size: 30px;
}

.asteo-bottom-cta__btn--reserve {
  color: #fff;
  background: linear-gradient(135deg, #b18a46 0%, #d0ad66 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.asteo-bottom-cta__btn--tel {
  color: #fff;
  background: rgba(7, 31, 63, 0.34);
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.asteo-bottom-cta__access {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.asteo-bottom-cta__access::before,
.asteo-bottom-cta__access::after {
  content: "";
  width: 70px;
  height: 1px;
  background: rgba(214, 189, 129, 0.8);
}

.asteo-bottom-cta__access i {
  color: #d6bd81;
  font-size: 20px;
}

.sp-only {
  display: none;
}


/* ==============================
  Bottom CTA Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-bottom-cta {
    padding: 68px 0 62px;
  }

  .asteo-bottom-cta__inner {
    padding: 0 32px;
  }

  .asteo-bottom-cta__lead {
    font-size: 17px;
  }

  .asteo-bottom-cta__btn {
    width: 320px;
    height: 70px;
    font-size: 21px;
  }
}


/* ==============================
  Bottom CTA SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-bottom-cta {
    padding: 52px 0 48px;
    background:
      linear-gradient(90deg, rgba(6, 29, 60, 0.96) 0%, rgba(6, 29, 60, 0.86) 100%),
      url("img/top/bottom-cta-bg.jpg") center / cover no-repeat;
  }

  .asteo-bottom-cta__inner {
    padding: 0 18px;
  }

  .asteo-bottom-cta__deco {
    width: 220px;
    margin-bottom: 22px;
  }

  .asteo-bottom-cta__title {
    font-size: 25px;
    letter-spacing: 0.08em;
    line-height: 1.7;
  }

  .asteo-bottom-cta__line {
    width: 260px;
    margin: 20px auto;
  }

  .asteo-bottom-cta__lead {
    margin-bottom: 28px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.9;
    text-align: left;
  }

  .asteo-bottom-cta__lead br {
    display: none;
  }

  .asteo-bottom-cta__btns {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .asteo-bottom-cta__btn {
    width: 100%;
    height: 62px;
    font-size: 17px;
    gap: 14px;
  }

  .asteo-bottom-cta__btn i {
    font-size: 22px;
  }

  .asteo-bottom-cta__access {
    display: flex;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0.05em;
  }

  .asteo-bottom-cta__access::before,
  .asteo-bottom-cta__access::after {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* ==============================
  Footer
============================== */
.asteo-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, rgba(6,29,60,0) 48%),
    linear-gradient(180deg, #071f3f 0%, #041733 100%);
}

.asteo-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(214,189,129,0.1) 0%, rgba(214,189,129,0) 38%),
    radial-gradient(ellipse at 90% 20%, rgba(214,189,129,0.08) 0%, rgba(214,189,129,0) 34%);
  pointer-events: none;
}

.asteo-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1fr;
  gap: 64px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 48px 70px;
}

.asteo-footer__info {
  padding-right: 48px;
  border-right: 1px solid rgba(255,255,255,0.28);
}

.asteo-footer__logo {
  display: block;
  width: 350px;
  max-width: 100%;
  margin-bottom: 36px;
}

.asteo-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.asteo-footer__address {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.9);
}

.asteo-footer__address i,
.asteo-footer__time-title i {
  color: #d6bd81;
  font-size: 28px;
}

.asteo-footer__address p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

.asteo-footer__tel {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: #fff;
  font-family: "Times New Roman", serif;
  font-size: 38px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.asteo-footer__tel i {
  color: #d6bd81;
  font-size: 26px;
}

.asteo-footer__time-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.asteo-footer__time-box {
  border: 1px solid rgba(255,255,255,0.38);
}

.asteo-footer__time-box p {
  margin: 0;
  padding: 10px 22px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.asteo-footer__time-box p + p {
  border-top: 1px solid rgba(255,255,255,0.28);
}

.asteo-footer__heading {
  position: relative;
  margin: 0 0 42px;
  color: #d6bd81;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
  text-align: center;
}

.asteo-footer__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 82px;
  height: 14px;
  background:
    radial-gradient(circle at center, #d6bd81 0 3px, transparent 4px),
    linear-gradient(90deg, #d6bd81 0%, #d6bd81 100%);
  background-size: 100% 14px, 100% 1px;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

/* sitemap */
.asteo-footer__nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.asteo-footer__nav-item {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.24);
}

.asteo-footer__nav-link {
  position: relative;
  display: block;
  padding: 18px 52px 18px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.asteo-footer__nav-link::before {
  content: "›";
  position: absolute;
  left: 8px;
  top: 50%;
  color: #d6bd81;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.asteo-footer__nav-link:hover {
  color: #d6bd81;
}

.asteo-footer__submenu-btn {
  position: absolute;
  top: 18px;
  right: 8px;
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.asteo-footer__submenu-btn::before,
.asteo-footer__submenu-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: #d6bd81;
  transform: translate(-50%, -50%);
}

.asteo-footer__submenu-btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.has-footer-submenu.is-open .asteo-footer__submenu-btn::after {
  opacity: 0;
}

.asteo-footer__submenu {
  position: absolute;
  top: 50%;
  left: calc(100% + 18px);
  z-index: 5;
  min-width: 230px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: rgba(255,255,255,0.96);
  border: 1px solid #d6bd81;
  box-shadow: 0 12px 26px rgba(0,0,0,0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.has-footer-submenu:hover .asteo-footer__submenu,
.has-footer-submenu:focus-within .asteo-footer__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.asteo-footer__submenu a {
  display: block;
  padding: 10px 18px;
  color: #0b2144;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  transition: color 0.3s ease, background 0.3s ease;
}

.asteo-footer__submenu a:hover {
  color: #b18a46;
  background: #fbf8f1;
}

/* right */
.asteo-footer__right {
  display: grid;
  gap: 58px;
  align-content: start;
}

.asteo-footer__reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 92px;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #b18a46 0%, #d0ad66 100%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.asteo-footer__reserve-btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.asteo-footer__reserve-btn i {
  font-size: 30px;
}

.asteo-footer__sns-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.asteo-footer__sns-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  font-size: 24px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 50%;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.asteo-footer__sns-list a:hover {
  color: #d6bd81;
  border-color: #d6bd81;
  transform: translateY(-2px);
}

.asteo-footer__copy {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(214,189,129,0.42);
  text-align: center;
}

.asteo-footer__copy p {
  margin: 0;
  padding: 24px 18px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ==============================
  Footer Tablet
============================== */
@media screen and (max-width: 1100px) {
  .asteo-footer__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 60px 32px 58px;
  }

  .asteo-footer__info {
    padding-right: 0;
    border-right: none;
  }

  .asteo-footer__logo {
    margin: 0 auto 32px;
  }

  .asteo-footer__sitemap {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .asteo-footer__right {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .asteo-footer__submenu {
    left: auto;
    right: 0;
  }
}

/* ==============================
  Footer SP
============================== */
@media screen and (max-width: 767px) {
  .asteo-footer__inner {
    gap: 40px;
    padding: 48px 18px 46px;
  }

  .asteo-footer__logo {
    width: 250px;
    margin-bottom: 28px;
  }

  .asteo-footer__address {
    grid-template-columns: 28px 1fr;
    gap: 12px;
  }

  .asteo-footer__address i,
  .asteo-footer__time-title i {
    font-size: 22px;
  }

  .asteo-footer__address p {
    font-size: 14px;
  }

  .asteo-footer__tel {
    font-size: 30px;
    letter-spacing: 0.08em;
  }

  .asteo-footer__time-title {
    font-size: 15px;
  }

  .asteo-footer__time-box p {
    padding: 10px 14px;
    font-size: 13px;
  }

  .asteo-footer__heading {
    margin-bottom: 36px;
    font-size: 16px;
  }

  .asteo-footer__nav-link {
    padding: 16px 52px 16px 30px;
    font-size: 16px;
  }

  .asteo-footer__submenu-btn {
    display: block;
  }

  .asteo-footer__submenu {
    position: static;
    max-height: 0;
    overflow: hidden;
    min-width: auto;
    padding: 0;
    background: rgba(255,255,255,0.08);
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.35s ease;
  }

  .has-footer-submenu:hover .asteo-footer__submenu,
  .has-footer-submenu:focus-within .asteo-footer__submenu {
    transform: none;
  }

  .has-footer-submenu.is-open .asteo-footer__submenu {
    max-height: 420px;
    padding: 8px 0 14px;
  }

  .asteo-footer__submenu a {
    padding: 9px 18px 9px 42px;
    color: rgba(255,255,255,0.86);
    font-size: 13px;
  }

  .asteo-footer__submenu a:hover {
    color: #d6bd81;
    background: rgba(255,255,255,0.08);
  }

  .asteo-footer__reserve-btn {
    height: 66px;
    gap: 14px;
    font-size: 17px;
  }

  .asteo-footer__reserve-btn i {
    font-size: 22px;
  }

  .asteo-footer__sns-list {
    gap: 16px;
  }

  .asteo-footer__sns-list a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .asteo-footer__copy p {
    font-size: 11px;
  }
}

/* セクション全体 */
.treatment-menu {
  position: relative;
  overflow: hidden;
  padding: 54px 20px 130px;
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 159, 82, 0.12) 0 1px, transparent 2px),
    linear-gradient(180deg, #fbf7ef 0%, #f7f1e7 100%);
  color: #092845;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* 下部の青背景 */
.treatment-menu::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -150px;
  width: 116%;
  height: 260px;
  background: #082542;
  border-radius: 50% 50% 0 0 / 36% 36% 0 0;
  z-index: 0;
}

/* ゴールドの曲線 */
.treatment-menu::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 96px;
  width: 116%;
  height: 120px;
  border-bottom: 2px solid rgba(196, 151, 63, 0.45);
  border-radius: 0 0 50% 50%;
  transform: rotate(-3deg);
  pointer-events: none;
  z-index: 0;
}

.treatment-menu__inner {
  position: relative;
  z-index: 1;
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
}

/* MENUの英字見出し */
.treatment-menu__en {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 26px;
  color: #b58a3c;
  font-size: 14px;
  letter-spacing: 0.18em;
  line-height: 1;
}

/* カード見出し */
.treatment-card__title {
  margin: 0 0 18px;
  color: #092845;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
}

/* 装飾ライン左右のゴールドライン＋中央3ドット*/
.treatment-menu__en::after,
.treatment-card__title::after {
  content: "";
  display: block;
  width: 130px;
  height: 12px;
  margin: 8px auto 0;
  background-image:
    linear-gradient(#c9a55a, #c9a55a),
    linear-gradient(#c9a55a, #c9a55a),
    radial-gradient(circle, #c9a55a 0 3px, transparent 3.5px),
    radial-gradient(circle, #c9a55a 0 3px, transparent 3.5px),
    radial-gradient(circle, #c9a55a 0 3px, transparent 3.5px);
  background-repeat: no-repeat;
  background-size:
    42px 1px,
    42px 1px,
    6px 6px,
    6px 6px,
    6px 6px;
  background-position:
    left center,
    right center,
    calc(50% - 12px) center,
    center center,
    calc(50% + 12px) center;
}


/* カードを横並びにし、カード下部の高さを揃える */
.treatment-menu__cards {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: stretch;
  gap: 28px;
  margin-bottom: 32px;
}

/* カード共通 */
.treatment-card {
  position: relative;
  padding: 105px 26px 28px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(194, 151, 66, 0.5);
  border-radius: 2px;
  box-shadow:
    0 4px 14px rgba(74, 49, 13, 0.12),
    inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

/* カード上部のリボン */
.treatment-card__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 124px;
  height: 34px;
  background: #082542;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
}

/* アイコン画像の配置 */
.treatment-card__icon {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translateX(-50%);
}

.treatment-card__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* カード説明文 */
.treatment-card__text {
  margin: 0 0 22px;
  color: #333;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* メニューリスト */
.treatment-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-card__list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.treatment-card__list li {
  margin: 0;
}

.treatment-card__list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 45px;
  padding: 8px 34px 8px 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 190, 139, 0.8);
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(70, 46, 10, 0.08);
  color: #092845;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: left;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* メニューリスト：ホバー時に少し上へ持ち上げる */
.treatment-card__list a:hover {
  transform: translateY(-2px);
  background: #fffaf0;
}

.treatment-card__list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #b58a3c;
  border-right: 1px solid #b58a3c;
  transform: translateY(-50%) rotate(45deg);
}

/* 中央カードの高さ */
.treatment-card--wide {
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 28px;
}

/* 注釈 */
.treatment-menu__note {
  position: relative;
  z-index: 3;
  margin: 0;
  padding-bottom: 18px;
  color: #4c4c4c;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* スマホサイズの時のみ有効になるCSS */
@media only screen and (max-width: 480px) {
  .treatment-menu {
    padding: 44px 16px 140px;
  }

  .treatment-menu::before {
    bottom: -120px;
    height: 240px;
  }

  .treatment-menu::after {
    bottom: 100px;
  }

  .treatment-menu__cards {
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 28px;
  }

  .treatment-card,
  .treatment-card--wide {
    height: auto;
    padding: 105px 18px 24px;
  }

  /* スマホではカード内のリストを1カラムにする */
  .treatment-card__list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

/* =====================================
   診療カレンダー・お知らせ
===================================== */
.asteo-info-section {
	position: relative;
	padding: 100px 20px;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 100% 0,
			rgba(18, 65, 116, 0.07) 0,
			rgba(18, 65, 116, 0) 32%
		),
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f6f9fc 100%
		);
}

.asteo-info-section::after {
	content: "";
	position: absolute;
	right: -180px;
	bottom: -240px;
	width: 620px;
	height: 420px;
	border: 1px solid rgba(19, 61, 107, 0.08);
	border-radius: 50%;
	transform: rotate(-10deg);
	pointer-events: none;
}

.asteo-info-section__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.asteo-info-section__heading {
	margin-bottom: 48px;
	text-align: center;
}

.asteo-info-section__en {
	display: block;
	margin-bottom: 10px;
	color: #6782a1;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	letter-spacing: 0.18em;
}

.asteo-info-section .asteo-info-section__title {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: none !important;
	color: #133d6b !important;
	font-family:
		"Noto Serif JP",
		"Yu Mincho",
		"YuMincho",
		serif;
	font-size: 38px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	letter-spacing: 0.08em !important;
	text-align: center !important;
}

.asteo-info-section .asteo-info-section__title::before,
.asteo-info-section .asteo-info-section__title::after {
	content: none !important;
	display: none !important;
}


/* =====================================
   2カラム
===================================== */
.asteo-info-section__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 1.15fr)
		minmax(380px, 0.85fr);
	gap: 30px;
	align-items: stretch;
}


/* =====================================
   共通パネル
===================================== */
.asteo-info-panel {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 30px;
	border: 1px solid rgba(28, 69, 112, 0.15);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 30px rgba(22, 58, 96, 0.08);
	box-sizing: border-box;
}

.asteo-info-panel__heading {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 25px;
	padding-bottom: 18px;
	border-bottom: 1px solid #cbd5df;
}

.asteo-info-panel__icon {
	display: flex;
	flex: 0 0 46px;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #133d6b;
	box-sizing: border-box;
}

.asteo-info-panel__icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.asteo-info-panel__title {
	margin: 0 !important;
	padding: 0 !important;
	color: #183c66 !important;
	font-family:
		"Noto Serif JP",
		"Yu Mincho",
		"YuMincho",
		serif;
	font-size: 23px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	letter-spacing: 0.06em !important;
}


/* =====================================
   XO Event Calendar
===================================== */
.asteo-info-panel__calendar-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.asteo-info-section #calen {
	width: 100%;
	margin: 0;
}

.asteo-info-section #calen .xo-event-calendar {
	width: 100%;
	margin: 0;
}

/* =====================================
   XO Event Calendar 2か月表示
===================================== */

/* 2か月全体を横並び */
.asteo-info-section #calen .xo-event-calendar .xo-months {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 16px !important;
	align-items: start !important;
	width: 100%;
}

/* 各月の外枠 */
.asteo-info-section #calen .xo-month-wrap {
	display: block !important;
	align-self: start !important;
	width: 100% !important;
	min-width: 0 !important;
	height: auto !important;
	margin: 0 !important;
}

/* カレンダー本体 */
.asteo-info-section #calen table.xo-month {
	display: table !important;
	flex: none !important;
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	table-layout: fixed !important;
	border-collapse: collapse !important;
	border-spacing: 0 !important;
}

/* 行が縦に引き伸ばされるのを防止 */
.asteo-info-section #calen table.xo-month thead,
.asteo-info-section #calen table.xo-month tbody,
.asteo-info-section #calen table.xo-month tr {
	height: auto !important;
}

/* 7列を均等幅にする */
.asteo-info-section #calen table.xo-month th,
.asteo-info-section #calen table.xo-month td {
	width: 14.285714% !important;
	box-sizing: border-box;
}

.asteo-info-section #calen table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

.asteo-info-section #calen caption {
	padding-bottom: 12px;
	color: #222;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.asteo-info-section #calen th,
.asteo-info-section #calen td {
	box-sizing: border-box;
}


/* =====================================
   お知らせ一覧
===================================== */
.asteo-info-news {
	flex: 1;
}

.asteo-info-news__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.asteo-info-news__item {
	margin: 0;
	padding: 0;
	border-bottom: 1px dashed #cfd7e0;
}

.asteo-info-news__item:first-child {
	border-top: none;
}

.asteo-info-news__link {
	display: grid;
	grid-template-columns: 115px minmax(0, 1fr) 15px;
	gap: 20px;
	align-items: center;
	padding: 20px 8px;
	color: inherit;
	text-decoration: none;
	transition:
		background-color 0.3s,
		opacity 0.3s;
}

.asteo-info-news__link:hover {
	background: #f5f8fb;
	opacity: 0.8;
}

.asteo-info-news__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
}

.asteo-info-news__date {
	display: block;
	color: #234f80;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.asteo-info-news__label {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	background: #edf3f8;
	color: #315d89;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	white-space: nowrap;
}

.asteo-info-news__title {
	color: #252525;
	font-family:
		"Noto Serif JP",
		"Yu Mincho",
		"YuMincho",
		serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.025em;
}

.asteo-info-news__arrow {
	color: #244f7f;
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
	transition: transform 0.3s;
}

.asteo-info-news__link:hover .asteo-info-news__arrow {
	transform: translateX(4px);
}

.asteo-info-news__empty {
	margin: 30px 0;
	color: #666;
	font-size: 15px;
	line-height: 1.8;
}


/* =====================================
   お知らせ一覧ボタン
===================================== */
.asteo-info-panel__button-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 28px;
}

.asteo-info-panel__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 280px;
	min-height: 55px;
	padding: 10px 22px;
	border: 1px solid #153f6d;
	background: #fff;
	color: #153f6d;
	font-family:
		"Noto Serif JP",
		"Yu Mincho",
		"YuMincho",
		serif;
	font-size: 15px;
	letter-spacing: 0.08em;
	text-decoration: none;
	box-sizing: border-box;
	transition:
		background-color 0.3s,
		color 0.3s;
}

.asteo-info-panel__button:hover {
	background: #153f6d;
	color: #fff;
}


/* =====================================
   タブレット
===================================== */
@media screen and (max-width: 1100px) {

	.asteo-info-section__grid {
		grid-template-columns: 1fr;
	}

	.asteo-info-panel {
		padding: 30px;
	}

}


/* =====================================
   スマートフォン
===================================== */
@media screen and (max-width: 767px) {

	.asteo-info-section {
		padding: 65px 15px;
	}

	.asteo-info-section__heading {
		margin-bottom: 32px;
	}

	.asteo-info-section__en {
		margin-bottom: 8px;
		font-size: 12px;
	}

	.asteo-info-section .asteo-info-section__title {
		font-size: 27px !important;
		line-height: 1.6 !important;
		letter-spacing: 0.04em !important;
	}

	.asteo-info-section__grid {
		gap: 22px;
	}

	.asteo-info-panel {
		padding: 22px 16px;
		border-radius: 7px;
	}

	.asteo-info-panel__heading {
		gap: 10px;
		margin-bottom: 20px;
		padding-bottom: 14px;
	}

	.asteo-info-panel__icon {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
	}

	.asteo-info-panel__icon svg {
		width: 20px;
		height: 20px;
	}

	.asteo-info-panel__title {
		font-size: 20px !important;
	}

	/* カレンダーはSPで1か月ずつ縦並び */
	.asteo-info-section #calen .xo-event-calendar .xo-months {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}

	.asteo-info-section #calen .xo-month-wrap {
		width: 100% !important;
		height: auto !important;
		margin: 0 !important;
	}

	.asteo-info-section #calen table.xo-month {
		width: 100% !important;
		height: auto !important;
	}

	.asteo-info-section #calen .xo-month:last-child {
		margin-bottom: 0 !important;
	}

	.asteo-info-news__link {
		grid-template-columns: 1fr 13px;
		gap: 10px;
		padding: 18px 5px;
	}

	.asteo-info-news__meta {
		grid-column: 1 / 2;
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.asteo-info-news__title {
		grid-column: 1 / 2;
		display: block;
		font-size: 15px;
		line-height: 1.7;
	}

	.asteo-info-news__arrow {
		grid-column: 2 / 3;
		grid-row: 1 / 3;
		align-self: center;
	}

	.asteo-info-panel__button-wrap {
		margin-top: 22px;
	}

	.asteo-info-panel__button {
		width: 100%;
	}

}

/* ==============================

 【【ここから、8/14にリニューアルしたTOPのCSSです】】

============================== */
/* ========================================
   First View / ファーストビュー
======================================== */

.top-fv {
  position: relative;
  padding: 14px 20px 22px;
  overflow: hidden;
  background: #f8f7f3;
}

.top-fv__frame {
  position: relative;
  max-width: 98%;
  margin: 0 auto;
  border: 1px solid rgba(196, 172, 121, 0.45);
  overflow: hidden;
  background: #fff;
}


/* ========================================
   背景画像
======================================== */

.top-fv__visual {
  position: relative;
}

.top-fv__visual picture {
  display: block;
}

.top-fv__visual img {
  display: block;
  width: 100%;
  height: 760px;
  object-fit: cover;
}


/* PC用 白グラデ */
.top-fv__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.92) 30%,
      rgba(255, 255, 255, 0.78) 43%,
      rgba(255, 255, 255, 0.38) 58%,
      rgba(255, 255, 255, 0) 74%
    );
  pointer-events: none;
}


/* ========================================
   テキスト全体
======================================== */

.top-fv__content {
  position: absolute;
  z-index: 3;
  top: 58px;
  left: 48px;
  width: 60%;
}


/* 左側の縦英字 */
.top-fv__side-en {
  position: absolute;
  top: 26px;
  left: -50px;
  color: #c2a25c;
  font-family: "Times New Roman", serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}


/* 背景英字 */
.top-fv__bg-word {
  position: absolute;
  z-index: 0;
  top: -16px;
  left: 18px;

  color: rgba(36, 59, 86, 0.04);

  font-family: "Times New Roman", serif;
  font-size: 98px;
  line-height: 1;
  letter-spacing: 0.04em;

  pointer-events: none;
}


/* ========================================
   上部ラベル
======================================== */

.top-fv__label {
  position: relative;
  z-index: 2;

  margin: 0 0 28px;
  padding-left: 18px;

  color: #4e5f78;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.top-fv__label::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 2px;
  height: 24px;
  background: #b58d43;
}


/* ========================================
   メインコピー
======================================== */

.top-fv__title {
  position: relative;
  z-index: 2;

  margin: 0 0 26px;

  color: #0f2744;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 58px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.top-fv__title span {
  color: #a7833e;
  border-bottom: 4px solid #b58d43;
}


/* ========================================
   装飾
======================================== */

.top-fv__decoration {
  position: relative;
  width: 120px;
  height: 12px;
  margin: 0 0 28px;
}

.top-fv__decoration::before,
.top-fv__decoration::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: rgba(181, 141, 67, 0.5);
}

.top-fv__decoration::before {
  left: 0;
}

.top-fv__decoration::after {
  right: 0;
}

.top-fv__decoration span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: #b58d43;
  transform: translate(-50%, -50%) rotate(45deg);
}


/* ========================================
   説明文
======================================== */

.top-fv__lead {
  margin: 0 0 34px;

  color: #586b81;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}


/* ========================================
   ボタン
======================================== */

.top-fv__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.top-fv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-width: 234px;
  min-height: 52px;
  padding: 10px 18px;
  box-sizing: border-box;

  color: #183452;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #c9a25b;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.top-fv__btn i {
  color: #0f2744;
  font-size: 14px;
}

@media (hover: hover) {
  .top-fv__btn:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 8px 15px rgba(34, 45, 56, 0.12);
  }
}


/* ========================================
   下部情報
======================================== */

.top-fv__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;

  padding-top: 18px;
  border-top: 1px solid rgba(198, 180, 144, 0.45);
}

.top-fv__info span {
  position: relative;

  padding: 0 18px;

  color: #697b8d;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.top-fv__info span:first-child {
  padding-left: 0;
}

.top-fv__info span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 16px;
  background: rgba(182, 164, 128, 0.55);
  transform: translateY(-50%);
}


/* ========================================
   SP用 縦組みコピー
======================================== */

.top-fv__sp-catch,
.top-fv__sp-office {
  display: none;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-fv {
	margin-top: 50px;
    padding: 10px 0 0;
    background: #fff;
  }

  .top-fv__frame {
    border: none;
    background: #fff;
  }


  /* 画像エリア */

  .top-fv__visual img {
    height: 500px;
    object-position: 60% center;
  }

  .top-fv__visual::after {
    background:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.04) 100%
      );
  }


/* ========================================
   SP縦組みコピー
======================================== */

.top-fv__sp-catch.sp_only {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 18px;

  /* sp_only の display:block を上書き */
  display: flex !important;

  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 10px;
}

.top-fv__sp-catch-col {
  box-sizing: border-box;

  /* 高さは文字量に合わせる */
  width: auto;
  height: auto !important;

  padding: 12px 8px;

  color: #102844;
  background: rgba(255, 255, 255, 0.94);

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;

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

  /* 途中で次の列へ折り返させない */
  white-space: nowrap;

  overflow: visible;
}

.top-fv__sp-catch-col span {
  color: #a7833e;
}

.top-fv__sp-catch-col:nth-child(1) {
  margin-top: 0;
}

.top-fv__sp-catch-col:nth-child(2) {
  margin-top: 22px;
}

.top-fv__sp-catch-col:nth-child(3) {
  margin-top: 45px;
}

  /* 下部テキストエリア */

  .top-fv__content {
    position: static;
    width: 100%;
    max-width: none;
    padding: 18px 16px 24px;
    box-sizing: border-box;
    background: #fff;
  }

  .top-fv__label {
    margin-bottom: 14px;
    padding-left: 14px;
    font-size: 12px;
    line-height: 1.9;
  }

  .top-fv__label::before {
    top: 7px;
    height: 20px;
  }


  /* PC用はSPで不要 */
  .top-fv__bg-word,
  .top-fv__side-en,
  .top-fv__title {
    display: none;
  }

  .top-fv__decoration {
    width: 90px;
    margin: 0 auto 18px;
  }

  .top-fv__decoration::before,
  .top-fv__decoration::after {
    width: 30px;
  }

  .top-fv__lead {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 2.1;
    text-align: center;
  }


  /* CTA */

  .top-fv__buttons {
    display: block;
    margin-bottom: 18px;
  }

  .top-fv__btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .top-fv__btn:last-child {
    margin-bottom: 0;
  }


  /* 下部情報 */

  .top-fv__info {
    gap: 6px 0;
    padding-top: 16px;
  }

  .top-fv__info span {
    padding: 0 12px;
    font-size: 11px;
    line-height: 1.8;
  }

  .top-fv__info span:nth-child(1) {
    padding-left: 0;
  }

}

@media screen and (max-width: 767px) {

  .top-fv__visual {
    position: relative;
    overflow: hidden;
  }

  /* 枠線 */
  .top-fv__visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid rgba(197, 160, 82, 0.75);
    pointer-events: none;
  }

  /* 英字を画像内下部へ */
  .top-fv__sp-office.sp_only {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 18px;
    left: 18px;

    display: block !important;
    margin: 0;

    color: rgba(255, 255, 255, 0.95);
    font-family: "Times New Roman", serif;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-align: center;
    font-style: italic;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  }

}

/* ========================================
   TOP Information / Access
======================================== */

.top-information {
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      #344456 0%,
      #263546 52%,
      #182432 100%
    );
  color: #34465c;
}

.top-information__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  max-width: 95%;
  margin: 0 auto;
}


/* ==============================
   左側
============================== */

.top-information__visual {
  position: relative;
  width: 55%;
  min-height: 440px;
}

.top-information__vertical-title {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  color: #fff;
  font-family: "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.45em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.top-information__vertical-title::before {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.55);
}


/* メイン写真 */

.top-information__photo-main {
  position: absolute;
  top: 5px;
  left: 55px;
  width: 79%;
  padding: 5px 5px 27px;
  background: #fff;
  border: 1px solid rgba(194, 167, 121, 0.6);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  box-sizing: border-box;
}

.top-information__photo-main::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 14px);
  border: 1px solid rgba(203, 174, 124, 0.35);
  pointer-events: none;
}

.top-information__photo-main img,
.top-information__photo-sub img {
  display: block;
  width: 100%;
  height: auto;
}


/* サブ写真 */

.top-information__photo-sub {
  position: absolute;
  z-index: 2;
  right: -4px;
  bottom: -40px;
  width: 31%;
  padding: 4px 4px 24px;
  background: #fff;
  border: 1px solid rgba(194, 167, 121, 0.6);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
}


/* 写真キャプション */

.top-information__caption {
  position: absolute;
  right: 8px;
  bottom: 6px;
  left: 8px;
  display: block;
  color: #828ea1;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}


/* ==============================
   右側カード
============================== */

.top-information__content {
  position: relative;
  width: 39%;
  padding: 26px 25px 24px;
  box-sizing: border-box;
  background-color: #fff;

  /* カンプの方眼紙風 */
  background-image:
    linear-gradient(
      rgba(87, 117, 142, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(87, 117, 142, 0.045) 1px,
      transparent 1px
    );
  background-size: 7px 7px;

  box-shadow:
    9px 9px 0 rgba(255, 255, 255, 0.13),
    0 15px 28px rgba(0, 0, 0, 0.22);
}

.top-information__label {
  margin: 0 0 13px;
  color: #ba8a45;
  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.35em;
}

.top-information__title {
  margin: 0 0 12px;
  color: #344960;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.top-information__lead {
  margin: 0 0 15px;
  color: #6f7b88;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 2;
}


/* ==============================
   チェックリスト
============================== */

.top-information__list {
  border-top: 1px solid rgba(69, 91, 113, 0.12);
}

.top-information__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(69, 91, 113, 0.09);
}

.top-information__item p {
  margin: 0;
  color: #40546b;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 17px;
  line-height: 1.7;
}

.top-information__item strong {
  font-size: 19px;
  font-weight: 600;
  background: linear-gradient(
    transparent 60%,
    rgba(219, 203, 176, 0.75) 90%
  );
  padding: 0 2px;
}

.top-information__item small {
  display: block;
  margin-top: 2px;
  color: #8b96a0;
  font-size: 13px;
  line-height: 1.7;
}


/* チェックマーク */

.top-information__check {
  position: relative;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 4px;
}

.top-information__check::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #52739a;
  border-left: 2px solid #52739a;
  transform: rotate(-45deg);
}


/* ==============================
   下部メッセージ
============================== */

.top-information__message {
  margin: 16px 0 0;
  padding: 8px 0 8px 14px;
  border-left: 1px solid #bd8738;
  color: #53667a;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  background-color: #fff;
}


/* 表示切り替え */

.sp_only {
  display: none;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-information {
    padding: 0 7px 28px;
    background:
      linear-gradient(
        to bottom,
        #314052 0,
        #253445 205px,
        #eef0f2 270px,
        #eef0f2 100%
      );
  }

  .top-information__inner {
    display: block;
    max-width: none;
  }


  /* ------------------------------
     画像エリア
  ------------------------------ */

  .top-information__visual {
    width: 100%;
    min-height: 225px;
  }

  .top-information__vertical-title {
    top: 10px;
    left: 0;
    font-size: 15px;
    letter-spacing: 0.4em;
    writing-mode: horizontal-tb;
  }

  .top-information__vertical-title::before {
    display: none;
  }

  .top-information__photo-main {
    top: 39px;
    left: 0;
    width: 85%;
    padding: 4px 4px 22px;
  }

  .top-information__photo-main::before {
    top: -7px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 7px);
  }

  .top-information__photo-sub {
    right: -1px;
    bottom: 17px;
    width: 47%;
    padding: 3px 3px 20px;
  }

  .top-information__caption {
    right: 5px;
    bottom: 4px;
    left: 5px;
    font-size: 8px;
  }


  /* ------------------------------
     カード
  ------------------------------ */

  .top-information__content {
    width: 100%;
    padding: 18px 12px 19px;
    box-shadow: 0 8px 20px rgba(48, 57, 67, 0.12);
    margin-top: 50px;
  }

  .top-information__label {
    margin-bottom: 12px;
    font-size: 8px;
    letter-spacing: 0.32em;
  }

  .top-information__title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.75;
  }

  .top-information__lead {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.9;
  }


  /* ------------------------------
     リスト
  ------------------------------ */

  .top-information__item {
    gap: 8px;
    padding: 7px 0;
  }

  .top-information__item p {
    font-size: 16px;
    line-height: 1.75;
  }

  .top-information__item strong {
    font-size: 18px;
  }

  .top-information__item small {
    font-size: 12px;
    line-height: 1.6;
  }

  .top-information__check {
    flex-basis: 9px;
    width: 9px;
    height: 9px;
    margin-top: 4px;
  }


  /* ------------------------------
     下部メッセージ
  ------------------------------ */

  .top-information__message {
    margin-top: 14px;
    padding: 7px 0 7px 10px;
    font-size: 14px;
    line-height: 2;
  }


  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

}

/* ========================================
   Trouble / お悩み・症状
======================================== */

/* ========================================
   Trouble / お悩み・症状
======================================== */

.top-trouble {
  position: relative;
  overflow: hidden;
  padding: 18px 36px;
  background-color: #f4f3ef;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(143, 126, 101, 0.035) 0,
      rgba(143, 126, 101, 0.035) 1px,
      transparent 1px,
      transparent 5px
    );
}

.top-trouble__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 54px 46px;
  box-sizing: border-box;
  background-color: #fff;
  background-image:
    linear-gradient(
      rgba(70, 97, 122, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(70, 97, 122, 0.035) 1px,
      transparent 1px
    );
  background-size: 7px 7px;
  border: 1px solid rgba(219, 203, 176, 0.7);
  box-shadow:
    0 0 0 1px rgba(219, 203, 176, 0.22),
    0 10px 30px rgba(42, 50, 58, 0.07);
}


/* ==============================
   Trouble 縦英字
============================== */

.top-trouble__side-text {
  position: absolute;
  top: 30px;
  left: 10px;
  z-index: 0;
  color: rgba(60, 85, 108, 0.065);
  font-family: "Times New Roman", serif;
  font-size: clamp(72px, 7vw, 104px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  writing-mode: sideways-lr;
  pointer-events: none;
}


/* ==============================
   見出し
============================== */

.top-trouble__heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.top-trouble__heading h2 {
  position: relative;
  margin: 0 0 14px;
  padding: 0 0 24px;
  color: #344e69;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.12em;
  text-align: center;
}

.top-trouble__heading h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #b99251;
}

.top-trouble__accent {
  color: #647cab;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.12em;
}


/* ==============================
   導入
============================== */

.top-trouble__intro {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  margin: 0 auto 38px;
  padding: 18px 28px 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 203, 176, 0.72);
  text-align: center;
}

.top-trouble__intro::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 12px solid #b89655;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  transform: translateX(-50%);
}

.top-trouble__intro p {
  margin: 0;
  color: #5b6875;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 16px;
  line-height: 2.05;
}

.top-trouble__intro-line {
  display: block;
}


/* ==============================
   一覧
============================== */

.top-trouble__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 30px;
  width: 100%;
  margin: 0;
}


/* カードごとの写真角度 */

.top-trouble__item--01 {
  --trouble-frame-rotate: -1.35deg;
  --trouble-back-rotate: 1.1deg;
  --trouble-photo-rotate: 0.7deg;
}

.top-trouble__item--02 {
  --trouble-frame-rotate: 0.75deg;
  --trouble-back-rotate: -0.9deg;
  --trouble-photo-rotate: -0.55deg;
}

.top-trouble__item--03 {
  --trouble-frame-rotate: -0.95deg;
  --trouble-back-rotate: 0.65deg;
  --trouble-photo-rotate: 0.5deg;
}

.top-trouble__item--04 {
  --trouble-frame-rotate: -0.55deg;
  --trouble-back-rotate: 1.15deg;
  --trouble-photo-rotate: 0.35deg;
}

.top-trouble__item--05 {
  --trouble-frame-rotate: 0.8deg;
  --trouble-back-rotate: -1.15deg;
  --trouble-photo-rotate: -0.55deg;
}

.top-trouble__item--06 {
  --trouble-frame-rotate: -0.9deg;
  --trouble-back-rotate: 0.8deg;
  --trouble-photo-rotate: 0.55deg;
}

.top-trouble__item--07 {
  --trouble-frame-rotate: 0.6deg;
  --trouble-back-rotate: -0.75deg;
  --trouble-photo-rotate: -0.4deg;
}

.top-trouble__item--08 {
  --trouble-frame-rotate: 0.85deg;
  --trouble-back-rotate: -0.65deg;
  --trouble-photo-rotate: -0.45deg;
}


/* ==============================
   PC配置
============================== */

.top-trouble__item--01 {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.top-trouble__item--02 {
  grid-column: 3 / span 2;
  grid-row: 1;
}

.top-trouble__item--04 {
  grid-column: 5 / span 2;
  grid-row: 1;
}

.top-trouble__item--05 {
  grid-column: 1 / span 2;
  grid-row: 2;
}

.top-trouble__item--06 {
  grid-column: 3 / span 2;
  grid-row: 2;
}

.top-trouble__item--07 {
  grid-column: 5 / span 2;
  grid-row: 2;
}

.top-trouble__item--03 {
  grid-column: 1 / span 3;
  grid-row: 3;
}

.top-trouble__item--08 {
  grid-column: 4 / span 3;
  grid-row: 3;
}


/* ==============================
   通常カード
============================== */

.top-trouble__item {
  position: relative;
  min-width: 0;
}

.top-trouble__number {
  display: none;
}


/* ==============================
   写真
============================== */

.top-trouble__item-image {
  position: relative;
  width: calc(100% - 10px);
  margin: 0 auto 16px;
  padding: 7px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(219, 203, 176, 0.78);
  box-shadow: 5px 6px 9px rgba(38, 48, 56, 0.08);
  transform:
    rotate(var(--trouble-frame-rotate, 0deg));
  transform-origin: center;
}

.top-trouble__item-image::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  z-index: 0;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  box-sizing: border-box;
  border: 1px solid rgba(219, 203, 176, 0.38);
  transform:
    rotate(var(--trouble-back-rotate, 0deg));
  transform-origin: center;
  pointer-events: none;
}

.top-trouble__item-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  transform:
    rotate(var(--trouble-photo-rotate, 0deg))
    scale(0.985);
  transform-origin: center;
}


/* ==============================
   テキスト
============================== */

.top-trouble__item-body {
  min-width: 0;
}

.top-trouble__item-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.top-trouble__check {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d4bd91;
}

.top-trouble__check::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #53779a;
  border-left: 2px solid #53779a;
  transform: rotate(-45deg);
}

.top-trouble__item h3 {
  min-width: 0;
  margin: 0;
  color: #344d65;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.top-trouble__item p {
  margin: 10px 0 0 34px;
  padding: 10px 0 15px;
  color: #687682;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 15px;
  line-height: 1.9;
  border-top: 1px dotted rgba(185, 146, 81, 0.42);
}


/* ==============================
   下段横長カード
============================== */

.top-trouble__item--wide {
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  align-items: stretch;
  min-height: 218px;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(219, 203, 176, 0.8);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.68),
    0 0 0 5px rgba(219, 203, 176, 0.32);
}

.top-trouble__item--wide .top-trouble__item-image {
  width: calc(100% - 8px);
  height: calc(100% - 6px);
  margin: auto;
  padding: 6px;
}

.top-trouble__item--wide .top-trouble__item-image img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  aspect-ratio: auto;
  object-fit: cover;
}

.top-trouble__item--wide .top-trouble__item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
}

.top-trouble__item--wide p {
  margin-left: 34px;
  padding-bottom: 0;
}


/* ==============================
   下部相談
============================== */

.top-trouble__consult {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 800px);
  margin: 38px auto 0;
  text-align: center;
}

.top-trouble__consult-image {
  display: none;
}

.top-trouble__consult-body {
  width: 100%;
}

.top-trouble__consult-main {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 76px;
  color: #53687e;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.top-trouble__consult-main::before,
.top-trouble__consult-main::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  border-top: 1px dotted #b99251;
}

.top-trouble__consult-main::before {
  left: 0;
}

.top-trouble__consult-main::after {
  right: 0;
}

.top-trouble__consult-sub {
  display: none;
}


/* ==============================
   CTA
============================== */

.top-trouble__cta {
  position: relative;
  z-index: 1;
  margin: 22px 0 4px;
  text-align: center;
}

.top-trouble__cta a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 470px);
  min-height: 62px;
  padding: 11px 56px 11px 32px;
  box-sizing: border-box;
  color: #40546a;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(185, 146, 81, 0.68);
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.top-trouble__cta a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 27px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #b99251;
  border-right: 1px solid #b99251;
  transform: translateY(-50%) rotate(45deg);
}

.top-trouble__cta a:hover {
  opacity: 0.7;
  background-color: #fff;
}


/* ========================================
   1024px～1199px
======================================== */

@media screen and (min-width: 1024px) and (max-width: 1199px) {

  .top-trouble {
    padding-right: 18px;
    padding-left: 18px;
  }

  .top-trouble__inner {
    padding-right: 36px;
    padding-left: 36px;
  }

  .top-trouble__list {
    column-gap: 22px;
    row-gap: 26px;
  }

  .top-trouble__item h3 {
    font-size: 17px;
    letter-spacing: 0.02em;
  }

  .top-trouble__item p {
    margin-left: 31px;
    font-size: 14px;
    line-height: 1.8;
  }

  .top-trouble__check {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .top-trouble__check::after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 4px;
  }

  .top-trouble__item--wide .top-trouble__item-body {
    padding: 14px 15px;
  }

}


/* ========================================
   768px～1023px
======================================== */

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .top-trouble {
    padding: 14px 18px;
  }

  .top-trouble__inner {
    padding: 42px 32px 44px;
  }

  .top-trouble__heading h2 {
    font-size: 31px;
  }

  .top-trouble__intro {
    margin-bottom: 32px;
  }

  .top-trouble__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 24px;
  }

  .top-trouble__item--01,
  .top-trouble__item--02,
  .top-trouble__item--03,
  .top-trouble__item--04,
  .top-trouble__item--05,
  .top-trouble__item--06,
  .top-trouble__item--07,
  .top-trouble__item--08 {
    grid-column: auto;
    grid-row: auto;
  }

  .top-trouble__item--01 { order: 1; }
  .top-trouble__item--02 { order: 2; }
  .top-trouble__item--03 { order: 3; }
  .top-trouble__item--04 { order: 4; }
  .top-trouble__item--05 { order: 5; }
  .top-trouble__item--06 { order: 6; }
  .top-trouble__item--07 { order: 7; }
  .top-trouble__item--08 { order: 8; }

  .top-trouble__item--wide {
    display: block;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .top-trouble__item--wide .top-trouble__item-image {
    width: calc(100% - 10px);
    height: auto;
    margin: 0 auto 16px;
    padding: 7px;
  }

  .top-trouble__item--wide .top-trouble__item-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .top-trouble__item--wide .top-trouble__item-body {
    display: block;
    padding: 0;
  }

  .top-trouble__item--wide p {
    margin-left: 34px;
    padding-bottom: 15px;
  }

}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-trouble {
    padding: 8px 6px;
  }

  .top-trouble__inner {
    width: 100%;
    max-width: none;
    padding: 24px 10px 34px;
  }


  /* Trouble英字 */

  .top-trouble__side-text {
    display: none;
  }


  /* 見出し */

  .top-trouble__heading {
    max-width: none;
  }

  .top-trouble__heading h2 {
    margin-bottom: 14px;
    padding-bottom: 18px;
    font-size: 23px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .top-trouble__accent {
    letter-spacing: 0.08em;
  }


  /* 導入 */

  .top-trouble__intro {
    width: 100%;
    margin: 0 auto 24px;
    padding: 13px 12px 17px;
  }

  .top-trouble__intro p {
    font-size: 15px;
    line-height: 1.9;
  }

  .top-trouble__intro-line {
    display: inline;
  }

  .top-trouble__intro::after {
    bottom: -8px;
    border-top-width: 8px;
    border-right-width: 7px;
    border-left-width: 7px;
  }


  /* PCだけの改行を解除 */

  .top-trouble__pc-br {
    display: none;
  }


  /* ==============================
     2列×4段
  ============================== */

  .top-trouble__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 14px;
  }

  .top-trouble__item--01,
  .top-trouble__item--02,
  .top-trouble__item--03,
  .top-trouble__item--04,
  .top-trouble__item--05,
  .top-trouble__item--06,
  .top-trouble__item--07,
  .top-trouble__item--08 {
    grid-column: auto;
    grid-row: auto;
  }

  .top-trouble__item--01 { order: 1; }
  .top-trouble__item--02 { order: 2; }
  .top-trouble__item--03 { order: 3; }
  .top-trouble__item--04 { order: 4; }
  .top-trouble__item--05 { order: 5; }
  .top-trouble__item--06 { order: 6; }
  .top-trouble__item--07 { order: 7; }
  .top-trouble__item--08 { order: 8; }


  /* カード */

  .top-trouble__item,
  .top-trouble__item--wide {
    position: relative;
    display: block;
    min-height: 0;
    padding: 6px 6px 12px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(219, 203, 176, 0.72);
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.66),
      0 0 0 4px rgba(219, 203, 176, 0.28);
  }


  /* 番号 */

  .top-trouble__number {
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 24px;
    height: 30px;
    padding-top: 4px;
    box-sizing: border-box;
    color: #fff;
    background: #0b2144;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      50% 82%,
      0 100%
    );
    font-family: "Times New Roman", serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.02em;
  }


  /* 写真 */

  .top-trouble__item-image,
  .top-trouble__item--wide .top-trouble__item-image {
    width: 100%;
    height: auto;
    margin: 0 0 11px;
    padding: 5px;
    box-sizing: border-box;
  }

  .top-trouble__item-image::before,
  .top-trouble__item--wide .top-trouble__item-image::before {
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
  }

  .top-trouble__item-image img,
  .top-trouble__item--wide .top-trouble__item-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
  }


  /* チェック */

  .top-trouble__item-title {
    display: block;
  }

  .top-trouble__check {
    position: absolute;
    top: 9px;
    right: 8px;
    z-index: 5;
    width: 15px;
    height: 15px;
    margin: 0;
  }

  .top-trouble__check::after {
    top: 2px;
    left: 3px;
    width: 6px;
    height: 3px;
    border-bottom-width: 1px;
    border-left-width: 1px;
  }


  /* テキスト
     既存top-troubleのSP設定に合わせる
  */

  .top-trouble__item-body,
  .top-trouble__item--wide .top-trouble__item-body {
    display: block;
    padding: 0;
  }

  .top-trouble__item h3,
  .top-trouble__item--wide h3 {
    margin: 0;
    color: #344d65;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    text-align: center;
  }

  .top-trouble__item p,
  .top-trouble__item--wide p {
    margin: 8px 0 0;
    padding: 8px 2px 0;
    font-size: 13px;
    line-height: 1.75;
    text-align: center;
    border-top: 1px dotted rgba(185, 146, 81, 0.42);
  }


  /* ==============================
     下部相談
  ============================== */

  .top-trouble__consult {
    position: relative;
    display: grid;
    grid-template-columns: 38% 62%;
    width: 100%;
    min-height: 128px;
    margin: 19px auto 0;
    padding: 11px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(186, 200, 214, 0.72);
    box-shadow: 0 5px 12px rgba(48, 61, 77, 0.08);
    text-align: center;
  }

  .top-trouble__consult::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -7px;
    width: 40px;
    height: 13px;
    background: rgba(202, 170, 91, 0.62);
    transform: rotate(37deg);
  }

  .top-trouble__consult-image {
    display: block;
    align-self: center;
    padding: 4px;
    background: #fff;
    border: 1px solid rgba(219, 203, 176, 0.55);
    transform: rotate(-3deg);
    box-shadow: 3px 4px 6px rgba(38, 48, 56, 0.08);
  }

  .top-trouble__consult-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .top-trouble__consult-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 11px;
  }

  .top-trouble__consult-main {
    display: block;
    margin: 0;
    padding: 0 0 8px;
    color: #52709a;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }

  .top-trouble__consult-main::before,
  .top-trouble__consult-main::after {
    display: none;
  }

  .top-trouble__consult-sub {
    display: block;
    margin: 0;
    padding-top: 8px;
    color: #b17c35;
    font-family:
      "Noto Serif JP",
      "Yu Mincho",
      "YuMincho",
      serif;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    border-top: 1px dotted rgba(185, 146, 81, 0.42);
  }


  /* ==============================
     CTA
  ============================== */

  .top-trouble__cta {
    margin: 16px 0 2px;
  }

  .top-trouble__cta a {
    width: min(70%, 290px);
    min-height: 46px;
    padding: 8px 38px 8px 18px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .top-trouble__cta a::after {
    right: 17px;
    width: 6px;
    height: 6px;
  }

}


/* ========================================
   375px前後
======================================== */

@media screen and (max-width: 375px) {

  .top-trouble__inner {
    padding-right: 8px;
    padding-left: 8px;
  }

  .top-trouble__list {
    column-gap: 8px;
  }

  /*
    文字サイズはここで小さくしません。
    既存サイトのSP設定である
    H3 16px / 本文13pxを維持します。
  */

  .top-trouble__consult {
    grid-template-columns: 37% 63%;
    padding-right: 9px;
    padding-left: 9px;
  }

  .top-trouble__cta a {
    width: 74%;
  }

}
/* ========================================
   Second Opinion / セカンドオピニオン
======================================== */

.top-secondopinion {
  position: relative;
  padding: 55px 20px 35px;
  overflow: hidden;
  background-color: #fff;

  background-image:
    linear-gradient(
      rgba(108, 99, 60, 0.025) 1px,
      transparent 2px
    ),
    linear-gradient(
      90deg,
      rgba(108, 96, 60, 0.025) 1px,
      transparent 2px
    );

  background-size: 1cm 1cm;
}

.top-secondopinion__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}


/* ========================================
   背景 SECOND OPINION
======================================== */

.top-secondopinion__en {
  position: absolute;
  z-index: -1;
  top: -20px;
  left: 50%;
  width: 100%;
  color: rgba(51, 75, 99, 0.05);
  font-family: "Times New Roman", serif;
  font-size: 100px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-60%);
}


/* ========================================
   六角形装飾
======================================== */

.top-secondopinion__hexagons {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  width: 300px;
  height: 500px;
}

.top-secondopinion__hexagons span {
  position: absolute;
  display: block;
  width: 180px;
  height: 156px;
  background: rgba(155, 199, 198, 0.22);
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );
}

.top-secondopinion__hexagons span:nth-child(1) {
  top: 0;
  left: -70px;
}

.top-secondopinion__hexagons span:nth-child(2) {
  top: 170px;
  left: 85px;
  width: 144px;
  height: 124px;
  background: rgba(118, 177, 175, 0.23);
}

.top-secondopinion__hexagons span:nth-child(3) {
  top: 320px;
  left: 30px;
  width: 144px;
  height: 124px;
  background: rgba(109, 189, 187, 0.3);
}
/* ========================================
   導入
======================================== */

.top-secondopinion__heading {
  position: relative;
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.top-secondopinion__label {
  margin: 0 0 9px;
  color: #b89a56;
  font-family: "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.28em;
}

.top-secondopinion__heading h2 {
  margin: 0;
  color: #304b68;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.top-secondopinion__heading h2 span {
  position: relative;
  color: #9b694e;
}

.top-secondopinion__heading h2 span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: #c88468;
}

.top-secondopinion__sub {
  margin: 10px 0 22px;
  color: #bca168;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.25em;
}

.top-secondopinion__catch {
  margin: 0 0 18px;
  color: #3c5369;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.top-secondopinion__text {
  margin: 0;
  color: #667482;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 2.25;
}


/* ========================================
   医師画像
======================================== */

.top-secondopinion__main {
  max-width: 850px;
  margin: 0 auto 75px;
}

.top-secondopinion__doctor {
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 24px rgba(43, 54, 64, 0.12);
}

.top-secondopinion__doctor img {
  display: block;
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
}


/* ========================================
   特徴3つ
======================================== */

.top-secondopinion__features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 14px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 20px rgba(39, 49, 58, 0.17);
}

.top-secondopinion__feature {
  min-height: 105px;
  padding: 20px 15px 15px;
  box-sizing: border-box;
  background: #f5f6f7;
  border: 1px solid #e7e8e9;
  text-align: center;
}

.top-secondopinion__feature i {
  display: block;
  margin-bottom: 10px;
  color: #254d77;
  font-size: 19px;
}

.top-secondopinion__feature p {
  margin: 0;
  color: #435971;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 1.8;
}


/* ========================================
   共通セクション見出し
======================================== */

.top-secondopinion__section-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 25px;
}

.top-secondopinion__section-heading::before {
  content: "";
  width: 95px;
  height: 1px;
  margin-right: 10px;
  background: rgba(183, 151, 87, 0.4);
}

.top-secondopinion__section-heading span {
  color: #49637e;
  font-family: "Times New Roman", serif;
  font-size: 35px;
  letter-spacing: 0.15em;
}

.top-secondopinion__section-heading h3 {
  margin: 0;
  color: #3a526b;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.08em;
}


/* ========================================
   01 診断
======================================== */

.top-secondopinion__diagnosis {
  margin-bottom: 90px;
}

.top-secondopinion__section-text {
  margin-bottom: 38px;
  text-align: center;
}

.top-secondopinion__section-text p {
  margin: 0 0 5px;
  color: #657381;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 2;
}


/* ========================================
   CT / MICRO
======================================== */

.top-secondopinion__equipment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.top-secondopinion__equipment-item {
  text-align: center;
}

.top-secondopinion__equipment-en {
  margin: 0 0 8px;
  padding: 6px 10px;
  color: #fff;
  font-family: "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.top-secondopinion__equipment-en--ct {
  background: #baa254;
}

.top-secondopinion__equipment-en--blue {
  background: #7d8da3;
}

.top-secondopinion__equipment-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.top-secondopinion__equipment-caption {
  margin: 7px 0 0;
  color: #53677c;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 14px;
  line-height: 1.6;
}

.top-secondopinion__equipment-caption--gold {
  color: #a48838;
}


/* ========================================
   02 ご相談の流れ
======================================== */

.top-secondopinion__flow {
  margin-bottom: 55px;
}

.top-secondopinion__flow-lead {
  margin: -7px 0 30px;
  color: #697785;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.top-secondopinion__flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.top-secondopinion__flow-item {
  position: relative;
  min-height: 155px;
  padding: 24px 15px 18px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e4e3df;
  border-top: 2px solid #b99b55;
  text-align: center;
  box-shadow: 0 4px 9px rgba(50, 59, 67, 0.05);
}

.top-secondopinion__flow-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: #fff;
  background: #0d365e;
  border-radius: 50%;
  font-family: "Times New Roman", serif;
  font-size: 14px;
}

.top-secondopinion__flow-item h4 {
  margin: 0 0 12px;
  color: #425870;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 20px;
  font-weight: 500;
}

.top-secondopinion__flow-item p {
  margin: 0;
  color: #6e7984;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 14px;
  line-height: 1.9;
}


/* ========================================
   CTA
======================================== */

.top-secondopinion__cta {
  position: relative;
  padding: 42px 30px;
  border: 4px solid #143c63;
  background-color: #08335e;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 12px 12px;
  box-shadow: 0 8px 16px rgba(26, 40, 52, 0.2);
  text-align: center;
}

.top-secondopinion__cta::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.top-secondopinion__cta-text {
  margin: 0 0 25px;
  color: #fff;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 25px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.top-secondopinion__cta-text strong {
  color: #c8a75d;
  font-size: 25px;
  font-weight: 500;
}

.top-secondopinion__cta-buttons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.top-secondopinion__consult-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 290px;
  min-height: 62px;
  padding: 10px 18px;
  box-sizing: border-box;
  color: #29445f;

  background: linear-gradient(
    to bottom,
    #e0c57d 0%,
    #d2ae5d 55%,
    #bc9442 100%
  );

  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.top-secondopinion__consult-btn span {
  font-size: 18px;
}

.top-secondopinion__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 245px;
  min-height: 62px;
  padding: 7px 15px;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  text-decoration: none;
}

.top-secondopinion__tel small {
  margin-bottom: 2px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.top-secondopinion__tel strong {
  color: #d5b467;
  font-family: "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.top-secondopinion__consult-btn:hover,
.top-secondopinion__tel:hover {
  opacity: 0.75;
}


/* ========================================
   PC / SP
======================================== */

.sp_only {
  display: none;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-secondopinion {
    padding: 38px 15px 18px;
  }

  .top-secondopinion__inner {
    max-width: none;
  }


  /* 背景文字 */

  .top-secondopinion__en {
    top: -24px;
    font-size: 40px;
    letter-spacing: 0.02em;
    transform: translateX(-50%);

  }

/* 六角形 */
.top-secondopinion__hexagons {
  display: block;
  top: 35px;
  left: 0;
  width: 150px;
  height: 240px;
}

.top-secondopinion__hexagons span {
  width: 90px;
  height: 78px;
}

.top-secondopinion__hexagons span:nth-child(1) {
  top: 0;
  left: -38px;
}

.top-secondopinion__hexagons span:nth-child(2) {
  top: 82px;
  left: 38px;
  width: 72px;
  height: 62px;
}

.top-secondopinion__hexagons span:nth-child(3) {
  top: 155px;
  left: 8px;
  width: 72px;
  height: 62px;
}

  /* ==============================
     導入
  ============================== */

  .top-secondopinion__heading {
    margin-bottom: 32px;
  }

  .top-secondopinion__label {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .top-secondopinion__heading h2 {
    font-size: 25px;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }

  .top-secondopinion__heading h2 span::after {
    bottom: -3px;
    height: 1px;
  }

  .top-secondopinion__sub {
    margin: 8px 0 17px;
    font-size: 12px;
  }

  .top-secondopinion__catch {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 2;
  }

  .top-secondopinion__text {
    font-size: 13px;
    line-height: 2.15;
  }


  /* ==============================
     医師画像
  ============================== */

  .top-secondopinion__main {
    width: 94%;
    margin-bottom: 45px;
  }

  .top-secondopinion__doctor img {
    aspect-ratio: 2 / 0.85;
  }


  /* ==============================
     特徴
  ============================== */

  .top-secondopinion__features {
    display: block;
    margin-top: 10px;
    padding: 9px;
  }

  .top-secondopinion__feature {
    min-height: 93px;
    margin-bottom: 8px;
    padding: 17px 10px 13px;
  }

  .top-secondopinion__feature:last-child {
    margin-bottom: 0;
  }

  .top-secondopinion__feature i {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .top-secondopinion__feature p {
    font-size: 16px;
    line-height: 1.7;
  }


  /* ==============================
     セクション見出し
  ============================== */

  .top-secondopinion__section-heading {
    gap: 7px;
    margin-bottom: 18px;
  }

  .top-secondopinion__section-heading::before {
    width: 17px;
    margin-right: 0;
  }

  .top-secondopinion__section-heading span {
    flex-shrink: 0;
    font-size: 23px;
  }

  .top-secondopinion__section-heading h3 {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: center;
  }


  /* ==============================
     診断
  ============================== */

  .top-secondopinion__diagnosis {
    margin-bottom: 50px;
  }

  .top-secondopinion__section-text {
    margin-bottom: 25px;
  }

  .top-secondopinion__section-text p {
    font-size: 13px;
    line-height: 2;
    text-align: left;
  }


  /* ==============================
     設備
  ============================== */

  .top-secondopinion__equipment {
    display: block;
  }

  .top-secondopinion__equipment-item {
    margin-bottom: 28px;
  }

  .top-secondopinion__equipment-item:last-child {
    margin-bottom: 0;
  }

  .top-secondopinion__equipment-en {
    margin-bottom: 5px;
    padding: 5px;
    font-size: 18px;
  }

  .top-secondopinion__equipment-img img {
    aspect-ratio: 1.48 / 1;
  }

  .top-secondopinion__equipment-caption {
    margin-top: 5px;
    font-size: 15px;
  }


  /* ==============================
     ご相談の流れ
  ============================== */

  .top-secondopinion__flow {
    margin-bottom: 30px;
  }

  .top-secondopinion__flow-lead {
    margin: -4px 0 20px;
    font-size: 13px;
    text-align: left;
  }

  .top-secondopinion__flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .top-secondopinion__flow-item {
    min-height: 145px;
    padding: 18px 7px 13px;
    border-radius: 4px;
  }

  .top-secondopinion__flow-number {
    width: 29px;
    height: 29px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .top-secondopinion__flow-item h4 {
    margin-bottom: 9px;
    font-size: 17px;
  }

  .top-secondopinion__flow-item p {
    font-size: 13px;
    line-height: 1.9;
  }


  /* ==============================
     CTA
  ============================== */

  .top-secondopinion__cta {
    padding: 28px 10px 14px;
    border-width: 3px;
  }

  .top-secondopinion__cta-text {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 2;
  }

  .top-secondopinion__cta-text strong {
    font-size: 18px;
  }

  .top-secondopinion__cta-buttons {
    display: block;
  }

  .top-secondopinion__consult-btn {
    width: 90%;
    min-height: 43px;
    margin: 0 auto 9px;
    padding: 8px 10px;
    font-size: 15px;
  }

  .top-secondopinion__consult-btn span {
    font-size: 13px;
  }

  .top-secondopinion__tel {
    width: 90%;
    min-height: 48px;
    margin: 0 auto;
  }

  .top-secondopinion__tel small {
    font-size: 13px;
  }

  .top-secondopinion__tel strong {
    font-size: 17px;
  }


  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }
}

/* ========================================
   Precision Endodontics / 精密根管治療
======================================== */

.top-precision {
  position: relative;
  padding: 75px 5.5%;
  overflow: hidden;

  background-color: #f5f7f7;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(83, 104, 121, 0.035) 0,
      rgba(83, 104, 121, 0.035) 1px,
      transparent 1px,
      transparent 7px
    );
}


/* ========================================
   外枠
======================================== */

.top-precision__box {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 65px 60px 65px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(203, 180, 137, 0.55);
}

.top-precision__box::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  bottom: 9px;
  left: 9px;
  border: 1px solid rgba(203, 180, 137, 0.35);
  pointer-events: none;
}


/* 上部ひし形 */

.top-precision__diamond {
  position: absolute;
  z-index: 3;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #b28d43;
  transform: translateX(-50%) rotate(45deg);
}


/* 背景英字 */

.top-precision__bg-en {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: 25px;
  color: rgba(54, 76, 98, 0.055);
  font-family: "Times New Roman", serif;
  font-size: 54px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
}


/* ========================================
   2カラム
======================================== */

.top-precision__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 55px;
  align-items: start;
}


/* ========================================
   左側
======================================== */

.top-precision__label {
  position: relative;
  margin: 0 0 28px;
  padding-left: 14px;
  color: #5a7088;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.top-precision__label::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 2px;
  background: #b6914b;
}


.top-precision__title {
  margin: 0 0 38px;
  color: #173653;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}


/* ========================================
   写真
======================================== */

.top-precision__photo {
  position: relative;
  padding: 0 10px 10px 0;
}

.top-precision__photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid rgba(190, 154, 88, 0.55);
}

.top-precision__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top-precision__caption {
  margin: 4px 0 0;
  color: #8190a1;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}


/* ========================================
   右側本文
======================================== */

.top-precision__right {
  padding-top: 4px;
}

.top-precision__text {
  margin-bottom: 30px;
}

.top-precision__text p {
  margin: 0 0 24px;
  color: #52677d;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.035em;
}

.top-precision__text p:last-child {
  margin-bottom: 0;
}

.top-precision__text strong {
  color: #334e69;
  font-weight: 600;

  background: linear-gradient(
    transparent 68%,
    rgba(219, 203, 176, 0.7) 68%
  );
}


/* ========================================
   特徴
======================================== */

.top-precision__points {
  margin-bottom: 30px;
  border-top: 1px solid rgba(184, 145, 77, 0.35);
}

.top-precision__point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 7px 0;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(184, 145, 77, 0.35);
}

.top-precision__point-icon {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-left: 3px;
  background: #b58d43;
  transform: rotate(45deg);
}

.top-precision__point p {
  margin: 0;
  color: #465e76;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}


/* ========================================
   ボタン
======================================== */

.top-precision__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-precision__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 49px;
  padding: 10px 23px;
  box-sizing: border-box;
  background: #fff;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition:
    background-color 0.3s,
    color 0.3s,
    opacity 0.3s;
}

.top-precision__btn--main {
  min-width: 258px;
  color: #344e68;
  border: 1px solid #344e68;
}

.top-precision__btn--price {
  min-width: 154px;
  color: #a17a35;
  border: 1px solid #c29d5e;
}

.top-precision__arrow {
  font-family: serif;
  font-size: 18px;
  line-height: 1;
}

.top-precision__btn:hover {
  opacity: 0.65;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-precision {
    padding: 22px 9px;
  }


  /* 外枠 */

  .top-precision__box {
    padding: 30px 14px 30px;
  }

  .top-precision__box::before {
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
  }

  .top-precision__diamond {
    top: -5px;
    width: 8px;
    height: 8px;
  }


  /* 背景英字 */

  .top-precision__bg-en {
    top: 7px;
    left: 7px;
    right: auto;
    max-width: calc(100% - 14px);
    overflow: hidden;
    font-size: 27px;
    letter-spacing: 0;
  }


  /* 1カラム */

  .top-precision__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }


  /* ==============================
     見出し
  ============================== */

  .top-precision__left {
    display: contents;
  }

  .top-precision__label {
    order: 1;
    margin: 0 0 20px;
    padding-left: 10px;
    font-size: 13px;
    line-height: 1.9;
  }

  .top-precision__title {
    order: 2;
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.07em;
  }


  /* ==============================
     写真
  ============================== */

  .top-precision__photo {
    order: 3;
    width: 100%;
    padding: 0 5px 5px 0;
    box-sizing: border-box;
  }

  .top-precision__caption {
    order: 4;
    margin: 3px 0 25px;
    font-size: 8px;
  }


  /* ==============================
     本文
  ============================== */

  .top-precision__right {
    display: contents;
  }

  .top-precision__text {
    order: 5;
    margin-bottom: 18px;
  }

  .top-precision__text p {
    margin-bottom: 19px;
    font-size: 15px;
    line-height: 2.25;
  }


  /* ==============================
     特徴
  ============================== */

  .top-precision__points {
    order: 6;
    margin-bottom: 22px;
  }

  .top-precision__point {
    align-items: flex-start;
    gap: 9px;
    min-height: 0;
    padding: 10px 2px;
  }

  .top-precision__point-icon {
    width: 6px;
    height: 6px;
    margin-top: 5px;
    margin-left: 2px;
  }

  .top-precision__point p {
    font-size: 15px;
    line-height: 1.7;
  }


  /* ==============================
     ボタン
  ============================== */

  .top-precision__buttons {
    order: 7;
    display: block;
    width: 100%;
  }

  .top-precision__btn {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    margin-bottom: 9px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .top-precision__btn:last-child {
    margin-bottom: 0;
  }

  .top-precision__arrow {
    font-size: 14px;
  }
}

/* ========================================
   Reason / 神戸三宮アステオ歯科が選ばれる理由
======================================== */

.top-reason {
  position: relative;
  padding: 55px 20px 75px;
  overflow: hidden;
  background-color: #fff;

  /* ベージュ系の方眼背景 */
  background-image:
    linear-gradient(
      rgba(219, 203, 176, 0.14) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(219, 203, 176, 0.14) 1px,
      transparent 1px
    );

  background-size: 38px 38px;
}

.top-reason__inner {
  max-width: 90%;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.top-reason__heading {
  position: relative;
  max-width: 600px;
  margin: 0 auto 75px;
  text-align: center;
}

.top-reason__label {
  margin: 0 0 12px;
  color: #b69350;
  font-family: "Times New Roman", serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.35em;
}

.top-reason__heading h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #294761;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.12em;
}

.top-reason__accent {
  color: #647cab;
  font-size: 50px;
}

/* 背景英字 */

.top-reason__bg-en {
  position: absolute;
  z-index: 0;
  top: 50px;
  left: 50%;
  color: rgba(51, 75, 99, 0.055);
  font-family: "Times New Roman", serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}


/* 導入文 */

.top-reason__lead {
  position: relative;
  z-index: 2;
  margin: 52px 0 0;
  color: #647587;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}


/* ========================================
   カード一覧
======================================== */

.top-reason__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 20px;
  align-items: stretch;
}


/* ========================================
   カード
======================================== */

.top-reason__item {
  overflow: hidden;
  background: #fff;
  box-shadow: 8px 8px 8px rgb(110 123 133 / 74%), 0 0 0 1px rgba(219, 203, 176, 0.25);
}


/* ========================================
   写真
======================================== */

.top-reason__photo {
  overflow: hidden;
}

.top-reason__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.23 / 1;
  object-fit: cover;
}


/* ========================================
   カード本文
======================================== */

.top-reason__body {
  position: relative;
  min-height: 205px;
  padding: 18px 18px 22px;
  box-sizing: border-box;
  background-color: rgb(138 153 173 / 6%);

  /* カード内方眼 */
  background-image:
    linear-gradient(
      rgba(69, 92, 113, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(69, 92, 113, 0.045) 1px,
      transparent 1px
    );
  background-size: 15px 15px;
}


/* 番号 */

.top-reason__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 31px;
  margin-bottom: 14px;
  color: #73869a;
  background: rgb(192 208 221 / 80%);
  font-family: "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}


/* タイトル */

.top-reason__body h3 {
  margin: 0 0 13px;
  color: #344e67;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.06em;
}


/* 説明 */

.top-reason__body p {
  margin: 0;
  color: #72808d;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.025em;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-reason {
    padding: 32px 8px 40px;

    background-size: 30px 30px;
  }

  .top-reason__inner {
    max-width: none;
  }


  /* ==============================
     見出し
  ============================== */

  .top-reason__heading {
    margin-bottom: 38px;
    padding: 0 15px;
  }

  .top-reason__label {
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 0.3em;
  }

  .top-reason__heading h2 {
    font-size: 23px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .top-reason__accent {
    color: #647cab;
    font-size: 35px;
}


  /* 背景 REASON */

  .top-reason__bg-en {
    position: relative;
    top: -80px;
    left: 0;
    font-size: 70px;
    transform: none;
  }


  /* 導入 */

  .top-reason__lead {
    margin-top: 38px;
    font-size: 15px;
    line-height: 2.1;
    text-align: left;
  }


  /* ==============================
     カード
  ============================== */

  .top-reason__list {
    display: block;
  }

  .top-reason__item {
    width: 100%;
    margin-bottom: 14px;
  }

  .top-reason__item:last-child {
    margin-bottom: 0;
  }


  /* 写真 */

  .top-reason__photo img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
  }


  /* 本文 */

  .top-reason__body {
    min-height: 0;
    padding: 12px 12px 16px;
    background-size: 7px 7px;
  }


  /* 番号 */

  .top-reason__number {
    width: 27px;
    height: 25px;
    margin-bottom: 8px;
    font-size: 14px;
  }


  /* タイトル */

  .top-reason__body h3 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.7;
  }


  /* 説明 */

  .top-reason__body p {
    font-size: 15px;
    line-height: 1.9;
  }

}

/* ========================================
   Three Shields / 歯を残す3つの盾
======================================== */

.top-shields {
  position: relative;
  padding: 62px 5%;
  overflow: hidden;

  background-color: #0d365d;

  /* ドット背景 */
  background-image:
    radial-gradient(
      circle,
      rgba(203, 174, 111, 0.28) 1.3px,
      transparent 1.4px
    );

  background-size: 15px 15px;
}


/* ========================================
   外側フレーム
======================================== */

.top-shields__inner {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 17px;
  box-sizing: border-box;

  background: #fff;

  border: 1px solid rgba(219, 203, 176, 0.9);

  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.28);
}


/* 外側にもう1本線 */

.top-shields__inner::before {
  content: "";
  position: absolute;

  top: -11px;
  right: -11px;
  bottom: -11px;
  left: -11px;

  border: 1px solid rgba(219, 203, 176, 0.45);

  pointer-events: none;
}


/* 内側の細いゴールドライン */

.top-shields__inner::after {
  content: "";
  position: absolute;

  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;

  border: 1px solid rgba(190, 157, 94, 0.48);

  pointer-events: none;
}


/* ========================================
   Three Shields / 歯を残す3つの盾
======================================== */

.top-shields {
  position: relative;
  padding: 62px 5%;
  overflow: hidden;
  background-color: #0d365d;

  /* ゴールド系ドット背景 */
  background-image:
    radial-gradient(
      circle,
      rgba(203, 174, 111, 0.28) 1.3px,
      transparent 1.4px
    );

  background-size: 15px 15px;
}


/* ========================================
   外側フレーム
======================================== */

.top-shields__inner {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 17px;
  box-sizing: border-box;

  background: #fff;

  border: 1px solid rgba(219, 203, 176, 0.9);

  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.28);
}


/* 外側の細いライン */

.top-shields__inner::before {
  content: "";
  position: absolute;
  top: -11px;
  right: -11px;
  bottom: -11px;
  left: -11px;

  border: 1px solid rgba(219, 203, 176, 0.45);

  pointer-events: none;
}


/* 内側のゴールドライン */

.top-shields__inner::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;

  border: 1px solid rgba(190, 157, 94, 0.48);

  pointer-events: none;
}


/* ========================================
   バナー
======================================== */

.top-shields__banner {
  position: relative;
  z-index: 2;

  display: block;
  width: 100%;

  text-decoration: none;

  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease;
}

.top-shields__banner picture {
  display: block;
}

.top-shields__banner img {
  display: block;

  width: 100%;
  height: auto;

  vertical-align: bottom;
}


/* ========================================
   Hover
======================================== */

/* ホバーできる端末だけ動かす */
@media (hover: hover) {

  .top-shields__banner:hover {
    transform: translateY(-5px) scale(1.01);
    filter: brightness(1.04);
  }

}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-shields {
    padding: 35px 15px;

    background-size: 13px 13px;
  }


  /* フレーム */

  .top-shields__inner {
    width: 100%;
    padding: 9px;

    box-shadow:
      0 8px 15px rgba(0, 0, 0, 0.22);
  }


  /* 外側ライン */

  .top-shields__inner::before {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
  }


  /* 内側ライン */

  .top-shields__inner::after {
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
  }


  /* SPではタップ時に動きすぎないようにする */

  .top-shields__banner {
    transform: none;
  }

}

/* ========================================
   Gentle Treatment / わかりやすい説明と痛みに配慮した治療
======================================== */

.top-gentle {
  position: relative;
  padding: 55px 20px 70px;
  overflow: hidden;
  background: #fff;

  /* 薄い方眼背景 */
  background-image:
    linear-gradient(
      rgba(219, 203, 176, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(219, 203, 176, 0.12) 1px,
      transparent 1px
    );

  background-size: 30px 30px;
}

.top-gentle__inner {
  max-width: 1050px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.top-gentle__heading {
  margin-bottom: 45px;
  text-align: center;
}

.top-gentle__heading h2 {
  margin: 0;
  color: #294764;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.top-gentle__heading-line {
  position: relative;
  display: block;
  width: 80px;
  height: 1px;
  margin: 14px auto 15px;
  background: #d4b374;
}

.top-gentle__heading-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #b78d44;
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.top-gentle__heading p {
  margin: 0;
  color: #7a8793;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}


/* ========================================
   カード
======================================== */

.top-gentle__card {
  position: relative;
  margin-bottom: 30px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 203, 176, 0.4);

  box-shadow:
    0 12px 22px rgba(44, 55, 65, 0.14);
}

.top-gentle__card-inner {
  position: relative;
  padding: 34px 28px 18px;

  background-color: #fff;

  /* カード内方眼 */
  background-image:
    linear-gradient(
      rgba(84, 103, 121, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(84, 103, 121, 0.045) 1px,
      transparent 1px
    );

  background-size: 8px 8px;
}


/* ========================================
   カード見出し
======================================== */

.top-gentle__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.top-gentle__title::before,
.top-gentle__title::after {
  content: "";
  width: 80px;
  height: 1px;
  background: rgba(219, 203, 176, 0.8);
}

.top-gentle__title::before {
  margin-right: 8px;
}

.top-gentle__title::after {
  margin-left: 8px;
}

.top-gentle__title span {
  padding-top: 2px;
  color: #42617e;
  font-family: "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 0.08em;
}

.top-gentle__title h3 {
  margin: 0;
  color: #314c67;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}


/* ========================================
   画像＋本文
======================================== */

.top-gentle__main {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 24px;
  align-items: center;

  margin-bottom: 30px;
  padding-bottom: 30px;

  border-bottom: 1px solid rgba(219, 203, 176, 0.55);
}


/* 写真 */

.top-gentle__photo {
  position: relative;
  z-index: 1;
  padding: 0 8px 8px 0;
}

/* 画像の後ろに少しずらした細い枠 */
.top-gentle__photo::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8px;
  left: 8px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  box-sizing: border-box;
  border: 1px solid rgba(190, 154, 88, 0.65);
  pointer-events: none;
}

.top-gentle__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* 本文 */

.top-gentle__text p {
  margin: 0 0 13px;
  color: #687887;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}

.top-gentle__text p:last-child {
  margin-bottom: 0;
}


/* ========================================
   小見出し
======================================== */

.top-gentle__point-title {
  margin-bottom: 14px;
  color: #304b67;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.12em;
}


/* ========================================
   3ポイント
======================================== */

.top-gentle__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.top-gentle__point {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 63px;
  padding: 10px 14px;
  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(213, 218, 222, 0.85);

  box-shadow: 0 4px 10px rgb(43 53 62 / 45%);
}


/* アイコン */

.top-gentle__icon {
  display: flex;
  flex: 0 0 29px;
  align-items: center;
  justify-content: center;

  width: 29px;
  height: 29px;

  color: #486c8f;
  background: #fff;

  border-radius: 50%;

  box-shadow:
    0 2px 8px rgba(35, 51, 65, 0.13);

  font-size: 11px;
}

.top-gentle__point p {
  margin: 0;
  color: #667687;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 16px;
  line-height: 1.65;
}


/* ========================================
   下部メッセージ
======================================== */

.top-gentle__message {
  position: relative;
  max-width: 620px;
  margin: 30px auto 0;
  padding: 20px 25px;

  box-sizing: border-box;

  background: #fff;
  border: 1px solid rgba(210, 181, 128, 0.65);

  text-align: center;

  box-shadow:
    0 5px 12px rgba(50, 58, 66, 0.06);
}

.top-gentle__message::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    #b89046 35%,
    #b89046 65%,
    transparent
  );
}

.top-gentle__message-diamond {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 7px;
  height: 7px;

  background: #b58d43;

  transform:
    translateX(-50%)
    rotate(45deg);
}

.top-gentle__message p {
  margin: 0;
  color: #50667c;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}


/* ========================================
   表示切り替え
======================================== */

.sp_only {
  display: none;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-gentle {
    padding: 30px 6px 28px;

    background-size: 25px 25px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-gentle__heading {
    padding: 0 13px;
    margin-bottom: 25px;
  }

  .top-gentle__heading h2 {
    font-size: 25px;
    line-height: 1.65;
  }

  .top-gentle__heading-line {
    width: 55px;
    margin: 10px auto 11px;
  }

  .top-gentle__heading p {
    font-size: 15px;
    line-height: 2;
    text-align: left;
  }


  /* ==============================
     カード
  ============================== */

  .top-gentle__card {
    margin-bottom: 13px;
    padding: 7px;
  }

  .top-gentle__card-inner {
    padding: 20px 10px 12px;
    background-size: 7px 7px;
  }


  /* カード見出し */

  .top-gentle__title {
    justify-content: flex-start;
    gap: 7px;
    margin-bottom: 16px;
  }

  .top-gentle__title::before,
  .top-gentle__title::after {
  content: "";
  width: 10px;
  height: 1px;
  background: rgba(219, 203, 176, 0.8);
}

  .top-gentle__title span {
    font-size: 23px;
  }

  .top-gentle__title h3 {
    font-size: 18px;
    line-height: 1.65;
  }


  /* ==============================
     画像＋本文
  ============================== */

  .top-gentle__main {
    display: block;
    margin-bottom: 17px;
  }

  .top-gentle__photo {
    width: 100%;
    margin-bottom: 14px;
  }

  .top-gentle__text p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 2;
  }


  /* ==============================
     小見出し
  ============================== */

  .top-gentle__point-title {
    margin: 15px 0 11px;
    font-size: 20px;
  }


  /* ==============================
     ポイント
  ============================== */

  .top-gentle__points {
    display: block;
  }

  .top-gentle__point {
    width: 100%;
    min-height: 47px;
    margin-bottom: 7px;
    padding: 8px 9px;
    gap: 9px;
  }

  .top-gentle__point:last-child {
    margin-bottom: 0;
  }

  .top-gentle__icon {
    flex-basis: 35px;
    width: 35px;
    height: 35px;
    font-size: 15px;
  }

  .top-gentle__point p {
    font-size: 15px;
    line-height: 1.65;
  }


  /* ==============================
     下部メッセージ
  ============================== */

  .top-gentle__message {
    width: calc(100% - 14px);
    margin-top: 14px;
    padding: 13px 8px;
  }

  .top-gentle__message p {
    font-size: 14px;
    line-height: 1.8;
  }


  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

}

/* ========================================
   Interior / 院内のご案内
======================================== */

.top-interior {
  position: relative;
  padding: 50px 20px 55px;
  overflow: hidden;

  /* 上が薄く、下が濃いベージュグラデーション */
  background:
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #faf9f5 45%,
      #f2eee5 100%
    );

  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(185, 173, 151, 0.04) 0,
      rgba(185, 173, 151, 0.04) 1px,
      transparent 1px,
      transparent 7px
    ),
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #faf9f5 45%,
      #f2eee5 100%
    );
}

.top-interior__inner {
  max-width: 1120px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.top-interior__heading {
  position: relative;
  margin: 0 auto 42px;
  text-align: center;
}

.top-interior__bg-en {
  position: absolute;
  top: -8px;
  left: 50%;
  z-index: 0;
  color: rgba(78, 95, 116, 0.06);
  font-family: "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.06em;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.top-interior__label,
.top-interior__heading h2,
.top-interior__diamond,
.top-interior__lead {
  position: relative;
  z-index: 1;
}

.top-interior__label {
  margin: 0 0 8px;
  color: #b69454;
  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
}

.top-interior__heading h2 {
  margin: 0;
  color: #2e4b68;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.top-interior__diamond {
  display: block;
  width: 7px;
  height: 7px;
  margin: 14px auto 16px;
  background: #b48a3e;
  transform: rotate(45deg);
}

.top-interior__lead {
  margin: 0;
  color: #69798b;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}


/* ========================================
   上段
======================================== */

.top-interior__main {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  gap: 0;
  align-items: stretch;
  margin-bottom: 24px;
}

.top-interior__main-photo {
  position: relative;
  z-index: 2;
  padding: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(33, 43, 55, 0.16);
}

.top-interior__main-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.top-interior__main-text {
  position: relative;
  z-index: 1;
  margin: 18px 0 0 -18px;
  padding: 58px 42px 40px 62px;
  background-color: rgba(255, 255, 255, 0.92);
  background-image:
    linear-gradient(
      rgba(92, 111, 131, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(92, 111, 131, 0.04) 1px,
      transparent 1px
    );
  background-size: 8px 8px;
  border: 1px solid rgba(219, 203, 176, 0.4);
}

.top-interior__num {
  display: block;
  margin-bottom: 10px;
  color: #b69454;
  font-family: "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.top-interior__main-text h3 {
  margin: 0 0 18px;
  color: #2d4966;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.top-interior__main-text p {
  margin: 0;
  color: #708090;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.04em;
}


/* ========================================
   下段カード
======================================== */

.top-interior__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 14px;
}

.top-interior__card {
  background: transparent;
}

.top-interior__card-photo {
  margin-bottom: 10px;
}

.top-interior__card-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.top-interior__card-body h3 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 12px;
  color: #2f4a67;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.top-interior__card-body h3::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 2px;
  height: calc(100% - 8px);
  background: #b28d46;
}

.top-interior__card-body p {
  margin: 0;
  color: #748291;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}


/* ========================================
   下部メッセージ
======================================== */

.top-interior__message {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(194, 173, 132, 0.35);
  text-align: center;
}

.top-interior__message p {
  margin: 0;
  color: #5f7488;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-interior {
    padding: 26px 8px 30px;
  }

  .top-interior__heading {
    margin-bottom: 24px;
  }

  .top-interior__bg-en {
    top: 0;
    font-size: 40px;
  }

  .top-interior__label {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .top-interior__heading h2 {
    font-size: 25px;
    line-height: 1.5;
  }

  .top-interior__diamond {
    width: 5px;
    height: 5px;
    margin: 10px auto 12px;
  }

  .top-interior__lead {
    font-size: 15px;
    line-height: 2;
  }


  /* 上段 */

  .top-interior__main {
    display: block;
    margin-bottom: 14px;
  }

  .top-interior__main-photo {
    padding: 5px;
    box-shadow: 0 5px 12px rgba(33, 43, 55, 0.12);
  }

  .top-interior__main-text {
    margin: 0;
    padding: 14px 12px 14px;
    background-size: 7px 7px;
  }

  .top-interior__num {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .top-interior__main-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .top-interior__main-text p {
    font-size: 14px;
    line-height: 2;
  }


  /* 一覧 */

  .top-interior__grid {
    display: block;
  }

  .top-interior__card {
    margin-bottom: 18px;
  }

  .top-interior__card:last-child {
    margin-bottom: 0;
  }

  .top-interior__card-photo {
    margin-bottom: 8px;
  }

  .top-interior__card-body h3 {
    margin: 10px 10px  10px 5px;
    padding-left: 9px;
    font-size: 18px;
  }

  .top-interior__card-body h3::before {
    top: 2px;
    height: calc(100% - 4px);
  }

  .top-interior__card-body p {
    font-size: 14px;
    line-height: 1.95;
  }


  /* 下部メッセージ */

  .top-interior__message {
    margin-top: 18px;
    padding-top: 12px;
  }

  .top-interior__message p {
    font-size: 16px;
    line-height: 1.9;
  }

}

/* ========================================
   Equipment / 精密治療を支える設備
======================================== */

.top-equipment {
  position: relative;
  padding: 50px 20px 65px;
  overflow: hidden;
  background-color: #fff;

  /* 薄い方眼背景 */
  background-image:
    linear-gradient(
      rgba(219, 203, 176, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(219, 203, 176, 0.12) 1px,
      transparent 1px
    );

  background-size: 30px 30px;
}

.top-equipment__inner {
  max-width: 1040px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.top-equipment__heading {
  position: relative;
  width: fit-content;
  margin: 0 auto 45px;
  padding: 12px 35px 10px;
  text-align: center;
}


/* 背景英字 */

.top-equipment__bg-en {
  position: absolute;
  z-index: 0;
  top: -18px;
  left: 50%;

  color: rgba(50, 72, 94, 0.055);

  font-family: "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0.08em;

  white-space: nowrap;

  transform: translateX(-50%);
  pointer-events: none;
}


/* 小英字 */

.top-equipment__label {
  position: relative;
  z-index: 2;

  margin: 0 0 7px;

  color: #b58d48;

  font-family: "Times New Roman", serif;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.35em;
}


/* タイトル */

.top-equipment__heading h2 {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #334f6c;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.top-equipment__accent {
  color: #647cab;
  font-size: 1.12em;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(87, 67, 35, 0.18);
}

/* 見出し囲み線 */

.top-equipment__heading::after {
  content: "";
  position: absolute;
  z-index: 1;

  top: 10px;
  right: 0;
  bottom: 0;
  left: 0;

  border: 1px solid rgba(219, 203, 176, 0.55);

  pointer-events: none;
}


/* ========================================
   設備一覧
======================================== */

.top-equipment__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  align-items: stretch;
}


/* ========================================
   カード
======================================== */

.top-equipment__item {
  position: relative;

  padding: 10px;

  box-sizing: border-box;

  background: #fff;

  border: 1px solid rgba(210, 216, 214, 0.9);

  box-shadow:
    0 7px 15px rgba(41, 53, 62, 0.13);
}


/* 内側 */

.top-equipment__item::before {
  content: "";
  position: absolute;

  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;

  border: 1px solid rgba(211, 218, 216, 0.55);

  pointer-events: none;
}


/* ========================================
   写真
======================================== */

.top-equipment__photo {
  position: relative;
  z-index: 1;

  overflow: hidden;
}

.top-equipment__photo img {
  display: block;

  width: 100%;
  height: 330px;

  object-fit: cover;
}


/* ========================================
   カード本文
======================================== */

.top-equipment__body {
  position: relative;
  z-index: 1;

  min-height: 150px;

  padding: 18px 18px 20px;

  box-sizing: border-box;

  background: #edf3f1;
}


/* 設備名 */

.top-equipment__body h3 {
  position: relative;

  margin: 0 0 15px;
  padding-bottom: 13px;

  color: #354f69;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;

  text-align: center;
}


/* 下線 */

.top-equipment__body h3::after {
  content: "";
  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  height: 1px;

  background: rgba(74, 94, 110, 0.45);
}

.top-equipment__body h3 span {
  font-size: 0.9em;
}


/* 説明 */

.top-equipment__body p {
  margin: 0;

  color: #70808b;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}


/* ========================================
   PC / SP
======================================== */

.sp_only {
  display: none;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-equipment {
    padding: 30px 8px 38px;

    background-size: 25px 25px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-equipment__heading {
    margin-bottom: 25px;
    padding: 8px 15px 7px;
  }

  .top-equipment__bg-en {
    top: -9px;

    font-size: 31px;
  }

  .top-equipment__label {
    margin-bottom: 5px;

    font-size: 6px;
  }

  .top-equipment__heading h2 {
    font-size: 25px;
    letter-spacing: 0.08em;
  }

  .top-equipment__heading::after {
    top: 5px;
  }


  /* ==============================
     1列
  ============================== */

  .top-equipment__list {
    display: block;
  }


  /* ==============================
     カード
  ============================== */

  .top-equipment__item {
    width: 100%;

    margin-bottom: 12px;
    padding: 6px;

    box-shadow:
      0 5px 11px rgba(41, 53, 62, 0.13);
  }

  .top-equipment__item:last-child {
    margin-bottom: 0;
  }

  .top-equipment__item::before {
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
  }


  /* 写真 */

  .top-equipment__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.55 / 1;

    object-fit: cover;
  }


  /* 本文 */

  .top-equipment__body {
    min-height: 0;

    padding: 10px 10px 12px;
  }

  .top-equipment__body h3 {
    margin-bottom: 9px;
    padding-bottom: 8px;

    font-size: 17px;
    line-height: 1.6;
  }

  .top-equipment__body p {
    font-size: 15px;
    line-height: 1.9;
  }


  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

}

/* ========================================
   Sterilization / 徹底した滅菌・感染予防対策
======================================== */

.top-sterilization {
  position: relative;
  padding: 65px 5% 75px;
  overflow: hidden;

  background-color: #f8f8f5;

  /* 斜線＋下に向かってベージュ */
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(112, 130, 143, 0.045) 0,
      rgba(112, 130, 143, 0.045) 1px,
      transparent 1px,
      transparent 7px
    ),
    linear-gradient(
      to bottom,
      #fafbfa 0%,
      #f7f7f3 50%,
      #eee9dd 100%
    );
}


/* 上部の淡い曲線装飾 */

.top-sterilization::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -5%;
  width: 95%;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(-3deg);
  pointer-events: none;
}

.top-sterilization__inner {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.top-sterilization__heading {
  position: relative;
  margin-bottom: 45px;
}

.top-sterilization__bg-en {
  position: absolute;
  z-index: 0;
  top: -33px;
  left: 170px;

  color: rgba(47, 70, 93, 0.055);

  font-family: "Times New Roman", serif;
  font-size: 82px;
  line-height: 1;
  letter-spacing: 0.05em;

  white-space: nowrap;
  pointer-events: none;
}


/* 小英字 */

.top-sterilization__label {
  position: relative;
  z-index: 2;

  margin: 0 0 30px 43%;

  color: #b38c49;

  font-family: "Times New Roman", serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.45em;
}


/* H2 */

.top-sterilization__heading h2 {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #1f405f;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 38px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.top-sterilization__accent {
  color: #647cab;
  font-size: 1.08em;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(87, 67, 35, 0.18);
}


/* ========================================
   メインレイアウト
======================================== */

.top-sterilization__content {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 42px;
  align-items: center;
}


/* ========================================
   写真
======================================== */

.top-sterilization__photo {
  position: relative;

  padding: 12px;

  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.9);

  border: 6px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;

  box-shadow:
    0 10px 24px rgba(43, 53, 60, 0.12),
    inset 0 0 0 1px rgba(190, 183, 166, 0.55);
}


/* 内側フレーム */

.top-sterilization__photo::before {
  content: "";
  position: absolute;

  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;

  border: 1px solid rgba(210, 203, 188, 0.8);
  border-radius: 21px;

  pointer-events: none;
}

.top-sterilization__photo img {
  position: relative;
  z-index: 1;

  display: block;

  width: 100%;
  height: auto;

  border-radius: 16px;

  object-fit: cover;
}


/* ========================================
   右側全体
======================================== */

.top-sterilization__list {
  padding: 20px;

  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.82);

  border-radius: 26px;

  box-shadow:
    0 8px 20px rgba(47, 57, 66, 0.05);
}


/* ========================================
   各項目
======================================== */

.top-sterilization__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;

  margin-bottom: 10px;
}

.top-sterilization__item:last-child {
  margin-bottom: 0;
}


/* ========================================
   アイコン側
======================================== */

.top-sterilization__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 118px;

  color: #557099;

  background:
    linear-gradient(
      135deg,
      #f4f5f5 0%,
      #ebedef 100%
    );

  border-radius: 14px;

  font-size: 19px;
}


/* 最後だけベージュ */

.top-sterilization__icon--gold {
  background:
    linear-gradient(
      135deg,
      #f8f4e8 0%,
      #f1eddf 100%
    );
}


/* ========================================
   テキスト側
======================================== */

.top-sterilization__item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 118px;

  padding: 18px 20px;

  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.82);

  border: 1px solid rgba(195, 201, 204, 0.65);
  border-radius: 14px;
}


/* 最後だけ淡いブルー */

.top-sterilization__item--clean
.top-sterilization__item-body {
  background:
    linear-gradient(
      to bottom,
      #f1f8f6 0%,
      #e6eef1 100%
    );
}


/* 見出し */

.top-sterilization__item-body h3 {
  margin: 0 0 10px;

  color: #254562;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}


/* 説明 */

.top-sterilization__item-body p {
  margin: 0;
  color: #657688;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-sterilization {
    padding: 38px 15px 40px;
  }


  .top-sterilization::before {
    top: -90px;
    left: -30%;
    width: 150%;
    height: 150px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-sterilization__heading {
    margin-bottom: 22px;
  }

  .top-sterilization__bg-en {
    top: -20px;
    left: 3px;

    font-size: 39px;
  }

  .top-sterilization__label {
    margin: 0 0 17px 33%;

    font-size: 7px;
    letter-spacing: 0.35em;
  }

  .top-sterilization__heading h2 {
    font-size: 23px;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }


  /* ==============================
     1カラム
  ============================== */

  .top-sterilization__content {
    display: block;
  }


  /* ==============================
     写真
  ============================== */

  .top-sterilization__photo {
    margin-bottom: 28px;

    padding: 7px;

    border-width: 4px;
    border-radius: 18px;

    box-shadow:
      0 8px 17px rgba(43, 53, 60, 0.12),
      inset 0 0 0 1px rgba(190, 183, 166, 0.55);
  }

  .top-sterilization__photo::before {
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;

    border-radius: 14px;
  }

  .top-sterilization__photo img {
    border-radius: 11px;
  }


  /* ==============================
     感染対策ボックス
  ============================== */

  .top-sterilization__list {
    padding: 9px;

    border-radius: 16px;
  }


  /* PCの横並びを解除 */

  .top-sterilization__item {
    display: block;

    margin-bottom: 7px;
  }


  /* アイコン */

  .top-sterilization__icon {
    min-height: 34px;

    border-radius: 9px 9px 6px 6px;

    font-size: 13px;
  }


  /* 本文 */

  .top-sterilization__item-body {
    min-height: 0;
    padding: 13px 11px 14px;
    border-radius: 6px 6px 9px 9px;
  }

  .top-sterilization__item-body h3 {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.6;
  }

  .top-sterilization__item-body p {
    font-size: 14px;
    line-height: 2;
  }


  .pc_only {
    display: none;
  }

}

/* ========================================
   Menu / 診療メニュー
======================================== */

.top-menu {
  position: relative;
  padding: 55px 20px 45px;
  overflow: hidden;

  background-color: #f8f7f2;

  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(105, 122, 137, 0.035) 0,
      rgba(105, 122, 137, 0.035) 1px,
      transparent 1px,
      transparent 7px
    ),
    linear-gradient(
      to bottom,
      #fafbfa 0%,
      #f8f7f2 55%,
      #eee7d9 100%
    );
}

.top-menu__inner {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.top-menu__heading {
  position: relative;
  margin-bottom: 38px;
  text-align: center;
}

.top-menu__bg-en {
  position: absolute;
  z-index: 0;
  top: -25px;
  left: 50%;

  color: rgba(44, 67, 90, 0.055);

  font-family: "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;

  transform: translateX(-50%);
  pointer-events: none;
}

.top-menu__label {
  position: relative;
  z-index: 2;

  margin: 0 0 9px;

  color: #9a7c50;

  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.25em;
}

.top-menu__heading h2 {
  position: relative;
  z-index: 2;

  margin: 0 0 13px;

  color: #315171;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.top-menu__lead {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #687989;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.top-menu__lead span {
  padding-bottom: 3px;
  border-bottom: 1px solid #73869a;
}


/* ========================================
   メニューボックス
======================================== */

.top-menu__box {
  position: relative;

  margin-bottom: 20px;
  padding: 25px 30px 24px;

  box-sizing: border-box;

  background-color: rgba(255, 255, 255, 0.94);

  /* 方眼 */
  background-image:
    linear-gradient(
      rgba(80, 100, 118, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(80, 100, 118, 0.04) 1px,
      transparent 1px
    );

  background-size: 8px 8px;

  border: 1px solid rgba(219, 203, 176, 0.45);

  box-shadow:
    0 10px 18px rgba(50, 58, 65, 0.11);
}


/* ========================================
   カテゴリ見出し
======================================== */

.top-menu__box-heading {
  display: flex;
  align-items: center;
  gap: 24px;

  padding-bottom: 18px;
  margin-bottom: 15px;

  border-bottom: 1px solid rgba(219, 203, 176, 0.55);
}


/* アイコン */

.top-menu__icon {
  display: flex;
  flex: 0 0 75px;
  align-items: center;
  justify-content: center;

  width: 75px;
  height: 75px;

  padding: 8px;

  box-sizing: border-box;

  background: #fff;

  border: 1px solid rgba(219, 203, 176, 0.5);

  box-shadow:
    0 6px 11px rgba(44, 54, 64, 0.14);
}

.top-menu__icon img {
  display: block;
  width: 100%;
  height: auto;
}


/* タイトル */

.top-menu__box-title h3 {
  margin: 0 0 9px;

  color: #2e4a67;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.top-menu__box-title p {
  margin: 0;

  color: #75818d;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 14px;
  line-height: 1.9;
}


/* ========================================
   診療リンク一覧
======================================== */

.top-menu__links {
  padding: 3px 10px 0;
}

.top-menu__links--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
}

.top-menu__links--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 45px;
}


/* 各リンク */

.top-menu__links a {
  position: relative;

  display: block;

  padding: 4px 10px 4px 19px;

  color: #526a80;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.035em;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


/* ● */

.top-menu__links a::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 9px;
  height: 9px;

  background: #8393a5;

  border-radius: 50%;

  transform: translateY(-50%);

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* ========================================
   Hover
======================================== */

@media (hover: hover) {

  .top-menu__links a:hover {
    color: #a27d3e;
    transform: translateX(5px);
  }

  .top-menu__links a:hover::before {
    background: #b58d43;

    transform:
      translateY(-50%)
      scale(1.25);

    box-shadow:
      0 0 0 4px rgba(181, 141, 67, 0.12);
  }

}


/* ========================================
   注釈
======================================== */

.top-menu__note {
  margin: 22px 0 0;

  color: #7b8793;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 12px;
  line-height: 1.8;

  text-align: right;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-menu {
    padding: 30px 7px 32px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-menu__heading {
    padding: 0 9px;
    margin-bottom: 24px;
  }

  .top-menu__bg-en {
    top: -13px;
    font-size: 38px;
  }

  .top-menu__label {
    margin-bottom: 6px;

    font-size: 7px;
  }

  .top-menu__heading h2 {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .top-menu__lead {
    font-size: 15px;
    line-height: 2;
  }


  /* ==============================
     ボックス
  ============================== */

  .top-menu__box {
    margin-bottom: 13px;
    padding: 15px 11px 14px;
  }


  /* カテゴリ見出し */

  .top-menu__box-heading {
    display: block;

    padding-bottom: 13px;
    margin-bottom: 10px;

    text-align: center;
  }


  /* アイコン */

  .top-menu__icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 11px;
  }


  /* タイトル */

  .top-menu__box-title h3 {
    margin-bottom: 7px;
    font-size: 20px;
    line-height: 1.6;
  }

  .top-menu__box-title p {
    font-size: 14px;
    line-height: 1.9;
  }


  /* ==============================
     リンク一覧
  ============================== */

  .top-menu__links,
  .top-menu__links--2col,
  .top-menu__links--3col {
    display: block;
    padding: 0;
    margin-left: 10px;
  }

  .top-menu__links a {
    padding: 3px 5px 3px 17px;
    font-size: 15px;
    line-height: 1.75;
  }

  .top-menu__links a::before {
    width: 8px;
    height: 8px;
  }

  /* 注釈 */
  .top-menu__note {
    margin: 17px 5px 0;
    font-size: 12px;
    line-height: 1.9;
    text-align: left;
  }

  .pc_only {
    display: none;
  }

}

/* ========================================
   First Visit / 初めての方へ
======================================== */

.top-firstvisit {
  position: relative;
  padding: 55px 20px 65px;
  overflow: hidden;
  background-color: #fff;

  /* 方眼背景 */
  background-image:
    linear-gradient(
      rgba(219, 203, 176, 0.13) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(219, 203, 176, 0.13) 1px,
      transparent 1px
    );

  background-size: 38px 38px;
}

.top-firstvisit__inner {
  max-width: 1040px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.top-firstvisit__heading {
  position: relative;
  margin-bottom: 55px;
  text-align: center;
}

.top-firstvisit__bg-en {
  position: absolute;
  z-index: 0;
  top: -28px;
  left: 50%;

  color: rgba(45, 68, 91, 0.055);

  font-family: "Times New Roman", serif;
  font-size: 74px;
  line-height: 1;
  letter-spacing: 0.04em;

  white-space: nowrap;

  transform: translateX(-50%);
  pointer-events: none;
}

.top-firstvisit__label {
  position: relative;
  z-index: 2;

  margin: 0 0 10px;

  color: #ad8849;

  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.35em;
}

.top-firstvisit__heading h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #264561;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.top-firstvisit__diamond {
  position: relative;
  z-index: 2;

  display: block;

  width: 7px;
  height: 7px;

  margin: 17px auto;

  background: #b48b43;

  transform: rotate(45deg);
}

.top-firstvisit__lead {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #6c7b89;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}


/* ========================================
   STEP一覧
======================================== */

.top-firstvisit__steps {
  position: relative;

  padding-left: 25px;
}


/* 左側の縦ライン */

.top-firstvisit__steps::before {
  content: "";
  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 1px;

  background: rgba(181, 141, 67, 0.35);
}


/* ========================================
   各STEP
======================================== */

.top-firstvisit__step {
  position: relative;

  display: grid;
  grid-template-columns: 80px 55px 1fr;
  gap: 18px;
  align-items: center;

  min-height: 105px;

  padding: 18px 0;

  border-bottom: 1px solid rgba(88, 111, 132, 0.16);
}

.top-firstvisit__step:last-child {
  border-bottom: none;
}


/* 左のひし形 */

.top-firstvisit__timeline-diamond {
  position: absolute;

  top: 50%;
  left: -29px;

  width: 7px;
  height: 7px;

  background: #b58d43;

  transform:
    translateY(-50%)
    rotate(45deg);
}


/* ========================================
   STEP番号
======================================== */

.top-firstvisit__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 78px;
  height: 62px;

  box-sizing: border-box;

  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f8fafc 55%,
    #e7eef5 100%
  );

  border: 1px solid rgba(219, 203, 176, 0.65);

  box-shadow:
    0 6px 12px rgba(40, 51, 61, 0.12);
}

.top-firstvisit__number small {
  margin-bottom: 2px;

  color: #70879c;

  font-family: "Times New Roman", serif;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.3em;
}

.top-firstvisit__number strong {
  color: #244663;

  font-family: "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}


/* ========================================
   アイコン
======================================== */

.top-firstvisit__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  color: #597397;

  background: #fff;

  border: 1px solid rgba(219, 203, 176, 0.5);
  border-radius: 50%;

  box-shadow:
    0 5px 12px rgba(42, 53, 63, 0.13);

  font-size: 16px;
}


/* ========================================
   STEP本文
======================================== */

.top-firstvisit__body h3 {
  margin: 0 0 9px;

  color: #284761;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.top-firstvisit__body p {
  margin: 0;

  color: #667989;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}


/* ========================================
   下部メッセージ
======================================== */

.top-firstvisit__message {
  position: relative;

  max-width: 700px;

  margin: 45px auto 0;
  padding: 27px 25px;

  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.9);

  border: 1px solid rgba(219, 203, 176, 0.7);
  border-top: 2px solid #b78d43;

  text-align: center;
}

.top-firstvisit__message-diamond {
  position: absolute;

  top: -5px;
  left: 50%;

  width: 8px;
  height: 8px;

  background: #b58d43;

  transform:
    translateX(-50%)
    rotate(45deg);
}

.top-firstvisit__message p {
  margin: 0;
  color: #405c75;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-firstvisit {
    padding: 30px 8px 35px;

    background-size: 30px 30px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-firstvisit__heading {
    margin-bottom: 35px;
  }

  .top-firstvisit__bg-en {
    top: -10px;
    left: 50%;

    font-size: 40px;
  }

  .top-firstvisit__label {
    margin-bottom: 8px;

    font-size: 7px;
  }

  .top-firstvisit__heading h2 {
    font-size: 25px;
  }

  .top-firstvisit__diamond {
    width: 6px;
    height: 6px;

    margin: 13px auto;
  }

  .top-firstvisit__lead {
    font-size: 15px;
    line-height: 2;
    text-align: left;
  }


  /* ==============================
     STEP一覧
  ============================== */

  .top-firstvisit__steps {
    padding-left: 0;
  }

  .top-firstvisit__steps::before {
    display: none;
  }


  /* ==============================
     STEP
  ============================== */

  .top-firstvisit__step {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0 10px;

    min-height: 0;

    padding: 17px 0;
  }

  .top-firstvisit__timeline-diamond {
    display: none;
  }


  /* STEP番号 */

  .top-firstvisit__number {
    grid-column: 1;
    grid-row: 1;

    width: 46px;
    height: 49px;

    align-self: start;
  }

  .top-firstvisit__number small {
    font-size: 6px;
    letter-spacing: 0.2em;
  }

  .top-firstvisit__number strong {
    font-size: 20px;
  }


  /* アイコン */
  .top-firstvisit__icon {
    grid-column: 1;
    grid-row: 2;
    width: 34px;
    height: 34px;
    margin: 8px auto 0;
    font-size: 15px;
  }


  /* 本文 */

  .top-firstvisit__body {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .top-firstvisit__body h3 {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.7;
  }

  .top-firstvisit__body p {
    font-size: 14px;
    line-height: 2;
  }


  /* ==============================
     下部メッセージ
  ============================== */

  .top-firstvisit__message {
    width: 100%;

    margin-top: 24px;
    padding: 18px 12px;

    border-top-width: 1px;
  }

  .top-firstvisit__message p {
    font-size: 15px;
    line-height: 2;
  }

}

/* ========================================
   Doctor / ドクター紹介
======================================== */

.top-doctor {
  position: relative;
  padding: 50px 20px 65px;
  overflow: hidden;

  background:
    linear-gradient(
      168deg,
      #ffffff 0%,
      #ffffff 24%,
      #f6f7f6 24.1%,
      #efede6 100%
    );

  background-color: #f5f4ef;
}


/* 斜線 */

.top-doctor::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(107, 121, 132, 0.025) 0,
      rgba(107, 121, 132, 0.025) 1px,
      transparent 1px,
      transparent 7px
    );

  pointer-events: none;
}


.top-doctor__inner {
  position: relative;
  z-index: 1;

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


/* ========================================
   見出し
======================================== */

.top-doctor__heading {
  position: relative;

  margin-bottom: 30px;
}


/* 背景英字 */

.top-doctor__bg-en {
  position: absolute;
  z-index: 0;

  top: -32px;
  left: 100px;

  color: rgba(45, 68, 91, 0.05);

  font-family: "Times New Roman", serif;
  font-size: 76px;
  line-height: 1;
  letter-spacing: 0.05em;

  pointer-events: none;
}


/* DOCTOR */

.top-doctor__label {
  position: relative;
  z-index: 2;
  margin: 0 0 7px 240px;
  color: #b38c48;
  font-family: "Times New Roman", serif;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.35em;
}


/* タイトル */

.top-doctor__heading h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #263f5d;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}


/* 導入 */

.top-doctor__lead {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #667788;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}


/* ========================================
   大きな囲み
======================================== */

.top-doctor__box {
  padding: 32px;

  box-sizing: border-box;

  background-color: rgba(255, 255, 255, 0.93);

  background-image:
    linear-gradient(
      rgba(81, 101, 120, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(81, 101, 120, 0.04) 1px,
      transparent 1px
    );

  background-size: 8px 8px;

  border: 1px solid rgba(219, 203, 176, 0.55);

  box-shadow:
    0 10px 22px rgba(41, 50, 58, 0.1);
}


/* ========================================
   写真＋メッセージ
======================================== */

.top-doctor__main {
  display: grid;

  grid-template-columns: 39% 1fr;

  gap: 42px;

  align-items: start;

  margin-bottom: 32px;
}


/* ========================================
   写真
======================================== */

.top-doctor__photo {
  position: relative;

  padding: 8px;

  background: #fff;

  box-shadow:
    0 7px 15px rgba(41, 52, 61, 0.15);
}


/* 後ろのゴールド枠 */

.top-doctor__photo::after {
  content: "";

  position: absolute;
  z-index: -1;

  top: 11px;
  left: 11px;

  width: 100%;
  height: 100%;

  border: 1px solid rgba(184, 146, 75, 0.6);
}


.top-doctor__photo img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}


/* ========================================
   院長名
======================================== */

.top-doctor__name {
  padding-bottom: 14px;

  margin-bottom: 19px;

  border-bottom: 1px solid rgba(219, 203, 176, 0.55);
}


.top-doctor__name span {
  display: block;

  margin-bottom: 6px;

  color: #b18b49;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 10px;
  letter-spacing: 0.18em;
}


.top-doctor__name h3 {
  margin: 0;

  color: #3e3d3b;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 27px;
  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.12em;
}


/* ========================================
   メッセージ
======================================== */

.top-doctor__message h4 {
  margin: 0 0 17px;

  color: #294966;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.07em;
}


.top-doctor__message p {
  margin: 0 0 13px;
  color: #687888;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.035em;
}


.top-doctor__message p:last-child {
  margin-bottom: 0;
}


/* ========================================
   強調メッセージ
======================================== */

.top-doctor__catch {
  margin-top: 20px;

  padding: 16px 20px;

  color: #294866;

  background:
    linear-gradient(
      to right,
      #f5f8fb 0%,
      #eef3f8 100%
    );

  border-left: 2px solid #b79045;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;

  text-align: center;

  letter-spacing: 0.12em;
}


/* ========================================
   下部3カードエリア
======================================== */

.top-doctor__details {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  padding: 20px;

  background: #8796aa;
}


/* ========================================
   各カード
======================================== */

.top-doctor__detail {
  min-height: 210px;

  padding: 20px;

  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.94);
}


/* タイトル */

.top-doctor__detail h4 {
  margin: 0 0 14px;
  color: #304c68;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.05em;
}


/* アイコン */

.top-doctor__detail h4 i {
  margin-right: 8px;

  color: #b48c43;

  font-size: 14px;
}


/* 本文 */

.top-doctor__detail p,
.top-doctor__detail li {
  color: #6d7a87;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 14px;
  line-height: 2;
}


/* 経歴 */

.top-doctor__detail ul {
  margin: 0;
  padding: 0;

  list-style: none;
}


.top-doctor__detail li {
  position: relative;

  margin-bottom: 5px;

  padding-left: 12px;
}


.top-doctor__detail li:last-child {
  margin-bottom: 0;
}


.top-doctor__detail li::before {
  content: "・";

  position: absolute;
  top: 0;
  left: 0;

  color: #b16d69;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-doctor {
    padding: 28px 8px 35px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-doctor__heading {
    margin-bottom: 22px;
  }


  .top-doctor__bg-en {
    top: -11px;
    left: 35px;

    font-size: 40px;
  }


  .top-doctor__label {
    margin: 0 0 7px 55px;
    font-size: 8px;
  }


  .top-doctor__heading h2 {
    margin-bottom: 8px;
    font-size: 25px;
  }


  .top-doctor__lead {
    font-size: 15px;
    line-height: 2;
    margin: 0 10px;
  }


  /* ==============================
     大枠
  ============================== */

  .top-doctor__box {
    padding: 12px;
  }


  /* ==============================
     縦並び
  ============================== */

  .top-doctor__main {
    display: block;

    margin-bottom: 14px;
  }


  /* 写真 */

  .top-doctor__photo {
    margin-bottom: 18px;

    padding: 6px;
  }


  .top-doctor__photo::after {
    top: 7px;
    left: 7px;
  }


  /* ==============================
     名前
  ============================== */

  .top-doctor__name {
    margin-bottom: 14px;
    padding-bottom: 10px;
  }


  .top-doctor__name span {
    margin-bottom: 4px;
    font-size: 15px;
  }


  .top-doctor__name h3 {
    font-size: 23px;
  }


  /* ==============================
     メッセージ
  ============================== */

  .top-doctor__message h4 {
    margin-bottom: 11px;
    font-size: 17px;
  }


  .top-doctor__message p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 2;
  }


  /* ==============================
     キャッチ
  ============================== */

  .top-doctor__catch {
    margin-top: 14px;
    padding: 13px 8px;
    font-size: 15px;
  }


  /* ==============================
     下部カード
  ============================== */

  .top-doctor__details {
    display: block;

    padding: 8px;
  }


  .top-doctor__detail {
    min-height: 0;

    margin-bottom: 7px;

    padding: 13px 11px;
  }


  .top-doctor__detail:last-child {
    margin-bottom: 0;
  }


  .top-doctor__detail h4 {
    margin-bottom: 9px;
    font-size: 17px;
  }


  .top-doctor__detail h4 i {
    margin-right: 5px;
    font-size: 14px;
  }


  .top-doctor__detail p,
  .top-doctor__detail li {
    font-size: 14px;
    line-height: 1.95;
  }

}

/* ========================================
   Access / アクセス・診療時間
======================================== */

.top-access {
  position: relative;
  padding: 70px 5% 65px;
  overflow: hidden;

  background:
    linear-gradient(
      to bottom,
      #f7fbf7 0%,
      #f3faf5 50%,
      #f1f8f2 100%
    );
}


/* ========================================
   背景英字 SURVEY
======================================== */

.top-access__bg-survey {
  position: absolute;
  z-index: 0;

  top: 15px;
  right: -20px;

  color: rgba(94, 181, 126, 0.07);

  font-family: "Times New Roman", serif;
  font-size: 110px;
  line-height: 1;
  letter-spacing: 0.04em;

  white-space: nowrap;

  pointer-events: none;
}


/* ========================================
   外枠
======================================== */

.top-access__inner {
  position: relative;
  z-index: 2;
  max-width: 1170px;
  margin: 0 auto;
  padding: 45px 0 75px;
  border: 1px solid rgba(132, 197, 151, 0.48);
  background-color: #ffffff8a;
}


/* ========================================
   見出し
======================================== */

.top-access__heading {
  position: relative;

  margin-bottom: 40px;

  text-align: center;
}


/* 背景 ACCESS */

.top-access__bg-access {
  position: absolute;
  z-index: 0;

  top: -25px;
  left: 50%;

  color: rgba(43, 68, 92, 0.045);

  font-family: "Times New Roman", serif;
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.05em;

  white-space: nowrap;

  transform: translateX(-50%);

  pointer-events: none;
}


/* 小見出し */

.top-access__label {
  position: relative;
  z-index: 2;

  margin: 0 0 10px;

  color: #b28b45;

  font-family: "Times New Roman", serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
}


/* H2 */

.top-access__heading h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #294968;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}


/* 見出し下ライン */

.top-access__heading-line {
  position: relative;
  z-index: 2;

  display: block;

  width: 1px;
  height: 35px;

  margin: 13px auto 0;

  background: linear-gradient(
    to bottom,
    rgba(181, 141, 67, 0.75),
    rgba(181, 141, 67, 0.05)
  );
}


/* ========================================
   メイン
======================================== */

.top-access__content {
  display: grid;

  grid-template-columns: 55% 1fr;

  gap: 55px;

  align-items: center;
}


/* ========================================
   Google Map
======================================== */

.top-access__map {
  width: 100%;
  height: 355px;

  overflow: hidden;
}

.top-access__map iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}


/* ========================================
   右側
======================================== */

.top-access__info {
  padding-right: 28px;
}


/* ========================================
   診療時間
======================================== */

.top-access__schedule {
  overflow: hidden;

  margin-bottom: 22px;

  background: #fff;

  border: 1px solid rgba(219, 203, 176, 0.65);
  border-radius: 15px;

  box-shadow:
    0 4px 10px rgba(45, 55, 65, 0.04);
}


.top-access__schedule h3 {
  margin: 0;

  padding: 10px;

  color: #2c4966;

  background:
    linear-gradient(
      to bottom,
      #fffefa,
      #faf8f2
    );

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;

  text-align: center;
}


/* ========================================
   診療時間テーブル
======================================== */

.top-access__table-wrap {
  width: 100%;
  overflow-x: auto;
}


.top-access__schedule table {
  width: 100%;

  border-collapse: collapse;

  table-layout: fixed;
}


.top-access__schedule th,
.top-access__schedule td {
  height: 36px;

  padding: 3px;

  box-sizing: border-box;

  border-right: 1px solid rgba(190, 198, 205, 0.55);
  border-bottom: 1px solid rgba(190, 198, 205, 0.55);

  color: #606870;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 11px;

  text-align: center;
}


.top-access__schedule tr > *:last-child {
  border-right: none;
}


.top-access__schedule thead th {
  color: #fff;
  background: #526b91;
  font-size: 12px;
  font-weight: 500;
}


.top-access__schedule thead th:first-child {
  width: 30%;
  background: #526b91;
}


.top-access__schedule tbody th {
  color: #34506c;
  background: #f5f6f8;
  font-weight: 600;
  font-size: 14px;
}


.top-access__schedule tbody td {
  background: #fff;
}


.top-access__schedule tbody td:last-child {
  color: #88919a;

  background: #f5f5f5;
}


/* 休診 */

.top-access__holiday {
  margin: 0;

  padding: 7px 10px;

  color: #696b6c;

  background: #fffdf8;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 10px;
  line-height: 1.5;

  text-align: center;
}


/* ========================================
   住所
======================================== */

.top-access__address {
  display: flex;
  gap: 10px;
  margin: 0 0 17px;
  color: #69786f;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 1.9;
}


.top-access__address i {
  flex: 0 0 auto;

  margin-top: 5px;

  color: #bb934d;

  font-size: 14px;
}


/* ========================================
   TEL / WEB
======================================== */

.top-access__buttons {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

  margin-bottom: 8px;
}


/* 共通 */

.top-access__tel,
.top-access__web {
  min-height: 62px;
  box-sizing: border-box;
  border: 1px solid rgba(219, 203, 176, 0.7);
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* TEL */

.top-access__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2e4c69;
}


.top-access__tel span {
  color: #637895;
  font-family: "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.15em;
}


.top-access__tel span i {
  margin-right: 6px;
}


.top-access__tel strong {
  font-family: "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}


/* WEB */

.top-access__web {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #304b67;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 14px;
  letter-spacing: 0.09em;
}


/* Hover */

@media (hover: hover) {

  .top-access__tel:hover,
  .top-access__web:hover {
    transform: translateY(-3px);

    background: #fff;

    box-shadow:
      0 7px 14px rgba(45, 58, 67, 0.1);
  }

}


/* ========================================
   駅
======================================== */

.top-access__station {
  margin: 0;
  color: #69786f;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-access {
    padding: 32px 20px 38px;
  }


  /* 背景 SURVEY */

  .top-access__bg-survey {
    top: 4px;
    right: -13px;

    font-size: 62px;
  }


  /* 外枠 */

  .top-access__inner {
    padding: 26px 0 34px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-access__heading {
    margin-bottom: 20px;
  }


  .top-access__bg-access {
    top: 4px;

    font-size: 39px;
  }


  .top-access__label {
    margin-bottom: 10px;

    font-size: 7px;
  }


  .top-access__heading h2 {
    font-size: 25px;
    letter-spacing: 0.08em;
  }


  .top-access__heading-line {
    height: 30px;

    margin-top: 12px;
  }


  /* ==============================
     1カラム
  ============================== */

  .top-access__content {
    display: block;
  }


  /* ==============================
     MAP
  ============================== */

  .top-access__map {
    height: 195px;

    margin-bottom: 52px;
  }


  /* ==============================
     情報
  ============================== */

  .top-access__info {
    padding: 0 15px;
  }


  /* ==============================
     診療時間
  ============================== */

  .top-access__schedule {
    margin-bottom: 22px;

    border-radius: 13px;
  }


  .top-access__schedule h3 {
    padding: 8px;
    font-size: 13px;
  }


  .top-access__schedule th,
  .top-access__schedule td {
    height: 30px;
    padding: 2px;
    font-size: 8px;
  }

  .top-access__schedule tbody th {
  font-size: 12px;
}


  .top-access__schedule thead th {
    font-size: 9px;
  }


  .top-access__schedule thead th:first-child {
    width: 34%;
  }


  .top-access__holiday {
    padding: 6px;
    font-size: 12px;
  }


  /* ==============================
     住所
  ============================== */

  .top-access__address {
    margin-bottom: 15px;
    gap: 7px;
    font-size: 14px;
    line-height: 2;
  }


  .top-access__address i {
    margin-top: 4px;
    font-size: 14px;
  }


  /* ==============================
     TEL / WEB
  ============================== */

  .top-access__buttons {
    display: block;
    margin-bottom: 7px;
  }


  .top-access__tel,
  .top-access__web {
    width: 82%;
    min-height: 48px;
    margin: 0 auto 10px;
  }


  .top-access__tel span {
    font-size: 14px;
  }


  .top-access__tel strong {
    font-size: 18px;
  }


  .top-access__web {
    font-size: 14px;
  }


  /* 駅 */

  .top-access__station {
    font-size: 13px;
    text-align: center;
  }

}

/* ========================================
   FAQ / よくあるご質問
======================================== */

.top-faq {
  position: relative;
  padding: 65px 20px 75px;
  overflow: hidden;
  background-color: #fff;

  /* 方眼背景 */
  background-image:
    linear-gradient(
      rgba(219, 203, 176, 0.13) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(219, 203, 176, 0.13) 1px,
      transparent 1px
    );

  background-size: 38px 38px;
}

.top-faq__inner {
  max-width: 1240px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.top-faq__heading {
  position: relative;
  margin-bottom: 48px;
  text-align: center;
}


/* 背景英字 */

.top-faq__bg-en {
  position: absolute;
  z-index: 0;
  top: -28px;
  left: 50%;

  color: rgba(47, 68, 88, 0.055);

  font-family: "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;

  transform: translateX(-50%);

  pointer-events: none;
}


/* FAQ */

.top-faq__label {
  position: relative;
  z-index: 2;

  margin: 0 0 10px;

  color: #b28b45;

  font-family: "Times New Roman", serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
}


/* 見出し */

.top-faq__heading h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #173858;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}


/* 見出し下装飾 */

.top-faq__heading-decoration {
  position: relative;

  width: 88px;
  height: 14px;

  margin: 15px auto 14px;
}

.top-faq__heading-decoration::before {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;
  left: 0;

  height: 1px;

  background: rgba(219, 203, 176, 0.75);
}

.top-faq__heading-decoration span {
  position: absolute;
  z-index: 2;

  top: 50%;
  left: 50%;

  width: 8px;
  height: 8px;

  background: #b58c43;

  transform:
    translate(-50%, -50%)
    rotate(45deg);
}


/* 導入 */

.top-faq__lead {
  margin: 0;
  color: #68798a;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}


/* ========================================
   FAQ一覧
======================================== */

.top-faq__list {
  background-color: rgba(255, 255, 255, 0.96);

  background-image:
    linear-gradient(
      rgba(78, 99, 118, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(78, 99, 118, 0.04) 1px,
      transparent 1px
    );

  background-size: 8px 8px;

  border: 1px solid rgba(219, 203, 176, 0.6);

  box-shadow:
    0 12px 22px rgba(43, 52, 60, 0.11);
}


/* ========================================
   FAQ項目
======================================== */

.top-faq__item {
  border-bottom: 1px solid rgba(219, 203, 176, 0.55);
}

.top-faq__item:last-child {
  border-bottom: none;
}


/* デフォルト三角を消す */

.top-faq__question {
  list-style: none;
}

.top-faq__question::-webkit-details-marker {
  display: none;
}


/* ========================================
   質問
======================================== */

.top-faq__question {
  position: relative;

  display: grid;
  grid-template-columns: 38px 1fr 24px;
  gap: 16px;
  align-items: center;

  min-height: 82px;

  padding: 15px 22px;

  box-sizing: border-box;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}


/* Q */

.top-faq__q {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #35465d 0%,
      #0d2c4c 100%
    );

  font-family: "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;

  box-shadow:
    0 3px 7px rgba(36, 47, 57, 0.12);
}


/* 質問文 */

.top-faq__question-text {
  color: #173858;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}


/* ========================================
   矢印
======================================== */

.top-faq__arrow {
  position: relative;

  display: block;

  width: 12px;
  height: 12px;

  margin-left: auto;

  border-right: 1px solid #577291;
  border-bottom: 1px solid #577291;

  transform: rotate(45deg);

  transition:
    transform 0.3s ease,
    top 0.3s ease;
}


/* 開いたとき */

.top-faq__item[open] .top-faq__arrow {
  transform: rotate(225deg);
}


/* ========================================
   回答
======================================== */

.top-faq__answer {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;

  padding: 4px 22px 24px;

  box-sizing: border-box;
}


/* A */

.top-faq__a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  color: #fff;

  background: #b38d48;

  font-family: "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
}


/* 回答本文 */

.top-faq__answer p {
  margin: 2px 0 0;
  color: #657789;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}


/* ========================================
   Hover
======================================== */

@media (hover: hover) {

  .top-faq__question:hover {
    background: rgba(245, 242, 235, 0.55);
  }

  .top-faq__question:hover .top-faq__q {
    background:
      linear-gradient(
        135deg,
        #b99a5d 0%,
        #9c793a 100%
      );
  }

  .top-faq__question:hover .top-faq__arrow {
    border-color: #b28b45;
  }

}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-faq {
    padding: 40px 12px 45px;

    background-size: 30px 30px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-faq__heading {
    margin-bottom: 50px;
  }

  .top-faq__bg-en {
    top: -15px;

    font-size: 45px;
  }

  .top-faq__label {
    margin-bottom: 9px;

    font-size: 7px;
  }

  .top-faq__heading h2 {
    font-size: 25px;
    line-height: 1.6;
  }

  .top-faq__heading-decoration {
    width: 75px;

    margin-top: 13px;
    margin-bottom: 16px;
  }

  .top-faq__heading-decoration span {
    width: 7px;
    height: 7px;
  }

  .top-faq__lead {
    font-size: 14px;
    line-height: 2.2;

    text-align: left;
  }


  /* ==============================
     FAQ
  ============================== */

  .top-faq__question {
    grid-template-columns: 32px 1fr 18px;
    gap: 12px;

    min-height: 0;

    padding: 17px 15px;
  }


  /* Q */

  .top-faq__q {
    width: 32px;
    height: 32px;

    font-size: 15px;
  }


  /* 質問 */

  .top-faq__question-text {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }


  /* 矢印 */

  .top-faq__arrow {
    width: 10px;
    height: 10px;
  }


  /* ==============================
     回答
  ============================== */

  .top-faq__answer {
    grid-template-columns: 32px 1fr;
    gap: 12px;

    padding:
      0
      15px
      19px;
  }

  .top-faq__a {
    width: 32px;
    height: 32px;

    font-size: 15px;
  }

  .top-faq__answer p {
    font-size: 14px;
    line-height: 2;
  }

}

/* ========================================
   Contact / 三宮で歯医者をお探しなら
======================================== */

.top-contact {
  position: relative;
  min-height: 710px;
  padding: 72px 20px;
  box-sizing: border-box;
  overflow: hidden;
  background: #f5f5f2;
}


/* ========================================
   背景画像
======================================== */

.top-contact__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/* 左：三宮駅 */

.top-contact__bg--left {
  left: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.62),
      rgba(255, 255, 255, 0.62)
    ),
    url("../images/top/information01.png");
}


/* 右：診療風景 */

.top-contact__bg--right {
  right: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.38),
      rgba(255, 255, 255, 0.38)
    ),
    url("../images/top/medical-room.png");
}


/* ========================================
   中央CTA
======================================== */

.top-contact__inner {
  position: relative;
  z-index: 2;

  width: 710px;
  min-height: 570px;

  margin: 0 auto;
  padding: 52px 38px 45px;

  box-sizing: border-box;

  background: rgba(119, 136, 159, 0.95);

  text-align: center;
}


/* ========================================
   背景 CONTACT
======================================== */

.top-contact__bg-en {
  position: absolute;
  top: 33px;
  left: 50%;

  color: rgba(255, 255, 255, 0.11);

  font-family: "Times New Roman", serif;
  font-size: 75px;
  line-height: 1;
  letter-spacing: 0.04em;

  white-space: nowrap;

  transform: translateX(-50%);

  pointer-events: none;
}


/* 背景英字横線 */

.top-contact__inner::before {
  content: "";

  position: absolute;
  top: 55px;
  right: 38px;
  left: 38px;

  height: 15px;

  background: rgba(255, 255, 255, 0.055);
}


/* ========================================
   CONTACT
======================================== */

.top-contact__label {
  position: relative;
  z-index: 2;

  margin: 0 0 23px;

  color: #e3c37d;

  font-family: "Times New Roman", serif;
  font-size: 12px;
  line-height: 1;

  letter-spacing: 0.45em;
}


/* ========================================
   メイン見出し
======================================== */

.top-contact__title {
  position: relative;
  z-index: 2;

  margin: 0 0 25px;

  color: #fff;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 34px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
}


/* ゴールドマーカー */

.top-contact__title span {
  padding: 0 10px 3px;

  background:
    linear-gradient(
      transparent 64%,
      rgba(192, 151, 69, 0.88) 64%
    );

  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}


/* ========================================
   キャッチコピー
======================================== */

.top-contact__catch {
  margin-bottom: 33px;
  padding: 17px 25px;

  background: #fff;

  border: 1px solid rgba(255, 255, 255, 0.8);

  box-shadow:
    inset 0 0 0 5px #fff,
    inset 0 0 0 6px rgba(104, 124, 148, 0.35);
}


.top-contact__catch p {
  margin: 0;

  color: #60728a;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}


/* ========================================
   説明
======================================== */

.top-contact__text {
  margin-bottom: 30px;

  color: #fff;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;
}


.top-contact__text p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}


.top-contact__access {
  font-weight: 500;
}


.top-contact__access i {
  margin-right: 2px;
}


/* ========================================
   CTAボタン
======================================== */

.top-contact__buttons {
  display: flex;
  justify-content: center;

  gap: 18px;
}


.top-contact__btn {
  position: relative;

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

  gap: 12px;

  width: 245px;
  min-height: 56px;

  padding: 10px 18px;

  box-sizing: border-box;

  color: #173858;

  background: #fff;

  border: 2px solid #d4ae68;

  box-shadow:
    inset 0 0 0 4px #fff,
    inset 0 0 0 5px rgba(212, 174, 104, 0.35);

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.07em;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}


.top-contact__btn i {
  color: #123a60;

  font-size: 14px;
}


/* ========================================
   Hover
======================================== */

@media (hover: hover) {

  .top-contact__btn:hover {
    transform: translateY(-4px);

    background: #fffdf8;

    box-shadow:
      inset 0 0 0 4px #fff,
      inset 0 0 0 5px rgba(212, 174, 104, 0.6),
      0 8px 15px rgba(34, 47, 60, 0.2);
  }

}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .top-contact {
    min-height: 0;

    padding: 26px 17px;

    background: #f5f5f2;
  }


  /* ==============================
     背景画像
  ============================== */

  .top-contact__bg {
    right: 0;
    left: 0;

    width: 100%;
    height: 50%;
  }


  .top-contact__bg--left {
    top: 0;
    bottom: auto;

    background-position: center top;
  }


  .top-contact__bg--right {
    top: auto;
    bottom: 0;

    background-position: center bottom;
  }


  /* ==============================
     CTA本体
  ============================== */

  .top-contact__inner {
    width: 100%;
    min-height: 0;

    padding: 40px 20px 55px;

    background: rgba(119, 136, 159, 0.96);
  }


  /* 背景英字 */

  .top-contact__bg-en {
    top: 29px;

    font-size: 49px;
  }


  .top-contact__inner::before {
    top: 39px;
    right: 20px;
    left: 20px;

    height: 19px;
  }


  /* CONTACT */

  .top-contact__label {
    margin-bottom: 20px;

    font-size: 9px;
  }


  /* ==============================
     見出し
  ============================== */

  .top-contact__title {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }


  .top-contact__title span {
    padding-right: 5px;
    padding-left: 5px;
  }


  /* ==============================
     キャッチ
  ============================== */

  .top-contact__catch {
    margin-bottom: 31px;

    padding: 15px 13px;
  }


  .top-contact__catch p {
    font-size: 13px;
    line-height: 2;
  }


  /* ==============================
     説明
  ============================== */

  .top-contact__text {
    margin-bottom: 29px;
  }


  .top-contact__text p {
    font-size: 15px;
    line-height: 2;
  }


  /* ==============================
     ボタン
  ============================== */

  .top-contact__buttons {
    display: block;
  }


  .top-contact__btn {
    width: 82%;
    min-height: 67px;
    margin: 0 auto 19px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 1.7;
  }


  .top-contact__btn:last-child {
    margin-bottom: 0;
  }

}

/* ========================================
   Calendar / News
======================================== */

.asteo-info-section {
  position: relative;
  padding: 55px 20px 70px;
  overflow: hidden;

  background:
    repeating-linear-gradient(
      45deg,
      rgba(111, 122, 131, 0.035) 0,
      rgba(111, 122, 131, 0.035) 1px,
      transparent 1px,
      transparent 7px
    ),
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #f8f7f3 58%,
      #eee8dc 100%
    );
}

.asteo-info-section__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.asteo-info-section__heading {
  position: relative;
  margin-bottom: 42px;
  text-align: center;
}

.asteo-info-section__bg-en {
  position: absolute;
  z-index: 0;
  top: -29px;
  left: 50%;

  color: rgba(42, 64, 85, 0.045);

  font-family: "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.025em;

  white-space: nowrap;
  transform: translateX(-50%);
  pointer-events: none;
}

.asteo-info-section__en {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 10px;

  color: #b28b45;

  font-family: "Times New Roman", serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.4em;
}

.asteo-info-section__title {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #173858;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 34px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}


/* 見出し下ライン */

.asteo-info-section__decoration {
  position: relative;

  width: 88px;
  height: 15px;

  margin: 14px auto 0;
}

.asteo-info-section__decoration::before {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;
  left: 0;

  height: 1px;

  background: rgba(219, 203, 176, 0.7);
}

.asteo-info-section__decoration span {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 7px;
  height: 7px;

  background: #b58d43;

  transform:
    translate(-50%, -50%)
    rotate(45deg);
}


/* ========================================
   PC 2カラム
======================================== */

.asteo-info-section__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(0, 1fr);

  gap: 26px;
  align-items: start;
}


/* ========================================
   共通パネル
======================================== */

.asteo-info-panel {
  position: relative;

  padding: 28px;

  box-sizing: border-box;

  background-color: rgba(255, 255, 255, 0.94);

  background-image:
    linear-gradient(
      rgba(75, 97, 117, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(75, 97, 117, 0.04) 1px,
      transparent 1px
    );

  background-size: 8px 8px;

  border: 1px solid rgba(219, 203, 176, 0.6);

  box-shadow:
    0 10px 20px rgba(44, 54, 63, 0.13);
  z-index: 1;
}

/* 右下にずらした青い背景 */
.asteo-info-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: rgba(82, 107, 145, 0.14);
  pointer-events: none;
}

/* ========================================
   パネル見出し
======================================== */

.asteo-info-panel__heading {
  display: flex;
  align-items: center;
  gap: 13px;

  padding-bottom: 17px;
  margin-bottom: 22px;

  border-bottom: 1px solid rgba(219, 203, 176, 0.55);
}


/* 丸アイコン */

.asteo-info-panel__icon {
  display: flex;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;

  width: 39px;
  height: 39px;

  color: #557398;

  background: #fff;

  border-radius: 50%;

  box-shadow:
    0 4px 10px rgba(45, 57, 67, 0.13);
}

.asteo-info-panel__icon svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.asteo-info-panel__title {
  margin: 0;

  color: #294865;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}


/* ========================================
   カレンダー
======================================== */

.asteo-info-panel__calendar-wrap {
  position: relative;
}


/* プラグイン本体の余白リセット */

#calen {
  width: 100%;
}

#calen > * {
  max-width: 100%;
}


/* 休診日凡例 */

.asteo-info-calendar__legend {
  display: flex;
  align-items: center;

  gap: 9px;

  margin-top: 22px;

  color: #66798a;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 10px;
}

.asteo-info-calendar__legend span {
  display: block;

  width: 14px;
  height: 14px;

  background: #526b91;
}


/* ========================================
   お知らせ
======================================== */

.asteo-info-news {
  min-height: 145px;
}


/* お知らせがある場合 */

.asteo-info-news__list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.asteo-info-news__item {
  border-bottom: 1px solid rgba(219, 203, 176, 0.45);
}

.asteo-info-news__link {
  position: relative;

  display: block;

  padding: 14px 30px 14px 3px;

  color: #415d76;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.asteo-info-news__meta {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 5px;
}

.asteo-info-news__date {
  color: #84909b;

  font-family: "Times New Roman", serif;
  font-size: 10px;
}

.asteo-info-news__label {
  padding: 2px 8px;
  color: #a27c3d;
  border: 1px solid rgba(181, 141, 67, 0.5);
  font-size: 14px;
}

.asteo-info-news__title {
  display: block;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 11px;
  line-height: 1.8;
}

.asteo-info-news__arrow {
  position: absolute;

  top: 50%;
  right: 7px;

  color: #b48d45;

  font-size: 20px;

  transform: translateY(-50%);
}


/* Hover */

@media (hover: hover) {

  .asteo-info-news__link:hover {
    color: #b28b45;

    transform: translateX(4px);
  }

}


/* ========================================
   お知らせなし
======================================== */

.asteo-info-news__empty {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 145px;

  padding: 20px;

  box-sizing: border-box;

  background: rgba(246, 248, 251, 0.88);

  border: 1px solid rgba(219, 203, 176, 0.3);

  text-align: center;
}

.asteo-info-news__empty p {
  margin: 0;
  color: #8998a7;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 15px;
}


/* ========================================
   お知らせ一覧ボタン
======================================== */

.asteo-info-panel__button-wrap {
  margin-top: 30px;
  text-align: center;
}

.asteo-info-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 45px;
  padding: 8px 25px;
  box-sizing: border-box;
  color: #345069;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 203, 176, 0.7);
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

@media (hover: hover) {

  .asteo-info-panel__button:hover {
    transform: translateY(-3px);

    background: #fff;

    box-shadow:
      0 6px 12px rgba(42, 53, 62, 0.1);
  }

}


/* ========================================
   SP
======================================== */

@media screen and (max-width: 767px) {

  .asteo-info-section {
    padding: 35px 7px 40px;
  }


  /* 見出し */

  .asteo-info-section__heading {
    margin-bottom: 31px;

    text-align: left;
  }

  .asteo-info-section__bg-en {
    top: -10px;
    font-size: 40px;
  }

  .asteo-info-section__en {
    font-size: 7px;
    text-align: center;
  }

  .asteo-info-section__title {
    font-size: 23px;
    text-align: center;
  }

  .asteo-info-section__decoration {
    width: 70px;
  }


  /* 1カラム */

  .asteo-info-section__grid {
    display: block;
  }


  /* パネル */

  .asteo-info-panel {
    padding: 14px 12px;

    margin-bottom: 23px;
  }

  .asteo-info-panel:last-child {
    margin-bottom: 0;
  }


  /* パネル見出し */

  .asteo-info-panel__heading {
    gap: 9px;

    padding-bottom: 11px;
    margin-bottom: 15px;
  }

  .asteo-info-panel__icon {
    flex-basis: 31px;

    width: 31px;
    height: 31px;
  }

  .asteo-info-panel__icon svg {
    width: 20px;
    height: 20px;
  }

  .asteo-info-panel__title {
    font-size: 18px;
  }


  /* 凡例 */

  .asteo-info-calendar__legend {
    margin-top: 15px;

    font-size: 8px;
  }

  .asteo-info-calendar__legend span {
    width: 11px;
    height: 11px;
  }


  /* お知らせ */

  .asteo-info-news {
    min-height: 0;
  }

  .asteo-info-news__empty {
    min-height: 108px;
  }

  .asteo-info-news__empty p {
    font-size: 14px;
  }


  /* リスト */

  .asteo-info-news__link {
    padding:
      10px
      24px
      10px
      2px;
  }

  .asteo-info-news__date {
    font-size: 8px;
  }

  .asteo-info-news__label {
    font-size: 14px;
  }

  .asteo-info-news__title {
    font-size: 8px;
  }


  /* ボタン */

  .asteo-info-panel__button-wrap {
    margin-top: 22px;
  }

  .asteo-info-panel__button {
    min-width: 180px;
    min-height: 36px;
    font-size: 14px;
  }

}