@charset "UTF-8";
.header {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  height: 60px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  padding: 0 20px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    height: 80px;
    padding-inline: 40px;
    max-width: 1280px;
    margin-inline: auto;
  }
}

.logo-header {
  display: block;
  max-width: 270px;
  width: 100%;
}
.logo-header img {
  display: block;
}

.header__right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  margin-left: auto;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    height: inherit;
  }
}

.header-nav__item {
  height: inherit;
}
.header-nav__item.is-active {
  color: #1391E6;
  position: relative;
}

.button__icon-path {
  fill: #393939;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.button__text {
  font-size: 10px;
  font-weight: 700;
  margin-top: 0;
  color: #393939;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 18px; /* 163.636% */
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header-nav__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #00bfff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header-nav__link:hover .button__text {
  color: #1391E6;
}
.header-nav__link:hover .button__icon-path {
  fill: #1391E6;
}
.header-nav__link:hover::after {
  width: 20px;
}

.header-nav__link.is-active .button__text {
  color: #1391E6;
}
.header-nav__link.is-active .button__icon-path {
  fill: #1391E6;
}
.header-nav__link.is-active::after {
  width: 18px;
}

.header-nav__link .is-active::after {
  background: #1391e6;
  bottom: 8px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
}

.header__tel {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__tel {
    display: block;
    margin-left: 32px;
    margin-bottom: 8px;
  }
}

.header-tel {
  text-align: right;
}

.header-tel__text {
  color: #393939;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.header-tel__number {
  color: #1391E6;
  display: block;
  font-weight: 700;
  margin-top: 1px;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1391E6;
  text-align: center;
  font-size: 32px;
}
.header-tel__number img {
  margin-right: -2px;
  vertical-align: bottom;
}

.header__button {
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 8px 28px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid #111;
  background: #fff;
}

@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 27px;
  height: 16px;
  position: relative;
  z-index: 51;
  margin-block: auto;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background-color: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 2px;
  background: #1391E6;
  border-radius: 6px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 7px;
}
.drawer-icon__bar:nth-child(3) {
  top: 14px;
}

.drawer__content {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: #0060A0;
  z-index: 50;
  display: none;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer__content.is-checked {
  display: block;
}

.logo-drawer {
  display: block;
  margin-left: 20px;
  margin-top: 14px;
  max-width: 270px;
  width: 100%;
}
.logo-drawer img {
  height: auto;
  max-width: 100%;
}

.drawerMenu__scroll {
  padding: 53px 0 100px;
  height: 100vh;
  overflow: scroll;
}

.drawerMenu__content {
  max-width: 255px;
  display: block;
  margin: auto;
  position: initial;
  -webkit-transform: initial;
          transform: initial;
  z-index: 5;
}

.drawerMenu__link {
  position: relative;
  font-size: 14px;
  padding-bottom: 14px;
  padding-top: 17px;
  border-top: 2px dashed #fff;
  color: #fff;
  display: block;
  letter-spacing: 0.48px;
  color: #FFF;
  font-family: "Rounded M+ 1c";
  font-weight: 500;
}
.drawerMenu__link:nth-last-child(1) {
  border-bottom: 2px dashed #fff;
}
.drawerMenu__link::after {
  background-image: url("../img/icon-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 14px;
  width: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

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

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

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.btn {
  background: #FFF;
  background-image: url("../img/icon-arrow-blue-btn.svg");
  background-repeat: no-repeat;
  background-size: width 12px height 12px;
  background-position: right 12px center;
  border: 1px solid #1391E6;
  border-radius: 24px;
  color: #1391E6;
  display: inline-block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 39px;
  -webkit-transition: background-position 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  transition: background-position 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 13px 46px;
  }
}
.btn:hover {
  background-color: #1391E6;
  background-image: url("../img/icon-arrow-white-btn.svg");
  background-position: right 5px center;
  color: #FFF;
}

.display {
  overflow: hidden;
}

.inner {
  height: inherit;
  margin: 0 auto;
  max-width: 100%;
  padding-inline: 20px;
  width: 1040px;
  padding-top: 0;
}

.section-title {
  color: #393939;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 28px;
    letter-spacing: 2.24px;
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}
.section-title::before {
  position: absolute;
  background-image: url("../img/deco-section-title.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -64px;
  width: 49px;
  height: 13px;
  display: block;
}
@media screen and (min-width: 768px) {
  .section-title::before {
    width: 67px;
    height: 20px;
    left: -93px;
  }
}
.section-title::after {
  position: absolute;
  background-image: url("../img/deco-section-title.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -65px;
  width: 49px;
  height: 13px;
  display: block;
}
@media screen and (min-width: 768px) {
  .section-title::after {
    width: 67px;
    height: 20px;
    right: -96px;
  }
}

.breadcrumb {
  color: #c2c2c2;
  margin-top: 9px;
  padding-inline: 0;
  margin-bottom: 0;
  margin-inline: auto;
  width: 90.625%;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-top: 13px;
    padding-inline: 28px;
  }
}
.breadcrumb span {
  color: #c2c2c2;
  padding-right: 4px;
  padding-left: 1px;
}
.breadcrumb span:nth-of-type(2) {
  padding-left: 4px;
}
.breadcrumb .current-item {
  color: #393939;
}

.feature {
  position: relative;
}

.feature.is-deco {
  padding-bottom: 0;
  padding-top: 106px;
}
.feature.is-deco::before {
  background-image: url("../img/concept-bg-sp.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  content: "";
  left: 3%;
  top: 0px;
  width: 97%;
  height: 81.0667vw;
  z-index: -10;
}
@media screen and (min-width: 768px) {
  .feature.is-deco::before {
    background-image: url("../img/concept-bg-pc.svg");
    background-size: contain;
    width: 102%;
    height: 781px;
    left: 32.5%;
    top: 2px;
  }
}

.feature__wrap {
  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;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feature__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 900px) {
  .feature__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.feature__img {
  margin-top: 41px;
  width: 89.0666666667%;
}
@media screen and (min-width: 900px) {
  .feature__img {
    border-radius: 0 20px 20px 20px;
    height: 100%;
    max-height: 438px;
    overflow: hidden;
    width: 50%;
    margin-top: 9px;
  }
}
.feature__img img {
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 768px) {
  .feature__img img {
    height: 438px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
    width: 100%;
  }
}

.feature__description {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .feature__description {
    width: 40%;
    padding-inline: 0;
    padding-top: 40px;
    margin-left: 94px;
  }
}
@media screen and (min-width: 900px) {
  .feature__description {
    margin-left: 40px;
    width: 40%;
  }
}
@media screen and (min-width: 999px) {
  .feature__description {
    width: 31.8%;
    margin-left: 95px;
  }
}

.feature__subTitle {
  color: #1391E6;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
}
@media screen and (min-width: 768px) {
  .feature__subTitle {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.feature__title {
  color: #393939;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 160% */
  letter-spacing: 1.6px;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .feature__title {
    font-size: 28px;
    line-height: 44px; /* 157.143% */
    letter-spacing: 2.24px;
    margin-top: 24px;
  }
}

.feature__textBlock {
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .feature__textBlock {
    margin-top: 35px;
  }
}

.feature__text {
  color: #393939;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.71429;
  padding-right: 2px;
}
.feature__text:nth-child(n+2) {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .feature__text {
    line-height: 24px; /* 171.429% */
    padding-right: 0;
  }
}

.feature__btn {
  text-align: center;
  margin-top: 38.5px;
}
@media screen and (min-width: 768px) {
  .feature__btn {
    text-align: initial;
    margin-top: 35.5px;
  }
}

.lower-top {
  height: 188px;
  margin-top: 80px;
  margin-inline: auto;
  max-width: 1920px;
  overflow: hidden;
  position: relative;
  width: 89.625%;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .lower-top {
    margin-top: 120px;
    height: 340px;
    width: 90.625%;
  }
}
.lower-top::before {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.mv-slider {
  margin-top: 75px;
  padding: 0 20px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv-slider {
    margin: auto;
    margin-top: 120px;
    max-width: 1920px;
    position: relative;
    width: 95.625%;
    padding: 0 30px;
  }
}

.swiper-container {
  height: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  height: auto !important;
}

.swiper__img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}
.swiper__img img {
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .swiper__img img {
    border-radius: 20px;
  }
}

.swiper__textImg {
  position: absolute;
  bottom: 39px;
  left: 19px;
  width: 265px;
}
@media screen and (min-width: 768px) {
  .swiper__textImg {
    bottom: 59px;
    left: 63px;
    position: absolute;
    width: 415px;
    z-index: 11;
  }
}
.swiper__textImg img {
  width: 100%;
}

.mv__prev,
.mv__next {
  width: 40px;
  height: 40px;
}
.mv__prev::after,
.mv__next::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .mv__prev,
  .mv__next {
    width: 62px;
    height: 62px;
  }
}

.mv__prev {
  left: 0;
  background: url("../img/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .mv__prev {
    left: 1px;
  }
}

.mv__next {
  right: 0;
  background-image: url("../img/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .mv__next {
    right: 1px;
  }
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 8px;
  position: absolute;
  bottom: 366px !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto !important;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    bottom: 8px !important;
    gap: 13px;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin-right: 0 !important;
  margin-left: 0 !important;
  background: #C2C2C2;
  opacity: 1;
  left: 13px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1391E6;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  left: 10px;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: 13px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  top: 301px;
}
@media screen and (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 172px;
  }
}
@media screen and (min-width: 900px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 255px;
  }
}

.staff-slider {
  width: 100%;
  margin-top: 97px;
}
@media screen and (min-width: 768px) {
  .staff-slider {
    margin-top: 158px;
  }
}
.staff-slider img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .staff-slider img {
    width: auto;
    height: 100%;
  }
}

.staff__swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

@media screen and (min-width: 768px) {
  .staff__swiper {
    height: 229px !important;
    width: auto !important;
  }
}

.staff__slide {
  margin-left: 10px;
  width: 200px;
  height: 150px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .staff__slide {
    margin-left: 20px;
    width: 305px;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .staff__slide img {
    width: 100%;
    height: 100%;
  }
}

.lower-top-staff {
  background-image: url("../img/staff/staff_top-sp.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .lower-top-staff {
    background-image: url("../img/staff/staff_top-pc.jpg");
    margin-top: 95px;
  }
}

.lower-staff {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .lower-staff {
    margin-top: 78px;
  }
}

#greeting::before {
  content: "";
  display: block;
  height: 60px; /* ヘッダーの高さに合わせて調整 */
  margin-top: -60px; /* ヘッダーの高さに合わせて調整 */
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  #greeting::before {
    margin-top: -80px; /* ヘッダーの高さに合わせて調整 */
  }
}

.lower-greeting__titleWrap {
  text-align: center;
}

.lower-greeting__content {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .lower-greeting__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 61px;
  }
}

.lower-greeting__description {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429; /* 171.429% */
  max-width: 460px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .lower-greeting__description {
    width: 100%;
  }
}

.lower-greeting__subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6; /* 160% */
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .lower-greeting__subtitle {
    font-size: 28px;
    line-height: 1.57143; /* 157.143% */
    letter-spacing: 2.24px;
  }
}

