@charset "UTF-8";

/*! ALL ***************************************************/
html {
  font-size: 62.5%;
  /* 62.5% 10px 1em */
}

html body {
  color: #363738;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  background: #fff;
  min-width: 1140px;
  -webkit-text-size-adjust: none;
}

html img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

html h1,
html h2,
html h3,
html h4,
html em {
  font-weight: 600;
}

html a {
  color: #363738;
  text-decoration: none;
  border: 0;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html a img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html a:hover {
  color: #21bdc7;
}

html .animation {
  transform: translate(0px, 10px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}

html .animation_left {
  transform: translate(-10px, 0px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}

html .animation_left.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

html .animation_right {
  transform: translate(10px, 0px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}

html .animation_right.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

html .animation_down {
  transform: translate(0px, -10px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}

html .animation_down.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

html .animation.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

html #wrap {
  margin-top: -28px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.map-blk {
  height: 450px;
}

@media screen and (max-width: 740px) {
  .map-blk {
    height: calc(300px + (400 - 300) * ((100vw - 320px) / (767 - 320)));
  }

  html body {
    min-width: 320px;
    font-size: 1.4rem;
  }

  html img {
    max-width: 100%;
    height: auto;
  }

  html .pc {
    display: none !important;
  }

  html #wrap {
    padding-top: 74px;
    margin-top: 0;
  }
}

@media screen and (min-width: 741px) {
  html .sp {
    display: none !important;
  }
}

html header {
  position: relative;
  z-index: 10;
  width: 100%;
}

html header .seo {
  line-height: 1;
  font-weight: 400;
  position: absolute;
  left: 190px;
  top: 10px;
  z-index: 100;
  white-space: nowrap;
}

html header .seo span {
  font-size: 1rem;
}

html header .header_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

html header .header_content .logo {
  width: 180px;
  height: 184px;
  position: relative;
}

html header .header_content .logo a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  border-radius: 0 0 20px 0;
  transition: all 0.6s ease;
  backface-visibility: hidden;
  padding: 5px;
}

html header .header_content .logo a:hover {
  filter: brightness(110%);
}

html header .header_content .header_content_inner {
  width: calc(100% - 180px);
  padding-right: 5.7vw;
  padding-top: 28px;
  box-sizing: border-box;
  background: #fff;
}

html header .header_content .header_content_inner .cv_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 8px;
}

html header .header_content .header_content_inner .cv_box small {
  font-size: 1.1rem;
  line-height: 1.25;
  color: #21bdc7;
  padding: 0 25px;
}

html header .header_content .header_content_inner .cv_box .rsv_btn {
  width: 228px;
  height: 58px;
  border: 2px solid #21bdc7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-sizing: border-box;
  color: #21bdc7;
}

html header .header_content .header_content_inner .cv_box .rsv_btn .icon-mail {
  font-size: 1.5rem;
  margin-right: 5px;
}

html header .header_content .header_content_inner .cv_box .rsv_btn span {
  font-size: 1.5rem;
  font-weight: 600;
}

html header .header_content .header_content_inner .cv_box .rsv_btn:hover {
  filter: brightness(110%);
  background: #21bdc7;
  color: #fff;
}

@media screen and (max-width: 740px) {
  html header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    transition: all 0.2s ease;
    backface-visibility: hidden;
  }

  html header.on {
    top: -16px;
  }

  html header .seo {
    line-height: 1;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    color: #fff;
  }

  html header .header_content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
    background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
    background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  }

  html header .header_content .logo {
    padding-top: 15px;
    width: 220px;
    height: auto;
    position: relative;
  }

  html header .header_content .logo a {
    position: static;
    width: auto;
    height: auto;
    display: block;
    z-index: 10;
    background: none;
    border-radius: 0;
  }

  html header .header_content .header_content_inner {
    display: none;
  }

  html header .header_content #slidemenuBtn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-sizing: border-box;
    background: #fff;
  }

  html header .header_content #slidemenuBtn:before {
    content: "メニュー";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    line-height: 1;
    color: #21bdc7;
    font-size: 1rem;
    font-weight: 600;
    font-feature-settings: "palt";
    text-align: center;
    transform: scale(0.8);
    letter-spacing: -0.06em;
  }

  html header .header_content #slidemenuBtn>span {
    width: 22px;
    height: 16px;
    position: absolute;
    left: 13px;
    top: 12px;
  }

  html header .header_content #slidemenuBtn>span:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #21bdc7;
    transition: all 0.2s ease;
    backface-visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
  }

  html header .header_content #slidemenuBtn>span:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #21bdc7;
    transition: all 0.2s ease;
    backface-visibility: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  html header .header_content #slidemenuBtn>span>span:before {
    content: "";
    width: 28px;
    height: 2px;
    background: #21bdc7;
    transition: all 0.2s ease;
    backface-visibility: hidden;
    position: absolute;
    left: -3px;
    top: 7px;
  }

  html header .header_content #slidemenuBtn>span>span:after {
    content: "";
    width: 28px;
    height: 2px;
    background: #21bdc7;
    transition: all 0.2s ease;
    backface-visibility: hidden;
    position: absolute;
    right: -3px;
    bottom: 7px;
  }

  html header .header_content #slidemenuBtn.slide-open>span:before,
  html header .header_content #slidemenuBtn.slide-open>span:after {
    width: 0%;
  }

  html header .header_content #slidemenuBtn.slide-open>span>span:before {
    transform: rotate(35deg);
  }

  html header .header_content #slidemenuBtn.slide-open>span>span:after {
    transform: rotate(-35deg);
  }
}

html nav ul,
html #nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

html nav ul>li>a,
html #nav ul>li>a {
  padding: 0 18px;
  height: 62px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

html nav ul>li+li>a:before,
html #nav ul>li+li>a:before {
  content: "";
  width: 1px;
  height: 18px;
  background: #363738;
  position: absolute;
  left: 0;
  top: 22px;
}

html nav ul>li.trigger .submenu,
html #nav ul>li.trigger .submenu {
  display: flex;
  justify-content: space-around;
  position: absolute;
  left: 0;
  top: 156px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  backface-visibility: hidden;
}

