@charset "UTF-8";
/* stylelint-disable CssSyntaxError */
/* =============================*/
/* ベース設定*/
/* =============================*/
/* Colors: */
/* stylelisnt-disable-next-line CssSyntaxError */
/* font: */
:root {
  --ff-base: "Noto Serif JP", sans-serif;
  --ff-accent: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --fs-base: 16px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-h2: 40px;
  /*下層ヘッダー*/
  --fs-h3: 36px;
  /*下層セクション見出し大*/
  --fs-h4: 24px;
  /*下層セクション見出し小*/
}
@media screen and (max-width: 960px) {
  :root {
    --fs-h2: 24px;
    /*下層ヘッダー*/
    --fs-h3: 20px;
    /*下層セクション見出し大*/
    --fs-h4: 20px;
    /*下層セクション見出し小*/
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html.menu-open {
  overflow: hidden;
  touch-action: none;
  /* スマホの慣性スクロールも防止 */
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  letter-spacing: 0.1em;
  background: #ffffff;
}
body pre {
  font-family: inherit;
}
body.menu-open {
  overflow: hidden;
  touch-action: none;
  /* スマホの慣性スクロールも防止 */
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7 !important;
  }
}

ul,
ol {
  list-style: auto;
}

.fadeIn-up {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fadeIn-up.transition01 {
  transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fadeIn-up.transition02 {
  transition: 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fadeIn-up.transition03 {
  transition: 4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* =============================*/
/* ヘッダー*/
/* =============================*/
.header {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 82px;
  font-family: var(--ff-accent);
  font-size: var(--fs-m);
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.header--scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
.header__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .header__inner {
    padding: 0 24px;
  }
}
.header__logo {
  display: flex;
  gap: 9px;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .header__logo {
    gap: 5px;
  }
}
.header__logo--icon {
  height: 60px;
}
@media screen and (max-width: 960px) {
  .header__logo--icon {
    height: 45px;
    margin-top: 4px;
  }
}
.header__logo--logo {
  height: 34px;
}
@media screen and (max-width: 960px) {
  .header__logo--logo {
    height: 29px;
  }
}
.header__first-visit-btn {
  display: inline-block;
  width: 230px;
  height: 40px;
  font-family: var(--ff-accent);
  font-weight: 500;
  line-height: 38px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
  background: #87d4b9;
  border: 1px solid #87d4b9;
  border-radius: 24px;
  transition: background 0.2s;
}
@media (any-hover: hover) {
  .header__first-visit-btn:hover {
    color: #87d4b9;
    background: #ffffff;
    border: 1px solid;
    opacity: 1;
  }
}
@media screen and (max-width: 720px) {
  .header__first-visit-btn {
    display: none;
  }
}
.header__nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__nav-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-list-sp {
  display: none;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .header__nav-list-sp {
    position: fixed;
    top: 82px;
    right: 0;
    z-index: 9999;
    display: block;
    width: 50%;
    height: 90vh;
    max-height: 100vh;
    /* iOSで慣性スクロール */
    padding: 94px 36px 26px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
    /* 画面の70%まで表示、必要に応じて調整 */
    overflow-y: auto;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.9490196078);
    border-radius: 0 0 20px 20px;
    opacity: 0;
    transition: opacity 0.2s linear;
    /* 縦方向にスクロール可能に */
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 1200px) and (max-width: 960px) {
  .header__nav-list-sp {
    top: 52px;
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-list-sp.is-open {
    pointer-events: auto;
    opacity: 1;
  }
}
.header__nav-list-sp .header__nav-item {
  border-top: 1px solid rgba(229, 229, 229, 0.5);
}
.header__nav-link {
  display: block;
  padding: 19px 10px 18px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
}
@media (any-hover: hover) {
  .header__nav-link:hover {
    color: #87d4b9;
    opacity: 1;
    transition: 0.2s;
  }
}
@media (any-hover: hover) {
  .header__nav-link.is-parent:hover {
    color: inherit;
  }
}
@media screen and (max-width: 960px) {
  .header {
    height: 52px;
  }
}
.header__nav-link-en {
  margin-left: 10px;
  font-family: var(--ff-accent);
  font-size: 14px;
  line-height: 14px;
  color: #87d4b9;
  text-transform: lowercase;
}
.header__sub-nav-sp {
  padding: 0 0 14px 20px;
  font-size: 14px;
  font-weight: 400;
  list-style: none;
}
.header__sub-nav-sp-link {
  display: block;
  margin-bottom: 9px;
}
.header__sub-nav-sp-link::before {
  content: "- ";
}
@media (any-hover: hover) {
  .header__sub-nav-sp-link:hover {
    color: #7f8cc9;
  }
}
.header__nav-item--has-sub {
  position: relative;
}
@media (any-hover: hover) {
  .header__nav-item--has-sub:hover .header__sub-nav {
    display: block;
  }
}

.header__nav-item--has-sub {
  position: relative;
}
.header__nav-item--has-sub .header__sub-nav {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  visibility: hidden;
  min-width: 200px;
  padding: 0.5em 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #88d4b9;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.header__nav-item--has-sub:hover .header__sub-nav, .header__nav-item--has-sub:focus-within .header__sub-nav,
.header__nav-item--has-sub .header__sub-nav:hover,
.header__nav-item--has-sub .header__sub-nav:focus-within {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.header__sub-nav-item {
  list-style: none;
}
.header__sub-nav-link {
  display: block;
  padding: 0.7em 1.5em;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.header__sub-nav-link:hover {
  color: #5cbb9a;
  background: rgba(223, 243, 236, 0.5);
  opacity: 1;
}

.fadeIn-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1200px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 42px;
    height: 34px;
    padding: 0;
    cursor: pointer;
  }
}
.hamburger__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.hamburger__text {
  white-space: nowrap;
}
.hamburger__border {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #333333;
  transition: all 0.4s;
}
.hamburger__border:nth-of-type(1) {
  top: 10%;
}
.hamburger__border:nth-of-type(2) {
  top: 50%;
}
.hamburger__border:nth-of-type(3) {
  bottom: 10%;
}
.hamburger__text {
  line-height: 1;
}
.hamburger__text--open {
  display: block;
}
.hamburger__text--close {
  display: none;
}
.hamburger.is-open .hamburger__border:nth-of-type(1) {
  transform: translateY(8px) rotate(20deg);
}
.hamburger.is-open .hamburger__border:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__border:nth-of-type(3) {
  transform: translateY(-6px) rotate(-20deg);
}
.hamburger.is-open .hamburger__text--open {
  display: none;
}
.hamburger.is-open .hamburger__text--close {
  display: block;
}

/* =============================*/
/* topに戻るボタン*/
/* =============================*/
.to-top-btn {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-accent);
  color: #5cbb9a;
  letter-spacing: 0.02em;
  pointer-events: none;
  border: none;
  border-radius: 100px 100px 0 0;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 960px) {
  .to-top-btn {
    right: 5px;
    bottom: 20px;
    font-size: 12px;
    font-weight: 600;
  }
}
.to-top-btn img {
  width: 80px;
}
@media screen and (max-width: 960px) {
  .to-top-btn img {
    width: 40px;
  }
}
.to-top-btn.is-show {
  visibility: visible;
  pointer-events: auto;
  opacity: 0.95;
}
@media (any-hover: hover) {
  .to-top-btn:hover {
    opacity: 0.7;
  }
}

/* =============================*/
/* 背景*/
/* =============================*/
.body__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.body__inner::before {
  position: absolute;
  top: 695px;
  left: -500px;
  z-index: -1;
  width: 1247px;
  height: 1247px;
  content: "";
  background-color: #dff3ec;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .body__inner::before {
    top: 1080px;
    left: -280px;
    width: 570px;
    height: 570px;
  }
}
.body__inner::after {
  position: absolute;
  top: -660px;
  right: -500px;
  z-index: -1;
  width: 1247px;
  height: 1247px;
  content: "";
  background-color: #e0e4f2;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .body__inner::after {
    top: 370px;
    right: -320px;
    width: 570px;
    height: 570px;
  }
}

/* =============================*/
/* パンくずリスト*/
/* =============================*/
.breadcrumb {
  width: 95.5vw;
  padding: 20px 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .breadcrumb {
    max-width: clamp(290px, 95vw, 800px);
    padding: 15px 0 0;
  }
}
@media screen and (max-width: 720px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: right;
  font-family: var(--ff-accent);
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 960px) {
  .breadcrumb__list {
    font-size: 12px;
  }
}
.breadcrumb__item {
  position: relative;
}
.breadcrumb__item:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 960px) {
  .breadcrumb__item:not(:last-child) {
    margin-right: 15px;
  }
}
.breadcrumb__item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  color: #ccc;
  content: ">";
  transform: translateY(-50%);
}
.breadcrumb__item a {
  color: #666;
  text-decoration: none;
}
@media (any-hover: hover) {
  .breadcrumb__item a:hover {
    color: #87d4b9;
  }
}

.breadcrumb-sp {
  display: none;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .breadcrumb-sp {
    display: block;
    max-width: clamp(290px, 98vw, 800px);
    margin: 0 auto;
    font-size: 10px;
  }
}

/* =============================*/
/* ページタイトル*/
/* =============================*/
.page-header {
  position: relative;
  height: 286px;
}
@media screen and (max-width: 960px) {
  .page-header {
    height: 123px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 720px) {
  .page-header {
    height: 90px;
  }
}
.page-header::after {
  position: absolute;
  bottom: 0;
  left: -680px;
  z-index: -1;
  width: 1719px;
  height: 1373px;
  content: "";
  background-color: #e5e4ef;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .page-header::after {
    left: -200px;
    width: 570px;
    height: 570px;
  }
}

.page-title-box {
  margin: 60px 120px 30px;
  font-size: var(--fs-h2);
}
@media screen and (max-width: 960px) {
  .page-title-box {
    margin: 0 5%;
  }
}
.page-title-box__deco {
  margin-bottom: 8px;
  margin-left: 73px;
  font-size: 26px;
  color: #7f8cc9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .page-title-box__deco {
    font-size: 12px;
  }
}
.page-title-box__title {
  margin-bottom: 8px;
  font-size: var(--fs-h2);
  font-weight: 400;
  letter-spacing: 0.2em;
}
.page-title-box__breadcrumb {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #888;
}

/* =============================*/
/* セクション共通*/
/* =============================*/
.section-inner {
  max-width: clamp(800px, 89.5vw, 1200px);
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .section-inner {
    max-width: clamp(290px, 93vw, 800px);
  }
}

.section-title,
h3.wp-block-heading {
  position: relative;
  padding-left: 0.2em;
  margin: 0 auto 32px;
  margin-top: 90px;
  margin-bottom: 32px;
  font-size: var(--fs-h4);
  text-align: center;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 960px) {
  .section-title,
  h3.wp-block-heading {
    margin-top: 15px;
  }
}
.section-title::after,
h3.wp-block-heading::after {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 50px;
  height: 50px;
  content: "";
  background: #87d4b9;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .section-title::after,
  h3.wp-block-heading::after {
    width: 35px;
    height: 35px;
  }
}
.section-title--left,
h3.wp-block-heading--left {
  margin-left: 25px;
  text-align: left;
}
.section-title--left::after,
h3.wp-block-heading--left::after {
  left: 0;
}
.section-title--large,
h3.wp-block-heading--large {
  margin-bottom: 66px;
  font-size: var(--fs-h3);
}
.section-title--large::after,
h3.wp-block-heading--large::after {
  width: 78px;
  height: 78px;
}
@media screen and (max-width: 960px) {
  .section-title--large,
  h3.wp-block-heading--large {
    margin-bottom: 35px;
  }
  .section-title--large::after,
  h3.wp-block-heading--large::after {
    width: 50px;
    height: 50px;
  }
}
.section-title--purple::after,
h3.wp-block-heading--purple::after {
  background-color: #e5e4ef;
}
.section-title__under-bar,
h3.wp-block-heading__under-bar {
  position: relative;
  display: block;
  margin-bottom: 1em;
}
.section-title__under-bar::before,
h3.wp-block-heading__under-bar::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  display: inline-block;
  width: 118px;
  height: 2px;
  content: "";
  background-color: #333333;
  border-radius: 2px;
  transform: translateX(-50%);
}
.section-title__under-bar--pink::before,
h3.wp-block-heading__under-bar--pink::before {
  background-color: #eddbda;
}
.section-title__under-bar--green::before,
h3.wp-block-heading__under-bar--green::before {
  background-color: #87d4b9;
}

