/*==================================================================================================================================

  *改行設定

==================================================================================================================================*/
.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

@media (max-width: 768px) {
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }
}

.end-fv__page-title {
  margin: 0 0 14px;
  color: #8b651f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .12em;
}

@media screen and (max-width: 767px) {
  .end-fv__page-title {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: .08em;
  }
}

/*==================================================================================================================================

  *根管治療 ヘッダー

==================================================================================================================================*/
.end-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(181, 138, 42, .18);
  box-shadow: 0 8px 26px rgba(7, 27, 58, .06);
  backdrop-filter: blur(10px);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-header * {
  box-sizing: border-box;
}

.end-header a {
  text-decoration: none;
}

.end-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 3%;
}

.end-header__logo {
  flex: 0 0 auto;
  width: min(300px, 23vw);
}

.end-header__logo a {
  display: block;
}

.end-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* PC NAV */
.end-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.end-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.end-header__nav-item {
  position: relative;
}

.end-header__nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92px;
  color: #071b3a;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: color .3s ease;
}

.end-header__nav-item > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 0;
  height: 1px;
  background: #b58a2a;
  transform: translateX(-50%);
  transition: width .3s ease;
}

.end-header__nav-item:hover > a {
  color: #b58a2a;
}

.end-header__nav-item:hover > a::after {
  width: 100%;
}

/* Dropdown */
.end-header__dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  min-width: 230px;
  padding: 12px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(181, 138, 42, .28);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(7, 27, 58, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.end-header__nav-item:hover .end-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.end-header__dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, .96);
  border-left: 1px solid rgba(181, 138, 42, .28);
  border-top: 1px solid rgba(181, 138, 42, .28);
  transform: translateX(-50%) rotate(45deg);
}

.end-header__dropdown a {
  position: relative;
  display: block;
  padding: 12px 14px 12px 28px;
  border-radius: 6px;
  color: #071b3a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: background .3s ease, color .3s ease;
}

.end-header__dropdown a::before {
  content: "›";
  position: absolute;
  left: 12px;
  top: 50%;
  color: #b58a2a;
  transform: translateY(-50%);
}

.end-header__dropdown a:hover {
  background: #fbf8f1;
  color: #b58a2a;
}

/* CTA */
.end-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.end-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: transform .3s ease, opacity .3s ease, box-shadow .3s ease;
}

.end-header__btn--web {
  background: linear-gradient(135deg, #caa044 0%, #a77a1f 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(181, 138, 42, .22);
}

.end-header__btn:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.end-header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 44px;
  padding-left: 12px;
  border-left: 1px solid rgba(181, 138, 42, .36);
  color: #071b3a;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .04em;
  white-space: nowrap;
}

.end-header__tel span {
  margin-bottom: 3px;
  color: #8b651f;
  font-size: 11px;
  letter-spacing: .06em;
}

/* hamburger */
.end-header__check,
.end-header__hamburger,
.end-header__sp-menu {
  display: none;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1180px) {
  .end-header__inner {
    min-height: 78px;
  }

  .end-header__logo {
    width: 260px;
  }

  .end-header__nav,
  .end-header__cta {
    display: none;
  }

  .end-header__hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 54px;
    height: 54px;
    margin-left: auto;
    border: 1px solid rgba(181, 138, 42, .48);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    z-index: 10001;
  }

  .end-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #071b3a;
    border-radius: 999px;
    transition: transform .3s ease, opacity .3s ease;
  }

  .end-header__check:checked ~ .end-header__hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .end-header__check:checked ~ .end-header__hamburger span:nth-child(2) {
    opacity: 0;
  }

  .end-header__check:checked ~ .end-header__hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .end-header__sp-menu {
    display: block;
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    overflow-y: auto;
    background:
      radial-gradient(circle at 100% 0%, rgba(181, 138, 42, .12) 0%, transparent 34%),
      linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    z-index: 10000;
  }

.end-header:has(.end-header__check:checked) .end-header__sp-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

  .end-header__sp-inner {
    width: min(680px, 100%);
    margin: 0 auto;
    padding: 28px 22px 42px;
  }

  .end-header__sp-block {
    border-bottom: 1px solid rgba(181, 138, 42, .24);
  }

  .end-header__sp-block:first-child {
    border-top: 1px solid rgba(181, 138, 42, .24);
  }

  .end-header__sp-block summary {
    position: relative;
    display: block;
    padding: 18px 44px 18px 4px;
    color: #071b3a;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .07em;
    cursor: pointer;
    list-style: none;
  }

  .end-header__sp-block summary::-webkit-details-marker {
    display: none;
  }

  .end-header__sp-block summary::before,
  .end-header__sp-block summary::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 1px;
    background: #b58a2a;
    transition: transform .3s ease;
  }

  .end-header__sp-block summary::after {
    transform: rotate(90deg);
  }

  .end-header__sp-block[open] summary::after {
    transform: rotate(0deg);
  }

  .end-header__sp-block ul {
    margin: 0;
    padding: 0 0 16px;
    list-style: none;
  }

  .end-header__sp-block li + li {
    margin-top: 8px;
  }

  .end-header__sp-block a {
    position: relative;
    display: block;
    padding: 11px 14px 11px 28px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(181, 138, 42, .16);
    border-radius: 8px;
    color: #071b3a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .05em;
  }

  .end-header__sp-block a::before {
    content: "›";
    position: absolute;
    left: 14px;
    top: 50%;
    color: #b58a2a;
    transform: translateY(-50%);
  }

  .end-header__sp-cta {
    display: grid;
    gap: 12px;
    margin-top: 26px;
  }

  .end-header__sp-btn {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 13px 40px 13px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .06em;
    text-align: center;
  }

  .end-header__sp-btn::after {
    content: "〉";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .end-header__sp-btn--web {
    background: linear-gradient(135deg, #caa044 0%, #a77a1f 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(181, 138, 42, .22);
  }

  .end-header__sp-btn--tel {
    background: #fff;
    border: 1px solid rgba(181, 138, 42, .72);
    color: #071b3a;
  }

  .end-header__sp-btn--tel span {
    color: #b58a2a;
    font-size: 1.55em;
    letter-spacing: .04em;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-header__inner {
    min-height: 68px;
    padding: 0 16px;
  }

  .end-header__logo {
    width: min(238px, calc(100% - 70px));
  }

  .end-header__hamburger {
    width: 48px;
    height: 48px;
    gap: 6px;
  }

  .end-header__hamburger span {
    width: 20px;
  }

  .end-header__check:checked ~ .end-header__hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .end-header__check:checked ~ .end-header__hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .end-header__sp-menu {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .end-header__sp-inner {
    padding: 24px 16px 36px;
  }

  .end-header__sp-block summary {
    padding: 16px 42px 16px 2px;
    font-size: 16px;
  }
}

/*==================================================================================================================================

  *根管治療 ファーストビュー

==================================================================================================================================*/
.end-fv {
  position: relative;
  overflow: hidden;
  background: #f8f5ee;
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-fv * {
  box-sizing: border-box;
}

.end-fv__bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 76%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.2) 68%),
    url("../images/end/fv-doctor.png") right top / auto 100% no-repeat;
  z-index: 0;
}

.end-fv__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 35%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.4) 35%, transparent 58%),
    linear-gradient(135deg, rgba(181,138,42,.08) 0%, transparent 30%);
  pointer-events: none;
}

.end-fv__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 46px 2% 150px;
  min-height: 680px;
}

.end-fv__content {
  width: min(760px, 56%);
}

.end-fv__access {
  position: relative;
  display: inline-block;
  min-width: 520px;
  margin-bottom: 44px;
  padding: 18px 70px 18px 44px;
  background: linear-gradient(90deg, #071b3a 0%, #0a244d 100%);
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: .08em;
  box-shadow: 8px 8px 0 rgba(181,138,42,.3);
}

.end-fv__access::after {
  content: "";
  position: absolute;
  top: 0;
  right: -48px;
  width: 0;
  height: 0;
  border-top: 78px solid #102349;
  border-right: 48px solid transparent;
}

.end-fv__access span {
  color: #c79a32;
  font-size: 34px;
  letter-spacing: .03em;
}

.end-fv__sub {
  margin: 0 0 10px;
  color: #b58a2a;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .12em;
}

.end-fv__title {
  margin: 0 0 28px;
  color: #071b3a;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .08em;
  text-shadow: 0 4px 12px rgba(255,255,255,.9);
}

.end-fv__lead {
  margin: 0 0 32px;
  color: #1f2630;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-fv__lead span {
  color: #003f8f;
  font-size: 1.25em;
  font-weight: 700;
}

.end-fv__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 760px;
}

.end-fv__feature {
  min-height: 182px;
  padding: 22px 14px 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(181,138,42,.15);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  text-align: center;
}

.end-fv__feature-title {
  margin-bottom: 14px;
  color: #9b741f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .04em;
}

.end-fv__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  margin: 30px 12px;
}

.end-fv__feature-icon img {
  max-width: 100px;
  max-height: 100px;
}

.end-fv__feature p {
  margin: 0;
  color: #101820;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
}

.end-fv__feature-result {
  margin: 10px 0 8px;
  color: #b58a2a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.end-fv__feature-result span {
  font-size: 42px;
  letter-spacing: .03em;
}

.end-fv__bottom {
  position: relative;
  z-index: 2;
  margin-top: -110px;
  background: linear-gradient(90deg, #061a39 0%, #092655 55%, #061a39 100%);
  color: #fff;
}

.end-fv__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 1% 20px;
}

.end-fv__message {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.end-fv__tooth {
  flex: 0 0 145px;
}

.end-fv__tooth img {
  display: block;
  width: 100%;
  height: auto;
}

.end-fv__message-sub {
  margin: 0 0 4px;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.5;
  letter-spacing: .08em;
}

.end-fv__message-main {
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
}

.end-fv__message-main span {
  color: #c89b34;
}

.end-fv__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.end-fv__checks li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .05em;
}

.end-fv__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c89b34;
  font-weight: 700;
}

.end-fv__circles {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.end-fv__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 175px;
  background: rgba(255,255,255,.96);
  border: 2px solid #c89b34;
  border-radius: 50%;
  color: #071b3a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  letter-spacing: .05em;
  box-shadow: 0 0 0 4px rgba(255,255,255,.35);
}

.end-fv__circle span:not(.end-fv__circle-icon) {
  color: #003f8f;
  font-size: 1.35em;
}

.end-fv__circle-icon {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1;
}

.end-fv__cta {
  position: relative;
  z-index: 3;
  background: #fbf8f1;
}

.end-fv__cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 2% 28px;
}

.end-fv__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px 70px 18px 34px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .3s ease, opacity .3s ease;
}

.end-fv__btn:hover {
  transform: translateY(-3px);
  opacity: .88;
}

.end-fv__btn--web {
  background: linear-gradient(135deg, #c49a36 0%, #9a741c 100%);
  color: #fff;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: .08em;
}

.end-fv__btn--tel {
  background: #fff;
  border: 2px solid #b58a2a;
  color: #071b3a;
}

.end-fv__btn-icon {
  margin-right: 18px;
  font-size: 34px;
  line-height: 1;
}

.end-fv__tel-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #071b3a;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .08em;
}

.end-fv__tel-text small {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: .08em;
}

.end-fv__btn-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 400;
}

/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-fv {
    background: #fbf8f1;
  }

  .end-fv__bg {
    height: 620px;
    background:
      linear-gradient(
        90deg,
        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.94) 48%,
        rgba(255,255,255,.7) 72%,
        rgba(255,255,255,.35) 100%
      ),
      url("../images/end/fv-doctor.png") right top / auto 88% no-repeat;
  }

  .end-fv__inner {
    max-width: 100%;
    min-height: auto;
    padding: 36px 5% 130px;
  }

  .end-fv__content {
    width: min(620px, 72%);
  }

  .end-fv__access {
    min-width: 0;
    width: fit-content;
    max-width: calc(100% - 30px);
    margin-bottom: 36px;
    padding: 15px 52px 15px 28px;
    font-size: 19px;
  }

  .end-fv__access::after {
    right: -40px;
    border-top-width: 67px;
    border-right-width: 40px;
  }

  .end-fv__access span {
    font-size: 28px;
  }

  .end-fv__sub {
    font-size: clamp(28px, 3.6vw, 38px);
  }

  .end-fv__title {
    font-size: clamp(58px, 7.2vw, 82px);
  }

  .end-fv__lead {
    font-size: clamp(19px, 2vw, 23px);
  }

  .end-fv__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 540px;
  }

  .end-fv__feature {
    min-height: 160px;
    padding: 18px 14px 16px;
  }

  .end-fv__feature-icon {
    height: 46px;
    margin: 18px 10px;
  }

  .end-fv__feature-icon img {
    max-width: 78px;
    max-height: 78px;
  }

  .end-fv__bottom {
    margin-top: -90px;
  }

  .end-fv__bottom-inner {
    display: block;
    padding: 30px 5% 28px;
  }

  .end-fv__message {
    /* justify-content: center; */
    margin-bottom: 24px;
  }

  .end-fv__tooth {
    flex: 0 0 110px;
  }

  .end-fv__message-text {
    min-width: 0;
  }

  .end-fv__checks {
    gap: 8px 18px;
  }

  .end-fv__circles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
  }

  .end-fv__circle {
    width: 100%;
    height: auto;
    min-height: 136px;
    border-radius: 18px;
    font-size: 16px;
    line-height: 1.5;
    padding: 18px 12px;
  }

  .end-fv__circle-icon {
    font-size: 24px;
  }

  .end-fv__cta-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 760px;
    padding: 22px 5% 30px;
  }

  .end-fv__btn {
    min-height: 84px;
  }

  .end-fv__tel-text {
    font-size: clamp(32px, 4.5vw, 42px);
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-fv {
    background: #fbf8f1;
  }

  .end-fv__bg {
    height: 660px;
    background-image:
      linear-gradient(
        90deg,
        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.92) 40%,
        rgba(255,255,255,.32) 68%,
        rgba(255,255,255,.10) 100%
      ),
      linear-gradient(
        180deg,
        rgba(255,255,255,.04) 0%,
        rgba(255,255,255,.08) 48%,
        rgba(255,255,255,.62) 78%,
        rgba(255,255,255,.96) 100%
      ),
      url("../images/end/fvsp-doctor.png");
    background-position:
      left top,
      left top,
      right -20px top 76px;
    background-size:
      100% 100%,
      100% 100%,
      auto 430px;
    background-repeat: no-repeat;
  }

  .end-fv__inner {
    padding: 5px 18px 88px;
  }

  .end-fv__content {
    width: 100%;
  }

  .end-fv__access {
    width: calc(100% - 24px);
    min-width: 0;
    margin-bottom: 30px;
    padding: 11px 26px 11px 16px;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: .04em;
    box-shadow: 5px 5px 0 rgba(181,138,42,.25);
  }

  .end-fv__access::after {
    right: -24px;
    border-top-width: 48px;
    border-right-width: 24px;
  }

  .end-fv__access span {
    font-size: 20px;
  }

  .end-fv__sub {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: .08em;
  }

  .end-fv__title {
    margin-bottom: 20px;
    font-size: clamp(44px, 12vw, 58px);
    line-height: 1.15;
    letter-spacing: .05em;
  }

  .end-fv__lead {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .04em;
  }

  .end-fv__lead span {
    font-size: 1.18em;
  }

  .end-fv__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: none;
    margin-top: 50px;
  }

  .end-fv__feature {
    min-height: 142px;
    padding: 14px 8px 13px;
    border-radius: 8px;
  }

  .end-fv__feature-title {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
  }

  .end-fv__feature-icon {
    height: 42px;
    margin: 14px 8px;
  }

  .end-fv__feature-icon img {
    max-width: 64px;
    max-height: 64px;
  }

  .end-fv__feature p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .end-fv__feature-result {
    margin: 6px 0;
    font-size: 16px;
  }

  .end-fv__feature-result span {
    font-size: 28px;
  }

  .end-fv__bottom {
    margin-top: -50px;
  }

  .end-fv__bottom-inner {
    display: block;
    padding: 24px 18px 26px;
  }

  .end-fv__message {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
  }

  .end-fv__tooth {
    flex: 0 0 68px;
    margin-top: 4px;
  }

  .end-fv__message-sub {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.65;
    letter-spacing: .04em;
  }

  .end-fv__message-main {
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.45;
    letter-spacing: .05em;
  }

  .end-fv__checks {
    display: block;
    margin-top: 10px;
  }

  .end-fv__checks li {
    margin-top: 5px;
    padding-left: 20px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .end-fv__circles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .end-fv__circle {
    width: 100%;
    height: auto;
    min-height: auto;
    border-radius: 12px;
    flex-direction: row;
    gap: 10px;
    padding: 13px 14px;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
  }

  .end-fv__circle-icon {
    flex: 0 0 auto;
    margin: 0;
    font-size: 21px;
  }

  .end-fv__circle span:not(.end-fv__circle-icon) {
    font-size: 1.15em;
  }

  .end-fv__cta-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 18px 24px;
  }

  .end-fv__btn {
    min-height: 66px;
    padding: 13px 42px 13px 16px;
    border-radius: 8px;
  }

  .end-fv__btn:hover {
    transform: none;
  }

  .end-fv__btn--web {
    font-size: 16px;
    line-height: 1.4;
  }

  .end-fv__btn-icon {
    margin-right: 9px;
    font-size: 22px;
  }

  .end-fv__tel-text {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.15;
    letter-spacing: .04em;
  }

  .end-fv__tel-text small {
    margin-bottom: 5px;
    font-size: 12px;
    letter-spacing: .04em;
  }

  .end-fv__btn-arrow {
    right: 14px;
    font-size: 20px;
  }
}