.lower-greeting__textWrap {
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .lower-greeting__textWrap {
    margin-top: 33px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71429; /* 171.429% */
  }
}

.lower-greeting__textWrap2 {
  padding-top: 23px;
}

.lower-greeting__textWrap3 {
  padding-top: 34px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .lower-greeting__textWrap3 {
    padding-top: 15px;
  }
}

@media screen and (min-width: 768px) {
  .lower-greeting__imgWrap {
    margin-left: 80px;
  }
}

@media screen and (min-width: 768px) {
  .hidden-overTab {
    display: none;
  }
}

.lower-greeting__img {
  margin-top: 40px;
}
.lower-greeting__img img {
  border-radius: 20px;
  width: 460px;
}
@media screen and (min-width: 768px) {
  .lower-greeting__img {
    margin-top: 0;
  }
}

.lower-greeting__about {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .lower-greeting__about {
    padding-top: 56px;
  }
}

.lower-greeting__career-title {
  font-size: 16px;
  border-bottom: 1px solid #393939;
  padding-bottom: 3px;
}

.lower-greeting__career-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  gap: 17px;
}
.lower-greeting__career-block:nth-child(n+3) {
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .lower-greeting__career-block:nth-child(n+3) {
    margin-top: 11px;
  }
}

.lower-greeting__licence {
  padding-top: 35px;
}
@media screen and (min-width: 768px) {
  .lower-greeting__licence {
    padding-top: 28px;
  }
}

.lower-greeting__licence-title {
  border-bottom: 1px solid #393939;
  padding-bottom: 4px;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
}

.lower-greeting__licence-block {
  margin-top: 13px;
}
.lower-greeting__licence-block:nth-child(n+3) {
  margin-top: 12px;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.lower-staff__member {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .lower-staff__member {
    margin-top: 160px;
  }
}

.staff-member__titleWrap {
  text-align: center;
}

.lower-staff__content {
  margin-top: 32px;
}
.lower-staff__content:nth-child(n+3) {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .lower-staff__content:nth-child(n+3) {
    margin-top: 57px;
  }
}
@media screen and (min-width: 768px) {
  .lower-staff__content {
    margin-top: 56px;
  }
}

.staff-member__subTitle {
  color: #393939;
  font-family: "Rounded M+ 1c";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
  padding-bottom: 7px;
  border-bottom: 1px solid #707070;
}

.staff-member__items {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .staff-member__items {
    margin-top: 40px;
  }
}

.staff-member__item {
  margin: auto;
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .staff-member__item {
    width: calc(33.3333333333% - 53.3333333333px);
    margin-block: 0;
  }
}
.staff-member__item:nth-child(n+2) {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .staff-member__item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) {
  .staff-member__item:nth-child(3n+1) {
    margin-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .staff-member__item:not(:nth-child(3n+1)) {
    margin-left: 80px;
  }
}
.staff-member__item:not(:nth-child(-n+3)) {
  margin-top: 54px;
}
@media screen and (min-width: 768px) {
  .staff-member__item:not(:nth-child(-n+3)) {
    margin-top: 59px;
  }
}

.staffCard__img {
  border-radius: 20px;
  overflow: hidden;
  padding-top: 100%;
  position: relative;
}
.staffCard__img img {
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.staffCard__nameWrap {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .staffCard__nameWrap {
    margin-top: 14px;
  }
}

.staffCard__charge {
  color: #393939;
  font-family: "Rounded M+ 1c";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .staffCard__charge {
    vertical-align: text-top;
  }
}

.staffCard__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.44px;
  margin-left: 8px;
}

.staffCard__info {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 16px;
}

.staffCard__info-left {
  width: 41.5%;
  padding: 16px 0 16px 20px;
}
@media screen and (min-width: 768px) {
  .staffCard__info-left {
    width: 50%;
  }
}
.staffCard__info-left:not(:last-child) {
  background-color: #dff1fd;
  border-bottom: 1px solid #fff;
}

.staffCard__info-right {
  width: 41.5%;
  padding: 16px 0 16px 20px;
}
@media screen and (min-width: 768px) {
  .staffCard__info-right {
    width: 50%;
  }
}

.top-info {
  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;
}
@media screen and (min-width: 768px) {
  .top-info {
    padding: 0 48px;
  }
}
@media screen and (min-width: 900px) {
  .top-info {
    -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;
    padding-left: 104px;
    padding-right: 96px;
    position: relative;
    z-index: 2;
  }
}

.top-info__news {
  padding-inline: 20px;
  padding-block: 0;
  margin-top: 39px;
}
@media screen and (min-width: 768px) {
  .top-info__news {
    margin-top: 16px;
    padding-inline: 0;
  }
}

@media screen and (min-width: 768px) {
  .top-news {
    max-width: 540px;
    width: 100%;
  }
}

.top-news__titleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 540px;
}

.top-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 768px) {
  .top-news__head {
    gap: 13px;
  }
}

