@charset "UTF-8";
/* ==================================================
  breakpoint & medea query
================================================== */
/* ==================================================
  cache busting
================================================== */
/* ==================================================
  共通
================================================== */
html {
  font-size: 62.5%;
}
@media (width < 1100px) {
  html {
    font-size: 56.25%;
  }
}

body {
  color: #333;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
  background: #fff;
}
@media (width < 1100px) {
  body {
    font-size: 2rem;
  }
}

img:not([class*=wp-image-]) {
  width: 100%;
  height: auto;
}
img[class*=wp-image-].alignright {
  display: block;
  margin: 0 0 0 auto;
}
img[class*=wp-image-].alignleft {
  display: block;
  margin: 0 auto 0 0;
}
img[class*=wp-image-].aligncenter {
  display: block;
  margin: 0 auto;
}

a {
  display: inline-block;
}

main {
  margin-bottom: 50px;
}

.inner {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (width < 1100px) {
  .inner {
    width: 90%;
  }
}

.button {
  text-align: center;
  margin-top: 50px;
}
.button__link {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 1;
}
.button__link::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #c9e8ee;
  z-index: -1;
}
.button__link::after {
  position: absolute;
  content: "→";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button__link:hover::after {
  right: 0px;
}
.button__link_rev {
  background-color: #fff;
  color: #c9e8ee;
}
.button__link_rev:hover {
  background-color: #c9e8ee;
  color: #fff;
}

.section-space {
  padding: 100px 0;
}

.section-space-50 {
  padding-block: 50px 100px;
}

.section-space-top {
  padding-top: 100px;
}

.section-space-bottom {
  padding-bottom: 100px;
}

.section-bg {
  background: #eff6f8;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
}
@media (width < 1100px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex li:not(:first-child) {
    margin-top: 80px;
  }
}

.flex-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: clamp(20px, 4vw, 40px);
}
@media (width < 1100px) {
  .flex-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-reverse2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(20px, 4vw, 40px);
}
@media (width < 1100px) {
  .flex-reverse2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}

.image-box {
  border-radius: 10px;
}

.image-box2 {
  border-radius: 0 20px 20px 0;
}
@media (width < 1100px) {
  .image-box2 {
    border-radius: 20px;
  }
}

.image-box3 {
  border-radius: 20px 0 0 20px;
}
@media (width < 1100px) {
  .image-box3 {
    border-radius: 20px;
  }
}

.table-1 {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.table-1 tr:not(:last-child) {
  border-bottom: 1px solid #fff;
}
@media (width < 1100px) {
  .table-1 tr:not(:last-child) {
    border-bottom: none;
  }
}
.table-1 th,
.table-1 td {
  border-collapse: collapse;
  padding: 10px;
}
@media (width < 1100px) {
  .table-1 th,
  .table-1 td {
    display: block;
  }
}
.table-1 td {
  background-color: #eff6f8;
}
.table-1 th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #40b5cc;
  color: #fff;
  vertical-align: middle;
  text-align: center;
}
@media (width < 1100px) {
  .table-1 th {
    border-bottom: none;
    white-space: normal;
  }
}
.table-1 tr:nth-of-type(n + 2) th {
  border-top: none;
}

.table-2 {
  width: 100%;
  background: #fff;
}
.table-2 th,
.table-2 td {
  border-collapse: collapse;
  padding: 10px;
  border: 1px solid #c9e8ee;
}
@media (width < 1100px) {
  .table-2 th,
  .table-2 td {
    display: block;
  }
}
.table-2 th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #40b5cc;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  width: 10%;
}
@media (width < 1100px) {
  .table-2 th {
    width: 100%;
  }
}
.table-2 tr:nth-of-type(n + 2) th {
  border-top: none;
}

/* ==================================================
  アニメーション
================================================== */
@media (width < 1100px) {
  .js-scroll-hint {
    overflow-x: scroll;
  }
  .js-scroll-hint table {
    white-space: nowrap;
  }
}

/* ==================================================
 HTMLでの制御
================================================== */
.fz12 {
  font-size: 1.2rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz20 {
  font-size: 2rem;
}

.fz30 {
  font-size: 3rem;
}

.fw600 {
  font-weight: 600;
}

figcaption {
  text-align: center;
}

.opacity {
  opacity: 0;
}
@media (width < 1100px) {
  .opacity {
    display: none;
  }
}

.miauto {
  margin-inline: auto;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.w30 {
  width: calc(30% - 2vw);
}
@media (width < 1100px) {
  .w30 {
    width: 80%;
    margin: 0 auto;
  }
}

.w40 {
  width: calc(40% - 2vw);
}
@media (width < 1100px) {
  .w40 {
    width: 80%;
    margin: 0 auto;
  }
}

.w50 {
  width: calc(50% - 2vw);
}
@media (width < 1100px) {
  .w50 {
    width: 100%;
  }
}

.w60 {
  width: calc(60% - 2vw);
}
@media (width < 1100px) {
  .w60 {
    width: 100%;
  }
}

.w70 {
  width: calc(70% - 2vw);
}
@media (width < 1100px) {
  .w70 {
    width: 100%;
  }
}

.w80 {
  width: 80%;
}
@media (width < 1100px) {
  .w80 {
    width: 90%;
    margin: 30px auto;
  }
}

@media (width < 1100px) {
  .js-scroll_hint {
    overflow-x: scroll;
  }
  .js-scroll_hint table {
    white-space: nowrap;
  }
}

.page-title__inner {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 30px 10px;
  background: #eff6f8;
}
@media (width < 1100px) {
  .page-title__inner {
    padding-block: 0 10px;
  }
}
.page-title__text {
  padding-block: clamp(40px, 6vw, 60px);
  border-radius: 0.4em;
  font-size: clamp(2.4rem, 3vw, 3rem);
  color: #40b5cc;
  letter-spacing: 0.1em;
  font-weight: 600;
  width: 80%;
  text-align: center;
  background: url(../img/top/mv6.webp?ver=utcdy3i) no-repeat center center/cover;
}
@media (width < 1100px) {
  .page-title__text {
    width: 95%;
  }
}
.page-title__text span {
  background: #fff;
  padding: 0.2em 0.6em;
  border-radius: 0.2em;
}

.bg_thumbnails {
  position: absolute;
  left: 0;
  right: 0;
  top: 141.7px;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
@media (width < 1100px) {
  .bg_thumbnails {
    top: 60px;
  }
}

.is-home .bg_thumbnails {
  background-image: url(../img/title_bg.webp);
}

.breadcrumbs {
  margin-top: 20px;
  font-size: 1.4rem;
}

.is-open {
  display: block;
}

.is-close {
  display: none;
}

.is-sp {
  display: none;
}
@media (width < 1100px) {
  .is-sp {
    display: block;
  }
}

@media (width < 1100px) {
  .is-pc {
    display: none;
  }
}

.list-wrapper {
  list-style: none;
  margin-left: 5px;
}
.list-wrapper > li {
  position: relative;
  padding-left: 15px;
}
.list-wrapper > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #40b5cc;
  border-radius: 50%;
}

.list-wrapper02 {
  list-style: none;
}
.list-wrapper02 > li {
  position: relative;
  padding-left: 18px;
}
.list-wrapper02 > li:not(:first-child) {
  margin-top: 3px;
}
.list-wrapper02 > li::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.5rem;
  border-left: 2px solid #40b5cc;
  border-bottom: 2px solid #40b5cc;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  top: 10px;
  left: 5px;
}

.list-2 {
  counter-reset: li;
}
.list-2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3em;
}
.list-2 li::before {
  display: inline-block;
  min-width: 1.7em;
  margin-right: 5px;
  border-radius: 50%;
  background-color: #40b5cc;
  color: #fff;
  font-weight: bold;
  font-size: 0.75em;
  line-height: 1.7em;
  text-align: center;
  content: counter(li);
  counter-increment: li;
}

