/* ==========================================================================
トップページ
=========================================================================== */
#waveCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease-out;
}
/* ==================================================
   MAIN VISUAL (BASE)
   ================================================== */
.topMV {
  width: 100%;
  aspect-ratio: 392 / 491;
  background: #CBE6F1;
  margin-top: 3.5625rem;
  position: relative;
}
.topMV__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../img/mv.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  position: relative;
  z-index: 1;
}
.topMV__innerArea {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}
.topMV__copy {
  position: absolute;
  top: 2.625rem;
  left: 1.25rem;
}
.topMV__copy-txt {
  font-size: 1.375rem;
  font-weight: normal;
  line-height: 1.33;
  margin-bottom: 0.375rem;
}
.topMV__copy-en {
  font-size: 1.125rem;
  color: var(--white);
}
.topMV__copy-ttl {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: bold;
  margin-top: 0.625rem;
  line-height: 1.7;
}
.topMV__copy-ttl > span {
  background: linear-gradient(to right, #4ea5b0, #14b9ce);
  letter-spacing: 0.20px;
  padding: 0.375rem;
  line-height: 1.1;
  display: inline-block;
}
.topMV__bnr {
  display: block;
  width: calc(100% - 2.5rem);
  position: absolute;
  bottom: 6.11%;
  left: 1.25rem;
  margin: 0 auto;
}
.topMV__bnr.is-active img {
  opacity: 0;
  animation: flashIn 0.8s ease-out forwards;
  animation-delay: 0.3s;
}
.topMV__btn {
  display: block;
  width: 100%;
  max-width: 339px;
  text-align: center;
  margin: 1.6875rem auto;
}
.topMV__btn a:not(:last-child) {
  margin-bottom: 0.625rem;
}

@keyframes flashIn {
  0% { opacity: 0; filter: brightness(3); }
  100% { opacity: 1; filter: brightness(1); }
}

.topContents {
  margin: 0px auto;
}
.topContents__inner {
  width: 100%;
  padding: 0 0.75rem;
  position: relative;
  margin: 0 auto;
}
.topContents section {
  padding: 3.125rem 0;
}
.topContents__h2 {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-top: 0;
  margin: 0 0 2.375rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.topContents__h2::before {
  content: attr(data-en);
  color: var(--Main);
  font-size: 1.125rem;
  text-align: center;
  display: block;
  margin-bottom: 0.75rem;
  top: 0;
  font-weight: 400;
  font-family: oswald;
}

.topCase .topContents__h2::before,
.topClinicFeature .topContents__h2::before,
.topFeature .topContents__h2::before,
.topPrice .topContents__h2::before,
.topAbout .topContents__h2::before,
.topReason .topContents__h2::before,
.topQuestion h2.topContents__h2::before,
.topHospital h2.topContents__h2::before,
.topNews h2.topContents__h2::before {
  content: attr(data-en);
  color: var(--Main);
  font-size: 1.125rem;
  position: static;
  text-align: center;
  display: block;
  margin-bottom: 0.75rem;
  top: 0;
  font-weight: 400;
  font-family: oswald;
}
.topQuestion h2.topContents__h2,
.topHospital h2.topContents__h2,
.topNews h2.topContents__h2 {
  text-align: center;
  padding-top: 0;
  margin-top: 0;
}
.topQuestion h2.topContents__h2::after,
.topHospital h2.topContents__h2::after,
.topNews h2.topContents__h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  border-bottom: 0.0625rem solid #333;
  margin-left: -18.5px;
}

section.topClinicCount {
  background: var(--Back);
  padding: 3.125rem 1.5rem 1.5rem;
  text-align: center;
}
.topClinicCount small {
  color: var(--Text_grey);
}
.map-component {
  position: relative;
  width: 100%;
  max-width: 415px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}
.map-image-layer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-image-layer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0.9375rem 1.875rem rgba(78, 165, 176, 0.15));
}
.map-component .pin {
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: var(--Main);
  border: 0.125rem solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.3125rem rgba(0,0,0,0.1);
  transform: scale(0);
  opacity: 0;
  z-index: 10;
}
.pin::before, .pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.0625rem solid var(--Main);
  opacity: 0;
  pointer-events: none;
}
.map-component.is-active .pin {
  animation: pinPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.map-component.is-active .pin::before {
  animation: ripple 2s infinite;
}
.map-component.is-active .pin::after {
  animation: ripple 2s infinite 0.6s;
}
@keyframes pinPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes ripple {
  0% { width: 100%; height: 100%; opacity: 0.8; border-width: 0.125rem; }
  100% { width: 400%; height: 400%; opacity: 0; border-width: 0px; }
}
.pin-1 { top: 72%; left: 11%; animation-delay: 0.2s !important; }
.pin-2 { top: 65%; left: 35%; animation-delay: 0.3s !important; }
.pin-3 { top: 64.5%; left: 39%; animation-delay: 0.35s !important; }
.pin-4 { top: 68.5%; left: 38.5%; animation-delay: 0.4s !important; }
.pin-5 { top: 66.5%; left: 47%; animation-delay: 0.45s !important; }
.pin-6 { top: 66.7%; left: 47.5%; animation-delay: 0.5s !important; }
.pin-7 { top: 64%; left: 61%; animation-delay: 0.55s !important; }
.pin-8 { top: 63%; left: 62%; animation-delay: 0.6s !important; }
.pin-9 { top: 62.8%; left: 60.8%; animation-delay: 0.65s !important; }
.pin-10 { top: 62.5%; left: 60.8%; animation-delay: 0.7s !important; }
.pin-11 { top: 61.6%; left: 61.6%; animation-delay: 0.75s !important; }
.pin-12 { top: 61.2%; left: 59.5%; animation-delay: 0.8s !important; }
.pin-13 { top: 62.5%; left: 64.5%; animation-delay: 0.85s !important; }
.drum-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  font-feature-settings: "tnum";
  font-size: 3.875rem;
  font-weight: 400;
  font-family: oswald;
  letter-spacing: -0.03em;
  color: var(--Main);
}
.drum-column {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  vertical-align: bottom;
  text-align: center;
}
.drum-strip {
  display: block;
  will-change: transform;
}
.drum-strip div {
  height: 1em;
  display: block;
  line-height: 1;
}
.badge-record {
  position: absolute;
  top: 12%;
  left: -2%;
  pointer-events: none;
  z-index: 10;
  width: 230px;
  height: 230px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.badge-label {
  background: var(--Main);
  color: var(--white);
  padding: 0.125rem 0.9375rem;
  border-radius: 0.1875rem;
  font-size: 1.25rem;
  margin-bottom: 0.3125rem;
}
.badge-number {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: var(--Main);
  font-size: 2rem;
  font-weight: 700;
}
.badge-after {
  font-size: 1.5625rem;
  font-weight: 700;
}
.label-national {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1!important;
}
.label-national .count-area {
  font-size: 6.25rem;
  color: var(--Main);
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
.label-national .drum-box {
  font-size: 3.75rem;
  color: var(--Main);
}
.label-national .unit {
  font-size: 1.875rem;
  margin-left: 0.5rem;
}
.label-national .badge-after {
  font-size: 1.875rem;
}

section.topNayami {
  background-color: var(--Back);
  padding: 0!important;
}
.topNayami__inner {
  background-image: url("../img/topContentsnayami-bg-sp.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% 100%;
  padding-top: 5.0625rem;
  padding-bottom: 5.25rem;
}
.topNayami__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.topNayami__icons li {
  background-color: var(--white);
  width: 5.9375rem;
  min-width: 5.9375rem;
  height: 5.9375rem;
  border-radius: 6.25rem;
  text-align: center;
  color: var(--Main);
  font-weight: bold;
  font-size: 1.375rem;
  letter-spacing: 0.07em;
  line-height: 5.9375rem;
  transform: rotate(-25deg);
}
.topNayami__ttl {
  text-align: center;
  color: var(--white);
  font-family: initial;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  padding: 0;
  margin-top: 1.0625rem;
}
.topNayami__list {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-right: auto;
  margin-left: auto;
  padding: 0 2.25rem;
}
.topNayami__list li {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  justify-content: center;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding-left: 1.875rem;
}
.topNayami__list li + li {
  margin-top: 0.75rem;
}
.topNayami__list li::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../img/ico-check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0.375rem;
}
.topNayami__list .color {
  color: var(--Point);
  font-weight: bold;
  font-size: 1.125rem;
}

section.topSolution {
  background-color: #f1f5f8;
  position: relative;
  padding-top: 0;
  padding-bottom: 3.4375rem;
}
.topSolution__catch {
  width: 247px;
  height: 142px;
  margin: 0 auto;
  position: absolute;
  left: initial;
  right: 0;
  transform: initial;
  top: -3.75rem;
  z-index: 2;
}
.topSolution__wrap {
  display: flex;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  gap: 0;
  align-items: flex-start;
}
.topSolution__wrap img {
  object-fit: contain;
}
.topSolution__mainimg {
  width: 163px;
  max-width: 163px;
  position: relative;
  left: 0.625rem;
}
.topSolution__desc {
  padding-top: 4.375rem;
}
.topSolution__desc-ttl {
  font-size: 1.25rem;
  white-space: nowrap;
  position: relative;
  right: 1rem;
}
.topSolution__desc-catch {
  color: var(--Text_red);
  margin-top: 1.25rem;
  font-size: 2.0625rem;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  right: 1rem;
}
.topSolution__desc-catch .sm {
  font-size: 1.5rem;
}
.topSolution__desc-txt {
  line-height: 1.4;
  margin: 0 1.5rem;
  padding: 1.5rem;
  background-color: #fff;
  border: 0.125rem solid var(--Main);
  letter-spacing: 0.1em;
}

section.topLinks {
  background: linear-gradient(to bottom, #4ea5b0, #25927f);
  padding: 3rem 0;
}
.topLinks__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 0.9375rem;
}
.topLinks__list li {
  max-width: initial;
  height: 3.9375rem;
}
.topLinks__list li a {
  text-align: center;
}

section.topAbout {
  padding: 3.125rem 1.5rem;
  background-color: var(--Back);
}
section.topAbout .topContents__inner {
  position: relative;
}
.topAbout__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.topAbout__copy {
  color: var(--Main);
  width: 100%;
  line-height: 1.6;
  font-size: 1.25rem;
  position: relative;
  text-align: center;
  font-weight: initial;
}
.topAbout_txt {
  margin: 1.625rem auto 0;
  line-height: 1.5;
  position: relative;
  z-index: 100;
}
.topAbout_txt p + p {
  margin-top: 0.9375rem;
}
.topAbout_img {
  z-index: 10;
}
.topAbout_img img {
  max-width: 100%;
  object-fit: cover;
  object-position: bottom left;
}
section.topAbout .cm__btn {
  margin-top: 1.875rem;
}


.topClinicFeature__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.875rem;
  margin-top: 2.3125rem;
}
.topClinicFeature__item {
  display: flex;
  align-items: center;
  background-color: var(--Back);
  padding: 1.125rem;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 0.9375rem;
}
.topClinicFeature__item .num {
  font-family: Oswald;
  font-weight: 400;
  font-size: 2.1875rem;
  color: var(--Main);
  margin-right: 1.375rem;
}
.topClinicFeature__item:first-of-type .num,
.topClinicFeature__item:nth-of-type(2) .num {
  margin-right: 2rem;
}
.topClinicFeature__item img {
  display: block;
  width: auto;
  margin: 0 1.625rem 0 0;
}
.topClinicFeature__item:nth-of-type(2) img {
  margin-right: 2.25rem;
}
.topClinicFeature__item:nth-of-type(3) img {
  margin-right: 0.9375rem;
}
.topClinicFeature__item small {
  font-size: 0.875rem;
  font-weight: normal;
  display: block;
  margin-top: 0.25rem;
}
.topClinicFeature__item-txt {
  margin: 0;
  text-align: left;
}
.topClinicFeature .cm__btn {
  margin-top: 2.25rem;
}

section.topReason {
  background-color: var(--Back);
}
.topReason__title .blue {
  color: var(--Main);
}
.topReason__list {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2.3125rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1.875rem;
}
.topReason__item {
  background-color: var(--white);
  padding: 1.625rem 1rem;
  margin: 0 0.875rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  grid-row-gap: 1.125rem;
}
.topReason__title {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid var(--Main);
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
}
.topReason__title span.ttl {
  font-weight: bold;
  line-height: 1.3;
}
.topReason__title .num {
  font-family: oswald;
  font-size: 1.875rem;
  font-weight: 400;
  margin-right: 0.625rem;
  position: relative;
  top: 0.125rem;
}
.topReason__txt {
  letter-spacing: 0.14em;
  text-align: left;
}
.topReason__txt strong {
  background: linear-gradient(transparent 40%, var(--Point) 60%);
}
.topReason__icon img {
  width: 110px;
}
.topReason__note {
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
}

.topFeature__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.topFeature__ttl .sm {
  font-size: 0.875rem;
  line-height: 1.4;
}
.topFeature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 2.8125rem;
  gap: 1rem 0;
}
.topFeature__item {
  background-color: var(--Back);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  text-align: center;
}
.topFeature__item:nth-of-type(4) {
  position: relative;
  left: 5%;
}
.topFeature__item:last-of-type {
  position: relative;
  right: 5%;
}
.topFeature__num {
  color: var(--Main);
  font-family: oswald;
  font-size: 1.6875rem;
  font-weight: 400;
  margin-top: 0.625rem;
  display: block;
}
.topFeature__text {
  font-size: 0.875rem;
  font-weight: bold;
}
.topFeature__box {
  margin: 2.5rem auto 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.topFeature__box-item {
  display: block;
  margin-top: 0.5rem;
}
.topFeature__box-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 325 / 229;
  object-fit: cover;
}
.topFeature__box-itemCopy {
  font-size: 1.25rem;
  text-align: center;
  color: var(--Main);
  padding: 1.5rem 0;
  font-weight: bold;
}
.topFeature__box-itemTxt {
  line-height: 1.75;
}
.topFeature__desc {
  margin: 2.875rem 1.375rem 0;
  letter-spacing: 0.11em;
  line-height: 1.6;
}
.topFeature__desc strong {
  background: linear-gradient(transparent 40%, var(--Point) 60%);
}
.topFeature__btn {
  line-height: 0.6;
}
.topFeature__btn .sm {
  font-size: 0.875rem;
  line-height: 1.1;
}

