@charset "UTF-8";
/* ブレイクポイントの定義 */
#header .header-ttl {
  width: 100%;
  height: 2rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 4rem;
  background-color: #00c0bd;
  color: white;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #header .header-ttl {
    padding-left: 1.2rem;
  }
}

.header-base {
  height: 8.4rem;
  padding: 1.7rem 3.4rem 1.7rem 3rem;
}
@media screen and (max-width: 768px) {
  .header-base {
    height: 5rem;
    padding: 0.7rem 0 0.7rem 1.2rem;
  }
}
.header-base img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.header-base .header-contact-list {
  gap: 1.2rem;
}
.header-base .header-contact-list__item--tel {
  color: #1e2b38 !important;
}
.header-base .header-contact-list__item--tel .flex {
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header-base .header-contact-list__item--tel .ion-android-call {
  font-size: 2.8rem;
}
.header-base .header-contact-list__item--tel .number {
  font-size: 3.2rem;
  letter-spacing: 0.2rem;
}
.header-base .header-contact-list__item--tel .text {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.5rem;
}
.header-base .header-contact-list__item--line a,
.header-base .header-contact-list__item--mail a {
  gap: 1rem;
}
.header-base .header-contact-list__item--line i,
.header-base .header-contact-list__item--mail i {
  font-size: 2rem;
}
.header-base .header-contact-list__item--line .text,
.header-base .header-contact-list__item--mail .text {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 7rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 7rem);
    background-color: white;
    overflow-x: scroll;
  }
}
.header-nav a {
  color: #1e2b38;
}
.header-nav-list {
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-nav-list {
    padding: 3rem;
    padding-bottom: 10rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.header-nav-list__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-nav-list__item {
    width: 100%;
  }
}
.header-nav-list__item > a {
  position: relative;
  padding: 0 1rem 1.7rem;
  font-size: 1.5rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .header-nav-list__item > a {
    padding: 2rem 1.2rem;
    border-bottom: solid 1px #e4e4e4;
  }
}
.header-nav-list__item > a::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.6rem;
  background-color: #d1d1d1;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .header-nav-list__item > a::after {
    display: none;
  }
}
.header-nav-list__item:last-of-type > a::after {
  display: none;
}
.header-nav-list__sub-toggle {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .header-nav-list__sub-toggle {
    display: block !important;
    position: absolute !important;
    width: 3rem;
    height: 3rem;
    text-decoration: none !important;
    border: none !important;
    top: 1.2rem;
    right: 0;
    padding: 0 !important;
  }
  .header-nav-list__sub-toggle::before,
  .header-nav-list__sub-toggle::after {
    content: "";
    display: block !important;
    width: 1.2rem !important;
    height: 2px !important;
    border-radius: 4px;
    background-color: #00c0bd !important;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
  }
  .header-nav-list__sub-toggle::before {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .header-nav-list__sub-toggle::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition:
      transform 0.3s,
      -webkit-transform 0.3s;
  }
  .header-nav-list__sub-toggle.is-active::after {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
}
.header-nav-sub-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  padding: 2.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.7rem;
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.132);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.132);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .header-nav-sub-list {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
  }
}
.header-nav-sub-list.is-active {
  opacity: 1;
  visibility: visible;
}
.header-nav-sub-list__item {
  position: relative;
}
.header-nav-sub-list__item > a:not(.js-sub-toggle) {
  font-size: 1.4rem;
  padding-left: 1.7rem;
  line-height: 1.2;
  position: relative;
  display: block;
  color: #00c0bd;
}
@media screen and (max-width: 768px) {
  .header-nav-sub-list__item > a:not(.js-sub-toggle) {
    padding: 2rem 1.2rem 2rem 2rem;
    border-bottom: solid 1px #e4e4e4;
  }
}
.header-nav-sub-list__item > a:not(.js-sub-toggle)::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../../img/icon/ic-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .header-nav-sub-list__item > a:not(.js-sub-toggle)::before {
    display: none;
  }
}
.header-nav-sub-list--clinic {
  width: 26.2rem;
}
@media screen and (max-width: 768px) {
  .header-nav-sub-list--clinic {
    width: 100%;
  }
}
.header-nav-sub-list--menu {
  width: 105rem;
  height: 65rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .header-nav-sub-list--menu {
    width: 100%;
    display: none;
    height: auto;
  }
}
.header-nav-sub-list--price {
  width: 90rem;
  height: 19rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .header-nav-sub-list--price {
    width: 100%;
    display: none;
    height: auto;
  }
}
.header-nav-sub-list--doctor {
  width: 32rem;
}
@media screen and (max-width: 768px) {
  .header-nav-sub-list--doctor {
    width: 100%;
    display: none;
  }
}
.header-nav-subsub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .header-nav-subsub-list {
    gap: 0;
    padding: 0;
    margin: 0;
    display: none;
  }
}
.header-nav-subsub-list__item > a {
  font-size: 1.2rem;
  padding-left: 1.7rem;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .header-nav-subsub-list__item > a {
    padding: 2rem 1.2rem 2rem 4rem;
    border-bottom: solid 1px #e4e4e4;
  }
}
.header-nav-subsub-list__item > a::before {
  content: "┗";
  display: block;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #00c0bd;
}
@media screen and (max-width: 768px) {
  .header-nav-subsub-list__item > a::before {
    left: 2rem;
  }
}

.header-frame {
  background-color: white;
}

body {
  padding-top: 14rem;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 7rem;
  }
}

.header-contact-list__enPage {
  padding-right: 7px;
}

.header-contact-list__enPage a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #1e2b38;
}

.header-contact-list__enPage a .icon {
  width: 25px;
  height: 25px;
}

.header-contact-list__enPage a .txt {
  font-size: 16px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .header-base .header-contact-list {
    gap: 4px;
  }

  .header-contact-list__enPage {
    padding-right: 0;
  }

  .header-contact-list__enPage a {
    gap: 5px;
  }

  .header-contact-list__enPage a .icon {
    width: 18px;
    height: 18px;
  }

  .header-contact-list__enPage a .txt {
    font-size: 11px;
  }
}