.list10 {
  margin-top: 20px;
}
.list10 .item:not(:first-child) {
  margin-top: 10px;
}

.list20 {
  margin-top: 30px;
}
.list20 .item:not(:first-child) {
  margin-top: 20px;
}

.list30 {
  margin-top: 30px;
}
.list30 .item:not(:first-child) {
  margin-top: 30px;
}

.list40 {
  margin-top: 40px;
}
.list40 .item:not(:first-child) {
  margin-top: 40px;
}

.list50 {
  margin-top: 50px;
}
.list50 .item:not(:first-child) {
  margin-top: 50px;
}

.list60 {
  margin-top: 60px;
}
.list60 .item:not(:first-child) {
  margin-top: 60px;
}

.list70 {
  margin-top: 70px;
}
.list70 .item:not(:first-child) {
  margin-top: 70px;
}

.list80 {
  margin-top: 80px;
}
.list80 .item:not(:first-child) {
  margin-top: 80px;
}

.list-number {
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
  margin-top: 5px;
}
.list-number .item:not(:first-child) {
  margin-top: 10px;
}

.list-caution {
  margin-top: 10px;
}
.list-caution .item {
  padding-left: 5px;
  position: relative;
}
.list-caution .item::before {
  content: "";
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #333;
  margin-right: 5px;
}
.list-caution .item:not(:first-child) {
  margin-top: 10px;
}

.underline {
  text-decoration: underline;
}

.under600 {
  display: none;
}
@media (width < 600px) {
  .under600 {
    display: block;
  }
}

.is-blue {
  color: dodgerblue;
}

.is-red {
  color: #e2041b;
}

.is-fixed body {
  overflow: hidden;
}

.gradient {
  background: -webkit-gradient(linear, left top, right top, from(#ecb1c1), to(#fcf9f5));
  background: linear-gradient(90deg, #ecb1c1 0%, #fcf9f5 100%);
  background: -webkit-linear-gradient(0deg, #ecb1c1 0%, #fcf9f5 100%);
}

figcaption {
  text-align: center;
}

.bold {
  font-weight: 600;
}

.box-1 {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 5% 30px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}
@media (width < 1100px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination .prev {
  padding-left: 37px;
  background-color: #40b5cc;
  border-radius: 4px;
  color: #fff;
  width: 82px;
  height: 36px;
  line-height: 36px;
  position: relative;
  text-align: left;
  display: inline-block;
  margin-left: 0;
}
.pagination .prev::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow_left.svg?ver=utcdy3i) no-repeat center center/contain;
          mask: url(../img/icon/arrow_left.svg?ver=utcdy3i) no-repeat center center/contain;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination .prev:hover::before {
  left: 10px;
}
.pagination .next {
  padding-right: 37px;
  background-color: #40b5cc;
  border-radius: 4px;
  color: #fff;
  width: 82px;
  height: 36px;
  line-height: 36px;
  position: relative;
  text-align: right;
  display: inline-block;
  margin-right: 0;
}
.pagination .next::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=utcdy3i) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=utcdy3i) no-repeat center center/contain;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination .next:hover::after {
  right: 10px;
}

.page-numbers {
  width: 34px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #40b5cc;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  color: #40b5cc;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-numbers.current {
  background-color: #40b5cc;
  color: #fff;
  border: 1px solid #40b5cc;
}
.page-numbers:hover {
  background-color: #40b5cc;
  color: #fff;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.section-title__text {
  font-size: 2.2rem;
  margin-bottom: 5px;
  width: 100%;
  position: relative;
  padding-top: clamp(25px, 4vw, 40px);
  text-align: center;
  text-transform: uppercase;
}
.section-title__text::before {
  width: 100%;
  position: absolute;
  content: attr(data-en);
  text-transform: uppercase;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #40b5cc;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1;
}

.title-1 {
  font-size: 1.8rem;
  padding: 10px 20px;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 5px;
  color: #40b5cc;
  border: 2px solid #c9e8ee;
  font-weight: 600;
}

.title-2 {
  padding-bottom: 5px;
  padding-left: 35px;
  border-bottom: 1px solid #c9e8ee;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}
.title-2::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: 10px;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #40b5cc;
}

.title-3 {
  padding-bottom: 5px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
.title-3::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 5px;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #40b5cc;
  border-radius: 50%;
}

.title-4 {
  position: relative;
  padding: 1rem;
  border-radius: 5px;
  outline: 2px solid #40b5cc;
  outline-offset: 5px;
  background: linear-gradient(-45deg, transparent 0 20px, #fff 20px calc(100% - 20px), transparent calc(100% - 20px)), repeating-linear-gradient(-45deg, #40b5cc 0 2px, #fff 2px 6px);
  color: #40b5cc;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin: 10px 0 50px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #c9e8ee;
}
.accordion .accordion-item dt[aria-expanded=true] {
  border-bottom: 1px solid #40b5cc;
}
.accordion dt {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1.5em 0.6em;
  color: #333;
  border: none;
  background: none;
  outline: none;
}
.accordion dt:hover {
  cursor: pointer;
  color: #40b5cc;
}
.accordion dt:hover::after {
  cursor: pointer;
  color: #40b5cc;
  border: 1px solid #40b5cc;
}
.accordion dt:hover .icon::before, .accordion dt:hover .icon::after {
  background: #40b5cc;
}
.accordion dt .accordion-title {
  display: inline-block;
  padding-right: 2em;
  font-weight: 600;
}
.accordion dt .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 26px;
  height: 26px;
  border: 1px solid #40b5cc;
  border-radius: 100vh;
}
.accordion dt .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 11px;
  left: 6px;
  width: 12px;
  height: 2px;
  background: #40b5cc;
}
.accordion dt .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 6px;
  left: 11px;
  width: 2px;
  height: 12px;
  background: #40b5cc;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.accordion dt[aria-expanded=true] {
  color: #40b5cc;
}
.accordion dt[aria-expanded=true] .icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #40b5cc;
}
.accordion dt[aria-expanded=true] + .accordion-content {
  opacity: 1;
  -webkit-transition: opacity 200ms linear, max-height 300ms linear;
  transition: opacity 200ms linear, max-height 300ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 200ms linear, max-height 300ms linear;
  transition: opacity 200ms linear, max-height 300ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content .accordion-answer {
  margin: 1.4em 0;
}

.wave-top {
  margin-bottom: -1px;
}
.wave-top #wave {
  display: block;
  width: 100%;
  height: 100%;
}
.wave-top #wave path {
  fill: #eff6f8;
}
.wave-top.footer-wave-top #wave path {
  fill: #40b5cc;
}
.wave-top.feature-wave-top #wave path {
  fill: #40b5cc;
}

