@charset "UTF-8";

/* 変数定義 */
/*--------------------------
font-size
---------------------------*/

/* ----------------------------------------
リセットcss
---------------------------------------- */
:root {
  --font-mincho: "Zen Old Mincho", serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-round: "Zen Maru Gothic", sans-serif;
  --font-number: "Montserrat", sans-serif;
  --font-english: "Sulphur Point", sans-serif;
  --body-text-color: #37353f;
  --body-title-color: #7d6e48;
  --body-color-main-01: #1f4f5e;
  --body-color-main-02: #d7ba95;
  --body-color-pink: #d2646d;
  --body-color-yellow: #daa531;
  --body-font-size: 16px;
  --body-font-size-sp: 16px;
  --body-line-height: 1.7;
  --body-letter-spacing: 0.1em;
  --body-background-color: #ffffff;
  --page-lr-space: min(120px, 8.3vw);
  --page-lr-space-sp: 3vw;
  --section-inner-width: 1440px;
  --border-radius-full: calc(infinity * 1px);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  opacity: 1;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

section {
  width: 100%;
  padding: 0;
  margin: 0;
}

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

body {
  display: block;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--body-background-color);
  color: var(--body-text-color);
  font-family: var(--font-gothic);
  letter-spacing: var(--body-letter-spacing);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

@media screen and (max-width: 767px) {
  body {
    font-weight: normal;
    font-size: var(--body-font-size-sp);
    line-height: 1.7;
  }
}

.section-inner {
  width: 100%;
  max-width: var(--section-inner-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-lr-space);
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 767px) {
  .section-inner {
    padding: 0 var(--page-lr-space-sp);
  }
}

.link-none {
  pointer-events: none !important;
  text-decoration: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc-content{
    display: contents !important;
  }
}

@media screen and (min-width: 767px) {
  .sp-content{
    display: contents !important;
  }
}

.font-en {
  font-family: var(--font-english);
}

.font-num {
  font-family: var(--font-number);
}

span.inline-block {
  display: inline-block;
}

main {
  position: relative;
  overflow: hidden;
}

/* ----------------------------------------
header
---------------------------------------- */
/* ----------------------------------------
top-header 
---------------------------------------- */
#top-header {
  height: 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  #top-header {
    display: none;
  }
}

#top-header .top-header__left,
#top-header .top-header__right {
  padding: 24px 24px 0;
  position: absolute;
  top: 0;
}

#top-header .top-header__left {
  left: 0;
}

#top-header .top-header__right {
  right: 0;
}

#top-header .top-header__left > h1 {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #38506b;
}

#top-header .top-header__left img {
  width: 300px;
  margin-top: 10px;
}

#top-header .top-header__right > p {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: right;
}

#top-header .top-header__btns {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

/* ----------------------------------------
sp-header
---------------------------------------- */
#sp-header {
  height: fit-content;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 1em;
  /* background-color: rgba(244, 249, 255, 0.9); */
}

#sp-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sp-header__left {
  margin-right: auto;
  display: flex;
  height: 50px;
  gap: 16px;
}

.sp-header__left .sp-header-logo {
  padding: 0.6em 1.5em;
  display: block;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.sp-header__left .sp-header-h1-block {
  color: #fff;
  font-size: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2em 0 0;
}

.sp-header__left .sp-header__read {
  font-size: 10px;
  font-size: 0.625rem;
  -webkit-transform: scale(0.8) translateX(-12%);
  transform: scale(0.8) translateX(-12%);
  white-space: nowrap;
  align-content: center;
  padding-left: 10px;
  color: #fff;
}

.sp-header__left > img,
.sp-header__left > a img {
  margin: 0;
  height: 100%;
  object-fit: contain;
  width: auto;
}

@media screen and (max-width: 767px) {
  .sp-header__left > img,
  .sp-header__left > a img {
    height: 80%;
  }

  .sp-header__left > a {
    align-content: center;
  }
}

.sp-header__right {
  cursor: pointer;
  width: 50px;
  aspect-ratio: 1/1;
  height: auto;
  position: relative;
  height: fit-content;
  padding: 0.4em;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sp-header__right span {
  position: absolute;
  left: 25%;
  height: 2px;
  width: 24px;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.sp-header__right .sp-header__right-title {
  color: #fff;
  font-size: 9px;
  text-align: center;
  transform: translateX(-50%);
  position: absolute;
  bottom: 4px;
  left: 52%;
}

.sp-header__right span:nth-child(1) {
  top: 10px;
}

.sp-header__right span:nth-child(2) {
  top: 26px;
  width: 18px;
}

.sp-header__right span:nth-child(3) {
  top: 18px;
  width: 14px;
}

.sp-header__right.open span:nth-child(1) {
  width: 24px;
  top: 18px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(30deg);
  transform: translateX(-50%) rotate(30deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-header__right.open span:nth-child(2) {
  width: 24px;
  top: 18px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-30deg);
  transform: translateX(-50%) rotate(-30deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-header__right.open span:nth-child(3) {
  opacity: 0;
}

/* ----------------------------------------
scroll header
---------------------------------------- */
#follow-header {
  position: fixed;
  transform: translateX(-50%);
  top: 5px;
  left: 50%;
  width: 98%;
  background: rgba(244, 249, 255, 0.8);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 min(20px, 1.4vw);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--body-text-color);
  border-radius: 10px;
}

#follow-header {
  display: none;
}

#follow-header.is-top {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#follow-header.is-top.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.follow-header__logo {
  display: flex;
}

.follow-header__logo a {
  align-content: center;
  padding: 5px 0;
}

.follow-header__logo .header-logo-image {
  display: block;
  height: 50px;
  object-fit: contain;
}

#follow-header .header-info {
  padding: 10px;
  align-content: center;
  letter-spacing: 0.05em;
}

#follow-header .header-cta-tel {
  display: block;
  text-align: left;
  font-size: min(30px, 2vw);
  font-family: var(--font-english);
  padding: 0 0 0 min(40px, 2.8vw);
  position: relative;
  align-content: center;
  margin: min(5px, 0.35vw) 0;
}

#follow-header .header-cta-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.6vw;
  max-width: 38px;
  height: 2.6vw;
  max-height: 38px;
  background-image: url(../img/tp-cta-icon-tel-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#follow-header .header-title,
#follow-header .header-clinic-address {
  font-size: min(8px, 0.55vw);
}

.header-info-clinic-name {
  font-size: min(24px, 1.6vw);
  font-family: var(--font-round);
  font-weight: bold;
  color: var(--body-title-color);
  align-content: center;
}

@media screen and (max-width: 767px) {
  .header-info-clinic-name {
    font-size: 4vw;
    letter-spacing: 0.01em;
    padding-left: 5px;
  }
}

#follow-header .follow-header__nav {
  padding: 5px 0;
  align-content: center;
  width: 64%;
}

#follow-header .follow-header__nav .global__nav,
#follow-header .follow-header__nav .global__nav .gnavi__lists {
  height: 100%;
}

#follow-header .follow-header__nav .global__nav ul.gnavi__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  font-size: min(1.1vw, 15px);
  font-weight: normal;
  line-height: 1;
  color: var(--body-text-color);
}

#follow-header .gnavi__list {
  position: relative;
  transition: all 0.3s;
}

#follow-header .follow-header__nav .global__nav .gnavi__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--body-text-color);
  font-size: min(14px, 0.95vw);
  letter-spacing: 0.05em;
  transition: all 0.3s;
  text-align: center;
  line-height: 1.4;
  font-family: var(--font-round);
  font-weight: 500;
  padding: 0 10px;
}

#follow-header .follow-header__nav .global__nav .gnavi__list a:hover {
  animation: rotate 0.7s ease-in-out both;
  opacity: 1;
}

.dropdown__list a:hover::before {
  pointer-events: none;
  opacity: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(3deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-3deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

/* ドロップダウンメニュー */
.dropdown__lists {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 16vw;
  max-width: 230px;
  position: absolute;
  top: 50px;
  transform: translateX(-50%);
  left: 50%;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.dropdown__lists li:nth-child(2n) {
  background: #fcf3e1;
}

.dropdown__list {
  background-color: #fff;
  height: 4.2vw;
  max-height: 60px;
  transition: all 0.3s;
  position: relative;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 90%;
  height: 1px;
  background-color: #f1f1f1;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
}

#follow-header
  .follow-header__nav
  .global__nav
  .gnavi__list
  .dropdown__lists
  .dropdown__list
  a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--body-text-color);
  text-decoration: none;
  position: relative;
}

.dropdown__list a::before {
  content: "";
  display: block;
  width: 0.42vw;
  max-width: 6px;
  height: 0.42vw;
  max-height: 6px;
  border-top: 1px solid var(--body-text-color);
  border-left: 1px solid var(--body-text-color);
  transform: rotate(135deg);
  position: absolute;
  right: min(16px, 1.1vw);
  top: 50%;
}

/* ----------------------------------------
sp-menu bg
---------------------------------------- */
.sp-menu__bg {
  background-color: rgba(56, 80, 107, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 120svh;
  z-index: 8;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-menu__bg {
  display: block;
}

/* ----------------------------------------
sp-menu
---------------------------------------- */
.sp-menu {
  width: 375px;
  position: fixed;
  z-index: 9;
  right: 0;
  top: 0;
  height: fit-content;
  padding-top: 46px;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-menu {
  display: block;
}

.sp-menu__bg.open,
.sp-menu.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-menu.open {
  background-image: url(../img/menu-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sp-menu__wrap {
  overflow-y: scroll;
  height: 100svh;
}

@media screen and (max-width: 767px) {
  .sp-menu {
    width: 100%;
  }
}

/* ----------------------------------------
sp-menu sitemap
---------------------------------------- */
.sp-menu__sitemap {
  position: relative;
}

.sp-menu__obj {
  position: absolute;
  font-size: 45px;
  font-size: 2.8125rem;
  color: #fff;
  top: 14px;
  left: 10px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.035em;
  font-weight: bold;
}

.sp-menu__sitemap .global__nav {
  z-index: 1;
}

.sp-menu__sitemap .global__nav ul {
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.035em;
  font-weight: 500;
  /*   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; */
  font-size: 12px;
  font-size: 0.75rem;
  padding: 44px 10px 35px;
}

.sp-menu__sitemap .global__nav ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.sp-menu__sitemap .global__nav ul li a {
  position: relative;
  display: block;
  border-block-end-width: 100%;
  font-family: var(--font-mincho);
  color: #fff;
  padding: 1em 2em;
  font-size: 16px;
}

.sp-menu__sitemap .global__nav ul li a,
.gnavi-accordion summary {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-menu__sitemap .global__nav ul li a::before,
.gnavi-accordion summary::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: fit-content;
  aspect-ratio: 12 / 15;
  background-image: url(../img/footer-item-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sp-menu__sitemap .global__nav .gnavi-accordion-content ul li {
  border-bottom: none;
  padding: 6px 0;
}

.sp-menu__sitemap .gnavi-accordion-content .gnavi-dropdown-ul {
  padding-block: 10px;
  padding-left: 60px;
}

.sp-menu__sitemap .global__nav .gnavi-accordion-content ul li a {
  padding: 0;
}

.sp-menu__sitemap .global__nav .gnavi-accordion-content ul li a::before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--body-color-main-02);
  border-radius: var(--border-radius-full);
}

/* ----------------------------------------
sp-menu cta
---------------------------------------- */
.sp-menu .cta__container {
  background-image: url(../img/cta-bg-bottom-sp.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.sp-menu .cta__wrap {
  width: 100%;
  max-width: 314px;
  margin: -1px auto 0;
  padding: 36px 0;
}

.sp-menu .cta__title {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  -webkit-column-rule: #fff;
  -moz-column-rule: #fff;
  column-rule: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}

.sp-menu .cta__title span {
  font-size: 23px;
  font-size: 1.4375rem;
}

.sp-menu .cta__read {
  margin-top: 1em;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.sp-menu .cta__text {
  color: #fff;
  margin: 2em auto 0;
  width: 90%;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.sp-menu .cta__btns {
  margin: 24px auto 0;
  width: 100%;
  max-width: 478px;
  padding-bottom: 48px;
}

.sp-menu .cta__btns .btn {
  width: 100%;
  padding: 20px 0 0 50px;
  gap: 12px;
  height: 68px;
}

.sp-menu .cta__btns .btn.tel-btn {
  padding: 14px 0 0 55px;
}

.sp-menu .cta__btns .btn.phone-btn {
  padding: 15px 0 0 24px;
}

.sp-menu .cta__btns .btn.line-btn {
  padding: 15px 0 0 36px;
}

.sp-menu .cta__btns .btn:nth-child(n + 2) {
  margin-top: 14px;
}

.sp-menu .cta__btns .btn .icon-wrap img {
  height: 32px;
}

.sp-menu .cta__btns .phone-btn .main-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.sp-menu .cta__btns .phone-btn .main-text .btn__point-box {
  display: block;
}

.sp-menu .cta__btns .btn .text-wrap .top-text {
  font-size: 13px;
  font-size: 0.8125rem;
}

.sp-menu .cta__btns .btn .text-wrap .main-text {
  font-size: 18px;
  font-size: 1.125rem;
}

.sp-menu .cta__btns .btn .text-wrap .main-text span {
  font-size: 20px;
  font-size: 1.25rem;
}

.sp-menu .cta__btns .btn.phone-btn .text-wrap .main-text {
  margin-top: 0;
}

.sp-menu .cta__btns .btn.phone-btn .text-wrap .main-text span {
  margin-left: 4px;
}

.sp-menu .cta__btns .btn.phone-btn .text-wrap .main-text span.btn__point-box {
  display: block;
  text-align: center;
  width: 30px;
  background-color: #fff;
  color: #38506b;
  margin-right: 4px;
  margin-left: 0;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 4px 0;
}

.sp-menu .cta__btns .btn.tel-btn .text-wrap .main-text span {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 0.8;
}

/* ----------------------------------------
sp-menu-biz-hour-box
---------------------------------------- */
.sp-menu .sp-menu-biz-hour-box {
  padding: 1rem;
  margin: 1rem;
  background: #fff;
  border-radius: 20px;
}

.sp-menu .sp-menu-biz-hour-box .tp-biz-hour {
  margin-bottom: 0.2rem;
}

.sp-menu .sp-menu-biz-hour-box .tp-biz-hour tr th,
.sp-menu .sp-menu-biz-hour-box .tp-biz-hour tr td {
  font-size: 10px;
  padding: 0.5rem 0;
  letter-spacing: 0.01em;
}

.sp-menu .sp-menu-biz-hour-box .tp-biz-hour tr th:first-child,
.sp-menu .sp-menu-biz-hour-box .tp-biz-hour tr td:first-child {
  font-size: 10px;
}

.sp-menu .sp-menu-biz-hour-box .tp-biz-hour-caution-text {
  display: block;
  font-size: 10px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

/* ----------------------------------------
sp-menu-cta-btn-ul
---------------------------------------- */
.sp-menu .sp-menu-cta-btn-ul {
  width: 90%;
  margin: 2rem auto;
}

.sp-menu .sp-menu-cta-btn-li {
  width: 100%;
}

.sp-menu .sp-menu-cta-btn {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  color: #fff;
  font-weight: bold;
  border-radius: var(--border-radius-full);
  padding: 1rem;
  margin: 1rem auto;
}

.sp-menu .sp-menu-cta-btn-icon {
  width: 20px;
  height: fit-content;
  aspect-ratio: 1 / 1;
}

.sp-menu .sp-menu-cta-btn-web {
  background: var(--body-color-main-01);
}

.sp-menu .sp-menu-cta-btn-tel {
  background: #76716b;
}

.sp-menu .sp-menu-cta-btn-line {
  background: #00b900;
}

/* ----------------------------------------
top-footer
---------------------------------------- */
#top-footer {
  background: var(--body-color-main-01);
  color: #fff;
  padding: min(5vw, 70px) 0 min(2.9vw, 30px);
  line-height: 2;
  font-weight: normal;
  font-family: var(--font-gothic);
}

#top-footer img {
  margin: 0;
}

#top-footer .footer-upper,
#top-footer .footer-lower {
  padding-bottom: min(40px, 2.9vw);
  border-bottom: 1px solid #fff;
  margin-bottom: min(40px, 2.9vw);
}

#top-footer .footer-clinic-name {
  display: block;
  font-size: min(32px, 2.2vw);
  font-family: var(--font-round);
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  #top-footer .footer-clinic-name {
    font-size: 5vw;
    margin-bottom: 5vw;
  }
}

#top-footer .policy-btn-list {
  margin-bottom: min(2.9vw, 30px);
}

#top-footer .footer-lower .footer-clinic-info a {
  text-decoration: underline;
}

#top-footer .policy-btn-list {
  margin: 1em 0;
}

#top-footer .footer-policy,
#top-footer .footer-policy .policy-text {
  line-height: 2;
}

#top-footer .footer-policy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4em;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 40px;
}

#top-footer .footer-policy .top-section-title-group {
  width: 25%;
}

#top-footer .footer-policy .footer-policy-content {
  width: 73%;
}

#top-footer .footer-policy .top-section-title-en {
  font-size: 24px;
}

#top-footer .footer-policy .top-section-title-jp {
  font-size: 12px;
}

#top-footer .policy-btn-list {
  text-decoration: underline;
  flex-wrap: wrap;
}

#top-footer .footer-copyright {
  text-align: center;
  font-size: 10px;
  font-weight: lighter;
  margin-bottom: 5em;
}

@media screen and (min-width: 767px) {
  #top-footer .footer-bottom .footer-bottom-sitemap-ul {
    display: flex;
    justify-content: flex-end;
    gap: 2em;
    font-size: 10px;
    margin: 2em;
  }
}

@media screen and (max-width: 767px) {
  #top-footer .footer-bottom .footer-bottom-sitemap-ul {
    padding: 1rem;
    font-size: 12px;
    font-family: var(--font-mincho);
  }

  #top-footer .footer-bottom .footer-bottom-sitemap-li {
    margin-bottom: 0.4rem;
  }
}

#top-footer .footer-bottom .footer-sns-box {
  margin: 5em auto 10em;
}

#top-footer .footer-bottom .footer-sns-box,
#top-footer .footer-bottom .footer-sns-ul,
.sp-menu .sp-menu-sns-ul {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
}

.sp-menu .sp-menu-sns-ul {
  margin-bottom: 10rem;
  justify-content: center;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  #top-footer .footer-bottom .footer-sns-box {
    flex-direction: column;
    margin: 4em auto;
  }
}

#top-footer .footer-bottom .footer-sns-box .footer-clinic-logo-btn img {
  width: 240px;
}

.link-none {
  pointer-events: none;
  /*   opacity: 0.9; */
}

@media screen and (min-width: 767px) {
  #top-footer .footer-upper,
  #top-footer .footer-lower,
  #top-footer .policy-btn-list {
    display: flex;
    justify-content: space-between;
    align-content: center;
  }

  #top-footer .policy-btn-list {
    justify-content: flex-start;
    gap: 10px 30px;
  }

  #top-footer .footer-lower .footer-clinic-info {
    align-content: center;
  }

  #top-footer .footer-lower .footer-clinic-info p,
  #top-footer .footer-lower .footer-clinic-info a {
    font-size: min(12px, 0.86vw);
  }

  #top-footer .footer-clinic-message {
    width: 32vw;
    max-width: 450px;
    object-fit: cover;
    margin-bottom: min(40px, 2.9vw);
  }

  #top-footer .footer-clinic-logo {
    width: 27vw;
    /* 		height: 5.4vw; */
    max-width: 375px;
    /* 		max-height: 75px; */
    object-fit: contain;
  }

  #top-footer .footer-yotsuba-top-btn img {
    width: 20vw;
    /* 		height: 7.1vw; */
    max-width: 280px;
    /* 		max-height: 100px; */
    object-fit: cover;
  }

  #top-footer .footer-policy,
  #top-footer .footer-policy .policy-text {
    font-size: min(12px, 0.86vw);
  }

  #top-footer .footer-policy .policy-title {
    font-size: min(16px, 1.14vw);
  }
}

@media screen and (max-width: 767px) {
  #top-footer p,
  #top-footer a {
    font-size: 3.2vw;
  }

  #top-footer .section-inner {
    padding: 6vw;
  }

  #top-footer .footer-clinic-message,
  #top-footer .footer-clinic-logo {
    margin-bottom: 10vw;
  }

  #top-footer .footer-yotsuba-top-btn {
    display: block;
    margin: 10vw 0;
  }

  #top-footer .footer-policy {
    flex-direction: column;
    padding: 2rem;
  }

  #top-footer .footer-policy .top-section-title-group,
  #top-footer .footer-policy .footer-policy-content {
    width: 100%;
  }

  #top-footer .footer-policy .policy-title {
    font-size: 4.3vw;
    margin-bottom: 3vw;
  }

  #top-footer .footer-policy .policy-text {
    line-height: 1.8;
    font-size: 10px;
  }

  #top-footer .policy-btn-list {
    margin: 2rem 0 0;
  }

  #top-footer .policy-btn-list a {
    display: block;
    line-height: 1.5;
    margin-bottom: 3vw;
    font-size: 10px;
  }
}

/* footer追記 */
@media screen and (min-width: 767px) {
  footer .footer-upper {
    display: flex;
    justify-content: space-between;
  }

  footer .footer-upper .footer-clinic-info,
  footer .footer-biz-hour-box {
    width: 50%;
  }
}

/* footerの診療時間 */

footer .footer-biz-hour {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: min(30px, 2.1vw);
}

footer .footer-biz-hour tr th,
footer .footer-biz-hour tr td {
  text-align: center;
  align-content: center;
  width: 10%;
  font-weight: 500;
}

footer .footer-biz-hour tr th {
  padding: min(10px, 0.7vw);
  letter-spacing: 0.01em;
  font-size: min(16px, 1.2vw);
  white-space: nowrap;
  color: #fff;
}

footer .footer-biz-hour tr td {
  padding: min(20px, 1.5vw) min(10px, 0.7vw);
}

footer .footer-biz-hour tr th:nth-child(n + 2),
footer .footer-biz-hour tr td:nth-child(n + 2) {
  border-left: 2px solid #fff;
}

footer .footer-biz-hour tr:nth-child(n + 2) {
  border-top: 2px solid #fff;
}

footer .footer-biz-hour tr th:first-child,
footer .footer-biz-hour tr td:first-child {
  width: 25%;
}

footer .footer-biz-hour tr td:last-child {
  font-weight: normal;
}

footer .footer-biz-hour-annotation {
  font-size: min(14px, 1vw);
  font-weight: normal;
  letter-spacing: 0.01em;
  font-weight: 500;
}

/* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */
@media screen and (max-width: 767px) {
  footer .footer-biz-hour {
    margin-bottom: 3vw;
  }

  footer .footer-biz-hour tr th,
  footer .footer-biz-hour tr td {
    font-size: 3vw;
    padding: 3vw 1vw;
  }

  footer .footer-biz-hour-annotation {
    font-size: 2.8vw;
  }
}