.link-box__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding-left: 0.01em;
  font-family: var(--ff-accent);
  font-size: var(--fs-16);
  line-height: 60px;
  text-align: center;
  letter-spacing: 0.01em;
  background-color: #fff;
  border-radius: 3px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.5s;
}
.link-box__link::after {
  position: absolute;
  right: 3%;
  width: 2em;
  height: 0.5em;
  content: "";
  background-color: #333333;
  -webkit-clip-path: polygon(0 45%, 74% 45%, 74% 0, 100% 49%, 74% 100%, 74% 55%, 0 55%);
          clip-path: polygon(0 45%, 74% 45%, 74% 0, 100% 49%, 74% 100%, 74% 55%, 0 55%);
  transform: translateY(20%);
  transform-origin: left;
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  .link-box__link:hover::after {
    background-color: #fff;
    transform: translateX(4px);
  }
}
.link-box__link--green {
  color: #5cbb9a;
  border: 1px solid #87d4b9;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.link-box__link--green::after {
  background-color: #87d4b9;
}
@media (any-hover: hover) {
  .link-box__link--green:hover {
    color: #fff;
    background-color: #87d4b9;
  }
}
.link-box__link--inversion-green {
  color: #fff;
  border: 1px solid #5cbb9a;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.link-box__link--inversion-green::after {
  background-color: #fff;
}
@media (any-hover: hover) {
  .link-box__link--inversion-green:hover {
    color: #5cbb9a;
    background-color: #fff;
  }
  .link-box__link--inversion-green:hover::after {
    background-color: #5cbb9a;
  }
}
.link-box__link--purple {
  color: #7f8cc9;
  border: 1px solid #97a2d2;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.link-box__link--purple::after {
  background-color: #97a2d2;
}
@media (any-hover: hover) {
  .link-box__link--purple:hover {
    color: #fff;
    background-color: #97a2d2;
  }
}