.top-news__title {
  color: #393939;
  text-align: center;
  font-family: "Rounded M+ 1c";
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .top-news__title {
    letter-spacing: 2px;
    padding-bottom: 5px;
    margin-left: 13px;
  }
}

.top-news__subTitle {
  color: #1391E6;
  text-align: center;
  font-family: "Rounded M+ 1c";
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.9px;
  margin-block: auto;
  line-height: 3;
  padding-top: 4px;
}
@media screen and (min-width: 768px) {
  .top-news__subTitle {
    color: hsl(204, 85%, 49%);
    font-size: 10px;
    letter-spacing: 1.2px;
  }
}

.top-news__list {
  padding-top: 3.5px;
}

.top-news__detail {
  color: #888;
  font-family: "Rounded M+ 1c";
  font-size: 11px;
  font-weight: 500;
  width: 121px;
  height: 1px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  margin-bottom: 11px;
  padding-top: 4px;
}
@media screen and (min-width: 768px) {
  .top-news__detail {
    font-size: 12px;
  }
}

.top-news__archive {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-block: 1px solid #000;
  padding-top: 10px;
  padding-bottom: 9px;
  padding-left: 5px;
}
.top-news__archive::after {
  background-image: url(../img/icon_arrow_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  position: absolute;
  bottom: 16px;
  right: 6px;
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  flex-shrink: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .top-news__archive::after {
    bottom: 13px;
    right: 4px;
  }
}
.top-news__archive:hover .top-news__published {
  color: #1391E6;
}
.top-news__archive:hover .top-news__text {
  color: #1391E6;
}
.top-news__archive:hover::after {
  background-image: url(../img/icon_arrow_blue.svg);
  right: 0;
}
@media screen and (min-width: 768px) {
  .top-news__archive {
    padding-bottom: 7px;
    padding-left: 8px;
  }
}

.top-news__published {
  color: #393939;
  font-size: 13px;
  font-weight: 500;
}
.top-news__text {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  font-size: 14px;
  margin-left: 24px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .top-news__text {
    margin-left: 22px;
  }
}

.top-info__table {
  margin-top: -22px;
  z-index: 1;
  margin-inline: 20px;
}
@media screen and (min-width: 768px) {
  .top-info__table {
    margin-inline: 0;
    margin-left: 0;
    margin-top: -35px;
  }
}
@media screen and (min-width: 900px) {
  .top-info__table {
    margin-left: 58px;
  }
}

.time-table {
  max-width: 478px;
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  margin-top: -23px;
}
@media screen and (min-width: 768px) {
  .time-table {
    margin-top: -36px;
    max-width: 540px;
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.time-table img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .medical-time img {
    width: 477px;
    height: 166px;
    background: url(<path-to-image>) lightgray 50%/cover no-repeat;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  }
}

.top__concept {
  margin-top: 63px;
}
@media screen and (min-width: 768px) {
  .top__concept {
    margin-top: 55px;
  }
}

.top__recommend {
  padding-top: 101px;
}
@media screen and (min-width: 900px) {
  .top__recommend {
    max-width: 1026px;
    margin-inline: auto;
    margin-top: 108px;
    padding-inline: 30px;
    padding-top: 7px;
  }
}

.top-recommend__titleWrap {
  text-align: center;
}

.top-recommend__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
  padding: 0 47px;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .top-recommend__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 57px;
    padding: 0;
    gap: 63px;
  }
}

.top-recommend__item {
  text-align: center;
}
.recommend-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recommend-item {
    width: calc(33.3333333333% - 40px);
  }
}

.recommend-item__title img {
  width: 177px;
}

.recommend-item__img {
  width: 276px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .recommend-item__img {
    margin-top: 15px;
  }
}