footer .footer-biz-hour th {
  font-weight: normal;
}

footer .footer-cta-btn-list {
  margin: 20px 0px;
}

@media screen and (min-width: 767px) {
  footer .footer-lower {
    display: flex;
    justify-content: space-between;
  }

  footer .footer-sitemap {
    width: 100%;
  }

  footer .footer-cta-btn-list {
    width: 50%;
  }

  /* footer .footer-sitemap-list {
    display: flex;
  }

  footer .footer-sitemap-list li {
    width: 20%;
  }

  footer .footer-sitemap-list li.footer-sitemap-sub-list-menu {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
  }

  footer .footer-sitemap-list li.footer-sitemap-sub-list-small {
    width: 15%;
  }

  footer .footer-sitemap-sub-list-menu a {
    display: block;
    width: 100%;
  }

  footer .footer-sitemap-sub-list-menu ul:first-child {
    width: 70%;
  }

  footer .footer-sitemap-sub-list-menu ul:last-child {
    width: 30%;
  }

  footer .footer-sitemap-sub-list li {
    width: 100%;
  } */
}

footer .footer-sitemap-sub-list {
  padding-left: 2rem;
}

footer .footer-sitemap-sub-list li {
  padding-left: 20px;
  position: relative;
}

footer .footer-sitemap-sub-list li::before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--body-color-main-02);
  border-radius: var(--border-radius-full);
  position: absolute;
  transform: translate(0%, -52%);
  top: 55%;
  left: 0;
}

footer .footer-cta-btn-list a {
  display: block;
  width: 100%;
  margin-bottom: min(10px, 0.7vw);
}

footer .footer-cta-btn-list a.footer-cta-btn-instagram {
  width: 16%;
  margin-top: 20px;
}

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

footer .footer-sitemap a {
  font-size: min(14px, 1vw);
  white-space: nowrap;
}

footer .footer-sitemap-bold {
  font-weight: bold;
  font-family: var(--font-mincho);
  font-size: min(16px, 1.14vw) !important;
  padding-left: 24px;
  position: relative;
  display: block;
  margin-bottom: 1rem;
}

footer .footer-sitemap-bold::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: fit-content;
  aspect-ratio: 12 / 15;
  background-image: url("../img/footer-item-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 55%;
  left: 0;
}

footer .footer-sitemap li {
  margin-bottom: min(5px, 0.4vw);
}

@media screen and (min-width: 767px) {
  footer .footer-sitemap .footer-sitemap-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  footer .footer-sitemap .footer-sitemap-list li.footer-sitemap-sub-list-menu {
    width: 32%;
  }

  footer
    .footer-sitemap
    .footer-sitemap-list
    li.footer-sitemap-sub-list-menu-large {
    width: 66%;
  }

  footer .footer-sitemap .footer-sitemap-list li.footer-sitemap-sub-list-small {
    width: 100%;
  }

  footer .footer-sitemap-sub-list-container {
    display: flex;
  }

  footer .footer-sitemap-sub-list-container .footer-sitemap-sub-list {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  footer .footer-sitemap-bold {
    font-size: 14px !important;
  }

  footer .footer-sitemap .footer-sitemap-sub-list-menu {
    margin-bottom: 8vw;
  }
}

/* ----------------------------------------
フローティングcta
---------------------------------------- */

/* ----------------------------------------
scroll pc
---------------------------------------- */
#scroll-pc {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 7;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  #scroll-pc {
    display: none;
  }
}

#scroll-pc.is-top {
  opacity: 0;
  visibility: hidden;
}

#scroll-pc.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.scroll-pc__wrap {
  display: flex;
  gap: 5px;
  margin-right: 5px;
}

.scroll-pc__wrap li {
  display: block;
  align-content: flex-end;
}

.scroll-pc__wrap li a {
  display: block;
  height: inherit;
  position: relative;
  margin-bottom: -30px;
  transition: all 0.3s ease;
}

.scroll-pc__wrap li a:hover {
  margin-bottom: 0px;
  opacity: 1;
}

.scroll-pc__wrap li a img {
  height: 140px;
  width: auto;
}

.scroll-pc__wrap li a.to-top {
  margin-bottom: 0;
}

@media screen and (min-width: 767px) {
  .scroll-pc__wrap li a.to-top img {
    height: 50px;
    margin-bottom: 2px;
  }
}

.scroll-pc__con {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.scroll-pc__con img {
  height: 37px;
  width: auto;
  margin: 0 auto;
}

.scroll-pc__con span {
  text-align: center;
  font-size: 17px;
  font-size: 1.0625rem;
  margin-top: 8px;
  display: block;
  width: 100%;
  font-family: "Noto Serif JP", serif;
}

/* ----------------------------------------
scroll sp
---------------------------------------- */
#scroll-sp {
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 7;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}

@media screen and (max-width: 767px) {
  #scroll-sp {
    display: block;
    /* background-color: #fff; */
  }
}

#scroll-sp.is-top {
  opacity: 1;
  visibility: visible;
}

#scroll-sp.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

.scroll-sp__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 5px;
  width: 100%;
}

.scroll-sp__wrap li {
  display: block;
}

/* .scroll-sp__wrap li.is-tel {
  width: 34%;
}

.scroll-sp__wrap li.is-phone {
  width: 34%;
}

.scroll-sp__wrap li.is-line {
  width: 16%;
}

.scroll-sp__wrap li.to-top {
  width: 16%;
} */

.scroll-sp__wrap li a {
  display: block;
  width: 100%;
  height: inherit;
  margin-bottom: -36px;
  transition: 0.3s ease;
}

.scroll-sp__wrap li.to-top a {
  margin-bottom: 0;
}

.scroll-sp__wrap li a:hover {
  margin-bottom: 0;
  opacity: 1;
}

.scroll-sp__con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: 100%;
  height: auto;
  margin: 0 auto;
  /*   gap: 3px;
  padding: 22px 0; */
  justify-content: center;
}

.scroll-sp__con img {
  /* width: 100%;
  height: auto; */
  height: 30vw;
  width: auto;
}

.to-top .scroll-sp__con img {
  height: 50px;
}

.scroll-sp__con p {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.035em;
}

.scroll-sp__con p span {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
}

/* ----------------------------------------
to-top
---------------------------------------- */
#to-top-sp,
#to-top-pc {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 7;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: visible;
  display: block;
}

@media screen and (max-width: 975px) {
  #to-top-sp,
  #to-top-pc {
    width: 48px;
    right: 12px;
    bottom: 64px;
  }
}

#to-top-pc.is-top,
#to-top-sp.is-top {
  opacity: 0;
  visibility: hidden;
}

#to-top-pc.active,
#to-top-sp.active {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------
btn
---------------------------------------- */
.btn {
  width: 251px;
  height: 94px;
  padding: 28px 0 0 20px;
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.tel-btn {
  border: 2px solid rgba(56, 80, 107, 0.9);
  background-color: rgba(255, 255, 255, 0.9);
}

.phone-btn {
  background-color: rgba(56, 80, 107, 0.9);
}

.line-btn {
  background-color: rgba(24, 189, 24, 0.9);
}

.btn .icon-wrap {
  padding-top: 2px;
}

.btn .icon-wrap img {
  height: 35px;
  width: auto;
}

.btn .text-wrap {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.btn .text-wrap .top-text {
  font-size: 12px;
  font-size: 0.75rem;
}

.btn .text-wrap .main-text {
  font-size: 15px;
  font-size: 0.9375rem;
}

.btn .text-wrap .main-text span {
  font-size: 24px;
  font-size: 1.5rem;
}

.tel-btn .text-wrap {
  color: #38506b;
}

.phone-btn .text-wrap,
.line-btn .text-wrap {
  color: #fff;
}

.btn__point-box {
  display: none;
}

/* ----------------------------------------
box btn
---------------------------------------- */
.box-btn {
  border: 1px solid #38506b;
  display: block;
  width: 290px;
}

.box-btn span {
  color: #38506b;
  padding: 24px 0;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  display: block;
  width: 100%;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 975px) {
  .box-btn span {
    padding: 20px 0;
    font-size: 0.9375rem;
  }
}

.box-btn span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #38506b;
  right: -16px;
  bottom: 16px;
}

@media screen and (max-width: 975px) {
  .box-btn span::after {
    right: -14px;
    bottom: 14px;
  }
}

.box-btn span::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  background-color: #38506b;
  right: -16px;
  bottom: 16px;
  -webkit-transform: rotate(30deg) translateY(-3px);
  transform: rotate(30deg) translateY(-3px);
}

@media screen and (max-width: 975px) {
  .box-btn span::before {
    right: -14px;
    bottom: 14px;
  }
}

/* ----------------------------------------
more btn
---------------------------------------- */
.more-btn,
#page-content .elementor-post__read-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  color: var(--body-text-color);
  font-size: 18px;
  line-height: 0.8;
}

@media screen and (max-width: 975px) {
  .more-btn,
  #page-content .elementor-post__read-more {
    line-height: 0.7;
    font-size: 16px;
    gap: 6px;
  }
}

#page-content .elementor-post__read-more {
  font-size: 14px;
  margin-top: auto;
  position: relative;
  line-height: 1;
}

.more-btn::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/tp-doctor-arrow-beige.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

#page-content .elementor-post__read-more::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/icon-next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 975px) {
  .more-btn::after,
  #page-content .elementor-post__read-more::after {
    width: 20px;
    height: 20px;
  }
}

#page-content .elementor-post__read-more::after {
  width: 14px;
  height: 14px;
}

/* ----------------------------------------
case
---------------------------------------- */
/* #case {
  background-image: url(../img/case-bg.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  padding-bottom: 120px;
}

@media screen and (max-width: 975px) {
  #case {
    background-image: url(../img/case-bg-sp.png.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding-bottom: 32px;
  }
}

.case__title {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 975px) {
  .case__title {
    padding-top: 1em;
  }
}

.case__obj {
  position: absolute;
  white-space: nowrap;
  font-size: 110px;
  font-size: 6.875rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #E6F3F9;
  left: 24px;
  bottom: 64px;
}

@media screen and (max-width: 975px) {
  .case__obj {
    font-size: 2.8125rem;
    left: 8px;
    top: 0;
    bottom: unset;
  }
}

.case__wrap {
  width: 100%;
  background-image: url(../img/case-img.png.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  padding-top: 34px;
  margin-top: 34px;
}

@media screen and (max-width: 975px) {
  .case__wrap {
    background-image: unset;
    width: 100%;
    margin: 0 auto;
    padding-top: 16px;
  }
}

@media screen and (max-width: 975px) {
  .case__wrap img {
    width: 86.1538461538%;
    margin: 0 auto;
  }
}

.case__content {
  position: relative;
  z-index: 1;
} */

/* ----------------------------------------
case pickup
---------------------------------------- */
/* .case__pickup {
  background-color: rgba(255, 255, 255, .7);
  padding: 34px 88px 48px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

@media screen and (max-width: 975px) {
  .case__pickup {
    padding: 26px 44px;
    margin-top: 16px;
  }
}

.case__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 54px;
}

@media screen and (max-width: 975px) {
  .case__photo {
    gap: 6px;
    margin-bottom: 32px;
  }
}

.case__img img {
  width: 292px;
  aspect-ratio: 440.28/308.55;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 975px) {
  .case__img img {
    width: 100%;
  }
}

.case__img p {
  margin-top: 0.5em;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  color: #38506B;
}

@media screen and (max-width: 975px) {
  .case__img p {
    margin-top: 2px;
    font-size: 0.75rem;
  }
}

.case__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 975px) {
  .case__dl {
    margin-top: 12px;
    font-size: 0.8125rem;
  }
}

.case__dl dt {
  width: 145px;
  font-weight: 300;
}

@media screen and (max-width: 975px) {
  .case__dl dt {
    width: 40%;
  }
}

.case__dl dd {
  width: calc(100% - 145px);
}

@media screen and (max-width: 975px) {
  .case__dl dd {
    width: 60%;
  }
} */

/* ----------------------------------------
case search
---------------------------------------- */
/* .case__search {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px 60px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 34px;
  -moz-column-gap: 34px;
  column-gap: 34px;
  margin-left: auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  width: 526px;
}

@media screen and (max-width: 975px) {
  .case__search {
    display: none;
    width: 86.1538461538%;
    margin: 20px auto 0;
    row-gap: 12px;
  }
}

.case__search-con {
  width: 246px;
}

@media screen and (max-width: 975px) {
  .case__search-con {
    width: 100%;
  }
}

.case__search-con h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #38506B;
  letter-spacing: 0.035em;
  margin-bottom: 18px;
}

@media screen and (max-width: 975px) {
  .case__search-con h3 {
    font-size: 0.9375rem;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 975px) {
  .case__search-con ul {
    width: 80%;
  }
}

.case__search-con ul li {
  display: block;
  width: 100%;
}

.case__search-con ul li:nth-child(n+2) {
  margin-top: 16px;
}

@media screen and (max-width: 975px) {
  .case__search-con ul li:nth-child(n+2) {
    margin-top: 8px;
  }
}

.case__search-con ul li a {
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
  width: 100%;
}

.case__search-con ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  display: none;
}

@media screen and (max-width: 975px) {
  #case .more-btn {
    margin-top: 8px;
    display: block;
  }
} */

/*============================
#campaign
============================*/
/* #campaign {
  padding: 50px 0px 30px;
}

@media screen and (max-width: 975px) {
  #campaign {
    padding: 30px 0px;
  }
}

.campaign__wrap .campaign__obj {
  color: #E6F3F9;
  font-size: 110px;
  font-size: 6.875rem;
  line-height: 1.1;
  letter-spacing: 0.035em;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  padding: 0 30px;
}

@media screen and (max-width: 975px) {
  .campaign__wrap .campaign__obj {
    font-size: 11.5svw;
    padding: 0 12px;
  }
}

.campaign__wrap h2.campaign__title {
  margin-top: -72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 42px;
}

@media screen and (max-width: 975px) {
  .campaign__wrap h2.campaign__title {
    margin-top: -62px;
    margin-bottom: 24px;
  }
}

.campaign__wrap h2.campaign__title::after,
.campaign__wrap h2.campaign__title::before {
  border-top: 1px solid;
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 16px;
  margin-left: 1rem;
}

.campaign__wrap h2.campaign__title:before {
  margin-right: 16px;
  margin-right: 1rem;
  border-color: rgba(255, 255, 255, 0);
}

.campaign__wrap h2.campaign__title:after {
  margin-left: 16px;
  margin-left: 1rem;
}

.campaign__slider {
  max-width: 1085px;
  width: 100%;
  margin-left: auto;
  position: relative;
  margin-right: 30px;
}

@media screen and (max-width: 975px) {
  .campaign__slider {
    width: 94.9333333333%;
    margin: 0 auto;
  }
}

.swiper {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 975px) {
  .swiper {
    max-width: 950px;
    width: 79.4666666667%;
  }
}

.swiper .swiper-wrapper .swiper-slide img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 36px;
  height: 36px;
}

@media screen and (max-width: 975px) {

  .swiper-button-prev,
  .swiper-button-next,
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 20px;
    height: 20px;
    top: 58%;
  }
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev::after {
  background-image: url(../img/icon-prev.svg);
}

.swiper-button-next::after {
  background-image: url(../img/icon-next.svg);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}

.campaign__more {
  margin-top: -80px;
  height: 160px;
  width: 65.6661786237%;
  margin-left: auto;
  background: rgb(202, 209, 228);
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgb(202, 209, 228)), color-stop(80%, rgb(150, 169, 201)));
  background: linear-gradient(90deg, rgb(202, 209, 228) 20%, rgb(150, 169, 201) 80%);
  padding-top: 110px;
}

@media screen and (max-width: 975px) {
  .campaign__more {
    height: 82px;
    margin-top: -34px;
    padding-top: 52px;
    width: 92%;
  }
}

.campaign__more .more-btn {
  margin-right: 30px;
  color: #fff;
}

.campaign__more .more-btn::after {
  background-image: url(../img/icon-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 7;
} */

/* ----------------------------------------
last
---------------------------------------- */
.sp-flex,
.sp-block {
  display: none !important;
}

@media screen and (max-width: 975px) {
  .sp-hide {
    display: none !important;
  }

  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .sp-block {
    display: block !important;
  }
}

/* ----------------------------------------
以下下層モジュール（初期からあったcss）
---------------------------------------- */
/* ----------------------------------------
page mv
---------------------------------------- */
#top #page-mv {
  background-image: url(../img/tp-mv-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: auto;
  padding: 80px 0 80px 0 !important;
}

@media screen and (min-width: 975px) {
  #page-mv {
    overflow-x: hidden;
  }

  #page-mv .section-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 900px;
    padding: 0;
  }

  #page-mv .page-title {
    width: 50%;
  }

  #page-mv .page-title-wide {
    width: 100%;
  }

  #page-mv .page-mv-image {
    width: 50%;
  }
}

#page-mv .page-title,
#page-mv .page-title-wide {
  max-width: 900px;
  color: #fff;
  font-size: 32px;
  font-family: var(--font-mincho);
  font-weight: 500;
  align-content: center;
}

#page-mv .page-title {
  padding: 20px 10px;
}

#page-mv .page-title-wide {
  padding: 60px 10px 20px;
}

@media screen and (min-width: 975px) {
  #page-mv .page-title {
    text-align: left;
  }

  #page-mv .page-title-wide {
    text-align: center;
  }
}

@media screen and (max-width: 975px) {
  #page-mv .page-title,
  #page-mv .page-title-wide {
    font-size: 2rem;
    padding: 20px 0px 10px;
  }
}

#page-mv .page-mv-image {
  align-content: center;
  aspect-ratio: 16 / 9;
  margin: 40px auto 0px;
  box-shadow: 3px 4px 16.9px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

#page-mv .page-mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

#page-content {
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 975px) {
  #top #page-mv {
    padding: 40px 0 10px !important;
  }

  #page-content {
    font-size: 0.875rem;
  }

  #page-mv .page-mv-image {
    margin: 10px 0;
  }
}

/* ----------------------------------------
  page content
  ---------------------------------------- */
/* ----------------------------------------
  見出し
  ---------------------------------------- */
/* ----------------------------------------
  マーカー
  ---------------------------------------- */

#page-content .elementor-heading-title {
  line-height: 1.3;
}

#page-content h2.elementor-heading-title,
#page-content h3.elementor-heading-title,
#page-content h4.elementor-heading-title,
#page-content h5.elementor-heading-title {
  padding: 0.8em 1.2em;
  font-family: var(--font-gothic);
  position: relative;
  font-weight: 500;
  align-content: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 975px) {
  #page-content h2.elementor-heading-title,
  #page-content h3.elementor-heading-title,
  #page-content h4.elementor-heading-title,
  #page-content h5.elementor-heading-title {
    padding: 0.8em 0.8em;
  }
}

#page-content h2.elementor-heading-title {
  color: var(--body-text-color);
  font-size: 24px;
  margin-top: 1em;
  padding: 0.8em 1em;
  font-weight: bold;
  line-height: 1.5;
  background-color: rgba(31, 79, 94, 0.1);
  border-left: 2px solid var(--body-color-main-01);
}

#page-content h3.elementor-heading-title {
  font-size: 22px;
  padding: 1em 1em 0.5em 0.5em;
  color: var(--body-text-color);
  border-bottom: 2px solid var(--body-color-main-01);
}

@media screen and (max-width: 975px) {
  #page-content h2.elementor-heading-title {
    padding: 0.5em;
    font-size: 24px;
    letter-spacing: 0.01em;
    font-weight: 500;
  }

  #page-content h3.elementor-heading-title {
    font-size: 20px;
  }
}

#page-content h5.elementor-heading-title {
  color: var(--body-color-main-01);
}

#page-content h4.elementor-heading-title {
  margin-left: 1.2em;
}

#page-content h4.elementor-heading-title {
  font-size: 18px;
  padding: 1em 0.4em 1em 1em;
  color: var(--body-text-color);
  margin-left: 0.2em;
}

@media screen and (max-width: 975px) {
  #page-content h4.elementor-heading-title {
    font-size: 18px;
  }

  #page-content h4.elementor-heading-title {
    padding-left: 1em;
    margin-left: 0;
  }
}

#page-content .color-beige h2.elementor-heading-title {
  border-left: 2px solid var(--body-color-main-02);
  background-color: rgba(215, 186, 149, 0.2);
}

#page-content .color-beige h3.elementor-heading-title {
  border-bottom: 2px solid var(--body-color-main-02);
}

#page-content .color-beige h5.elementor-heading-title {
  color: var(--body-color-main-02);
}

#page-content .elementor-button {
  position: relative;
  padding: 16px 36px 16px 52px;
  min-width: 280px;
  width: auto;
  background: #fff;
  border-radius: 0;
  border-bottom: 1px solid var(--body-color-main-01);
  transition: 0s;
}

#page-content .elementor-button:hover {
  border: 1px solid var(--body-color-main-01);
  border-radius: var(--border-radius-full);
}

#page-content .elementor-button-warning .elementor-button,
#page-content .elementor-button-info .elementor-button {
  border-bottom: none;
  transition: 0.3s;
}

.elementor-button-text {
  position: relative;
}

#page-content
  .elementor-button
  .elementor-button-link:hover
  .elementor-button-text::before,
#page-content
  .elementor-button-warning
  .elementor-button.elementor-button-link:hover
  .elementor-button-text::before,
#page-content
  .elementor-button-danger
  .elementor-button.elementor-button-link:hover
  .elementor-button-text::before,
#page-content
  .elementor-button-info
  .elementor-button.elementor-button-link:hover
  .elementor-button-text::before {
  transform: scale(0, 1);
  /*動かないよう設定*/
}

#page-content .elementor-button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 14px;
  background-image: url(../img/tp-icon-exlink-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

#page-content .elementor-button-warning .elementor-button::after,
#page-content .elementor-button-info .elementor-button::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 14px;
  background-image: url(../img/tp-btn-arrow-bg-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

#page-content .elementor-button-warning .elementor-button::after {
  background-image: url(../img/tp-btn-arrow-bg-beige.svg);
  z-index: 1;
}

#page-content .elementor-button span {
  font-family: var(--font-gothic);
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--body-text-color);
  text-align: center;
  width: 100%;
}

#page-content .elementor-button:hover span {
  opacity: 1;
}

#page-content .elementor-button:hover::after {
  background-image: url(../img/tp-icon-exlink-green.svg);
}

#page-content .elementor-button-warning .elementor-button:hover::after,
#page-content .elementor-button-info .elementor-button:hover::after {
  background-image: url(../img/tp-btn-arrow-white.svg);
}

#page-content .elementor-button-danger .elementor-button:hover::after {
  background-image: url(../img/tp-icon-exlink-beige.svg);
}