/* ================================
  small SP
================================ */
@media screen and (max-width: 420px) {
  .end-fv__features {
    gap: 8px;
  }

  .end-fv__feature-title {
    font-size: 13px;
  }

  .end-fv__feature p {
    font-size: 12px;
  }

  .end-fv__message {
    gap: 10px;
  }

  .end-fv__tooth {
    flex-basis: 58px;
  }

  .end-fv__message-main {
    font-size: 22px;
  }

  .end-fv__btn--web {
    font-size: 15px;
  }
}

/* ================================
  FV：Font Awesomeアイコン調整
================================ */
.end-fv__circle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  color: #b58a2a;
  font-size: 24px;
  line-height: 1;
}

.end-fv__circle-icon i {
  display: block;
  line-height: 1;
}

.end-fv__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  margin-right: 18px;
  font-size: 24px;
  line-height: 1;
}

.end-fv__btn-icon i {
  display: block;
  line-height: 1;
}

.end-fv__btn--web .end-fv__btn-icon {
  color: #fff;
}

.end-fv__btn--tel .end-fv__btn-icon {
  color: #b58a2a;
}


/* SP調整 */
@media screen and (max-width: 767px) {
  .end-fv__circle-icon {
    width: 28px;
    height: 28px;
    margin: 0;
    font-size: 18px;
  }

  .end-fv__btn-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 9px;
    font-size: 18px;
  }
}
/*==================================================================================================================================

  *こんなお悩み/症状はありませんか？

==================================================================================================================================*/
.end-worry {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.72) 32%, transparent 58%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-worry * {
  box-sizing: border-box;
}

.end-worry__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.end-worry__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251,250,246,1) 0%,
    rgba(251,250,246,.75) 22%,
    rgba(251,250,246,.18) 52%,
    rgba(251,250,246,0) 100%
  );
  z-index: 1;
}

.end-worry__bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(251,250,246,0) 0%,
    rgba(251,250,246,.92) 82%,
    rgba(251,250,246,1) 100%
  );
  z-index: 2;
}

.end-worry__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .88;
}

.end-worry__inner {
  position: relative;
  z-index: 1;
  max-width: 95%;
  margin: 0 auto;
  padding: 88px 0 82px;
}

.end-worry__head {
  width: min(760px, 62%);
}

.end-worry__title {
  margin: 0;
  color: #071b3a;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: .12em;
}

.end-worry__title span {
  color: #aa842d;
  font-size: 73px;
}

.end-worry__line {
  position: relative;
  width: min(610px, 100%);
  height: 1px;
  margin: 28px 0 28px;
  background: linear-gradient(90deg, #b99445 0%, #d7c69d 45%, transparent 100%);
}

.end-worry__line::before,
.end-worry__line::after {
  content: "";
  position: absolute;
  top: 50%;
  border: 1px solid #b99445;
  transform: translateY(-50%) rotate(45deg);
}

.end-worry__line::before {
  left: 50%;
  width: 10px;
  height: 10px;
  background: #fbfaf6;
}

.end-worry__line::after {
  left: calc(50% + 5px);
  width: 4px;
  height: 4px;
  background: #b99445;
}

.end-worry__lead {
  margin: 0;
  color: #1b1f27;
  font-size: 20px;
  line-height: 2.05;
  letter-spacing: .12em;
}

.end-worry__lead span {
  color: #aa842d;
  font-weight: 700;
}

.end-worry__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.end-worry__card {
  position: relative;
  min-height: 254px;
  padding: 56px 20px 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(181,138,42,.28);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20, 28, 45, .07);
  text-align: center;
}

.end-worry__check {
  position: absolute;
  top: -26px;
  left: 50%;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 35% 25%, #102b58 0%, #071b3a 72%);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(7,27,58,.24);
  transform: translateX(-50%);
}

.end-worry__check::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 15px;
  width: 21px;
  height: 12px;
  border-left: 4px solid #b99445;
  border-bottom: 4px solid #b99445;
  transform: rotate(-45deg);
}

.end-worry__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  margin: 0 auto 22px;
  border: 1px solid rgba(181,138,42,.36);
  border-radius: 50%;
  background: rgba(255,255,255,.48);
}

.end-worry__icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.end-worry__dots {
  display: block;
  width: 96px;
  height: 5px;
  margin: 0 auto 22px;
  background-image: radial-gradient(circle, rgba(181,138,42,.62) 1.8px, transparent 2px);
  background-size: 12px 5px;
  background-repeat: repeat-x;
}

.end-worry__card p {
  margin: 0;
  color: #071b3a;
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .08em;
}

.end-worry__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  max-width: 1040px;
  margin: 70px auto 0;
}

.end-worry__bottom span {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #b99445 100%);
}

.end-worry__bottom span:last-child {
  background: linear-gradient(90deg, #b99445 0%, transparent 100%);
}

.end-worry__bottom span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 7px;
  height: 7px;
  background: #b99445;
  transform: translateY(-50%) rotate(45deg);
}

.end-worry__bottom span:last-child::after {
  right: auto;
  left: -2px;
}

.end-worry__bottom p {
  margin: 0;
  color: #071b3a;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.7;
  letter-spacing: .12em;
  text-align: center;
}

.end-worry__bottom strong {
  color: #aa842d;
  font-weight: 700;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-worry__bg {
    width: 46%;
  }

  .end-worry__bg img {
    object-position: 58% top;
  }

  .end-worry__inner {
    padding: 74px 5% 72px;
  }

  .end-worry__head {
    width: min(620px, 66%);
  }

  .end-worry__title {
    font-size: clamp(42px, 5.8vw, 62px);
    letter-spacing: .1em;
  }

  .end-worry__lead {
    font-size: 19px;
    line-height: 1.95;
    letter-spacing: .08em;
  }

  .end-worry__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 16px;
    margin-top: 52px;
  }

  .end-worry__card {
    min-height: 230px;
    padding: 50px 18px 24px;
  }

  .end-worry__card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .end-worry__card:nth-child(5) {
    grid-column: 2 / 4;
  }

  .end-worry__icon {
    width: 104px;
    height: 104px;
  }

  .end-worry__icon img {
    width: 64px;
    height: 64px;
  }

  .end-worry__card p {
    font-size: 18px;
  }

  .end-worry__bottom {
    gap: 24px;
    margin-top: 58px;
  }

  .end-worry__bottom p {
    font-size: 24px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-worry {
    overflow: hidden;
    background: linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  }

  .end-worry__bg {
    position: relative;
    width: 100%;
    height: 230px;
    margin-bottom: -28px;
  }

  .end-worry__bg::before {
    background: linear-gradient(
      90deg,
      rgba(251,250,246,.94) 0%,
      rgba(251,250,246,.52) 34%,
      rgba(251,250,246,0) 100%
    );
  }

  .end-worry__bg::after {
    height: 55%;
    background: linear-gradient(
      180deg,
      rgba(251,250,246,0) 0%,
      rgba(251,250,246,.82) 68%,
      rgba(251,250,246,1) 100%
    );
  }

  .end-worry__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    opacity: .82;
  }

  .end-worry__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px 54px;
  }

  .end-worry__head {
    width: 100%;
  }

  .end-worry__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.48;
    letter-spacing: .08em;
  }
	
.end-worry__title span {
    font-size: 30px;
}

  .end-worry__line {
    width: 100%;
    margin: 20px 0 22px;
  }

  .end-worry__lead {
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: .05em;
  }

  .end-worry__cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100%;
    max-width: 100%;
    margin-top: 46px;
  }

  .end-worry__card,
  .end-worry__card:nth-child(4),
  .end-worry__card:nth-child(5) {
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) !important;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
    row-gap: 8px;
    grid-column: auto !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 124px;
    margin: 0 !important;
    padding: 24px 14px 22px;
    border-radius: 12px;
    text-align: left;
  }

  .end-worry__check {
    top: -20px;
    left: 24px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .end-worry__check::before {
    left: 13px;
    top: 12px;
    width: 17px;
    height: 10px;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }

  .end-worry__icon {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    min-width: 72px;
    margin: 0;
  }

  .end-worry__icon img {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
  }

  .end-worry__dots {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: block;
    width: 88px;
    max-width: 100%;
    height: 5px;
    margin: 0;
  }

  .end-worry__card p {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-width: 0;
    margin: 0;
    color: #071b3a;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: .06em;
    text-align: left;
    writing-mode: horizontal-tb !important;
    white-space: normal !important;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .end-worry__bottom {
    display: block;
    margin-top: 42px;
    padding: 18px 16px;
    border-top: 1px solid rgba(181,138,42,.45);
    border-bottom: 1px solid rgba(181,138,42,.45);
  }

  .end-worry__bottom span {
    display: none;
  }

  .end-worry__bottom p {
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    letter-spacing: .06em;
    text-align: center;
  }
}

/*==================================================================================================================================

  *根管治療とは？歯を抜かずに残すための治療

==================================================================================================================================*/
.end-about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 11%, rgba(255,255,255,.9) 0%, rgba(255,255,255,.68) 30%, transparent 58%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-about * {
  box-sizing: border-box;
}

.end-about__inner {
  max-width: 95%;
  margin: 0 auto;
  padding: 72px 0 24px;
}

.end-about__head {
  position: relative;
  min-height: 390px;
  padding: 0 0 32px;
}

.end-about__title-wrap {
  position: relative;
  z-index: 2;
  width: 70%;
  text-align: center;
}

.end-about__ornament {
  position: relative;
  display: block;
  width: 220px;
  height: 42px;
  margin: 0 auto 12px;
}

.end-about__ornament::before,
.end-about__ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: #b58a2a;
}

.end-about__ornament::before {
  left: 0;
}

.end-about__ornament::after {
  right: 0;
}

.end-about__title {
  margin: 0;
  color: #3b3835;
  font-size: 65px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: .12em;
  background: none;
}

.end-about__title-sub {
  display: block;
  color: #071b3a;
  font-size: .62em;
  line-height: 1.3;
  letter-spacing: .16em;
}

.end-about__title-main {
  display: block;
  color: #3b3835;
  font-size: 55px;
}

.end-about__title-main em {
  color: #b58a2a;
  font-style: normal;
}

.end-about__short-line {
  display: block;
  width: 38px;
  height: 2px;
  margin: 18px auto 0;
  background: #b58a2a;
}

.end-about__lead {
  position: relative;
  z-index: 2;
  width: min(760px, 58%);
  margin: 36px 0 0;
  color: #20242a;
  font-size: 20px;
  line-height: 2;
  letter-spacing: .1em;
}

.end-about__main-img {
  position: absolute;
  top: -10px;
  right: 0;
  width: min(520px, 42%);
  z-index: 1;
}

.end-about__main-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(251,250,246,0), rgba(251,250,246,.95));
}

.end-about__main-img img {
  display: block;
  width: 100%;
  height: auto;
}

.end-about__steps {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 10px;
}

.end-about__step {
  position: relative;
  min-width: 0;
  min-height: 390px;
  padding: 26px 28px 24px;
  background: rgba(255,255,255,.9);
  background-image: repeating-linear-gradient(324deg, #728eae0d, #728eae0d 1px, transparent 1px, transparent 15px);
  border: 1px solid rgba(181,138,42,.16);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(20,28,45,.08);
  overflow: hidden;
}

.end-about__step-head {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: start;
  column-gap: 15px;
  margin-bottom: 24px;
}

.end-about__step-label {
  position: relative;
  width: 78px;
  height: 86px;
  padding-top: 12px;
  background: #071b3a;
  color: #fff;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  box-shadow: 0 8px 14px rgba(7,27,58,.22);
}

.end-about__step-label span {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .06em;
}

.end-about__step-label strong {
  display: block;
  margin-top: 4px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
}

.end-about__step-title {
  min-width: 0;
  padding-top: 8px;
}

.end-about__step-title h3 {
  margin: 0;
  color: #071b3a;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .08em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.end-about__gold-line {
  display: block;
  width: 34px;
  height: 1px;
  margin: 14px 0 0;
  background: #b58a2a;
}

.end-about__step-body {
  display: grid;
  grid-template-columns: 40% minmax(0, 60%);
  align-items: end;
  column-gap: 10px;
}

.end-about__step-copy {
  min-width: 0;
}

.end-about__step-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}

.end-about__step-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-about__step-copy p {
  margin: 0;
  color: #1e2530;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .06em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.end-about__step-img {
  min-width: 0;
}

.end-about__step-img img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-left: auto;
  object-fit: contain;
}

.end-about__arrow {
  position: relative;
  z-index: 5;
  align-self: center;
  width: 0;
  height: 0;
  margin: 0 -1px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 24px solid #b58a2a;
  filter: drop-shadow(0 4px 6px rgba(181,138,42,.22));
}

.end-about__gold-line {
  display: block;
  width: 34px;
  height: 1px;
  margin: 18px 0 34px;
  background: #b58a2a;
}

.end-about__step-icon {
  width: 120px;
  height: 120px;
}

.end-about__step-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-about__step-text p {
  margin: 0;
  color: #1e2530;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-about__step-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.end-about__step-img img {
  display: block;
  width: 100%;
  max-width: 270px;
  height: auto;
}

