@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
figure,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

em,
strong {
  font-style: normal;
  font-weight: normal;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.header.is-drawer-open {
  background-color: #0060a0;
  box-shadow: none;
}

.header__inner {
  height: 60px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1180px) {
  .header__inner {
    height: 80px;
    padding: 8px 10px;
    max-width: 1200px;
    margin-inline: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 165px;
  }
}

.header__logo {
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 1180px) {
  .header__logo {
    flex: none;
    width: 270px;
  }
}

.header__logo-link {
  display: block;
  width: 270px;
}

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

.drawer-icon {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background-color: #ffffff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 15px;
  transform: translateX(-50%) rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 15px;
  transform: translateX(-50%) rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 2px;
  background-color: #1391e6;
  border-radius: 999px;
  transition: top 0.3s, transform 0.3s, opacity 0.3s;
}

.drawer-icon__bar:nth-child(2) {
  top: 15px;
}

.drawer-icon__bar:nth-child(3) {
  top: 22px;
}

.header__contents {
  display: none;
}
@media screen and (min-width: 1180px) {
  .header__contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    min-width: 0;
    gap: 32px;
  }
}

@media screen and (min-width: 1180px) {
  .header__nav {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media screen and (min-width: 1180px) {
  .header__nav-list {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
}

@media screen and (min-width: 1180px) {
  .header__nav-item {
    flex-shrink: 0;
  }
}

@media screen and (min-width: 1180px) {
  .header__nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    color: #393939;
    transition: color 0.3s;
  }
}
@media (any-hover: hover) {
  .header__nav-link:hover {
    color: #1391e6;
  }
  .header__nav-link:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background-color: currentColor;
  }
}
@media screen and (min-width: 1180px) {
  .header__nav-link.is-current {
    color: #1391e6;
  }
}
@media screen and (min-width: 1180px) {
  .header__nav-link.is-current::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background-color: currentColor;
  }
}