.list {
  list-style-type: "● ";
}
.list__item {
  margin-left: 1.5em;
}
.list__item::marker {
  font-size: 0.8rem;
  color: #87d4b9;
}
.list__item--purple::marker {
  color: #e5e4ef;
}

.page-section-note {
  max-width: clamp(200px, 95%, 1000px);
  margin: 4px auto;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .page-section-note {
    width: 100%;
    text-align: left;
  }
}

.content-bg__green {
  background-color: #dff3ec;
}
.content-bg__purple {
  background-color: #e5e4ef;
}

.text-content {
  max-width: clamp(340px, 95%, 1000px);
}
.text-content__title {
  height: 71px;
  font-size: var(--fs-16);
  line-height: 71px;
  text-align: center;
}
.text-content__text {
  padding: 20px 2%;
  margin-top: 8px;
}

.time-calendar {
  margin: 90px auto;
  scroll-margin-top: 10vh;
}
@media screen and (max-width: 960px) {
  .time-calendar {
    margin: 60px auto;
  }
}
.time-calendar__inner {
  padding: 30px 0;
  background-color: #dff3ec;
}
.time-calendar__title {
  margin-bottom: 20px;
  font-size: 25px;
  color: #5cbb9a;
}
.time-calendar__content {
  display: flex;
  gap: 5%;
  justify-content: center;
  max-width: none;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .time-calendar__content {
    flex-direction: column;
    row-gap: 50px;
    width: 95%;
  }
}
.time-calendar__content-right {
  flex-shrink: 0;
  width: 435px;
}
@media screen and (max-width: 960px) {
  .time-calendar__content-right {
    width: 100%;
  }
}
.time-calendar__tel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  align-items: center;
  justify-content: center;
  margin: 28px auto;
  font-size: 35px;
  color: #5cbb9a;
}
.time-calendar__tel-label {
  font-size: 24px;
}
.time-calendar__reserve {
  display: inline-block;
  padding: 3.5px 12px;
  font-size: 18px;
  background-color: #fff;
  border: 1px solid #5cbb9a;
  border-radius: 2px;
}
.time-calendar__caution {
  font-family: var(--ff-accent);
  font-size: var(--fs-16);
  text-decoration-line: underline;
}
.time-calendar__first-visit-btn {
  display: flex;
  width: 268px;
  margin: 28px auto 0;
  font-size: var(--fs-16);
  color: #fff;
  background-color: #5cbb9a;
}
@media (any-hover: hover) {
  .time-calendar__first-visit-btn:hover {
    color: #5cbb9a;
    background-color: #fff;
    border: 1px solid #5cbb9a;
    opacity: 1;
  }
}
.time-calendar__calendar img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.time-calendar__caption {
  font-family: var(--ff-accent);
  font-size: var(--fs-16);
}
.time-calendar__caption-link {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .time-calendar__caption-link:hover {
    color: #5cbb9a;
    opacity: 1;
  }
}

.info-box__time-table-box {
  padding: 12px;
  font-family: var(--ff-accent);
  background-color: rgba(255, 255, 255, 0.85);
}
.info-box__tel-box {
  display: flex;
  gap: 3px;
  justify-content: flex-end;
}
.info-box__tel {
  font-size: 24px;
  letter-spacing: 0;
}
.info-box__tel span {
  font-size: 16px;
}
.info-box__reserve {
  height: 31px;
  padding: 3px 12px;
  font-size: var(--fs-16);
  vertical-align: middle;
  letter-spacing: 0em;
  border: 1px solid #333333;
  border-radius: 2px;
}
.info-box__time-table-text {
  margin-top: 4px;
  font-family: var(--ff-accent);
}
.info-box__time-table-caption-link {
  color: #f59bb3;
  text-decoration: underline;
}

.time-table {
  display: table;
  padding: 5px;
  font-size: 14px;
  line-height: 14px;
  color: #333333;
  border-collapse: collapse;
}
.time-table th,
.time-table td {
  height: 45px;
  padding: 0;
  /* 横方向中央 */
  vertical-align: middle;
  text-align: center;
  /* 縦方向中央 */
  white-space: nowrap;
  border-bottom: 1px solid #d2d2d2;
}
.time-table td {
  width: 100%;
  min-width: 35px;
  max-width: 5%;
}
@media screen and (max-width: 960px) {
  .time-table td {
    width: 100%;
    min-width: auto;
    max-width: 5%;
    font-size: 14px;
  }
  .time-table th,
  .time-table td {
    min-width: 29px;
    padding: 0;
    white-space: nowrap;
  }
}
.time-table__time-span {
  font-size: 10px;
}

/* =============================*/
/* 固定ページ用*/
/* =============================*/
.wp-block-group {
  background-color: #dff3ec;
}
.wp-block-group__inner-container {
  max-width: 880px;
  margin: 5px auto;
}
.wp-block-group__inner-container > * {
  width: 100%;
  min-height: 62px;
  padding: 20px 20px;
}

.wp-block-list li {
  margin-left: 2em;
}

.wp-block-media-text {
  row-gap: 30px;
}

h3.page__heading--no-circle::after {
  all: unset;
}

.page__content {
  max-width: 1000px;
  margin: 5px auto;
}
.page__text--hight {
  line-height: 2;
}
.page__img-radius {
  border-radius: 20px;
}
.page img {
  border-radius: 20px;
}

/* =============================*/
/* TOPページ*/
/* =============================*/
.main {
  padding-top: 85px;
}
@media screen and (max-width: 960px) {
  .main {
    padding-top: 61px;
  }
}