.recommend-item__text {
  color: #393939;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  line-height: 1.71429; /* 171.429% */
  margin-top: 19px;
  text-align: left;
  margin-inline: auto;
}
.recommend-item__text-red {
  color: #EE5A6D;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.lower-top-about {
  background-image: url("../img/about/about_top-sp.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lower-top__group {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 51%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}

.lower-top__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .lower-top__title {
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}

.lower-top__subTitle {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .lower-top__subTitle {
    font-size: 14px;
    margin-top: 20px;
    text-transform: uppercase;
  }
}

.lower {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .lower {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .lower-about {
    margin-top: 77px;
  }
}

.about-feature__titleWrap {
  text-align: center;
}

.about-feature__items {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .about-feature__items {
    margin-top: 55px;
  }
}

.feature.is-deco {
  padding-top: 101px;
}
@media screen and (min-width: 768px) {
  .feature.is-deco {
    padding-top: 171px;
    padding-bottom: 108px;
  }
}

.about-feature__item:nth-child(n+2) {
  margin-top: 59px;
}
@media screen and (min-width: 768px) {
  .about-feature__item:nth-child(n+2) {
    margin-top: 83px;
  }
}

.feature__img {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .feature__img {
    margin-top: 50px;
  }
}

.is-reverse .feature__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .is-reverse .feature__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.is-reverse .feature__wrap .feature__description {
  padding-top: 35px;
  margin-right: 95px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .is-reverse .feature__wrap .feature__description {
    width: 40%;
    margin-right: 40px;
    margin-left: 94px;
  }
}
@media screen and (min-width: 999px) {
  .is-reverse .feature__wrap .feature__description {
    width: 31.8%;
    margin-inline: 94px;
  }
}
.is-reverse .feature__wrap .feature__img {
  height: 61.2vw;
  margin-left: auto;
  margin-right: inherit;
  margin-top: 38px;
  width: 89%;
  border-radius: 20px 0 0 20px;
  max-height: 438px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .is-reverse .feature__wrap .feature__img {
    width: 50%;
    margin-top: 0;
    margin-left: inherit;
  }
}
.is-reverse .feature__wrap .feature__img img {
  border-radius: inherit;
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 768px) {
  .is-reverse .feature__wrap .feature__img img {
    height: 438px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
    width: 100%;
  }
}
.is-reverse .feature__wrap .feature__textBlock {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .is-reverse .feature__wrap .feature__textBlock {
    margin-top: 34px;
  }
}

.lower-about__gallery {
  margin-top: 98px;
}
@media screen and (min-width: 768px) {
  .lower-about__gallery {
    margin-top: 200px;
  }
}

.about-gallery__titleWrap {
  text-align: center;
}

.about-gallery__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-inline: auto;
  margin-top: 38px;
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-gallery__photos {
    margin-top: 58px;
    max-width: initial;
  }
}

.about-gallery__photo {
  border-radius: 20px;
  overflow: hidden;
  width: calc(50% - 5.5px);
}
.about-gallery__photo:not(:nth-child(-n+2)) {
  margin-top: 11px;
}
.about-gallery__photo:not(:nth-child(2n)) {
  margin-right: 11px;
}
@media screen and (min-width: 768px) {
  .about-gallery__photo {
    width: calc(33.3333% - 16px);
  }
  .about-gallery__photo:not(:nth-child(-n+2)) {
    margin-top: 0;
  }
  .about-gallery__photo:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .about-gallery__photo:not(:nth-child(3n)) {
    margin-right: 24px;
  }
  .about-gallery__photo:not(:nth-child(-n+3)) {
    margin-top: 24px;
  }
}

.about-gallery__img {
  padding-top: 100%;
  position: relative;
}
.about-gallery__img img {
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.top__medical {
  margin-top: 98px;
}
@media screen and (min-width: 768px) {
  .top__medical {
    margin-top: 135px;
  }
}

.deco-vector__top1 {
  position: relative;
  width: 100%;
  height: 23.6667vw;
}
@media screen and (min-width: 768px) {
  .deco-vector__top1 {
    height: 15.70313vw;
  }
}
.deco-vector__top1::before {
  background-image: url("../img/medical-deco-top-sp.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  left: 50%;
  position: absolute;
  height: inherit;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: inherit;
}
@media screen and (min-width: 768px) {
  .deco-vector__top1::before {
    background-image: url("../img/medical-deco-top-pc.svg");
    background-size: cover;
    top: 2px;
    height: inherit;
  }
}

.deco-vector__bg {
  background-color: #DFF1FD;
  padding-top: 27px;
  padding-bottom: 62px;
}
@media screen and (min-width: 768px) {
  .deco-vector__bg {
    padding-top: 0;
    padding-bottom: 85px;
  }
}

.medical__titleWrap {
  text-align: center;
  padding-top: 28px;
}
@media screen and (min-width: 768px) {
  .medical__titleWrap {
    padding-top: 0;
  }
}

.medical__items {
  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;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .medical__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    margin-top: 56px;
  }
}

.medical__item {
  width: 100%;
  position: relative;
}

.medical-link {
  height: 210px;
  border-radius: 29px;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .medical-link {
    height: 290px;
  }
}
.medical-link::before {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transform: 0.4s ease-out;
          transform: 0.4s ease-out;
  width: 100%;
}
.medical-link:nth-child(1)::before {
  background-image: url("../img/medical-snap1.jpg");
}
.medical-link:nth-child(2)::before {
  background-image: url("../img/medical-snap2.jpg");
}
.medical-link:hover.medical-link-line {
  border: 2px solid #fff;
}
.medical-link:hover::after {
  background: rgba(0, 0, 0, 0.4);
}
.medical-link::after {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  width: 100%;
  z-index: 0;
}

.medical-link-line {
  border: 2px solid transparent;
  border-radius: 20px;
  height: calc(100% - 20px);
  margin: 10px;
  position: relative;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  width: calc(100% - 20px);
  z-index: 1;
}
.medical-link-line:hover {
  border: 2px solid #fff;
}

.medical-link__wrap {
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.medical-link__wrap-normal {
  top: 29%;
}
.medical-link__wrap-special {
  top: 24%;
}
@media screen and (min-width: 768px) {
  .medical-link__wrap-normal {
    top: 33%;
  }
  .medical-link__wrap-special {
    top: 27%;
  }
}

.medical-link__title {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  position: relative;
  line-height: 1;
  padding-bottom: 43px;
}
@media screen and (min-width: 768px) {
  .medical-link__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}
.medical-link__title::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 30px;
  height: 2px;
  bottom: 15px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .medical-link__title::after {
    width: 40px;
  }
}

.medical-link__text-wrapper {
  padding-top: 2px;
}
@media screen and (min-width: 768px) {
  .medical-link__text-wrapper {
    padding-top: 5px;
  }
}

.medical-link__text {
  color: #FFF;
  text-align: center;
  font-family: "Rounded M+ 1c";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.96px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .medical-link__text {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 1.28px;
  }
}

.medical-link__text + .medical-link__text {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .medical-link__text + .medical-link__text {
    padding-top: 3px;
  }
}

.medical__textWrap {
  padding: 18px 20px 17px;
  background-color: #fff;
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .medical__textWrap {
    margin-top: 60px;
    padding: 36px 40px 35px;
  }
}

.medical__text {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429; /* 171.429% */
  text-align: left;
}
@media screen and (min-width: 768px) {
  .medical__text {
    line-height: 2; /* 200% */
  }
}

.medical__text-red {
  color: #EE5A6D;
}

.deco-vector__bottom1 {
  position: relative;
  width: 100%;
  height: 7.57812vw;
}
.deco-vector__bottom1::before {
  position: absolute;
  background-image: url("../img/medical-bg-bottom.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  left: 50%;
  position: absolute;
  height: inherit;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: inherit;
}
@media screen and (min-width: 768px) {
  .deco-vector__bottom1::before {
    top: -3px;
  }
}

.deco-vector__bottom2 {
  position: relative;
}
.deco-vector__bottom2::before {
  position: absolute;
  background-image: url("../img/medical-deco-star1.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 12px;
  bottom: 4px;
  width: 24px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .deco-vector__bottom2::before {
    width: 57px;
    height: 56px;
    bottom: 97px;
    left: 40px;
  }
}
.deco-vector__bottom2::after {
  position: absolute;
  background-image: url("../img/medical-deco-star2.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  right: 7px;
  bottom: 22px;
  width: 56px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .deco-vector__bottom2::after {
    width: 125.307px;
    height: 138px;
    right: 20.45px;
    bottom: 76px;
  }
}

.lower-top-medical {
  background-image: url("../img/medical/medical_top-sp.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .lower-top-medical {
    background-image: url("../img/medical/medical_top-pc.jpg");
  }
}

.lower-medical__nav {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .lower-medical__nav {
    margin-top: 83px;
  }
}

.medical-main__inner {
  width: 89.625%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .medical-main__inner {
    width: 95.625%;
    max-width: 1160px;
  }
}

.medical-main__wrap:nth-child(n+2) {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .medical-main__wrap:nth-child(n+2) {
    margin-top: 65px;
  }
}

.medical-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}

.medical-anchor__title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .medical-anchor__title {
    font-size: 28px;
    letter-spacing: 0.08em;
    line-height: 1.42857;
  }
}

.medical-anchor__subTitle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 35px;
  letter-spacing: 0.08em;
  line-height: 35px;
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .medical-anchor__subTitle {
    text-align: center;
  }
}

.medical-anchor__subTitle--blue {
  background: #1391E6;
}

.medical-anchor__subTitle--red {
  background: #ee5a6d;
}

.medical-main__items {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .medical-main__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 17px;
    margin-top: 29px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.medical-main__item {
  margin-bottom: 16px;
  margin-right: 0;
  display: block;
  text-align: center;
}

.medical-item {
  display: block;
  text-align: center;
  background: #fff;
  border: 2px solid #1391E6;
  border-radius: 12px;
}
.medical-item:nth-child(n+2) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .medical-item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .medical-item {
    font-size: 24px;
    letter-spacing: 1.92px;
    min-width: 140px;
  }
}

.medical-item__link {
  background-image: none;
  background-position: bottom 0px center;
  background-repeat: no-repeat;
  border-radius: 12px;
  font-size: 20px;
  padding: 18px 20px;
  font-weight: 700;
  color: #1391e6;
  display: block;
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .medical-item__link {
    padding: 22px 29px;
    font-size: 24px;
  }
}
.medical-item__link:hover {
  background-color: #DFF1FD;
  background-position: bottom 5px center;
  background-repeat: no-repeat;
  padding: 11px 29px 31px;
}

.lower-medical__items1 {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .lower-medical__items1 {
    margin-top: 142px;
  }
}

.lower-medical__items2 {
  margin-top: 97px;
}
@media screen and (min-width: 768px) {
  .lower-medical__items2 {
    margin-top: 152px;
  }
}

.lower-medical__titleWrap {
  text-align: center;
}

.medical-detail {
  border-radius: 20px;
  background: #FFF;
  padding: 20px;
  position: relative;
  margin-top: 39px;
}
.medical-detail:nth-child(n+2) {
  margin-top: 40px;
}
.medical-detail:nth-child(n+3) {
  margin-top: 41px;
}
@media screen and (min-width: 768px) {
  .medical-detail {
    padding: 60px;
    margin-top: 60px;
  }
}

.medical-detail__titleWrap {
  padding-bottom: 18px;
  border-bottom: 2px solid #C2C2C2;
}
@media screen and (min-width: 768px) {
  .medical-detail__titleWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 38px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 38px;
  }
}

.medical-detail__title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4; /* 140% */
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .medical-detail__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.medical-detail__subTitle {
  color: #1391E6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .medical-detail__subTitle {
    margin-top: 5px;
  }
}

.medical-detail__content {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .medical-detail__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    margin-top: 36px;
  }
}