@media screen and (min-width: 1180px) {
  .header__nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 1180px) {
  .header__nav-icon-svg {
    display: block;
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 1180px) {
  .header__nav-item:nth-child(1) .header__nav-icon,
  .header__nav-item:nth-child(2) .header__nav-icon,
  .header__nav-item:nth-child(3) .header__nav-icon,
  .header__nav-item:nth-child(4) .header__nav-icon,
  .header__nav-item:nth-child(5) .header__nav-icon,
  .header__nav-item:nth-child(6) .header__nav-icon {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 1180px) {
  .header__nav-text {
    color: currentColor;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    text-align: center;
  }
}

@media screen and (min-width: 1180px) {
  .header__info {
    width: 261px;
    flex: 0 0 261px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

@media screen and (min-width: 1180px) {
  .header__address {
    color: #393939;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1180px) {
  .header__tel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
  }
}

@media screen and (min-width: 1180px) {
  .header__tel-icon {
    width: 28px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1180px) {
  .header__tel-icon img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 1180px) {
  .header__tel-number {
    color: #1391e6;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.64px;
    white-space: nowrap;
  }
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: calc(100dvh - 60px);
  background-color: #0060a0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.drawer-content.is-checked {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-content__menu {
  height: 100%;
  padding: 171.5px 60px 60px;
}

.drawer-content__item {
  border-top: 1px dotted #ffffff;
}

.drawer-content__item:last-child {
  border-bottom: 1px dotted #ffffff;
}

.drawer-content__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}

.drawer-content__main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.drawer-content__icon {
  width: 14px;
  flex-shrink: 0;
}
.drawer-content__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.drawer-content__text {
  flex: 1;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.drawer-content__arrow {
  width: 14px;
  flex-shrink: 0;
}
.drawer-content__arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.header {
  z-index: 1200;
}

.header.is-drawer-open {
  background-color: transparent;
  box-shadow: none;
}

/* 共通：footer */
.footer {
  position: relative;
  padding-bottom: 0;
}

.footer__deco-top {
  width: 100%;
  height: 32px;
  background-image: url("../img/footer-deco-top.png");
  background-repeat: repeat-x;
  background-position: -22.5px center;
  background-size: 84px 32px;
}
@media screen and (min-width: 900px) {
  .footer__deco-top {
    background-position: center center;
  }
}

.footer__main {
  background: #dff1fd;
  padding: 13px 10px 60px;
}
@media screen and (min-width: 900px) {
  .footer__main {
    padding: 56px 24px 80px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__main {
    padding: 56px 40px 80px;
  }
}
@media screen and (min-width: 1280px) {
  .footer__main {
    padding: 56px 140px 80px;
  }
}

.footer__access {
  background: #fff;
  border-radius: 8px;
  padding: 32px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .footer__access {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
    border-radius: 16px;
    padding: 40px 24px 32px;
    gap: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__access {
    border-radius: 20px;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 385px);
    column-gap: 24px;
    row-gap: 20px;
    align-items: start;
  }
}
@media screen and (min-width: 1280px) {
  .footer__access {
    padding: 40px 49px;
    grid-template-columns: 477px 385px;
    column-gap: 40px;
  }
}

.footer__clinic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
@media screen and (min-width: 900px) {
  .footer__clinic {
    width: 100%;
    max-width: 477px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__clinic {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }
}

.footer__logo {
  display: block;
  width: 309px;
  max-width: 100%;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    width: min(405px, 100%);
  }
}

.footer__address {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .footer__address {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    text-align: center;
  }
}

.footer__tel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .footer__tel-wrap {
    width: 100%;
    max-width: 261px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__tel-wrap {
    grid-column: 1;
    grid-row: 2;
  }
}

.footer__tel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1391e6;
}

.footer__tel-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.footer__tel-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/icon-tel.svg") no-repeat center center/contain;
}

.footer__tel-number {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.64px;
}

.footer__tel-note {
  color: #1391e6;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2px;
  text-align: center;
}

.footer__buttons {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .footer__buttons {
    gap: 20px;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1200px) {
  .footer__buttons {
    grid-column: 1;
    grid-row: 3;
    flex-wrap: nowrap;
  }
}

.footer__button {
  width: 150px;
  height: 38px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .footer__button {
    width: min(220px, (100% - 20px) / 2);
    height: 56px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__button {
    width: 220px;
  }
}

.footer__button--reserve {
  background: #1391e6;
  color: #fff;
}

.footer__button--contact {
  background: #fff;
  border: 1px solid #1391e6;
  color: #1391e6;
}

.footer__button-icon {
  position: relative;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .footer__button-icon {
    width: 24px;
    height: 24px;
  }
}

.footer__button-icon--reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/icon-reserve.svg") no-repeat center center/contain;
}

.footer__button-icon--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/icon-contact.svg") no-repeat center center/contain;
}

.footer__button-text {
  white-space: nowrap;
}

.footer__schedule {
  width: 335px;
  max-width: 100%;
}
.footer__schedule picture,
.footer__schedule img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__schedule {
    width: 100%;
    max-width: 477px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__schedule {
    grid-column: 1;
    grid-row: 4;
    max-width: none;
  }
}

.footer__map {
  width: 315px;
  max-width: 100%;
}
.footer__map picture,
.footer__map img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__map {
    width: 100%;
    max-width: 385px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__map {
    grid-column: 2;
    grid-row: 1/5;
    width: 100%;
    max-width: 385px;
    align-self: start;
    justify-self: end;
  }
}

.footer__nav {
  margin-top: 42px;
  padding-inline: 10px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .footer__nav {
    width: 100%;
    max-width: 1000px;
    margin: 43px auto 0;
    padding-inline: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
  }
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__nav-title {
  color: #393939;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.footer__subnav-columns {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.footer__subnav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__subnav-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
.footer__subnav-item a::before {
  content: "";
  width: 6px;
  height: 12px;
  flex-shrink: 0;
  background: url("../img/icon-footer-arrow.svg") no-repeat center center/contain;
}

.footer__copy {
  background: #1391e6;
  padding: 13px 20px 73px;
}
@media screen and (min-width: 900px) {
  .footer__copy {
    padding: 16px 20px;
  }
}
@media screen and (min-width: 1180px) {
  .footer__copy {
    padding: 16px 20px;
  }
}

.footer__copy-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.reserve-fixed {
  display: none;
}
@media screen and (min-width: 768px) {
  .reserve-fixed {
    position: fixed;
    top: 170px;
    right: 0;
    z-index: 100;
    width: 92px;
    min-height: 120px;
    padding: 20px 17px;
    border-radius: 20px 0 0 20px;
    background: #1391e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}

.reserve-fixed__icon {
  width: 52px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}
.reserve-fixed__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reserve-fixed__text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.reserve-fixed__text-line {
  display: block;
}

.media__button-arrow {
  color: #1391e6;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  display: inline-block;
  border-radius: 24px;
  border: 1px solid #1391e6;
  background: #fff;
  padding: 11px 26px 11px 26px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 176px;
  text-align: center;
  position: relative;
}
.media__button-arrow::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-right.svg) no-repeat center center;
  background-size: contain;
  transition: right 0.3s ease;
}
.media__button-arrow:hover {
  background-color: #1391e6;
  color: #fff;
  border-color: #1391e6;
}
.media__button-arrow:hover::after {
  right: 7px;
  background-image: url(../img/arrow-right-white.svg);
}

.button-c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 10px;
  border-radius: 30px;
  min-width: 220px;
  border: 1px solid #1391e6;
  background-color: #fff;
  color: #1391e6;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.button-c::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/icon-mail-blue.svg) no-repeat center center;
  background-size: contain;
  transition: background-image 0.3s ease;
}
.button-c:hover {
  background-color: #1391e6;
  color: #fff;
  border-color: #1391e6;
}
.button-c:hover::before {
  background-image: url(../img/icon-mail-white.svg);
}

.button-rーfixed {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  width: 92px;
  height: 120px;
  padding: 20px 17px;
  background-color: #1391e6;
  color: #fff;
  border-radius: 20px 0 0 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-rーfixed::before {
  content: "";
  display: block;
  width: 52px;
  height: 32px;
  background: url(../img/icon-pc-white-big.svg) no-repeat center center;
  background-size: contain;
}
.button-rーfixed:hover {
  background-color: #0060a0;
}

.button-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 10px;
  border-radius: 30px;
  min-width: 220px;
  border: 1px solid #1391e6;
  background-color: #1391e6;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.button-r::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../img/icon-pc-white.svg) no-repeat center center;
  background-size: contain;
  transition: background-image 0.3s ease;
}
.button-r:hover {
  background-color: #0060a0;
  color: #fff;
  border-color: #0060a0;
}

.heading {
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
}

.heading-title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 1.6px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .heading-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 2.24px;
    gap: 28px;
  }
}
.heading-title::before, .heading-title::after {
  content: "";
  display: block;
  width: 49px;
  height: 14.627px;
  aspect-ratio: 67/20;
  background: url("../img/title-deco.svg") no-repeat center/contain;
}

.breadcrumb {
  padding-top: 8px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .breadcrumb {
    padding-top: 12px;
  }
}

.breadcrumb__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .breadcrumb__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 90px;
  }
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.breadcrumb__item {
  color: #393939;
}

.breadcrumb__link {
  color: #888;
  transition: opacity 0.3s;
}
.breadcrumb__link:hover {
  opacity: 0.7;
}

.breadcrumb__separator {
  color: #393939;
}

.breadcrumb__current {
  color: #393939;
}

.mv {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 84px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .mv {
    padding-top: 40px;
    padding-bottom: 85px;
  }
}

.mv__inner {
  width: 100%;
}

.mv__top {
  position: relative;
}

.mv__visual-wrap {
  position: relative;
  width: min(335px, 100% - 40px);
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .mv__visual-wrap {
    width: min(1214px, 100% - 66px);
  }
}

.mv__visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  padding-right: 16px;
  margin-right: -16px;
  padding-left: 16px;
  margin-left: -16px;
}
@media screen and (min-width: 900px) {
  .mv__visual {
    border-radius: 20px;
    padding-right: 28px;
    margin-right: -28px;
    padding-left: 28px;
    margin-left: -28px;
  }
}

.mv__visual .swiper-wrapper {
  height: 100%;
}

.mv__visual .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .mv__visual .swiper-slide {
    border-radius: 20px;
  }
}