@media screen and (max-width: 960px) {
  .home-section-title-box {
    margin: 0 20px;
  }
}
.home-section-title-box__deco {
  padding: 0 7px;
  font-size: 18px;
  line-height: 1.85;
  text-transform: uppercase;
}
.home-section-title-box__deco--green {
  color: #5cbb9a;
}
.home-section-title-box__deco--purple {
  color: #7f8cc9;
}
.home-section-title-box__title {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.3em;
}

.home-section-img {
  width: 100%;
  max-height: 442px;
  aspect-ratio: 3/2;
  border-radius: 40px;
}
.home-section-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media screen and (max-width: 960px) {
  .home-section-img img {
    border-radius: 30px;
  }
}

.home-section-content {
  max-width: clamp(800px, 95%, 1000px);
}

.main-visual {
  position: relative;
  width: 89.5%;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-visual.is-show {
  opacity: 1;
}
.main-visual__img-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 573px;
  aspect-ratio: 18/9;
  overflow: hidden;
  background-image: url("../img/FV.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .main-visual__img-box {
    min-height: 420px;
  }
}
@media screen and (max-width: 428px) {
  .main-visual__img-box {
    height: 100%;
    min-height: 455px;
    max-height: 477px;
    background-image: url("../img/FVSP.webp");
    background-position: right;
  }
}
.main-visual__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
  will-change: transform;
  will-change: transform;
}
.main-visual__catch {
  position: absolute;
  top: 5%;
  left: 50%;
  z-index: 10;
  width: 100%;
  padding-left: 0.2em;
  font-family: var(--ff-accent);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.2em;
  text-shadow: 0px 0px 2px #ffffff;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .main-visual__catch {
    font-size: 16px;
  }
}
@media screen and (max-width: 960px) {
  .main-visual__catch {
    font-size: 12px;
  }
}
.main-visual__info-box {
  position: absolute;
  bottom: 16px;
  left: 29px;
  z-index: 10;
  gap: 10px;
  width: 447px;
  padding: 19px 10px;
}
@media screen and (max-width: 960px) {
  .main-visual__info-box {
    position: relative;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    background-color: #dff3ec;
  }
}
.main-visual__time-table-box {
  padding: 1%;
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .main-visual__tel-box {
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: #5cbb9a;
  }
}
.main-visual__time-table-caption {
  padding: 0 3%;
}
.main-visual__reserve {
  font-size: 14px;
  border-color: #333333;
}
@media screen and (max-width: 960px) {
  .main-visual__reserve {
    border-color: #5cbb9a;
  }
}
.main-visual__first-visit-btn {
  margin: 30px auto 0;
}

.top-news {
  margin-top: 68px;
}
@media screen and (max-width: 960px) {
  .top-news {
    width: 96%;
    padding: 0 20px;
    margin: 37px auto 0;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
  }
}
.top-news__grid {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 160px 1fr;
  row-gap: 8px;
  -moz-column-gap: 67px;
  column-gap: 67px;
  max-width: 1080px;
  padding: 18px 39px 26px 0;
  margin: 18px auto;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 40px;
}
@media screen and (max-width: 960px) {
  .top-news__grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-row-gap: 12px;
    grid-column-gap: 0px;
    padding: 0;
    background-color: transparent;
  }
}
.top-news__grid > :first-child {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 960px) {
  .top-news__grid > :first-child {
    grid-area: 1/1/2/2;
  }
}
.top-news__grid > :nth-child(2) {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 960px) {
  .top-news__grid > :nth-child(2) {
    grid-area: 2/1/3/2;
  }
}
.top-news__grid > :nth-child(3) {
  grid-area: 2/1/3/2;
}
@media screen and (max-width: 960px) {
  .top-news__grid > :nth-child(3) {
    grid-area: 3/1/4/2;
  }
}
.top-news__item {
  display: flex;
  padding: 15px 12px;
  border-bottom: 1px dotted #cccccc;
}
@media screen and (max-width: 960px) {
  .top-news__item {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 0px;
    grid-column-gap: 0px;
    align-items: center;
    padding: 15px 10px;
  }
}
.top-news__date {
  margin-right: 21px;
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .top-news__date {
    grid-area: 1/1/2/2;
    margin-right: 0;
  }
}
.top-news__category {
  display: inline-block;
  width: 100px;
  height: 1.5em;
  padding: 0 13px;
  margin-right: 21px;
  font-size: 12px;
  line-height: 17px;
  color: #fff;
  text-align: center;
  border-radius: 999px;
}
@media screen and (max-width: 960px) {
  .top-news__category {
    grid-area: 1/2/2/3;
    justify-self: end;
    margin-right: 0;
  }
}
.top-news__category--purple {
  background-color: #97a2d2;
}
.top-news__category--green {
  background-color: #87d4b9;
}
@media screen and (max-width: 960px) {
  .top-news__headline {
    grid-area: 2/1/3/3;
  }
}
.top-news__more {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 0;
}
.top-news__more::after {
  all: initial;
}
@media screen and (max-width: 960px) {
  .top-news__more {
    justify-self: center;
    width: 155px;
    font-size: 14px;
  }
}

.top-about {
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .top-about {
    margin-top: 60px;
  }
}
.top-about__grid {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 373px 1fr;
  row-gap: 8px;
  -moz-column-gap: 45px;
       column-gap: 45px;
  max-width: 1080px;
  margin: 0 auto;
}
.top-about__grid > :first-child {
  grid-area: 1/1/2/2;
}
.top-about__grid > :nth-child(2) {
  grid-area: 1/2/4/3;
}
.top-about__grid > :nth-child(3) {
  grid-area: 2/1/3/2;
}
.top-about__grid > :nth-child(4) {
  grid-area: 3/1/4/2;
}
@media screen and (max-width: 960px) {
  .top-about__grid {
    grid-template-columns: 1fr;
  }
  .top-about__grid > * {
    grid-area: auto !important;
  }
}
.top-about__text {
  font-size: var(--fs-16);
  line-height: 2.09;
}
.top-about__btn {
  justify-self: center;
  width: 240px;
}
@media screen and (max-width: 960px) {
  .top-about__btn {
    margin-top: 20px;
  }
}