.medical-detail__textWrap {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .medical-detail__textWrap {
    width: 50%;
  }
}

.medical-detail__text {
  margin-top: 17px;
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71; /* 171.429% */
}
@media screen and (min-width: 768px) {
  .medical-detail__text {
    margin-top: 0;
    padding-right: 1px;
  }
}

.medical-detail__imgWrap {
  margin-top: 19px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .medical-detail__imgWrap {
    margin-top: 0;
    border-radius: 20px;
    overflow: hidden;
    width: 50%;
  }
}

.medical-detail__img {
  padding-top: 75%;
  position: relative;
}
.medical-detail__img img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.medical-detail__icon-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .medical-detail__icon-pc {
    display: block;
    position: absolute;
    top: 0;
    right: 60px;
  }
}

.medical-detail__icon-sp {
  position: absolute;
  top: 0;
  right: 20px;
  color: #FFF;
  text-align: center;
  font-family: "Rounded M+ 1c";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .medical-detail__icon-sp {
    display: none;
  }
}

.top__blog {
  margin-top: 97px;
}
@media screen and (min-width: 768px) {
  .top__blog {
    margin-top: 158px;
  }
}

.blog {
  text-align: center;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .blog {
    margin-top: 80px;
  }
}

.blog__lists {
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .blog__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 57px;
  }
}

.blog__list {
  max-width: 600px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 20px;
}
.blog__list:hover .blog-card__img > img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
          transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.blog__list:hover .blog-card__title {
  color: #1391E6;
}
@media screen and (min-width: 768px) {
  .blog__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(50% - 25px);
    margin-inline: auto;
    border-radius: 20px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (min-width: 900px) {
  .blog__list {
    width: calc(33.3333333333% - 33.3333333333px);
  }
  .blog__list:nth-child(n+4) {
    margin-top: 59px;
  }
  .blog__list:not(:nth-child(3n+1)) {
    margin-left: 50px;
  }
}

.blog-card {
  position: relative;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.blog-card__img {
  position: relative;
  height: 101px;
  width: 39.7014925373%;
  padding-top: 0;
  border-radius: initial;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .blog-card__img {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    padding-top: 62.66667%;
  }
}
.blog-card__img > img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  width: 100%;
}

.blog-card__body {
  text-align: left;
  padding: 2px 0 8px 10px;
  width: 60.2985074627%;
}
@media screen and (min-width: 768px) {
  .blog-card__body {
    min-height: 126px;
    padding: 24px 24px 16px;
    position: relative;
    width: 100%;
    font-family: "Rounded M+ 1c";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5; /* 150% */
  }
}

.blog-card__category {
  display: inline-block;
  font-size: 10px;
  color: #FFF;
  font-weight: 500;
  padding: 3px 8px 0px 8px;
  border-radius: 10px;
  background: #1391E6;
}
@media screen and (min-width: 768px) {
  .blog-card__category {
    color: #fff;
    position: absolute;
    font-size: 11px;
    height: 28px;
    left: 24px;
    line-height: 28px;
    padding: 0 12px;
    text-align: center;
    top: -14px;
    border-radius: 12px;
  }
}

.blog-card__title {
  margin-top: 2px;
  color: #393939;
  font-family: "Rounded M+ 1c";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.blog-card__published {
  display: block;
  margin-top: 11px;
  color: #888;
  font-size: 11px;
  line-height: 1;
}

.blog__btn {
  text-align: center;
  margin-top: 41.5px;
}
@media screen and (min-width: 768px) {
  .blog__btn {
    margin-top: 61px;
  }
}

.lower-top-blog {
  background-image: url("../img/blog/blog_top-sp.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .lower-top-blog {
    background-image: url("../img/staff/staff_top-pc.jpg");
  }
}

@media screen and (min-width: 768px) {
  .blog__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.blog__articles .archive__lists {
  margin-top: 57px;
}
@media screen and (min-width: 768px) {
  .blog__articles .archive__lists {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .blog__articles {
    width: calc(100% - 300px - 30px);
  }
}

.archive__lists {
  position: relative;
  padding-top: 10px;
}

.archive-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.archive-card:nth-child(n+2) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .archive-card:nth-child(n+2) {
    margin-top: 22.5px;
  }
}
.archive-card:hover .archive-card__title {
  color: #1391E6;
}
.archive-card:hover .archive-card__img > img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
          transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.archive-card__img {
  position: relative;
  border-radius: initial;
  max-width: 133px;
  overflow: hidden;
  padding-top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive-card__img {
    max-width: 245px;
  }
}
.archive-card__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.archive-card__img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.archive-card__img img {
  width: 100%;
  height: 223px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 335/223;
}

.archive-card__new {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 10;
  pointer-events: none;
}
.archive-card__new img {
  width: 40px;
  height: 40px;
}

.archive-card__body {
  text-align: left;
  padding: 0 0 2px 10px;
  width: 60.2985074627%;
}
@media screen and (min-width: 768px) {
  .archive-card__body {
    padding-left: 21px;
    padding-top: 17px;
    padding-bottom: 9px;
    max-width: 405px;
    min-height: 138px;
  }
}

.archive-card__category {
  color: #FFF;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 8px 2px;
  border-radius: 10px;
  background: #1391E6;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .archive-card__category {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 12px;
  }
}

.archive-card__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1, 42857; /* 142.857% */
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .archive-card__title {
    margin-top: 12px;
    min-height: 50px;
    font-size: 16px;
    line-height: 1.5; /* 150% */
  }
}

.archive-card__published {
  color: #888;
  font-family: "Rounded M+ 1c";
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .archive-card__published {
    margin-top: 14px;
  }
}

.blog__pageNavi {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .blog__pageNavi {
    margin-top: 100px;
  }
}

.related-link__prev {
  right: calc(50% + 65px);
}

.related-link__next {
  left: calc(50% + 65px);
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-pagenavi .next.page-numbers {
  background: #1391e6;
  background-image: url("../img/common/arrow-circle-right.svg");
  background-repeat: no-repeat;
  color: #fff;
  background-position: right 14px center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: -0.1em;
  -webkit-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease;
  width: 82px;
  outline: none; /* 赤い点線を消す */
}
.wp-pagenavi .next.page-numbers:hover {
  background-position: right 5px center;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .next.page-numbers {
    background-position: right 16px center;
  }
}
.wp-pagenavi .page-numbers {
  color: #fff;
}
.wp-pagenavi .page-numbers {
  width: 30px;
  color: #1391E6;
}
.wp-pagenavi .current {
  color: #fff;
}
.wp-pagenavi .prev.page-numbers {
  background: #1391E6;
  background-image: url("../img/common/arrow-circle-left.svg");
  background-repeat: no-repeat;
  color: #fff;
  background-position: left 9px center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  letter-spacing: -0.1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 82px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .prev.page-numbers {
    background-position: left 16px center;
  }
}
.wp-pagenavi .current, .wp-pagenavi .page-numbers {
  width: 30px;
}
.wp-pagenavi .current {
  color: #fff;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 11px;
  height: 30px;
  margin-left: 3px;
  margin-right: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 5px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
  padding: 3px 5px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    color: #1391E6;
    font-size: 14px;
    font-weight: 500;
    padding: 17px 19px;
    height: 36px;
    border-radius: 6px;
  }
}

.current {
  border-color: #1391e6;
  color: #fff;
  background-color: #1391e6;
  font-weight: bold;
}

.page-numbers,
.nextpostslink {
  border: 1px solid #1391e6;
  color: #1391E6;
}

.blog__sidebar {
  margin-top: 102px;
}
@media screen and (min-width: 768px) {
  .blog__sidebar {
    width: 300px;
    margin-top: 0;
  }
}

.sidebar-clinic {
  text-align: left;
}

.sidebar__title img {
  height: 24px;
  margin-right: 5px;
  vertical-align: top;
  width: 24px;
}

.sidebar-clinic__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25; /* 125% */
  padding-bottom: 7px;
  border-bottom: 1px solid #888;
}