.wave-bottom {
  margin-top: -1px;
}
.wave-bottom #wave {
  display: block;
  width: 100%;
  height: 100%;
}
.wave-bottom #wave path {
  fill: #eff6f8;
}
.wave-bottom.feature-wave-bottom #wave path {
  fill: #40b5cc;
}

.figure-center {
  margin: 50px auto;
  width: 80%;
}
@media (width < 1100px) {
  .figure-center {
    width: 90%;
    margin: 30px auto;
  }
}

.tel {
  padding-left: 25px;
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  display: inline-block;
}
.tel::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-mask: url(../img/icon/phone.svg?ver=utcdy3i) no-repeat center center/contain;
          mask: url(../img/icon/phone.svg?ver=utcdy3i) no-repeat center center/contain;
  background-color: #fff;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

/* ==================== loader ==================== */
#loading {
  -webkit-transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  background-color: #40b5cc;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 画像のカーテンだけ先にスタート */
  /* 画像完了後 → テキストのカーテン＆テキストのフェード */
}
#loading.step-1 .logo-wrap--image .curtain {
  -webkit-animation: curtain-slide 1.2s ease forwards;
          animation: curtain-slide 1.2s ease forwards;
}
#loading.step-2 .logo-wrap--text .curtain {
  -webkit-animation: curtain-slide 1.2s ease forwards;
          animation: curtain-slide 1.2s ease forwards;
}
#loading.step-2 .logo-wrap--text .text {
  -webkit-animation: text-fade-in 0.8s ease forwards;
          animation: text-fade-in 0.8s ease forwards;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; /* カーテンが抜けた直後にふわっと表示 */
}
#loading.loadEnd {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo-wrap {
  position: relative;
  width: 100%;
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (width < 1100px) {
  .logo-wrap {
    width: 70%;
  }
}
.logo-wrap img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}
.logo-wrap p.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  margin-top: 2em;
  margin-left: 1em;
  opacity: 0; /* 最初は非表示。step-2 でフェードイン */
  font-size: 1.6rem;
}
.logo-wrap .curtain {
  position: absolute;
  inset: 0;
  background: #40b5cc;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  z-index: 2;
  pointer-events: none;
}

@-webkit-keyframes curtain-slide {
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes curtain-slide {
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes text-fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes text-fade-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ==================================================
  header
================================================== */
.header {
  width: 100%;
  position: relative;
  z-index: 999;
  background: #eff6f8;
}
.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  margin: 0 auto;
}
@media (width < 1100px) {
  .header__body {
    width: 95%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 15px;
  }
}
.header__nav {
  width: 90%;
  margin: 0 auto;
  text-align: right;
}
@media (width < 1100px) {
  .header__nav {
    display: none;
  }
}
.header__nav-contact {
  text-align: right;
  display: inline-block;
}
.header__nav-contact-link {
  background-color: #40b5cc;
  color: #fff;
  padding: 5px 20px 5px 45px !important;
  border-radius: 0 0 10px 10px;
}
.header__nav-contact-link.tel::before {
  left: 20px;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1em;
}
.header__nav-item {
  position: relative;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.6rem;
}
.header__nav-item:hover .header__nav-dropdown-list {
  -webkit-transform: translateX(-50%) scaleY(1);
          transform: translateX(-50%) scaleY(1);
}
.header__nav a,
.header__nav p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 5px;
}
.header__nav-dropdown p {
  cursor: default;
}
.header__nav-dropdown-list {
  position: absolute;
  left: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.header__nav-dropdown-item {
  background-color: #40b5cc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.3rem;
  position: relative;
}
.header__nav-dropdown-item:nth-of-type(n + 2)::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #eff6f8;
}
.header__nav-dropdown-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 20px;
  color: #fff;
}
.header__logo {
  width: 100%;
  margin-left: 2%;
  max-width: 280px;
}
@media (width < 1100px) {
  .header__logo {
    width: 80%;
    min-width: 245px;
  }
}
.header__logo img {
  vertical-align: middle;
}
.header__text {
  font-size: 1.2rem;
  margin-bottom: 3px;
  margin-left: 4%;
}

/* ==================================================
  hamburger
================================================== */
.hamburger-button {
  width: 40px;
  height: 30px;
  margin-left: auto;
  position: relative;
  display: none;
}
@media (width < 1100px) {
  .hamburger-button {
    display: block;
    z-index: 999;
  }
}
.hamburger-button::after {
  position: absolute;
  content: "MENU";
  color: #333;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
  text-align: center;
}
.hamburger-button span {
  position: absolute;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  height: 2px;
  background-color: #333;
  border-radius: 1px;
}
.hamburger-button span:nth-child(1) {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 28px;
}
.hamburger-button span:nth-child(2) {
  top: 9px;
  width: 22px;
  right: 7px;
}
.hamburger-button.is-active::after {
  content: "CLOSE";
  color: #fff;
}
.hamburger-button.is-active span {
  background-color: #fff;
  left: 50%;
}
.hamburger-button.is-active span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: 5px;
  width: 26px;
}
.hamburger-button.is-active span:nth-child(2) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 5px;
  width: 26px;
}