#page-content .elementor-button-info .elementor-button.elementor-button-link {
  background: #fff;
  border-radius: var(--border-radius-full);
}

#page-content
  .elementor-button-info
  .elementor-button.elementor-button-link:hover {
  background: var(--body-color-main-01);
  box-shadow: 0px 12px 20px rgba(0, 13, 50, 0.12);
  opacity: 1;
}

#page-content
  .elementor-button-warning
  .elementor-button.elementor-button-link:hover {
  background: var(--body-color-main-02);
  box-shadow: 0px 12px 20px rgba(0, 13, 50, 0.12);
  opacity: 1;
  border: 1px solid var(--body-color-main-02);
}

#page-content
  .elementor-button-info
  .elementor-button.elementor-button-link:hover
  span,
#page-content
  .elementor-button-warning
  .elementor-button.elementor-button-link:hover
  span {
  color: #fff;
}

#page-content
  .elementor-button-success
  .elementor-button.elementor-button-link {
  background: url(../img/btn-bg.png.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

#page-content
  .elementor-button-success
  .elementor-button.elementor-button-link::before {
  content: "";
  position: absolute;
  -webkit-transform: unset;
  transform: unset;
  top: 4px;
  left: 4px;
  width: calc(100% - 10px);
  height: calc(100% - 8px);
  border: 1px solid #fff;
}

#page-content
  .elementor-button-warning
  .elementor-button.elementor-button-link:hover::after {
  box-shadow: none;
}

#page-content
  .elementor-button-warning
  .elementor-button.elementor-button-link:hover,
#page-content
  .elementor-button-danger
  .elementor-button.elementor-button-link:hover {
  box-shadow: 0px 12px 20px rgba(0, 13, 50, 0.12);
  opacity: 1;
}

#page-content .elementor-button-danger .elementor-button.elementor-button-link {
  border-bottom: 1px solid var(--body-color-main-02);
}

#page-content
  .elementor-button-danger
  .elementor-button.elementor-button-link::after {
  background-image: url(../img/tp-icon-exlink-beige.svg);
}

#page-content
  .elementor-button-danger
  .elementor-button.elementor-button-link:hover {
  border: 1px solid var(--body-color-main-02);
}

#page-content
  .elementor-button-danger
  .elementor-button.elementor-button-link:hover::after {
  box-shadow: none;
}

#page-content .elementor-widget-text-editor {
  line-height: 1.7;
}

#page-content span.marker1 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, transparent),
    color-stop(0%, #cdecfd)
  );
  background: linear-gradient(transparent 60%, #cdecfd 0%);
  display: inline;
  padding: 0 1px 0px;
}

#page-content span.marker2 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, transparent),
    color-stop(0%, #fdf8b6)
  );
  background: linear-gradient(transparent 60%, #fdf8b6 0%);
  display: inline;
  padding: 0 1px 0px;
}

#page-content span.marker3 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(94%, transparent),
    color-stop(0%, #cdecfd)
  );
  background: linear-gradient(transparent 94%, #cdecfd 0%);
  display: inline;
  padding: 0 1px 0px;
}

#page-content span.marker4 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(94%, transparent),
    color-stop(0%, #80d9cf)
  );
  background: linear-gradient(transparent 94%, #80d9cf 0%);
  display: inline;
  padding: 0 1px 0px;
}

#page-content {
  /* ----------------------------------------
  s-post
  ---------------------------------------- */
}

#page-content .s-post__obj {
  background-color: #8b9fbb;
  border-radius: 10px 10px 0 0;
  padding: 14px 12px 13px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 235px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__obj {
    font-size: 0.875rem;
    min-width: unset;
    padding: 14px 18px 13px;
  }
}

#page-content .s-post__box {
  border: 1px solid #8b9fbb;
  padding: 24px 36px;
  border-radius: 0 10px 10px 10px;
  display: block;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__box {
    padding: 12px 12px;
  }
}

#page-content .s-post__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }
}

#page-content .s-post__img {
  width: 334px;
  height: auto;
  aspect-ratio: 334/225;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__img {
    width: 100%;
  }
}

#page-content .s-post__content {
  width: calc(100% - 384px);
}

@media screen and (max-width: 975px) {
  #page-content .s-post__content {
    width: 100%;
  }
}

#page-content .s-post__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #38506b;
  line-height: 1.2;
  margin-top: 1em;
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__title {
    font-size: 1.125rem;
    margin-bottom: 0.4em;
  }
}

#page-content .s-post__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media screen and (max-width: 975px) {
  #page-content .s-post__text {
    font-size: 0.875rem;
  }
}

#page-content {
  /* ----------------------------------------
  md
  ---------------------------------------- */
}

#page-content .s-md__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 975px) {
  #page-content .s-md__wrap {
    display: block;
  }
}

#page-content .s--md__merit.merit01 {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    140deg,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 50%,
    rgb(250, 253, 254) 50%,
    rgb(250, 253, 254) 100%
  );
}

#page-content .s--md__merit.merit02 {
  background-image: url(../img/merit-bg.jpg);
}

#page-content .s--md__demerit.demerit01 {
  background: rgb(237, 238, 241);
  background-image: linear-gradient(
    140deg,
    rgb(237, 238, 241) 0%,
    rgb(237, 238, 241) 50%,
    rgb(243, 243, 245) 50%,
    rgb(243, 243, 245) 100%
  );
}

#page-content .s--md__demerit.demerit02 {
  background: url(../img/demerit-bg.jpg);
}

#page-content .s--md__merit,
#page-content .s--md__demerit {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 50%;
  position: relative;
  padding: 76px 36px 32px;
}

@media screen and (max-width: 975px) {
  #page-content .s--md__merit,
  #page-content .s--md__demerit {
    width: 100%;
    padding: 48px 12px 24px;
  }
}

#page-content .s--md__merit::after,
#page-content .s--md__demerit::after {
  position: absolute;
  left: 16px;
  top: 32px;
  font-size: 60px;
  font-size: 3.75rem;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}

@media screen and (max-width: 975px) {
  #page-content .s--md__merit::after,
  #page-content .s--md__demerit::after {
    left: 8px;
    top: 12px;
    font-size: 16svw;
  }
}

#page-content .s--md__merit::after {
  content: "MERIT";
}

#page-content .s--md__demerit::after {
  content: "DEMERIT";
}

#page-content .s-md__title {
  position: relative;
  z-index: 1;
  color: #38506b;
  border-bottom: 1px solid #38506b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.035em;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 0.8em;
}

#page-content .s-md__wrap .s-check__list,
#page-content .s-md__wrap .s-dot__list {
  margin-top: 24px;
}

#page-content .s-check__list,
#page-content .s-dot__list {
  position: relative;
  z-index: 1;
  color: var(--body-text-color);
  font-size: 16px;
  line-height: 1.4;
}

#page-content .s-check__list li,
#page-content .s-dot__list li,
#page-content .s-dot__list p,
#page-content .s-check__list p {
  padding-left: 20px;
  position: relative;
}

#page-content .s-check__list li,
#page-content .s-dot__list li {
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 16px;
}

#page-content .s-dot__list p,
#page-content .s-check__list p {
  font-family: var(--font-gothic);
  color: var(--body-text-color);
  font-size: 16px;
}

#page-content .s-check__list li:nth-child(n + 2),
#page-content .s-dot__list li:nth-child(n + 2) {
  margin-top: 0.8em;
}

#page-content .s-dot__list li::after {
  width: 6px;
  height: 6px;
  position: absolute;
  transform: translateY(-50%);
  left: 4px;
  top: calc(16px * 1.4 / 2);
  content: "";
  border-radius: 50%;
}

#page-content .s-dot__list-01 li::after {
  background-color: var(--body-color-main-01);
}

#page-content .s-dot__list-02 li::after {
  background-color: var(--body-color-main-02);
}

#page-content .s-check__list li::after {
  width: 17px;
  height: auto;
  aspect-ratio: 1/1;
  border: 2px solid #38506b;
  position: absolute;
  left: 4px;
  top: 4px;
  content: "";
}

#page-content .s-check__list li::before {
  content: "";
  position: absolute;
  border-bottom: 2px solid #38506b;
  border-left: 2px solid #38506b;
  height: 8px;
  width: 14px;
  -webkit-transform: rotate(-42deg);
  transform: rotate(-42deg);
  top: 5px;
  left: 8px;
}

#page-content .s--md__merit.merit01::after {
  color: #e5f3f9;
}

#page-content .s--md__demerit.demerit02::after {
  color: #b0bfd0;
}

#page-content .s--md__demerit.demerit02 .s-md__title {
  color: #fff;
  border-bottom: 1px solid #fff;
}

#page-content .s--md__demerit.demerit02 .s-check__list {
  color: #fff;
}

#page-content .s--md__demerit.demerit02 .s-check__list li::after {
  border: 2px solid #fff;
}

#page-content .s--md__demerit.demerit02 .s-check__list li::before {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

#page-content {
  /* ----------------------------------------
  person
  ---------------------------------------- */
  /* ----------------------------------------
  p-adv
  ---------------------------------------- */
}

#page-content .p-person,
#page-content .p-adv {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 24px;
  position: relative;
}

#page-content .p-adv::before {
  content: "";
  display: inline-block;
  width: 180px;
  height: 180px;
  background-image: url(../img/tp-icon-teeth-06.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -10%;
  right: -4%;
}

#page-content .p-person {
  padding: 20px 40px;
}

#page-content .p-adv {
  padding: 20px 40px;
  overflow: hidden;
}

@media screen and (max-width: 975px) {
  #page-content .p-person,
  #page-content .p-adv {
    padding: 12px 12px;
  }
}

#page-content .p-person__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__head {
    gap: 8px;
  }
}

#page-content .p-person__head::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../img/tp-doctor-btn-open.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

#page-content .p-person__head.open::after {
  background-image: url("../img/tp-doctor-btn-close.svg");
}

#page-content .p-person__img {
  width: 100px;
  height: fit-content;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__head::after {
    font-size: 24px;
    width: 40px;
    height: 40px;
  }

  #page-content .p-person__img {
    width: 20%;
  }
}

#page-content .p-person__title .p-person__clinic {
  font-size: 11px;
  margin-bottom: 0.4em;
  color: #737279;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__title .p-person__clinic {
    font-size: 0.75rem;
  }
}

#page-content .p-person__name {
  font-size: 24px;
  letter-spacing: 0.1em;
  display: flex;
  gap: 12px;
  align-items: center;
  align-content: center;
  font-family: var(--font-mincho);
  font-weight: bold;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__title .p-person__name {
    font-size: 18px;
    letter-spacing: 0.01em;
  }

  #page-content .p-person__name {
    justify-content: center;
  }
}

#page-content .p-person__name .p-person__name-title {
  font-size: 14px;
  display: inline-block;
}

#page-content .p-person__name .p-person__name-en {
  font-size: 16px;
  display: inline-block;
  font-family: var(--font-english);
  color: rgba(55, 53, 63, 0.3);
  font-weight: normal;
}

#page-content .p-person__body {
  margin-top: 12px;
  margin-left: 162px;
  display: none;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__body {
    margin-left: 0;
    padding-bottom: 12px;
  }

  #page-content .p-person__name .p-person__name-en {
    display: none;
  }
}

#page-content .p-person__body p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__body p {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 975px) {
  #page-content .p-adv {
    padding: 20px 12px 20px;
  }
}

#page-content .p-adv__title {
  font-size: 20px;
  font-family: var(--font-gothic);
  padding: 3px 10px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__title {
    text-align: center;
  }
}

#page-content .p-adv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  position: relative;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap {
    display: block;
  }
}

#page-content .p-adv__wrap .p-adv__img {
  width: 240px;
  height: 180px;
  aspect-ratio: 24 / 18;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap .p-adv__img {
    margin: 8px auto 0;
  }
}

#page-content .p-adv__wrap .p-person__content .p-person__clinic {
  font-size: 11px;
  margin-bottom: 0.4em;
  color: #737279;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap .p-person__content .p-person__clinic {
    margin-top: 1em;
    text-align: center;
  }
}

#page-content .p-adv__wrap .p-person__content .p-person__name {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-weight: bold;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap .p-person__content .p-person__name {
    font-size: 1.25rem;
    text-align: center;
  }
}

#page-content .p-adv__wrap .p-person__content .p-person__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-bottom: 3em;
  color: #737279;
}

@media screen and (max-width: 975px) {
  #page-content .p-adv__wrap .p-person__content .p-person__text {
    font-size: 0.875rem;
  }
}

#page-content .p-adv__wrap .p-person__content .more-btn,
#page-content .p-more-btn__wrap {
  position: absolute;
  right: 0;
  bottom: 0;
}

#page-content .p-adv__wrap .p-person__content .more-btn:hover,
#page-content .p-more-btn__wrap:hover {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#page-content .p-more-btn {
  position: relative;
  padding: 14px 54px 14px 24px;
  width: 232px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #38506b;
  display: block;
}

#page-content .p-more-btn:hover {
  background: #38506b;
}

#page-content .p-more-btn:hover span {
  color: #fff;
}

#page-content .p-more-btn:hover::after {
  background-image: url(../img/icon-btn-obj01.svg);
}

@media screen and (max-width: 975px) {
  #page-content .p-more-btn {
    position: relative;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

#page-content .p-more-btn::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 14.28px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 54%;
  right: 24px;
  background-image: url(../img/icon-btn-obj04.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

#page-content .p-more-btn span {
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  color: #38506b;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 975px) {
  #page-content .p-more-btn__wrap {
    position: relative;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* ----------------------------------------
p-case：おそらく症例のcss
---------------------------------------- */

/* #page-content .p-case {
  margin: 0 auto;
  max-width: 910px;
  width: 100%;
}

#page-content .p-case__num {
  font-size: 84px;
  font-size: 5.25rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  padding-left: 0.4em;
  color: #C5D8E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 0.1em;
}

@media screen and (max-width: 975px) {
  #page-content .p-case__num {
    font-size: 4rem;
  }
}

#page-content .p-case__num::before {
  position: absolute;
  content: "Case";
  font-family: "Pinyon Script", serif;
  color: #507F98;
  left: 0;
  bottom: 0;
  font-size: 35px;
  font-size: 2.1875rem;
}

@media screen and (max-width: 975px) {
  #page-content .p-case__num::before {
    ont-size: 1rem;
  }
}

#page-content .p-case__num:after {
  border-bottom: 1px solid #38506B;
  content: "";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 40px;
}

#page-content .p-case__num:after {
  margin-left: 16px;
  margin-left: 1rem;
}

#page-content .case__pickup {
  padding: 0;
  width: 100%;
}

#page-content .case__photo {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}

@media screen and (max-width: 975px) {
  #page-content .case__photo {
    margin-bottom: 12px;
  }
}

#page-content .case__img img {
  max-width: 440px;
  width: 100%;
} */

#page-content {
  /* ----------------------------------------
  post
  ---------------------------------------- */
}

#page-content .elementor-post .elementor-post__title {
  color: #38506b;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.02em;
  font-weight: bold;
}

#page-content .elementor-post .elementor-post__excerpt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 300;
  margin-top: 0.4em;
  color: #121212;
}

/* #search__head {
  padding: 0 20px;
}

#earch__head .container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

form.search-form {
  border: 1px solid #38506B;
  border-radius: 10px;
  padding: 20px;
  background-color: #EEF8FB;
}

form.search-form .search-form__group:nth-child(n+2) {
  margin-top: 24px;
}

.search-form__title {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 1.5em;
  position: relative;
  font-family: "Noto Serif JP", serif;
  color: #121212;
  font-weight: bold;
  margin-bottom: 16px;
}

@media screen and (max-width: 975px) {
  .search-form__title {
    font-size: 0.875rem;
  }
}

.search-form__title::after {
  content: "";
  position: absolute;
  background: #121212;
  border-radius: 50%;
  height: 60%;
  width: auto;
  aspect-ratio: 1/1;
  left: 0.3em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

.search-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 12px;
  background-color: #fff;
  border-radius: 10px;
}

.search-form__label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: block;
  white-space: nowrap;
}

@media screen and (max-width: 975px) {
  .search-form__label {
    font-size: 0.75rem;
  }
}

.search-form__label input.search-form__checkbox {
  display: none;
}

.search-form__label span.search-form__term {
  color: #38506B;
  padding: 4px 12px;
  border: #38506B solid 1px;
  border-radius: 100px;
  background: #fff;
  display: block;
}

.search-form__label input.search-form__checkbox:checked+span.search-form__term {
  background-color: #38506B;
  color: #fff;
}

form.search-form .search-form__group input.search-form__submit {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  padding: 12px 24px;
  border-radius: 100px;
  margin: 24px auto 0;
  width: 100%;
  max-width: 180px;
  font-weight: 500;
  color: #fff;
  background-color: #38506B;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

@media screen and (max-width: 975px) {
  form.search-form .search-form__group input.search-form__submit {
    font-size: 0.875rem;
  }
}

form.search-form .search-form__group input.search-form__submit:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

#case__container {
  padding: 100px 0 120px;
  margin-top: 80px;
  background-color: #EEF8FB;
}

@media screen and (max-width: 975px) {
  #case__container {
    margin-top: 48px;
    padding: 40px 20px 80px;
  }
}

.case-list__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 24px;
}

@media screen and (max-width: 975px) {
  .case-list__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.case-list__wrap .case-list__con {
  padding: 24px 24px 60px;
  margin: 0;
  -webkit-box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, .4);
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, .4);
  border-radius: 10px;
  position: relative;
  background-color: #fff;
}

.case-list__wrap .case-list__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #38506B;
  display: block;
  margin-bottom: 8px;
}

.case-list__wrap .case__pickup {
  padding: 0;
}

.case-list__wrap .case__photo {
  margin-bottom: 12px;
}

.case-list__wrap .case__img img {
  width: 100%;
}

.case-list__wrap .more-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.case__terms h3 {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  color: #38506B;
}

.case__terms ul {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}

.case__terms ul li {
  display: block;
  padding: 4px 12px;
  border-radius: 100px;
  text-align: center;
  color: #38506B;
  border: 1px solid #38506B;
  font-size: 12px;
  font-size: 0.75rem;
}

.case-list__desc {
  padding: 14px;
  background-color: #EEF8FB;
  margin-top: 14px;
}

.case-list__desc .case__dl:nth-child(1) {
  margin: 0;
}

.pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
}

.pagination {
  white-space: nowrap;
}

.pagination nav.navigation.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pagination nav.navigation.pagination .nav-links a.page-numbers,
.pagination nav.navigation.pagination .nav-links span.page-numbers.current {
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
  padding-top: 0.4em;
  font-weight: bold;
  border-radius: 50%;
}

.pagination nav.navigation.pagination .nav-links a.page-numbers {
  background: #fff;
  color: #38506B;
}

.pagination nav.navigation.pagination .nav-links span.page-numbers.current {
  background: #38506B;
  color: #fff;
}

.pagination nav.navigation.pagination .nav-links a.next.page-numbers {
  background-color: unset;
  width: auto;
}

.pagination nav.navigation.pagination .nav-links a.prev.page-numbers {
  background-color: unset;
  width: auto;
} */

/* ----------------------------------------
以下下層モジュール（新しく追加したcss）
---------------------------------------- */

#page-content {
  max-width: 900px;
  padding: 20px 5px 200px;
  margin: 0 auto;
  font-size: 16px;
  line-height: var(--body-line-height);
  font-family: var(--font-gothic);
  color: var(--body-text-color);
}

@media screen and (max-width: 767px) {
  #page-content {
    overflow-x: hidden;
    padding-bottom: 20px;
  }
}

/* パンくずリスト */
.tp-breadcrumb {
  color: #224371;
  font-weight: bold;
}

.tp-breadcrumb a {
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: underline !important;
  font-weight: 500;
}

@media screen and (max-width: 975px) {
  .tp-breadcrumb {
    font-size: 0.875rem;
  }
}

#breadcrumbs {
  color: #737279;
  padding: 10px;
  font-size: 14px;
  font-family: var(--font-gothic);
  font-weight: 500;
  letter-spacing: 0.05em;
}

#breadcrumbs span {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

#breadcrumbs span span:first-child {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}

#breadcrumbs span span:first-child::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/tp-icon-breadcrumbs.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#breadcrumbs .breadcrumb_last {
  color: var(--body-text-color);
}

.breadcrumb {
  width: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 975px) {
  #breadcrumbs {
    padding: 5px;
    font-size: 12px;
  }

  #breadcrumbs span {
    font-size: 10px;
  }

  .breadcrumb {
    margin-bottom: 0;
  }
}

/* hタグタイトル */
#page-content .elementor-menu-anchor,
#page-content .elementor-widget-heading {
  display: block;
  /* padding-top: 100px; */
  /* 調整したい高さ（固定ヘッダーの高さ） */
  /* margin-top: -100px; */
  /* heightと同じ分のネガティブマージン */
}

#page-content h4.elementor-heading-title::after {
  height: 10px;
  width: 10px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  top: 52%;
  background: var(--body-color-main-01);
  border-radius: var(--border-radius-full);
}

#page-content .color-beige h4.elementor-heading-title::after {
  background: var(--body-color-main-02);
}

/* マーカー線 */
#page-content .elementor-widget-text-editor {
  font-size: 16px;
  font-family: var(--font-gothic);
}

.tp-marker-yellow {
  background: linear-gradient(transparent 50%, #ffff66 80%);
  padding-bottom: 0.1rem;
}

.tp-marker-concept {
  background: linear-gradient(to bottom, transparent 80%, #ffff99 80%);
  white-space: nowrap;
}

/* リスト */
.tp-list {
  margin: 1em auto;
}

.tp-list li {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  padding-left: 20px;
  position: relative;
}

.tp-list li:not(:last-child) {
  margin-bottom: 0.5em;
}

.tp-list li::after {
  width: 6px;
  height: 6px;
  position: absolute;
  transform: translateY(-50%);
  left: 4px;
  top: calc(var(--body-font-size) * var(--body-line-height) / 2);
  content: "";
  border-radius: 50%;
  background-color: var(--body-color-main-01);
}

.tp-list-02 li::after {
  background-color: var(--body-color-main-02);
}

/* テーブル */
.tp-table,
.tp-table th,
.tp-table td,
.tp-table__column-header th:first-child::before {
  border-collapse: collapse;
}

.tp-table th {
  font-weight: normal;
}

.tp-table {
  font-family: sans-serif;
  font-size: 0.9em;
  letter-spacing: 1px;
  background-color: #f1f1f1;
  width: 100%;
}

.tp-table .row-colored th {
  font-weight: 500;
  background-color: var(--body-color-main-01);
  color: #fff;
}

.tp-table th,
.tp-table td {
  padding: 8px 10px;
  min-width: 100px;
}

.tp-table__column-header th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  border: none;
}

.tp-table__column-header th:first-child::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
}

.tp-table th,
.tp-table td {
  border: 1px solid #fff;
}