html nav ul>li.trigger .submenu:before,
html #nav ul>li.trigger .submenu:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.4s ease;
  backface-visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
}

html nav ul>li.trigger .submenu.active,
html #nav ul>li.trigger .submenu.active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0s ease;
  backface-visibility: hidden;
}

html nav ul>li.trigger .submenu.active:before,
html #nav ul>li.trigger .submenu.active:before {
  opacity: 1;
  transform: translateY(0px);
}

html nav ul>li.trigger .submenu.active .item,
html #nav ul>li.trigger .submenu.active .item {
  opacity: 1;
  transform: translateY(0px);
}

html nav ul>li.trigger .submenu .item,
html #nav ul>li.trigger .submenu .item {
  padding: 18px;
  position: relative;
  transition: all 0.4s ease;
  backface-visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease;
  backface-visibility: hidden;
  transform: translateY(-10px);
}

html nav ul>li.trigger .submenu .item a,
html #nav ul>li.trigger .submenu .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

html nav ul>li.trigger .submenu .item a:hover~figure img,
html #nav ul>li.trigger .submenu .item a:hover~figure img {
  transform: scale(1.1);
  filter: brightness(110%);
}

html nav ul>li.trigger .submenu .item figure,
html #nav ul>li.trigger .submenu .item figure {
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
}

html nav ul>li.trigger .submenu .item figure img,
html #nav ul>li.trigger .submenu .item figure img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html nav ul>li.trigger .submenu .item em,
html #nav ul>li.trigger .submenu .item em {
  padding-top: 15px;
  display: block;
  line-height: 1.3;
  text-align: center;
  font-size: 1.3rem;
  color: #21bdc7;
}

html nav ul>li.trigger .submenu .item:nth-child(1),
html #nav ul>li.trigger .submenu .item:nth-child(1) {
  transition-delay: 0.2s;
}

html nav ul>li.trigger .submenu .item:nth-child(2),
html #nav ul>li.trigger .submenu .item:nth-child(2) {
  transition-delay: 0.3s;
}

html nav ul>li.trigger .submenu .item:nth-child(3),
html #nav ul>li.trigger .submenu .item:nth-child(3) {
  transition-delay: 0.4s;
}

html nav ul>li.trigger .submenu .item:nth-child(4),
html #nav ul>li.trigger .submenu .item:nth-child(4) {
  transition-delay: 0.5s;
}

html nav ul>li.trigger .submenu .item:nth-child(5),
html #nav ul>li.trigger .submenu .item:nth-child(5) {
  transition-delay: 0.6s;
}

html nav ul>li.trigger .submenu .item:nth-child(6),
html #nav ul>li.trigger .submenu .item:nth-child(6) {
  transition-delay: 0.7s;
}

html nav ul>li.trigger .submenu .item:nth-child(7),
html #nav ul>li.trigger .submenu .item:nth-child(7) {
  transition-delay: 0.8s;
}

html a.tel {
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  color: #21bdc7;
}

html a.tel .icon-tel {
  font-size: 2.4rem;
  margin-right: 5px;
}

html a.tel span {
  font-size: 2.8rem;
  font-weight: 500;
}

@media screen and (max-width: 740px) {
  html a.tel {
    pointer-events: auto;
  }
}

html .swiper-container {
  width: 100%;
  padding-left: 10.7vw;
  padding-bottom: 35px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

html .swiper-container .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 607px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 20px 0 0 20px;
}

html .swiper-container .swiper-wrapper .swiper-slide#slide01 {
  background-image: url(/img/slide01.webp), url(/img/slide01.jpg);
}

html .swiper-container .swiper-wrapper .swiper-slide#slide02 {
  background-image: url(/img/slide02.webp), url(/img/slide02.jpg);
}

html .swiper-container .swiper-wrapper .swiper-slide#slide03 {
  background-image: url(/img/slide03.webp), url(/img/slide03.jpg);
}

html .swiper-container .swiper-text {
  position: absolute;
  left: 5.35vw;
  bottom: 25px;
  z-index: 10;
}

html .swiper-container .swiper-text h2 {
  font-weight: 800;
  font-size: 5.5rem;
  color: #0f4692;
  line-height: 1.3;
}

html .swiper-container .swiper-text p {
  padding-top: 5px;
  color: #e9545f;
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: 500;
}

html .swiper-container .swiper-pagination {
  position: absolute;
  bottom: 0;
  right: 80px;
  width: auto;
  text-align: right;
  line-height: 1;
  z-index: 100;
}

html .swiper-container .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #fff;
  opacity: 1;
  width: 7px;
  height: 7px;
  border: 1px solid #21bdc7;
}

html .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #21bdc7;
  border-color: #fff;
}

@media screen and (max-width: 740px) {
  html .swiper-container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
  }

  html .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 78vw;
    border-radius: 0;
  }

  html .swiper-container .swiper-wrapper .swiper-slide#slide01 {
    background-image: url(/img/slide01@sp.webp), url(/img/slide01@sp.jpg);
  }

  html .swiper-container .swiper-wrapper .swiper-slide#slide02 {
    background-image: url(/img/slide02@sp.webp), url(/img/slide02@sp.jpg);
  }

  html .swiper-container .swiper-wrapper .swiper-slide#slide03 {
    background-image: url(/img/slide03@sp.webp), url(/img/slide03@sp.jpg);
  }

  html .swiper-container .swiper-text {
    position: static;
    z-index: 10;
    padding: 36px 18px 18px;
  }

  html .swiper-container .swiper-text h2 {
    font-weight: 800;
    font-size: 8.4vw;
    line-height: 1.3;
    font-feature-settings: "palt";
    text-align: justify;
  }

  html .swiper-container .swiper-text p {
    font-size: 1.5rem;
  }

  html .swiper-container .swiper-pagination {
    right: 18px;
  }
}

html .ttl_shadow {
  font-size: 11.2rem;
  font-weight: 600;
  line-height: 1;
  color: #f2f9fa;
  position: absolute;
  z-index: -1;
  letter-spacing: 12px;
  font-feature-settings: "palt";
}

@media screen and (max-width: 740px) {
  html .ttl_shadow {
    font-size: 7.3rem;
    letter-spacing: 0;
  }
}