.hamburger-menu {
  background-color: #40b5cc;
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 200;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
.hamburger-menu__body {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 200px;
  margin-top: 80px;
}
.hamburger-menu__list {
  display: block;
  margin: 0 auto;
  width: 90%;
  overflow: hidden;
  border-radius: 10px;
}
.hamburger-menu__item {
  position: relative;
  color: #333;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1px;
}
.hamburger-menu__item a {
  display: block;
  padding: 20px;
  width: 100%;
}
.hamburger-menu__item .dropdown-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hamburger-menu__dropdown {
  padding-inline: 25px;
  position: relative;
  cursor: pointer;
}
.hamburger-menu__dropdown::after {
  position: absolute;
  content: "";
  top: 40%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #40b5cc;
  border-right: 2px solid #40b5cc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hamburger-menu__dropdown.is-open::after {
  -webkit-transform: translateY(40%) rotate(225deg);
          transform: translateY(40%) rotate(225deg);
}
.hamburger-menu__dropdown-title {
  padding: 20px;
  width: 100%;
}
.hamburger-menu__dropdown-list {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  text-align: center;
  background-color: #eff6f8;
}
.hamburger-menu__dropdown-item {
  font-size: 1.6rem;
  border-top: 1px solid #98e5f0;
}

/* ===============================================
  mv
=============================================== */
.mv {
  background-color: #eff6f8;
}
.mv .swiper {
  padding-top: 20px;
  width: 90%;
  margin-inline: auto;
}
.mv .swiper__slide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv .swiper__slide svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mv .swiper__slide image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__text {
  position: absolute;
  z-index: 10;
  content: "";
  bottom: 10%;
  left: 5%;
}
@media (width < 1100px) {
  .mv__text {
    display: none;
  }
}
.mv__text P:nth-of-type(n + 2) {
  margin-top: clamp(3px, 0.75vw, 10px);
}
.mv__text span {
  padding: 2px 10px;
  background-color: #40b5cc;
  color: #fff;
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 600;
}
@media (width < 1100px) {
  .mv__text span {
    font-size: max(2.8vw, 1.8rem);
    padding: 0 10px;
  }
}
.mv__banner--pc {
  position: absolute;
  z-index: 10;
  content: "";
  bottom: 10%;
  right: 5%;
  width: 25%;
  min-width: 300px;
  max-width: 450px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mv__banner--pc:hover {
  opacity: 0.9;
}
.mv__banner--pc a {
  width: 100%;
  display: inline-block;
}
.mv__banner--pc a:not(:first-child) {
  margin-top: 10px;
}
.mv__text--sp {
  display: none;
}
@media (width < 1100px) {
  .mv__text--sp {
    display: block;
    bottom: 5%;
  }
}
.mv__banner--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #eff6f8;
  padding: 20px 0 0;
}
.mv__banner--sp a {
  max-width: 300px;
  display: block;
}
@media (width < 600px) {
  .mv__banner--sp a {
    width: 80%;
  }
}

/* ===============================================
  top news
=============================================== */
.top-news {
  background-color: #eff6f8;
}
@media (width < 1100px) {
  .top-news.section-space {
    padding-top: 40px;
  }
}
.top-news__list {
  margin: 30px 0;
}
.top-news__list li:not(:first-child) {
  margin-top: 15px;
}
.top-news__flex {
  gap: 60px;
}
@media (width < 1100px) {
  .top-news__flex {
    gap: 80px;
  }
}
.top-news .button {
  margin-top: 30px;
}
.top-news .consultation-table th {
  background-color: #40b5cc;
  color: #fff;
}

.top-instagram {
  background-color: #eff6f8;
  padding-block: 50px;
}

.top-blog {
  background-color: #eff6f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-blog .top-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-blog .top-news__list li {
  display: inline-block;
}
.top-blog .news__title {
  font-weight: 600;
}
.top-blog .blog-content {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.top-blog .more-link {
  margin-left: auto;
  margin-top: 10px;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #40b5cc;
  font-size: 1.4rem;
  color: #40b5cc;
}

.news__wrapper {
  width: 50%;
}
@media (width < 1100px) {
  .news__wrapper {
    width: 100%;
  }
}
.news__date {
  color: #40b5cc;
  font-size: 1.4rem;
}
.news__title {
  margin-top: 5px;
}

.date-category__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.category {
  white-space: nowrap;
  background-color: #40b5cc;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 3px;
}

.cashless {
  background-color: #fff;
  border: 2px solid #c9e8ee;
  padding: 1em;
  border-radius: 0.6em;
}
.cashless__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.cashless__list li {
  width: 55px;
  height: 40px;
}
@media (width < 1100px) {
  .cashless__list li {
    width: 45px;
    height: 30px;
  }
}
.cashless__list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.cashless__list:nth-of-type(n + 2) {
  margin-top: 20px;
}
.cashless__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(48, 40, 16, 0.1);
          box-shadow: 0 0 15px rgba(48, 40, 16, 0.1);
}

/* ===============================================
  top schedule
=============================================== */
.close_notice {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 20px;
}
.close_notice p {
  font-size: 1.6rem;
}

.top-schedule {
  background-color: #eff6f8;
}
.top-schedule.section-space {
  padding: 50px 0;
}

.top-schedule__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width < 1100px) {
  .top-schedule__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (width >= 1100px) {
  .holiday_titles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}

.nav_prev {
  display: none !important;
}

.nav_next {
  display: none !important;
}

.month_prev {
  background: url(../img/icon/prev.svg?ver=utcdy3i) no-repeat center left/contain;
}

.month_next {
  background: url(../img/icon/next.svg?ver=utcdy3i) no-repeat center right/contain;
}

.consultation-table {
  width: 100%;
  background-color: #fff;
  border-radius: 1em;
  overflow: hidden;
}
@media (width < 1100px) {
  .consultation-table {
    margin-top: 30px;
  }
}
.consultation-table th,
.consultation-table td {
  text-align: center;
  vertical-align: middle;
  padding: 15px 10px;
  font-size: 1.6rem;
}
@media (width < 1100px) {
  .consultation-table th,
  .consultation-table td {
    padding: 10px 5px;
  }
}
.consultation-table th {
  font-weight: 600;
  color: #40b5cc;
  background-color: #eff6f8;
}
.consultation-table td {
  color: #333;
}

@media (width < 1100px) {
  .table_head {
    font-size: 1.4rem;
  }
}

/* ===============================================
  top greeting
=============================================== */
.top-greeting {
  margin: 50px 0 100px;
}
.top-greeting__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
@media (width < 1100px) {
  .top-greeting__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-greeting--left {
  width: 45%;
  margin-left: 10%;
}
@media (width < 1100px) {
  .top-greeting--left {
    width: 90%;
    margin: 30px auto 0;
  }
}
.top-greeting--right {
  width: 40%;
}
@media (width < 1100px) {
  .top-greeting--right {
    width: 90%;
    margin-left: auto;
  }
}
.top-greeting--right img {
  border-radius: 30px 0 0 30px;
}
.top-greeting__title {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 10px;
}
.top-greeting__content {
  padding: 100px 0;
  position: relative;
}
.top-greeting__content::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0 30px 30px 0;
  background-color: #eff6f8;
}
@media (width < 1100px) {
  .top-greeting__content {
    margin-top: 30px;
  }
}

/* ===============================================
  top feature
=============================================== */
.top-feature {
  background-color: #40b5cc;
}
.top-feature .section-title__text {
  color: #fff;
}
.top-feature .section-title__text::before {
  color: #c9e8ee;
}
.top-feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 50px;
}
@media (width < 1100px) {
  .top-feature__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 600px) {
  .top-feature__list {
    grid-template-columns: 1fr;
  }
}
.top-feature__item {
  margin-top: 20px;
  padding: 50px 30px 30px;
  background-color: #fff;
  position: relative;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 15px rgba(14, 125, 145, 0.2);
          box-shadow: 0 0 15px rgba(14, 125, 145, 0.2);
  text-align: justify;
}
@media (width < 1100px) {
  .top-feature__item {
    width: 100%;
  }
}
.top-feature__item img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 30px;
  display: block;
}
.top-feature__number {
  font-size: 3rem;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  letter-spacing: normal;
  background-color: #c9e8ee;
  color: #40b5cc;
  width: 1.6em;
  aspect-ratio: 1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: normal;
  padding-right: 1px;
}
.top-feature__title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width < 1100px) {
  .top-feature__title {
    font-size: 2.2rem;
  }
}