.tp-table tbody tr .column-colored {
  font-weight: 500;
  background-color: #dae3e6;
}

.tp-table tbody tr .column-colored-light {
  font-weight: 500;
  background-color: #dae3e6;
}

@media screen and (max-width: 767px) {
  .tp-table-scroll {
    overflow-x: auto;
  }

  .tp-table th,
  .tp-table td {
    min-width: 200px;
  }

  .tp-table th.middle-column,
  .tp-table td.middle-column {
    min-width: 300px;
  }

  .tp-table th.large-column,
  .tp-table td.large-column {
    min-width: 400px;
  }

  .tp-table__column-header tr th:first-child {
    min-width: 150px;
  }
}

/* テーブルのスクロールテキスト */
.tp-table-scroll-text-box {
  position: relative;
  height: 20px;
}

.tp-table-scroll-text {
  position: absolute;
  top: 0;
  right: 1%;
  animation: arrowmove 1.5s ease-in-out infinite;
  font-size: 14px;
  font-family: var(--font-round);
  font-weight: 500;
  color: var(--body-text-color);
  letter-spacing: 0.01em;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    right: 1%;
  }

  50% {
    right: 3%;
  }

  100% {
    right: 1%;
  }
}

/* 料金表のテーブル用 */
.tp-price-table td {
  text-align: right;
}

.tp-price-table th,
.tp-price-table td {
  align-content: center;
}

/* メリット・デメリット */
.tp-compare {
  width: 100%;
}

.tp-compare .tp-compare__block {
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.tp-compare .tp-compare__block::before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 150px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 2%;
  opacity: 0.2;
}

.tp-compare__merit::before {
  background-image: url("../img/tp-merit-circle.svg");
  left: -5%;
}

.tp-compare__demerit::before {
  background-image: url("../img/tp-demerit-triangle.svg");
  right: -5%;
}

.tp-compare__merit {
  background-color: #f5f5f5;
}

.tp-compare__demerit {
  background-color: #737279;
}

.tp-compare__title {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-english);
  text-align: center;
  padding-bottom: 0.5rem;
}

.tp-compare__merit .tp-compare__title {
  color: var(--body-color-main-02);
  border-bottom: 1px solid var(--body-color-main-02);
}

.tp-compare__demerit .tp-compare__title {
  border-bottom: 1px solid #fff;
}

.tp-compare__demerit .tp-compare__title,
.tp-compare__demerit .tp-compare__text,
.tp-compare__demerit .tp-compare__list {
  color: #fff;
}

.tp-compare .tp-compare__list {
  list-style: none;
  padding-left: 0;
}

.tp-compare .tp-compare__item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
}

.tp-compare .tp-compare__text {
  margin: 20px 0;
}

.tp-compare .tp-compare__item::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
  border-radius: var(--border-radius-full);
}

.tp-compare .tp-compare__merit .tp-compare__item::before {
  background: var(--body-color-main-02);
}

.tp-compare .tp-compare__demerit .tp-compare__item::before {
  background: #fff;
}

@media screen and (min-width: 767px) {
  .tp-compare {
    display: flex;
    justify-content: space-around;
    gap: 0;
    position: relative;
  }

  .tp-compare::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url("../img/tp-icon-triangle-merit-demerit.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 1;
  }

  .tp-compare-single::before {
    content: none;
  }

  .tp-compare .tp-compare__block {
    width: 50%;
  }

  .tp-compare .tp-compare__block-long {
    width: 90%;
  }

  .tp-compare .tp-compare__merit {
    border-radius: 30px 0 0 30px;
  }

  .tp-compare-single .tp-compare__merit {
    border-radius: 30px;
  }

  .tp-compare .tp-compare__demerit {
    border-radius: 0 30px 30px 0;
  }

  .tp-compare-single .tp-compare__demerit {
    border-radius: 30px;
  }
}

/* コンバージョンブロック（CTA） */
.tp-cta {
  padding: 2rem 1rem;
  background: var(--body-color-main-01);
  text-align: center;
  margin: 1rem 0;
  color: #fff;
  border-radius: 36px;
  position: relative;
}

.tp-cta-white {
  background: #f5f5f5;
  color: var(--body-text-color);
}

.tp-cta::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 125px;
  background-image: url("../img/tp-icon-teeth-05.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 10%;
  right: 2%;
}

.tp-cta-white::before {
  background-image: url("../img/tp-icon-teeth-04.svg");
}

.tp-cta .tp-cta__lead-text {
  width: 80%;
  margin: 0 auto;
  font-size: 12px;
}

.tp-cta .tp-cta__title {
  width: 80%;
  margin: 0 auto;
  font-size: 24px;
  padding: 8px 0 20px;
  font-family: var(--font-mincho);
}

.tp-cta .tp-cta__text {
  width: 80%;
  margin: 0 auto;
  font-size: 14px;
}

.tp-cta__btn-list .tp-cta__btn {
  display: block;
  padding: 1.2em 1em 1em;
  text-decoration: none;
  align-content: center;
  margin: 1rem 0;
  font-size: 16px;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: var(--border-radius-full);
  position: relative;
  padding-left: 32px;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.tp-cta__btn-list .tp-cta__btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 52%;
  left: 36px;
}

.tp-cta__btn-list .tp-cta__web {
  background: var(--body-color-main-01);
}

.tp-cta__btn-list .tp-cta__web::before {
  background-image: url("../img/tp-icon-cta-web-white.svg");
}

.tp-cta__btn-list .tp-cta__tel {
  background: var(--body-color-main-02);
}

.tp-cta-white .tp-cta__btn-list .tp-cta__tel {
  background: #76716b;
}

.tp-cta__btn-list .tp-cta__tel::before {
  background-image: url("../img/tp-icon-cta-tel-white.svg");
}

.tp-cta__btn-list .tp-cta__line {
  background: #00b900;
}

.tp-cta__btn-list .tp-cta__line::before {
  background-image: url("../img/tp-icon-cta-line-white.svg");
}

.tp-cta__btn-list .tp-cta__btn-text-small {
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
  background: rgba(245, 245, 245, 1);
  padding: 0.5em 1em;
  border-radius: var(--border-radius-full);
  white-space: nowrap;
  font-weight: 500;
}

.tp-cta__btn-list .tp-cta__web .tp-cta__btn-text-small {
  color: var(--body-color-main-01);
}

.tp-cta__btn-list .tp-cta__tel .tp-cta__btn-text-small {
  color: var(--body-color-main-02);
}

.tp-cta-white .tp-cta__btn-list .tp-cta__tel .tp-cta__btn-text-small {
  color: #76716b;
}

.tp-cta__btn-list .tp-cta__line .tp-cta__btn-text-small {
  color: #00b900;
}

.tp-cta__btn-list .tp-cta__btn-text {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tp-cta__btn-list .tp-cta__btn-text::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

.tp-cta__btn-list .tp-cta__web .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-web.png);
}

.tp-cta__btn-list .tp-cta__tel .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-tel.png);
}

.tp-cta__btn-list .tp-cta__line .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-line.png);
}

.tp-cta__btn-list .tp-cta__line .tp-cta__btn-text-small {
  font-size: 12px;
}

.tp-cta__btn-list .tp-cta__line .tp-cta__btn-text-middle {
  font-size: 16px;
}

.tp-cta__btn-list {
  margin-top: 1rem;
}

@media screen and (min-width: 767px) {
  .tp-cta__btn-list {
    display: flex;
    justify-content: center;
    gap: 1%;
  }

  .tp-cta__btn-list .tp-cta__btn {
    width: 250px;
  }

  .tp-cta .tp-cta__lead-text,
  .tp-cta .tp-cta__title,
  .tp-cta .tp-cta__text {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .tp-cta__btn-list {
    margin-top: 2em;
  }

  .tp-cta__btn-list .tp-cta__btn {
    margin: 2em auto 1em;
    width: 90%;
  }
}

/* コンバージョンボタン単体 */

.tp-cta__single-btn-list .tp-cta__single-btn {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  position: relative;
  outline-offset: -5px;
  line-height: 1;
  align-content: center;
  font-size: 24px;
  width: 300px;
  height: 90px;
}

.tp-cta__single-btn-list .tp-cta__single-web {
  background: #fff;
  color: var(--body-title-color);
  outline: solid 1px var(--body-title-color);
  box-shadow: 5px 6px 0 #1d837b;
}

.tp-cta__single-btn-list .tp-cta__single-tel {
  font-family: var(--font-english);
  font-size: 30px;
  background: #fff;
  color: #224371;
  outline: solid 1px #84b6f2;
  box-shadow: 5px 6px 0 #84b6f2;
}

.tp-cta__single-btn-list .tp-cta__single-line {
  background: #fff;
  color: #00c300;
  outline: solid 1px #00c300;
  box-shadow: 5px 6px 0 #00c300;
  padding-bottom: 1rem;
}

.tp-cta__single-btn-list .tp-cta__btn-text {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tp-cta__single-btn-list .tp-cta__btn-text::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

.tp-cta__single-btn-list .tp-cta__single-web .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-web.png);
}

.tp-cta__single-btn-list .tp-cta__single-tel .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-tel.png);
}

.tp-cta__single-btn-list .tp-cta__single-line .tp-cta__btn-text::before {
  background-image: url(../img/tp-cta-icon-line.png);
}

.tp-cta__single-btn-list .tp-cta__single-btn-text-small {
  font-size: 14px;
}

.tp-cta__single-btn-list .tp-cta__single-line .tp-cta__single-btn-text-small {
  line-height: 2;
}

@media screen and (min-width: 767px) {
  .tp-cta__single-btn-list {
    display: flex;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .tp-cta__single-btn-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ステップ/流れ */
.tp-step {
  position: relative;
}

.tp-step::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 101%;
  border-radius: 10px;
  background: #f5f5f5;
  transform: translateY(-50%);
  top: 50%;
  left: -4%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .tp-step::before {
    content: none;
  }
}

@media screen and (min-width: 767px) {
  .tp-step .tp-step-box {
    display: flex;
    justify-content: space-between;
  }

  .tp-step .tp-step-title-box {
    width: 32%;
  }

  .tp-step .tp-step-text-box {
    width: 62%;
  }
}

.tp-step .tp-step-box {
  padding: 30px 0;
  border-bottom: 2px solid #e3e3e3;
}

.tp-step .tp-step-title-box,
.tp-step .tp-step-text-box {
  align-content: center;
}

.tp-step .tp-step-num {
  width: fit-content;
  padding: 0.4rem 1rem;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: var(--body-color-main-01);
  border-radius: var(--border-radius-full) var(--border-radius-full)
    var(--border-radius-full) 0;
  margin-bottom: 0.5rem;
}

.tp-step .tp-step-title {
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  .tp-step .tp-step-title-box {
    margin-bottom: 30px;
  }

  .tp-step .tp-step-title {
    font-size: 20px;
  }
}

/* フローチャート */
.tp-flow-chart {
  padding: 4em 1em 1em;
  background: #d9d9d9;
}

.tp-flow-chart::before {
  content: none;
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #d9d9d9;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.tp-flow-chart .tp-flow-chart-content-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 3rem;
  position: relative;
}

.tp-flow-chart .tp-flow-chart-content {
  width: 94%;
  margin: 0 auto 0 0;
  padding: 2em;
  background: #fff;
  border-radius: 50px 50px 0 50px;
  position: relative;
}

.tp-flow-chart .tp-flow-chart-content-reverse {
  margin: 0 0 0 auto;
  border-radius: 50px 50px 50px 0;
}

.tp-flow-chart .tp-flow-chart-content::before {
  content: "";
  display: inline-block;
  width: 58px;
  height: 50px;
  background-image: url("../img/tp-triangle-white-large.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(60%, 0%);
  bottom: 0;
  right: 0;
}

.tp-flow-chart .tp-flow-chart-content-reverse::before {
  transform: translate(-60%, 0%) scale(-1, 1);
  left: 0;
  right: auto;
}

.tp-flow-chart .tp-flow-chart-image {
  object-fit: cover;
  border-radius: 24px;
  height: fit-content;
  aspect-ratio: 3 / 2;
}

.tp-flow-chart .tp-flow-chart-content-upper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media screen and (min-width: 767px) {
  .tp-flow-chart .tp-flow-chart-content-reverse .tp-flow-chart-content-upper {
    flex-direction: row-reverse;
  }

  .tp-flow-chart .tp-flow-chart-text-box {
    width: 55%;
  }

  .tp-flow-chart .tp-flow-chart-image {
    width: 40%;
  }
}

.tp-flow-chart .tp-flow-chart-title {
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 500;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .tp-flow-chart .tp-flow-chart-content-upper {
    flex-direction: column;
    gap: 0;
  }

  .tp-flow-chart .tp-flow-chart-text-box {
    display: contents;
  }

  .tp-flow-chart .tp-flow-chart-num {
    order: 1;
  }

  .tp-flow-chart .tp-flow-chart-title {
    order: 2;
  }

  .tp-flow-chart .tp-flow-chart-image {
    order: 3;
    margin-bottom: 1rem;
  }

  .tp-flow-chart .tp-flow-chart-text {
    order: 4;
  }
}

.tp-flow-chart .tp-flow-chart-num {
  color: var(--body-color-main-01);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-number);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 16px;
  position: relative;
}

.tp-flow-chart .tp-flow-chart-num .tp-flow-chart-num-en {
  font-size: 14px;
  font-weight: bold;
  font-family: var(--font-english);
  display: inline-block;
}

.tp-flow-chart .tp-flow-chart-num::before {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--body-color-main-01);
}

.tp-flow-chart .tp-flow-chart-text {
  color: #737279;
}

.tp-flow-chart .tp-flow-chart-text a {
  color: var(--body-color-main-01);
  text-decoration: underline;
}

.tp-flow-chart .tp-flow-chart-list-box {
  display: flex;
  justify-content: space-between;
  background-color: #f4f8fc;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.tp-flow-chart .tp-flow-chart-list-title {
  align-content: center;
  text-align: center;
  color: #e1f7f5;
  border-right: 1px solid #dce3f5;
  width: 30%;
}

.tp-flow-chart .tp-flow-chart-list {
  width: 67%;
}

.tp-flow-chart .tp-flow-chart-list li {
  padding-left: 20px;
  position: relative;
}

.tp-flow-chart .tp-flow-chart-list li::before {
  width: 8px;
  height: 8px;
  position: absolute;
  left: 4px;
  top: 50%;
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #e1f7f5;
}

/* ----------------------------------------
  流れブロック
  ---------------------------------------- */
.tp-flow .tp-flow-item {
  background: #fff9f9;
  padding: 30px;
  border-left: 2px solid var(--body-color-main-01);
}

.tp-flow .tp-flow-item-title {
  font-family: var(--font-round);
  font-weight: bold;
  color: var(--body-title-color);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-left: 36px;
  position: relative;
}

.tp-flow .tp-flow-num {
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  padding-left: 1px;
  width: 30px;
  height: 30px;
  color: #fff;
  text-align: center;
  align-content: center;
  background: linear-gradient(
    135deg,
    var(--body-color-main-01) 0%,
    var(--body-color-main-01) 50%,
    #e5a6ab 50%,
    #e5a6ab 100%
  );
  position: absolute;
  top: 0;
  left: 0;
}

.tp-flow .tp-flow-arrow {
  width: 100%;
  height: 40px;
  position: relative;
}

.tp-flow .tp-flow-arrow::before {
  content: "";
  width: 30px;
  height: 10px;
  background: var(--body-color-main-01);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 767px) {
  .tp-flow .tp-flow-item {
    padding: 20px;
  }
}

/* リスト */
#page-content .s-dot__list-checkmark li {
  padding-left: 35px;
}

#page-content .s-dot__list-checkmark li::after {
  content: none;
}

#page-content .s-dot__list-checkmark li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

#page-content .s-dot__list-checkmark-01 li::before {
  background-image: url("../img/tp-icon-checkmark-green.svg");
}

#page-content .s-dot__list-checkmark-02 li::before {
  background-image: url("../img/tp-icon-checkmark-beige.svg");
}

/* まとめ */
.tp-conclusion {
  background-color: #fff9f9;
  padding: 2rem;
  margin: 2rem auto;
  position: relative;
  border: 1px solid var(--body-color-main-01);
  border-radius: 10px;
}

.tp-conclusion .tp-conclusion-title {
  font-size: 16px;
  position: absolute;
  font-weight: bold;
  transform: translateY(-100%);
  top: 1px;
  left: 20px;
  background: var(--body-color-main-01);
  color: #fff;
  width: fit-content;
  padding: 0.5em 1rem;
  border-radius: 20px 20px 0 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .tp-conclusion {
    padding: 1rem;
  }
}

/* ポイントブロック */
.tp-point-block {
  background-color: #f5f5f5;
  padding: 2rem 1rem 1.5rem 1rem;
  margin: 2rem auto;
  position: relative;
  border-radius: 10px;
}

.tp-point-block .tp-point-block-title {
  color: #fff;
  font-size: 16px;
  font-family: var(--font-english);
  letter-spacing: 0.3em;
  padding: 10px 40px;
  text-align: center;
  background-color: var(--body-color-main-01);
  border-radius: var(--border-radius-full);
  width: fit-content;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
}

.tp-point-block .tp-point-block-text {
  font-size: 16px;
  margin: 0.5em auto;
}

@media screen and (max-width: 767px) {
  .tp-point-block {
    padding: 2rem 1rem 1rem;
  }

  .tp-point-block .tp-point-block-title {
    padding: 10px 20px;
    white-space: nowrap;
  }
}

.tp-point-block-yellow .tp-point-block-title {
  background-color: var(--body-color-main-02);
}

/* ポイントコンテンツ */
.tp-point-content {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

@media screen and (min-width: 767px) {
  .tp-point-content .tp-point-content-body {
    flex: 1 1 68%;
  }

  .tp-point-content .tp-point-content-media {
    flex: 1 0 30%;
  }
}

.tp-point-content .tp-point-content-media img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
  aspect-ratio: 5 / 3;
  border-radius: 24px;
}

.tp-point-content .tp-point-content-title-box {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 1rem;
}

.tp-point-content .tp-point-content-label {
  padding: 0.5rem 2rem;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  border-radius: var(--border-radius-full);
  width: fit-content;
  font-family: var(--font-english);
}

.tp-point-content-green .tp-point-content-label {
  background: var(--body-color-main-01);
  white-space: nowrap;
}

.tp-point-content-beige .tp-point-content-label {
  background: var(--body-color-main-02);
}

.tp-point-content .tp-point-content-title {
  font-size: 16px;
  font-weight: bold;
  color: #737279;
}

@media screen and (max-width: 767px) {
  .tp-point-content {
    flex-direction: column;
  }

  .tp-point-content .tp-point-content-body {
    display: contents;
  }

  .tp-point-content .tp-point-content-media {
    width: 100%;
    margin-bottom: 1rem;
    order: 2;
  }

  .tp-point-content .tp-point-content-title-box {
    order: 1;
  }

  .tp-point-content .tp-point-content-text {
    order: 3;
  }
  .tp-point-content .tp-point-content-label {
    min-width: 140px;
  }
  .tp-point-content .tp-point-content-label {
    padding: 0.5rem 1rem;
  }
}

/* 背景ありブロック */
.tp-bg-block {
  padding: 1rem 2rem;
  margin: 5px auto;
  background: #f5f5f5;
  border-radius: 36px;
}

.tp-bg-block .tp-bg-block-title {
  font-weight: bold;
  font-size: 20px;
  position: relative;
  margin: 10px 0;
}

.tp-bg-block .tp-bg-block-text {
  font-size: 16px;
}

.tp-bg-block-01 .tp-bg-block-title {
  color: var(--body-color-main-01);
}

.tp-bg-block-01 .tp-bg-block__item::after,
.tp-bg-block-03 .tp-bg-block__item::after {
  background-color: var(--body-color-main-01);
}

.tp-bg-block-02 .tp-bg-block-title {
  color: var(--body-color-main-02);
}

.tp-bg-block-02 .tp-bg-block__item::after,
.tp-bg-block-04 .tp-bg-block__item::after {
  background-color: var(--body-color-main-02);
}

.tp-bg-block-03,
.tp-bg-block-04 {
  padding: 0 0 2rem;
}

.tp-bg-block-03 p,
.tp-bg-block-03 ul,
.tp-bg-block-04 p,
.tp-bg-block-04 ul {
  padding: 0 2rem;
}

.tp-bg-block-03 .tp-bg-block-title,
.tp-bg-block-04 .tp-bg-block-title {
  color: #fff;
  padding: 2rem;
  border-radius: 36px 36px 0 0;
}

.tp-bg-block-03 .tp-bg-block-title::before,
.tp-bg-block-04 .tp-bg-block-title::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 48px;
  background-image: url("../img/tp-icon-teeth-01.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -4px;
  right: 4%;
}

.tp-bg-block-03 .tp-bg-block-title {
  background: var(--body-color-main-01);
}

.tp-bg-block-04 .tp-bg-block-title {
  background: var(--body-color-main-02);
}

.tp-bg-block .tp-bg-block-text {
  margin: 1rem 0;
}

.tp-bg-block .tp-bg-block__item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-gothic);
  font-size: 16px;
  line-height: 1.6;
}

.tp-bg-block .tp-bg-block__item::after {
  width: 8px;
  height: 8px;
  position: absolute;
  left: 4px;
  top: calc(16px * 1.6 / 2);
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 767px) {
  .tp-bg-block .tp-bg-block__list-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .tp-bg-block .tp-bg-block__list-flex .tp-bg-block__item {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .tp-bg-block {
    padding: 1rem;
  }

  .tp-bg-block-03,
  .tp-bg-block-04 {
    padding: 0 0 1rem;
  }
}

.tp-bg-block .tp-bg-block__list a {
  text-decoration: underline;
}

/* 語句紹介ブロック */
.tp-bookmark {
  padding: 2rem 2rem 1rem;
  margin: 2rem auto;
  width: 100%;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .tp-bookmark {
    padding: 1.5rem 1rem 1rem;
  }
}

.tp-bookmark-pink {
  border: 1px solid var(--body-color-main-01);
}

.tp-bookmark-brown {
  border: 1px solid var(--body-text-color);
}

.tp-bookmark .tp-bookmark-title-box {
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 20px;
}

.tp-bookmark .tp-bookmark-title {
  font-weight: bold;
  font-size: 18px;
  padding: 5px 10px 5px 42px;
  background-color: #fff;
  position: relative;
}

.tp-bookmark-pink .tp-bookmark-title {
  color: var(--body-color-main-01);
}

.tp-bookmark-brown .tp-bookmark-title {
  color: var(--body-text-color);
}

.tp-bookmark-title::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-48%);
  top: 50%;
  left: 10px;
  z-index: 1;
}

.tp-bookmark-pink .tp-bookmark-title::before {
  background-image: url("../img/tp-bookmark-icon-pink.svg");
}