.mv__visual .swiper-slide img {
  width: 100%;
  height: 447px;
  display: block;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .mv__visual .swiper-slide img {
    height: 520px;
  }
}

.mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .mv__overlay {
    border-radius: 20px;
  }
}

.mv__copy {
  position: absolute;
  left: 20px;
  bottom: 24px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .mv__copy {
    left: 90px;
    bottom: 55px;
  }
}

.mv__copy-line {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 4px 6px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 900px) {
  .mv__copy-line {
    font-size: 32px;
    letter-spacing: 2.56px;
    line-height: 1.5;
  }
}
.mv__copy-line + .mv__copy-line {
  margin-top: 10px;
}

.mv__copy-border {
  display: block;
  height: 2px;
  margin-top: 2px;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  filter: drop-shadow(4px 6px 6px rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 900px) {
  .mv__copy-border {
    height: 4px;
    background-image: radial-gradient(circle, #fff 2px, transparent 2px);
    background-size: 10px 4px;
    margin-top: 2px;
  }
}
.mv__copy-border--short {
  width: 239px;
}
@media screen and (min-width: 900px) {
  .mv__copy-border--short {
    width: 374px;
  }
}
.mv__copy-border--long {
  width: 264px;
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .mv__copy-border--long {
    width: 414px;
    margin-top: 6px;
  }
}

.mv__arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .mv__arrow {
    width: 48px;
    height: 48px;
  }
}
.mv__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
}
@media screen and (min-width: 900px) {
  .mv__arrow::before {
    width: 10px;
    height: 10px;
  }
}