/* ===============================================
  top medical
=============================================== */
.top-medical {
  padding: 50px 0 100px;
}
.top-medical__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(15px, 3vw, 30px);
}
.top-medical__item {
  width: calc((100% - clamp(15px, 3vw, 30px) * 3) / 4);
  aspect-ratio: 1;
}
@media (width < 768px) {
  .top-medical__item {
    width: calc((100% - clamp(15px, 3vw, 30px)) / 2);
  }
}
.top-medical__link {
  display: block;
  background-color: #eff6f8;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 50%;
  border: 1px solid #40b5cc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media (width < 600px) {
  .top-medical__link {
    padding: 15px;
  }
}
.top-medical__link div {
  width: 100%;
}
.top-medical__link img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-medical__title {
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.5vw, 1.8rem);
}

/* ==================================================
  footer
================================================== */
.footer {
  background: url(../img/common/footer.webp) no-repeat 50% 50%/cover;
  color: #fff;
  position: relative;
}
.footer .footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.footer .footer-wave svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: clamp(20px, 10vw, 100px);
}
.footer .footer-wave .shape-fill {
  fill: #ffffff;
}
.footer::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(64, 181, 204, 0.7);
  top: 0;
  left: 0;
  z-index: 1;
}
.footer .inner {
  position: relative;
  z-index: 2;
}
.footer.section-space {
  padding-bottom: 120px;
  padding-top: clamp(120px, 20vw, 200px);
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width < 1100px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__left {
  width: 48%;
}
@media (width < 1100px) {
  .footer__left {
    width: 100%;
  }
}
.footer__logo {
  width: 80%;
  max-width: 300px;
  margin-bottom: 20px;
}
@media (width < 1100px) {
  .footer__contact {
    text-align: center;
  }
}
.footer__contact .tel {
  color: #fff;
}
.footer__contact .tel::before {
  background-color: #fff;
}
.footer__reserve {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (width < 1100px) {
  .footer__reserve {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__reserve-link {
  width: 50px;
  display: inline-block;
}
.footer__right {
  width: 48%;
}
@media (width < 1100px) {
  .footer__right {
    width: 100%;
    margin-top: 50px;
  }
}
.footer__map {
  width: 100%;
  margin-bottom: 30px;
}
.footer__map iframe {
  width: 100%;
  height: 400px;
}
@media (width < 1100px) {
  .footer__map iframe {
    height: 300px;
  }
}
.footer__copyright {
  font-size: 1.2rem;
  text-align: center;
}

.sns-icon {
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  gap: 10px;
}

.bottom-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.bottom-fixed__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #a8d7e0;
}
.bottom-fixed__item {
  text-align: center;
}
.bottom-fixed__item:nth-of-type(1) a {
  background-color: #2ca6be;
}
.bottom-fixed__item:nth-of-type(1) a span::before {
  -webkit-mask: url(../img/icon/phone.svg?ver=utcdy3i) no-repeat 50% 50%/contain;
          mask: url(../img/icon/phone.svg?ver=utcdy3i) no-repeat 50% 50%/contain;
}
.bottom-fixed__item:nth-of-type(2) a {
  border-left: 1px solid #a8d7e0;
  background-color: #4db0c4;
}
.bottom-fixed__item:nth-of-type(2) a span::before {
  -webkit-mask: url(../img/icon/calender.svg?ver=utcdy3i) no-repeat 50% 50%/contain;
          mask: url(../img/icon/calender.svg?ver=utcdy3i) no-repeat 50% 50%/contain;
}
.bottom-fixed__item:nth-of-type(3) a {
  border-left: 1px solid #a8d7e0;
  background-color: #68c1d3;
}
.bottom-fixed__item:nth-of-type(3) a span::before {
  -webkit-mask: url(../img/icon/line-icon.svg?ver=utcdy3i) no-repeat 50% 50%/contain;
          mask: url(../img/icon/line-icon.svg?ver=utcdy3i) no-repeat 50% 50%/contain;
}
.bottom-fixed__link {
  display: block;
  font-size: clamp(1.5rem, 2vw, 2rem);
  padding: 0.8em;
  color: #fff;
}
@media (width < 1100px) {
  .bottom-fixed__link.is-pc {
    display: none;
  }
}
.bottom-fixed__link.is-sp {
  display: none;
}
@media (width < 1100px) {
  .bottom-fixed__link.is-sp {
    display: block;
  }
}
.bottom-fixed__link span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom-fixed__link span::before {
  background: #fff;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 5px;
}

.footer-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: 2px solid #c9e8ee;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  padding: 1em;
  font-size: 80%;
  border-radius: 0.6em;
  line-height: 1.2;
}
@media (width < 1100px) {
  .footer-banner {
    font-size: 60%;
    right: 15px;
    bottom: 15px;
  }
}
.footer-banner .tel {
  font-size: 2.2rem;
  color: #40b5cc;
}
.footer-banner .tel::before {
  background-color: #40b5cc;
}
.footer-banner__image {
  width: clamp(30px, 4vw, 40px);
}

.reservation-banner {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 親要素をフレックスボックスにすることで、子要素の配置を制御 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 子要素を中央に配置 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 子要素を縦方向に中央揃え */
}
.reservation-banner a {
  background-color: #40b5cc;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  letter-spacing: 0.2em;
  position: relative;
  padding: clamp(15px, 2vw, 20px) clamp(8px, 1.25vw, 12px);
  border-radius: 5px 0 0 5px;
  border: 2px solid #c9e8ee;
  border-right: none;
}

/* ===============================================
  page-about
=============================================== */
.overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overview__item dt,
.overview__item dd {
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.overview__item dt {
  width: 25%;
  border-top: 1px solid #40b5cc;
  font-weight: 400;
}
.overview__item dd {
  width: 75%;
  border-top: 1px solid #ccc;
}
.overview__item:last-child dt {
  border-bottom: 1px solid #40b5cc;
}
.overview__item:last-child dd {
  border-bottom: 1px solid #ccc;
}

.feature {
  background-color: #eff6f8;
}
.feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 25px;
}
@media (width < 600px) {
  .feature__list {
    gap: 10px;
  }
}
.feature__list li {
  background-color: #fff;
  border: 2px solid #40b5cc;
  width: calc((100% - 100px) / 5);
  aspect-ratio: 1/1;
  border-radius: 100%;
  padding: 10px;
  position: relative;
}
.feature__list li span {
  text-align: center;
  padding: 0 15px;
  margin-top: clamp(20px, 2vw, 25px);
  color: #fff;
  background-color: #40b5cc;
  border-radius: 10px;
  display: inline-block;
}
@media (width < 1100px) {
  .feature__list li {
    width: calc((100% - 50px) / 3);
    max-width: 200px;
  }
}
@media (width < 850px) {
  .feature__list li {
    max-width: 170px;
    font-size: 1.4rem;
  }
}
@media (width < 600px) {
  .feature__list li {
    width: calc((100% - 10px) / 2);
  }
}
@media (width < 600px) {
  .feature__list li:last-child {
    margin-top: -15px;
  }
}
.feature__content {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 10px;
}

.philosophy {
  padding-block: 160px;
  text-align: center;
}
@media (width < 1100px) {
  .philosophy {
    padding-block: 80px;
    text-align: left;
  }
}
.philosophy__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.philosophy__title span {
  padding: 5px;
  font-weight: 400;
}

.profile {
  background-color: #eff6f8;
  padding-bottom: 100px;
}
@media (width < 1100px) {
  .profile {
    padding-bottom: 80px;
  }
}
.profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4vw;
  margin-top: 50px;
}
@media (width < 1100px) {
  .profile__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
.profile__bio {
  margin-top: clamp(60px, 7vw, 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (width < 1100px) {
  .profile__bio {
    gap: 30px;
  }
}

.schedule {
  background-color: #eff6f8;
}
.schedule .consultation-table {
  width: 80%;
  margin: 30px auto;
}
@media (width < 1100px) {
  .schedule .consultation-table {
    width: 100%;
  }
}

@media (width < 1100px) {
  .gallery {
    padding: 50px 0 100px;
  }
}
.gallery__list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3vw;
}
.gallery__item {
  width: calc((100% - 6vw) / 3);
  border-radius: 1em;
  overflow: hidden;
}
.gallery__item img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 200/133;
}
@media (width < 1100px) {
  .gallery__item {
    width: calc((100% - 3vw) / 2);
  }
}
.gallery__item figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 1.4rem;
}

.facility-standards {
  background-color: #eff6f8;
}
.facility-standards__table {
  margin-top: 50px;
}
.facility-standards__table table {
  background: #fff;
}
.facility-standards__table th,
.facility-standards__table td {
  border: 1px solid #40b5cc;
  border-collapse: collapse;
  padding: 10px;
}
@media (width < 1100px) {
  .facility-standards__table th,
  .facility-standards__table td {
    display: block;
  }
}
.facility-standards__table th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #40b5cc;
}
@media (width < 1100px) {
  .facility-standards__table th {
    border-bottom: none;
    white-space: normal;
  }
}
.facility-standards__table tr:nth-of-type(n + 2) th {
  border-top: none;
}
.facility-standards__table .list-wrapper {
  list-style: none;
}
.facility-standards__table .list-wrapper > li {
  position: relative;
  padding-left: 12px;
}
.facility-standards__table .list-wrapper > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #40b5cc;
  border-radius: 50%;
}