.tp-bookmark-brown .tp-bookmark-title::before {
  background-image: url("../img/tp-bookmark-icon-brown.svg");
}

/* 注意点ブロック */
.tp-caution-block,
.tp-information-block {
  background-color: #f5f5f5;
  margin: 2rem auto;
  position: relative;
  padding: 1rem 2rem;
  border-radius: 36px;
}

.tp-caution-block .tp-caution-block-title,
.tp-information-block .tp-information-block-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  font-family: var(--font-english);
  letter-spacing: 0.2em;
  padding: 10px 10px 10px 54px;
  position: relative;
}

.tp-caution-block .tp-caution-block-title {
  color: var(--body-color-main-02);
}

.tp-information-block .tp-information-block-title {
  color: var(--body-color-main-01);
}

.tp-caution-block::before,
.tp-information-block::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 80px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 20px;
  left: 20px;
}

@media screen and (max-width: 767px) {
  .tp-caution-block::before,
  .tp-information-block::before {
    transform: translate(0%, -50%);
    top: 0px;
    left: -10px;
  }

  .tp-caution-block .tp-caution-block-title,
  .tp-information-block .tp-information-block-title {
    font-size: 20px;
    padding: 10px 10px 10px 48px;
  }
}

.tp-caution-block::before {
  background-image: url("../img/tp-icon-caution.svg");
}

.tp-information-block::before {
  background-image: url("../img/tp-icon-question.svg");
}

.tp-caution-block .tp-caution-block-text,
.tp-information-block .tp-information-block-text {
  font-size: 16px;
}

/* 引用ブロック */
.tp-quote {
  background-color: #f5f5f5;
  border-radius: 24px;
  padding: 2rem 3rem 0.5rem;
  margin: 2rem auto;
  position: relative;
}

.tp-quote::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/tp-icon-quote-start.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 2rem;
  left: 20px;
}

.tp-quote::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/tp-icon-quote-end.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(50%);
  bottom: 5rem;
  right: 20px;
}

.tp-quote .tp-quote-text {
  color: #666666;
  margin-bottom: 1rem;
}

.tp-quote .tp-quote-author-box {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.tp-quote .tp-quote-author {
  color: #746d6d;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-right: 0;
}

@media screen and (max-width: 975px) {
  .tp-quote {
    padding: 2rem 1rem;
  }

  .tp-quote .tp-quote-author {
    margin-right: 0;
  }

  .tp-quote::before {
    top: 1rem;
  }
}

.tp-quote .tp-quote-author::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #746d6d;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: -40px;
}

/* 参考文献用注釈ボタン */
.reference-btn {
  font-size: 12px;
  color: var(--body-text-color);
  vertical-align: bottom;
}

/* ツールチップ */
.tooltip {
  /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: default;
  color: var(--body-text-color);
  font-size: 12px;
  vertical-align: bottom;
  width: fit-content;
}

.tooltip-text {
  display: block;
  width: fit-content;
  min-width: 120px;
  max-width: 200px;
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 10px;
  background-color: #666;
  color: #fff;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: 0.3s all;
  font-size: 10px;
}

/* @media screen and (max-width: 767px) {
  .tooltip-text {
    display: none;
  }
} */

.tooltip:hover .tooltip-text {
  top: 150%;
  visibility: visible;
  opacity: 1;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

/* 特徴ブロック */
@media screen and (min-width: 767px) {
  .tp-feature-block {
    display: flex;
    justify-content: space-between;
  }

  .tp-feature-card {
    width: calc(96% / 3);
  }
}

.tp-feature-card {
  padding: 20px;
  border-radius: 20px;
  background: #f5f5f5;
  margin: 1em 0;
}

.tp-feature-num {
  font-family: var(--font-english);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  color: #737279;
}

.tp-feature-num::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: var(--body-color-main-01);
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.tp-feature-block .tp-feature-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 16px;
  aspect-ratio: 5 / 3;
}

.tp-feature-block .tp-feature-card img.img-contain {
  object-fit: contain;
  margin: 0 auto;
  width: 60%;
}

.tp-feature-card-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  font-weight: 500;
}

.tp-feature-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #737279;
}

@media screen and (max-width: 767px) {
  .tp-feature-card-title {
    font-size: 22px;
  }
}

/* テキスト+画像ブロック */
.tp-media-block {
  padding: 60px;
  margin: 0 auto;
  background: #fff9f9;
}

.tp-media-block {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 767px) {
  .tp-media-block-image-left {
    flex-direction: row;
  }

  .tp-media-block-image-right {
    flex-direction: row-reverse;
  }

  .tp-media-content {
    width: 45%;
    align-content: center;
  }

  .tp-media-image-box {
    width: 50%;
  }
}

.tp-media-title {
  font-family: var(--font-round);
  color: var(--body-title-color);
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
}

.tp-media-text {
  font-size: 16px;
}

.tp-media-block .tp-media-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 3px 4px 16.9px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .tp-media-block {
    flex-direction: column;
    padding: 20px 20px 30px;
  }

  .tp-media-content {
    display: contents;
  }

  .tp-media-title {
    order: 1;
  }

  .tp-media-image-box {
    order: 2;
    margin-bottom: 30px;
  }

  .tp-media-text {
    order: 3;
  }
}

/* お悩み相談ブロック */
.tp-trouble {
  background-color: #fcf8f5;
  padding: 2rem;
  margin: 2rem auto;
}

@media screen and (max-width: 767px) {
  .tp-trouble {
    padding: 10px;
  }
}

.tp-trouble .tp-trouble-title {
  font-size: 22px;
  color: var(--body-text-color);
  font-family: var(--font-round);
  padding: 15px 20px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  font-weight: 500;
}

.tp-trouble .tp-trouble-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: var(--border-radius-full);
  background-image: url(../img/tp-heading-line.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: 0;
  left: 0;
}

.tp-trouble .tp-trouble-list {
  list-style: none;
  padding-left: 0;
  padding: 2rem 2rem 1rem;
  background: #fff;
  border: 3px solid #d9cfc7;
}

@media screen and (max-width: 767px) {
  .tp-trouble .tp-trouble-list {
    padding: 1rem;
  }
}

.tp-trouble .tp-trouble-list-item {
  position: relative;
  padding-left: 32px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-gothic);
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  /* コンテナ幅に合わせて柔軟に改行 */
  word-break: keep-all;
  /* 日本語の単語の途中では改行しない */
}

@media screen and (min-width: 767px) {
  .tp-trouble .tp-trouble-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }

  .tp-trouble .tp-trouble-list-item {
    width: 49%;
  }
}

.tp-trouble .tp-trouble-list-item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/tp-checkmark-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-45%);
  top: calc(16px * 1.5 / 2);
  left: 0;
}

@media screen and (max-width: 767px) {
  .tp-trouble .tp-trouble-title {
    font-size: 18px;
  }
}

.tp-trouble .tp-trouble-list-item a {
  text-decoration: underline !important;
}

.tp-trouble .tp-trouble-list-item a.link-none {
  text-decoration: none !important;
}

/* 目次 */

#page-content .elementor-toc__header {
  background-color: var(--body-color-main-01) !important;
}

#page-content .elementor-toc__body {
  background-color: #fff;
  padding: 20px;
}

#page-content .elementor-toc__header-title {
  position: relative;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.elementor-widget-table-of-contents .elementor-toc__list-item {
  font-family: var(--font-gothic);
  margin-bottom: 2px;
}

.elementor-widget-table-of-contents .elementor-toc__list-item li {
  position: relative;
  padding-left: 24px;
}

.elementor-widget-table-of-contents .elementor-toc__list-item li::before {
  width: 6px;
  height: 6px;
  position: absolute;
  transform: translateY(-50%);
  left: 16px;
  top: 52%;
  content: "";
  border-radius: 50%;
  background-color: var(--body-color-main-02);
}

ol.elementor-toc__list-wrapper .elementor-toc__list-item-text-wrapper:before {
  padding-left: 10px;
  color: var(--body-color-main-01);
  font-weight: bold;
}

ol.elementor-toc__list-wrapper
  .elementor-toc__list-item
  ol.elementor-toc__list-wrapper
  .elementor-toc__list-item-text-wrapper:before {
  content: none !important;
}

.elementor-toc__list-item-text-wrapper:hover {
  background: #fff;
  color: var(--body-color-main-01);
}

.elementor-toc__list-item-text-wrapper {
  border-bottom: 1px solid rgba(31, 79, 94, 0.2);
}

.elementor-toc__body .elementor-toc__list-item-text {
  padding: 3px 10px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 15px;
  line-height: 2;
}

.elementor-toc__list-wrapper
  .elementor-toc__list-item
  .elementor-toc__list-wrapper
  .elementor-toc__list-item-text {
  font-size: 14px;
  font-weight: normal;
}

#page-content .elementor-toc__toggle-button svg {
  height: 2em;
  width: 2em;
}

/* 監修者ブロック（小） */
#page-content .p-person__img {
  margin: 0;
}

#page-content .p-person__title {
  color: var(--body-text-color);
  align-content: center;
}

#page-content .p-person__body {
  margin-left: 120px;
}

#page-content .p-adv__wrap .p-person__content .more-btn {
  font-size: 14px;
  position: relative;
  display: block;
  margin-left: auto;
  width: fit-content;
  padding-left: 30px;
  font-weight: 500;
}

@media screen and (max-width: 975px) {
  #page-content .p-person__body {
    margin: 16px 0 0 32px;
  }
}

/* リード文 */
.tp-lead-sentence {
  padding: 1rem 2rem;
  background-color: rgba(31, 79, 94, 0.1);
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .tp-lead-sentence {
    padding: 1rem;
    font-size: 12px;
    line-height: 1.5;
  }
}

/* FAQ */
/* ----------------------------------------
  tp-faq
  ---------------------------------------- */
.tp-faq {
  position: relative;
  padding: 2em 1em;
  background: #d9d9d9;
}

.tp-faq::before {
  content: none;
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #d9d9d9;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.tp-faq-accordion {
  width: 100%;
  margin-bottom: 7px;
  background-color: #fff;
  border-radius: 24px;
}

.tp-faq-accordion summary {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  font-weight: 500;
  cursor: pointer;
}

.tp-faq-accordion summary::-webkit-details-marker {
  display: none;
}

.tp-faq-accordion summary::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 29px;
  background-image: url("../img/tp-icon-faq-question.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  flex-shrink: 0;
}

.tp-faq-accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-bottom: 2px solid var(--body-color-main-01);
  border-right: 2px solid var(--body-color-main-01);
  content: "";
  transition: transform 0.3s;
  flex-shrink: 0;
}

.tp-faq-accordion[open] summary::after {
  transform: rotate(225deg);
}

.tp-faq-accordion .tp-faq-answer {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.tp-faq-accordion .tp-faq-answer::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 29px;
  background-image: url("../img/tp-icon-faq-answer.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.tp-faq-accordion .tp-faq-answer p {
  width: auto;
}

.tp-faq-accordion[open] .tp-faq-answer {
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .tp-faq-accordion summary {
    padding: 1em;
  }

  .tp-faq-accordion .tp-faq-answer {
    padding: 0.3em 1em 1.5em;
  }
}

/* ----------------------------------------
  tp-anchor-link
  ---------------------------------------- */

.tp-anchor-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.tp-anchor-link-list.center{
  justify-content: center;
}

.tp-anchor-link-item {
  width: 32%;
  margin-bottom: 10px;
}

.tp-anchor-link-btn {
  display: block;
  width: 100%;
  padding: 1rem 1rem 1rem 0.5rem;
  background: #ffffff;
  transition: 0.3s;
  padding: 10px 40px 10px 10px;
  position: relative;
  border-bottom: 1px solid #b0aba7;
}

.tp-anchor-link-btn::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
}

@media screen and (max-width: 767px) {
  .tp-anchor-link-btn::before {
    right: 6px;
  }
}

.tp-anchor-link-btn-green::before {
  background-image: url("../img/tp-anchor-link-arrow-green.svg");
}

.tp-anchor-link-btn-beige::before {
  background-image: url("../img/tp-anchor-link-arrow-beige.svg");
}

.tp-anchor-link-btn:hover {
  transform: translateY(-7px);
  opacity: 1;
}

.tp-anchor-link-text {
  font-size: 16px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .tp-anchor-link-item {
    width: 100%;
  }

  .tp-anchor-link-btn {
    padding: 1rem 32px 1rem 1rem;
  }
}

/* ----------------------------------------
  tp-internal-link
  ---------------------------------------- */
.tp-internal-link ul {
  justify-content: center;
}

.tp-internal-link ul li {
  min-width: 32%;
  width: auto;
}

/* 関連記事 */
.tp-related-articles-block {
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  padding: 64px 20px;
}

.tp-related-articles-block .tp-list-title-box {
  text-align: center;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
}

.tp-related-articles-block .tp-related-article-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-related-articles-block .tp-related-article-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 270px;
  height: 340px;
  background-color: #f5f5f5;
  transition: all 0.3s;
  padding: 0px;
  border-radius: 32px;
  gap: 6px;
  overflow: hidden;
}

.tp-related-articles-block .tp-related-article-item:hover {
  box-shadow: 0px 12px 20px rgba(0, 13, 50, 0.12);
  opacity: 1;
}

.tp-related-articles-block
  .tp-related-article-item:hover
  .tp-related-article-item-title {
  color: var(--body-color-main-01);
}

.tp-related-articles-block .tp-related-article-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin: 0 auto;
}

.tp-related-articles-block .tp-related-article-item-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  color: var(--body-color-main-01);
  margin: 10px 10px 5px 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 溢れた部分を隠す */
  text-overflow: ellipsis;
  /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2;
  /* 最大行数を2行に設定 */
}

.tp-related-articles-block .tp-related-article-item-text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 5px 10px 10px 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 溢れた部分を隠す */
  text-overflow: ellipsis;
  /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 4;
  /* 最大行数を2行に設定 */
}

@media screen and (min-width: 767px) {
  .elementor-widget-image img {
    width: 80%;
  }
}

/* 関連記事（半自動入力） */
#page-content .elementor-widget-posts .elementor-post__title a {
  font-family: var(--font-round);
  font-weight: bold;
  color: var(--body-text-color);
}

#page-content .elementor-posts .elementor-post__excerpt p {
  font-family: var(--font-gothic);
  font-weight: normal;
}

/* 関連記事-シングル */
.tp-single-related-article-btn {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 36px;
  background: #f5f5f5;
  margin: 2rem auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .tp-single-related-article-btn {
    flex-direction: column;
  }

  .tp-single-related-article .tp-single-related-article-image-box {
    margin-bottom: 1em;
  }
}

.tp-single-related-article .tp-single-related-article-label {
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 20px;
  font-size: 14px;
  font-weight: bold;
  padding: 0.5em 1.5rem;
  background-color: var(--body-color-main-01);
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #fff;
  align-items: center;
  border-radius: var(--border-radius-full);
}

.tp-single-related-article .tp-single-related-article-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/tp-icon-related-article.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.tp-single-related-article .tp-single-related-article-image-box {
  flex: 0 0 30%;
  align-content: center;
}

.tp-single-related-article .tp-single-related-article-image-box img {
  border-radius: 20px;
}

.tp-single-related-article .tp-single-related-article-content {
  flex: 0 0 66%;
}

.tp-single-related-article .tp-single-related-article-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--body-color-main-01);
  margin-bottom: 10px;
}

/* tp-cta-block */
.tp-cta-block {
  width: 100%;
  padding: 60px 40px;
  background: #ffe6c6;
  box-shadow: 0px 4px 9.2px 2px rgba(241, 231, 225, 0.5);
  border-radius: 10px;
  margin: 20px auto;
}

.tp-cta-title-jp {
  font-size: 20px;
  color: var(--body-text-color);
  font-family: var(--font-round);
  font-weight: 500;
  padding-left: 10px;
}

.tp-cta-title-en {
  font-size: 64px;
  color: var(--body-title-color);
  font-family: var(--font-english);
  line-height: 1.2;
}

.tp-cta-text {
  font-size: 16px;
}