html .sect_ttl {
  padding: 90px 0 80px;
  text-align: center;
}

html .sect_ttl em {
  display: block;
  line-height: 1.4;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 2px;
  font-feature-settings: "palt";
}

html .sect_ttl small {
  display: block;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #21bdc7;
  line-height: 1;
  padding-top: 10px;
}

@media screen and (max-width: 740px) {
  html .sect_ttl {
    padding: 45px 18px 40px;
  }

  html .sect_ttl em {
    line-height: 1.3;
    font-size: 2.4rem;
  }

  html .sect_ttl small {
    font-size: 1.5rem;
    padding-top: 6px;
  }
}

html .feature {
  position: relative;
}

html .feature .ttl_shadow {
  position: absolute;
  top: 0;
  left: 55%;
}

html .feature .feature_ttl_text {
  text-align: center;
  padding-bottom: 56px;
}

html .feature .feature_ttl_text h3 {
  font-size: 1.9rem;
  color: #141494;
  font-weight: 600;
  padding-bottom: 20px;
}

html .feature .feature_ttl_text p {
  font-weight: 500;
}

html .feature .feature_inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

html .feature .feature_inner .item {
  width: calc((100% - 46px) / 3);
  position: relative;
  margin-bottom: 72px;
}

html .feature .feature_inner .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

html .feature .feature_inner .item a:hover~figure img {
  filter: brightness(110%);
  transform: scale(1.1);
}

html .feature .feature_inner .item a:hover~.text h3,
html .feature .feature_inner .item a:hover~.text p {
  color: #21bdc7;
}

html .feature .feature_inner .item figure {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

html .feature .feature_inner .item figure img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
  border-radius: 10px;
}

html .feature .feature_inner .item .text {
  position: relative;
}

html .feature .feature_inner .item .text .num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3rem;
  font-family: "Helvetica Neue", Helvetica, Arial, Verdana, Roboto;
  font-weight: bold;
  position: absolute;
  left: calc(50% - 32px);
  top: -32px;
}

html .feature .feature_inner .item .text h3 {
  padding: 50px 0 20px;
  text-align: center;
  line-height: 1.3;
  font-size: 1.9rem;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

@media screen and (max-width: 740px) {
  html .feature .ttl_shadow {
    position: absolute;
    top: 0;
    left: 25%;
  }

  html .feature .feature_ttl_text {
    text-align: center;
    padding: 0 18px 32px;
  }

  html .feature .feature_ttl_text h3 {
    font-size: 1.9rem;
    color: #141494;
    font-weight: 600;
    line-height: 1.3;
    padding-bottom: 18px;
  }

  html .feature .feature_ttl_text p {
    text-align: left;
  }

  html .feature .feature_inner {
    width: 100%;
    max-width: 100%;
    padding: 0 18px;
    box-sizing: border-box;
    flex-direction: column;
  }

  html .feature .feature_inner .item {
    width: 100%;
    position: relative;
    margin-bottom: 36px;
  }

  html .feature .feature_inner .item figure {
    width: 100%;
  }

  html .feature .feature_inner .item figure img {
    width: 100%;
  }

  html .feature .feature_inner .item .text {
    position: relative;
  }

  html .feature .feature_inner .item .text .num {
    width: 54px;
    height: 54px;
    color: #fff;
    font-size: 2.4rem;
    position: absolute;
    left: calc(50% - 27px);
    top: -27px;
  }

  html .feature .feature_inner .item .text h3 {
    padding: 40px 0 10px;
    font-size: 1.8rem;
  }
}

html .new_patient {
  width: 522px;
  margin: 0 auto 28px;
  border-radius: 15px;
  overflow: hidden;
}

html .new_patient dt {
  background: #e9545f;
  color: #fff;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1;
  padding: 8px 0;
  text-align: center;
}

html .new_patient dd {
  text-align: center;
  border: 2px solid #e9545f;
  padding: 8px 0;
  border-radius: 0 0 15px 15px;
  color: #e9545f;
  font-weight: 500;
}

@media screen and (max-width: 740px) {
  html .new_patient {
    width: calc(100% - 36px);
    margin: 0 auto 18px;
    border-radius: 15px;
    overflow: hidden;
  }

  html .new_patient dt {
    font-size: 1.6rem;
    padding: 5px 0;
  }

  html .new_patient dd {
    line-height: 1.5;
    padding: 5px 0;
  }
}

html .Greeting {
  position: relative;
  padding-bottom: 90px;
}

html .Greeting figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  background: #e7f7ff;
  background-size: auto 100%;
  z-index: -1;
}

html .Greeting figure figcaption {
  position: absolute;
  right: 10.7vw;
  bottom: 90px;
  text-align: right;
}

html .Greeting figure figcaption small {
  font-weight: 600;
  display: block;
  line-height: 1;
  font-size: 1.5rem;
  padding-bottom: 10px;
}

html .Greeting figure figcaption em {
  display: block;
  line-height: 1;
  font-size: 1.9rem;
}

html .Greeting .ttl_shadow {
  mix-blend-mode: multiply;
  left: 5.35vw;
  top: -0.5em;
  line-height: 1;
}

html .Greeting .text {
  max-width: 1100px;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}


.sec-bnr {
  margin-top: 80px;
}