.top-guidance {
  margin-top: 140px;
}
@media screen and (max-width: 960px) {
  .top-guidance {
    margin-top: 80px;
  }
}
.top-guidance__grid {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 373px;
  row-gap: 8px;
  -moz-column-gap: 45px;
       column-gap: 45px;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.top-guidance__grid > :first-child {
  grid-area: 1/2/2/3;
}
.top-guidance__grid > :nth-child(2) {
  grid-area: 1/1/4/2;
}
.top-guidance__grid > :nth-child(3) {
  grid-area: 2/2/3/3;
}
.top-guidance__grid > :nth-child(4) {
  grid-area: 3/2/4/3;
}
@media screen and (max-width: 960px) {
  .top-guidance__grid {
    grid-template-columns: 1fr;
  }
  .top-guidance__grid > * {
    grid-area: auto !important;
  }
}
@media screen and (max-width: 960px) {
  .top-guidance__title-box {
    text-align: right;
  }
}
.top-guidance__title {
  margin-right: -0.3em;
}
.top-guidance__text {
  font-size: var(--fs-16);
  line-height: 2.09;
}
.top-guidance__list-item {
  position: relative;
  padding: 10px 0 10px 1.5em;
  font-size: 18px;
  line-height: 1.5;
  list-style: none;
  border-bottom: 1px dotted #87d4b9;
}
.top-guidance__list-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 15px;
  color: #87d4b9;
  content: "●";
  transform: translateY(-50%);
}
.top-guidance__btn {
  justify-self: center;
  width: 240px;
}
@media screen and (max-width: 960px) {
  .top-guidance__btn {
    margin-top: 20px;
  }
}

.top-access {
  margin-top: 130px;
}
@media screen and (max-width: 960px) {
  .top-access {
    margin-top: 70px;
  }
}
.top-access .section-inner {
  padding: 31px 0 75px;
  background-color: #fff2f1;
}
@media screen and (max-width: 1200px) {
  .top-access .section-inner {
    padding: 31px 0;
  }
}
.top-access__title-box {
  text-align: center;
}
.top-access__content {
  display: flex;
  gap: 36px;
  margin: 21px auto;
}
@media screen and (max-width: 1200px) {
  .top-access__content {
    flex-direction: column;
    width: 95%;
  }
}
.top-access__map {
  width: 70%;
}
@media screen and (max-width: 1200px) {
  .top-access__map {
    width: 100%;
    height: 300px;
  }
}
.top-access__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .top-access__info {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-row-gap: 5%;
    grid-column-gap: 5%;
  }
}
@media screen and (max-width: 720px) {
  .top-access__info {
    grid-template-columns: 1fr;
  }
  .top-access__info > * {
    grid-area: auto !important;
  }
}
.top-access__img {
  height: 185px;
}
@media screen and (max-width: 1200px) {
  .top-access__img {
    grid-area: 1/1/4/2;
    height: 265px;
  }
}
@media screen and (max-width: 720px) {
  .top-access__img {
    display: none;
  }
}
.top-access__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-access__clinic-logo {
  margin-top: 24px;
}
.top-access__clinic-logo img {
  width: 100%;
  max-width: 290px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .top-access__clinic-logo {
    grid-area: 1/2/2/3;
  }
}
.top-access__text {
  margin-top: 15px;
  font-family: var(--ff-accent);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1440px) {
  .top-access__text {
    grid-area: 2/2/3/3;
    margin: 0;
  }
}
.top-access__detail-link-box {
  margin-top: 26px;
  font-family: var(--ff-accent);
  color: #97a2d2;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1440px) {
  .top-access__detail-link-box {
    grid-area: 3/2/4/3;
    margin: 0;
  }
}
.top-access__detail-link {
  width: 240px;
  margin: 0 auto;
  font-weight: 200;
}

/* =============================*/
/* お知らせ*/
/* =============================*/
.news {
  margin-bottom: 60px;
}
.news__list {
  margin: 60px auto;
  list-style: none;
}
@media screen and (max-width: 960px) {
  .news__list {
    margin: 30px auto;
  }
}
.news__item {
  position: relative;
  display: block;
  max-width: 880px;
  padding: 24px 0 30px;
  margin: 0 auto;
  scroll-margin-top: 30vh; /* スクロール時に上から30%の位置に */
  border-bottom: 1px dotted #87d4b9;
}
.news__item:first-child {
  border-top: 1px dotted #87d4b9;
}
.news__article {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  grid-row-gap: 18px;
  grid-column-gap: 11px;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .news__article {
    grid-template-columns: 94px auto;
    grid-row-gap: 0px;
    grid-column-gap: 11px;
  }
}
.news__date {
  grid-area: 1/1/2/2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 960px) {
  .news__date {
    grid-area: 1/1/2/2;
  }
}
.news__heading {
  grid-area: 1/2/2/3;
  font-size: var(--fs-18);
}
@media screen and (max-width: 960px) {
  .news__heading {
    grid-area: 1/2/3/3;
  }
}
.news__category {
  display: block;
  grid-area: 1/3/2/4;
  align-items: center;
  min-width: 80px;
  height: 1.6em;
  padding: 0 8px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background-color: #87d4b9;
  border-radius: 9px;
}
@media screen and (max-width: 960px) {
  .news__category {
    grid-area: 2/1/3/2;
    height: auto;
    margin-top: 5px;
  }
}
.news__category--green {
  background-color: #87d4b9;
}
.news__category--purple {
  background-color: #97a2d2;
}
.news__text {
  grid-area: 2/2/3/4;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 960px) {
  .news__text {
    grid-area: 3/1/4/3;
    margin-top: 15px;
  }
}
.news__pagination {
  font-size: var(--fs-16);
  text-align: center;
}
.news__pagination--curent {
  font-size: var(--fs-20);
}

/* =============================*/
/* 医院紹介 */
/* =============================*/
.about-intro {
  margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .about-intro {
    margin-top: 50px;
  }
}
.about-intro__title {
  margin-bottom: 16px;
  font-size: var(--fs-16);
  font-weight: bold;
}
.about-intro__content {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .about-intro__content {
    flex-direction: column;
    align-items: center;
  }
}
.about-intro__img {
  flex: 1 1 320px;
  min-width: 240px;
}
.about-intro__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border-radius: 25px;
}
@media screen and (max-width: 960px) {
  .about-intro__img {
    flex: auto;
  }
}
.about-intro__text {
  width: 50%;
  max-width: 584px;
  line-height: 2.7;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 960px) {
  .about-intro__text {
    width: 100%;
  }
}