.end-about__arrow {
  position: relative;
  z-index: 5;
  align-self: center;
  width: 0;
  height: 0;
  margin: 0 -1px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 24px solid #b58a2a;
  filter: drop-shadow(0 4px 6px rgba(181,138,42,.22));
}

.end-about__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 24px;
  padding: 18px 24px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(181,138,42,.28);
  border-radius: 6px;
}

.end-about__message-icon {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  padding: 14px;
  border: 1px solid rgba(181,138,42,.5);
  border-radius: 50%;
}

.end-about__message-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-about__message p {
  margin: 0;
  color: #071b3a;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.7;
  letter-spacing: .1em;
}

.end-about__message span {
  color: #071b3a;
  font-weight: 700;
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-about__inner {
    padding: 54px 16px 18px;
  }

  .end-about__head {
    min-height: auto;
    padding-bottom: 28px;
  }

  .end-about__title-wrap {
    width: 100%;
  }

  .end-about__ornament {
    width: 170px;
    height: 34px;
    margin-bottom: 8px;
  }

  .end-about__ornament::before,
  .end-about__ornament::after {
    width: 54px;
  }

  .end-about__title {
    font-size: 34px;
    line-height: 1.45;
    letter-spacing: .08em;
  }

  .end-about__title-sub {
    font-size: 24px;
    letter-spacing: .1em;
  }

  .end-about__title-main {
    display: block;
    font-size: 35px;
  }

.end-about__title-main em {
  font-size: 35px;
  }
  .end-about__short-line {
    margin-top: 14px;
  }

  .end-about__lead {
    width: 100%;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: .06em;
    text-align: left;
  }

  .end-about__main-img {
    position: relative;
    top: auto;
    right: auto;
    width: min(330px, 92%);
    margin: 26px auto 0;
  }

  .end-about__main-img::after {
    height: 26%;
  }

  .end-about__steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 12px;
  }

  .end-about__step {
    min-height: auto;
    padding: 20px 18px 22px;
    border-radius: 10px;
  }

  .end-about__step-head {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 16px;
    margin-bottom: 20px;
  }

  .end-about__step-label {
    width: 62px;
    height: 70px;
    padding-top: 9px;
  }

  .end-about__step-label span {
    font-size: 12px;
  }

  .end-about__step-label strong {
    font-size: 27px;
  }

  .end-about__step-title {
    padding-top: 4px;
  }

  .end-about__step-title h3 {
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: .07em;
  }

  .end-about__gold-line {
    margin-top: 10px;
  }

  .end-about__step-body {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .end-about__step-copy {
    display: block;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
  }

  .end-about__step-icon {
    display: none;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .end-about__step-copy p {
    font-size: 14.5px;
    line-height: 1.85;
    letter-spacing: .05em;
  }

  .end-about__step-img {
    padding-left: 0px;
  }

  .end-about__step-img img {
    max-width: 80%;
    margin-left: 0;
  }

  .end-about__arrow {
    align-self: center;
    width: 0;
    height: 0;
    margin: -8px 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 20px solid #b58a2a;
    border-bottom: 0;
  }
  
  .end-about__gold-line {
    margin: 10px 0 14px;
  }

  .end-about__step-icon {
    position: absolute;
    left: 22px;
    top: 108px;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .end-about__step-text p {
    font-size: 14.5px;
    line-height: 1.85;
    letter-spacing: .06em;
  }

  .end-about__arrow {
    align-self: center;
    width: 0;
    height: 0;
    margin: -8px 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 20px solid #b58a2a;
    border-bottom: 0;
  }

  .end-about__message {
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 16px 14px;
    border-radius: 8px;
  }

  .end-about__message-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    padding: 10px;
  }

  .end-about__message p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .05em;
  }
}
/*==================================================================================================================================

  *根管治療が必要になる主なケース

==================================================================================================================================*/
.end-case {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.72) 38%, transparent 66%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-case * {
  box-sizing: border-box;
}

.end-case__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px 4% 64px;
}

.end-case__head {
  text-align: center;
}

.end-case__ornament {
  position: relative;
  width: min(1040px, 100%);
  height: 44px;
  margin: 0 auto 12px;
}

.end-case__ornament::before,
.end-case__ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.65) 100%);
}

.end-case__ornament::before {
  left: 0;
}

.end-case__ornament::after {
  right: 0;
  background: linear-gradient(90deg, rgba(181,138,42,.65) 0%, transparent 100%);
}

.end-case__ornament span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 2px solid #b58a2a;
  border-radius: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.end-case__ornament span::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid #b58a2a;
  border-radius: 50%;
}

.end-case__title {
  margin: 0;
  color: #3b3835;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .12em;
}

.end-case__title span {
  color: #b58a2a;
}

.end-case__lead {
  margin: 18px 0 0;
  color: #1e2530;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-case__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin-top: 38px;
}

.end-case__item {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(180px, 1fr) minmax(220px, 270px);
  align-items: center;
  gap: 24px;
  min-height: 250px;
  padding: 28px 48px 28px 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(181,138,42,.18);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20,28,45,.08);
}

.end-case__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  background: radial-gradient(circle at 35% 24%, #143464 0%, #071b3a 74%);
  border-radius: 50%;
  color: #b58a2a;
  box-shadow: 0 6px 15px rgba(7,27,58,.22);
}

.end-case__number span {
  display: block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .08em;
}

.end-case__number strong {
  display: block;
  margin-top: 4px;
  color: #b58a2a;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
}

.end-case__text {
  min-width: 0;
}

.end-case__text h3 {
  margin: 0;
  color: #071b3a;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .1em;
  word-break: keep-all;
}

.end-case__image {
  min-width: 0;
}

.end-case__image img {
  display: block;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 1.55 / 1;
  margin-left: auto;
  border-radius: 8px;
  object-fit: cover;
}

.end-case__arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid #b58a2a;
  border-right: 2px solid #b58a2a;
  transform: translateY(-50%) rotate(45deg);
}

.end-case__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 34px;
  padding: 18px 24px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(181,138,42,.28);
  border-radius: 10px;
}

.end-case__message-icon {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
}

.end-case__message-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-case__message p {
  margin: 0;
  color: #2c2a27;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.7;
  letter-spacing: .08em;
}

.end-case__message span {
  color: #b58a2a;
  font-weight: 700;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-case__inner {
    padding: 64px 5% 58px;
  }

  .end-case__list {
    gap: 16px;
  }

  .end-case__item {
    grid-template-columns: 72px minmax(160px, 1fr);
    gap: 18px;
    padding: 24px 42px 24px 24px;
  }

  .end-case__image {
    grid-column: 2 / 3;
  }

  .end-case__image img {
    max-width: 250px;
    margin: 12px 0 0;
  }

  .end-case__text h3 {
    font-size: 25px;
  }

  .end-case__number {
    width: 68px;
    height: 68px;
  }

  .end-case__number strong {
    font-size: 25px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-case__inner {
    padding: 54px 16px 48px;
  }

  .end-case__ornament {
    height: 36px;
    margin-bottom: 12px;
  }

  .end-case__ornament::before,
  .end-case__ornament::after {
    width: calc(50% - 42px);
  }

  .end-case__ornament span {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .end-case__ornament span::before {
    inset: 8px;
  }

  .end-case__title {
    font-size: 30px;
    line-height: 1.55;
    letter-spacing: .07em;
  }

  .end-case__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
    text-align: left;
  }

  .end-case__list {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .end-case__item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    min-height: auto;
    padding: 20px 38px 20px 18px;
    border-radius: 10px;
  }

  .end-case__number {
    width: 62px;
    height: 62px;
  }

  .end-case__number span {
    font-size: 12px;
  }

  .end-case__number strong {
    font-size: 24px;
  }

  .end-case__text h3 {
    font-size: 21px;
    line-height: 1.55;
    letter-spacing: .07em;
  }

  .end-case__image {
    grid-column: 2 / 3;
  }

  .end-case__image img {
    max-width: 100%;
    width: 100%;
    margin: 10px 0 0;
  }

  .end-case__arrow {
    right: 18px;
    width: 11px;
    height: 11px;
  }

  .end-case__message {
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 16px 14px;
  }

  .end-case__message-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
  }

  .end-case__message p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .05em;
  }
}

/*==================================================================================================================================

  *他院で抜歯と言われた方へ

==================================================================================================================================*/
.end-extraction {
  position: relative;
  overflow: hidden;
  background: #fbfaf6;
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-extraction * {
  box-sizing: border-box;
}

.end-extraction__bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 60%;
  z-index: 0;
}

.end-extraction__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(251,250,246,1) 0%,
      rgba(251,250,246,.94) 18%,
      rgba(251,250,246,.64) 42%,
      rgba(251,250,246,.14) 72%,
      rgba(251,250,246,0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(251,250,246,.18) 0%,
      rgba(251,250,246,0) 52%,
      rgba(251,250,246,.18) 100%
    );
  z-index: 1;
}

.end-extraction__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center right; */
}

.end-extraction__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  min-height: 670px;
  margin: 0 auto;
  padding: 62px 4% 52px;
}

.end-extraction__content {
  width: min(700px, 58%);
}

.end-extraction__label {
  position: relative;
  display: inline-block;
  min-width: 480px;
  margin: 0 0 46px;
  padding: 18px 76px 18px 34px;
  background: #071b3a;
  color: #fff;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
}

.end-extraction__label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -57px;
  width: 0;
  height: 0;
  border-top: 77px solid #071b3a;
  border-right: 60px solid transparent;
}

.end-extraction__label span {
  color: #b58a2a;
}

.end-extraction__title {
  margin: 0;
  color: #3b3835;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0em;
}

.end-extraction__title span {
  color: #b58a2a;
}

.end-extraction__lead {
  margin: 28px 0 0;
  color: #1f2329;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: .08em;
}

.end-extraction__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 650px;
  margin-top: 38px;
}

.end-extraction__card {
  min-height: 176px;
  padding: 24px 5px 20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(181,138,42,.32);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20,28,45,.08);
  text-align: center;
}

.end-extraction__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
}

.end-extraction__card-icon img {
  display: block;
  width: 140%;
  height: 140%;
  object-fit: contain;
}

.end-extraction__card p {
  margin: 0;
  color: #071b3a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .08em;
}

.end-extraction__badge {
  position: absolute;
  right: 4%;
  bottom: 92px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  padding: 26px;
  background: radial-gradient(circle at 35% 24%, #143464 0%, #071b3a 74%);
  border: 2px solid #b58a2a;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(7,27,58,.24);
  text-align: center;
}

.end-extraction__badge::before {
  left: 24px;
  border-right: 0;
  border-top-left-radius: 90px;
  border-bottom-left-radius: 90px;
  transform: translateY(-50%);
}

.end-extraction__badge::after {
  right: 24px;
  border-left: 0;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
  transform: translateY(-50%);
}

.end-extraction__badge p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .08em;
}

.end-extraction__bottom {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,.14) 0%, transparent 28%),
    linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  border-top: 1px solid rgba(181,138,42,.45);
}

.end-extraction__bottom-inner {
  display: flex;
  align-items: center;
/*   justify-content: center; */
  gap: 44px;
  max-width: 1440px;
  min-height: 150px;
  margin: 0 auto;
  padding: 28px 4%;
}

.end-extraction__tooth {
  flex: 0 0 116px;
  width: 116px;
}

.end-extraction__tooth img {
  display: block;
  width: 100%;
  height: auto;
}

.end-extraction__bottom p {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .12em;
}

.end-extraction__bottom p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 360px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.9) 50%, transparent 100%);
  transform: translateX(-50%);
}

.end-extraction__bottom span {
  color: #b58a2a;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-extraction__bg {
    width: 64%;
  }

  .end-extraction__inner {
    min-height: 650px;
    padding: 56px 5% 48px;
  }

  .end-extraction__content {
    width: min(620px, 62%);
  }

  .end-extraction__label {
    min-width: 0;
    max-width: calc(100% - 58px);
    margin-bottom: 38px;
    padding: 16px 62px 16px 28px;
    font-size: 24px;
  }

  .end-extraction__title {
    font-size: clamp(52px, 6.2vw, 72px);
  }

  .end-extraction__lead {
    font-size: 17px;
  }

  .end-extraction__cards {
    gap: 12px;
  }

  .end-extraction__card {
    min-height: 160px;
    padding: 20px 12px 18px;
  }

  .end-extraction__card-icon {
    width: 60px;
    height: 60px;
  }

  .end-extraction__badge {
    right: 3%;
    bottom: 80px;
    width: 186px;
    height: 186px;
    padding: 22px;
  }

  .end-extraction__badge p {
    font-size: 17px;
  }

  .end-extraction__bottom-inner {
    gap: 28px;
    min-height: 132px;
  }

  .end-extraction__tooth {
    flex-basis: 94px;
    width: 94px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-extraction {
    background: #fbfaf6;
  }

  .end-extraction__bg {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .end-extraction__bg::before {
    background:
      linear-gradient(
        180deg,
        rgba(251,250,246,.06) 0%,
        rgba(251,250,246,.08) 44%,
        rgba(251,250,246,1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(251,250,246,.2) 0%,
        rgba(251,250,246,0) 38%
      );
  }

  .end-extraction__bg img {
    object-position: center top;
  }

  .end-extraction__inner {
    min-height: auto;
    padding: 0 16px 42px;
  }

  .end-extraction__content {
    width: 100%;
  }

  .end-extraction__label {
    min-width: 0;
    width: calc(100% - 28px);
    max-width: none;
    margin: -34px 0 30px;
    padding: 13px 34px 13px 18px;
    font-size: 18px;
    letter-spacing: .06em;
  }

  .end-extraction__label::after {
    right: -28px;
    border-top-width: 54px;
    border-right-width: 28px;
  }

  .end-extraction__title {
    font-size: 35px;
    line-height: 1.45;
    letter-spacing: .06em;
  }

  .end-extraction__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
  }

  .end-extraction__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .end-extraction__card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 16px 10px;
    text-align: left;
  }

  .end-extraction__card-icon {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .end-extraction__card p {
    font-size: 16px;
    line-height: 1.6;
  }

.end-extraction__badge {
  position: absolute;
  top: -200px;
  left: 16px;
  width: 150px;
  height: 150px;
}

  .end-extraction__badge p {
    font-size: 13px;
    line-height: 1.65;
  }

  .end-extraction__bottom-inner {
    display: block;
    min-height: auto;
    padding: 26px 16px 30px;
    text-align: center;
  }

  .end-extraction__tooth {
    width: 84px;
    margin: 0 auto 14px;
  }

  .end-extraction__bottom p {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: .07em;
  }

  .end-extraction__bottom p::after {
    width: 220px;
    bottom: -14px;
  }
}

/*==================================================================================================================================

  *神戸三宮アステオ歯科の根管治療3つの楯

==================================================================================================================================*/
.end-shield {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.98) 0%, rgba(255,255,255,.78) 36%, transparent 68%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-shield::before,
.end-shield::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(181,138,42,.22);
  border-radius: 50%;
  pointer-events: none;
}

.end-shield::before {
  top: -180px;
  left: -210px;
}

.end-shield::after {
  top: -160px;
  right: -210px;
}

.end-shield * {
  box-sizing: border-box;
}

.end-shield__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 72px 4% 64px;
}

.end-shield__head {
  text-align: center;
}

.end-shield__sub {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  padding: 0 86px;
  color: #071b3a;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .12em;
}

.end-shield__sub::before,
.end-shield__sub::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 64px;
  height: 1px;
  background: #b58a2a;
}