.sec-bnr .inner {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.sec-bnr a {
  display: inline-block;
}

html .Greeting .text .sect_ttl {
  text-align: left;
}

html .Greeting .text h3 {
  font-size: 1.9rem;
  padding-bottom: 10px;
}

@media screen and (max-width: 740px) {
  .sec-bnr {
    margin: 50px 0 30px;
  }

  .sec-bnr .inner {
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  html .Greeting {
    position: relative;
    padding-bottom: 90px;
    background: #e7f7ff;
  }

  html .Greeting figure {
    position: absolute;
    left: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 10vw;
    background-size: cover;
    z-index: 10;
  }

  html .Greeting figure figcaption {
    position: absolute;
    right: auto;
    left: 18px;
    bottom: 36px;
    text-align: left;
  }

  html .Greeting figure figcaption small {
    font-size: 1.3rem;
    padding-bottom: 6px;
  }

  html .Greeting figure figcaption em {
    font-size: 1.5rem;
  }

  html .Greeting .ttl_shadow {
    mix-blend-mode: multiply;
    left: 0;
    top: 2.3vw;
    bottom: auto;
    width: 100%;
    text-align: center;
    line-height: 1;
    z-index: 10;
  }

  html .Greeting .text {
    max-width: 100%;
    padding: 0 18px;
    box-sizing: border-box;
    text-align: center;
    margin: -60px auto 0;
    width: 100%;
    position: relative;
    z-index: 10;
  }

  html .Greeting .text .sect_ttl {
    text-align: center;
  }

  html .Greeting .text h3 {
    font-size: 1.9rem;
    padding-bottom: 10px;
    line-height: 1.3;
  }

  html .Greeting .text p {
    text-align: left;
  }
}

html .anker_list {
  width: 100%;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d4f2f4;
}

html .anker_list.blue {
  background: #f2f9fa;
}

html .anker_list.blue a {
  width: 280px;
}

html .anker_list .nav_btn {
  width: 204px;
  display: block;
  text-align: center;
}

html .anker_list .nav_btn:hover {
  filter: brightness(110%);
}

html .anker_list .nav_btn:hover .icon-arrow:before {
  animation: arrow 1.5s cubic-bezier(1, 0, 0, 1) 1;
}

html .anker_list .nav_btn em {
  display: block;
  line-height: 1;
  padding-bottom: 22px;
  white-space: nowrap;
}

html .anker_list .nav_btn .icon-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3rem;
  margin: 0 auto;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html .anker_list .dot_line {
  width: 0;
  height: 90px;
  border-left: 2px dotted #21bdc7;
}

@media screen and (max-width: 740px) {
  html .anker_list {
    width: 100%;
    padding: 36px 18px 2px;
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
  }

  html .anker_list.blue a {
    width: calc(50% - 9px);
  }

  html .anker_list.blue a.wide {
    width: 100%;
  }

  html .anker_list .nav_btn {
    width: calc(50% - 9px);
    height: 90px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 8px;
    margin-bottom: 34px;
    box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.12);
  }

  html .anker_list .nav_btn em {
    font-size: 1.5rem;
    padding-bottom: 0;
    white-space: nowrap;
  }

  html .anker_list .nav_btn .icon-arrow {
    position: absolute;
    left: calc(50% - 19px);
    bottom: -19px;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  html .anker_list .dot_line {
    display: none;
  }
}

html .first {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

html .first .text {
  width: 53%;
  padding-left: 75px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: left;
  box-sizing: border-box;
}

html .first .text .ttl_shadow {
  left: 5.35vw;
  top: 0.25em;
}

html .first .text .text_inner {
  max-width: 590px;
  padding-right: 75px;
  padding-bottom: 100px;
  box-sizing: border-box;
}

html .first .text .text_inner .sect_ttl {
  text-align: left;
}

html .first figure {
  width: 47%;
  background-image: url(/img/first.webp), url(/img/first.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 740px) {
  html .first {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  html .first .text {
    width: 100%;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: left;
    box-sizing: border-box;
  }

  html .first .text .ttl_shadow {
    left: 0;
    top: 0.25em;
    width: 100%;
    text-align: center;
  }

  html .first .text .text_inner {
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  html .first .text .text_inner .sect_ttl {
    text-align: center;
  }

  html .first .text .text_inner figure {
    width: 100%;
    height: 62vw;
    background-image: url(/img/first.webp), url(/img/first.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  html .first .text .text_inner p {
    padding: 18px 18px 36px;
  }
}

html .cancer {
  width: 100%;
  padding: 100px 0;
}

html .cancer .cancer_inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

html .cancer .cancer_inner figure {
  flex-shrink: 0;
}

html .cancer .cancer_inner figure img {
  border-radius: 14px;
}

html .cancer .cancer_inner .text {
  padding-left: 52px;
}

html .cancer .cancer_inner .text h3 {
  color: #e9545f;
  font-size: 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

html .cancer .cancer_inner .text h3 span {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e9545f;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  position: relative;
  top: 2px;
  font-size: 2.6rem;
}

html .cancer .cancer_inner .text h4 {
  font-size: 1.9rem;
}

html .cancer .cancer_inner .text p {
  width: 470px;
  font-feature-settings: "palt";
  text-align: justify;
  padding-bottom: 30px;
}

@media screen and (max-width: 740px) {
  html .cancer {
    width: 100%;
    padding: 18px 18px 36px;
    box-sizing: border-box;
  }

  html .cancer .cancer_inner {
    width: 100%;
    display: block;
    position: relative;
    padding-top: 5.7em;
  }

  html .cancer .cancer_inner figure {
    width: 100%;
  }

  html .cancer .cancer_inner figure img {
    width: 100%;
  }

  html .cancer .cancer_inner .text {
    padding-left: 0;
  }

  html .cancer .cancer_inner .text h3 {
    position: absolute;
    left: 0;
    top: 0;
    padding-bottom: 0px;
    width: 100%;
    color: #e9545f;
    font-size: 2.2rem;
    line-height: 1.3;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0px;
  }

  html .cancer .cancer_inner .text h3 span {
    position: absolute;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    margin: 0px;
    position: absolute;
    top: 60px;
    left: calc(50% - 22px);
  }

  html .cancer .cancer_inner .text h3 em {
    width: 100%;
    display: block;
  }

  html .cancer .cancer_inner .text h4 {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.3;
    padding: 12px 0;
  }

  html .cancer .cancer_inner .text p {
    width: 100%;
    padding-bottom: 15px;
  }

  html .cancer .cancer_inner .text .btn {
    margin: 0 auto;
  }
}

html .btn {
  width: 222px;
  height: 54px;
  border-radius: 27px;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

html .btn span {
  display: block;
  line-height: 1.25;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

html .btn .icon-arrow {
  position: absolute;
  right: 20px;
  top: 0;
  line-height: 54px;
  font-size: 1.2rem;
  color: #fff;
}

html .btn:hover {
  filter: brightness(110%);
}

html .btn:hover .icon-arrow {
  animation: arrow 1.5s cubic-bezier(1, 0, 0, 1) 1;
}

html .btn.red {
  background: #e9545f;
}

@keyframes arrow {
  0% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }

  50% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }

  50.1% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }

  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}

html .trouble {
  width: 100%;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  position: relative;
  padding-bottom: 100px;
}

html .trouble .ttl_shadow {
  color: rgba(255, 255, 255, 0.15);
  z-index: 0;
  left: 0%;
  top: 40px;
  width: 100%;
  text-align: center;
}

html .trouble .sect_ttl em,
html .trouble .sect_ttl small {
  color: #fff;
}

html .trouble .sect_ttl+p {
  text-align: center;
  color: #fff;
}

html .trouble .trouble_inner {
  width: 100%;
  max-width: 1100px;
  margin: 70px auto 0;
  display: flex;
  justify-content: space-between;
}

html .trouble .trouble_inner .item {
  position: relative;
  width: 149px;
}

html .trouble .trouble_inner .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

html .trouble .trouble_inner .item a:hover~figure {
  background: rgba(255, 255, 255, 0.05);
}

html .trouble .trouble_inner .item a:hover~figure img {
  transform: scale(1.1);
}

html .trouble .trouble_inner .item figure {
  width: 149px;
  height: 149px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html .trouble .trouble_inner .item figure img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html .trouble .trouble_inner .item em {
  padding-top: 20px;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 740px) {
  html .trouble {
    width: 100%;
    padding: 0 18px 36px;
    box-sizing: border-box;
    background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
    background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
    background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  }

  html .trouble .sect_ttl+p {
    text-align: left;
    padding-bottom: 36px;
  }

  html .trouble .trouble_inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  html .trouble .trouble_inner .item {
    position: relative;
    width: 28vw;
    margin-bottom: 4vw;
  }

  html .trouble .trouble_inner .item figure {
    width: 28vw;
    height: 28vw;
  }

  html .trouble .trouble_inner .item figure img {
    transform: scale(0.8);
  }

  html .trouble .trouble_inner .item em {
    padding-top: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
    font-feature-settings: "palt";
  }
}

html .treatment {
  position: relative;
}

html .treatment .ttl_shadow {
  left: 0;
  top: 40px;
  width: 100%;
  text-align: center;
}

html .treatment .treatment_inner {
  width: 100%;
  padding: 0 80px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-between;
}

html .treatment .treatment_inner .item {
  width: calc((100% - 60px) / 4);
  position: relative;
}

html .treatment .treatment_inner .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

html .treatment .treatment_inner .item a:hover~figure img {
  filter: brightness(110%);
  transform: scale(1.1);
}

html .treatment .treatment_inner .item a:hover~figure .icon-arrow {
  animation: arrow 1.5s cubic-bezier(1, 0, 0, 1) 1;
}

html .treatment .treatment_inner .item a:hover~.text h3 {
  color: #21bdc7;
}

html .treatment .treatment_inner .item figure {
  border-radius: 14px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

html .treatment .treatment_inner .item figure img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
  width: 100%;
  border-radius: 14px;
}

html .treatment .treatment_inner .item figure figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

html .treatment .treatment_inner .item figure figcaption .icon-arrow {
  font-size: 1.2rem;
  color: #21bdc7;
}

html .treatment .treatment_inner .item .text h3 {
  padding: 10px 0;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.4;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html .treatment .treatment_inner+.treatment_inner {
  justify-content: center;
}

html .treatment .treatment_inner+.treatment_inner .item+.item {
  margin-left: 20px;
}

@media screen and (max-width: 740px) {
  html .treatment {
    position: relative;
  }

  html .treatment .ttl_shadow {
    left: 0;
    top: 40px;
    width: 100%;
    text-align: center;
  }

  html .treatment .treatment_inner {
    width: 100%;
    padding: 0 18px;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  html .treatment .treatment_inner .item {
    width: 100%;
    position: relative;
    margin-bottom: 36px;
  }

  html .treatment .treatment_inner+.treatment_inner {
    justify-content: center;
  }

  html .treatment .treatment_inner+.treatment_inner .item+.item {
    margin-left: 0px;
  }
}

html .information {
  width: 100%;
  position: relative;
}

html .information .ttl_shadow {
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 0.9;
}

html .information .info_inner {
  max-width: 1100px;
  width: 100%;
  padding-top: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

html .information .info_inner .info_box {
  width: calc((100% - 50px) / 2);
  position: relative;
}

html .information .info_inner .info_box .sect_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 30px;
}

html .information .info_inner .info_box .sect_ttl em {
  font-size: 2.4rem;
  padding-left: 20px;
}

html .information .info_inner .info_box .info_list {
  width: 100%;
  max-height: 328px;
  position: relative;
}

html .information .info_inner .info_box .info_list .item {
  border-top: 1px solid #e1e5e7;
  padding: 20px 20px 20px 0;
  display: flex;
  justify-content: flex-start;
}

html .information .info_inner .info_box .info_list .item em {
  width: 120px;
  flex-shrink: 0;
}

html .information .info_inner .info_box .info_list .item .text a {
  text-decoration: underline;
}

html .information .info_inner .info_box .btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 190px;
  height: 42px;
}

html .information .calendarBox {
  max-width: 1100px;
  width: 100%;
  padding-top: 75px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

html .information .calendarBox .month {
  width: calc(50% - 25px);
}

html .information .calendarBox .month em {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  padding-bottom: 20px;
  line-height: 1;
}

html .information .calendarBox .month .saturday {
  color: #21bdc7;
}

html .information .calendarBox .month .holiday {
  color: #e9545f;
}

html .information .calendarBox .month table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 5px;
  font-size: 1.8rem;
}

html .information .calendarBox .month table thead th {
  padding-bottom: 6px;
  text-align: center;
  font-weight: 500;
  font-size: 1.3rem;
}

html .information .calendarBox .month table tbody td {
  background: #fcfcfc;
  border-radius: 4px;
}

html .information .calendarBox .month table tbody td span {
  display: block;
  line-height: 1;
  font-weight: 500;
  padding: 10px;
  height: 68px;
  box-sizing: border-box;
  position: relative;
}

html .information .calendarBox .month table tbody td span:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  line-height: 1;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

html .information .calendarBox .month table tbody td.close {
  background: #ffe5e7;
  color: #e9545f;
}

html .information .calendarBox .month table tbody td.close span:before {
  content: "休診日";
  color: #e9545f;
}

html .information .calendarBox .month table tbody td.am_close {
  background: #dbf5d7;
  color: #529936;
}

html .information .calendarBox .month table tbody td.am_close span:before {
  content: "午前休";
  color: #529936;
}

html .information .calendarBox .month table tbody td.pm_close {
  background: #ddfef8;
  color: #21bdc7;
}

html .information .calendarBox .month table tbody td.pm_close span:before {
  content: "午後休";
  color: #21bdc7;
}

html .information .calendarBox .month table tbody td.other {
  background: #fe9e9e9;
}

html .information .calendarBox .month table tbody td.other span:before {
  content: "その他";
  color: #363738;
}

html .information .calendarBox p {
  width: 100%;
  text-align: center;
  padding: 50px 0;
}

@media screen and (max-width: 740px) {
  html .information .info_inner {
    max-width: 100%;
    width: 100%;
    padding: 0 18px;
    display: block;
    box-sizing: border-box;
  }

  html .information .info_inner .info_box {
    width: 100%;
    position: relative;
  }

  html .information .info_inner .info_box .sect_ttl {
    padding: 0 0 18px;
  }

  html .information .info_inner .info_box .sect_ttl small {
    order: 1;
    font-size: 1.2rem;
    padding-left: 10px;
  }

  html .information .info_inner .info_box .sect_ttl em {
    order: 0;
    font-size: 1.8rem;
    padding-left: 0px;
  }

  html .information .info_inner .info_box .info_list {
    width: 100%;
  }

  html .information .info_inner .info_box .info_list .item {
    padding: 12px 12px 12px 0;
    display: block;
  }

  html .information .info_inner .info_box .info_list .item em {
    display: block;
    line-height: 1;
    width: auto;
    flex-shrink: 0;
  }

  html .information .info_inner .info_box .btn {
    position: static;
    width: 190px;
    height: 38px;
    margin: 36px auto;
  }

  html .information .info_inner .info_box+.info_box {
    margin-top: 36px;
  }

  html .information .calendarBox {
    max-width: 100%;
    width: 100%;
    padding: 18px;
    box-sizing: border-box;
    display: block;
  }

  html .information .calendarBox .month {
    width: 100%;
  }

  html .information .calendarBox .month em {
    font-size: 1.8rem;
    padding-bottom: 12px;
  }

  html .information .calendarBox .month table {
    border-spacing: 2px;
    font-size: 1.2rem;
  }

  html .information .calendarBox .month table thead th {
    padding-bottom: 4px;
    font-size: 1.1rem;
  }

  html .information .calendarBox .month table tbody td span {
    padding: 3px;
    height: calc((100vw - 48px) / 7);
  }

  html .information .calendarBox .month+.month {
    margin-top: 36px;
  }

  html .information .calendarBox p {
    padding: 18px 0;
    font-size: 1.2rem;
  }
}

html .recruit {
  background: #f7fcff;
  padding: 74px;
}

html .recruit .recruit_inner {
  max-width: 1100px;
  margin: 0 auto;
  background-image: url(/img/recruit.webp), url(/img/recruit.jpg);
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: auto 100%;
  border-radius: 14px;
  padding: 70px;
  position: relative;
}

html .recruit .recruit_inner .text {
  position: relative;
  z-index: 10;
}

html .recruit .recruit_inner .text h2 {
  font-size: 3rem;
}

html .recruit .recruit_inner .text p {
  font-feature-settings: "palt";
  text-align: justify;
  padding-bottom: 20px;
}

@media screen and (max-width: 740px) {
  html .recruit {
    padding: 18px;
  }

  html .recruit .recruit_inner {
    max-width: 100%;
    border-radius: 14px;
    padding: 0px;
    position: relative;
    background: #fff;
  }

  html .recruit .recruit_inner figure {
    width: 100%;
    height: 66.6vw;
    background-image: url(/img/recruit.webp), url(/img/recruit.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    background-color: #fff;
    background-size: auto 100%;
    border-radius: 14px 14px 0 0;
  }

  html .recruit .recruit_inner .text {
    position: relative;
    z-index: 10;
    padding: 36px 18px;
  }

  html .recruit .recruit_inner .text h2 {
    font-size: 1.8rem;
    line-height: 1;
    text-align: center;
    padding-bottom: 12px;
  }

  html .recruit .recruit_inner .text p {
    padding-bottom: 20px;
  }

  html .recruit .recruit_inner .text .btn {
    width: 222px;
    height: 48px;
    margin: 0 auto;
  }
}

html footer {
  width: 100%;
  box-sizing: border-box;
}

html footer .footer_cv_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 0;
}

html footer .footer_cv_inner .telBox p {
  width: 100%;
  font-size: 1.5rem;
  font-feature-settings: "palt";
  text-align: justify;
  color: #21bdc7;
  padding-bottom: 10px;
}

html footer .footer_cv_inner .telBox .telBox_inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

html footer .footer_cv_inner .telBox .telBox_inner small {
  padding-left: 18px;
  display: block;
  color: #21bdc7;
  font-size: 1.1rem;
  line-height: 1.5;
}

html footer .footer_cv_inner .rsv_btn {
  width: 328px;
  height: 58px;
  border-radius: 29px;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  backface-visibility: hidden;
}

html footer .footer_cv_inner .rsv_btn .icon-mail {
  color: #fff;
  margin-right: 8px;
}

html footer .footer_cv_inner .rsv_btn span {
  color: #fff;
  font-weight: 500;
}

html footer .footer_cv_inner .rsv_btn:hover {
  filter: brightness(110%);
}

html footer .footer_content {
  width: 100%;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  padding-top: 100px;
}

html footer .footer_content .footer_content_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

html footer .footer_content .footer_content_inner .clinic_data .logo {
  padding-bottom: 30px;
}

html footer .footer_content .footer_content_inner .clinic_data .logo span {
  display: block;
  color: #e8f8f9;
  font-size: 1.4rem;
  padding-bottom: 8px;
}

html footer .footer_content .footer_content_inner .clinic_data address {
  color: #e8f8f9;
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 10px;
}

html footer .footer_content .footer_content_inner .clinic_data p {
  color: #e8f8f9;
  font-size: 1.5rem;
  line-height: 2;
}

html footer .footer_content .consultation_time .time_table {
  width: 100%;
  max-width: 528px;
  table-layout: fixed;
  font-size: 1.5rem;
  color: #e8f8f9;
}

html footer .footer_content .consultation_time .time_table thead th:nth-child(1) {
  width: 130px;
}

html footer .footer_content .consultation_time .time_table thead th {
  height: 35px;
  vertical-align: middle;
  text-align: center;
  border-top: #e8f8f9 solid 1px;
  border-bottom: #e8f8f9 solid 1px;
  font-weight: 500;
}

html footer .footer_content .consultation_time .time_table tbody td {
  border-bottom: #e8f8f9 solid 1px;
  height: 64px;
  font-weight: 600;
  vertical-align: middle;
  text-align: center;
}

html footer .footer_content .consultation_time .time_table tbody td:first-child {
  text-align: center;
}

html footer .footer_content .consultation_time small {
  display: block;
  text-align: right;
  color: #e8f8f9;
  font-size: 1.4rem;
  padding-top: 10px;
  font-feature-settings: "palt";
}

html footer .sitemap {
  padding-top: 40px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

html footer .sitemap dl {
  width: 50%;
}

html footer .sitemap dl dt {
  font-size: 1.7rem;
  color: #e8f8f9;
  font-weight: 500;
  padding-bottom: 5px;
}

html footer .sitemap dl dd {
  display: flex;
  justify-content: flex-start;
}

html footer .sitemap dl dd ol {
  line-height: 2.3;
}

html footer .sitemap dl dd ol li a {
  color: #e8f8f9;
  font-size: 1.3rem;
}

html footer .sitemap dl dd ol li a:hover {
  color: #fff;
}

html footer .sitemap dl dd ol+ol {
  padding-left: 150px;
}

html footer .banner {
  margin: 30px 0 10px;
  width: 100%;
  max-width: 285px;
}

html footer .banner a img {
  border: 5px solid #fff;
}

html footer .copy {
  padding: 45px 0;
  width: 100%;
  font-size: 1rem;
  line-height: 1;
  color: #e8f8f9;
  text-align: right;
}

@media screen and (max-width: 740px) {
  html footer .footer_cv_inner {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding: 36px 18px;
    box-sizing: border-box;
  }

  html footer .footer_cv_inner .telBox {
    padding-bottom: 36px;
  }

  html footer .footer_cv_inner .telBox p {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
    padding-bottom: 10px;
  }

  html footer .footer_cv_inner .telBox .telBox_inner {
    display: block;
  }

  html footer .footer_cv_inner .telBox .telBox_inner .tel {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
  }

  html footer .footer_cv_inner .telBox .telBox_inner small {
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
  }

  html footer .footer_cv_inner .rsv_btn {
    width: 278px;
    height: 48px;
    border-radius: 24px;
    margin: 0 auto;
  }

  html footer .footer_content {
    padding-top: 36px;
  }

  html footer .footer_content .footer_content_inner {
    max-width: 100%;
    padding: 0 18px;
    box-sizing: border-box;
    display: block;
  }

  html footer .footer_content .footer_content_inner .clinic_data {
    text-align: center;
    padding-bottom: 36px;
  }

  html footer .footer_content .footer_content_inner .clinic_data .logo {
    padding-bottom: 20px;
  }

  html footer .footer_content .footer_content_inner .clinic_data .logo span {
    display: block;
    color: #e8f8f9;
    font-size: 1.4rem;
    padding-bottom: 8px;
  }

  html footer .footer_content .footer_content_inner .clinic_data .logo img {
    width: 228px;
  }

  html footer .footer_content .footer_content_inner .clinic_data address {
    font-size: 1.4rem;
    padding-bottom: 8px;
  }

  html footer .footer_content .footer_content_inner .clinic_data p {
    color: #e8f8f9;
    font-size: 1rem;
    line-height: 1.5;
  }

  html footer .footer_content .consultation_time .time_table {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    color: #e8f8f9;
  }

  html footer .footer_content .consultation_time .time_table thead th:nth-child(1) {
    width: 80px;
  }

  html footer .footer_content .consultation_time .time_table thead th {
    height: 24px;
  }

  html footer .footer_content .consultation_time .time_table tbody td {
    height: 46px;
  }

  html footer .footer_content .consultation_time small {
    font-size: 1.1rem;
    padding-top: 10px;
  }

  html footer .sitemap {
    padding-top: 36px;
    width: 100%;
    display: block;
  }

  html footer .sitemap dl {
    width: 100%;
  }

  html footer .sitemap dl dt {
    font-size: 1.4rem;
  }

  html footer .sitemap dl dd {
    display: flex;
    justify-content: flex-start;
  }

  html footer .sitemap dl dd ol {
    line-height: 2.3;
    width: 50%;
  }

  html footer .sitemap dl dd ol li a {
    color: #e8f8f9;
    font-size: 1.2rem;
  }

  html footer .sitemap dl dd ol li a:hover {
    color: #fff;
  }

  html footer .sitemap dl dd ol+ol {
    padding-left: 0px;
  }

  html footer .sitemap dl+dl {
    margin-top: 36px;
  }

  html footer .banner {
    margin: 25px 0 0;
    max-width: 220px;
  }

  html footer .copy {
    padding: 36px 0 68px;
    font-size: 1rem;
    text-align: left;
  }
}

html .pageTop {
  position: fixed;
  right: -86px;
  bottom: 30px;
  transition: all 0.8s cubic-bezier(1, 0, 0, 1);
  backface-visibility: hidden;
  z-index: 20;
}

html .pageTop.on {
  right: 30px;
}

html .pageTop a {
  width: 86px;
  height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #e8f8f9;
  border-radius: 50%;
}

html .pageTop a .icon-top {
  font-size: 2.75rem;
  color: #21bdc7;
}

html .pageTop a:hover {
  background: #21bdc7;
}

html .pageTop a:hover .icon-top {
  color: #fff;
}

@media screen and (max-width: 740px) {
  html .pageTop {
    border-top: 1px solid #e8f8f9;
    right: -50px;
    bottom: 0px;
  }

  html .pageTop.on {
    right: 0px;
  }

  html .pageTop a {
    width: 50px;
    height: 50px;
    background: #17728c;
    border-radius: 0%;
  }

  html .pageTop a .icon-top {
    font-size: 2rem;
    color: #e8f8f9;
  }

  html .pageTop a:hover {
    background: #21bdc7;
  }

  html .pageTop a:hover .icon-top {
    color: #fff;
  }
}

html #sp_menu {
  position: fixed;
  right: 0;
  top: 74px;
  z-index: 100;
  width: 100%;
  height: calc(100% - 74px);
  padding: 18px;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(1, 0, 0, 1);
  backface-visibility: hidden;
}

html #sp_menu.slide-open {
  transform: translateX(0%);
}

html #sp_menu ul>li {
  border-top: 1px dotted #e8f8f9;
}

html #sp_menu ul>li>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 46px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  padding-left: 16px;
}

html #sp_menu ul>li>a.toggle {
  position: relative;
}

html #sp_menu ul>li>a.toggle .icon-plus {
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 46px;
  font-size: 2rem;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html #sp_menu ul>li>a.toggle.on .icon-plus {
  transform: rotate(45deg);
}

html #sp_menu ul>li>a .icon-mail {
  margin-right: 8px;
}

html #sp_menu ul>li ol {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
}

html #sp_menu ul>li ol li {
  border-bottom: 1px dotted #0db4fb;
}

html #sp_menu ul>li ol li>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 46px;
  color: #0db4fb;
  font-size: 1.3rem;
  font-weight: 500;
  text-indent: 16px;
}

html #sp_menu ul>li ol li:last-child {
  border-bottom: 0;
}