.bio-table {
  margin: 30px 0;
  width: 100%;
}
.bio-table tr {
  border-collapse: collapse;
  padding: 10px 15px;
}
.bio-table tr:nth-child(odd) {
  background-color: #ffffff;
}
.bio-table td {
  padding: 10px;
}

/* ===============================================
  page-medical
=============================================== */
.medical__wrapper {
  padding: 100px 0;
}
@media (width < 1100px) {
  .medical__wrapper {
    padding: 80px 0 100px;
  }
}
.medical__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.medical__list:not(:first-child) {
  margin-top: 50px;
}
@media (width < 1100px) {
  .medical__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .medical__list:not(:first-child) {
    margin-top: 100px;
  }
}
.medical__list .button {
  margin-top: 50px;
}
@media (width < 1100px) {
  .medical__list .button {
    margin-top: 20px;
  }
}
.medical__list--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (width < 1100px) {
  .medical__list--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.medical__list--reverse .medical__item--right {
  margin-right: 0;
  margin-left: 5%;
}
.medical__item {
  width: 50%;
}
@media (width < 1100px) {
  .medical__item--left {
    width: 70%;
  }
}
.medical__item--right {
  margin-right: 5%;
}
@media (width < 1100px) {
  .medical__item--right {
    width: 90%;
    margin: 0 auto;
  }
}
.medical__item--right .title-2 {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 20px;
}

/* ===============================================
  page-scope
=============================================== */
.anchor-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  gap: clamp(20px, 4vw, 40px);
  background-color: #fff;
  border-radius: 0.6em;
  padding: 30px 10px;
  border: 2px solid #c9e8ee;
}
.anchor-link__list a {
  display: inline-block;
  padding: 0 15px 0 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.anchor-link__list a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/page-link_icon.svg?ver=utcdy3i) no-repeat center center/contain;
          mask: url(../img/icon/page-link_icon.svg?ver=utcdy3i) no-repeat center center/contain;
  background-color: #5e5e5e;
}