.end-shield__sub::before {
  left: 0;
}

.end-shield__sub::after {
  right: 0;
}

.end-shield__title {
  margin: 0;
  color: #071b3a;
  font-size: 65px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .12em;
}

.end-shield__title-marker {
  position: relative;
  display: inline-block;
  padding: 0 .08em;
  color: #071b3a;
  z-index: 1;
}

.end-shield__title-marker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .12em;
  height: .28em;
  background: rgba(181, 138, 42, .22);
  z-index: -1;
}

.end-shield__title-marker span {
  color: #b58a2a;
  font-size: 1.3em;
  line-height: 1;
}

.end-shield__lead {
  margin: 20px 0 0;
  color: #071b3a;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-shield__cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 38px;
}

.end-shield__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: visible; /* hidden → visible に変更 */
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(181,138,42,.22);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20,28,45,.09);
}

.end-shield__num {
  position: absolute;
  top: -30px;
  left: -30px; /* -22px だと切れやすいので調整 */
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 35% 24%, #143464 0%, #071b3a 74%);
  border-radius: 50%;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(7,27,58,.24);
}
.end-shield__card-head {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
  min-height: 124px;
  background: linear-gradient(135deg, #071b3a 0%, #0d3264 100%);
  color: #fff;
}

.end-shield__icon {
  position: relative;
  z-index: 2;
  width: 124px;
  height: 124px;
  margin-left: 18px;
  margin-bottom: -28px;
}

.end-shield__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-shield__head-text {
  padding: 22px 10px 20px 24px;
}

.end-shield__head-text p {
  margin: 0 0 6px;
  color: #b58a2a;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}

.end-shield__head-text h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
}

.end-shield__body {
  flex: 1;
  padding: 38px 30px 26px;
  text-align: center;
}

.end-shield__body h4 {
  margin: 0;
  color: #b58a2a;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .08em;
}

.end-shield__line {
  display: block;
  width: 220px;
  max-width: 80%;
  height: 1px;
  margin: 18px auto 20px;
  background: linear-gradient(90deg, transparent 0%, #b58a2a 50%, transparent 100%);
}

.end-shield__body p {
  margin: 0;
  color: #071b3a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.95;
  letter-spacing: .07em;
}

.end-shield__image {
  margin: 0 18px 18px;
  overflow: hidden;
  border-radius: 8px;
}

.end-shield__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.end-shield__arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b58a2a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
  text-align: center;
}

.end-shield__arrow::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 26px solid #b58a2a;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 6px rgba(181,138,42,.18));
}

.end-shield__arrow span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 78px;
  writing-mode: vertical-rl;
}

.end-shield__bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 46px;
  background:
    radial-gradient(circle at 88% 50%, rgba(255,255,255,.18) 0%, transparent 28%),
    linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  border: 2px solid rgba(181,138,42,.7);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20,28,45,.13);
}

.end-shield__bottom-content {
  position: relative;
  z-index: 1;
  padding-left: 64px;
  text-align: center;
}

.end-shield__bottom-main {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .08em;
}

.end-shield__bottom-main span {
  color: #b58a2a;
}

.end-shield__bottom-line {
  display: block;
  width: 520px;
  max-width: 90%;
  height: 1px;
  margin: 16px auto;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.9) 50%, transparent 100%);
}

.end-shield__bottom-sub {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.8;
  letter-spacing: .08em;
}

.end-shield__bottom-img {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 150px;
}

.end-shield__bottom-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 190px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-shield__inner {
    padding: 64px 5% 58px;
  }

  .end-shield__cards {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 680px;
    margin: 36px auto 0;
  }

  .end-shield__arrow {
    min-height: 34px;
  }

  .end-shield__arrow::before {
    top: 50%;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 22px solid #b58a2a;
    border-bottom: 0;
  }

  .end-shield__arrow span {
    margin-top: 0;
    writing-mode: horizontal-tb;
    transform: translateY(30px);
  }

  .end-shield__bottom {
    grid-template-columns: 1fr;
    padding: 30px 34px;
  }

  .end-shield__bottom-content {
    padding-left: 0;
  }

  .end-shield__bottom-img {
    max-width: 360px;
    min-height: 130px;
    margin: 0 auto;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-shield__inner {
    padding: 54px 16px 48px;
  }

  .end-shield__sub {
    padding: 0 46px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .07em;
  }

  .end-shield__sub::before,
  .end-shield__sub::after {
    width: 34px;
  }

  .end-shield__title {
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: .07em;
  }

  .end-shield__title span {
    font-size: 1.25em;
  }

  .end-shield__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
    text-align: left;
  }

  .end-shield__cards {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 30px;
  }

  .end-shield__card {
    border-radius: 10px;
  }

  .end-shield__num {
    top: -12px;
    left: -12px;
    width: 55px;
    height: 55px;
    font-size: 21px;
  }

  .end-shield__card-head {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 108px;
  }

  .end-shield__icon {
    width: 92px;
    height: 92px;
    margin-left: 18px;
    margin-bottom: -22px;
  }

  .end-shield__head-text {
    padding: 18px 16px 16px 28px;
  }

  .end-shield__head-text p {
    font-size: 14px;
  }

  .end-shield__head-text h3 {
    font-size: 22px;
  }

  .end-shield__body {
    padding: 32px 20px 22px;
  }

  .end-shield__body h4 {
    font-size: 19px;
    line-height: 1.65;
  }

  .end-shield__line {
    margin: 16px auto 18px;
  }

  .end-shield__body p {
    font-size: 14.5px;
    line-height: 1.9;
    letter-spacing: .05em;
  }

  .end-shield__image {
    margin: 0 14px 14px;
  }

  .end-shield__arrow {
    min-height: 28px;
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .end-shield__arrow::before {
    top: 50%;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 18px solid #b58a2a;
    border-bottom: 0;
  }

  .end-shield__arrow span {
    margin-top: 0;
    font-size: 12px;
    writing-mode: horizontal-tb;
    transform: translateY(26px);
  }

  .end-shield__bottom {
    display: block;
    margin-top: 28px;
    padding: 24px 18px 20px;
    border-radius: 10px;
  }

  .end-shield__bottom::before,
  .end-shield__bottom::after {
    display: none;
  }

  .end-shield__bottom-content {
    padding-left: 0;
  }

  .end-shield__bottom-main {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: .05em;
  }

  .end-shield__bottom-line {
    margin: 14px auto;
  }

  .end-shield__bottom-sub {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .05em;
  }

  .end-shield__bottom-img {
    min-height: 120px;
    margin-top: 18px;
  }

  .end-shield__bottom-img img {
    max-height: 150px;
  }
}

/*==================================================================================================================================

  *マイクロスコープを使う理由

==================================================================================================================================*/
.end-micro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.78) 34%, transparent 62%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-micro * {
  box-sizing: border-box;
}

.end-micro__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 0 32px 4%;
}

.end-micro__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 47%) minmax(0, 53%);
  align-items: start;
  gap: 34px;
}

.end-micro__content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.end-micro__en {
  position: absolute;
  top: -18px;
  left: 0;
  z-index: -1;
  margin: 0;
  color: rgba(7, 27, 58, .055);
  font-family: "Times New Roman", serif;
  font-size: clamp(68px, 8vw, 120px);
  font-style: italic;
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
}

.end-micro__title {
  margin: 0;
  color: #3b3835;
  font-size: clamp(54px, 5.3vw, 86px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: .12em;
}

.end-micro__title span {
  display: block;
  color: #b58a2a;
  font-size: .52em;
  line-height: 1.45;
  letter-spacing: .12em;
}

.end-micro__line {
  position: relative;
  width: min(520px, 100%);
  height: 1px;
  margin: 28px 0 34px;
  background: linear-gradient(90deg, #b58a2a 0%, rgba(181,138,42,.35) 47%, transparent 100%);
}

.end-micro__line::before,
.end-micro__line::after {
  content: "";
  position: absolute;
  top: 50%;
  border: 1px solid #b58a2a;
  transform: translateY(-50%) rotate(45deg);
}

.end-micro__line::before {
  left: 47%;
  width: 10px;
  height: 10px;
  background: #fbfaf6;
}

.end-micro__line::after {
  left: calc(47% + 5px);
  width: 4px;
  height: 4px;
  background: #b58a2a;
}

.end-micro__lead {
  margin: 0;
  color: #1f2329;
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .08em;
}

.end-micro__lead span {
  color: #071b3a;
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(181,138,42,.18) 62%);
}

.end-micro__points {
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
  margin-top: 38px;
}

.end-micro__point {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(181,138,42,.18);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20,28,45,.06);
}

.end-micro__point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(181,138,42,.5);
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  transform: translateX(-8px);
}

.end-micro__point-icon img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.end-micro__point p {
  margin: 0;
  padding: 14px 22px 14px 10px;
  color: #2c2a27;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .08em;
}

.end-micro__point span {
  color: #071b3a;
  background: linear-gradient(transparent 62%, rgba(7,27,58,.12) 62%);
}

.end-micro__visual {
  position: relative;
  min-height: 610px;
  padding-top: 0;
}

.end-micro__scope {
  position: absolute;
  top: -72px;
  right: -4%;
  width: min(680px, 100%);
  z-index: 1;
}

.end-micro__scope::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(251,250,246,0), rgba(251,250,246,.92));
}

.end-micro__scope img {
  display: block;
  width: 100%;
  height: auto;
}

.end-micro__badge {
  position: absolute;
  top: 78px;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 148px;
  border: 2px solid rgba(181,138,42,.7);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow:
    inset 0 0 0 7px rgba(255,255,255,.72),
    0 12px 26px rgba(20,28,45,.08);
  text-align: center;
}

.end-micro__badge p {
  margin: 0;
  color: #b58a2a;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: .08em;
}

.end-micro__badge strong {
  display: inline-block;
  font-size: 54px;
  font-weight: 500;
  line-height: .95;
}

.end-micro__badge span {
  color: #3b3835;
  font-size: 16px;
}

.end-micro__dash {
  position: absolute;
  top: 160px;
  left: 18%;
  z-index: 2;
  width: 1px;
  height: 214px;
  border-left: 3px dotted rgba(181,138,42,.52);
  transform: rotate(13deg);
  transform-origin: top;
}

.end-micro__compare {
  position: absolute;
  right: -20px;
  bottom: -30px;
  z-index: 4;
  width: 700px;
  padding: 18px 20px 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(181,138,42,.45);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20,28,45,.09);
}

.end-micro__compare-title {
  margin: 0 0 14px;
  color: #3b3835;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: center;
}

.end-micro__compare-images {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  align-items: center;
  gap: 10px;
}

.end-micro__compare-item {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.end-micro__compare-item p {
  margin: 0;
  padding: 7px 10px;
  background: linear-gradient(135deg, #343434 0%, #151515 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .06em;
  text-align: center;
}

.end-micro__compare-item p span {
  color: #b58a2a;
  font-size: 1.2em;
}

.end-micro__compare-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.end-micro__compare-arrow {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 24px solid #b58a2a;
  filter: drop-shadow(0 4px 6px rgba(181,138,42,.22));
}

.end-micro__bottom {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at 14% 50%, rgba(255,255,255,.12) 0%, transparent 27%),
    radial-gradient(circle at 82% 62%, rgba(255,255,255,.08) 0%, transparent 32%),
    linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  border-top: 2px solid rgba(181,138,42,.7);
  border-bottom: 2px solid rgba(181,138,42,.7);
}

.end-micro__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: 1440px;
  min-height: 182px;
  margin: 0 auto;
  padding: 28px 4%;
}

.end-micro__bottom-tooth {
  flex: 0 0 150px;
  width: 150px;
}

.end-micro__bottom-tooth img {
  display: block;
  width: 100%;
  height: auto;
}

.end-micro__bottom p {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .12em;
}

.end-micro__bottom span {
  color: #b58a2a;
  font-size: 1.22em;
}

.sp-only {
  display: none;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-micro__inner {
    padding: 64px 5% 34px;
  }

  .end-micro__main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .end-micro__content {
    width: 100%;
  }

  .end-micro__visual {
    min-height: 610px;
  }

  .end-micro__scope {
    top: -20px;
    right: 0;
    width: min(620px, 88%);
  }

  .end-micro__badge {
    top: 70px;
    right: 2%;
  }

  .end-micro__dash {
    top: 184px;
    left: 28%;
  }

  .end-micro__compare {
    right: 0;
    bottom: 10px;
    width: min(620px, 100%);
  }

  .end-micro__bottom-inner {
    gap: 36px;
  }

  .end-micro__bottom-tooth {
    flex-basis: 120px;
    width: 120px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-micro__inner {
    padding: 54px 10px 32px;
  }

  .end-micro__main {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .end-micro__content {
    order: 0;
    padding-top: 0;
  }

  .end-micro__visual {
    order: 1;
    min-height: auto;
    padding-top: 0;
  }

  .end-micro__en {
    top: -8px;
    font-size: 58px;
  }

  .end-micro__title {
    font-size: 44px;
    line-height: 1.28;
    letter-spacing: .07em;
  }

  .end-micro__title span {
    font-size: 26px;
    letter-spacing: .08em;
  }

  .end-micro__line {
    margin: 22px 0 24px;
  }

  .end-micro__lead {
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: .05em;
  }

  .end-micro__points {
    gap: 10px;
    margin-top: 28px;
  }

  .end-micro__point {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 64px;
  }

  .end-micro__point-icon {
    width: 62px;
    height: 62px;
    transform: translateX(-4px);
  }

  .end-micro__point-icon img {
    width: 36px;
    height: 36px;
  }

  .end-micro__point p {
    padding: 12px 14px 12px 8px;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .04em;
  }

  .end-micro__visual {
    order: 0;
    min-height: auto;
    padding-top: 0;
  }

  .end-micro__scope {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 0 auto;
  }

  .end-micro__scope::after {
    height: 28%;
  }

  .end-micro__badge {
    top: 16px;
    right: 8px;
    width: 104px;
    height: 104px;
  }

  .end-micro__badge p {
    font-size: 14px;
  }

  .end-micro__badge strong {
    font-size: 36px;
  }

  .end-micro__badge span {
    font-size: 11px;
  }

  .end-micro__dash {
    display: none;
  }

  .end-micro__compare {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    padding: 14px 12px 14px;
  }

  .end-micro__compare-title {
    font-size: 15px;
  }

  .end-micro__compare-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .end-micro__compare-arrow {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 18px solid #b58a2a;
    border-bottom: 0;
  }

  .end-micro__compare-item p {
    font-size: 13px;
  }

  .end-micro__bottom-inner {
    display: block;
    min-height: auto;
    padding: 26px 16px 30px;
    text-align: center;
  }

  .end-micro__bottom-tooth {
    width: 88px;
    margin: 0 auto 14px;
  }

  .end-micro__bottom p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .06em;
  }

  .end-micro__bottom span {
    font-size: 1.14em;
  }

  .sp-only {
    display: block;
  }
}

/*==================================================================================================================================

  *再発を防ぐために大切なこと

==================================================================================================================================*/
.end-reinfection {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.72) 36%, transparent 68%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-reinfection * {
  box-sizing: border-box;
}

.end-reinfection::before {
  content: "";
  position: absolute;
  inset: auto -10% -150px;
  height: 300px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(181,138,42,.16) 0%, transparent 60%);
  pointer-events: none;
}

.end-reinfection__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 4% 64px;
}