section.topFlow {
  background-color: var(--Back);
  overflow: hidden;
}
.topFlow__boxList-item {
  background-color: var(--white);
}
.topFlow__boxList-item img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}
.topFlow__boxList-itemCopy {
  font-size: 1.25rem;
  text-align: left;
  color: var(--Main);
  padding: 1.5rem 1rem 1rem;
  font-weight: bold;
  line-height: 1;
  display: flex;
  justify-content: start;
  align-items: center;
}
.topFlow__boxList-itemTxt {
  line-height: 1.75;
  padding: 0 1rem 1.5rem;
  letter-spacing: 0.03em;
}
.topFlow__boxList-item .num {
  font-family: Oswald;
  font-weight: 400;
  font-size: 2.1875rem;
  margin-right: 0.75rem;
  position: relative;
}
.topFlow__boxList-item .num::after {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 2.1875rem;
  position: absolute;
  left: 2.3125rem;
  top: 0.125rem;
  background-color: var(--Main);
}
.topFlow__splide .splide__pagination__page.is-active {
  background-color: var(--Main);
}
.topFlow__splide .splide__pagination {
  position: relative;
  bottom: 0;
  padding: 1.25rem 0 0 0;
}

section.topVideos {
  background-color: var(--Back_green);
}
.topVideos .cloud__title {
  font-weight: bold;
  position: relative;
  font-size: 1.5rem;
  text-align: center;
  padding-top: 0;
  margin-top: 0;
}
.topVideos .cloud__eng {
  color: var(--Main);
  font-size: 1.125rem;
  position: static;
  display: block;
  margin-bottom: 0.75rem;
  text-align: center;
  top: 0;
  font-weight: 400;
  font-family: oswald;
}
.topVideos .cta {
  text-align: center;
}
.topVideos .btn {
  display: block;
  position: relative;
  background-color: var(--Main);
  border-radius: 0.5rem;
  height: 3.875rem;
  width: 340px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3rem;
}
.topVideos .btn span:not([class]) {
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
  text-decoration: none !important;
  position: relative;
  transition: ease all 0.2s;
  letter-spacing: 0.2em;
}
.topVideos .btn.youtube .icon {
  width: 1.25rem;
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
}
.topVideos .btn.youtube:hover span {
  opacity: 0.7;
}
.topVideos .splide__arrow {
  background: var(--Main);
  opacity: 1;
  width: 1.171875rem;
  height: 1.171875rem;
  border-radius: 50%;
}
.topVideos .splide__arrow svg {
  fill: var(--white);
}
.topVideos .splide__track {
  margin-bottom: 1.25rem;
}
.topVideos .splide__pagination {
  position: relative;
  bottom: 0;
  padding: 0 0.625rem;
}
.topVideos .splide__pagination__page {
  background: var(--Main);
  opacity: 0.2;
}
.topVideos .splide__pagination__page.is-active {
  background: var(--Main);
  opacity: 1;
}
@media (min-width: 768px) {
  .topVideos .splide__arrow {
    width: 3.125rem;
    height: 3.125rem;
  }
  .topVideos .splide__arrow svg {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}
.video__section {
  overflow: hidden;
}
.video__splide {
  width: calc(100% + (1.25rem * 2 ));
  overflow: visible;
  margin-left: calc(1.25rem * -1);
  margin-bottom: 1.875rem;
}
.video__splide .splide__track {
  padding-top: 0.25rem!important;
  padding-left: 1.25rem!important;
  padding-right: 1.25rem!important;
}
.video__card {
  background: #FFF;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.51,.4,.36,1);
}
.video__card:hover {
  transform: translateY( -0.25rem );
}
.video__thumb {
  aspect-ratio: 220 / 120;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video__thumb .youtube__icon {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  width: 33.18%;
  height: auto;
}
.video__thumb img {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video__text {
  padding: 0.9375rem;
}
.video__text p {
  font-size: 0.75rem;
  line-height: 1.48;
  color: var(--Text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shorts__splide {
  width: calc(100% + (1.25rem * 2 ));
  overflow: visible;
  margin-left: calc(1.25rem * -1);
  margin-bottom: 1.875rem;
}
.shorts__splide .splide__track {
  padding-top: 0.25rem!important;
  padding-left: 1.25rem!important;
  padding-right: 1.25rem!important;
}
.shorts__card {
  background: var(--Back);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.51,.4,.36,1);
}
.shorts__thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
  width: 100%;
  aspect-ratio: 9 / 16;
}
.shorts__thumb .youtube__icon {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  width: 33.18%;
  height: auto;
}
.shorts__thumb img {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

section.topNews {
  background-color: #f7f7f7;
}
.topNews .topContents__h2::after {
  display: block;
}
.topNews__area {
  margin-top: -1rem;
}
.topNews__item {
  border-bottom: 0.0625rem solid var(--gray);
}
.topNews__item a {
  text-align: left;
  display: block;
  width: 100%;
  padding: 1.5rem 1rem;
  box-sizing: border-box;
  position: relative;
  color: var(--Text);
  text-decoration: none;
  transition: all 0.2s;
}
.topNews__item a::after {
  content: "";
  background-image: url(../img/ico-arrow-bl-r.svg);
  background-repeat: no-repeat;
  width: 1.875rem;
  height: 1.875rem;
  position: absolute;
  right: 0;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
}
.topNews__item a time {
  display: block;
  line-height: 1.5;
  color: var(--Text_Main);
  font-weight: 400;
  font-size: 1.125rem;
  font-family: oswald;
  margin-bottom: 1rem;
}
.topNews__item a:hover, .topNews__item a:active {
  background-color: var(--Accent-light);
  padding-left: 2rem !important;
  color: var(--Accent-color);
}
.topNews__item-txt {
  display: block;
  line-height: 1.5;
  margin-top: 0.625rem;
  padding-right: 2rem;
}


section.topClinic {
  padding: 3.125rem 1.5rem;
}
.topClinic__area {
  margin-top: 0;
  text-align: right;
}
.topClinic details {
  background-color: var(--Back_green);
  overflow: hidden;
  transition: var(--transition-main);
  margin-top: 0.375rem;
  text-align: left;
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  box-shadow: 0.0625rem 0.0625rem 0.1875rem var(--gray);
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  padding: 1rem 2rem;
}
.topClinic summary {
  transition: var(--transition-main);
  color: var(--Main);
  font-size: 1rem;
  font-weight: bold;
  padding: 0.1875rem 0;
  list-style: none;
}
.topClinic summary::marker {
  content: none;
}
.topClinic details .content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
}
.topClinic details[open] .content {
  grid-template-rows: 1fr;
  padding: 1rem 0 0.625rem;
}
.topClinic details summary::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../img/ico-plus-bl.svg);
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 2rem;
  top: 1.375rem;
  background-repeat: no-repeat;
  background-position: center;
  transition: all ease 0.2s;
}
.topClinic details[open] summary::after {
  background-image: url(../img/ico-minus-bl.svg);
}
.topClinic details .content ul {
  overflow: hidden;
  opacity: 0;
  transform: translateY( -0.625rem );
  transition: var(--transition-main);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.375rem;
}
.topClinic details[open] .content ul {
  opacity: 1;
  transform: translateY(0);
}
.topClinic details ul li {
  height: 3.3125rem;
  width: 100%;
}
.topClinic details ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  text-decoration: none;
  background-color: var(--white);
  border-radius: 0.25rem;
}