.sidebar-clinic__img {
  margin-top: 20px;
}

.sidebar-clinic__subTitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 24px;
}

.sidebar-clinic__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429; /* 171.429% */
  margin-top: 13px;
}

.sidebar-clinic__button {
  color: #1391E6;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  padding-left: 3px;
  position: relative;
  display: inline-block;
}
.sidebar-clinic__button::after {
  content: "";
  background: url("../img/common/sidebar-button.svg") no-repeat;
  background-size: contain;
  display: inline-block;
  height: 18px;
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
}

.sidebar-article {
  margin-top: 56px;
}

.sidebar-article__title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 9px;
  border-bottom: 1px solid #888;
  text-align: left;
}

.sidebar-article__lists {
  margin-top: 20px;
}

.sidebar-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.sidebar-card:nth-child(n+2) {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .sidebar-card:nth-child(n+2) {
    margin-top: 19px;
  }
}
.sidebar-card:hover .sidebar-card__title {
  color: #1391E6;
}
.sidebar-card:hover .sidebar-card__img > img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
          transform: translate(-50%, -50%) scale(1.1, 1.1);
}
@media screen and (min-width: 768px) {
  .sidebar-card {
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    height: 91px;
    position: relative;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
  }
}

.sidebar-card__img {
  max-width: 133px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sidebar-card__img {
    max-width: 120px;
  }
}
.sidebar-card__img > img {
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  width: 100%;
  position: absolute;
}

.sidebar-card__body {
  padding: 0 10px 3px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sidebar-card__body {
    position: relative;
    padding: 0 10px;
    width: calc(100% - 120px);
  }
}

.sidebar-card__category {
  color: #FFF;
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  border-radius: 10px;
  background: #1391E6;
  padding: 2px 8px;
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .sidebar-card__category {
    vertical-align: top;
  }
}

.sidebar-card__title {
  margin-top: 1px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1, 42857; /* 142.857% */
}
.sidebar-card__published {
  color: #888;
  font-size: 11px;
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .sidebar-card__published {
    margin-top: 3px;
    display: block;
    line-height: 1;
  }
}

.sidebar-category {
  text-align: left;
  margin-top: 62px;
  margin-bottom: 133px;
}
@media screen and (min-width: 768px) {
  .sidebar-category {
    margin-top: 60px;
  }
}

.sidebar-category__title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 1px solid #888;
}

.sidebar-category__lists {
  padding-left: 20px;
  margin-top: 15px;
}

.sidebar-category__list:nth-child(n+2) {
  margin-top: 12px;
}

.entry__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .entry__title {
    font-size: 28.5px;
    line-height: 1.4;
  }
}

.entry__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .entry__meta {
    margin-top: 19px;
  }
}

.entry__published {
  color: #1391E6;
  font-size: 16px;
  padding-left: 20px;
  position: relative;
  margin-top: 2px;
}
.entry__published::before {
  background: url("../img/common/icon-pen.svg");
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 0;
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.entry__category {
  color: #FFF;
  font-size: 11px;
  border-radius: 12px;
  background: #1391E6;
  padding: 6px 12px;
}

.entry-content {
  margin-top: 56px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .entry-content {
    margin-top: 47px;
  }
}
.entry-content p {
  font-size: 14px;
  line-height: 1.71429; /* 171.429% */
  margin-top: 24px;
}
.entry-content h3 + p {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .entry-content h3 + p {
    margin-top: 20px;
  }
}
.entry-content h4 + p {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .entry-content h4 + p {
    margin-top: 20px;
  }
}
.entry-content h2 {
  color: #1391E6;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.44px;
  margin-top: 61px;
  border-left: 6px solid #1391E6;
  padding-inline: 16px;
  padding-block: 3px;
}
@media screen and (min-width: 768px) {
  .entry-content h2 {
    padding-block: 6px;
    font-size: 24.5px;
    letter-spacing: 1.6px;
    padding-inline: 20px;
  }
}
.entry-content h3 {
  color: #1391E6;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  border-bottom: 1px solid #1391E6;
  margin-top: 40px;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .entry-content h3 {
    font-size: 20.4px;
  }
}
.entry-content h4 {
  color: #1391E6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  margin-top: 55px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .entry-content h4 {
    font-size: 16px;
    margin-top: 59px;
  }
}
.entry-content ul {
  margin-top: 12px;
  text-align: left;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .entry-content ul {
    margin-top: 22px;
    padding-left: 28px;
  }
}
.entry-content li {
  color: #393939;
  font-family: "Rounded M+ 1c";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 187.5% */
  margin-block: 0.2em;
  list-style: disc;
}
.entry-content a {
  color: #1391E6;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.wp-block-image {
  margin-top: 18px;
}

.entry__link {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .entry__link {
    margin-top: 72px;
  }
}

.related-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 12px;
  font-size: 14px;
}

.related-link__prev,
.related-link__archive,
.related-link__next {
  border-radius: 4px;
}
.related-link__prev a,
.related-link__archive a,
.related-link__next a {
  display: block;
  font-size: 14px;
}