.mv__arrow--prev {
  left: 1px;
}
@media screen and (min-width: 900px) {
  .mv__arrow--prev {
    left: 6px;
  }
}
.mv__arrow--prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.mv__arrow--next {
  right: 1px;
}
@media screen and (min-width: 900px) {
  .mv__arrow--next {
    right: 6px;
  }
}
.mv__arrow--next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.mv__pagination {
  position: absolute;
  left: -16px !important;
  bottom: 14px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .mv__pagination {
    left: -20px !important;
    bottom: 0;
    gap: 10px;
  }
}
.mv__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0;
  border-radius: 50%;
  background: #b7b7b7;
  opacity: 1;
}
@media screen and (min-width: 900px) {
  .mv__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.mv__pagination .swiper-pagination-bullet-active {
  background: #1391e6;
}

.mv__bottom {
  width: min(335px, 100% - 40px);
  margin: -24px auto 0;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 900px) {
  .mv__bottom {
    width: calc(100% - 40px);
    max-width: 1280px;
    margin-top: -25px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 477px);
    column-gap: clamp(24px, 4vw, 60px);
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .mv__bottom {
    width: 1280px;
    max-width: none;
    grid-template-columns: 542px 477px;
    column-gap: 60px;
  }
}

.mv__news {
  margin-top: 39px;
  min-width: 0;
}
@media screen and (min-width: 900px) {
  .mv__news {
    width: 100%;
    max-width: none;
    margin-top: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__news {
    width: 542px;
  }
}

.mv__news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-left: 12px;
}

.mv__news-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.mv__news-title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 900px) {
  .mv__news-title {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.mv__news-title-en {
  color: #1391e6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 900px) {
  .mv__news-title-en {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
}

.mv__news-archive {
  color: #888;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 2px;
  flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .mv__news-archive {
    font-size: 12px;
  }
}

.mv__news-link {
  width: 100%;
  margin-top: 6px;
  padding: 10px 30px 10px 6px;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  display: flex;
  align-items: center;
  gap: 23px;
  position: relative;
  min-width: 0;
}
@media screen and (min-width: 900px) {
  .mv__news-link {
    margin-top: 6px;
    padding: 10px 32px 10px 9px;
    gap: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__news-link {
    width: 542px;
    gap: 23px;
  }
}

.mv__news-date {
  color: #393939;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  flex-shrink: 0;
}

.mv__news-text {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  min-width: 0;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mv__news-arrow {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .mv__news-arrow {
    right: 9px;
  }
}
.mv__news-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid #393939;
  border-right: 2px solid #393939;
  transform: rotate(45deg);
}

.mv__schedule {
  width: 100%;
  max-width: 477px;
  justify-self: end;
}
@media screen and (min-width: 1200px) {
  .mv__schedule {
    width: 477px;
  }
}
.mv__schedule img {
  width: 100%;
  height: auto;
  display: block;
}

.media {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
}
@media screen and (min-width: 900px) {
  .media {
    padding-top: 180px;
    padding-bottom: 108px;
  }
}

.media__deco {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 0;
  width: 556px;
  height: 308px;
  pointer-events: none;
}
.media__deco picture,
.media__deco img {
  display: block;
  width: 100%;
  height: 100%;
}
.media__deco img {
  object-fit: contain;
}
@media screen and (min-width: 900px) {
  .media__deco {
    top: 0;
    left: 50%;
    width: 1310px;
    height: auto;
    transform: translateX(calc(-50% + 465px));
  }
  .media__deco picture,
  .media__deco img {
    width: 100%;
    height: auto;
  }
}

.media__inner {
  position: relative;
  padding-inline: 20px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .media__inner {
    margin-inline: auto;
    padding-inline: 0;
  }
}

/* =============================
  レイアウト本体
============================= */
.media__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .media__body {
    width: 100%;
    position: relative;
    z-index: 2;
    flex-direction: row-reverse;
    align-items: center;
    gap: 7.265625%;
    justify-content: flex-end;
  }
}

/* =============================
  テキスト
============================= */
.media__textgroup {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .media__textgroup {
    flex: 0 0 31.8%;
  }
}

.media__heading-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 900px) {
  .media__heading-group {
    gap: 24px;
  }
}

.media__label {
  color: #1391e6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .media__label {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.media__title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 900px) {
  .media__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.media__text {
  margin-top: 30px;
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 900px) {
  .media__text {
    margin-top: 39px;
  }
}
.media__text p + p {
  margin-top: 1.7em;
}

.media__button {
  margin-top: 30px;
  align-self: flex-start;
}
@media screen and (min-width: 900px) {
  .media__button {
    margin-top: 39px;
  }
}

/* =============================
  画像
============================= */
.media__image {
  width: 334px;
  margin-top: 40px;
  overflow: hidden;
  margin-left: -20px;
}
.media__image img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .media__image {
    width: min(80%, 640px);
  }
  .media__image img {
    height: 438px;
    object-fit: cover;
  }
}
@media screen and (min-width: 900px) {
  .media__image {
    flex: 0 0 50%;
    height: 100%;
    max-height: 438px;
    margin-top: 0;
  }
  .media__image img {
    width: 100%;
    height: 438px;
    object-fit: cover;
  }
}

.recommend {
  padding-top: 61px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .recommend {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.recommend__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .recommend__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__inner {
    max-width: 1040px;
    padding-inline: 20px;
  }
}

@media screen and (min-width: 900px) {
  .recommend__box {
    padding: 0;
  }
}

.recommend__head {
  text-align: center;
}

.recommend__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 900px) {
  .recommend__title {
    gap: 20px;
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__title {
    gap: 28px;
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.recommend__title::before,
.recommend__title::after {
  content: "";
  display: block;
  width: 49px;
  height: 14.627px;
  background: url("../img/heading-stripe-blue.svg") no-repeat center center/contain;
  flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .recommend__title::before,
  .recommend__title::after {
    width: 58px;
    height: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__title::before,
  .recommend__title::after {
    width: 67px;
    height: 20px;
  }
}

.recommend__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 900px) {
  .recommend__list {
    max-width: 1000px;
    margin-inline: auto;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 56px;
    align-items: start;
    justify-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__list {
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 37px;
    row-gap: 0;
  }
}

.recommend-card {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
}

.recommend-card__sub-image,
.recommend-card__icon,
.recommend-tag,
.recommend-card__body {
  max-width: 290px;
  margin-inline: auto;
}

.recommend-card__sub-image {
  width: 182px;
}
.recommend-card__sub-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .recommend-card__sub-image {
    width: 182px;
    height: 32.6px;
  }
}

.recommend-card__icon {
  width: 227.046px;
  height: 220.111px;
  margin-top: 15px;
}
.recommend-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.recommend-tag {
  position: relative;
  width: 100%;
  min-height: 44px;
  padding: 6px 16px;
  border-radius: 22px;
  background: #1391e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -27.1px;
}
@media screen and (min-width: 900px) {
  .recommend-tag {
    margin-top: -28px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend-tag {
    width: 290px;
    padding: 6px 21px;
  }
}

.recommend-tag__text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.44px;
  white-space: nowrap;
}
@media screen and (min-width: 1200px) {
  .recommend-tag__text {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}

.recommend-tag__triangle {
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%);
  width: 20.64px;
  height: 26.38px;
}
.recommend-tag__triangle img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .recommend-tag__triangle {
    width: 21px;
    height: 26px;
    bottom: -17px;
  }
}

.recommend-card__body {
  width: 100%;
}

.recommend-card__text {
  margin-top: 22px;
  color: #393939;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
}

.recommend-card__text--accent {
  color: #ee5a6d;
}

.medical-guide {
  position: relative;
}

.medical-guide__bg-top {
  display: block;
  width: 100%;
  line-height: 0;
}
.medical-guide__bg-top img {
  display: block;
  width: 100%;
  height: auto;
}

.medical-guide__wrap {
  position: relative;
}

.medical-guide__main {
  position: relative;
  z-index: 0;
  background: #dff1fd;
  padding-top: 30px;
  padding-bottom: 62px;
}
@media screen and (min-width: 900px) {
  .medical-guide__main {
    padding-top: 88px;
    padding-bottom: 117px;
  }
}

.medical-guide__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .medical-guide__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 140px;
  }
}

.medical-guide__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media screen and (min-width: 900px) {
  .medical-guide__heading {
    gap: 28px;
  }
}

.medical-guide__heading-deco {
  width: 49px;
  height: 14.627px;
  flex-shrink: 0;
}
.medical-guide__heading-deco img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .medical-guide__heading-deco {
    width: 67px;
    height: 20px;
  }
}

.medical-guide__title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .medical-guide__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.medical-guide__cards {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .medical-guide__cards {
    margin-top: 60px;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}

.medical-card {
  position: relative;
  width: 100%;
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 900px) {
  .medical-card {
    width: calc((100% - 40px) / 2);
    max-width: 460px;
    height: 290px;
  }
}

.medical-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.medical-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.medical-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s ease;
}

.medical-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 2px solid #fff;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.medical-card__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.medical-card__heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.medical-card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 900px) {
  .medical-card__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.medical-card__line {
  width: 30px;
  height: 2px;
  border-radius: 30px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .medical-card__line {
    width: 40px;
  }
}

.medical-card__text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.96px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .medical-card__text {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.medical-guide__text-box {
  margin-top: 40px;
  padding: 17px 20px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .medical-guide__text-box {
    max-width: 1000px;
    margin-top: 50px;
    margin-inline: auto;
    padding: 35px 40px;
  }
}

.medical-guide__text {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
.medical-guide__text + .medical-guide__text {
  margin-top: 0;
}

.medical-guide__text--accent {
  color: #ee5a6d;
}

.medical-guide__bg-bottom {
  position: absolute;
  left: 0;
  bottom: -7.47vw;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .medical-guide__bg-bottom {
    bottom: -7.5vw;
  }
}
.medical-guide__bg-bottom img {
  display: block;
  width: 100%;
  height: auto;
}

@media (any-hover: hover) {
  .medical-card:hover .medical-card__image img {
    transform: scale(1.1);
  }
  .medical-card:hover .medical-card__overlay {
    background: rgba(0, 0, 0, 0.4);
  }
  .medical-card:hover::after {
    opacity: 1;
  }
}
.blog {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .blog {
    padding-top: 214px;
    padding-bottom: 120px;
  }
}

.blog__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .blog__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .blog__inner {
    max-width: 1040px;
    padding-inline: 20px;
  }
}

.blog__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .blog__heading {
    max-width: none;
    gap: 28px;
  }
}

.blog__heading-deco {
  width: 49px;
  height: 14.627px;
  flex-shrink: 0;
}
.blog__heading-deco img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .blog__heading-deco {
    width: 67px;
    height: 20px;
  }
}