.end-reinfection__box {
  position: relative;
  overflow: hidden;
  padding: 48px 5% 32px;
  background: rgba(255,255,255,.78);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(20,28,45,.08);
}

.end-reinfection__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.64) 0%, rgba(255,255,255,0) 40%),
    radial-gradient(circle at 88% 18%, rgba(181,138,42,.07) 0%, transparent 34%);
  pointer-events: none;
}

.end-reinfection__head {
  position: relative;
  z-index: 1;
  text-align: center;
}

.end-reinfection__ornament {
  position: relative;
  width: min(760px, 100%);
  height: 82px;
  margin: 0 auto 8px;
}

.end-reinfection__ornament::before,
.end-reinfection__ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 98px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.72) 100%);
}

.end-reinfection__ornament::before {
  left: 0;
}

.end-reinfection__ornament::after {
  right: 0;
  background: linear-gradient(90deg, rgba(181,138,42,.72) 0%, transparent 100%);
}

.end-reinfection__ornament span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
}

.end-reinfection__ornament span::before,
.end-reinfection__ornament span::after {
  content: "✦";
  position: absolute;
  top: 50%;
  color: #b58a2a;
  font-size: 22px;
  transform: translateY(-50%);
}

.end-reinfection__ornament span::before {
  left: -38px;
}

.end-reinfection__ornament span::after {
  right: -38px;
}

.end-reinfection__ornament img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.end-reinfection__title {
  margin: 0;
  color: #3b3835;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .1em;
}

.end-reinfection__title span:first-child {
  color: #071b3a;
}

.end-reinfection__title span:last-child {
  color: #b58a2a;
}

.end-reinfection__lead {
  margin: 18px 0 0;
  color: #071b3a;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-reinfection__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 44px;
}

.end-reinfection__step {
  position: relative;
  min-height: 310px;
  padding: 56px 22px 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(181,138,42,.22);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(20,28,45,.06);
  text-align: center;
}

.end-reinfection__num {
  position: absolute;
  left: 50%;
  top: -28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: radial-gradient(circle at 35% 24%, #143464 0%, #071b3a 74%);
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: .04em;
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(7,27,58,.2);
}

.end-reinfection__step h3 {
  margin: 0;
  color: #071b3a;
  font-size: clamp(21px, 1.75vw, 28px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .08em;
}

.end-reinfection__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  max-width: 90%;
  height: 160px;
  margin: 0 auto;
}

.end-reinfection__icon img {
  display: block;
  width: 130%;
  height: 130%;
  object-fit: contain;
}

.end-reinfection__arrow {
  position: relative;
  z-index: 2;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 24px solid #b58a2a;
  filter: drop-shadow(0 4px 6px rgba(181,138,42,.2));
}

.end-reinfection__message {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin: 28px auto 0;
  padding: 22px 52px 22px 72px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(181,138,42,.28);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20,28,45,.06);
}

.end-reinfection__message-icon {
  width: 180px;
}

.end-reinfection__message-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.end-reinfection__message-text {
  min-width: 0;
}

.end-reinfection__message-sub {
  margin: 0 0 4px;
  color: #071b3a;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .1em;
}

.end-reinfection__message-main {
  margin: 0;
  color: #071b3a;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
}

.end-reinfection__message-main span {
  color: #b58a2a;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-reinfection__inner {
    padding: 64px 5% 58px;
  }

  .end-reinfection__box {
    padding: 44px 4% 30px;
  }

  .end-reinfection__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 22px;
  }

  .end-reinfection__arrow {
    display: none;
  }

  .end-reinfection__step {
    min-height: 280px;
  }

  .end-reinfection__message {
    grid-template-columns: 150px minmax(0, 1fr);
    padding: 22px 34px;
  }

  .end-reinfection__message-icon {
    width: 150px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-reinfection__inner {
    padding: 54px 16px 48px;
  }

  .end-reinfection__box {
    padding: 36px 16px 22px;
    border-radius: 20px;
  }

  .end-reinfection__ornament {
    height: 58px;
    margin-bottom: 8px;
  }

  .end-reinfection__ornament::before,
  .end-reinfection__ornament::after {
    width: calc(50% - 58px);
  }

  .end-reinfection__ornament span {
    width: 58px;
    height: 58px;
  }

  .end-reinfection__ornament span::before,
  .end-reinfection__ornament span::after {
    font-size: 15px;
  }

  .end-reinfection__ornament span::before {
    left: -24px;
  }

  .end-reinfection__ornament span::after {
    right: -24px;
  }

  .end-reinfection__ornament img {
    width: 100px;
    height: 100px;
  }

  .end-reinfection__title {
    font-size: 33px;
    line-height: 1.55;
    letter-spacing: .06em;
  }

  .end-reinfection__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
    text-align: left;
  }

  .end-reinfection__steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 38px;
  }

  .end-reinfection__step {
    width: 100%;
    min-height: auto;
    padding: 42px 18px 24px;
    border-radius: 10px;
  }

  .end-reinfection__num {
    top: -24px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .end-reinfection__step h3 {
    font-size: 21px;
    line-height: 1.55;
    letter-spacing: .06em;
  }

  .end-reinfection__icon {
    width: 170px;
    height: 140px;
    margin-top: 22px;
  }

  .end-reinfection__arrow {
    display: block;
    align-self: center;
    margin: -22px 0 10px;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 20px solid #b58a2a;
    border-bottom: 0;
  }

  .end-reinfection__message {
    display: block;
    margin-top: 30px;
    padding: 18px 16px 20px;
    text-align: center;
  }

  .end-reinfection__message-icon {
    width: 122px;
    margin: 0 auto 12px;
  }

  .end-reinfection__message-sub {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .05em;
  }

  .end-reinfection__message-main {
    font-size: 23px;
    line-height: 1.45;
    letter-spacing: .05em;
  }
}

/*==================================================================================================================================

  *保険診療と自費の根管治療の違い

==================================================================================================================================*/
.end-compare {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.74) 38%, transparent 70%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-compare * {
  box-sizing: border-box;
}

.end-compare__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  max-width: 420px;
  opacity: .22;
  z-index: 0;
}

.end-compare__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.end-compare__inner {
  position: relative;
  z-index: 1;
  max-width: 98%;
  margin: 0 auto;
  padding: 72px 4% 64px;
}

.end-compare__head {
  text-align: center;
}

.end-compare__title {
  margin: 0;
  color: #3b3835;
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .12em;
}

.end-compare__title span:first-child {
  color: #071b3a;
}

.end-compare__title span:nth-child(2) {
  color: #b58a2a;
}

.end-compare__lead {
  margin: 14px 0 0;
  color: #1f2329;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-compare__table {
  overflow: hidden;
  display: grid;
  margin-top: 34px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(181,138,42,.2);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20,28,45,.08);
}

.end-compare__row {
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  min-height: 104px;
  border-bottom: 1px solid rgba(7,27,58,.12);
}

.end-compare__row:last-child {
  border-bottom: 0;
}

.end-compare__row--head {
  min-height: 70px;
}

.end-compare__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  color: #071b3a;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .08em;
  text-align: center;
  border-right: 1px solid rgba(7,27,58,.12);
}

.end-compare__cell:last-child {
  border-right: 0;
}

.end-compare__cell--label {
  justify-content: flex-start;
  gap: 18px;
  padding: 22px 10px;
  color: #2c2a27;
  background: rgba(255,255,255,.56);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  text-align: left;
}

.end-compare__cell--label img {
  flex: 0 0 42px;
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.end-compare__cell--label span {
  display: inline-block;
}

.end-compare__cell--insurance {
  background: linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  color: #fff;
}

.end-compare__cell--private {
  background: linear-gradient(135deg, #a77a1f 0%, #c39a3c 100%);
  color: #fff;
}

.end-compare__plan-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .12em;
}

.end-compare__plan-icon {
  font-size: .9em;
}

.end-compare__cell--gold {
  color: #8b651f;
}

.end-compare__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
  padding: 15px 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(181,138,42,.55);
  border-radius: 6px;
}

.end-compare__message-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
}

.end-compare__message-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-compare__message p {
  margin: 0;
  color: #2c2a27;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .08em;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-compare__inner {
    padding: 64px 5% 58px;
  }

  .end-compare__row {
    grid-template-columns: 190px 1fr 1fr;
  }

  .end-compare__cell {
    padding: 20px 18px;
    font-size: 16px;
  }

  .end-compare__cell--label {
    gap: 12px;
    padding: 20px 18px;
    font-size: 17px;
  }

  .end-compare__cell--label img {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-compare__bg {
    width: 52%;
    opacity: .13;
  }

  .end-compare__inner {
    padding: 54px 16px 48px;
  }

  .end-compare__title {
    font-size: 31px;
    line-height: 1.55;
    letter-spacing: .06em;
  }

  .end-compare__lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
    text-align: left;
  }

  .end-compare__table {
    display: block;
    margin-top: 28px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .end-compare__row--head {
    display: none !important;
  }

  .end-compare__row {
    display: block;
    min-height: auto;
    margin-bottom: 18px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(181,138,42,.2);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(20,28,45,.06);
    overflow: hidden;
  }

  .end-compare__row:last-child {
    margin-bottom: 0;
  }

  .end-compare__cell {
    display: block;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(7,27,58,.1);
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: .05em;
    text-align: left;
  }

  .end-compare__cell:last-child {
    border-bottom: 0;
  }

  .end-compare__cell--label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
  }

  .end-compare__cell--label img {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
  }

  .end-compare__cell:not(.end-compare__cell--label)::before {
    content: attr(data-label);
    display: inline-block;
    min-width: 84px;
    margin: 0 0 8px;
    padding: 5px 12px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .06em;
    text-align: center;
  }

  .end-compare__cell[data-label="保険診療"]::before {
    background: #071b3a;
  }

  .end-compare__cell[data-label="自費診療"]::before {
    background: #b58a2a;
  }

  .end-compare__cell--gold {
    color: #8b651f;
  }

  .end-compare__message {
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 14px 13px;
  }

  .end-compare__message-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .end-compare__message p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .05em;
  }
}

/*==================================================================================================================================

  *根管治療の流れ

==================================================================================================================================*/
.end-flow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.98) 0%, rgba(255,255,255,.75) 38%, transparent 70%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-flow * {
  box-sizing: border-box;
}

.end-flow__inner {
  max-width: 98%;
  margin: 0 auto;
  padding: 72px 3.2% 64px;
}

.end-flow__head {
  text-align: center;
}

.end-flow__ornament {
  position: relative;
  width: min(620px, 100%);
  height: 62px;
  margin: 0 auto 8px;
}

.end-flow__ornament::before,
.end-flow__ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 64px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.72) 100%);
}

.end-flow__ornament::before {
  left: 0;
}

.end-flow__ornament::after {
  right: 0;
  background: linear-gradient(90deg, rgba(181,138,42,.72) 0%, transparent 100%);
}

.end-flow__ornament span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
}

.end-flow__ornament img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-flow__title {
  margin: 0;
  color: #3b3835;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .14em;
}

.end-flow__title span {
  color: #b58a2a;
}

.end-flow__lead {
  margin: 14px 0 0;
  color: #1f2329;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-flow__steps {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr 18px 1fr 18px 1fr;
  align-items: start;
  gap: 0;
  margin-top: 52px;
}

.end-flow__item {
  position: relative;
  min-width: 0;
}

.end-flow__num {
  position: absolute;
  left: 50%;
  top: -40px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: radial-gradient(circle at 35% 24%, #143464 0%, #071b3a 74%);
  border: 2px solid rgba(181,138,42,.8);
  border-radius: 50%;
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(7,27,58,.2);
}

.end-flow__card {
  position: relative;
  min-height: 432px;
  padding: 58px 14px 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(181,138,42,.32);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20,28,45,.07);
  text-align: center;
  background-image: repeating-linear-gradient(324deg, #728eae0d, #728eae0d 1px, transparent 1px, transparent 15px);
}

.end-flow__card h3 {
  margin: 0;
  padding-bottom: 20px;
  color: #1f2329;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .06em;
  border-bottom: 1px dashed rgba(181,138,42,.52);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.end-flow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin: 24px auto 18px;
}

.end-flow__icon img {
  display: block;
  width: 150%;
  height: 150%;
  object-fit: contain;
}

.end-flow__image {
  overflow: hidden;
  margin-top: 0;
  border-radius: 8px;
}

.end-flow__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.end-flow__text {
  margin: 20px 0 0;
  color: #1f2329;
  font-size: clamp(13px, 1.02vw, 16px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .05em;
  text-align: left;
}

.end-flow__arrow {
  position: relative;
  align-self: center;
  width: 0;
  height: 0;
  margin-top: 178px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 18px solid #b58a2a;
  filter: drop-shadow(0 4px 6px rgba(181,138,42,.2));
}

.end-flow__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(1180px, 100%);
  margin: 52px auto 0;
  padding: 18px 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(181,138,42,.5);
  border-radius: 8px;
  background-image: repeating-linear-gradient(324deg, #728eae0d, #728eae0d 1px, transparent 1px, transparent 15px);
}

.end-flow__message-icon {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
}

.end-flow__message-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-flow__message p {
  margin: 0;
  color: #071b3a;
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .08em;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-flow__inner {
    padding: 64px 5% 58px;
  }

  .end-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 24px;
    max-width: 820px;
    margin: 54px auto 0;
  }

  .end-flow__arrow {
    display: none;
  }

  .end-flow__card {
    min-height: 400px;
  }

  .end-flow__text {
    font-size: 15px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-flow__inner {
    padding: 54px 16px 48px;
  }

  .end-flow__ornament {
    height: 48px;
    margin-bottom: 8px;
  }

  .end-flow__ornament::before,
  .end-flow__ornament::after {
    width: calc(50% - 48px);
  }

  .end-flow__ornament span {
    width: 48px;
    height: 48px;
  }

  .end-flow__title {
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: .08em;
  }

  .end-flow__lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
  }

  .end-flow__steps {
    display: flex;
    flex-direction: column;
    gap: 38px;
    margin-top: 44px;
  }

  .end-flow__item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .end-flow__num {
    top: -28px;
    width: 56px;
    height: 56px;
    font-size: 27px;
  }

  .end-flow__card {
    min-height: auto;
    padding: 42px 14px 14px;
    border-radius: 10px;
  }

  .end-flow__card h3 {
    padding-bottom: 14px;
    font-size: 19px;
    line-height: 1.55;
  }

  .end-flow__icon {
    width: 74px;
    height: 74px;
    margin: 18px auto 14px;
  }

  .end-flow__image img {
    aspect-ratio: 1.55 / 1;
  }

  .end-flow__text {
    margin-top: 12px;
    padding: 0 4px;
    font-size: 14.5px;
    line-height: 1.85;
    letter-spacing: .04em;
  }

  .end-flow__arrow {
    display: block;
    align-self: center;
    margin: -20px 0 -18px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 18px solid #b58a2a;
    border-bottom: 0;
  }

  .end-flow__message {
    align-items: flex-start;
    gap: 12px;
    margin-top: 34px;
    padding: 14px 13px;
  }

  .end-flow__message-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .end-flow__message p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .05em;
  }
}

/*==================================================================================================================================

  *根管治療の症例

==================================================================================================================================*/
.end-treatment-case {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.445) 0%, rgba(255, 255, 255, 0.308) 38%, transparent 70%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.171) 0%, rgba(247,243,235,.86) 100%),
    url("img/end/end-casebg.png") center center / cover no-repeat;
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-treatment-case * {
  box-sizing: border-box;
}