.related-link__prev,
.related-link__next {
  background-color: #1391E6;
  color: #FFF;
  width: 108px;
  height: 39px;
}
@media screen and (min-width: 768px) {
  .related-link__prev,
  .related-link__next {
    width: 123px;
  }
}
.related-link__prev a,
.related-link__next a {
  padding-block: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.related-link__prev {
  color: #FFF;
  padding-right: 15px;
  background-image: url("../img/common/arrow-circle-left.svg");
  background-position: left 15px center;
  background-repeat: no-repeat;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(50% + 65px);
}
.related-link__prev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.related-link__archive {
  background-color: #fff;
  color: #1391E6;
  padding-inline: 18px;
  border: 1px solid #1391E6;
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.related-link__archive a {
  padding-block: 6px;
}

.related-link__next {
  color: #FFF;
  padding-left: 15px;
  background-image: url("../img/common/arrow-circle-right.svg");
  background-position: right 16px center;
  background-repeat: no-repeat;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: absolute;
  left: calc(50% + 65px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.related-link__next a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.lower-top-contact {
  background-image: url("../img/contact/contact_top-sp.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .lower-top-contact {
    background-image: url("../img/contact/contact_top-pc.jpg");
  }
}

.lower-contact__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429; /* 171.429% */
  margin-top: 60px;
  max-width: 728px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lower-contact__text {
    margin-top: 80px;
  }
}

.lower-contact__text-red {
  color: #EE5A6D;
}

.lower-contact__titleWrap {
  text-align: center;
  margin-top: 100px;
  padding-bottom: 68px;
}
@media screen and (min-width: 768px) {
  .lower-contact__titleWrap {
    margin-top: 154px;
  }
}

.lower-contact__title {
  line-height: 1.4;
}

.form {
  margin-bottom: 98px;
}

.form__lists {
  margin: auto;
  max-width: 728px;
}

.contact__fields {
  max-width: 728px;
  margin-inline: auto;
}

.contact__field:nth-child(5) .form-field {
  padding-top: 23px;
  padding-bottom: 20.5px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(5) .form-field {
    padding-block: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact__field:nth-child(5) .form-field__item {
    margin-block: auto;
  }
}

.contact__field:nth-child(5) .form-field__head {
  gap: 6px;
  -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;
  padding-top: 1px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(5) .form-field__head {
    gap: 16px;
    padding-top: 38px;
  }
}

.contact__field:nth-child(5) .form-field__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact__field:nth-child(6) .form-field {
  padding-bottom: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(6) .form-field {
    padding-bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.contact__field:nth-child(6) .form-field__head {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-block: auto;
  padding-top: 23px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(6) .form-field__head {
    gap: 0;
    padding-top: 56px;
    margin-block: 0;
  }
}

.contact__field:nth-child(6) .form-field__item {
  margin-top: 0x;
  padding-bottom: 27px;
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(6) .form-field__item {
    padding-bottom: 19px;
  }
}

@media screen and (min-width: 768px) {
  .contact__field:nth-child(6) .form-field__label {
    margin-right: 21px;
  }
}

.contact__field:nth-child(7) .form-field__head {
  padding-top: 22px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(7) .form-field__head {
    padding-top: 38px;
  }
}

.contact__field:nth-child(8) .form-field__head {
  padding-top: 23px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(8) .form-field__head {
    padding-top: 63px;
  }
}

.contact__field:nth-child(8) .form-field__item {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(8) .form-field__item {
    margin-top: 28px;
  }
}

.contact__field:nth-child(8) .form-field {
  padding-bottom: 24px;
}

.form-field {
  padding-bottom: 15px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.form-field:last-child {
  border-bottom: 1px solid #ddd;
}

.form-field__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  display: flex;
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    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-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-preferred-size: 240px;
        flex-basis: 240px;
    padding-top: 40px;
    padding-bottom: 38px;
    padding-inline: 0;
    gap: 16px;
  }
}
.form-field__head:nth-of-type(n + 5) {
  gap: 6px;
}

.form-field__head-gap6 {
  gap: 6px;
  padding-top: 26px;
}
@media screen and (min-width: 768px) {
  .form-field__head-gap6 {
    padding-top: 44px;
  }
}

.form-field__label {
  font-size: 16px;
}
.form-field__tag {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: #EE5A6D;
  padding: 3px 6px 2px;
}

.form-field__item {
  margin-block: auto;
}
.form-field__item.select__wrapper {
  margin-bottom: 8px;
  padding-top: 9px;
}
@media screen and (min-width: 768px) {
  .form-field__item.select__wrapper {
    margin-block: auto;
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .form-field__item:nth-child(3),
  .form-field__item:nth-child(4) {
    padding-top: 26px;
    padding-bottom: 0;
    margin-block: auto;
  }
}

.form-field__item:nth-child(6) {
  margin-top: 9px;
}

.form-field__radios {
  padding-top: 17px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    padding-top: 2px;
  }
}

.form-text {
  margin-top: 10px;
  margin-bottom: 6px;
  padding: 11px 16px;
  color: #000;
  font-size: 16px;
  width: 100%;
  border-radius: 4px;
  border: none;
}
@media screen and (min-width: 768px) {
  .form-text {
    width: 488px;
  }
}

.textarea {
  height: 160px;
  overflow: auto;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .textarea {
    height: 200px;
    margin-top: 27px;
    margin-bottom: 27px;
  }
}

.form__button {
  margin-top: 70px;
}

.button-contact {
  font-size: 14px;
  height: 38px;
  width: 273px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF;
  border: 1px solid #1391E6;
  border-radius: 24px;
  color: #1391E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  letter-spacing: 1.12px;
  margin-inline: auto;
  max-width: 273px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .button-contact {
    max-width: 360px;
    width: 100%;
    height: 56px;
    border-radius: 28px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}
.button-contact:hover {
  background: #1391E6;
  color: #FFF;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text:after {
  opacity: 1;
}

.form-radio__text {
  display: inline-block;
  font-size: 14px;
  padding-left: 32px;
  position: relative;
  margin-right: 35px;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    margin-right: 27px;
  }
}
.form-radio__text:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 1000px;
  border: 1px solid #1391E6;
  background: #FFF;
}
.form-radio__text:after {
  content: "";
  background: url("../img/contact/checkbox-dot.png") no-repeat center center/contain;
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 12px;
  top: 52%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.contact-control__subtext {
  color: #888;
  font-size: 11px;
}

@media screen and (min-width: 768px) {
  .lower-contact {
    margin-bottom: 161px;
  }
}

.lower-contact__info:nth-child(2) {
  margin-top: 38px;
}

.contact-info {
  max-width: 728px;
  margin-inline: auto;
  width: 100%;
}

.contact-info__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .contact-info__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.contact-info__texBox {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact-info__texBox {
    margin-top: 27px;
  }
}

.contact-info__tel {
  color: #1391E6;
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.64px;
  line-height: 1;
  white-space: nowrap;
}
.contact-info__tel img {
  max-width: 100%;
  height: auto;
  vertical-align: inherit;
  margin-right: -3px;
}

.contact-info__time {
  color: #1391E6;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  padding-left: 45px;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .contact-info__time {
    padding-left: 46.5px;
  }
}

.contact-info__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429; /* 171.429% */
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact-info__text {
    margin-top: 24px;
  }
}

.lower-contact__titleWrap-reserve {
  margin-top: 93px;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .lower-contact__titleWrap-reserve {
    margin-top: 151px;
  }
}

.form-checkbox {
  margin-left: 0;
  display: inline-block;
}
.form-checkbox:nth-child(3n+1) {
  margin: 0;
}
.form-checkbox:nth-child(n+4) {
  margin-top: 14px;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.form-checkbox__input:checked + .form-checkbox__text:after {
  opacity: 1;
}

.form-checkbox__text {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  position: relative;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  padding-left: 25px;
  padding-right: 0;
  margin-right: 17px;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    margin-right: 30px;
  }
}
.form-checkbox__text::before {
  background: #FFF;
  border: 1px solid #1391E6;
  content: "";
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
}
.form-checkbox__text::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  content: "";
  background: url("../img/contact/radio-check.png") no-repeat center center/contain;
  height: 12px;
  left: 4px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
}

.select__wrapper {
  position: relative;
}
.select__wrapper::after {
  content: "";
  position: absolute;
  top: 61%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  width: 15px;
  height: 10px;
  background: url("../img/contact/select-arrow.png") no-repeat center right/11px 7px;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 4px;
  border: 1px solid transparent;
  background: #F6F6F6;
  padding: 12px 30px 11px 16px;
  font-size: 14px;
  cursor: pointer;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
}
.form-select:focus {
  border-color: #1391E6;
}

.contact__field:nth-child(9) .form-field {
  padding-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-child(9) .form-field {
    padding-bottom: 2px;
  }
}

.form-field__head p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .form-field__head p {
    gap: 6px;
  }
}

.wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control.wpcf7-radio {
    gap: 34px;
  }
}

.wpcf7-form-control-wrap {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control-wrap {
    margin-top: 25px;
    margin-bottom: 19px;
  }
}