.scope__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media (width < 1100px) {
  .scope__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}

.scope__item--left {
  width: 60%;
}
@media (width < 1100px) {
  .scope__item--left {
    width: 100%;
  }
}

.scope__item--right {
  width: 40%;
}
@media (width < 1100px) {
  .scope__item--right {
    width: 80%;
    margin: 0 auto;
  }
}
.scope__item--right img {
  border-radius: 10px;
}

/* ===============================================
  page-news
=============================================== */
.page-news {
  margin: 100px 0 150px;
  padding: 30px 20px;
}
@media (width < 1100px) {
  .page-news {
    margin: 50px 0 100px;
    padding: 20px 10px;
  }
}
.page-news__list {
  width: 90%;
  margin: 50px auto 0;
}
@media (width < 1100px) {
  .page-news__list {
    margin: 20px auto 0;
    width: 100%;
  }
}
.page-news__item {
  border-bottom: 1px solid #c9e8ee;
  padding-bottom: 15px;
}
.page-news__item:not(:first-child) {
  margin-top: 20px;
}

/* ===============================================
  single
=============================================== */
.single {
  margin: 50px 0 150px;
}
.single__title {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 600;
}
.single__body {
  margin: 30px 10px 0;
  line-height: 1.8;
}
.single__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single__prev a {
  font-size: 1.4rem;
  padding-left: 38px;
  background-color: #40b5cc;
  border-radius: 4px;
  color: #fff;
  width: 90px;
  height: 36px;
  line-height: 36px;
  position: relative;
  display: inline-block;
  -moz-text-align-last: left;
  text-align-last: left;
}
@media (width < 1100px) {
  .single__prev a {
    width: 108px;
    height: 39px;
    line-height: 39px;
    padding-left: 36px;
  }
}
.single__prev a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow_left.svg?ver=utcdy3i) no-repeat center center/contain;
          mask: url(../img/icon/arrow_left.svg?ver=utcdy3i) no-repeat center center/contain;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 1100px) {
  .single__prev a::before {
    left: 14px;
  }
}
.single__prev a:hover::before {
  left: 10px;
}
.single__next a {
  font-size: 1.4rem;
  padding-right: 38px;
  background-color: #40b5cc;
  border-radius: 4px;
  color: #fff;
  width: 90px;
  height: 36px;
  line-height: 36px;
  position: relative;
  display: inline-block;
  text-align: right;
}
@media (width < 1100px) {
  .single__next a {
    width: 108px;
    height: 39px;
    line-height: 39px;
    padding-right: 36px;
  }
}
.single__next a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=utcdy3i) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=utcdy3i) no-repeat center center/contain;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (width < 1100px) {
  .single__next a::after {
    right: 14px;
  }
}
.single__next a:hover::after {
  right: 10px;
}

.lists a {
  width: 90px;
  height: 36px;
  line-height: 36px;
  color: #40b5cc;
  border: 1px solid #40b5cc;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}
@media (width < 1100px) {
  .lists a {
    width: 95px;
    height: 41px;
    line-height: 41px;
    margin: 0 12px;
  }
}
.lists a:hover {
  color: #fff;
  background: #40b5cc;
}

/* ==================================================
  404.php
================================================== */
.not-found {
  padding-top: clamp(80px, 25vw, 240px);
  padding-bottom: clamp(80px, 15vw, 160px);
}
@media (width < 1100px) {
  .not-found {
    margin: 100px 0;
  }
}
.not-found__wrap {
  text-align: center;
}
.not-found__head {
  font-size: clamp(4rem, 7.5vw, 8rem);
  color: #40b5cc;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}
.not-found__lead {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #999999;
  margin-bottom: 40px;
}
.not-found__content {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: #a8a8a8;
  margin-bottom: 40px;
}
.not-found__button-link {
  padding: 20px 40px;
  color: #999999;
  background: #eeeeee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.not-found__button-link:hover {
  background: #ddd;
}

/* ===============================================
  pagetop
=============================================== */
#page-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (width < 1100px) {
  #page-top {
    bottom: 40px;
    right: 10px;
  }
}
#page-top a {
  background: #40b5cc;
  border: 2px solid #a1957e;
  color: #fff;
  width: 60px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: block;
  position: relative;
}
#page-top a::after {
  position: absolute;
  content: "";
  top: 42%;
  left: 37%;
  width: 15px;
  height: 15px;
  border-top: 3px solid #eff6f8;
  border-right: 3px solid #eff6f8;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ===============================================
  page-consultation
=============================================== */
.consultation {
  background-color: #eff6f8;
  padding-bottom: 100px;
}
@media (width < 1100px) {
  .consultation {
    padding-bottom: 80px;
  }
}
.consultation__content-item {
  margin-top: 40px;
}
.consultation .title-1 span {
  display: inline-block;
  color: #333;
  font-size: 1.4rem;
  font-weight: 400;
}