.about-doctor {
  margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .about-doctor {
    margin-top: 83px;
  }
}
.about-doctor__head {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  grid-row-gap: 10px;
  grid-column-gap: 5%;
  align-items: center;
  max-width: clamp(800px, 90vw, 995px);
  margin: 0 auto 95px;
}
@media screen and (max-width: 960px) {
  .about-doctor__head {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    grid-column-gap: 0;
    justify-items: center;
    margin: 52px auto 54px;
  }
}
.about-doctor__head-title {
  grid-area: 1/2/2/3;
  font-size: 26px;
  color: #5cbb9a;
}
@media screen and (max-width: 960px) {
  .about-doctor__head-title {
    grid-area: auto;
    font-size: 20px;
    text-align: center;
  }
}
.about-doctor__comment-box {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 960px) {
  .about-doctor__comment-box {
    grid-area: auto;
    width: 90%;
  }
}
.about-doctor__comment {
  margin-bottom: 10px;
}
.about-doctor__img {
  grid-area: 1/1/5/2;
  height: 100%;
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .about-doctor__img {
    grid-area: auto;
  }
}
.about-doctor__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.about-doctor__name {
  margin-top: 10px;
  font-size: 24px;
}
.about-doctor__name-en {
  margin-left: 1em;
  font-size: var(--fs-16);
  text-transform: capitalize;
}
.about-doctor__profile-list {
  margin-top: 15px;
  font-family: var(--ff-accent);
  list-style: none;
}
.about-doctor__other {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 720px) {
  .about-doctor__other {
    padding-top: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.about-doctor__other-img {
  width: 40%;
  height: 100%;
  margin: 10px;
}
.about-doctor__other-img img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (max-width: 720px) {
  .about-doctor__other-img {
    position: relative;
    width: auto;
  }
}
.about-doctor__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 441px;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 1px solid #97a2d2;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(151, 162, 210, 0.15);
}
@media screen and (max-width: 720px) {
  .about-doctor__frame {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
  }
}
.about-doctor__text {
  width: 60%;
  margin: 0 6% 0 6%;
}
@media screen and (max-width: 720px) {
  .about-doctor__text {
    width: 90%;
    margin: 0;
  }
}
.about-doctor__other:nth-of-type(even) .about-doctor__frame {
  border-color: #97a2d2;
  box-shadow: 0 2px 8px rgba(151, 162, 210, 0.35);
}
.about-doctor__other:nth-of-type(odd) .about-doctor__frame {
  margin-left: auto;
  border-color: #87d4b9;
  box-shadow: 0 2px 8px rgba(135, 212, 185, 0.35);
}
.about-scene {
  margin-top: 120px;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .about-scene {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.about-scene__images-wrapper {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 18px;
  grid-column-gap: 20px;
}
@media screen and (max-width: 960px) {
  .about-scene__images-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.about-scene__images-wrapper > :first-child {
  grid-area: 1/2/3/3;
  aspect-ratio: 490/581;
}
@media screen and (max-width: 960px) {
  .about-scene__images-wrapper > :first-child {
    grid-area: auto;
  }
}
.about-scene__images-wrapper > :nth-child(2) {
  grid-area: 3/2/4/3;
  aspect-ratio: 490/322;
}
@media screen and (max-width: 960px) {
  .about-scene__images-wrapper > :nth-child(2) {
    grid-area: auto;
  }
}
.about-scene__images-wrapper > :nth-child(3) {
  grid-area: 3/1/4/2;
  aspect-ratio: 490/322;
}
@media screen and (max-width: 960px) {
  .about-scene__images-wrapper > :nth-child(3) {
    grid-area: auto;
  }
}
.about-scene__images-wrapper > :nth-child(4) {
  grid-area: 2/1/3/2;
}
@media screen and (max-width: 960px) {
  .about-scene__images-wrapper > :nth-child(4) {
    grid-area: auto;
  }
}
.about-scene__images-wrapper > :nth-child(5) {
  grid-area: 1/1/2/2;
}
@media screen and (max-width: 960px) {
  .about-scene__images-wrapper > :nth-child(5) {
    grid-area: auto;
  }
}
.about-scene__images {
  width: 100%;
}
.about-scene__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-scene__message {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.about-scene__message-icon {
  max-width: 130px;
}
.about-scene__message-icon img {
  width: 100%;
  height: 100%;
}
.about-scene__message-text {
  font-size: var(--fs-20);
  color: #5cbb9a;
}

/* =============================*/
/* 治療案内 共通リスト*/
/* =============================*/
.wbr {
  word-break: normal;
  overflow-wrap: normal;
}

.guidance-list__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 1%;
       column-gap: 1%;
  justify-content: center;
  margin: 38px auto 60px;
  list-style: none;
}
@media screen and (max-width: 720px) {
  .guidance-list__list {
    margin-top: 13px;
  }
}
.guidance-list__list-item {
  width: 23.5%;
  border: 1px solid #fedde6;
  border-radius: 3px;
}
@media screen and (max-width: 960px) {
  .guidance-list__list-item {
    width: 48%;
  }
}
.guidance-list__list-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-family: var(--ff-accent);
  font-size: var(--fs-18);
  vertical-align: middle;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 960px) {
  .guidance-list__list-link {
    font-size: 14px;
  }
}
.guidance-list__list-link--current {
  background-color: #fedde6;
}

/* =============================*/
/* 治療の流れ・期間の目安*/
/* =============================*/
.flow-step {
  margin: 90px auto 0 auto;
}
.flow-step__content {
  padding: 14px 0 60px;
}
.flow-step__list {
  max-width: clamp(300px, 90%, 800px);
  margin: 0 auto;
  list-style: none;
  counter-reset: step;
}
.flow-step__list-item {
  position: relative;
  z-index: 10;
  min-height: 170px;
  padding: 20px 20px 25px 43px;
  margin-top: 46px;
  counter-increment: step;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .flow-step__list-item {
    padding: 20px 30px;
    margin-top: 80px;
  }
}
.flow-step__list-item::before {
  position: absolute;
  top: 50%;
  left: -39px;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  font-size: 36px;
  font-weight: 100;
  color: #87d4b9;
  content: counter(step);
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .flow-step__list-item::before {
    top: 0;
    left: 50%;
    align-items: baseline;
    font-size: 28px;
    transform: translate(-50%, -50%);
  }
}
.flow-step__list-item::after {
  position: absolute;
  bottom: -31px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 17px solid #87d4b9;
  border-right: 34px solid transparent;
  border-left: 34px solid transparent;
  border-radius: 4px;
  transform: translateX(-50%);
}
.flow-step__list-item:last-child::after {
  display: none;
}
.flow-step__list-title-box {
  display: flex;
  gap: 30px;
  align-items: center;
}
.flow-step__list-title {
  display: flex;
  align-items: center;
  font-size: var(--fs-20);
}
.flow-step__list-title a {
  white-space: nowrap;
}
.flow-step__list-title-btn {
  display: block;
  width: 168px;
  height: 23px;
  padding: 0 16px;
  font-family: var(--ff-accent);
  font-size: 12px;
  line-height: 23px;
  color: #fff;
  background-color: #87d4b9;
  border-radius: 2px;
}
.flow-step__list-title-btn--sp {
  display: none;
  margin: 10px auto 0;
}
@media screen and (max-width: 960px) {
  .flow-step__list-title-btn {
    display: none;
  }
  .flow-step__list-title-btn--sp {
    display: block;
  }
}
.flow-step__list-text {
  margin-top: 10px;
}
.flow-step__caption {
  width: 90%;
  max-width: 880px;
  margin: 30px auto 0;
}

.flow-period {
  margin-top: 100px;
  margin-bottom: 46px;
}
.flow-period__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 0 50px;
}
.flow-period__content-card {
  max-width: clamp(300px, 90%, 880px);
  padding: 20px 3%;
  margin: 0 auto;
  background-color: #fff;
}
.flow-period__content-title {
  font-size: var(--fs-18);
  color: #7f8cc9;
}
.flow-period__content-text {
  margin-top: 10px;
}

/* =============================*/
/* 料金・*/
/* =============================*/
.price-free__title,
.price-deduction__title,
.price-insurance__title {
  margin-top: 70px;
}

@media screen and (max-width: 960px) {
  .price-insurance__content-title {
    position: relative;
    cursor: pointer;
  }
  .price-insurance__content-title::before {
    position: absolute;
    top: 83%;
    bottom: 0;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: auto;
    content: "";
    background: #5cbb9a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .price-insurance__content-title::after {
    position: absolute;
    top: 73%;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    margin: auto;
    content: "";
    border-color: #fff transparent transparent transparent;
    border-style: solid;
    border-width: 9px 5px 0px 5px;
    transform: translate(-50%, -50%);
    transition: transform 0.5s ease;
  }
  .price-insurance__content-title.is-open::after {
    transform: translate(-50%, -73%) rotate(-180deg);
  }
}
.price-insurance__content-list {
  -moz-column-gap: 2em;
       column-gap: 2em;
  padding-left: 0;
  margin: 0;
  list-style: auto;
  list-style-position: inside;
  -moz-column-count: 2;
       column-count: 2;
}
.price-insurance__content-text {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 2em;
       column-gap: 2em;
  -moz-column-fill: balance;
       column-fill: balance;
}
@media screen and (max-width: 960px) {
  .price-insurance__content-text {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.price-insurance__content-list-item {
  margin-left: 32px;
  font-size: 12px;
  line-height: 1.6;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.price-free__content-box {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .price-free__content-box {
    width: 100%;
  }
}

.price-free__table {
  max-width: 930px;
  margin: 32px auto 0;
  font-size: var(--fs-16);
  border-collapse: collapse;
}
@media screen and (max-width: 960px) {
  .price-free__table tr {
    border: 1px solid #87d4b9;
  }
}

.price-free__label {
  padding: 12px;
  font-size: var(--fs-16);
  font-weight: 400;
  vertical-align: baseline;
  background-color: #dff3ec;
  border: 1px solid #87d4b9;
}
.price-free__label--rowspan {
  vertical-align: top;
}
@media screen and (max-width: 960px) {
  .price-free__label--rowspan {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-weight: bold;
    background-color: #dff3ec;
    border-bottom: 1px solid #87d4b9;
  }
}

.price-free__device-title {
  width: 60%;
  padding: 12px;
  font-family: var(--ff-accent);
  font-weight: 400;
  vertical-align: middle;
  border: 1px solid #87d4b9;
}
@media screen and (max-width: 960px) {
  .price-free__device-title {
    width: 61%;
  }
}

.price-free__fee {
  width: 25%;
  padding: 3px;
  font-weight: 400;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #87d4b9;
}
@media screen and (max-width: 960px) {
  .price-free__fee {
    width: 100%;
  }
}

.price-free__table-caption {
  width: 90%;
  max-width: 930px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .price-free__table-caption {
    width: 100%;
  }
}

/* =============================*/
/* 一般的なリスク*/
/* =============================*/
.risk-notion {
  margin: 60px 0;
}
.risk-notion__content-list {
  width: 80%;
  margin: 0 auto;
  list-style: auto;
}

/* =============================*/
/* 臨床研究*/
/* =============================*/
.research-notion__content-text img {
  display: block;
  width: 100%;
  max-width: 755px;
  height: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* =============================*/
/* アクセス・診療時間*/
/* =============================*/
.access-section {
  margin-bottom: 40px;
}

.access-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 50px;
}
.access-main__up {
  display: flex;
  gap: 26px;
  width: 100%;
}
@media screen and (max-width: 720px) {
  .access-main__up {
    flex-direction: column;
  }
}
.access-main__map {
  width: calc(100% - 367px);
}
@media screen and (max-width: 720px) {
  .access-main__map {
    width: 100%;
  }
}
.access-main__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
.access-main__photo-info {
  flex-shrink: 0;
  width: 341px;
}
.access-main__photo-info img {
  width: 100%;
}
@media screen and (max-width: 720px) {
  .access-main__photo-info {
    width: 100%;
  }
}
.access-main__info {
  margin-top: 8px;
  font-family: var(--ff-accent);
  font-size: 1.1rem;
}
.access-main__address {
  margin-top: 8px;
}
.access-main__row {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .access-main__row {
    flex-direction: column;
  }
}
.access-main__routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  width: 50%;
}
@media screen and (max-width: 720px) {
  .access-main__routes {
    width: 100%;
  }
}
.access-main__route-title {
  font-size: var(--fs-18);
  font-weight: 600;
  color: #5cbb9a;
}
.access-main__illustration {
  width: 50%;
}
@media screen and (max-width: 720px) {
  .access-main__illustration {
    width: 100%;
  }
}
.access-main__illustration img {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 720px) {
  .access-main {
    width: 100%;
  }
}

.access-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 24px;
  margin: 40px 0;
  background: #ffffff;
  border-radius: 12px;
}
.access-hours__table-area {
  flex: 2 1 400px;
}
.access-hours__title {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #87d4b9;
}
.access-hours__table {
  width: 100%;
  margin-bottom: 12px;
  border-collapse: collapse;
}
.access-hours__table th,
.access-hours__table td {
  padding: 8px 12px;
  text-align: center;
  border: 1px solid #87d4b9;
}
.access-hours__table th {
  color: #87d4b9;
  background: #eafaf7;
}
.access-hours__note {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #666;
}
.access-hours__tel-box {
  margin-top: 8px;
  font-size: 1.1rem;
}
.access-hours__tel-box .access-hours__tel {
  margin: 0 8px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #87d4b9;
}
.access-hours__tel-box .access-hours__reserve {
  padding: 2px 12px;
  margin-left: 8px;
  font-size: 0.95rem;
  color: #fff;
  background: #87d4b9;
  border-radius: 16px;
}
.access-hours__calendar-area {
  display: flex;
  flex: 1 1 240px;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.access-hours__calendar img {
  width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.access-hours__calendar-note {
  font-size: 0.95rem;
  color: #666;
  text-align: center;
}

.xo-event-calendar {
  font-family: var(--ff-accent);
  font-size: 15px;
  color: #333;
}
.xo-event-calendar table.xo-month button {
  text-align: center;
}

/* =============================*/
/* 初めて予約される方へ*/
/* =============================*/
.attention-section {
  margin-top: 60px;
}
.attention-section__inner {
  max-width: 960px;
  margin: 70px auto 0;
}
.attention-section__title {
  text-align: center;
}
.attention-section__list-item {
  margin-top: 24px;
}

.attention-info {
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 960px) {
  .attention-info {
    flex-direction: column;
    gap: 15px;
  }
}
.attention-info__text-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 70%;
}
@media screen and (max-width: 960px) {
  .attention-info__text-box {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .attention-info__title {
    margin-right: auto;
    margin-left: auto;
  }
}
.attention-info__desc, .attention-info__notes-list {
  list-style: none;
}
@media screen and (max-width: 960px) {
  .attention-info__desc, .attention-info__notes-list {
    display: inline-block;
    margin: 0 auto;
  }
}
.attention-info__tel-box {
  margin-right: auto;
  margin-left: auto;
}
.attention-info__notes-list-item {
  margin-top: 10px;
}
.attention-info__notes-list-item a {
  color: #f59bb3;
  text-decoration: underline;
}
.attention-info__img-box img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 720px) {
  .attention-info {
    flex-direction: column;
  }
}

/* =============================*/
/* ボタン*/
/* =============================*/
.button,
.access__first-visit-btn,
.reserve__first-visit-btn {
  display: inline-block;
  padding: 12px 32px;
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background: #87d4b9;
  border: none;
  border-radius: 24px;
  transition: background 0.2s;
}
@media (any-hover: hover) {
  .button:hover,
  .access__first-visit-btn:hover,
  .reserve__first-visit-btn:hover {
    background: #87d4b9;
    opacity: 1;
  }
}

.appliance__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.appliance__subtitle {
  margin-bottom: 15px;
  font-size: var(--fs-20);
  color: #5cbb9a;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .appliance__subtitle {
    font-size: var(--fs-18);
  }
}
.appliance__description {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: 14px;
}
.appliance__card {
  margin-bottom: 30px;
}
.appliance__card-header {
  padding: 22px;
  font-size: var(--fs-20);
  background-color: #dff3ec;
}
@media screen and (max-width: 960px) {
  .appliance__card-header {
    font-size: var(--fs-18);
  }
}
.appliance__card-content {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  padding: 20px;
}
@media screen and (max-width: 960px) {
  .appliance__card-content {
    flex-direction: column-reverse;
    gap: 23px;
    width: 100%;
    padding: 10px;
  }
}
.appliance__card-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .appliance__card-left {
    gap: 20px;
    width: 100%;
  }
}
.appliance__card-text-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.2em;
}
.appliance__card-text-area--bold {
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .appliance__card-text-area {
    line-height: 1.7;
    letter-spacing: 0.1em;
  }
}
.appliance__card-link {
  display: flex;
  width: 317px;
  height: 61px;
  padding: 0 60px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: var(--fs-16);
  line-height: 1.3;
  color: #fff;
  background-color: #87d4b9;
}
@media screen and (max-width: 960px) {
  .appliance__card-link {
    margin-top: 20px;
  }
}
.appliance__card-link::after {
  background-color: #fff;
}
@media (any-hover: hover) {
  .appliance__card-link:hover {
    color: #5cbb9a;
    background-color: #fff;
    border: 1px solid #5cbb9a;
    opacity: 1;
  }
  .appliance__card-link:hover::after {
    background-color: #5cbb9a;
  }
}
.appliance__card-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: auto;
  min-height: 90px;
  padding: 10px 20px 20px 20px;
  font-size: 12px;
  border: 1px solid #87d4b9;
  border-radius: 5px;
}
.appliance__card-features-list {
  list-style: none;
}
.appliance__card-right {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .appliance__card-right {
    width: 100%;
  }
}
.appliance__card-img {
  width: 100%;
  aspect-ratio: 5/3;
}
.appliance__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}