@media screen and (min-width: 767px) {
  .tp-cta-block {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .tp-cta-block {
    padding: 40px 5px;
  }

  .tp-cta-title {
    text-align: center;
  }

  .tp-cta-text {
    padding: 0 10px;
    margin-bottom: 30px;
  }
  .tp-single-related-article .tp-single-related-article-label {
    width: 90%;
    left: 5%;
    padding: 0.5rem;
  }
  .tp-single-related-article-btn {
    padding: 3rem 2rem 2rem;
  }
}

.tp-cta-btn-web {
  display: block;
  width: 320px;
  height: 80px;
  background: var(--body-color-main-01);
  color: #fff;
  font-size: 24px;
  font-family: var(--font-round);
  font-weight: 500;
  border-radius: var(--border-radius-full);
  position: relative;
  text-align: center;
  line-height: 80px;
  padding: 0 40px 0 20px;
  margin: 0 auto;
}

.tp-cta-btn-web::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("../img/tp-btn-arrow-yellow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 16px;
}

.tp-cta-web-microcopy {
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 20px;
  border-radius: var(--border-radius-full);
  background: #fff;
  border: 1px solid var(--body-color-main-01);
  color: var(--body-color-main-01);
  font-size: 16px;
  width: 80%;
  padding: 5px 10px;
  line-height: 1.2;
}

.tp-cta-btn-tel {
  margin: 0 auto 30px;
  width: fit-content;
}

.tp-cta-tel-microcopy {
  font-size: 18px;
  color: var(--body-title-color);
  font-family: var(--font-round);
  font-weight: 500;
  width: fit-content;
  margin: 0 auto;
}

.tp-cta-tel-num {
  font-size: 36px;
  color: var(--body-title-color);
  font-family: var(--font-english);
  font-weight: 500;
  position: relative;
  padding-left: 50px;
  padding-right: 20px;
  width: fit-content;
}

.tp-cta-tel-num::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url("../img/tp-cta-icon-tel-brown.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -65%);
  top: 50%;
  left: 10px;
}

/* コンバージョンボタン（単体） */
.tp-cta__single-btn.tp-cta-btn-web {
  min-width: 320px;
  max-width: 100%;
  height: 70px;
  padding: 0 40px 0 20px;
}

/* 診療時間 */
.clinic-info-biz-hour {
  margin-bottom: min(40px, 2.9vw);
}

.tp-biz-hour {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin-bottom: min(20px, 1.5vw);
}

.tp-biz-hour tr th,
.tp-biz-hour tr td {
  text-align: center;
  align-content: center;
  width: 9%;
}

.tp-biz-hour tr th {
  padding: min(10px, 0.7vw);
  letter-spacing: 0.01em;
  font-size: min(16px, 1.2vw);
  white-space: nowrap;
}

.tp-biz-hour tr td {
  padding: min(20px, 1.5vw) 0;
}

.tp-biz-hour tr:nth-child(n + 2) {
  border-top: 1px solid #928c86;
}

.tp-biz-hour tr th:first-child,
.tp-biz-hour tr td:first-child {
  width: 16%;
  font-size: min(16px, 1.1vw);
}

.tp-biz-hour tr td:first-child {
  font-family: var(--font-number);
}

.tp-biz-hour tr td:last-child {
  font-weight: normal;
}

.tp-biz-hour .circle-colored {
  color: var(--body-color-main-01);
}

.tp-biz-hour .triangle-colored {
  color: var(--body-text-color);
}

.tp-biz-hour-annotation {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */
@media screen and (max-width: 767px) {
  .tp-biz-hour {
    margin-bottom: 0;
  }

  .tp-biz-hour tr th,
  .tp-biz-hour tr td {
    font-size: 3vw;
    padding: 3vw 1vw;
  }

  .tp-biz-hour-annotation {
    font-size: 2.8vw;
  }
}

.tp-biz-hour th {
  font-weight: normal;
}

.tp-biz-hour .tp-biz-hour-small-text {
  font-size: min(8px, 0.6vw);
  display: block;
  letter-spacing: 0.001em;
  font-family: var(--font-number);
}

.tp-biz-hour-caution-text {
  display: none;
}

@media screen and (max-width: 767px) {
  .tp-biz-hour .tp-biz-hour-small-text {
    display: none;
  }

  .tp-biz-hour-caution-text {
    display: block;
    font-size: 12px;
    margin-bottom: 2rem;
  }
}

/* お知らせ一覧ページ用css */
.elementor-widget-posts .elementor-pagination {
  margin-top: 50px;
}

.elementor-widget-posts .elementor-pagination .current {
  color: var(--body-color-main-01);
}

.elementor-posts--thumbnail-top .elementor-post__text {
  padding: 20px 0;
  border-bottom: 2px solid rgba(31, 79, 94, 0.3);
}

#page-content .elementor-post__read-more {
  font-family: var(--font-round);
  color: var(--body-text-color);
  font-weight: 500;
}

/* 関連記事（半自動入力） */
#page-content
  .elementor-posts-container.elementor-has-item-ratio
  .elementor-post__thumbnail.elementor-fit-height
  img {
  height: auto;
  width: 100%;
}

#page-content
  .elementor-posts-container.elementor-has-item-ratio
  .elementor-post__thumbnail
  img {
  position: relative;
  border: 2px solid rgba(210, 100, 109, 0.3);
  border-radius: 12px;
  top: 0;
  left: 0;
  transform: none;
}

#page-content
  .elementor-posts-container.elementor-has-item-ratio
  .elementor-post__thumbnail {
  padding-bottom: 0;
}

/* ページ上部訴求モジュール（下層モジュール） */
.tp-appeal-unit {
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 10px;
}

@media screen and (max-width: 767px) {
  .tp-appeal-unit {
    padding: 20px 10px 10px;
  }
}

.tp-appeal-unit .tp-appeal-unit-title {
  text-align: center;
  font-size: 20px;
  margin: 30px auto 20px;
  font-family: var(--font-mincho);
  font-weight: 500;
  padding-bottom: 10px;
}

.tp-appeal-unit .tp-appeal-unit-title img {
  margin: 0 auto 10px;
  width: 143px;
  height: auto;
  aspect-ratio: 143 / 40;
}

.tp-appeal-unit .tp-appeal-unit-title-small {
  display: block;
  position: relative;
  font-size: 18px;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .tp-appeal-unit .tp-appeal-unit-title {
    font-size: 26px;
  }

  .tp-appeal-unit .tp-appeal-unit-title-small {
    font-size: 16px;
  }
}

.tp-appeal-unit .tp-appeal-unit-item {
  width: 100%;
  display: flex;
  padding: 10px 20px 10px 10px;
  align-items: center;
  border-radius: 10px;
  background: var(--body-color-main-01);
  margin-bottom: 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .tp-appeal-unit .tp-appeal-unit-item {
    padding: 10px;
  }
}

.tp-appeal-unit .tp-appeal-unit-item img {
  width: 50px;
  height: 50px;
  aspect-ratio: 1 / 1;
}

.tp-appeal-unit .tp-appeal-unit-item-content {
  margin-left: 14px;
}

.tp-appeal-unit .tp-appeal-unit-item-text {
  color: #fff;
  font-family: var(--font-mincho);
}

.tp-appeal-unit .tp-appeal-unit-item-text .color-gold {
  color: #d7ba95;
  font-weight: 500;
}

/* 特徴CTA（下層モジュール） */
.fe-cta {
  position: relative;
  padding: 30px 1rem;
  background: var(--body-color-main-01);
  overflow: hidden;
}

.fe-cta-wrap {
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
}

.fe-cta-wrap::after {
  content: "";
  display: inline-block;
  width: 140px;
  height: fit-content;
  aspect-ratio: 100 / 126;
  background-image: url("../img/tp-icon-teeth-04.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 80%;
  left: 90%;
  z-index: 0;
  opacity: 0.4;
}

.fe-cta-wrap::before {
  content: none;
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: var(--body-color-main-01);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.fe-cta-wrap .tp-circle-container {
  top: 80%;
  left: 90%;
}

.fe-cta-wrap .tp-circle-container .circleText text {
  fill: rgba(0, 0, 0, 0.1);
}

.fe-cta-wrap .tit-fe-cta span.clinic-name:before {
  content: "";
  position: absolute;
  width: 48px;
  height: 42px;
  background-image: url(../img/fe-cta-icon.webp);
  top: -23px;
  left: -55px;
  background-size: contain;
  background-repeat: no-repeat;
}

.fe-cta-wrap .tit-fe-cta {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1.4;
  padding: 20px 10px 10px;
  margin: 10px auto;
  width: 95%;
}

.fe-cta-wrap .tit-fe-cta span {
  font-size: 14px;
  position: relative;
  margin-left: 28px;
}

.fe-cta-wrap .tit-fe-cta img {
  margin: 0 auto;
  width: 143px;
  height: auto;
}

.fe-cta-wrap .tit-fe-cta p {
  margin-top: 10px;
}

.fe-cta-wrap .fe-cta-box {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.fe-cta-wrap .fe-cta-box .left-img {
  width: 43%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
}

.fe-cta-wrap .fe-cta-box .right-wrap {
  width: 55%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.fe-cta-wrap .fe-cta-box .right-wrap .fe-box {
  width: 30%;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.fe-cta-wrap .fe-cta-box .right-wrap .fe-box.center-box {
  width: 36%;
}

.fe-cta-wrap .fe-cta-box .right-wrap .fe-cta-caution-text {
  font-size: 12px;
  color: rgba(115, 114, 121, 1);
  padding: 1em 0;
  margin-top: 1em;
  border-bottom: 1px solid rgba(31, 79, 94, 0.3);
  width: 100%;
}

.fe-cta-wrap .fe-cta-box .right-wrap .fe-cta-txt {
  font-size: 14px;
  padding: 1em 0;
}

.fe-cta-wrap .fe-cta-box .fe-box img {
  height: 72px;
  height: fit-content;
  margin: 0 auto 10px;
}

.fe-cta .fe-cta-conclusion-block {
  width: 95%;
  margin: 0 auto;
}

.fe-cta .fe-cta-conclusion-title {
  padding-left: 24px;
  position: relative;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  margin-bottom: 12px;
}

.fe-cta .fe-cta-conclusion-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: var(--border-radius-full);
  background: var(--body-color-main-01);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}

.fe-cta-wrap .cta_btns {
  margin: 20px auto 10px;
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .fe-cta-wrap {
    padding: 1em;
  }

  .fe-cta-wrap .tit-fe-cta {
    padding: 0;
  }

  .fe-cta-wrap .fe-cta-box {
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .fe-cta-wrap .fe-cta-box .left-img {
    width: 100%;
    margin-bottom: 1em;
  }

  .fe-cta-wrap .fe-cta-box .right-wrap {
    width: 100%;
  }

  .fe-cta-wrap .fe-cta-box .right-wrap .fe-box {
    font-size: 11px;
    letter-spacing: 0.01em;
  }

  .fe-cta .tp-cta__btn-list {
    margin-top: 1em;
  }
}

/* 吹き出しブロック */
.tp-speech-bubble {
  background: #d9d9d9;
  padding: 1em;
}

.tp-speech-bubble::before {
  content: none;
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #d9d9d9;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.tp-speech-bubble .tp-speech-bubble-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
}

.tp-speech-bubble .tp-speech-bubble-item-reverse {
  flex-direction: row-reverse;
}

.tp-speech-bubble .tp-speech-bubble-item .tp-speech-bubble-content {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  width: 80%;
  color: #737279;
}

.tp-speech-bubble .tp-speech-bubble-item .tp-speech-bubble-content::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 29px;
  background-image: url(../img/tp-triangle-white-small.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(55%, 0%);
  bottom: 0;
  right: 0;
}

.tp-speech-bubble
  .tp-speech-bubble-item-reverse
  .tp-speech-bubble-content::before {
  transform: translate(-55%, 0%) rotateY(180deg);
  left: 0;
  right: auto;
}

.tp-speech-bubble .tp-speech-bubble-character-box {
  width: 16%;
}

.tp-speech-bubble .tp-speech-bubble-character-image {
  width: 100%;
  height: fit-content;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.tp-speech-bubble .tp-speech-bubble-character-title {
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  color: #737279;
  margin-top: 8px;
}

.tp-speech-bubble .tp-speech-bubble-character-name {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
}

@media screen and (max-width: 767px) {
  .tp-speech-bubble .tp-speech-bubble-item {
    align-items: end;
  }

  .tp-speech-bubble .tp-speech-bubble-item .tp-speech-bubble-content {
    width: 75%;
    padding: 20px;
  }

  .tp-speech-bubble .tp-speech-bubble-character-box {
    width: 22%;
  }

  .tp-speech-bubble .tp-speech-bubble-character-title {
    font-size: 8px;
    letter-spacing: 0.01em;
  }

  .tp-speech-bubble .tp-speech-bubble-character-name {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

/* 症例紹介ブロック */
.tp-case {
  padding: 2em;
  background: #f5f5f5;
  border-radius: 36px;
}

@media screen and (max-width: 767px) {
  .tp-case {
    padding: 1em;
  }
}

.tp-case .tp-case-upper {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.tp-case .tp-case-image-box {
  width: 46%;
  margin-bottom: 1em;
}

.tp-case .tp-case-image-text {
  font-family: var(--font-english);
  font-size: 16px;
  color: #737279;
  margin-top: 4px;
  font-weight: 500;
}

.tp-case .tp-case-image {
  width: 100%;
  height: fit-content;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 24px;
}

@media screen and (max-width: 767px) {
  .tp-case .tp-case-upper {
    flex-direction: column;
  }

  .tp-case .tp-case-image-box {
    width: 100%;
  }
}

.tp-case .tp-case-accordion {
  padding: 1em 2em;
  background: #fff;
  border-radius: 24px;
}

@media screen and (max-width: 767px) {
  .tp-case .tp-case-accordion {
    padding: 1em;
  }
}

.tp-case .tp-case-summary {
  display: block;
  list-style: none;
  padding: 1em 50px 1em 0.5em;
  border-bottom: 1px solid rgba(31, 79, 94, 0.2);
  position: relative;
  cursor: pointer;
}

.tp-case .tp-case-summary::before,
.tp-case .tp-case-summary::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  right: 0;
}

.tp-case .tp-case-summary::before {
  background-image: url("../img/tp-case-icon-open.svg");
}

.tp-case .tp-case-summary::after {
  background-image: url("../img/tp-case-icon-close.svg");
  display: none;
}

.tp-case .tp-case-accordion[open] .tp-case-summary::before {
  display: none;
}

.tp-case .tp-case-accordion[open] .tp-case-summary::after {
  display: block;
}

.tp-case .tp-case-num {
  font-family: var(--font-num);
  font-size: 14px;
  color: var(--body-color-main-01);
  position: relative;
  padding-left: 16px;
}

.tp-case .tp-case-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 500;
}

.tp-case .tp-case-content-li-title {
  color: var(--body-color-main-01);
  font-size: 14px;
  position: relative;
  padding-left: 16px;
  font-weight: 500;
}

.tp-case .tp-case-num::before,
.tp-case .tp-case-content-li-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background: var(--body-color-main-01);
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

.tp-case .tp-case-content-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tp-case .tp-case-content-li {
  margin: 1em 0;
  width: 100%;
}

.tp-case .tp-case-content-li-half {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .tp-case .tp-case-content-li-half {
    width: 100%;
  }
}

/* 製品紹介モジュール */
.tp-product-introduction {
  border-radius: 24px;
  background: #f5f5f5;
}

.tp-product-introduction .tp-product-introduction-title {
  padding: 1em 2em;
  background: var(--body-color-main-02);
  color: #fff;
  border-radius: 24px 24px 0 0;
}

.tp-product-introduction .tp-product-introduction-details {
  padding: 0 2em 1em;
}

.tp-product-introduction .tp-product-introduction-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2em 2em 1em;
  gap: 2%;
}

.tp-product-introduction .tp-product-introduction-image {
  width: 53%;
  height: fit-content;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 5 / 3;
  margin-inline: auto;
}

.tp-product-introduction .tp-product-introduction-grade-ul {
  width: 45%;
}

.tp-product-introduction .tp-product-introduction-grade-li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5em auto;
}

.tp-product-introduction .tp-product-introduction-grade-title {
  width: 20%;
}

.tp-product-introduction .tp-product-introduction-grade-star {
  width: 78%;
}

.tp-product-introduction .tp-product-introduction-content-block {
  width: 100%;
}

.tp-product-introduction .tp-product-introduction-image,
.tp-product-introduction .tp-product-introduction-grade-ul,
.tp-product-introduction .tp-product-introduction-content-block {
  margin-bottom: 2em;
}

.tp-product-introduction .tp-product-introduction-content-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.6em;
  position: relative;
  padding-left: 24px;
}

.tp-product-introduction .tp-product-introduction-content-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: var(--border-radius-full);
  background: var(--body-color-main-02);
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 4px;
}

.tp-product-introduction .tp-product-introduction-summary {
  display: block;
  list-style: none;
  padding: 1em 0.5em 1em 0.5em;
  border: 1px solid var(--body-color-main-02);
  border-radius: 10px;
  background: #fff;
  color: var(--body-color-main-02);
  position: relative;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1em;
}

.tp-product-introduction
  .tp-product-introduction-summary::-webkit-details-marker {
  display: none;
}

.tp-product-introduction .tp-product-introduction-content-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tp-product-introduction .tp-product-introduction-content-li {
  width: 48%;
  margin: 0 0 0.6em;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
}

.tp-product-introduction .tp-product-introduction-content-li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--border-radius-full);
  background: var(--body-text-color);
  position: absolute;
  transform: translate(0%, -50%);
  top: calc(16px / 2 * 1.8);
  left: 8px;
}

.tp-product-introduction .tp-compare .tp-compare__block {
  margin: 0.5em 0;
}

@media screen and (min-width: 767px) {
  .tp-product-introduction .tp-compare {
    justify-content: space-between;
  }

  .tp-product-introduction .tp-compare .tp-compare__block {
    width: 49%;
  }
}

.tp-product-introduction .tp-compare-single .tp-compare__merit {
  background: rgba(215, 186, 149, 0.15);
}

.tp-product-introduction .tp-compare-single .tp-compare__demerit {
  background: rgba(115, 114, 121, 0.1);
}

.tp-product-introduction .tp-compare__demerit .tp-compare__title,
.tp-product-introduction .tp-compare__demerit .tp-compare__text,
.tp-product-introduction .tp-compare__demerit .tp-compare__list {
  color: var(--body-text-color);
}

.tp-product-introduction
  .tp-compare
  .tp-compare__demerit
  .tp-compare__item::before {
  background: var(--body-text-color);
}

.tp-product-introduction .tp-compare .tp-compare__block::before {
  opacity: 0.1;
}

.tp-product-introduction .tp-product-introduction-fee {
  margin-bottom: 0.5em;
}

.tp-product-introduction .tp-product-introduction-fee-large {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-number);
}

.tp-product-introduction .tp-product-introduction-fee-small {
  font-size: 10px;
}

@media screen and (max-width: 767px) {
  .tp-product-introduction .tp-product-introduction-main {
    flex-direction: column;
    padding: 1em;
  }

  .tp-product-introduction .tp-product-introduction-image,
  .tp-product-introduction .tp-product-introduction-grade-ul {
    width: 100%;
  }

  .tp-product-introduction .tp-product-introduction-content-li {
    width: 100%;
  }

  .tp-product-introduction .tp-product-introduction-details {
    padding: 0 1em 1em;
  }
}

.tp-product-introduction-green .tp-product-introduction-title {
  background: var(--body-color-main-01);
}

.tp-product-introduction-green .tp-product-introduction-content-title::before {
  background: var(--body-color-main-01);
}

.tp-product-introduction-green .tp-product-introduction-summary {
  border: 1px solid var(--body-color-main-01);
  color: var(--body-color-main-01);
}

/* トップページcss */

/* top-section */
.top-section {
  padding: 100px 0;
}

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

/* top-btn-01 */
.top-btn-01 {
  display: flex;
  width: fit-content;
  height: fit-content;
  padding: 8px 20px 8px 20px;
  color: var(--body-text-color);
  border-radius: var(--border-radius-full);
  background: transparent;
  font-weight: normal;
  position: relative;
  gap: 10px;
  align-items: center;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.top-btn-01:hover {
  background: var(--body-color-main-01);
  color: #fff;
  opacity: 1;
}

.top-btn-01-arrow-box {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-full);
  background: var(--body-color-main-01);
  position: relative;
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.top-btn-01:hover .top-btn-01-arrow-box {
  width: 30px;
  height: 24px;
  background: transparent;
}

.top-btn-01-arrow-box::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 10px;
  background-image: url("../img/top-btn-01-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.top-btn-01:hover .top-btn-01-arrow-box::before {
  background-image: url("../img/top-btn-01-icon-hover.svg");
  width: 20px;
  height: 10px;
}

.top-btn-01-white {
  color: #fff;
}

.top-btn-01-white .top-btn-01-arrow-box {
  background: #fff;
}

.top-btn-01-white:hover {
  background: #fff;
  color: var(--body-color-main-01);
}

.top-btn-01-white .top-btn-01-arrow-box::before {
  background-image: url("../img/top-btn-01-icon-green.svg");
}

.top-btn-01-white:hover .top-btn-01-arrow-box::before {
  background-image: url("../img/top-btn-01-icon-hover-green.svg");
}

.top-btn-01-beige {
  color: #fff;
}

.top-btn-01-beige .top-btn-01-arrow-box {
  background: #fff;
}

.top-btn-01-beige:hover {
  background: #fff;
  color: #837f79;
}

.top-btn-01-beige .top-btn-01-arrow-box::before {
  background-image: url("../img/top-btn-01-icon-beige.svg");
}

.top-btn-01-beige:hover .top-btn-01-arrow-box::before {
  background-image: url("../img/top-btn-01-icon-hover-beige.svg");
}

.top-btn-box-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-btn-01 {
    font-size: 14px;
  }
}

/* top-section-title */
.top-section-title-group {
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}

.top-section-title-jp {
  font-size: 15px;
  color: #fff;
  font-family: var(--font-mincho);
  line-height: 1.5;
}

.top-section-title-en {
  font-size: 32px;
  font-family: var(--font-english);
  color: #fff;
  line-height: 1.2 !important;
  letter-spacing: 0.15em;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .top-section-title-group {
    margin-bottom: 30px;
  }
}

/* top-section-text */
.top-section-text {
  width: 80%;
  margin: 0 auto 100px;
}

@media screen and (min-width: 767px) {
  .top-section-text {
    width: 80%;
  }
}

/* 回転する英文字列 tp-circle-container */
.tp-circle-container {
  padding: 3%;
  width: fit-content;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 0;
}

.tp-circle-container .tp-circle-block {
  width: 380px;
  height: 380px;
  margin: auto;
}

.tp-circle-container .circleText {
  overflow: visible;
  animation: circle-rotation 40s linear infinite;
}

.tp-circle-container .circleText #circle {
  fill: none;
}

.tp-circle-container .circleText text {
  fill: rgba(255, 255, 255, 0.4);
  font-size: 4px;
  letter-spacing: 0.43em;
}

@keyframes circle-rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 767px) {
  .tp-circle-container .tp-circle-block {
    width: 300px;
    height: 300px;
  }

  .tp-circle-container .circleText text {
    fill: rgba(255, 255, 255, 0.2);
  }
}

/* クリニック基本情報 */
.top-info-address .top-info-dl {
  display: flex;
}

.top-info-address .top-info-dt {
  font-weight: normal;
  width: 20%;
}

.top-info-address .top-info-dd {
  width: 80%;
}

@media screen and (max-width: 767px) {
  .top-info-address {
    margin-top: 1rem;
  }

  .top-info-address .top-info-dl {
    margin-bottom: 1rem;
  }

  .top-info-address .top-info-dt {
    width: 25%;
    text-align: right;
    padding-right: 1em;
  }

  .top-info-address .top-info-dd {
    width: 75%;
  }
}

/* ---------------------
FV #top-fv-section
--------------------*/
#top-fv-section {
  padding: 200px 0 180px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

#top-fv-section #canvasBall {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#top-fv-section::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top-fv-bg-image.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: scroll; /* fixedをscrollに戻します */
  z-index: -1;
}

#top-fv-section .section-inner::before {
  content: none;
  display: inline-block;
  width: 200px;
  height: 200px;
  background-image: url("../img/top-fv-circle-green.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 0;
  right: 0;
  animation: fuwafuwa 6s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, -50%) rotate(0deg);
  }
  50% {
    transform: translate(0, -58%) rotate(30deg);
  }
  100% {
    transform: translate(0, -50%) rotate(0deg);
  }
}

@media screen and (max-width: 767px) {
  #top-fv-section .section-inner::before {
    width: 100px;
    height: 100px;
  }
}

#top-fv-section .section-inner::after {
  content: none;
  display: inline-block;
  width: 424px;
  height: 443px;
  background-image: url("../img/top-fv-main-circle.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 0;
}

#top-fv-section .top-fv-point-list::before {
  content: none;
  display: inline-block;
  width: 300px;
  height: 300px;
  background-image: url("../img/top-fv-circle-beige.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-80%, -50%);
  top: 100%;
  left: 0;
  animation: fuwafuwa2 8s infinite;
}

@keyframes fuwafuwa2 {
  0% {
    transform: translate(-80%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-80%, -58%) rotate(30deg);
  }
  100% {
    transform: translate(-80%, -50%) rotate(0deg);
  }
}

@media screen and (max-width: 767px) {
  #top-fv-section .top-fv-point-list::before {
    width: 160px;
    height: 160px;
    transform: translate(-40%, -90%);
  }
}

#top-fv-section .top-fv-text-wrapper,
#top-fv-section .top-fv-point-list {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#top-fv-section .top-fv-text-wrapper svg {
  position: absolute;
  z-index: 0;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  animation: fuwafuwa3 30s infinite;
}

@keyframes fuwafuwa3 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -54%) rotate(-30deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media screen and (max-width: 767px) {
  #top-fv-section .top-fv-text-wrapper svg {
    width: 300px;
    height: 300px;
    top: 42%;
    left: 58%;
  }
}

#top-fv-section .top-fv-catch-copy,
#top-fv-section .top-fv-catch-copy-sub,
#top-fv-section .top-fv-catch-copy-en {
  position: relative;
  z-index: 1;
}

#top-fv-section .top-fv-catch-copy {
  font-size: min(50px, 3.6vw);
  font-weight: bold;
  margin-bottom: 0.5em;
  letter-spacing: 0.2em;
}

#top-fv-section .top-fv-catch-copy-sub {
  font-size: min(24px, 1.8vw);
  margin-bottom: 1em;
  letter-spacing: 0.35em;
}

#top-fv-section .top-fv-catch-copy-en {
  font-size: min(14px, 1.2vw);
  margin-bottom: 2em;
  letter-spacing: 0.2em;
  font-family: var(--font-english);
}

#top-fv-section .top-fv-point-list {
  display: flex;
  gap: 20px;
}

#top-fv-section .top-fv-point-item {
  position: relative;
  /* border: 1px solid #fff; */
  /* border-radius: 16px; */
  padding: 1em 1em 1em;
  /* background: rgba(0, 0, 0, 0.45); */
}

#top-fv-section .top-fv-point-item::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

#top-fv-section .top-fv-point-item-01 {
  aspect-ratio: 153 / 72;
  background: url(../img/top-fv-point-bg-01.png) center / contain no-repeat;
}

#top-fv-section .top-fv-point-item-02 {
  aspect-ratio: 156 / 72;
  background: url(../img/top-fv-point-bg-02.png) center / contain no-repeat;
}

#top-fv-section .top-fv-point-item-03 {
  aspect-ratio: 166 / 72;
  background: url(../img/top-fv-point-bg-03.png) center / contain no-repeat;
}

@media screen and (max-width: 767px) {
  #top-fv-section .top-fv-point-item-01 {
    aspect-ratio: 266 / 40;
    background: url(../img/top-fv-point-bg-01-sp.png) center / contain no-repeat;
  }

  #top-fv-section .top-fv-point-item-02 {
    aspect-ratio: 266 / 40;
    background: url(../img/top-fv-point-bg-02-sp.png) center / contain no-repeat;
  }

  #top-fv-section .top-fv-point-item-03 {
    aspect-ratio: 266 / 40;
    background: url(../img/top-fv-point-bg-03-sp.png) center / contain no-repeat;
  }
}

#top-fv-section .top-fv-point-num {
  font-size: min(10px, 0.7vw);
  position: absolute;
  transform: translate(0, -50%);
  top: 0;
  left: 15%;
  font-family: var(--font-english);
}

#top-fv-section .top-fv-point-num .font-number {
  font-size: min(17px, 1.2vw);
  font-family: var(--font-number);
}

#top-fv-section .top-fv-point-text {
  font-size: min(12px, 0.86vw);
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  #top-fv-section {
    padding: 100px 0 40px;
  }

  #top-fv-section::before {
    background-image: url("../img/top-fv-bg-image-sp.webp");
  }

  #top-fv-section .top-fv-catch-copy {
    font-size: 7.4vw;
    line-height: 2;
    letter-spacing: 0.3em;
    margin: 0 auto 1rem;
    width: fit-content;
  }

  #top-fv-section .top-fv-catch-copy-sub {
    font-size: 4.3vw;
    white-space: nowrap;
  }

  #top-fv-section .top-fv-catch-copy-en {
    font-size: 2vw;
  }

  #top-fv-section .top-fv-point-num {
    font-size: 3vw;
    line-height: 1;
    transform: translate(0, -50%);
  }

  #top-fv-section .top-fv-point-num .font-number {
    font-size: 5vw;
    margin-left: 4px;
  }

  #top-fv-section .top-fv-point-list {
    flex-direction: column;
    margin: 2rem auto 1rem;
    gap: 0.5rem;
  }

  /* #top-fv-section .top-fv-point-list li:nth-child(2) {
    margin-left: auto;
  } */

  #top-fv-section .top-fv-point-item {
    width: 98%;
    padding: 1rem 0.5rem;
    margin: 0 auto;
  }

  #top-fv-section .top-fv-point-text {
    font-size: 3.2vw;
    text-align: center;
  }

  #top-fv-section .top-fv-point-text .sp-large-text {
    font-size: 1.2em;
  }
}

