@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;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  main {
    padding-top: 80px;
    padding-bottom: 159px;
    gap: 120px;
  }
}

.l-policy__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 101px;
}
@media (min-width: 768px) {
  .l-policy__items {
    margin-top: 60px;
    gap: 120px;
  }
}

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

.l-inside-clinic__cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}
@media (min-width: 768px) {
  .l-inside-clinic__cards {
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1000px) {
  .l-inside-clinic__cards {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-inside-clinic__card {
  border-radius: 20px;
  overflow: hidden;
}
.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;
}

.c-breadcrumb__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .c-breadcrumb__inner {
    padding-left: 90px;
    padding-right: 90px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-breadcrumb__inner-height {
  margin-top: 6px;
}

.c-breadcrumb__menu {
  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;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  gap: 10px;
  white-space: nowrap;
  overflow-x: auto;
  margin-right: -20px;
  padding-right: 20px;
  padding-left: 37px;
  margin-left: -37px;
}

.c-breadcrumb__menu span a span {
  color: #888888;
}

.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;
}

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