html #sp_menu ul li:last-child {
  border-bottom: 1px dotted #e8f8f9;
}

html #sp_menu .telbox {
  padding: 18px 0 0;
}

html #sp_menu .telbox .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

html #sp_menu .telbox small {
  padding-top: 18px;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #fff;
}

html #fixed_footer {
  display: none;
}

@media screen and (max-width: 740px) {
  html #fixed_footer {
    border-top: 1px solid #e8f8f9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    bottom: -50px;
    z-index: 20;
    width: calc(100% - 50px);
    height: 50px;
    transition: all 0.8s cubic-bezier(1, 0, 0, 1);
    backface-visibility: hidden;
  }

  html #fixed_footer.on {
    bottom: 0;
  }

  html #fixed_footer a {
    width: 50%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  html #fixed_footer a.tel {
    background: #fbbb22;
    color: #fff;
  }

  html #fixed_footer a.tel .icon-tel {
    font-size: 1.4rem;
    top: 2px;
    position: relative;
    margin-right: 4px;
  }

  html #fixed_footer a.tel span {
    font-size: 1.6rem;
  }

  html #fixed_footer a.mail {
    background: #e9545f;
    color: #fff;
  }

  html #fixed_footer a.mail .icon-mail {
    font-size: 1.2rem;
    top: 2px;
    position: relative;
    margin-right: 4px;
  }

  html #fixed_footer a.mail span {
    font-size: 1.1rem;
    font-feature-settings: "palt";
    text-align: justify;
    font-weight: 500;
  }
}