/* ---------------------
クリニックのご案内 top-about-section
--------------------*/
#top-about-section {
  background: var(--body-color-main-01);
  padding: 100px 0;
}

#top-about-section .section-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

#top-about-section .top-about-feature-ul-left {
  order: 1;
}

#top-about-section .top-section-title-group {
  position: relative;
  order: 2;
  width: 40%;
}

#top-about-section .top-about-feature-ul-right {
  order: 3;
}

#top-about-section .top-section-title-group::before {
  content: "";
  display: inline-block;
  width: 141px;
  height: 180px;
  background-image: url(../img/top-about-icon-teeth.svg);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

#top-about-section .top-about-feature-ul {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 30%;
  gap: 80px;
}

#top-about-section .top-about-feature-li {
  color: #fff;
  position: relative;
  padding: 0.6em 0.5em;
  border-bottom: 1px solid #fff;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: min(16px, 1.1vw);
  font-family: var(--font-mincho);
  white-space: nowrap;
}

#top-about-section .top-about-text-gold {
  font-size: min(20px, 1.38vw);
  color: var(--body-color-main-02);
  margin: 0 4px;
}

#top-about-section .top-about-feature-ul-left .top-about-feature-li {
  margin-left: auto;
}

#top-about-section .top-about-feature-ul-left .top-about-feature-li-center {
  margin-right: 20%;
}

#top-about-section .top-about-feature-ul-right .top-about-feature-li {
  margin-right: auto;
}

#top-about-section .top-about-feature-ul-right .top-about-feature-li-center {
  margin-left: 20%;
}

@media screen and (max-width: 767px) {
  #top-about-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
  }

  #top-about-section::before {
    content: "";
    display: inline-block;
    width: 120px;
    aspect-ratio: 141 / 180;
    background-image: url(../img/top-about-icon-teeth.svg);
    transform: translate(-50%, -50%);
    top: 94%;
    left: 78%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
  }

  #top-about-section .tp-circle-container {
    top: 94%;
    left: 78%;
  }

  #top-about-section .section-inner {
    display: block;
  }

  #top-about-section .top-section-title-group,
  #top-about-section .top-about-feature-ul {
    width: 100%;
  }

  #top-about-section .top-section-title-group::before {
    content: none;
  }

  #top-about-section .top-about-feature-ul {
    gap: 0;
  }

  #top-about-section .top-about-feature-li {
    margin: 0 auto !important;
    width: 100%;
    padding: 1rem;
    font-size: 14px;
    white-space: normal;
  }

  #top-about-section .top-about-feature-icon {
    width: 40px;
    aspect-ratio: 1 / 1;
  }

  #top-about-section .top-about-text-gold {
    font-size: 14px;
  }
}

/* ---------------------
診療時間・アクセス #top-info-section
--------------------*/
#top-info-section {
  background: #d8d6d4;
  padding: 4em 0;
}

#top-info-section .top-section-title-jp,
#top-info-section .top-section-title-en {
  color: var(--body-text-color);
}

#top-info-section .top-info-container-title {
  font-weight: 500;
  margin-bottom: 0.6em;
  padding-left: 20px;
  position: relative;
}

#top-info-section .top-info-container-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: var(--border-radius-full);
  background: var(--body-color-main-02);
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

#top-info-section .top-info-map-illust-box img,
#top-info-section .top-info-map-illust-box iframe {
  width: 100%;
  height: fit-content;
  border-radius: 40px;
  margin-bottom: 0.6em;
}

#top-info-section .top-info-map-illust-box iframe {
  aspect-ratio: 5 / 3;
}

#top-info-section .top-info-payment-icon-box {
  background: #fff;
  border-radius: 24px;
  padding: 1em;
}

#top-info-section .top-info-btn-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#top-info-section .top-info-payment-method {
  margin-bottom: 1em;
}

#top-info-section .top-info-map-illust-box .top-btn-01 {
  margin-left: auto;
}

@media screen and (min-width: 767px) {
  #top-info-section .top-section-title-group {
    width: fit-content;
  }

  #top-info-section .top-info-container-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #top-info-section .top-info-container-01 {
    width: 55%;
  }

  #top-info-section .top-info-container-02 {
    width: 42%;
  }
}

@media screen and (max-width: 767px) {
  #top-info-section .top-info-container {
    margin-bottom: 2rem;
  }

  #top-info-section .top-info-btn-list .top-btn-01 {
    padding: 8px 10px 8px 10px;
    font-size: 10px;
  }
}

/* ---------------------
新着情報 #top-news-section
--------------------*/
#top-news-section {
  padding: 60px 0;
  /* background: #76716b; */
  background: rgba(131, 127, 121, 1);
  color: #fff;
}

#top-news-section .top-btn-01-beige {
  margin-left: auto;
  margin-top: 20px;
}

@media screen and (min-width: 767px) {
  #top-news-section .top-news-content {
    display: flex;
    align-items: center;
  }

  #top-news-section .top-section-title-group {
    margin-bottom: 0;
    width: 15%;
    text-align: left;
  }

  /*タブ切り替え全体のスタイル*/
  #top-news-section .tabs {
    margin: 0 auto;
    width: 85%;
  }
}

/*タブのスタイル*/
#top-news-section .news_tab_item {
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.12);
  color: #fff;
  display: block;
  font-size: 12px;
  text-align: center;
  transition: all 0.2s ease;
  padding: 0.5em 1.5em;
  margin-left: 1em;
}
@media screen and (min-width: 767px) {
  #top-news-section .news_tab_item {
    float: right;
  }
}

#top-news-section .news_tab_item:hover {
  opacity: 0.75;
}

#top-news-section .news_tab_item-right {
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  #top-news-section .tabs {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row-reverse;
  }

  #top-news-section .news_tab_item {
    font-size: 16px;
    margin: 0 0 1rem 0;
    width: 45%;
  }
}

/*ラジオボタンを全て消す*/
input[name="news_tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
#top-news-section .tab_content {
  display: none;
  padding: 2em;
  clear: both;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 40px;
}

/*選択されているタブのコンテンツのみを表示*/
#news:checked ~ #news_content,
#column:checked ~ #column_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
#top-news-section .tabs input:checked + .news_tab_item {
  background-color: transparent;
  border: 1px solid #fff;
  border-bottom: none;
}

@media screen and (min-width: 767px) {
  #top-news-section .tab_item-right {
    margin-right: 40px;
  }
}

#top-news-section .news-list li:not(:last-child) {
  border-bottom: 1px solid #fff;
}

#top-news-section .news-item {
  padding: 2em 1em;
  display: flex;
  align-items: center;
}

#top-news-section .news-item time {
  font-family: var(--font-number);
  margin-right: 0.5em;
  font-size: min(14px, 0.98vw);
  width: 12%;
}

#top-news-section .news-category {
  font-family: var(--font-gothic);
  border: 1px solid #fff;
  padding: 0.2em 0.6em;
  display: inline-block;
  text-align: center;
  font-size: min(12px, 0.83vw);
  margin-right: 1em;
  width: 14%;
  white-space: nowrap;
}

#top-news-section .top-news-item-btn {
  font-family: var(--font-mincho);
  font-size: 16px;
  width: 74%;
}

@media screen and (max-width: 767px) {
  #top-news-section .tabs input:checked + .news_tab_item {
    border: 1px solid #fff;
    position: relative;
  }

  #top-news-section .tabs input:checked + .news_tab_item::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("../img/top-news-icon-checkmark.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 0;
    left: 0;
  }

  #top-news-section .news-item {
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
  }

  #top-news-section .tab_content {
    padding: 2rem 1rem;
    width: 100%;
  }

  #top-news-section .news-item time {
    font-size: 10px;
    width: fit-content;
  }

  #top-news-section .news-category {
    font-size: 10px;
    width: fit-content;
    padding: 0.2rem 1rem;
  }

  #top-news-section .top-news-item-btn {
    width: 100%;
    text-align: left;
    font-size: 14px;
  }
}

/* ---------------------
ココロデンタル恵比寿が大切にしていること #top-concept-section
--------------------*/

#top-concept-section {
  background-image: url(../img/top-concept-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin-block: -1px;
}

#top-concept-section .top-concept-catch-copy {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  margin: 1em auto;
}

#top-concept-section .top-concept-catch-copy-large {
  font-size: 48px;
  letter-spacing: 0.2em;
}

#top-concept-section .top-concept-catch-copy-small {
  font-size: 32px;
}

#top-concept-section .top-concept-main-text {
  color: #fff;
  text-align: center;
  width: 70%;
  margin: 30px auto;
}

#top-concept-section .top-concept-attempt-box {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 100px auto;
}

#top-concept-section .top-concept-attempt-item {
  width: 49%;
  text-align: center;
  margin: 0 1em;
  color: #fff;
  aspect-ratio: 1 / 1;
  position: relative;
  padding: 2%;
}

#top-concept-section .top-concept-attempt-title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  #top-concept-section .top-concept-attempt-title {
    font-size: 22px;
  }
}

#top-concept-section .top-concept-attempt-item::before {
  content: "";
  display: inline-block;
  width: 140%;
  height: 140%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

#top-concept-section .top-concept-attempt-item-green::before {
  background-image: url("../img/top-concept-circle-green.svg");
}

#top-concept-section .top-concept-attempt-item-beige::before {
  background-image: url("../img/top-concept-circle-beige.svg");
}

#top-concept-section .top-concept-attempt-title,
#top-concept-section .top-concept-attempt-ul {
  position: relative;
  z-index: 1;
}

#top-concept-section .top-concept-attempt-ul {
  text-align: left;
}

#top-concept-section .top-concept-attempt-li {
  position: relative;
  padding: 8px 12px 8px 24px;
  /* margin-bottom: 0.6em; */
  font-size: 16px;
  line-height: 1.7;
  /* background-color: rgba(0, 0, 0, 0.6); */
  color: #fff;
  border-radius: 4px;
}

#top-concept-section .top-concept-attempt-li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--border-radius-full);
  background: #fff;
  position: absolute;
  transform: translate(0%, -50%);
  top: calc((16px * 1.7) / 2 + 8px);
  left: 12px;
}

@media screen and (max-width: 767px) {
  #top-concept-section .top-concept-catch-copy {
    font-size: 22px;
    line-height: 1.8;
  }

  #top-concept-section .top-concept-catch-copy-large {
    font-size: 22px;
  }

  #top-concept-section .top-concept-catch-copy-small {
    font-size: 16px;
  }

  #top-concept-section .top-concept-main-text {
    width: 90%;
  }

  #top-concept-section .top-concept-attempt-box {
    flex-direction: column;
  }

  #top-concept-section .top-concept-attempt-item {
    width: 100%;
    margin: 0;
    padding-inline: 0;
  }

  #top-concept-section .top-concept-attempt-box {
    width: 100%;
    margin-bottom: 0;
  }
}

/* ---------------------
ココロデンタル恵比寿の特徴 #top-feature-section
--------------------*/
#top-feature-section {
  background: var(--body-color-main-01);
  color: #fff;
  padding: 60px 0;
}

@media screen and (min-width: 767px) {
  #top-feature-section .top-section-title-group {
    text-align: left;
  }
}

#top-feature-section .top-feature-slider-wrapper {
  display: flex;
  justify-content: space-between;
}

#top-feature-section .top-feature-slider-nav {
  width: 33%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

#top-feature-section .top-feature-slider-nav button {
  font-family: var(--font-mincho);
  font-size: 16px;
  padding: 0.6em;
  display: flex;
  align-items: center;
  gap: 10px;
}

#top-feature-section .top-feature-slider-nav button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../img/top-feature-icon-arrow-gold.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  #top-feature-section .top-feature-slider-nav button::after {
    width: 14px;
    height: 14px;
  }
}

#top-feature-section .top-feature-slider-nav button:hover {
  background: rgba(0, 0, 0, 0.1);
}

#top-feature-section .top-feature-btn-num {
  font-family: var(--font-number);
  color: var(--body-color-main-02);
  min-width: 48px;
  display: inline-block;
  text-align: center;
  font-variant-numeric: tabular-nums;
  /* margin-right: 0.6em; */
  font-size: 24px;
}

#top-feature-section .top-feature-slider {
  width: 70%;
  margin-right: -10%;
}

#top-feature-section .tp-circle-container {
  top: 88%;
  left: 33%;
}

#top-feature-section .top-feature-slider-wrapper::before {
  content: "";
  display: inline-block;
  width: 172px;
  height: 220px;
  background-image: url(../img/top-feature-icon-teeth.svg);
  transform: translate(-50%, -50%);
  top: 88%;
  left: 33%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #top-feature-section .top-feature-slider-wrapper::before {
    content: none;
  }
}

#top-feature-section .top-feature-slider-item .top-feature-content {
  position: relative;
  margin-bottom: 10px;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 40px;
}

#top-feature-section #slick-slide00 .top-feature-content {
  background: url(../img/top-feature-image-01.webp);
}

#top-feature-section #slick-slide01 .top-feature-content {
  background: url(../img/top-feature-image-02.webp);
}

#top-feature-section #slick-slide02 .top-feature-content {
  background: url(../img/top-feature-image-03.webp);
}

#top-feature-section #slick-slide03 .top-feature-content {
  background: url(../img/top-feature-image-04.webp);
}

#top-feature-section #slick-slide04 .top-feature-content {
  background: url(../img/top-feature-image-05.webp);
}

/* slickスライダーのcss上書き */
#top-feature-section .slick-dots li button:before {
  color: #fff;
}

#top-feature-section .slick-dots li.slick-active button:before {
  color: #fff;
}

#top-feature-section .slick-prev,
#top-feature-section .slick-next {
  top: calc(100% + 6px);
  transform: translate(-50%, 0);
  z-index: 2;
}

#top-feature-section .slick-prev {
  left: 25%;
}

#top-feature-section .slick-next {
  right: 25%;
}

@media screen and (max-width: 767px) {
  #top-feature-section .slick-prev {
    left: 14%;
  }

  #top-feature-section .slick-next {
    right: 10%;
  }
}

#top-feature-section .top-feature-content-wrapper {
  padding: 0 1em;
}

#top-feature-section .top-feature-content {
  aspect-ratio: 4 / 3;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 40px;
}

#top-feature-section .top-feature-content-title,
#top-feature-section .top-feature-content-text,
#top-feature-section .top-feature-content-num {
  width: 80%;
  margin-left: auto;
}

#top-feature-section .top-feature-content-title {
  font-size: 32px;
  font-family: var(--font-mincho);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.8em;
}

#top-feature-section .top-feature-content-num {
  font-family: var(--font-english);
  font-size: 14px;
  line-height: 1;
  padding-left: 0.4em;
}

#top-feature-section .top-feature-content-num .top-feature-slider-num {
  font-family: var(--font-number);
  font-size: 32px;
  margin-left: 4px;
}

@media screen and (max-width: 767px) {
  #top-feature-section .top-feature-slider-wrapper {
    flex-direction: column-reverse;
  }

  #top-feature-section .top-feature-slider-nav {
    width: 90%;
    margin: 4rem auto 0;
  }

  #top-feature-section .top-feature-slider {
    width: 100%;
    margin: 0 auto;
  }

  #top-feature-section .top-feature-content-title {
    font-size: 14px;
  }

  #top-feature-section .top-feature-content-text {
    font-size: 10px;
  }

  #top-feature-section .top-feature-content-title,
  #top-feature-section .top-feature-content-text,
  #top-feature-section .top-feature-content-num {
    width: 100%;
  }

  #top-feature-section .top-feature-slider-nav button {
    font-size: 16px;
    padding-inline: 0;
  }

  #top-feature-section .top-feature-slider-wrapper::before {
    z-index: 0;
    top: 100%;
    left: 78%;
  }

  #top-feature-section .tp-circle-container {
    display: none;
  }
}

/* ---------------------
掲載メディア一覧 #top-media-section
--------------------*/
#top-media-section {
  background: rgba(131, 127, 121, 1);
  color: #fff;
  padding: 60px 0;
}

@media screen and (min-width: 767px) {
  #top-media-section .top-section-title-group {
    width: fit-content;
  }
}

#top-media-section .top-media-box {
  background: #fff;
  padding: 30px;
  border-radius: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3%;
  align-items: center;
  margin-bottom: 30px;
}

#top-media-section .top-media-item,
#top-media-section .top-media-item-btn {
  width: 20%;
}

#top-media-section .top-media-box-title {
  margin: 20px 0;
  font-family: var(--font-mincho);
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  #top-media-section .top-media-box {
    gap: 20px 3%;
    padding: 30px 20px;
  }

  #top-media-section .top-media-item,
  #top-media-section .top-media-item-btn {
    width: 47%;
  }

  #top-media-section .top-media-clinic-box .top-media-item,
  #top-media-section .top-media-clinic-box .top-media-item-btn {
    width: 80%;
  }

  #top-media-section .top-media-box-title {
    text-align: center;
  }
}

/* ---------------------
おすすめメニュー #top-recommended-section
--------------------*/
#top-recommended-section {
  background: #d8d6d4;
  padding: 60px 0;
}

@media screen and (min-width: 767px) {
  #top-recommended-section .top-section-title-group {
    width: fit-content;
  }
}

#top-recommended-section .top-section-title-jp,
#top-recommended-section .top-section-title-en {
  color: var(--body-text-color);
}

#top-recommended-section .top-recommended-countup-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  width: fit-content;
}

#top-recommended-section .top-recommended-treatment-number-ul {
  display: flex;
  justify-content: center;
  gap: 5%;
}

#top-recommended-section .top-recommended-treatment-number-li {
  width: 20%;
  color: #737279;
}

#top-recommended-section .top-recommended-treatment-number-content-01 {
  background: url(../img/top-recommended-teeth-01.svg);
}

#top-recommended-section .top-recommended-treatment-number-content-02 {
  background: url(../img/top-recommended-teeth-02.svg);
}

#top-recommended-section .top-recommended-treatment-number-content-03 {
  background: url(../img/top-recommended-teeth-03.svg);
}

#top-recommended-section .top-recommended-treatment-number-content {
  text-align: center;
  aspect-ratio: 173 / 220;
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  #top-recommended-section .top-recommended-treatment-number-content {
    aspect-ratio: auto;
    background-position: left center;
    padding: 1rem 0 1rem 40%;
    width: 90%;
    margin: 1rem auto;
  }
}

#top-recommended-section .treatment-number-title {
  font-family: var(--font-mincho);
}

#top-recommended-section .treatment-number-datetime {
  font-size: 10px;
}

#top-recommended-section .top-btn-01 {
  margin: 1em auto 0;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  #top-recommended-section .top-recommended-treatment-number-ul .top-btn-01 {
    margin: 0.5rem auto 0;
    font-size: 12px;
  }

  #top-recommended-section
    .top-recommended-treatment-number-ul
    .top-btn-01-arrow-box {
    width: 18px;
    height: 18px;
  }

  #top-recommended-section
    .top-recommended-treatment-number-ul
    .top-btn-01-arrow-box::before {
    width: 6px;
    height: 8px;
    top: 46%;
    right: 6px;
  }

  #top-recommended-section .treatment-number-title {
    font-size: 18px;
  }
}

/* カウントアップ部分のcss */
.countUp {
  opacity: 0;
  font-variant-numeric: tabular-nums;
  font-size: 48px;
  font-family: var(--font-number);
  line-height: 1;
  transition: opacity 0.3s ease;
}

.countUp.active {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .countUp {
    font-size: 36px;
  }

  .countup-jp {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  #top-recommended-section .top-recommended-treatment-number-ul {
    flex-direction: column;
  }

  #top-recommended-section .top-recommended-treatment-number-li {
    width: 100%;
  }
}

#top-recommended-section .top-recommended-item-container {
  position: relative;
}

#top-recommended-section .top-recommended-item-container .tp-circle-container {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 105%;
}

#top-recommended-section .top-recommended-item-container-01::after {
  background: url(../img/top-recommend-mouthpiece.webp);
}

#top-recommended-section .top-recommended-item-container-02::after {
  background: url(../img/top-recommend-implant.webp);
}

#top-recommended-section .top-recommended-item-container-03::after {
  background: url(../img/top-recommend-ceramic.webp);
}

#top-recommended-section .top-recommended-item-container::after {
  content: "";
  width: 420px;
  height: 420px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 105%;
  border-radius: var(--border-radius-full);
}

#top-recommended-section .tp-circle-container .tp-circle-block {
  width: 500px;
  height: 500px;
}

#top-recommended-section .tp-circle-container .circleText text {
  fill: var(--body-color-main-01);
  font-weight: 300;
}

#top-recommended-section .top-recommended-item {
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 22px 48px rgba(9, 35, 51, 0.08);
  margin-top: 60px;
  padding: 4em 4em 4em 0;
  width: 75%;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

#top-recommended-section .top-recommended-item::before {
  content: "";
  width: 120%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  border-radius: 36px;
  z-index: 0;
}

#top-recommended-section .top-recommended-item-content {
  margin: 0 auto;
  color: #3e4b56;
  text-align: center;
  z-index: 1;
  position: relative;
}

#top-recommended-section .top-recommended-item-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
}

#top-recommended-section .top-recommended-item-title-wrap {
  text-align: left;
  font-family: var(--font-mincho);
  text-align: center;
  white-space: nowrap;
}

#top-recommended-section .top-recommended-item-title-jp {
  font-size: 32px;
  font-weight: 600;
}

#top-recommended-section .top-recommended-item-title-sub {
  font-size: 14px;
  color: #7a7f86;
}

#top-recommended-section .top-recommended-item-title-en {
  font-size: 32px;
  letter-spacing: 0.15em;
  color: rgba(31, 79, 94, 0.4);
  font-family: var(--font-english);
  font-weight: lighter;
}

#top-recommended-section .top-recommended-item-copy {
  font-size: 22px;
  margin-bottom: 40px;
  color: #737279;
}

#top-recommended-section .top-recommended-item-aligner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  margin-bottom: 40px;
}

#top-recommended-section .top-recommended-item-aligner-figure {
  text-align: center;
}

#top-recommended-section .top-recommended-item-aligner-figure img {
  width: fit-content;
  height: 160px;
  display: block;
  margin-bottom: 20px;
}

#top-recommended-section
  .top-recommended-item-container-02
  .top-recommended-item-aligner-figure
  img {
  height: 220px;
}