/* =============================*/
/* フッター*/
/* =============================*/
.footer {
  padding: 60px 0 31px 0;
  background: #b3e6d8;
}
.footer__inner {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 51px;
  align-items: flex-start;
  justify-content: flex-end;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
  }
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.footer__logo-img--nico {
  width: 122px;
  height: auto;
}
.footer__logo-img--name {
  width: 256px;
  height: auto;
}
.footer__nav {
  display: flex;
  gap: 30px;
  font-family: var(--ff-accent);
}
@media screen and (max-width: 960px) {
  .footer__nav {
    flex-direction: column;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  min-width: 220px;
  max-height: 210px;
  list-style: none;
}
@media screen and (max-width: 960px) {
  .footer__nav-list {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
.footer__nav-list ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  min-width: 220px;
  max-height: 210px;
  list-style: none;
  list-style: none;
}
@media screen and (max-width: 960px) {
  .footer__nav-list ul {
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}
.footer__nav-list ul li {
  min-width: 220px;
}
.footer__nav-list ul a {
  font-weight: 500;
  text-decoration: none;
}
@media (any-hover: hover) {
  .footer__nav-list ul a:hover {
    text-decoration: underline;
  }
}
.footer__nav-link {
  font-weight: 500;
  text-decoration: none;
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    text-decoration: underline;
  }
}
.footer__nav-sublist {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .children,
.footer .sub-menu {
  margin-top: 5px;
}
.footer .children li,
.footer .sub-menu li {
  padding-left: 5px;
}
.footer .children li::before,
.footer .sub-menu li::before {
  content: "  - ";
}
.footer__copyright {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: underline;
}

.not-found {
  text-align: center;
}
.not-found__text {
  margin: 30px auto;
}
.not-found__button {
  display: inline-block;
  width: 230px;
  height: 40px;
  margin: 20px auto;
  font-family: var(--ff-accent);
  font-weight: 500;
  line-height: 38px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
  background: #87d4b9;
  border: 1px solid #87d4b9;
  border-radius: 24px;
  transition: background 0.2s;
}
@media (any-hover: hover) {
  .not-found__button:hover {
    color: #87d4b9;
    background: #ffffff;
    border: 1px solid;
    opacity: 1;
  }
}

/* =============================*/
/* レスポンシブ対応*/
/* =============================*/
.pc-view {
  display: block;
}
@media screen and (max-width: 960px) {
  .pc-view {
    display: none;
  }
}

.sp-view {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp-view {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .sp-space {
    height: 0px !important;
  }
}

.sureSmile-lisk {
  margin-top: 12px !important;
  list-style: initial;
}
.sureSmile-lisk strong {
  color: #5cbb9a;
}/*# sourceMappingURL=style.css.map */