.blog__title {
  color: #393939;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  flex: 1 0 0;
}
@media screen and (min-width: 900px) {
  .blog__title {
    flex: initial;
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.blog__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .blog__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 40px;
    justify-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .blog__list {
    grid-template-columns: repeat(3, 300px);
    justify-content: space-between;
    justify-items: stretch;
    row-gap: 60px;
  }
}

.blog-card {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .blog-card {
    max-width: 300px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    overflow: hidden;
  }
}

.blog-card__link {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 101px;
  color: inherit;
}
@media screen and (min-width: 900px) {
  .blog-card__link {
    display: block;
    min-height: auto;
  }
}

@media screen and (min-width: 900px) {
  .blog-card__thumbnail-wrap {
    width: 300px;
    height: 188px;
    overflow: hidden;
  }
}

.blog-card__thumbnail {
  width: 133px;
  height: 101px;
  flex-shrink: 0;
  overflow: hidden;
}
.blog-card__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .blog-card__thumbnail {
    width: 300px;
    height: 188px;
  }
}

.blog-card__body {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
@media screen and (min-width: 900px) {
  .blog-card__body {
    width: 100%;
    min-height: 131px;
    gap: 7px;
    padding: 0 24px 12px;
    margin-top: -14px;
  }
}

.blog-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #1391e6;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .blog-card__tag {
    padding: 6px 12px;
    font-size: 11px;
  }
}