.end-treatment-case__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  max-width: 480px;
  opacity: .18;
  z-index: 0;
}

.end-treatment-case__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.end-treatment-case__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 72px 1% 64px;
}

.end-treatment-case__head {
  text-align: center;
}

.end-treatment-case__title {
  margin: 0;
  color: #3b3835;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .14em;
}

.end-treatment-case__title span {
  color: #b58a2a;
}

.end-treatment-case__line {
  position: relative;
  width: min(520px, 100%);
  height: 1px;
  margin: 18px auto 18px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.75) 50%, transparent 100%);
}

.end-treatment-case__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid #b58a2a;
  background: #fbfaf6;
  transform: translate(-50%, -50%) rotate(45deg);
}

.end-treatment-case__lead {
  margin: 0;
  color: #1f2329;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-treatment-case__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.end-treatment-case__card {
  position: relative;
  overflow: hidden;
  padding: 72px 20px 26px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(181,138,42,.18);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20,28,45,.08);
}

.end-treatment-case__label {
  position: absolute;
  top: 0;
  left: 18px;
  width: 74px;
  height: 74px;
  padding-top: 12px;
  background: linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  color: #b58a2a;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}

.end-treatment-case__label span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}

.end-treatment-case__label strong {
  display: block;
  margin-top: 3px;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
}

.end-treatment-case__card-title {
  min-height: 52px;
  margin: 0 0 22px;
  /* padding-left: 84px; */
  color: #071b3a;
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
}

.end-treatment-case__card-title span {
  color: #b58a2a;
}

.end-treatment-case__photos {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  align-items: center;
  gap: 8px;
}

.end-treatment-case__photo p {
  width: 84px;
  margin: 0 auto 8px;
  padding: 3px 8px;
  background: linear-gradient(135deg, #e7ebf0 0%, #f7f7f7 100%);
  color: #071b3a;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-align: center;
}

.end-treatment-case__photo p.is-after {
  background: linear-gradient(135deg, #a77a1f 0%, #c39a3c 100%);
  color: #fff;
}

.end-treatment-case__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 7px;
}

.end-treatment-case__photo-arrow {
  width: 12px;
  height: 12px;
  margin: 28px auto 0;
  border-top: 2px solid #b58a2a;
  border-right: 2px solid #b58a2a;
  transform: rotate(45deg);
}

.end-treatment-case__point {
  margin-top: 22px;
}

.end-treatment-case__point h4,
.end-treatment-case__result h4 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 14px;
  color: #8b651f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
}

.end-treatment-case__point h4::before,
.end-treatment-case__result h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 4px;
  height: 18px;
  background: #b58a2a;
  border-radius: 999px;
}

.end-treatment-case__icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.end-treatment-case__icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  padding: 0 8px;
  border-right: 1px solid rgba(181,138,42,.28);
  text-align: center;
}

.end-treatment-case__icons div:last-child {
  border-right: 0;
}

.end-treatment-case__icons img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.end-treatment-case__icons span {
  display: block;
  margin-top: 8px;
  color: #1f2329;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
}

.end-treatment-case__result {
  margin-top: 24px;
}

.end-treatment-case__result p {
  margin: 0;
  color: #1f2329;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .04em;
}

.end-treatment-case__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  padding: 20px 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 48%, rgba(255,255,255,.14) 0%, transparent 30%),
    linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  border: 2px solid rgba(181,138,42,.7);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(20,28,45,.13);
}

.end-treatment-case__bottom-tooth {
  width: 160px;
  margin: 0 auto;
}

.end-treatment-case__bottom-tooth img {
  display: block;
  width: 100%;
  height: auto;
}

.end-treatment-case__bottom-text {
  min-width: 0;
  text-align: center;
}

.end-treatment-case__bottom-main {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.35vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .08em;
}

.end-treatment-case__bottom-main span {
  color: #b58a2a;
}

.end-treatment-case__bottom-text ul {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 18px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,.22);
  list-style: none;
}

.end-treatment-case__bottom-text li {
  position: relative;
  color: #fff;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
}

.end-treatment-case__bottom-text li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  color: #b58a2a;
  border: 1px solid #b58a2a;
  font-size: 12px;
  line-height: 1;
}

.end-treatment-case__achievement {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 154px;
  margin-left: auto;
  background: rgba(255,255,255,.96);
  border: 2px solid rgba(181,138,42,.7);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 10px 24px rgba(20,28,45,.12);
}

.end-treatment-case__achievement p {
  margin: 0;
  color: #8b651f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
}

.end-treatment-case__achievement strong {
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.end-treatment-case__note {
  margin: 26px 0 0;
  color: #1f2329;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .08em;
  text-align: center;
}

.end-treatment-case__note::before,
.end-treatment-case__note::after {
  content: "✦";
  color: #b58a2a;
  margin: 0 18px;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-treatment-case__inner {
    padding: 64px 5% 58px;
  }

  .end-treatment-case__list {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 36px auto 0;
  }

  .end-treatment-case__card {
    padding: 72px 24px 26px;
  }

  .end-treatment-case__card-title {
    min-height: auto;
  }

  .end-treatment-case__bottom {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 30px;
  }

  .end-treatment-case__achievement {
    grid-column: 1 / -1;
    width: 140px;
    height: 140px;
    margin: 0 auto;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-treatment-case__bg {
    width: 58%;
    opacity: .12;
  }

  .end-treatment-case__inner {
    padding: 54px 16px 48px;
  }

  .end-treatment-case__title {
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: .08em;
  }

  .end-treatment-case__line {
    margin: 16px auto;
  }

  .end-treatment-case__lead {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
    text-align: left;
  }

  .end-treatment-case__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .end-treatment-case__card {
    padding: 66px 16px 22px;
    border-radius: 10px;
  }

  .end-treatment-case__label {
    left: 14px;
    width: 66px;
    height: 66px;
    padding-top: 10px;
  }

  .end-treatment-case__label span {
    font-size: 12px;
  }

  .end-treatment-case__label strong {
    font-size: 25px;
  }

  .end-treatment-case__card-title {
    min-height: auto;
    margin-bottom: 18px;
    padding-left: 0;
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: .04em;
    text-align: center;
  }

  .end-treatment-case__photos {
    /* grid-template-columns: 1fr; */
    gap: 10px;
  }

  .end-treatment-case__photo-arrow {
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 17px solid #b58a2a;
    border-bottom: 0;
    transform: none;
  }

  .end-treatment-case__photo img {
    aspect-ratio: 1.55 / 1;
  }

  .end-treatment-case__icons {
    gap: 8px;
  }

  .end-treatment-case__icons div {
    padding: 0 4px;
  }

  .end-treatment-case__icons img {
    width: 38px;
    height: 38px;
  }

  .end-treatment-case__icons span {
    font-size: 12px;
    line-height: 1.45;
  }

  .end-treatment-case__result p {
    font-size: 14px;
    line-height: 1.85;
  }

  .end-treatment-case__bottom {
    display: block;
    margin-top: 24px;
    padding: 24px 18px 22px;
    text-align: center;
  }

  .end-treatment-case__bottom-tooth {
    width: 94px;
    margin-bottom: 14px;
  }

  .end-treatment-case__bottom-main {
    font-size: 21px;
    line-height: 1.7;
    letter-spacing: .05em;
  }

  .end-treatment-case__bottom-text ul {
    display: block;
    margin-top: 16px;
    padding-top: 14px;
  }

  .end-treatment-case__bottom-text li {
    font-size: 14px;
    line-height: 1.8;
  }

  .end-treatment-case__bottom-text li + li {
    margin-top: 6px;
  }

  .end-treatment-case__achievement {
    width: 126px;
    height: 126px;
    margin: 18px auto 0;
  }

  .end-treatment-case__achievement p {
    font-size: 12px;
  }

  .end-treatment-case__achievement strong {
    font-size: 28px;
  }

  .end-treatment-case__note {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: .05em;
  }

  .end-treatment-case__note::before,
  .end-treatment-case__note::after {
    margin: 0 8px;
  }
}

/*==================================================================================================================================

  *ドクター紹介

==================================================================================================================================*/
.end-doctor {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    radial-gradient(circle at 72% 42%, rgba(255,255,255,.18) 0%, rgba(255,255,255,.8) 34%, rgba(255,255,255,.96) 64%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-doctor * {
  box-sizing: border-box;
}

.end-doctor__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: min(58%, 860px);
  height: 100%;
  z-index: 0;
}

.end-doctor__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251,250,246,1) 0%, rgba(251,250,246,.72) 22%, rgba(251,250,246,.08) 58%, rgba(251,250,246,0) 100%),
    linear-gradient(180deg, rgba(251,250,246,.06) 0%, rgba(251,250,246,0) 58%, rgba(251,250,246,.65) 100%);
  pointer-events: none;
}

.end-doctor__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.end-doctor__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  min-height: 760px;
  margin: 0 auto;
  padding: 46px 4% 54px;
}

.end-doctor__content {
  width: 60%;
}

.end-doctor__access {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 500px;
  margin-bottom: 38px;
  padding: 15px 86px 15px 62px;
  background: linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}

.end-doctor__access span {
  color: #b58a2a;
  font-size: 1.15em;
}

.end-doctor__title {
  margin: 0;
  color: #3b3835;
  font-size: 75px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .16em;
}

.end-doctor__title span {
  color: #b58a2a;
}

.end-doctor__line {
  position: relative;
  width: min(610px, 100%);
  height: 1px;
  margin: 28px 0 34px;
  background: linear-gradient(90deg, #b58a2a 0%, rgba(181,138,42,.65) 44%, transparent 100%);
}

.end-doctor__line::before,
.end-doctor__line::after {
  content: "";
  position: absolute;
  top: 50%;
  border: 1px solid #b58a2a;
  transform: translateY(-50%) rotate(45deg);
}

.end-doctor__line::before {
  left: 46%;
  width: 12px;
  height: 12px;
  background: #fbfaf6;
}

.end-doctor__line::after {
  left: calc(46% + 5px);
  width: 4px;
  height: 4px;
  background: #b58a2a;
}

.end-doctor__lead {
  margin: 0;
  color: #1f2329;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-doctor__lead span {
  color: #071b3a;
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(181,138,42,.18) 62%);
}

.end-doctor__profile {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  width: min(600px, 100%);
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(181,138,42,.42);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20,28,45,.06);
}

.end-doctor__profile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 20px 22px;
  border-right: 1px solid rgba(7,27,58,.14);
}

.end-doctor__profile-logo img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
}

.end-doctor__profile-text {
  padding: 20px 28px;
}

.end-doctor__profile-text p {
  margin: 0;
  color: #1f2329;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .08em;
}

.end-doctor__message {
  position: relative;
  width: min(690px, 100%);
  margin-top: 54px;
  padding: 30px 56px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(181,138,42,.45);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20,28,45,.06);
}

.end-doctor__message::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(181,138,42,.2);
  border-radius: 5px;
  pointer-events: none;
}

.end-doctor__quote {
  position: absolute;
  top: 18px;
  left: 34px;
  color: rgba(181,138,42,.72);
  font-size: 72px;
  line-height: 1;
}

.end-doctor__message p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #1f2329;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .08em;
  text-align: center;
}

.end-doctor__message span {
  color: #b58a2a;
  font-size: 1.12em;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-doctor {
    min-height: auto;
  }

  .end-doctor__bg {
    width: 54%;
  }

  .end-doctor__inner {
    min-height: auto;
    padding: 44px 5% 54px;
  }

  .end-doctor__content {
    width: 58%;
  }

  .end-doctor__access {
    min-width: 0;
    padding-left: 34px;
    padding-right: 62px;
  }

  .end-doctor__message {
    padding: 26px 34px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-doctor {
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(251,250,246,.96) 0%, rgba(247,243,235,.98) 100%);
  }

  .end-doctor__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: auto;
    padding: 0px 16px 46px;
    margin-top: -70px;
  }

  .end-doctor__content {
    width: 100%;
  }

  .end-doctor__access {
    min-width: 0;
    width: calc(100% - 28px);
    margin: 0 0 32px;
    padding: 13px 36px 13px 18px;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: .05em;
  }

  .end-doctor__access::after {
    right: -28px;
    width: 28px;
  }

  .end-doctor__access::before {
    right: -29px;
    width: 42px;
  }

  .end-doctor__title {
    font-size: 46px;
    line-height: 1.35;
    letter-spacing: .1em;
  }

  .end-doctor__line {
    width: 100%;
    margin: 22px 0 24px;
  }

  .end-doctor__lead {
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: .05em;
  }

  .end-doctor__bg {
    position: relative;
    width: calc(100% + 32px);
    height: 360px;
    margin: 28px -16px 0;
    z-index: 1;
  }

  .end-doctor__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(251,250,246,0) 0%, rgba(251,250,246,.18) 48%, rgba(251,250,246,1) 100%),
      linear-gradient(90deg, rgba(251,250,246,.78) 0%, rgba(251,250,246,.18) 44%, rgba(251,250,246,0) 100%);
    pointer-events: none;
  }

  .end-doctor__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .end-doctor__profile {
    grid-template-columns: 122px minmax(0, 1fr);
    width: 100%;
    margin-top: 26px;
  }

  .end-doctor__profile-logo {
    min-height: 96px;
    padding: 16px 12px;
  }

  .end-doctor__profile-logo img {
    width: 88px;
  }

  .end-doctor__profile-text {
    padding: 16px 16px;
  }

  .end-doctor__profile-text p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .05em;
  }

  .end-doctor__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
    width: 100%;
    margin-top: 24px;
  }

  .end-doctor__feature {
    min-height: 142px;
    padding: 18px 10px 24px;
  }

  .end-doctor__feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
  }

  .end-doctor__feature p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .04em;
  }

  .end-doctor__feature > span {
    bottom: -15px;
    width: 30px;
    height: 30px;
  }

  .end-doctor__message {
    width: 100%;
    margin-top: 10px;
    padding: 24px 18px;
  }

  .end-doctor__quote {
    top: 12px;
    left: 18px;
    font-size: 52px;
  }

  .end-doctor__message p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .05em;
  }
}


/*==================================================================================================================================

  *根管治療の費用

==================================================================================================================================*/
.end-price {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.72) 38%, transparent 70%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-price * {
  box-sizing: border-box;
}

.end-price__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  max-width: 460px;
  opacity: .2;
  z-index: 0;
}

.end-price__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.end-price__inner {
  position: relative;
  z-index: 1;
  max-width: 98%;
  margin: 0 auto;
  padding: 72px 1% 64px;
}

.end-price__head {
  text-align: center;
}

.end-price__title {
  margin: 0;
  color: #071b3a;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .14em;
}

.end-price__title span {
  color: #b58a2a;
}