.wpcf7-list-item {
  margin-inline: 0;
  margin-left: 26px;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    margin-left: 35px;
  }
}
.wpcf7-list-item:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item:nth-child(3n+1) {
    margin-left: 33px;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item:nth-child(4n+1) {
    margin-left: 0;
  }
}
.wpcf7-list-item:nth-child(n+4) {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item:nth-child(n+4) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item:nth-child(n+5) {
    margin-top: 15px;
  }
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item.last {
  margin-left: 27px;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item.last {
    margin-left: 0;
  }
}

.wpcf7-list-item-label {
  font-size: 14px;
  margin-left: 2px;
}

.form-field__item {
  width: 100%;
}
.control-wrap:nth-child(n+2) .form-control {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .control-wrap:nth-child(n+2) .form-control {
    margin-top: 18px;
  }
}

[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=date],
textarea {
  background: #f6f6f6;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  padding-block: 12px;
  padding-left: 15px;
  padding-right: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  [type=text],
  [type=search],
  [type=tel],
  [type=url],
  [type=email],
  [type=password],
  [type=date],
  textarea {
    padding-bottom: 11px;
  }
}

.form-control {
  width: 100%;
  position: relative;
  /* Firefox用のスタイル設定 */
}
.form-control [type=date]::before {
  content: attr(placeholder);
  width: 100%;
  color: #393939;
}
.form-control input[type=date]::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
.form-control::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.form-control::after {
  content: "";
  width: 12.854px;
  height: 14.977px;
  background: url(../img/common/icon-calendar.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.form-control.is-blank input[type=date]::-webkit-datetime-edit-fields-wrapper {
  display: none;
}
.form-control.is-blank input[type=date] {
  color: #C2C2C2;
}
.form-control::-webkit-datetime-edit-fields-wrapper {
  color: #393939;
}
.form-control.is-blank input[type=date] {
  color: #393939;
}
@-moz-document url-prefix() {
  .form-control .form-control::after {
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="M13.5 2H13V1c0-.6-.4-1-1-1s-1 .4-1 1v1H5V1c0-.6-.4-1-1-1S3 .4 3 1v1h-.5C1.1 2 0 3.1 0 4.5v9C0 14.9 1.1 16 2.5 16h11c1.4 0 2.5-1.1 2.5-2.5v-9C16 3.1 14.9 2 13.5 2zm0 12.5h-11c-.6 0-1-.4-1-1V6h13v7.5c0 .6-.4 1-1 1z"></path></svg>') no-repeat center center/contain;
    top: 58%;
    right: 20px;
    transform: translateY(-55%);
  }
}

input[type=radio][value=初診],
input[type=radio][value=再診] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  background-image: url("../img/contact/radio.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
input[type=radio][value=初診]:checked,
input[type=radio][value=再診]:checked {
  background-image: url("../img/contact/radio-check.svg");
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
}
input[type=checkbox]::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../img/contact/checkbox.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../img/contact/checkbox-checked.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
input[type=checkbox]:checked::after {
  opacity: 1;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.footer-topImg {
  margin-top: 64px;
  height: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-topImg {
    margin-top: 128px;
  }
}
.footer-topImg::before {
  background-image: url("../img/footer-topImg.svg");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: 20px 3px;
  content: "";
  height: inherit;
  left: 0;
  position: absolute;
  top: 0%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-topImg::before {
    background-position: 3px 3px;
  }
}

.footer {
  background-color: #DFF1FD;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 46px;
  }
}

.footer__inner {
  padding-inline: 10px;
  padding-top: 17px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 20px;
  }
}

.footer-info {
  padding: 32px 10px 20px;
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    border-radius: 20px;
    padding: 34px 49px;
    max-width: 1000px;
  }
}

@media screen and (min-width: 768px) {
  .footer-info__left {
    max-width: 478px;
    text-align: center;
    width: 100%;
  }
}

.footer-info__img {
  text-align: center;
}
.footer-info__img img {
  width: 309px;
  height: 33px;
}
@media screen and (min-width: 768px) {
  .footer-info__img img {
    width: 404px;
    height: 41px;
  }
}

.footer-info__access {
  color: #393939;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .footer-info__access {
    margin-top: 7px;
  }
}
.footer-info__access > span {
  margin-left: 11px;
}

.footer-info__tel {
  color: #1391E6;
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.64px;
  line-height: 1.125; /* 112.5% */
  margin-top: 21px;
  text-align: center;
}
.footer-info__tel img {
  width: 28px;
  vertical-align: inherit;
  margin-right: -3px;
}

.footer-info__time {
  color: #1391E6;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .footer-info__time {
    margin-top: 3px;
  }
}

.footer-info__btnWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 19px;
}

@media screen and (min-width: 768px) {
  .footer-info__btn {
    border-radius: 30px;
    padding: 16px 5px;
  }
}

.footer-info__btn--icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}
@media screen and (min-width: 768px) {
  .footer-info__btn--icon {
    width: 24px;
    height: 24px;
  }
}

.btn-footer {
  font-size: 14px;
  max-width: 150px;
  height: 38px;
  border-radius: 30px;
  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;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn-footer {
    font-size: 16px;
    max-width: 220px;
    height: 56px;
  }
}
.btn-footer > span {
  margin-left: 9px;
}

.btn-footer-blue {
  color: #FFF;
  font-weight: 400;
  background-color: #1391E6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn-footer-blue img {
  width: 26px;
  height: 16px;
}
.btn-footer-blue:hover {
  background-color: #0060A0;
}

.btn-footer--white {
  color: #1391E6;
  font-weight: 500;
  background-color: #fff;
  margin-left: 15px;
  border: 1px solid #1391E6;
}
@media screen and (min-width: 768px) {
  .btn-footer--white {
    margin-left: 20px;
  }
}
.btn-footer--white img {
  width: 17px;
  height: 17px;
}
.btn-footer--white:hover {
  color: #fff;
  background-color: #1391E6;
}

.footer-info__table {
  margin-top: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer-info__table {
    margin-top: 23px;
  }
}

.footer-map {
  margin-top: 20px;
  width: calc(100% - 20px);
  margin-inline: auto;
  max-width: 478px;
}
@media screen and (min-width: 768px) {
  .footer-map {
    max-width: 385px;
    width: 100%;
  }
}

.footer-map__iframe {
  padding-top: 100%;
  position: relative;
  width: 100%;
}
.footer-map__iframe > iframe {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.place-card {
  padding: 9px 4px 9px 11px;
}

.footer-nav {
  margin-top: 58px;
  padding-inline: 10px;
}
@media screen and (min-width: 900px) {
  .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
}

.footer-nav__item {
  color: #393939;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 16px;
}
.footer-nav__item > a {
  color: #393939;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-nav__item:nth-child(n+2) {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .footer-nav__item:nth-child(n+2) {
    margin-top: 0;
  }
}
.footer-nav__item:nth-child(n+3) {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .footer-nav__item:nth-child(n+3) {
    margin-top: 0;
  }
}

.footer-nav__subitem:nth-child(n+2) {
  margin-left: 20px;
}

.footer-subNav__item {
  margin-top: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer-subNav__item {
    margin-top: 16px;
  }
}

.btn-arrowBlue {
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding-left: 12px;
  position: relative;
}
.btn-arrowBlue::before {
  background-image: url("../img/icon-arrow-blue-triangle.svg");
  background-size: contain;
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
}

.footer-subNav__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__copyright {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 58px;
  }
}

.copyright__text {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 73px;
  background: #1391E6;
}
@media screen and (min-width: 768px) {
  .copyright__text {
    padding-top: 16px;
  }
}

.reserve {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  right: 0;
  top: 176px;
  width: 92px;
  height: 120px;
  z-index: 30;
  border-radius: 20px 0px 0px 20px;
  background: #1391E6;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  display: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.reserve:hover {
  background-color: #0060A0;
}
.reserve img {
  margin-top: 20px;
}

.reserve__text {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3; /* 18.2px */
}

.footer-cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  bottom: 0;
  height: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 1200px) {
  .footer-cta {
    display: none;
  }
}

.footer-cta__tel {
  text-align: center;
}
.footer-cta__tel img {
  width: 18px;
  height: 18px;
}
.footer-cta__tel a {
  color: #1391E6;
  text-align: center;
  font-family: "Rounded M+ 1c";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.footer-cta__time {
  color: #393939;
  text-align: center;
  font-family: "Rounded M+ 1c";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer-cta__web {
  color: #FFFFFF;
  border-radius: 8px;
  background-color: #1391E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 5px 21px 5px 16px;
}
.footer-cta__web img {
  width: 46px;
  height: 28px;
}

.p-footer-cta__webText {
  color: #FFF;
  text-align: center;
  font-family: "Rounded M+ 1c";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer-cta__webText--big {
  font-family: "Rounded M+ 1c";
  font-size: 16px;
}

.top-btn {
  bottom: 100px;
  right: 10px;
  cursor: pointer;
  height: 52px;
  width: 52px;
  z-index: 30;
  position: fixed;
}
@media screen and (min-width: 768px) {
  .top-btn {
    bottom: 97px;
    right: 20px;
  }
}