#top-recommended-section .top-recommended-item-description {
  font-size: 15px;
  color: #737279;
  margin: 0 auto 45px;
  max-width: 640px;
}

#top-recommended-section .top-recommended-item-fee {
  margin-bottom: 40px;
  padding: 1em;
  border-radius: 20px;
  border: 1px solid rgba(153, 171, 186, 0.35);
}

#top-recommended-section .top-recommended-item-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  background: white;
}

#top-recommended-section .top-recommended-item-table th,
#top-recommended-section .top-recommended-item-table td {
  padding: 18px;
  color: #4b5560;
  background: #ffffff;
  text-align: center;
  vertical-align: middle;
}

#top-recommended-section .top-recommended-item-table th {
  font-size: 14px;
}

#top-recommended-section .top-recommended-item-table td {
  font-size: 12px;
}

#top-recommended-section
  .top-recommended-item-table
  td
  .top-recommended-item-table-num {
  font-size: 16px;
  font-family: var(--font-number);
}

#top-recommended-section .top-recommended-item-table th:not(:last-child),
#top-recommended-section .top-recommended-item-table td:not(:last-child) {
  border-right: 1px solid rgba(153, 171, 186, 0.35);
}

#top-recommended-section .top-recommended-item-table thead tr {
  border-bottom: 1px solid rgba(153, 171, 186, 0.35);
}

#top-recommended-section .top-recommended-item-table th {
  font-weight: 600;
}

#top-recommended-section .top-recommended-item-table tbody th {
  font-weight: 600;
  white-space: nowrap;
}

#top-recommended-section .top-recommended-item-footer {
  display: flex;
  justify-content: center;
}

#top-recommended-section .top-recommended-item-footer .top-btn-01 {
  margin: 0 1em 0 auto;
  color: var(--body-color-main-01);
}

@media (max-width: 767px) {
  #top-recommended-section .top-recommended-item {
    padding: 40px 24px;
    border-radius: 28px;
  }

  #top-recommended-section .top-recommended-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  #top-recommended-section .top-recommended-item-title-en {
    font-size: 18px;
  }

  #top-recommended-section .top-recommended-item-copy {
    text-align: left;
  }

  #top-recommended-section .top-recommended-item-aligner {
    gap: 2rem;
  }

  #top-recommended-section .top-recommended-item-aligner-figure {
    max-width: 260px;
    margin: 0;
  }

  #top-recommended-section .top-recommended-item-aligner-figure img {
    object-fit: contain;
    height: 100px;
    margin-bottom: 0;
  }

  #top-recommended-section
    .top-recommended-item-container-02
    .top-recommended-item-aligner-figure
    img {
    height: 128px;
  }

  #top-recommended-section .top-recommended-item-description {
    font-size: 14px;
  }

  #top-recommended-section .top-recommended-item-table th,
  #top-recommended-section .top-recommended-item-table td {
    padding: 14px 4px;
    font-size: 10px;
    background: #ffffff;
    border: 1px solid rgba(153, 171, 186, 0.35);
  }

  #top-recommended-section
    .top-recommended-item-table
    td
    .top-recommended-item-table-num {
    font-size: 12px;
  }

  #top-recommended-section .top-recommended-item {
    width: 100%;
  }

  #top-recommended-section .top-recommended-item-container::after {
    width: 240px;
    height: 240px;
    top: -5%;
    left: 80%;
  }

  #top-recommended-section
    .top-recommended-item-container
    .tp-circle-container {
    top: -5%;
    left: 80%;
  }

  #top-recommended-section .tp-circle-container .tp-circle-block {
    width: 300px;
    height: 300px;
  }

  #top-recommended-section .top-recommended-item-container {
    margin-top: 16rem;
  }
}

#top-recommended-section
  .top-recommended-item-container-02
  .top-recommended-item {
  margin: 60px 0 0 auto;
  padding: 4em 0 4em 4em;
}

#top-recommended-section
  .top-recommended-item-container-02
  .top-recommended-item::before {
  top: 0;
  left: 0;
}

#top-recommended-section
  .top-recommended-item-container-02
  .tp-circle-container {
  left: -5%;
}

#top-recommended-section .top-recommended-item-container-02::after {
  left: -5%;
}

#top-recommended-section
  .top-recommended-item-container-02
  .tp-circle-container
  .circleText
  text {
  fill: #76716b;
}

#top-recommended-section
  .top-recommended-item-container-03
  .tp-circle-container
  .circleText
  text {
  fill: #c2a278;
}

#top-recommended-section
  .top-recommended-item-container-02
  .top-recommended-item-title-en {
  color: rgba(118, 113, 107, 0.4);
}

#top-recommended-section
  .top-recommended-item-container-03
  .top-recommended-item-title-en {
  color: rgba(215, 186, 149, 0.4);
}

#top-recommended-section
  .top-recommended-item-container-02
  .top-recommended-item-footer
  .top-btn-01 {
  color: #76716b;
}

#top-recommended-section
  .top-recommended-item-container-02
  .top-recommended-item-footer
  .top-btn-01:hover {
  color: #fff;
  background: #76716b;
}

#top-recommended-section
  .top-recommended-item-container-02
  .top-recommended-item-footer
  .top-btn-01-arrow-box {
  background: #76716b;
}

#top-recommended-section
  .top-recommended-item-container-03
  .top-recommended-item-footer
  .top-btn-01 {
  color: var(--body-color-main-02);
}

#top-recommended-section
  .top-recommended-item-container-03
  .top-recommended-item-footer
  .top-btn-01:hover {
  color: #fff;
  background: var(--body-color-main-02);
}

#top-recommended-section
  .top-recommended-item-container-03
  .top-recommended-item-footer
  .top-btn-01-arrow-box {
  background: var(--body-color-main-02);
}

@media screen and (max-width: 767px) {
  #top-recommended-section .top-recommended-item-container-02::after,
  #top-recommended-section
    .top-recommended-item-container-02
    .tp-circle-container {
    left: 20%;
  }

  #top-recommended-section
    .top-recommended-item-container-02
    .top-recommended-item {
    padding: 2em 0 2em 2em;
  }
}

/* ---------------------
診療内容一覧 #top-menu-section
--------------------*/
#top-menu-section {
  background: var(--body-color-main-01);
  padding: 60px 0;
  overflow: hidden;
}

#top-menu-section .top-menu-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top-menu-section .top-section-title-group {
  position: relative;
}

#top-menu-section .top-btn-01-white {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  #top-menu-section .top-menu-title-container {
    flex-direction: column;
  }

  #top-menu-section .top-btn-01-white {
    margin: 0 auto 1em;
  }
}

.top-menu-item-ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.top-menu-item-li {
  width: 31%;
  margin-bottom: 2em;
  background: #fff;
  border-radius: 40px;
  text-align: center;
  padding: 2em 1em 1em;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-menu-item-li img {
  width: 145px;
  height: auto;
  margin: 0 auto 0.6em;
}

.top-menu-item-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.6em;
  line-height: 1;
  height: 48px;
  font-family: var(--font-mincho);
  align-content: center;
}

.top-menu-item-subtitle {
  font-size: min(16px, 1.1vw);
  line-height: 1;
}

.top-menu-item-description-title-box {
  width: 100%;
  margin: 0 auto 0.6em;
  position: relative;
}

.top-menu-item-description-title {
  font-size: 15px;
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  background: #fff;
  padding: 0 8px;
  color: #737279;
}

.top-menu-item-description-title-box::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: rgba(31, 79, 94, 1);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 52%;
  left: 50%;
  z-index: 1;
}

/* .top-menu-item-description-ul{
  width: fit-content;
  margin-inline: auto;
} */

.top-menu-item-description-li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.6em;
  padding-left: 18px;
  text-align: left;
  position: relative;
  color: #737279;
}

.top-menu-item-description-li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--border-radius-full);
  background: var(--body-text-color);
  position: absolute;
  transform: translate(0%, -50%);
  top: calc(14px / 2 * 1.5);
  left: 4px;
}

.top-menu-item-li .top-btn-01 {
  margin-left: auto;
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .top-menu-item-li {
    width: 100%;
  }

  .top-menu-item-upper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  .top-menu-item-li .top-menu-item-upper img {
    width: 15%;
    margin: 0 auto;
  }

  .top-menu-item-title {
    width: 83%;
    text-align: left;
    margin-bottom: 0;
    height: auto;
    padding-left: 0.6em;
    margin-block: 0;
    padding-block: 0;
  }

  .top-menu-item-subtitle {
    font-size: 10px;
  }

  .top-menu-item-description {
    margin-top: 1em;
    width: 100%;
  }
}

/* 下層モジュール - 診療内容一覧用css */
.tp-menu-list {
  position: relative;
  padding: 2em 0 1em;
}

.tp-menu-list::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: var(--body-color-main-01);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.tp-menu-list .top-menu-item-title {
  font-size: 20px;
  height: 40px;
}

.tp-menu-list .top-menu-item-subtitle {
  font-size: 12px;
}

.tp-menu-list .top-menu-item-li .top-btn-01 {
  margin: 1em auto 0;
}

@media screen and (max-width: 767px) {
  .tp-menu-list .top-menu-item-title {
    height: auto;
  }

  .tp-menu-list .top-menu-item-li .top-btn-01 {
    margin: 0.6em 0 0 auto;
  }
}

/* ---------------------
医師紹介 #top-doctor-section
--------------------*/
#top-doctor-section {
  /* background: #76716b; */
  background: rgba(131, 127, 121, 1);
  padding: 60px 0;
  color: #fff;
  overflow: hidden;
}

@media screen and (min-width: 767px) {
  #top-doctor-section .top-section-title-group {
    width: fit-content;
  }
}

/*タブ切り替え全体のスタイル*/
#top-doctor-section .tabs {
  margin: 0 auto;
}

/*タブのスタイル*/
#top-doctor-section .tab_item {
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.12);
  color: #fff;
  display: block;
  font-size: 12px;
  text-align: center;
  transition: all 0.2s ease;
  padding: 0.2em 1em;
  margin-left: 1em;
}
#top-doctor-section .tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
#top-doctor-section .tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 40px;
}

/*選択されているタブのコンテンツのみを表示*/
#doctor-01:checked ~ #doctor-01_content,
#doctor-02:checked ~ #doctor-02_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
#top-doctor-section .tabs input:checked + .tab_item {
  background-color: transparent;
  border: 1px solid #fff;
  border-bottom: none;
}

#top-doctor-section .tp-circle-container {
  top: 100%;
  left: 90%;
}

#top-doctor-section .tab_content-upper {
  display: flex;
  justify-content: space-between;
}

#top-doctor-section .tab_content-left {
  width: 60%;
}

#top-doctor-section .tab_content-right {
  width: 38%;
}

#top-doctor-section .tab_content-right img {
  width: 100%;
  height: fit-content;
  aspect-ratio: 419 / 307;
  border-radius: 24px;
}

#top-doctor-section .tab_content-doctor-title {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 500;
  align-content: center;
  line-height: 1.4;
  margin-bottom: 20px;
}

#top-doctor-section .tab_content-doctor-position {
  font-size: 14px;
  margin-right: 10px;
}

#top-doctor-section .tab_content-doctor-name-en {
  font-family: var(--font-english);
  letter-spacing: 0.15em;
  opacity: 0.3;
  margin-left: 0.8em;
  display: inline-block;
}

#top-doctor-section .top-doctor-description {
  display: flex;
  justify-content: space-between;
}

#top-doctor-section .top-doctor-description-item {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  padding: 1.5em;
  margin-bottom: 1em;
}

#top-doctor-section .top-doctor-description-item-01 {
  width: 100%;
}

/* #top-doctor-section .top-doctor-description-item-01 {
  width: 58%;
}

#top-doctor-section .top-doctor-description-item-02 {
  width: 40%;
} */

#top-doctor-section .top-doctor-description-title {
  font-weight: 500;
  padding-left: 52px;
  position: relative;
}

#top-doctor-section .top-doctor-description-title::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: #fff;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
  opacity: 0.7;
}

#top-doctor-section .top-doctor-description-li {
  font-size: 14px;
  font-weight: normal;
}

#top-doctor-section .top-doctor-catchphrase {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-mincho);
  margin: 1em 0;
}

#top-doctor-section .top-btn-01-beige {
  margin: 1em 0 1em auto;
  z-index: 2;
}

@media screen and (min-width: 767px) {
  #top-doctor-section .tab_item {
    float: right;
  }

  #top-doctor-section .tab_item-right {
    margin-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  #top-doctor-section .tabs {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row-reverse;
  }

  #top-doctor-section .tab_item {
    font-size: 16px;
    margin: 0 0 1rem 0;
    width: 45%;
  }

  #top-doctor-section .tabs input:checked + .tab_item {
    border: 1px solid #fff;
    position: relative;
  }

  #top-doctor-section .tabs input:checked + .tab_item::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("../img/top-news-icon-checkmark.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 0;
    left: 0;
  }

  #top-doctor-section .tab_content {
    padding: 2rem 1rem;
    width: 100%;
  }

  #top-doctor-section .tab_content-upper {
    flex-direction: column-reverse;
  }

  #top-doctor-section .top-doctor-description {
    flex-direction: column;
  }

  #top-doctor-section .tab_content-left,
  #top-doctor-section .tab_content-right,
  #top-doctor-section .top-doctor-description-item-01,
  #top-doctor-section .top-doctor-description-item-02 {
    width: 100%;
  }

  #top-doctor-section .top-doctor-description-item {
    text-align: left;
  }

  #top-doctor-section .top-doctor-description-title {
    margin-bottom: 0.8rem;
  }

  #top-doctor-section .top-doctor-description-li {
    margin-bottom: 0.4rem;
  }

  #top-doctor-section .tab_content-lower {
    text-align: left;
  }

  #top-doctor-section .tab_content-doctor-name-en {
    font-size: 20px;
    margin-left: 0;
  }

  #top-doctor-section .tab_content-doctor-title {
    line-height: 1;
    margin-top: 20px;
  }
}

/* ---------------------
よくあるご質問 #top-faq-section
--------------------*/

#top-faq-section {
  background: #d8d6d4;
  padding: 60px 0;
}

@media screen and (min-width: 767px) {
  #top-faq-section .top-section-title-group {
    width: fit-content;
  }
}

#top-faq-section .top-section-title-jp,
#top-faq-section .top-section-title-en {
  color: var(--body-text-color);
}

#top-faq-section .tp-faq {
  width: 90%;
  margin: 1em auto;
  background: transparent;
}

#top-faq-section .tp-faq-accordion {
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  #top-faq-section .tp-faq {
    width: 100%;
    padding-inline: 0;
  }
}

/* ---------------------
分院のご紹介 #top-branch-clinic-section
--------------------*/
#top-branch-clinic-section {
  /* background: #76716b; */
  background: rgba(131, 127, 121, 1);
  padding: 60px 0;
  color: #fff;
}

@media screen and (min-width: 767px) {
  #top-branch-clinic-section .top-section-title-group {
    width: fit-content;
  }
}

#top-branch-clinic-section .top-branch-content {
  display: flex;
  justify-content: space-between;
}

#top-branch-clinic-section .top-branch-content-left {
  width: 53%;
}

#top-branch-clinic-section .top-branch-content-right {
  width: 43%;
}

#top-branch-clinic-section .top-branch-content-left img {
  width: 100%;
  height: fit-content;
  aspect-ratio: 568 / 280;
  border-radius: 40px;
  margin-bottom: 1em;
}

#top-branch-clinic-section .top-branch-content-left .top-external-link {
  margin-left: auto;
  width: fit-content;
  display: block;
  padding-left: 20px;
  position: relative;
  font-size: 12px;
  border-bottom: 1px solid #fff;
}

#top-branch-clinic-section .top-branch-content-left .top-external-link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/tp-icon-external-link.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 0;
}

#top-branch-clinic-section .tp-biz-hour .circle-colored {
  color: #fff;
}

#top-branch-clinic-section .tp-biz-hour tr td:first-child {
  font-size: min(14px, 0.97vw);
}

#top-branch-clinic-section .top-branch-clinic-logo {
  margin: 1em auto;
}

#top-branch-clinic-section .top-info-address .top-info-dl,
#top-branch-clinic-section .top-info-address .top-info-dt {
  font-weight: 300;
  font-size: 15px;
}

#top-branch-clinic-section .tp-biz-hour tr th {
  font-weight: 300;
}

#top-branch-clinic-section .top-branch-clinic-google-map-btn {
  font-weight: 300;
  display: block;
  margin-left: auto;
  width: fit-content;
  font-size: 12px;
  text-decoration: underline;
  margin-bottom: 1em;
}

#top-branch-clinic-section .tp-circle-container {
  top: 80%;
  left: 10%;
}

#top-branch-clinic-section .section-inner::before {
  content: "";
  display: inline-block;
  width: 136px;
  height: 174px;
  background-image: url("../img/tp-icon-teeth-05.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 80%;
  left: 10%;
}

@media screen and (max-width: 767px) {
  .tp-biz-hour tr th:first-child,
  .tp-biz-hour tr td:first-child,
  #top-branch-clinic-section .tp-biz-hour tr td:first-child {
    font-size: 3vw;
  }

  #top-branch-clinic-section .top-branch-content {
    flex-direction: column;
  }

  #top-branch-clinic-section .top-branch-content-left,
  #top-branch-clinic-section .top-branch-content-right {
    width: 100%;
  }

  #top-branch-clinic-section .top-branch-content-left {
    margin-bottom: 1rem;
  }

  #top-branch-clinic-section .top-branch-clinic-logo {
    margin: 2rem auto;
    width: 80%;
  }

  #top-branch-clinic-section .top-branch-clinic-google-map-btn {
    margin-bottom: 2rem;
  }

  #top-branch-clinic-section .tp-circle-container,
  #top-branch-clinic-section .section-inner::before {
    top: 90%;
    left: 10%;
  }
}

/* ---------------------
フッターのクリニック情報 #footer-clinic-info-section
--------------------*/
#footer-clinic-info-section {
  padding: 60px 0;
  background: #d8d6d4;
  font-family: var(--font-gothic);
}

#footer-clinic-info-section .footer-clinic-info-content {
  display: flex;
  justify-content: space-between;
}

#footer-clinic-info-section .footer-clinic-info-content-left {
  width: 46%;
}

#footer-clinic-info-section .footer-clinic-info-content-right {
  width: 52%;
}

#footer-clinic-info-section .footer-clinic-info-content-right img,
#footer-clinic-info-section .footer-clinic-info-content-right iframe {
  width: 100%;
  height: fit-content;
  border-radius: 40px;
}

#footer-clinic-info-section .footer-clinic-info-content-right iframe {
  aspect-ratio: 7 / 5;
}

#footer-clinic-info-section .footer-clinic-info-content-right .top-btn-01 {
  margin-left: auto;
}

#footer-clinic-info-section .tp-biz-hour tr td:first-child {
  font-size: min(14px, 0.97vw);
}

#footer-clinic-info-section .top-info-address .top-info-dl {
  justify-content: space-between;
  font-size: 15px;
}

#footer-clinic-info-section .top-info-address .top-info-dt {
  width: 19%;
  text-align: right;
}

#footer-clinic-info-section .top-info-address .top-info-dd {
  width: 78%;
}

#footer-clinic-info-section .top-info-address {
  margin: 1em auto;
}

#footer-clinic-info-section .top-clinic-logo {
  width: 300px;
  height: fit-content;
  aspect-ratio: 300 / 84;
  margin: 0 auto;
}

#footer-clinic-info-section .footer-clinic-logo-text {
  font-size: 14px;
  color: #0e6f70;
  margin: 0 auto;
  width: fit-content;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  #footer-clinic-info-section .footer-clinic-info-content {
    flex-direction: column;
  }

  #footer-clinic-info-section .footer-clinic-info-content-left,
  #footer-clinic-info-section .footer-clinic-info-content-right {
    width: 100%;
  }

  #footer-clinic-info-section .tp-biz-hour tr td:first-child {
    font-size: 3vw;
  }

  #footer-clinic-info-section .top-info-address .top-info-dt {
    width: 30%;
  }

  #footer-clinic-info-section .top-info-address .top-info-dd {
    width: 70%;
  }

  #footer-clinic-info-section .top-clinic-logo {
    width: 200px;
    margin-bottom: 0.2rem;
  }

  #footer-clinic-info-section .footer-clinic-logo-text {
    text-align: center;
  }

  #footer-clinic-info-section .tp-biz-hour {
    margin-bottom: 1rem;
  }
}
/* ---------------------
医院紹介のクリニック情報 #clinic-page-info
--------------------*/
#footer-clinic-info-section.clinic-page-info {
  background: none;
  padding: 20px 0;
}
.clinic-page-info .section-inner {
  padding: 0;
}
@media screen and (max-width: 767px) {
  #footer-clinic-info-section.clinic-page-info .top-info-address .top-info-dt {
    width: 25%;
  }
  #footer-clinic-info-section.clinic-page-info .top-info-address .top-info-dd {
    width: 75%;
  }
}

#footer-clinic-info-section.tp-clinic-info .footer-clinic-logo-text {
  text-align: center;
}

@media screen and (min-width: 767px) {
  #footer-clinic-info-section.tp-clinic-info .footer-clinic-info-content-left {
    width: 55%;
  }

  #footer-clinic-info-section.tp-clinic-info .footer-clinic-info-content-right {
    width: 43%;
  }
}

/* 移管したブログのcss */

#page-content-blog{
  padding: 0 10px;
}

#page-content-blog h2 {
  color: var(--body-text-color);
  font-size: 24px;
  margin-top: 1em;
  padding: 0.8em 1em;
  font-weight: bold;
  line-height: 1.5;
  background-color: rgba(31, 79, 94, 0.1);
  border-left: 2px solid var(--body-color-main-01);
}

#page-content-blog h3 {
  font-size: 22px;
  padding: 1em 1em 0.5em 0.5em;
  color: var(--body-text-color);
  border-bottom: 2px solid var(--body-color-main-01);
}

#page-content-blog h4 {
  font-size: 18px;
  padding: 1em 0.4em 1em 1em;
  color: var(--body-text-color);
  margin-left: 0.2em;
}

#page-content-blog p {
  margin: 1rem auto;
}

#page-content-blog img {
  margin: 4rem auto;
}

#page-content-blog li {
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-left: 20px;
}

#page-content-blog li::before {
  width: 6px;
  height: 6px;
  position: absolute;
  transform: translateY(-50%);
  left: 4px;
  top: calc(16px * 1.7 / 2);
  content: "";
  border-radius: 50%;
  background-color: var(--body-color-main-01);
}


/* お知らせ一覧ページとブログ一覧ページのページネーション下に謎の小数点が出るので非表示に */
.elementor-4619 .elementor-element.elementor-element-9e2a814:after,
.elementor-11306 .elementor-element.elementor-element-9e2a814:after{
  content: none !important;
}