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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
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;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

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

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #393939;
}
body.is-scroll-allowed {
  overflow: hidden;
}

.l-header {
  background-color: #ffffff;
}

.l-header__inner {
  padding-left: 20px;
  padding-right: 20px;
  /* デフォルトシャドウ */
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .l-header__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.l-header__inner-height {
  padding-top: 14px;
  padding-bottom: 14px;
}
@media (min-width: 1200px) {
  .l-header__inner-height {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.l-header__container {
  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;
}

.l-header__logo.is-checked .l-header-logo__link-parts:nth-of-type(1) {
  fill: #ffffff;
}
.l-header__logo.is-checked .l-header-logo__link-parts:nth-of-type(2) {
  fill: #0060a0;
}
.l-header__logo.is-checked .l-header-logo__link-parts:nth-of-type(3) {
  fill: #ffffff;
}
.l-header__logo.is-checked .l-header-logo__link-parts:nth-of-type(4) {
  fill: #0060a0;
}
.l-header__logo.is-checked .l-header-logo__link-parts:nth-of-type(5) {
  fill: #ffffff;
}

.l-header-logo {
  position: relative;
  z-index: 100;
  height: 32px;
}

.l-header-logo__link {
  display: inline-block;
  height: inherit;
}

.l-header-logo__link-parts {
  -webkit-transition: fill 0.5s;
  transition: fill 0.5s;
}

@media (min-width: 1200px) {
  .l-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}

.l-header-nav {
  display: none;
}
@media (min-width: 1200px) {
  .l-header-nav {
    display: block;
    height: 60px;
  }
}

.l-header-nav__list {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.l-header-nav__list .menu-item {
  height: inherit;
}
.l-header-nav__list .menu-item:hover a {
  color: #1391e6;
}
.l-header-nav__list .menu-item:hover a::after {
  opacity: 1;
}
.l-header-nav__list .menu-item:hover a::before {
  background-color: #1391e6;
}
.l-header-nav__list .menu-item:nth-of-type(1) a::before {
  -webkit-mask-image: url(../img/icon-home.svg);
          mask-image: url(../img/icon-home.svg);
}
.l-header-nav__list .menu-item:nth-of-type(2) a::before {
  -webkit-mask-image: url(../img/icon-about.svg);
          mask-image: url(../img/icon-about.svg);
}
.l-header-nav__list .menu-item:nth-of-type(3) a::before {
  -webkit-mask-image: url(../img/icon-medical.svg);
          mask-image: url(../img/icon-medical.svg);
}
.l-header-nav__list .menu-item:nth-of-type(4) a::before {
  -webkit-mask-image: url(../img/icon-staff.svg);
          mask-image: url(../img/icon-staff.svg);
}
.l-header-nav__list .menu-item:nth-of-type(5) a::before {
  -webkit-mask-image: url(../img/icon-blog.svg);
          mask-image: url(../img/icon-blog.svg);
}
.l-header-nav__list .menu-item:nth-of-type(6) a::before {
  -webkit-mask-image: url(../img/icon-contact.svg);
          mask-image: url(../img/icon-contact.svg);
}
.l-header-nav__list .menu-item.current-menu-item a {
  color: #1391e6;
}
.l-header-nav__list .menu-item.current-menu-item a::before {
  background-color: #1391e6;
}
.l-header-nav__list .menu-item.current-menu-item a::after {
  opacity: 1;
}

.l-header-nav__list .menu-item a {
  position: relative;
  height: inherit;
  padding-top: 6px;
  padding-bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.l-header-nav__list .menu-item a::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #393939;
  top: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.l-header-nav__list .menu-item a::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #1391e6;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-header__contact {
  display: none;
}
@media (min-width: 1200px) {
  .l-header__contact {
    display: block;
    text-align: right;
    height: 60px;
  }
}

.l-header__address {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

@media (min-width: 1200px) {
  .l-header__button {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 100;
}
.drawer-icon.is-checked .drawer-icon__bar path {
  fill: #ffffff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 16px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 16px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.drawer-icon__bar {
  width: 27px;
  height: 2px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.drawer-icon__bar:nth-of-type(1) {
  top: 8px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 15px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 22px;
}

.l-drawer {
  width: 100%;
  height: 100vh;
  background-color: #0060a0;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: 90;
}
.l-drawer.is-checked {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.l-drawer__inner {
  padding-left: 60px;
  padding-right: 60px;
}

.l-drawer__inner-height {
  height: inherit;
}

.l-drawer__container {
  width: 100%;
  height: inherit;
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  place-items: center;
}

.l-drawer__nav {
  width: inherit;
}

.l-drawer__nav-list {
  width: inherit;
}

.l-drawer__nav-list .menu-item {
  width: inherit;
}
.l-drawer__nav-list .menu-item:nth-of-type(1) a {
  padding-top: 14px;
  border-top: 1px dashed #ffffff;
}
.l-drawer__nav-list .menu-item:nth-of-type(1) a::before {
  -webkit-mask: url(../img/icon-home.svg) no-repeat center center/contain;
          mask: url(../img/icon-home.svg) no-repeat center center/contain;
}
.l-drawer__nav-list .menu-item:nth-of-type(2) a::before {
  -webkit-mask: url(../img/icon-about.svg) no-repeat center center/contain;
          mask: url(../img/icon-about.svg) no-repeat center center/contain;
}
.l-drawer__nav-list .menu-item:nth-of-type(3) a::before {
  -webkit-mask: url(../img/icon-medical.svg) no-repeat center center/contain;
          mask: url(../img/icon-medical.svg) no-repeat center center/contain;
}
.l-drawer__nav-list .menu-item:nth-of-type(4) a::before {
  -webkit-mask: url(../img/icon-staff.svg) no-repeat center center/contain;
          mask: url(../img/icon-staff.svg) no-repeat center center/contain;
}
.l-drawer__nav-list .menu-item:nth-of-type(5) a::before {
  -webkit-mask: url(../img/icon-blog.svg) no-repeat center center/contain;
          mask: url(../img/icon-blog.svg) no-repeat center center/contain;
}
.l-drawer__nav-list .menu-item:nth-of-type(6) a::before {
  -webkit-mask: url(../img/icon-contact.svg) no-repeat center center/contain;
          mask: url(../img/icon-contact.svg) no-repeat center center/contain;
}

.l-drawer__nav-list .menu-item a {
  position: relative;
  padding-top: 15px;
  padding-bottom: 14px;
  padding-left: 38px;
  width: inherit;
  display: inline-block;
  border-bottom: 1px dashed #ffffff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.l-drawer__nav-list .menu-item a::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ffffff;
}
.l-drawer__nav-list .menu-item a::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../img/icon-white-arrow-btn.png) no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-footer {
  position: relative;
}

.l-footer__main {
  padding-top: 32px;
  padding-bottom: 60px;
  position: relative;
}
.l-footer__main::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: calc(100% + 22.5px);
  height: 32px;
  background-image: url(../img/deco-wave.png);
  background-size: contain;
  background-repeat: repeat-x;
  top: 0px;
  left: -22.5px;
}
@media (min-width: 1000px) {
  .l-footer__main {
    padding-bottom: 0;
  }
  .l-footer__main::before {
    left: -30.5px;
  }
}

.l-footer__main-wrapper {
  padding: 13px 10px 60px;
  background-color: #dff1fd;
}
@media (min-width: 768px) {
  .l-footer__main-wrapper {
    padding: 56px 30px;
  }
}

.l-footer__access {
  background-color: #ffffff;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .l-footer__access {
    border-radius: 20px;
  }
}
@media (min-width: 1000px) {
  .l-footer__access {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-footer-access__container {
  padding: 33px 10px 20px;
}
@media (min-width: 1000px) {
  .l-footer-access__container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 49px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 1000px) {
  .l-footer__contents {
    width: 477px;
    gap: 19.5px;
  }
}

.l-footer__head {
  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;
  gap: 7px;
}

.l-footer__logo {
  width: 100%;
  text-align: center;
}
.l-footer__logo img {
  width: 309px;
  height: 37px;
}
@media (min-width: 768px) {
  .l-footer__logo img {
    width: 405px;
    height: 48px;
  }
}

.l-footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}

.l-footer__address-number,
.l-footer__address-text {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .l-footer__address-number,
  .l-footer__address-text {
    line-height: 1.5;
  }
}

.l-footer__tel-area {
  text-align: center;
}

.l-footer__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (min-width: 1000px) {
  .l-footer__button-wrap {
    gap: 20px;
  }
}

.l-footer__medical-time-image {
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  max-width: 477px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer__medical-time-image img {
  width: 100%;
}

.l-footer__location-map-wrap {
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 497px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1000px) {
  .l-footer__location-map-wrap {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 385px;
    height: 385px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.l-footer__location-map {
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 100%;
}
.l-footer__location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-footer__list {
  margin-top: 42px;
  padding-left: 10px;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 1000px) {
  .l-footer__list {
    margin-top: 42px;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 832px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-footer__list-menu {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.l-footer__list-sub-menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

.l-footer__list-sub-menu {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.l-footer__copyright {
  display: block;
  padding: 13px 40px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  background-color: #1391e6;
}
@media (min-width: 1000px) {
  .l-footer__copyright {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.l-footer__bottom-button {
  position: fixed;
  padding: 5px 16px 6px;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #1391e6;
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  bottom: 0px;
  z-index: 100;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.l-footer__bottom-button.is-checked {
  background-color: #dff1fd;
}
@media (min-width: 768px) {
  .l-footer__bottom-button {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (min-width: 1000px) {
  .l-footer__bottom-button {
    display: none;
  }
}

.l-footer__bottom-button-left {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-footer__bottom-tel {
  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;
  gap: 4px;
}
.l-footer__bottom-tel img {
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) {
  .l-footer__bottom-tel img {
    width: 24px;
    height: 24px;
  }
}

.l-footer__bottom-number {
  color: #1391e6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .l-footer__bottom-number {
    font-size: 24px;
  }
}

.l-footer__bottom-tel-support-hours {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .l-footer__bottom-tel-support-hours {
    font-size: 11px;
  }
}

.l-footer__bottom-button-right {
  border-radius: 8px;
  background-color: #1391e6;
}

.l-footer__bottom-button-reserve {
  padding: 5px 15px 5px 17px;
  width: 157px;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .l-footer__bottom-button-reserve {
    padding: 5px 15px;
    width: 162px;
    height: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__bottom-button-text {
  color: #ffffff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}

.l-footer__button-button-text-large {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .l-footer__button-button-text-large {
    font-size: 18px;
  }
}

.l-footer__button-button-text-small {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.l-mv__inner {
  padding-left: 20.5px;
  padding-right: 19.5px;
}
@media (min-width: 768px) {
  .l-mv__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1000px) {
  .l-mv__inner {
    padding-left: 61px;
    padding-right: 59px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-mv__inner-height {
  padding-top: 15px;
  padding-bottom: 60px;
}
@media (min-width: 1000px) {
  .l-mv__inner-height {
    padding-top: 40px;
  }
}

.l-mv__container {
  position: relative;
}

.l-mv__slider {
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-mv__slider {
    border-radius: 20px;
  }
}

.l-mv__card::after {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left = 0 */
  background-color: rgba(0, 0, 0, 0.1); /* 好きな色や透明度 */
}

.l-mv__card-img img {
  width: 100%;
}

.l-mv__pagination {
  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;
  gap: 8px;
}
@media (min-width: 768px) {
  .l-mv__pagination {
    gap: 10px;
  }
}
.l-mv__pagination#js-l-mv__pagination {
  width: 14px;
  left: -17px;
  bottom: 17px;
}
@media (min-width: 768px) {
  .l-mv__pagination#js-l-mv__pagination {
    width: 18px;
    left: -28px;
    bottom: 5px;
  }
}
.l-mv__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
@media (min-width: 768px) {
  .l-mv__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.l-mv__prev,
.l-mv__next {
  background-color: #fff;
  border-radius: 32px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  width: 32px;
  height: 32px;
}
.l-mv__prev svg,
.l-mv__next svg {
  display: none;
}
@media (min-width: 1000px) {
  .l-mv__prev,
  .l-mv__next {
    width: 48px;
    height: 48px;
  }
}
.l-mv__prev::after,
.l-mv__next::after {
  content: "";
  width: 11px;
  height: 19px;
}
@media (min-width: 1000px) {
  .l-mv__prev::after,
  .l-mv__next::after {
    width: 15px;
    height: 27px;
  }
}

.l-mv__prev#js-l-mv__prev {
  margin-top: -17px;
  left: -17px;
}
@media (min-width: 1000px) {
  .l-mv__prev#js-l-mv__prev {
    margin-top: -25px;
    left: -23px;
  }
}
.l-mv__prev::after {
  background: url(../img/arrow-left.png) no-repeat center center/contain;
}

.l-mv__next#js-l-mv__next {
  margin-top: -17px;
  right: -17px;
}
@media (min-width: 1000px) {
  .l-mv__next#js-l-mv__next {
    margin-top: -25px;
    right: -27px;
  }
}
.l-mv__next::after {
  background: url(../img/arrow-right.png) no-repeat center center/contain;
}

.l-mv__top-text {
  position: absolute;
  left: 20px;
  bottom: 42px;
  z-index: 5;
}
@media (min-width: 768px) {
  .l-mv__top-text {
    left: 62px;
    bottom: 61px;
  }
}

.l-mv__lead {
  position: relative;
  display: block;
  color: #ffffff;
  text-shadow: 4px 6px 6px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media (min-width: 768px) {
  .l-mv__lead {
    font-size: 32px;
    letter-spacing: 2.56px;
  }
}

.l-mv__lead1::after {
  content: "";
  width: 239px;
  height: 2px;
  position: absolute;
  bottom: -3px;
  left: 0px;
  background: url(../img/sp/repeat-grid-sp1.png) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .l-mv__lead1::after {
    width: 374px;
    height: 4px;
    bottom: -6px;
    background-image: url(../img/repeat-grid-pc1.png);
  }
}

.l-mv__lead2 {
  margin-top: 13px;
}
@media (min-width: 768px) {
  .l-mv__lead2 {
    margin-top: 17px;
  }
}
.l-mv__lead2::after {
  content: "";
  width: 264px;
  height: 2px;
  position: absolute;
  bottom: -3px;
  left: 0px;
  background: url(../img/sp/repeat-grid-sp2.png) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .l-mv__lead2::after {
    width: 414px;
    height: 4px;
    bottom: -6px;
    background-image: url(../img/repeat-grid-pc2.png);
  }
}

.l-mv__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: calc(100% - 24px);
  left: -0.5px;
  z-index: 10;
  gap: 38px;
  width: 100%;
}
@media (min-width: 768px) {
  .l-mv__bottom {
    max-width: 477px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 1000px) {
  .l-mv__bottom {
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    left: -0.5px;
    -webkit-transform: none;
            transform: none;
    gap: 60px;
    top: calc(100% - 25px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-mv__medical-time {
  text-align: center;
}
@media (min-width: 1000px) {
  .l-mv__medical-time {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.l-mv__medical-time img {
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
@media (min-width: 1000px) {
  .l-mv__medical-time img {
    width: 477px;
  }
}

.l-news {
  max-width: 670px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1000px) {
  .l-news {
    margin-left: 0px;
    margin-right: 0px;
    max-width: 542px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.l-news__head {
  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;
}

.l-news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 12px;
}
@media (min-width: 1000px) {
  .l-news__heading {
    gap: 13px;
  }
}

.l-news__past-link {
  color: #888888;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration-line: underline;
  text-underline-position: from-font;
}
@media (min-width: 1000px) {
  .l-news__past-link {
    font-size: 12px;
  }
}

.l-news__body {
  margin-top: 6px;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 9px;
  padding-bottom: 9px;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (min-width: 1000px) {
  .l-news__body {
    padding-left: 9px;
    padding-right: 9px;
  }
}
.l-news__body::after {
  content: "";
  right: 6px;
  width: 16px;
  height: 16px;
  background: url(../img/news-arrow.png) no-repeat center center/contain;
  position: absolute;
  right: 5px;
  top: 12px;
  -webkit-transition: background-image 0.3s, right 0.3s;
  transition: background-image 0.3s, right 0.3s;
}
@media (min-width: 1000px) {
  .l-news__body::after {
    right: 9px;
  }
}
.l-news__body:hover {
  color: #1391e6;
}
.l-news__body:hover::after {
  background-image: url(../img/news-arrow-blue.png);
  right: 0px;
}

.l-news__date {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.l-news__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.l-recommend__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .l-recommend__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.l-recommend__inner-height {
  padding-top: 101px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .l-recommend__inner-height {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.l-recommend__items {
  padding-left: 22px;
  padding-right: 23px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 61px;
}
@media (min-width: 768px) {
  .l-recommend__items {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 26px;
  }
}
@media (min-width: 1000px) {
  .l-recommend__items {
    max-width: 1000px;
    gap: normal;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-recommend-item:nth-of-type(2) .l-recommend-item__image {
  padding-left: 29.4px;
  padding-right: 34.56px;
}
@media (min-width: 768px) {
  .l-recommend-item {
    max-width: 212px;
  }
}
@media (min-width: 1000px) {
  .l-recommend-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 290px;
  }
  .l-recommend-item:nth-of-type(2) .l-recommend-item__image {
    padding-left: 28.9px;
    padding-right: 34.06px;
  }
}

.l-recommend-item__catch {
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
}

.l-recommend-item__title {
  text-align: center;
}

.l-recommend-item__image {
  position: relative;
  margin-top: 15px;
  padding-left: 28.9px;
  padding-right: 34.06px;
  padding-bottom: 34.89px;
}
.l-recommend-item__tag {
  display: inline-block;
  text-align: center;
  padding: 6px 21px;
  width: 290px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.6px;
  background-color: #1391e6;
  border-radius: 22px;
  position: absolute;
  left: 0;
  bottom: 17.9px;
}
.l-recommend-item__tag::after {
  content: "";
  position: absolute;
  bottom: -17.9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20.64px;
  height: 26.38px;
  background: url(../img/recommend-tag-deco.svg) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .l-recommend-item__tag {
    width: 212px;
    font-size: 14px;
    padding: 6px 10px;
  }
}
@media (min-width: 1000px) {
  .l-recommend-item__tag {
    width: 290px;
    font-size: 20px;
    padding: 6px 21px;
  }
}

.l-recommend-item__description {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.l-recommend-item__description-red {
  color: #ee5a6d;
  font-weight: 500;
}

.l-medical__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
}
@media (min-width: 768px) {
  .l-medical__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-medical-card__link {
  display: inline-block;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.l-medical-card__link img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-medical-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 5;
}
.l-medical-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: 10px;
  pointer-events: none;
  background-image: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 10;
}
.l-medical-card__link:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}
.l-medical-card__link:hover::after {
  background: url(../img/medical-card-filter.png) no-repeat center center/contain;
  opacity: 1;
}
.l-medical-card__link:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (min-width: 1000px) {
  .l-medical-card__link {
    width: 460px;
  }
}

.l-medical-card__description {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

.l-medical-card__type {
  padding-bottom: 22px;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  position: relative;
}
.l-medical-card__type::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 30px;
  background-color: #ffffff;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .l-medical-card__type {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
  .l-medical-card__type::after {
    width: 40px;
  }
}

.l-medical-card__service {
  margin-top: 20px;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.96px;
}
@media (min-width: 768px) {
  .l-medical-card__service {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.l-medical__policy {
  padding: 17px 20px;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .l-medical__policy {
    padding: 35px 40px;
  }
}

.l-medical_policy-red {
  color: #ee5a6d;
  font-weight: 500;
}

.l-staff-blog__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .l-staff-blog__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.l-staff-blog__inner-height {
  padding-top: 102px;
  padding-bottom: 99px;
}
@media (min-width: 768px) {
  .l-staff-blog__inner-height {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.l-staff-blog__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 1000px) {
  .l-staff-blog__container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    gap: 59px;
  }
}

.l-staff-blog__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .l-staff-blog__cards {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (min-width: 1000px) {
  .l-staff-blog__cards {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 59px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}

.l-staff-blog__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l-staff-blog__card-link:hover .l-staff-blog__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.l-staff-blog__card-link:hover .l-staff-blog__title {
  color: #1391e6;
}
@media (min-width: 768px) {
  .l-staff-blog__card-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
}

.l-staff-blog__image {
  width: 133px;
  height: 101px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.l-staff-blog__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (min-width: 768px) {
  .l-staff-blog__image {
    position: relative;
    width: 100%;
    aspect-ratio: 300/188;
    height: auto;
  }
}

.l-staff-blog__body {
  text-align: left;
}
@media (min-width: 768px) {
  .l-staff-blog__body {
    padding: 0 24px 10px;
    width: 100%;
    margin-top: -13px;
    position: relative;
    z-index: 5;
  }
}

.l-staff-blog__tag {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  padding: 2px 8px;
  background-color: #1391e6;
  border-radius: 999px;
}
@media (min-width: 768px) {
  .l-staff-blog__tag {
    padding: 6px 12px;
    font-size: 11px;
  }
}

.l-staff-blog__title {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .l-staff-blog__title {
    margin-top: 7px;
    height: 72px;
    font-size: 16px;
    -webkit-line-clamp: 3; /* 任意の行数を指定 */
  }
}

.l-staff-blog__date {
  display: inline-block;
  margin-top: 6px;
  color: #888888;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .l-staff-blog__date {
    margin-top: 7px;
  }
}

.l-staff-blog__button-area {
  text-align: center;
}
@media (min-width: 1000px) {
  .l-staff-blog__button-area {
    margin-top: 0;
  }
}

.c-heading-ja {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
@media (min-width: 1000px) {
  .c-heading-ja {
    margin-top: 24px;
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.c-heading-news {
  margin-top: 0;
}

@media (min-width: 1000px) {
  .c-heading-ja-small {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.c-heading-en {
  color: #1391e6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.1px;
}
@media (min-width: 1000px) {
  .c-heading-en {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

@media (min-width: 1000px) {
  .c-heading-en-small {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
}

.c-heading-1 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.c-heading-1::before, .c-heading-1::after {
  content: "";
  width: 49px;
  height: 14.63px;
  background: url(../img/title-deco.svg) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .c-heading-1 {
    font-size: 28px;
    letter-spacing: 2.24px;
    gap: 27px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .c-heading-1::before, .c-heading-1::after {
    width: 67px;
    height: 20px;
  }
}

.c-heading-underline {
  padding-bottom: 5px;
  border-bottom: 1px solid #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.c-btn-reserve-fixed-area {
  display: none;
}
@media (min-width: 1000px) {
  .c-btn-reserve-fixed-area {
    display: inline-block;
    position: fixed;
    background-color: #1391e6;
    border-radius: 20px 0px 0px 20px;
    top: 170px;
    right: 0px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    z-index: 90;
  }
}
.c-btn-reserve-fixed-area:hover {
  background-color: #0060a0;
}

.c-btn-reserve-fixed {
  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;
  width: 92px;
  height: 120px;
  padding: 20px 17px;
  gap: 11px;
}

.c-btn-reserve-fixed-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.c-btn-blue-arrow {
  display: inline-block;
  color: #1391e6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 45px;
  background-color: #ffffff;
  border: 1px solid #1391e6;
  border-radius: 24px;
  position: relative;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
.c-btn-blue-arrow::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../img/icon-blue-arrow-btn.png) no-repeat center center/contain;
  right: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-image 0.5s, right 0.5s;
  transition: background-image 0.5s, right 0.5s;
}
.c-btn-blue-arrow:hover {
  background-color: #1391e6;
  color: #ffffff;
}
.c-btn-blue-arrow:hover::after {
  background-image: url(../img/icon-white-arrow-btn.png);
  right: 7px;
}

.c-btn-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: 150px;
  height: 38px;
  padding: 8px 6px;
  background-color: #1391e6;
  border-radius: 30px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn-reserve:hover {
  background-color: #0060a0;
}
@media (min-width: 768px) {
  .c-btn-reserve {
    width: 220px;
    height: 56px;
    padding: 16px 10px;
  }
  .c-btn-reserve svg {
    width: 24px;
    height: 24px;
  }
}

.c-btn-reserve__text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 1000px) {
  .c-btn-reserve__text {
    font-size: 16px;
  }
}

.c-btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: 150px;
  height: 38px;
  padding: 7px 5px;
  background-color: #ffffff;
  border: 1px solid #1391e6;
  border-radius: 30px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn-contact svg {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.c-btn-contact svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.c-btn-contact:hover {
  background-color: #1391e6;
}
.c-btn-contact:hover svg {
  fill: #1391e6;
}
.c-btn-contact:hover svg path {
  stroke: #ffffff;
}
.c-btn-contact:hover .c-btn-contact__text {
  color: #ffffff;
}
@media (min-width: 768px) {
  .c-btn-contact {
    width: 220px;
    height: 56px;
    padding: 16px 10px;
  }
  .c-btn-contact svg {
    width: 24px;
    height: 24px;
  }
}

.c-btn-contact__text {
  color: #1391e6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (min-width: 1000px) {
  .c-btn-contact__text {
    font-size: 16px;
  }
}

.c-button-to-top {
  position: fixed;
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  border: 3px solid #1391e6;
  border-radius: 50%;
  right: 10px;
  bottom: 140px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-button-to-top::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../img/icon-button-to-top.svg) no-repeat center center/contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-button-to-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1000px) {
  .c-button-to-top {
    right: 20px;
    bottom: 42px;
  }
}

.c-btn-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

a.page-numbers,
span.page-numbers {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #1391e6;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid #1391e6;
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
a.page-numbers:hover,
span.page-numbers:hover {
  color: #ffffff;
  background-color: #1391e6;
}
a.page-numbers.current,
span.page-numbers.current {
  color: #ffffff;
  background-color: #1391e6;
  pointer-events: none;
}
@media (min-width: 768px) {
  a.page-numbers,
  span.page-numbers {
    font-size: 14px;
    width: 36px;
    height: 36px;
  }
}

.next.page-numbers {
  display: inline-block;
  position: relative;
  padding: 7px 16px;
  width: 71px;
  text-align: left;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 4px;
  background-color: #1391e6;
  border: none;
}
.next.page-numbers::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../img/Icon-arrow-circle-right.svg) no-repeat center center/contain;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.next.page-numbers:hover::after {
  right: 10px;
}
@media (min-width: 768px) {
  .next.page-numbers {
    width: 82px;
    font-size: 14px;
    padding: 7.5px 14px;
  }
  .next.page-numbers::after {
    width: 16px;
    height: 16px;
    right: 14px;
  }
}

.prev.page-numbers {
  display: inline-block;
  position: relative;
  padding: 7px 15px;
  width: 71px;
  color: #ffffff;
  text-align: right;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 4px;
  background-color: #1391e6;
}
.prev.page-numbers::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../img/Icon-arrow-circle-left.svg) no-repeat center center/contain;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
.prev.page-numbers:hover::before {
  left: 10px;
}
@media (min-width: 768px) {
  .prev.page-numbers {
    width: 82px;
    font-size: 14px;
  }
  .prev.page-numbers::before {
    width: 16px;
    height: 16px;
  }
}

.c-btn-pagination-article {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .c-btn-pagination-article {
    margin-top: 72px;
  }
}

.c-btn-pagination-article-list a {
  display: grid;
  place-items: center;
  padding: 0 13px;
  height: 36px;
  color: #1391e6;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid #1391e6;
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.c-btn-pagination-article-list a:hover {
  color: #ffffff;
  background-color: #1391e6;
}
@media (min-width: 768px) {
  .c-btn-pagination-article-list a {
    font-size: 14px;
  }
}

.c-btn-pagination-article-prev a {
  display: inline-block;
  position: relative;
  padding: 9px 14px;
  width: 114px;
  height: 36px;
  text-align: right;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 4px;
  background-color: #1391e6;
}
.c-btn-pagination-article-prev a::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/Icon-arrow-circle-left.svg) no-repeat center center/contain;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
.c-btn-pagination-article-prev a:hover::before {
  left: 10px;
}
.c-btn-pagination-article-prev a.hidden {
  visibility: hidden;
}
@media (min-width: 768px) {
  .c-btn-pagination-article-prev a {
    width: 124px;
    padding: 7px 14px;
    font-size: 14px;
  }
}

.c-btn-pagination-article-next a {
  display: inline-block;
  position: relative;
  padding: 9px 16px;
  width: 114px;
  text-align: left;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 4px;
  background-color: #1391e6;
}
.c-btn-pagination-article-next a::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/Icon-arrow-circle-right.svg) no-repeat center center/contain;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.c-btn-pagination-article-next a:hover::after {
  right: 10px;
}
.c-btn-pagination-article-next a.hidden {
  visibility: hidden;
}
@media (min-width: 768px) {
  .c-btn-pagination-article-next a {
    width: 124px;
    padding: 7px 14px;
    font-size: 14px;
  }
}

.c-contact-form__button {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-contact-form__button {
    position: relative;
    margin-top: 70px;
  }
}

.c-btn-form-submit {
  display: inline-block;
  padding: 7.5px 113px;
  color: #1391e6;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  background-color: #ffffff;
  border: 1px solid #1391e6;
  border-radius: 24px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.c-btn-form-submit:hover {
  cursor: pointer;
  color: #ffffff;
  background-color: #1391e6;
}
@media (min-width: 768px) {
  .c-btn-form-submit {
    padding: 15px 153px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.wpcf7-spinner {
  position: absolute;
}

.c-tel {
  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;
  gap: 4px;
}
.c-tel img {
  width: 28px;
  height: 28px;
}

.c-tel-number {
  color: #1391e6;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.64px;
}

.c-tel-support-hours {
  color: #1391e6;
  font-size: 12px;
  font-weight: 500;
  display: block;
}
@media (min-width: 768px) {
  .c-tel-support-hours {
    line-height: 1.5;
  }
}

.c-sub-list-link {
  position: relative;
  padding-left: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-sub-list-link::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon-footer-arrow.svg) no-repeat center center/contain;
}
.c-sub-list-link:hover {
  color: #888888;
}

.c-tel-support-hours-reserve {
  display: block;
  color: #1391e6;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.p-lower-top {
  position: relative;
}

.p-lower-top__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .p-lower-top__inner {
    padding-left: 60px;
    padding-right: 60px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-lower-top__inner-height {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .p-lower-top__inner-height {
    margin-top: 40px;
  }
}

.p-lower-top__image {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 188px;
}
.p-lower-top__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.p-lower-top__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
@media (min-width: 768px) {
  .p-lower-top__image {
    height: 340px;
  }
}

.p-lower-top__heading {
  position: absolute;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 700;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-49%, -54%);
          transform: translate(-49%, -54%);
  white-space: nowrap;
}

.p-lower-top__heading-ja {
  font-size: 24px;
  letter-spacing: 4.8px;
}
@media (min-width: 768px) {
  .p-lower-top__heading-ja {
    font-size: 32px;
    letter-spacing: 3.2px;
  }
}

.p-lower-top__heading-en {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 1.35px;
}
@media (min-width: 768px) {
  .p-lower-top__heading-en {
    margin-top: 17px;
    font-size: 14px;
    letter-spacing: 1.6px;
  }
}

.p-about-clinic {
  position: relative;
  overflow: hidden;
}

.p-about-clinic__background-image {
  position: absolute;
  top: 0px;
  left: calc(50% - 177.5px);
  width: 565px;
  height: 308px;
  z-index: -5;
}
@media (min-width: 768px) {
  .p-about-clinic__background-image {
    width: 1310px;
    height: 726px;
    left: calc(50% - 190px);
  }
}
.p-about-clinic__container {
  padding-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 41px;
}
@media (min-width: 768px) {
  .p-about-clinic__container {
    padding-top: 180px;
    padding-bottom: 108px;
    padding-right: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1000px) {
  .p-about-clinic__container {
    padding-right: 0;
    gap: 7.265625%;
  }
}

.p-about-clinic__container-another {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
}
@media (min-width: 768px) {
  .p-about-clinic__container-another {
    padding-left: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1000px) {
  .p-about-clinic__container-another {
    padding-left: 0;
    gap: 7.265625%;
  }
}

.p-about-clinic__contents {
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30.5px;
}
@media (min-width: 768px) {
  .p-about-clinic__contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 0px;
    padding-right: 0px;
    gap: 39px;
  }
}
@media (min-width: 1000px) {
  .p-about-clinic__contents {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 31.796875%;
    padding-left: 0px;
    padding-right: 0px;
    gap: 39px;
  }
}

.p-about-clinic__description {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.p-about-clinic__description + .p-about-clinic__description {
  margin-top: 23.8px;
}

.p-about-clinic__button-area {
  text-align: center;
}
@media (min-width: 768px) {
  .p-about-clinic__button-area {
    text-align: left;
  }
}

.p-about-clinic__image {
  margin-right: 41px;
  border-radius: 0 20px 20px 0;
  max-height: 438px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-about-clinic__image {
    height: 438px;
    margin-right: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (min-width: 1000px) {
  .p-about-clinic__image {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.p-about-clinic__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.p-about-clinic__image-another {
  margin-left: 41px;
  border-radius: 20px 0px 0px 20px;
  max-height: 438px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-about-clinic__image-another {
    height: 438px;
    margin-left: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (min-width: 1000px) {
  .p-about-clinic__image-another {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.p-about-clinic__image-another img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.p-medical-service__background-top {
  display: inline-block;
  width: 100%;
}
.p-medical-service__background-top img {
  width: 100%;
}

.p-medical-service__inner {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #dff1fd;
}
@media (min-width: 768px) {
  .p-medical-service__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.p-medical-service__inner-height {
  padding-top: 30px;
  padding-bottom: 62px;
  margin-bottom: 28px;
}
@media (min-width: 1000px) {
  .p-medical-service__inner-height {
    padding-top: 0;
    padding-bottom: 85px;
  }
}

.p-medical-service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 39.5px;
}
@media (min-width: 768px) {
  .p-medical-service__container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    gap: 60px;
  }
}

.p-medical-service__container-2 {
  margin-top: 40.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40.5px;
}
@media (min-width: 768px) {
  .p-medical-service__container-2 {
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    gap: 40px;
  }
}

.p-medical-service__background-bottom {
  margin-top: -82px;
  display: block;
  width: 100%;
}
.p-medical-service__background-bottom img {
  width: 100%;
}
@media (min-width: 1000px) {
  .p-medical-service__background-bottom {
    margin-top: -120px;
  }
}
@media (min-width: 1200px) {
  .p-medical-service__background-bottom {
    margin-top: -144px;
  }
}

.p-medical-service__card-1 {
  position: relative;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
}
.p-medical-service__card-1::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 60px;
  top: 0;
  right: 20px;
  background: url(../img/sp/medical-service-blue-deco-sp.svg) no-repeat center center/contain;
}
.p-medical-service__card-1::after {
  content: "保険対象";
  position: absolute;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.12px;
  top: 14px;
  right: 30px;
}
@media (min-width: 768px) {
  .p-medical-service__card-1 {
    padding: 60px;
  }
  .p-medical-service__card-1::before {
    width: 100px;
    height: 80px;
    right: 60px;
    background-image: url(../img/medical-service-blue-deco-pc.svg);
  }
  .p-medical-service__card-1::after {
    font-size: 16px;
    letter-spacing: 1.28px;
    top: 24px;
    right: 75px;
  }
}

.p-medical-service__card-2 {
  position: relative;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
}
.p-medical-service__card-2::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 60px;
  top: 0;
  right: 20px;
  background: url(../img/sp/medical-service-red-deco-sp.svg) no-repeat center center/contain;
}
.p-medical-service__card-2::after {
  content: "実費";
  position: absolute;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.12px;
  top: 14px;
  right: 45px;
}
@media (min-width: 768px) {
  .p-medical-service__card-2 {
    padding: 60px;
  }
  .p-medical-service__card-2::before {
    width: 100px;
    height: 80px;
    right: 60px;
    background-image: url(../img/medical-service-red-deco-pc.svg);
  }
  .p-medical-service__card-2::after {
    font-size: 16px;
    letter-spacing: 8px;
    top: 24px;
    right: 82px;
  }
}

.p-medical-service__heading {
  padding-bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #888888;
}
@media (min-width: 768px) {
  .p-medical-service__heading {
    padding-bottom: 35px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 38px;
  }
}

.p-medical-service__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1.6px;
}
@media (min-width: 768px) {
  .p-medical-service__title {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 2.24px;
  }
}

.p-medical-service__details {
  color: #1391e6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
}
@media (min-width: 768px) {
  .p-medical-service__details {
    line-height: 1.5;
  }
}

.p-medical-service__contents {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-medical-service__contents {
    margin-top: 36px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4.5454545455%;
  }
}

@media (min-width: 768px) {
  .p-medical-service__description {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-medical-service__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
}

.p-medical-service__text + .p-medical-service__text {
  margin-top: 23.8px;
}

.p-medical-service__image {
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-medical-service__image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}