section.TopColumn {
  padding: 3.125rem 1.5rem;
}
.TopColumn h2 {
  text-align: center;
}
.TopColumn__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.TopColumn__box a {
  color: inherit;
  text-decoration: none;
  width: 100%;
  display: block;
  overflow: hidden;
  transition: var(--transition-main);
}
.TopColumn__box a:nth-last-of-type(-n + 3) {
  display: none;
}
.TopColumn__box img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.9375rem;
  width: auto;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
}
.TopColumn__box a:hover, .TopColumn__box a:active {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.TopColumn__box a:hover img, .TopColumn__box a:active img {
  transform: scale(1.05);
}

@media screen and (min-width: 769px) {
  .topContents__inner {
    width: 1020px;
    padding: 0;
  }
  .topContents section {
    padding: 100px 0;
  }
  .topContents__h2 {
    font-size: 40px;
  }
  .topContents__h2::before {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .topCase .topContents__h2::before,
  .topClinicFeature .topContents__h2::before,
  .topFeature .topContents__h2::before,
  .topPrice .topContents__h2::before,
  .topAbout .topContents__h2::before,
  .topReason .topContents__h2::before {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .topMV {
    height: 665px;
    aspect-ratio: auto;
    margin-top: 0;
    background-position: center;
  }
  .topMV__inner {
    background-image: url(../img/mv-pc.png);
    background-size: cover;
    background-position: center;
  }
  .topMV__innerArea {
    width: 1020px;
    height: 665px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .topMV__copy {
    position: static; /* 自由配置をリセット */
  }
  .topMV__copy-txt {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 0;
  }
  .topMV__copy-ttl {
    font-size: 56px;
    line-height: 1.6;
  }
  .topMV__copy-ttl > span {
    padding: 8px 12px;
  }
  .topMV__bnr {
    width: 447px;
    position: static;
    margin: 15px 0 0;
  }
  .topMV__btn {
    width: 390px;
    max-width: none;
    margin: 40px auto;
  }

  section.topClinicCount {
    padding: 100px 0 0;
  }
  .label-national {
    font-size: 3.625rem;
  }
  .label-national .count-area {
    font-size: 6.25rem;
  }
  .label-national .drum-box {
    font-size: 6.25rem;
  }
  .label-national .unit {
    font-size: 3.625rem;
    margin-left: 0.5rem;
  }
  .label-national .badge-after {
    font-size: 3.625rem;
  }

  .topNayami__inner {
    background-image: url(../img/topContentsnayami-bg.png);
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 200px;
  }
  .topNayami__ttl {
    font-size: 40px;
    margin-top: 32px;
  }
  .topNayami__list {
    max-width: 532px;
    padding: 0;
  }
  .topNayami__list li {
    font-size: 22px;
    padding-left: 40px;
  }
  .topNayami__list li::before {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }

  section.topSolution {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .topSolution__catch {
    width: 442px;
    left: 50%;
    right: initial;
    transform: translateX(-50%);
    top: -160px;
  }
  .topSolution__wrap {
    max-width: 807px;
    gap: 20px;
    align-items: stretch;
  }
  .topSolution__mainimg {
    width: 267px;
    max-width: 19vw;
    left: 0;
  }
  .topSolution__desc {
    padding-top: 52px;
  }
  .topSolution__desc-ttl {
    font-size: 32px;
    white-space: normal;
    right: 0;
  }
  .topSolution__desc-catch {
    font-size: 54px;
    text-align: left;
    right: 0;
  }
  .topSolution__desc-catch .sm {
    font-size: 40px;
  }
  .topSolution__desc-txt {
    line-height: 2;
    margin: 22px 0 0;
    padding: 0;
    background-color: transparent;
    border: none;
  }

  section.topLinks {
    padding: 48px 0;
  }
  .topLinks__list {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 540px;
    padding: 0;
  }
  .topLinks__list li {
    max-width: 175px;
  }

  .topAbout__wrap {
    flex-direction: row;
    gap: 30px;
  }
  .topAbout__copy {
    width: 338px;
    line-height: 1.5;
    font-size: 32px;
    letter-spacing: 1.5px;
    font-weight: bold;
    text-align: left;
  }
  .topAbout_txt {
    width: 520px;
    margin: 16px 0 0;
    line-height: 2;
  }

  .topClinicFeature__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 18px;
    margin-top: 76px;
    flex-direction: row;
  }
  .topClinicFeature__item {
    display: inline-block;
    padding: 20px 20px 25px;
    text-align: center;
  }
  .topClinicFeature__item .num {
    margin-right: 0;
  }
  .topClinicFeature__item:first-of-type .num,
  .topClinicFeature__item:nth-of-type(2) .num {
    margin-right: 0;
  }
  .topClinicFeature__item img {
    margin: 10px auto 0;
  }
  .topClinicFeature__item:nth-of-type(2) img,
  .topClinicFeature__item:nth-of-type(3) img {
    margin-right: auto;
  }
  .topClinicFeature__item-txt {
    margin: 16px auto;
    text-align: center;
  }

  section.topReason {
    padding-top: 100px;
  }
  .topReason__list {
    max-width: 790px;
    margin-top: 58px;
    gap: 30px;
  }
  .topReason__item {
    margin: 0 auto;
    padding: 28px 32px 38px;
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    grid-column-gap: 48px;
    grid-row-gap: 0;
  }
  .topReason__title {
    padding-bottom: 8px;
    font-size: inherit;
    margin-bottom: 22px;
  }
  .topReason__title span.ttl {
    line-height: inherit;
  }
  .topReason__icon {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .topReason__content {
    grid-column: 2;
  }

  .topFeature__inner {
    max-width: 1000px;
  }
  .topFeature__ttl .sm {
    font-size: 22px;
  }
  .topFeature__list {
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 60px;
  }
  .topFeature__item {
    width: 187px;
    height: 187px;
  }
  .topFeature__item:nth-of-type(4),
  .topFeature__item:last-of-type {
    position: static;
  }
  .topFeature__num {
    font-size: 42px;
    margin-top: 30px;
  }
  .topFeature__text {
    font-size: 20px;
  }
  .topFeature__box {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .topFeature__desc {
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
  }

  .topFlow__boxList-item img {
    height: 120px;
  }
  .topFlow__boxList-itemCopy {
    padding: 24px 0;
  }
  .topFlow__boxList-itemTxt {
    padding: 0 28px 24px;
  }

  .topVideos .cloud__title {
    font-size: 40px;
    margin: 0 0 24px;
  }
  .topVideos .cloud__eng {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }

  .topNews .topContents__h2::after {
    display: none;
  }
  .topNews__area {
    margin-top: 0;
  }
  .topNews__item a {
    display: flex;
    flex-direction: column;
    padding: 32px 44px !important;
    transition: all 0.3s ease !important;
    border-radius: 5px;
  }

  .topNews__item a time {
    position: static;
    margin-bottom: 0;
  }
  .topNews__item-txt {
    padding-right: 0;
  }

  .topClinic details {
    margin-top: 12px;
    display: inline-block;
    padding: 0;
  }
  .topClinic summary {
    font-size: 18px;
    padding: 32px 44px;
  }
  .topClinic details summary::after {
    top: 32px;
    width: 24px;
    height: 24px;
  }
  .topClinic details .content {
    padding: 0 44px 32px 44px;
  }
  .topClinic details[open] .content {
    padding: 0 44px 32px 44px;
  }
  .topClinic details .content ul {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  section.TopColumn {
    margin-top: 0;
    margin-bottom: 0;
  }
  .TopColumn__box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }
  .TopColumn__box a:nth-last-of-type(-n + 3) {
    display: block;
  }
  .TopColumn__box img {
    width: 320px;
    height: 198px;
  }
}