.end-price__line {
  width: 120px;
  height: 2px;
  margin: 18px auto 22px;
  background: linear-gradient(90deg, transparent 0%, #b58a2a 50%, transparent 100%);
}

.end-price__lead {
  margin: 0;
  color: #1f2329;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-price__tax {
  margin: 8px 0 0;
  color: #8b651f;
  font-size: clamp(12px, .95vw, 14px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .06em;
}

.end-price__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.end-price__card {
  position: relative;
  overflow: visible;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(181,138,42,.28);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(20,28,45,.08);
}

.end-price__card-head {
  position: relative;
  height: 84px;
  background: linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  border-radius: 12px 12px 0 0;
}

.end-price__icon {
  position: absolute;
  left: 50%;
  top: -34px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  background: rgba(255,255,255,.96);
  border: 3px double rgba(181,138,42,.8);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 24px rgba(20,28,45,.1);
}

.end-price__icon img {
  display: block;
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.end-price__card-body {
  padding: 42px 28px 32px;
  text-align: center;
}

.end-price__card h3 {
  margin: 0;
  color: #071b3a;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .08em;
}

.end-price__card-line {
  width: 100%;
  height: 1px;
  margin: 22px auto 28px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.8) 50%, transparent 100%);
}

.end-price__amount {
  margin: 0;
  color: #b58a2a;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .04em;
  white-space: nowrap;
}

.end-price__amount span {
  font-size: .42em;
  margin-left: .05em;
}

.end-price__tag {
  display: inline-block;
  margin: 24px 0 0;
  padding: 8px 28px;
  color: #8b651f;
  border: 1px solid rgba(181,138,42,.8);
  border-radius: 999px;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
}

.end-price__text {
  margin: 26px 0 0;
  color: #1f2329;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .06em;
}

.end-price__text small {
  font-size: .86em;
}

.end-price__info {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
  padding: 24px 30px;
  background: rgba(255,255,255,.78);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(20,28,45,.06);
}

.end-price__info-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.end-price__info-item + .end-price__info-item {
  padding-left: 26px;
  border-left: 1px dashed rgba(181,138,42,.45);
}

.end-price__info-icon {
  width: 65px;
  height: 65px;
}

.end-price__info-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-price__info h3 {
  display: inline;
  margin: 0;
  color: #071b3a;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .06em;
  background: linear-gradient(
    transparent 62%,
    rgba(181, 138, 42, .22) 62%
  );
  padding: 0 .08em;
}

.end-price__info p {
  margin: 0;
  color: #1f2329;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .04em;
}

.end-price__consult {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(181,138,42,.72);
  border-radius: 8px;
}

.end-price__consult-icon {
  width: 60px;
  height: 60px;
}

.end-price__consult-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-price__consult p {
  color: #8b651f;
  font-weight: 700;
}

.end-price__note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 420px;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding: 13px 20px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(181,138,42,.72);
  border-radius: 7px;
}

.end-price__note-icon {
  width: 60px;
  height: 60px;
}

.end-price__note-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-price__note p {
  margin: 0;
  color: #1f2329;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .05em;
}

.end-price__note-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 46px;
  padding: 10px 18px;
  color: #8b651f;
  border: 1px solid rgba(181,138,42,.72);
  border-radius: 7px;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
  text-decoration: none;
}

.end-price__note-link span {
  font-size: 1.2em;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-price__inner {
    padding: 64px 5% 58px;
  }

  .end-price__cards {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 44px auto 0;
    gap: 42px;
  }

  .end-price__info {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 28px auto 0;
  }

  .end-price__info-item + .end-price__info-item {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px dashed rgba(181,138,42,.45);
  }

  .end-price__note {
    grid-template-columns: 48px minmax(0, 1fr);
    max-width: 680px;
    margin: 26px auto 0;
  }

  .end-price__note-link {
    grid-column: 1 / -1;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-price__bg {
    width: 58%;
    opacity: .12;
  }

  .end-price__inner {
    padding: 54px 16px 48px;
  }

  .end-price__title {
    font-size: 35px;
    line-height: 1.5;
    letter-spacing: .08em;
  }

  .end-price__lead {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
    text-align: left;
  }

  .end-price__tax {
    margin-top: 8px;
    font-size: 12px;
    text-align: left;
  }

  .end-price__cards {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 42px;
  }

  .end-price__card-head {
    height: 72px;
  }

  .end-price__icon {
    top: -30px;
    width: 100px;
    height: 100px;
  }

  .end-price__icon img {
    width: 56px;
    height: 56px;
  }

  .end-price__card-body {
    padding: 36px 18px 28px;
  }

  .end-price__card h3 {
    font-size: 22px;
    line-height: 1.55;
  }

  .end-price__card-line {
    margin: 18px auto 22px;
  }

  .end-price__amount {
    font-size: 33px;
    white-space: normal;
  }

  .end-price__tag {
    margin-top: 18px;
    padding: 7px 18px;
    font-size: 14px;
  }

  .end-price__text {
    margin-top: 20px;
    font-size: 14.5px;
    line-height: 1.85;
    letter-spacing: .04em;
  }

  .end-price__info {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
    padding: 20px 16px;
  }

  .end-price__info-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .end-price__info-item + .end-price__info-item {
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px dashed rgba(181,138,42,.45);
  }

  .end-price__info-icon {
    width: 48px;
    height: 48px;
  }

  .end-price__info h3 {
    font-size: 16px;
    line-height: 1.55;
  }

  .end-price__info p {
    font-size: 13.5px;
    line-height: 1.75;
  }

  .end-price__consult {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px 14px;
  }

  .end-price__consult-icon {
    width: 44px;
    height: 44px;
  }

  .end-price__note {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 22px;
    padding: 13px 13px;
  }

  .end-price__note-icon {
    width: 42px;
    height: 42px;
  }

  .end-price__note p {
    font-size: 13.5px;
    line-height: 1.75;
  }

  .end-price__note-link {
    grid-column: 1 / -1;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }
}

/*==================================================================================================================================

  *よくあるご質問

==================================================================================================================================*/
.end-faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.72) 40%, transparent 72%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-faq * {
  box-sizing: border-box;
}

.end-faq__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  max-width: 460px;
  opacity: .2;
  z-index: 0;
}

.end-faq__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251,250,246,.1) 0%, rgba(251,250,246,.78) 78%, rgba(251,250,246,1) 100%),
    linear-gradient(180deg, rgba(251,250,246,.06) 0%, rgba(251,250,246,.84) 100%);
}

.end-faq__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.end-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 4% 64px;
}

.end-faq__head {
  text-align: center;
}

.end-faq__ornament {
  display: grid;
  grid-template-columns: 220px 58px 220px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0 auto 20px;
}

.end-faq__ornament span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.75) 50%, transparent 100%);
}

.end-faq__ornament img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.end-faq__title {
  margin: 0;
  color: #3b3835;
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .18em;
}

.end-faq__title span {
  color: #b58a2a;
}

.end-faq__lead {
  margin: 18px 0 0;
  color: #1f2329;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;
}

.end-faq__list {
  display: grid;
  gap: 12px;
  margin-top: 44px;
}

.end-faq__item {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(181,138,42,.34);
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(20,28,45,.05);
  overflow: hidden;
}

.end-faq__item[open] {
  background: rgba(255,255,255,.96);
}

.end-faq__question {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 20px;
  min-height: 92px;
  padding: 18px 30px 18px 24px;
  cursor: pointer;
  list-style: none;
}

.end-faq__question::-webkit-details-marker {
  display: none;
}

.end-faq__q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.18) 0%, transparent 36%),
    linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  border: 2px solid rgba(181,138,42,.85);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7,27,58,.16);
  font-size: 33px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
}

.end-faq__question-text {
  min-width: 0;
  color: #071b3a;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .08em;
}

.end-faq__plus {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  margin-left: auto;
}

.end-faq__plus::before,
.end-faq__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #b58a2a;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.end-faq__plus::before {
  width: 28px;
  height: 2px;
}

.end-faq__plus::after {
  width: 2px;
  height: 28px;
}

.end-faq__item[open] .end-faq__plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.end-faq__answer {
  padding: 0 34px 28px 110px;
}

.end-faq__answer p {
  position: relative;
  margin: 0;
  padding: 20px 24px;
  color: #1f2329;
  background: rgba(247,243,235,.72);
  border-left: 3px solid #b58a2a;
  border-radius: 4px;
  font-size: clamp(15px, 1.18vw, 17px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .05em;
}

.end-faq__answer p::before {
  content: "A";
  position: absolute;
  left: -70px;
  top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #b58a2a;
  background: #fff;
  border: 1px solid rgba(181,138,42,.62);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.end-faq__bottom {
  position: relative;
  display: block;
  align-items: center;
  gap: 28px;
  width: 100%;
  margin-top: 54px;
  padding: 26px 54px 26px 160px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(181,138,42,.72);
  border-radius: 8px;
}

.end-faq__bottom-icon {
  position: absolute;
  left: 32px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 126px;
  background: rgba(255,255,255,.95);
  border: 3px double rgba(181,138,42,.8);
  border-radius: 50%;
  transform: translateY(-50%);
}

.end-faq__bottom-icon img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.end-faq__bottom p {
  grid-column: 2;
  margin: 0;
  color: #071b3a;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .08em;
  text-align: center;
}

.end-faq__bottom p span {
  color: #071b3a;
  background: linear-gradient(transparent 62%, rgba(181,138,42,.22) 62%);
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-faq__inner {
    padding: 64px 5% 58px;
  }

  .end-faq__ornament {
    grid-template-columns: 160px 54px 160px;
  }

  .end-faq__bottom {
    grid-template-columns: 110px minmax(0, 1fr);
    padding: 24px 34px 24px 138px;
  }

  .end-faq__bottom-icon {
    left: 34px;
    width: 108px;
    height: 108px;
  }

  .end-faq__bottom-icon img {
    width: 66px;
    height: 66px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-faq__bg {
    width: 70%;
    opacity: .12;
  }

  .end-faq__inner {
    padding: 54px 16px 48px;
  }

  .end-faq__ornament {
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 18px;
  }

  .end-faq__ornament img {
    width: 46px;
    height: 46px;
  }

  .end-faq__title {
    font-size: 39px;
    line-height: 1.45;
    letter-spacing: .1em;
  }

  .end-faq__lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .05em;
    text-align: left;
  }

  .end-faq__list {
    gap: 10px;
    margin-top: 32px;
  }

  .end-faq__question {
    grid-template-columns: 46px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 74px;
    padding: 14px 14px 14px 14px;
  }

  .end-faq__q {
    width: 44px;
    height: 44px;
    font-size: 25px;
  }

  .end-faq__question-text {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: .04em;
  }

  .end-faq__plus {
    width: 22px;
    height: 22px;
  }

  .end-faq__plus::before {
    width: 22px;
  }

  .end-faq__plus::after {
    height: 22px;
  }

  .end-faq__answer {
    padding: 0 14px 18px 14px;
  }

  .end-faq__answer p {
    padding: 18px 16px 18px 54px;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: .04em;
  }

  .end-faq__answer p::before {
    left: 14px;
    top: 16px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .end-faq__bottom {
    display: block;
    margin-top: 42px;
    padding: 72px 18px 22px;
    text-align: center;
  }

  .end-faq__bottom-icon {
    left: 50%;
    top: -44px;
    width: 92px;
    height: 92px;
    transform: translateX(-50%);
  }

  .end-faq__bottom-icon img {
    width: 56px;
    height: 56px;
  }

  .end-faq__bottom p {
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: .05em;
  }
}

/*==================================================================================================================================

  *三宮で根管治療をご検討中の方は神戸三宮アステオ歯科へ

==================================================================================================================================*/
.end-bottom-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 18%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.75) 38%, transparent 68%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
  color: #071b3a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-bottom-cta * {
  box-sizing: border-box;
}

.end-bottom-cta__inner {
  position: relative;
  max-width: 100%;
  min-height: 850px;
  margin: 0 auto;
  padding: 62px 0 34px 30px;
  overflow: hidden;
}

.end-bottom-cta__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: min(48%, 700px);
  height: 72%;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}

.end-bottom-cta__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(251,250,246,1) 0%, rgba(251,250,246,.72) 28%, rgba(251,250,246,.1) 60%, rgba(251,250,246,0) 100%),
    linear-gradient(180deg, rgba(251,250,246,.04) 0%, rgba(251,250,246,0) 58%, rgba(251,250,246,.92) 100%);
  pointer-events: none;
}

.end-bottom-cta__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.end-bottom-cta__content > :not(.end-bottom-cta__photo) {
  position: relative;
  z-index: 4;
}

.end-bottom-cta__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.end-bottom-cta__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(620px, 100%);
  margin: 0 0 30px;
  color: #8b651f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .12em;
}

.end-bottom-cta__copy span {
  display: block;
  width: 88px;
  height: 1px;
  background: rgba(181,138,42,.72);
}

.end-bottom-cta__title {
  margin: 0;
  color: #071b3a;
  font-size: 63px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .09em;
}

.end-bottom-cta__title strong {
  color: #b58a2a;
  font-weight: 500;
}

.end-bottom-cta__lead {
  margin: 28px 0 0;
  color: #1f2329;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .06em;
}

.end-bottom-cta__lead span {
  color: #071b3a;
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(181,138,42,.22) 62%);
}

.end-bottom-cta__lead em {
  color: #8b651f;
  font-style: normal;
}

.end-bottom-cta__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(840px, 100%);
  margin-top: 42px;
}

.end-bottom-cta__feature {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 12px 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(181,138,42,.5);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(20,28,45,.05);
}

.end-bottom-cta__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(181,138,42,.68);
  border-radius: 50%;
}

.end-bottom-cta__feature-icon img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.end-bottom-cta__feature p {
  margin: 0;
  color: #071b3a;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .05em;
}

.end-bottom-cta__feature strong {
  font-size: 1.45em;
  font-weight: 700;
}

.end-bottom-cta__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 38px;
  align-items: end;
  width: 100%;
  margin-top: 44px;
}

.end-bottom-cta__security {
  padding: 28px 36px 30px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(7,27,58,.72);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(20,28,45,.06);
}

.end-bottom-cta__security h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  color: #071b3a;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .07em;
  text-align: center;
}

.end-bottom-cta__security h3 img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.end-bottom-cta__security h3::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(7,27,58,.38), transparent);
}

.end-bottom-cta__security h3::before {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7,27,58,.38));
}

.end-bottom-cta__security ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 34px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.end-bottom-cta__security li {
  position: relative;
  padding-left: 26px;
  color: #1f2329;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .04em;
}

.end-bottom-cta__security li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .08em;
  color: #b58a2a;
  font-size: 18px;
  font-weight: 700;
}

.end-bottom-cta__reserve {
  text-align: center;
  margin-right: 10px;
}

.end-bottom-cta__reserve-head {
  display: grid;
  grid-template-columns: 88px minmax(0, auto) 88px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.end-bottom-cta__reserve-head span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7,27,58,.8), transparent);
}

.end-bottom-cta__reserve-head p {
  margin: 0;
  color: #071b3a;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1em;
}

.end-bottom-cta__reserve-text {
  margin: 6px 0 18px;
  color: #1f2329;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .05em;
}

.end-bottom-cta__web,
.end-bottom-cta__tel {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}

.end-bottom-cta__web {
  color: #fff;
  background: linear-gradient(135deg, #a77a1f 0%, #c39a3c 100%);
  box-shadow: 0 12px 26px rgba(181,138,42,.2);
}

.end-bottom-cta__tel {
  margin-top: 12px;
  color: #071b3a;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(181,138,42,.78);
}

.end-bottom-cta__web img,
.end-bottom-cta__tel img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
}

.end-bottom-cta__web span {
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
}

.end-bottom-cta__tel span {
  color: #1f2329;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .05em;
}

.end-bottom-cta__tel strong {
  color: #1f2329;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
}

.end-bottom-cta__web i,
.end-bottom-cta__tel i {
  color: inherit;
  font-size: 30px;
  font-style: normal;
  line-height: 1;
}