html #fixed_header {
  position: fixed;
  left: 0;
  top: -62px;
  width: 100%;
  z-index: 100;
  background-image: -moz-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -webkit-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  background-image: -ms-linear-gradient(-30deg, #0cb2ff 0%, #21bdc7 100%);
  transition: all 0.4s ease;
  backface-visibility: hidden;
}

html #fixed_header.on {
  top: 0;
}

html #fixed_header #nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

html #fixed_header #nav ul>li>a {
  color: #fff;
  font-weight: 500;
  position: relative;
}

html #fixed_header #nav ul>li>a:before {
  content: none;
}

html #fixed_header #nav ul>li>a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 0%;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html #fixed_header #nav ul>li>a:hover:after {
  width: calc(100% - 36px);
  left: 18px;
}

html #fixed_header #nav ul>li .tel .icon-tel {
  font-size: 2rem;
}

html #fixed_header #nav ul>li .tel span {
  font-size: 2rem;
}

html #fixed_header #nav ul>li .mail {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #21bdc7;
}

html #fixed_header #nav ul>li .mail:after {
  content: none;
}

html #fixed_header #nav ul>li .mail:hover {
  filter: brightness(110%);
  background: #21bdc7;
  color: #fff;
}

html #fixed_header #nav ul>li.trigger .submenu {
  top: 62px;
}