.blog-card__title {
  height: 42px;
  min-height: 42px;
  overflow: hidden;
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 900px) {
  .blog-card__title {
    width: 252px;
    height: 72px;
    min-height: 72px;
    font-size: 16px;
  }
}

.blog-card__date {
  color: #888;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

.blog__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .blog__button {
    margin-top: 60px;
  }
}

.blog__button-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 11px 46px;
  border: 1px solid #1391e6;
  border-radius: 24px;
  background: #fff;
  color: #1391e6;
}

.blog__button-text {
  color: #1391e6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.blog__button-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.blog__button-icon::before,
.blog__button-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.blog__button-icon::before {
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  background: #1391e6;
  transform: translateY(-50%);
}

.blog__button-icon::after {
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #1391e6;
  border-right: 1px solid #1391e6;
  transform: translateY(-50%) rotate(45deg);
}

.about-mv {
  padding-top: 20px;
}
@media screen and (min-width: 900px) {
  .about-mv {
    padding-top: 40px;
  }
}

.about-mv__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .about-mv__inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.about-mv__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 188px;
  padding: 10px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about-mv__card {
    min-height: 340px;
    border-radius: 12px;
  }
}

.about-mv__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-mv__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}

.about-mv__heading-group {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .about-mv__heading-group {
    gap: 17px;
  }
}