.end-bottom-cta__bottom {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at 16% 50%, rgba(255,255,255,.12) 0%, transparent 26%),
    linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  border-top: 1px solid rgba(181,138,42,.55);
}

.end-bottom-cta__bottom-inner {
  display: block;
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 4%;
}

.end-bottom-cta__bottom p {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .08em;
  text-align: center;
}

.end-bottom-cta__bottom p::before,
.end-bottom-cta__bottom p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 72px;
  background: linear-gradient(180deg, rgba(181,138,42,.95), rgba(181,138,42,.65));
  opacity: .85;
  transform: translateY(-50%);
  clip-path: polygon(50% 0, 58% 12%, 50% 22%, 60% 34%, 50% 46%, 62% 58%, 50% 70%, 60% 84%, 50% 100%, 42% 84%, 50% 70%, 38% 58%, 50% 46%, 40% 34%, 50% 22%, 42% 12%);
}

.end-bottom-cta__bottom p::before {
  left: -54px;
}

.end-bottom-cta__bottom p::after {
  right: -54px;
}


/* ================================
  tablet
================================ */
@media screen and (max-width: 1100px) {
  .end-bottom-cta__inner {
    min-height: auto;
    padding: 58px 5% 40px;
  }

  .end-bottom-cta__photo {
    width: 45%;
    height: 460px;
  }

  .end-bottom-cta__content {
    width: 70%;
  }

  .end-bottom-cta__features {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .end-bottom-cta__columns {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .end-bottom-cta__security ul {
    grid-template-columns: 1fr;
  }

  .end-bottom-cta__bottom-inner {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .end-bottom-cta__bottom p::before,
  .end-bottom-cta__bottom p::after {
    display: none;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-bottom-cta__inner {
    padding: 46px 16px 34px;
  }

  .end-bottom-cta__photo {
    position: relative;
    width: calc(100% + 32px);
    height: 310px;
    margin: 28px -16px 0;
    order: 2;
  }

  .end-bottom-cta__photo::before {
    background:
      linear-gradient(180deg, rgba(251,250,246,0) 0%, rgba(251,250,246,.18) 48%, rgba(251,250,246,1) 100%),
      linear-gradient(90deg, rgba(251,250,246,.76) 0%, rgba(251,250,246,.08) 46%, rgba(251,250,246,0) 100%);
  }

  .end-bottom-cta__photo img {
    object-position: center top;
  }

  .end-bottom-cta__content {
    width: 100%;
  }

  .end-bottom-cta__copy {
    gap: 10px;
    margin-bottom: 22px;
    font-size: 16px;
    letter-spacing: .06em;
    text-align: center;
  }

  .end-bottom-cta__copy span {
    width: 42px;
  }

  .end-bottom-cta__title {
    font-size: 25px;
    line-height: 1.65;
    letter-spacing: .05em;
  }

  .end-bottom-cta__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .04em;
  }

  .end-bottom-cta__features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .end-bottom-cta__feature {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 82px;
    padding: 10px 14px;
  }

  .end-bottom-cta__feature-icon {
    width: 64px;
    height: 64px;
  }

  .end-bottom-cta__feature-icon img {
    width: 38px;
    height: 38px;
  }

  .end-bottom-cta__feature p {
    font-size: 15px;
  }

  .end-bottom-cta__columns {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .end-bottom-cta__security {
    padding: 22px 18px;
  }

  .end-bottom-cta__security h3 {
    display: block;
    font-size: 17px;
  }

  .end-bottom-cta__security h3::before,
  .end-bottom-cta__security h3::after {
    display: none;
  }

  .end-bottom-cta__security h3 img {
    display: block;
    margin: 0 auto 8px;
  }

  .end-bottom-cta__security ul {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .end-bottom-cta__security li {
    font-size: 14px;
    line-height: 1.75;
  }

  .end-bottom-cta__reserve-head {
    grid-template-columns: 40px minmax(0, auto) 40px;
    gap: 10px;
  }

  .end-bottom-cta__reserve-head p {
    font-size: 17px;
    letter-spacing: .06em;
  }

  .end-bottom-cta__reserve-text {
    font-size: 13.5px;
  }

  .end-bottom-cta__web,
  .end-bottom-cta__tel {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 10px;
    min-height: 66px;
    padding: 10px 14px;
  }

  .end-bottom-cta__web img,
  .end-bottom-cta__tel img {
    width: 32px;
    height: 32px;
  }

  .end-bottom-cta__web span {
    font-size: 18px;
    letter-spacing: .04em;
  }

  .end-bottom-cta__tel span {
    font-size: 13px;
  }

  .end-bottom-cta__tel strong {
    font-size: 25px;
    letter-spacing: .04em;
  }

  .end-bottom-cta__web i,
  .end-bottom-cta__tel i {
    font-size: 22px;
  }

  .end-bottom-cta__bottom-inner {
    display: block;
    padding: 24px 16px;
  }

  .end-bottom-cta__bottom p {
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: .04em;
  }
}

/*==================================================================================================================================

  *フッター

==================================================================================================================================*/
.end-footer {
  position: relative;
  overflow: hidden;
  color: #071b3a;
  background: #fbfaf6;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
}

.end-footer * {
  box-sizing: border-box;
}

/* CTA */
.end-footer__cta {
  padding: 34px 0 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.7) 48%, transparent 76%),
    linear-gradient(180deg, #fbfaf6 0%, #f7f3eb 100%);
}

.end-footer__cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 480px) minmax(0, 1fr);
  align-items: center;
  gap: 38px;
  max-width: 98%;
  margin: 0 auto;
  padding: 42px 38px;
  background: rgba(255,255,255,.86);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(20,28,45,.08);
}

.end-footer__clinic {
  padding-right: 34px;
  border-right: 1px solid rgba(181,138,42,.22);
}

.end-footer__clinic-logo img {
  display: block;
  width: min(340px, 100%);
  height: auto;
}

.end-footer__clinic-copy {
  margin: 34px 0 0;
  color: #8b651f;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .08em;
}

.end-footer__clinic-text {
  margin: 12px 0 0;
  color: #1f2329;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .05em;
}

.end-footer__reserve {
  padding: 24px 26px;
  border: 1px solid rgba(181,138,42,.75);
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  text-align: center;
}

.end-footer__tel {
  display: block;
  color: #1f2329;
  text-decoration: none;
}

.end-footer__tel span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .06em;
}

.end-footer__tel strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #1f2329;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .08em;
}

.end-footer__tel strong img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.end-footer__reserve::after {
  content: "";
  display: block;
  height: 1px;
  margin: 24px 0 18px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,138,42,.65) 50%, transparent 100%);
}

.end-footer__web {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 14px 20px;
  color: #fff;
  background: linear-gradient(135deg, #a77a1f 0%, #c39a3c 100%);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(181,138,42,.2);
}

.end-footer__web img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.end-footer__web span {
  font-size: clamp(17px, 1.45vw, 23px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .07em;
}

.end-footer__web i {
  font-size: 28px;
  font-style: normal;
  line-height: 1;
}

.end-footer__access-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding-left: 34px;
  border-left: 1px solid rgba(181,138,42,.22);
}

.end-footer__access-icon {
  width: 88px;
  height: 88px;
}

.end-footer__access-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.end-footer__access-main {
  margin: 0;
  color: #071b3a;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .07em;
}

.end-footer__access-main span {
  color: #b58a2a;
  font-size: 1.5em;
}

.end-footer__access-text {
  margin: 18px 0 0;
  color: #1f2329;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .05em;
}

/* main */
.end-footer__main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 70%, rgba(255,255,255,.08) 0%, transparent 34%),
    linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  color: #fff;
}

.end-footer__main::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 48%;
  background: linear-gradient(90deg, rgba(7,27,58,.96) 0%, rgba(7,27,58,.58) 36%, rgba(7,27,58,.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.end-footer__main-inner {
  position: relative;
  z-index: 2;
  max-width: 98%;
  margin: 0 auto;
  padding: 42px 2% 36px;
}

.end-footer__nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.end-footer__nav-block {
  min-width: 0;
  padding: 4px 28px 14px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.end-footer__nav-block:first-child {
  padding-left: 0;
}

.end-footer__nav-block:last-child {
  border-right: 0;
  padding-right: 0;
}

.end-footer__nav-block h2 {
  margin: 0 0 20px;
  color: #b58a2a;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
}

.end-footer__nav-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.end-footer__nav-block li + li {
  margin-top: 14px;
}

.end-footer__nav-block a {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  color: #fff;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .05em;
  text-decoration: none;
}

.end-footer__nav-block a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #b58a2a;
}

.end-footer__info-area {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .95fr) minmax(280px, .9fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
}

.end-footer__table {
  border-top: 1px solid rgba(255,255,255,.24);
}

.end-footer__table dl {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,.24);
}

.end-footer__table dt,
.end-footer__table dd {
  margin: 0;
  padding: 14px 18px;
  color: #fff;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .05em;
}

.end-footer__table dt {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.24);
  font-weight: 700;
}

.end-footer__table dd span {
  display: inline-block;
  margin-left: 20px;
  padding: 3px 14px;
  border: 1px solid rgba(255,255,255,.32);
  font-size: .9em;
}

.end-footer__map,
.end-footer__photo {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

.end-footer__map img,
.end-footer__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.end-footer__photo {
  position: relative;
}

.end-footer__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,27,58,.66) 0%, rgba(7,27,58,.2) 44%, rgba(7,27,58,0) 100%),
    linear-gradient(180deg, rgba(7,27,58,0) 0%, rgba(7,27,58,.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.end-footer__photo img {
  object-position: center center;
}

/* bottom */
.end-footer__bottom {
  background: #071b3a;
  border-top: 1px solid rgba(181,138,42,.7);
}

.end-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 22px 4%;
}

.end-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.end-footer__bottom li {
  position: relative;
  padding: 0 28px;
}

.end-footer__bottom li:first-child {
  padding-left: 0;
}

.end-footer__bottom li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(181,138,42,.72);
  transform: translateY(-50%);
}

.end-footer__bottom a,
.end-footer__bottom p {
  margin: 0;
  color: #fff;
  font-size: clamp(12px, .95vw, 14px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
  text-decoration: none;
}


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

  .end-footer__clinic,
  .end-footer__access-card {
    padding: 0;
    border: 0;
  }

  .end-footer__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 0;
  }

  .end-footer__nav-block:nth-child(3n) {
    border-right: 0;
  }

  .end-footer__info-area {
    grid-template-columns: 1fr;
  }

  .end-footer__map img,
  .end-footer__photo img {
    min-height: 300px;
  }

  .end-footer__bottom-inner {
    display: block;
    text-align: center;
  }

  .end-footer__bottom ul {
    justify-content: center;
    margin-bottom: 16px;
  }
}


/* ================================
  SP
================================ */
@media screen and (max-width: 767px) {
  .end-footer__cta {
    padding: 28px 16px;
  }

  .end-footer__cta-inner {
    padding: 30px 18px;
    border-radius: 14px;
  }

  .end-footer__clinic-logo img {
    width: 100%;
    max-width: 290px;
  }

  .end-footer__clinic-copy {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
  }

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

  .end-footer__reserve {
    padding: 20px 16px;
  }

  .end-footer__tel strong {
    gap: 10px;
    font-size: 29px;
    letter-spacing: .04em;
  }

  .end-footer__tel strong img {
    width: 28px;
    height: 28px;
  }

  .end-footer__web {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 10px;
    min-height: 62px;
    padding: 12px 14px;
  }

  .end-footer__web img {
    width: 28px;
    height: 28px;
  }

  .end-footer__web span {
    font-size: 16px;
    letter-spacing: .04em;
  }

  .end-footer__web i {
    font-size: 22px;
  }

  .end-footer__access-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
  }

  .end-footer__access-icon {
    width: 68px;
    height: 68px;
  }

  .end-footer__access-main {
    font-size: 16px;
  }

  .end-footer__access-text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.8;
  }

  .end-footer__main-inner {
    padding: 38px 16px 34px;
  }

  .end-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .end-footer__nav-block {
    padding: 0 16px 0 0;
    border-right: 0;
  }

  .end-footer__nav-block h2 {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .end-footer__nav-block li + li {
    margin-top: 10px;
  }

  .end-footer__nav-block a {
    font-size: 13px;
  }

  .end-footer__info-area {
    gap: 18px;
    margin-top: 36px;
  }

  .end-footer__table dl {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .end-footer__table dt,
  .end-footer__table dd {
    padding: 12px 10px;
    font-size: 12.5px;
    line-height: 1.7;
  }

  .end-footer__table dd span {
    display: block;
    width: fit-content;
    margin: 8px 0 0;
    padding: 3px 10px;
  }

  .end-footer__map img,
  .end-footer__photo img {
    min-height: 220px;
  }

  .end-footer__bottom-inner {
    padding: 20px 16px;
  }

  .end-footer__bottom ul {
    display: block;
    margin-bottom: 14px;
  }

  .end-footer__bottom li {
    padding: 0;
  }

  .end-footer__bottom li + li {
    margin-top: 8px;
  }

  .end-footer__bottom li + li::before {
    display: none;
  }

  .end-footer__bottom a,
  .end-footer__bottom p {
    font-size: 12px;
  }
}

/* ================================
  共通ボタン
================================ */
.btn-root-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
}

.btn-root {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  padding: 14px 54px 14px 34px;
  border-radius: 999px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease,
    color .3s ease,
    opacity .3s ease;
  margin: 20px 0;
}

.btn-root::after {
  content: "〉";
  position: absolute;
  right: 24px;
  top: 50%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .3s ease;
}

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

.btn-root:hover::after {
  transform: translate(4px, -50%);
}

.btn-root:active {
  transform: translateY(0);
}

.btn-root:focus-visible {
  outline: 2px solid #071b3a;
  outline-offset: 4px;
}


/* gold */
.btn-root--gold {
  border: 1px solid rgba(181, 138, 42, .9);
  background: linear-gradient(135deg, #caa044 0%, #a77a1f 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(181, 138, 42, .24);
}

.btn-root--gold:hover {
  background: linear-gradient(135deg, #d8b45a 0%, #b98c2b 100%);
  box-shadow: 0 14px 28px rgba(181, 138, 42, .3);
}


/* white */
.btn-root--white {
  border: 1px solid rgba(181, 138, 42, .72);
  background: rgba(255, 255, 255, .94);
  color: #071b3a;
  box-shadow: 0 8px 20px rgba(7, 27, 58, .08);
}

.btn-root--white::after {
  color: #b58a2a;
}

.btn-root--white:hover {
  background: #fbf8f1;
  border-color: #b58a2a;
  box-shadow: 0 12px 26px rgba(7, 27, 58, .12);
}


/* navy */
.btn-root--navy {
  border: 1px solid rgba(181, 138, 42, .44);
  background: linear-gradient(135deg, #071b3a 0%, #0b2d5c 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 27, 58, .24);
}

.btn-root--navy::after {
  color: #c89b34;
}

.btn-root--navy:hover {
  background: linear-gradient(135deg, #0b2d5c 0%, #143464 100%);
  box-shadow: 0 14px 30px rgba(7, 27, 58, .3);
}


/* SP */
@media screen and (max-width: 767px) {
  .btn-root {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 13px 46px 13px 24px;
    font-size: 15px;
    letter-spacing: .06em;
  }

  .btn-root::after {
    right: 18px;
    font-size: 18px;
  }

  .btn-root:hover {
    transform: none;
  }

  .btn-root:hover::after {
    transform: translateY(-50%);
  }
}