.flow_design08 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flow08 {
  width: 100%;
  border-bottom: solid 1px #e1e8ed;
  padding-left: 0;
}
.flow08 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  padding: 25px 0;
}
.flow08 li:not(:first-child) {
  border-top: solid 1px #c9e8ee;
}
.flow08 li > dl {
  width: calc(100% - 70px);
}
.flow08 li > dl > dt {
  font-size: 2rem;
  font-weight: normal;
  line-height: 2;
  margin-bottom: 5px;
}
.flow08 li > dl > dd {
  margin: 0;
}
.flow08 li .icon {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: #40b5cc;
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
  font-family: sans-serif;
}
.flow08 li .icon:before {
  display: block;
  content: "STEP";
  font-size: 0.3em;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.flow08 li .icon::after {
  display: block;
  content: "";
  width: 1px;
  height: calc(100% - 35px);
  background-color: #858585;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
}

.flow-2 {
  list-style: none; /* デフォルトの番号を非表示に */
  counter-reset: step; /* カウンターを初期化 */
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: clamp(25px, 3.5vw, 40px);
}
@media (width < 1100px) {
  .flow-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 600px) {
  .flow-2 {
    grid-template-columns: 1fr;
  }
}
@media (width < 1100px) {
  .flow-2 {
    gap: 30px;
  }
}
.flow-2 li {
  position: relative;
  counter-increment: step; /* カウンターを1つ進める */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #eff6f8;
}
.flow-2 li::before {
  content: counter(step, decimal-leading-zero); /* 01, 02, ... と表示 */
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -1em;
  font-weight: bold;
  color: #fff;
  font-size: 1.2em;
  background-color: #40b5cc;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow-2 li div {
  aspect-ratio: 3/2;
}
.flow-2 li img {
  -o-object-fit: cover;
     object-fit: cover;
}
.flow-2 li p {
  padding: 1.6em 0.8em 0.8em;
}

.reservation {
  background-color: #eff6f8;
  padding-bottom: 100px;
}
@media (width < 1100px) {
  .reservation {
    padding-bottom: 80px;
  }
}
.reservation__time table th {
  background-color: #40b5cc;
  color: #fff;
}
.reservation .cashless__list {
  background-color: #fff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 1em;
}

/* ===============================================
  page-access
=============================================== */
.access-map .map {
  margin-bottom: 30px;
}
.access-map .map iframe {
  width: 100%;
  height: 400px;
}
@media (width < 1100px) {
  .access-map .map iframe {
    height: 300px;
  }
}
.access-map__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 60px;
}
@media (width < 1100px) {
  .access-map__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access-map__tel {
  padding-left: 40px !important;
  padding-right: 20px !important;
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}
.access-map__tel::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  -webkit-mask: url(../img/icon/phone.svg?ver=utcdy3i) no-repeat center center/contain;
          mask: url(../img/icon/phone.svg?ver=utcdy3i) no-repeat center center/contain;
  background-color: #40b5cc;
}
.access-map__left {
  width: 48%;
}
@media (width < 1100px) {
  .access-map__left {
    width: 100%;
  }
}
.access-map__text {
  margin-top: 30px;
}
.access-map__right {
  width: 48%;
}
@media (width < 1100px) {
  .access-map__right {
    width: 80%;
    margin: 0 auto;
  }
}
.access-map__right img {
  display: block;
  width: 80%;
  border-radius: 10px;
  margin: 0 auto;
}
@media (width < 1100px) {
  .access-map__right img {
    width: 100%;
  }
}
.access-map__image li {
  margin-top: 20px;
}
.access-map__image li figcaption {
  margin-top: 5px;
}
.access-map__title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

/* ===============================================
  general-dentistry
=============================================== */
.cavity__table-br {
  border-right: 1px solid #fff;
}
@media (width < 1100px) {
  .cavity__table-br {
    border-bottom: 1px solid #fff;
    border-right: none;
  }
}
.cavity__table figure {
  text-align: center;
}
.cavity__table figure img {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.checkup {
  background-color: #eff6f8;
}

/* ===============================================
  denture
=============================================== */
.flow_design10 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flow10 {
  width: 100%;
  padding-left: 0;
}

.flow10 > li {
  list-style-type: none;
  background: #eff6f8;
  padding: 20px;
  border-radius: 20px;
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: "";
  position: absolute;
  border: 15px solid transparent;
  width: 0;
  height: 0;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #40b5cc;
}

.flow10 > li dl dt {
  font-weight: 600;
  font-size: 1.7rem;
  border-bottom: 2pt dashed #c9e8ee;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.flow10 > li .icon10 {
  color: #40b5cc;
  margin-right: 0.5em;
}

.flow10 > li dl dd {
  margin: 0;
}

/* ===============================================
  periodontitis
=============================================== */
.periodontitis-table th,
.periodontitis-table td {
  padding: 10px;
  border: 1px solid #40b5cc;
  border-collapse: collapse;
}
.periodontitis-table th {
  text-align: center;
  font-weight: 600;
  background-color: #eff6f8;
  width: 25%;
  min-width: 200px;
}

.table-scroll {
  overflow-x: auto;
}

.scroll-text {
  display: none;
  font-size: 1.4rem;
}
@media (width < 904px) {
  .scroll-text--periodontitis {
    display: block;
  }
}
@media (width < 706px) {
  .scroll-text--denture {
    display: block;
  }
}

/* ===============================================
  denture
=============================================== */
.denture-table {
  width: 100%;
}
.denture-table th,
.denture-table td {
  padding: 10px;
  border: 1px solid #40b5cc;
  white-space: nowrap;
}
.denture-table th {
  font-weight: 600;
  text-align: center;
  background: #eff6f8;
}
.denture-table th:nth-of-type(1) {
  width: 16%;
}
.denture-table th:nth-of-type(n + 2) {
  width: 42%;
}
.denture-table__image img {
  display: block;
  width: 60%;
  min-width: 150px;
  margin-inline: auto;
}

/* ===============================================
  fillings-crowns
=============================================== */
.ceramic-table {
  width: 100%;
}
.ceramic-table th,
.ceramic-table td {
  padding: 10px;
  border: 1px solid #40b5cc;
  white-space: nowrap;
}
.ceramic-table th {
  font-weight: 600;
  text-align: center;
  background: #eff6f8;
}
.ceramic-table__image img {
  display: block;
  width: 40%;
  min-width: 150px;
  margin-inline: auto;
}

/* ===============================================
  whitening
=============================================== */
.whitening-table {
  width: 100%;
}
.whitening-table th,
.whitening-table td {
  padding: 10px;
  border: 1px solid #40b5cc;
  white-space: nowrap;
}
.whitening-table th {
  font-weight: 600;
  text-align: center;
  background: #eff6f8;
}
.whitening-table__image img {
  display: block;
  width: 30%;
  min-width: 200px;
  margin-inline: auto;
}

.whitening__flow {
  width: 100%;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 20px;
}
.whitening__flow-item {
  list-style-type: none;
  background: #eff6f8;
  padding: 1.5em;
  border-radius: 20px;
  width: 100%;
}
.whitening__flow-item dt {
  font-weight: 600;
  font-size: 1.7rem;
  border-bottom: 2pt dashed #c9e8ee;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.whitening__flow-item dd {
  margin: 0;
}
.whitening__flow-item .icon10 {
  color: #40b5cc;
  margin-right: 0.5em;
}
.whitening__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 30px;
}
.whitening__img li {
  width: 30%;
}
@media (width < 1100px) {
  .whitening__img li {
    width: 100%;
  }
}
.whitening__img li:first-child {
  margin-right: 50px;
  position: relative;
}
.whitening__img li:first-child::after {
  content: "";
  position: absolute;
  border: 15px solid transparent;
  width: 0;
  height: 0;
  right: -45px;
  top: 50%;
  bottom: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left-color: #40b5cc;
}
@media (width < 1100px) {
  .whitening__img li:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .whitening__img li:first-child::after {
    right: 50%;
    left: 50%;
    bottom: -50px;
    top: inherit;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-left-color: transparent;
    border-top-color: #40b5cc;
  }
}