.about-mv__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 4.8px;
}
@media screen and (min-width: 900px) {
  .about-mv__title {
    font-size: 32px;
    letter-spacing: 1.2px;
  }
}

.about-mv__subtitle {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .about-mv__subtitle {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.about-media {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 900px) {
  .about-media {
    padding-top: 120px;
    padding-bottom: 160px;
  }
}

.about-media__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .about-media__inner {
    margin-inline: auto;
    padding-inline: 0;
  }
}

.about-media__items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 900px) {
  .about-media__items {
    margin-top: 60px;
    gap: 120px;
  }
}

.about-media__block {
  position: relative;
}

@media screen and (min-width: 900px) {
  .about-media__block--policy {
    min-height: 726px;
    padding-top: 180px;
    padding-bottom: 108px;
  }
}

.about-media__deco {
  position: absolute;
  top: 0;
  left: 10px;
  z-index: -1;
  width: 556px;
  height: 308px;
  pointer-events: none;
}
.about-media__deco picture,
.about-media__deco img {
  display: block;
  width: 100%;
  height: 100%;
}
.about-media__deco img {
  object-fit: contain;
}
@media screen and (min-width: 900px) {
  .about-media__deco {
    top: 0;
    left: 50%;
    width: 1310px;
    height: auto;
    transform: translateX(calc(-50% + 465px));
  }
  .about-media__deco picture,
  .about-media__deco img {
    width: 100%;
    height: auto;
  }
}

/* =============================
  レイアウト本体
============================= */
.about-media__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .about-media__body {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 7.265625%;
    justify-content: flex-end;
  }
}