@media screen and (max-width: 740px) {
  html #fixed_header {
    display: none;
  }
}

html .wide_btnbox {
  margin: 36px 0;
  padding: 0 18px;
}

html .wide_btnbox .btn {
  margin: 0 auto;
  width: 520px;
  max-width: 100%;
}

html .bnr_btnbox {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 740px) {
  html .wide_btnbox {
    margin: 18px 0;
  }

  html .bnr_btnbox {
    padding: 0 18px;
    max-width: 340px;
  }  
}

button#open-chatbot {
  font-size: 1.7rem;
  font-weight: 700;
  position: fixed;
  color: #0F4692;
  background-image: url(../img/ai_bg.webp), url(../img/ai_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  padding: 24px 120px 24px 22px;
  display: block;
  right: 20px;
  bottom: -140px;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(1, 0, 0, 1);
  backface-visibility: hidden;
  z-index: 18;
}

button#open-chatbot.on {
  bottom: 140px;
}

button#open-chatbot::before {
  position: absolute;
  content: "";
  background-image: url(../img/ai_logo.webp), url(../img/ai_logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 38px;
  height: 38px;
  right: 31px;
  transform: translateY(-50%);
  top: 50%;
}

@media screen and (max-width: 740px) {
  button#open-chatbot.on {
    bottom: 65px;
    right: 10px;
    left: auto;
  }

  button#open-chatbot {
    font-size: 1.4rem;
    left: 0;
    right: unset;
    padding: 16px 73px 16px 17px;
  }

  button#open-chatbot::before {
    width: 30px;
    height: 30px;
    right: 21px;
  }
}