/* FEATURE用（左右反転） */
@media screen and (min-width: 900px) {
  .about-media__body--reverse {
    width: 100%;
    flex-direction: row;
  }
}

/* =============================
テキスト
============================= */
.about-media__textgroup {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .about-media__textgroup {
    flex: 0 0 31.8%;
  }
}

.about-media__hgroup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 900px) {
  .about-media__hgroup {
    gap: 24px;
  }
}

.about-media__label {
  color: #1391e6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .about-media__label {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.about-media__block-title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 900px) {
  .about-media__block-title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.about-media__text {
  margin-top: 30px;
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 900px) {
  .about-media__text {
    margin-top: 39px;
  }
}
.about-media__text p + p {
  margin-top: 1.7em;
}

/* =============================
画像
============================= */
.about-media__image {
  width: 334px;
  margin-top: 40px;
  overflow: hidden;
}
.about-media__image img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about-media__image {
    width: min(80%, 640px);
  }
  .about-media__image img {
    height: 438px;
    object-fit: cover;
  }
}
@media screen and (min-width: 900px) {
  .about-media__image {
    flex: 0 0 50%;
    height: 100%;
    max-height: 438px;
    margin-top: 0;
  }
  .about-media__image img {
    width: 100%;
    height: 438px;
    object-fit: cover;
  }
}

/* 左配置（POLICY） */
.about-media__image--left {
  margin-left: -20px;
}
.about-media__image--left img {
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 900px) {
  .about-media__image--left {
    margin-left: 0;
  }
}

/* 右配置（FEATURE） */
.about-media__image--right {
  margin-right: -20px;
  margin-left: auto;
}
.about-media__image--right img {
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 900px) {
  .about-media__image--right {
    margin-right: 0;
    margin-left: 0;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 1180px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  padding-bottom: 0;
}

main {
  padding-top: 60px;
}
@media screen and (min-width: 1180px) {
  main {
    padding-top: 80px;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 1180px) {
  .hidden-sp {
    display: block;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 1180px) {
  .hidden-pc {
    display: none;
  }
}

.page-top {
  position: fixed;
  right: 10px;
  bottom: 140px;
  width: 52px;
  height: 52px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .page-top {
    right: 20px;
    bottom: 40px;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 60px;
  border-top: 1px solid #1391e6;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.fixed-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 6px 16px;
}

.fixed-footer__tel {
  width: 170px;
}

.fixed-footer__tel-main {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fixed-footer__tel-icon {
  width: 18px;
  flex-shrink: 0;
}
.fixed-footer__tel-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.fixed-footer__tel-number {
  color: #1391e6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.fixed-footer__tel-time {
  display: block;
  margin-top: 2px;
  color: #393939;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.fixed-footer__web {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 157px;
  height: 47px;
  padding: 5px 15px;
  border-radius: 8px;
  background-color: #1391e6;
}

.fixed-footer__web-icon {
  width: 46px;
  flex-shrink: 0;
}

.fixed-footer__web-icon img {
  display: block;
  width: 100%;
}

.fixed-footer__web-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.fixed-footer__web-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.fixed-footer__web-sub {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.page-top {
  position: fixed;
  right: 10px;
  bottom: 140px;
  width: 52px;
  height: 52px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .page-top {
    right: 20px;
    bottom: 40px;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 60px;
  border-top: 1px solid #1391e6;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.fixed-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 6px 16px;
}

.fixed-footer__tel {
  width: 170px;
}

.fixed-footer__tel-main {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fixed-footer__tel-icon {
  width: 18px;
  flex-shrink: 0;
}
.fixed-footer__tel-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.fixed-footer__tel-number {
  color: #1391e6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.fixed-footer__tel-time {
  display: block;
  margin-top: 2px;
  color: #393939;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.fixed-footer__web {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 157px;
  height: 47px;
  padding: 5px 15px;
  border-radius: 8px;
  background-color: #1391e6;
}

.fixed-footer__web-icon {
  width: 46px;
  flex-shrink: 0;
}

.fixed-footer__web-icon img {
  display: block;
  width: 100%;
}

.fixed-footer__web-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.fixed-footer__web-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.fixed-footer__web-sub {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/*# sourceMappingURL=style.css.map */
