@charset "UTF-8";
html {
  scroll-padding-top: 120px; /* 固定ヘッダーの高さ + 余白 */
  scrollbar-gutter: stable; /* 常にスクロールバー分のスペースを確保 */
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #393939;
  font-size: 14px;
  background-color: #fff;
  letter-spacing: normal;
}
body.is-fixed {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
}

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

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

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

.inner {
  padding-inline: 20px;
}

.common__title-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}

.common__icon {
  width: 34px;
}
.common__logo {
  width: 225px;
}
.common__logo.is-checked svg path {
  fill: #fff;
}

.section__head {
  text-align: center;
}

.section__title {
  display: inline-block;
  color: #393939;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}
.section__title::before {
  content: "";
  background: url(../img/recommend__title-deco-sp.png) center center/contain no-repeat;
  width: 49px;
  height: 13px;
  position: absolute;
  left: -63px;
  top: 10px;
}
@media screen and (min-width: 768px) {
  .section__title::before {
    background: url(../img/recommend__title-deco-pc.png) center center/contain no-repeat;
    width: 67px;
    height: 20px;
    left: -95px;
    top: 11px;
  }
}
.section__title::after {
  content: "";
  background: url(../img/recommend__title-deco-sp.png) center center/contain no-repeat;
  width: 49px;
  height: 13px;
  position: absolute;
  right: -63px;
  top: 10px;
}
@media screen and (min-width: 768px) {
  .section__title::after {
    background: url(../img/recommend__title-deco-pc.png) center center/contain no-repeat;
    width: 67px;
    height: 20px;
    right: -95px;
    top: 11px;
  }
}

.header {
  height: 60px;
  padding-block: 15px;
  -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);
  width: 100%;
  position: fixed;
  z-index: 1000;
  background-color: #fff;
}
.header.is-checked {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #0060a0;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
    padding-block: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-block: 0;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 40px;
  }
}

.drawer-icon {
  width: 32px;
  height: 32px;
  position: relative;
  left: 5px;
  cursor: pointer;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(1), .drawer-icon.is-checked .drawer-icon-bar:nth-of-type(3) {
  background-color: #fff;
  top: 11px;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-icon-bar {
  background-color: #1391e6;
  height: 2px;
  width: 27px;
  position: absolute;
  border-radius: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon-bar:nth-of-type(1) {
  top: 4px;
}
.drawer-icon-bar:nth-of-type(2) {
  top: 11px;
}
.drawer-icon-bar:nth-of-type(3) {
  top: 18px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    height: 100%;
  }
}

.header__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 4px;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.header__nav-item {
  position: relative;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #393939;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__nav-item:hover .header__nav-icon path {
  fill: #1391e6;
}
.header__nav-item:hover .header__nav-text {
  color: #1391e6;
}
.header__nav-item:hover::after {
  background: #1391e6;
  width: 20px;
}

.header__nav-item-blue::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #1391e6;
}

.header__nav-icon {
  text-align: center;
}

.header__nav-text {
  color: #393939;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

.header__nav-text-blue {
  color: #1391e6;
}

.header__nav-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 40px;
  padding-bottom: 2px;
}

.header__nav-contact-text {
  color: #393939;
  font-size: 10px;
  font-weight: 500;
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .header__nav-contact-text {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
  }
}

.contact-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media screen and (min-width: 1200px) {
  .contact-tel {
    margin-top: -5px;
  }
}

.tel-icon {
  width: 22px;
  height: 22px;
}
@media screen and (min-width: 1200px) {
  .tel-icon {
    width: 28px;
    height: 28px;
  }
}

.tel-number {
  color: #1391e6;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 1200px) {
  .tel-number {
    font-size: 32px;
    color: #1391e6;
    letter-spacing: -0.64px;
  }
}

.drawer__content {
  width: 100%;
  height: 100vh;
  background: #0060a0;
  display: none;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.drawer__content.is-checked {
  display: block;
  position: fixed;
  z-index: 3;
}

.drawer__menu {
  max-width: 255px;
  padding-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

.drawer__menu-list {
  border-top: 1px dotted #fff;
  padding-block: 15px;
}
.drawer__menu-list:last-child {
  border-bottom: 1px dotted #fff;
}

.drawer__menu-item {
  display: block;
  position: relative;
}
.drawer__menu-item::after {
  content: "";
  background: url(../img/drawer__arrow-icon.png) center center/contain no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.drawer__menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer__menu-icon {
  width: 24px;
  height: 24px;
}

.drawer__menu-text {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
}

.drawer__footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  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);
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .drawer__footer {
    display: none;
  }
}

.drawer__footer-content {
  padding-block: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer__footer-content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer__footer-contact-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.drawer__footer-tel-icon {
  width: 18px;
  height: 18px;
}

.drawer__footer-tel-number {
  color: #1391e6;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.holiday {
  color: #393939;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}

.drawer__footer-content-right {
  border-radius: 8px;
  background: #1391e6;
  width: 157px;
  height: 47px;
}

.drawer__footer-content-right-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
}

.drawer__footer-pc-icon {
  width: 46px;
}

.drawer__footer-web-reserve-text1 {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.drawer__footer-web-reserve-text2 {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
}

.fv {
  padding-top: 75px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 120px;
  }
}

@media screen and (min-width: 1000px) {
  .fv__inner {
    position: relative;
  }
}

.fv__slider {
  position: relative;
}

.fv__swiper {
  position: relative;
}

.fv-card__image {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  height: 447px;
}
.fv-card__image img {
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fv-card__image img {
    border-radius: 20px;
  }
}
@media screen and (min-width: 768px) {
  .fv-card__image {
    max-width: calc(100% - 120px);
    height: auto;
  }
}

.fv__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  bottom: 17px !important;
  padding-left: 3px;
}
@media screen and (min-width: 768px) {
  .fv__pagination {
    gap: 10px;
    padding-left: 33px;
    bottom: 5px !important;
  }
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

.fv__next,
.fv__prev {
  width: 42px !important;
  height: 42px !important;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv__next,
  .fv__prev {
    width: 60px !important;
    height: 60px !important;
  }
}
.fv__next::after,
.fv__prev::after {
  display: none;
}

.fv__next {
  background: url(../img/fv__arrow-right.png) no-repeat center center/contain;
  right: 0px !important;
}
@media screen and (min-width: 768px) {
  .fv__next {
    right: 30px !important;
  }
}

.fv__prev {
  background: url(../img/fv__arrow-left.png) no-repeat center center/contain;
  left: 0px !important;
}
@media screen and (min-width: 768px) {
  .fv__prev {
    left: 30px !important;
  }
}

.swiper__text-wrap {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .swiper__text-wrap {
    gap: 17px;
    left: 122px;
    bottom: 57px;
  }
}

.swiper__text {
  color: #fff;
  text-shadow: 4px 6px 6px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  border-bottom: 3px dotted #fff;
}
@media screen and (min-width: 768px) {
  .swiper__text {
    font-size: 32px;
    letter-spacing: 2.56px;
  }
}

.fv__body {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .fv__body {
    padding-inline: 60px;
    max-width: 1078px;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .fv__body {
    padding-inline: 0px;
    gap: 60px;
  }
}

.fv__business-hours {
  max-width: 540px;
  position: relative;
  bottom: 24px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fv__business-hours {
    max-width: 280px;
    bottom: 0px !important;
  }
}
@media screen and (min-width: 1200px) {
  .fv__business-hours {
    max-width: 477px;
    bottom: 35px !important;
  }
}
.fv__business-hours img {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
}

.news {
  padding-top: 15px;
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 19px;
    width: 700px;
    position: relative;
    left: 0px;
  }
}
@media screen and (min-width: 1000px) {
  .news {
    padding-top: 18px;
    width: 540px;
    position: relative;
    left: 0px;
  }
}

.news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1000px) {
  .news__container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 1000px) {
  .news__head {
    gap: 13px;
  }
}

.news__title-ja {
  color: #393939;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .news__title-ja {
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  .news__title-ja {
    font-size: 20px;
  }
}

.news__title-en {
  color: #1391e6;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.1px;
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .news__title-en {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .news__title-en {
    padding-top: 9px;
  }
}

.news__link {
  color: #888;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid #888;
  padding-top: 2px;
}
@media screen and (min-width: 768px) {
  .news__link {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .news__link {
    margin-top: -1px;
    padding-top: 0;
  }
}

.news__content {
  margin-top: 5px;
  border-block: 1px solid #393939;
}
.news__content:hover {
  color: #1391e6;
}

.news__content-item {
  margin-left: 6px;
  padding-top: 11px;
  padding-bottom: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__content-item time {
  font-size: 12px;
  font-weight: 500;
}
.news__content-item:hover .news__text {
  color: #1391e6;
}
.news__content-item:hover::after {
  background: url(../img/concept__arrow.png) center center/contain no-repeat;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .news__content-item {
    margin-left: 13px;
    padding-top: 8px;
    padding-bottom: 9px;
    gap: 22px;
  }
}
.news__content-item::after {
  content: "";
  background: url(../img/fv__arrow-medical-time.png) center center/contain no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 5px;
  top: 53%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .news__content-item::after {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
}

.news__date {
  color: #393939;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  padding-top: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news__text {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .news__text {
    font-size: 11px;
  }
}
@media screen and (min-width: 1000px) {
  .news__text {
    font-size: 14px;
  }
}

.concept {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .concept {
    padding-bottom: 110px;
  }
}
@media screen and (min-width: 1200px) {
  .concept {
    margin-top: -15px;
  }
}
.concept::before {
  content: "";
  position: absolute;
  background-image: url(../img/concept__deco-back-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  left: 12px;
  top: 7px;
  width: 100%;
  height: 81.06667vw;
}
@media screen and (min-width: 768px) {
  .concept::before {
    background-image: url(../img/concept__deco-back-pc.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 725px;
    left: 32.5%;
    position: absolute;
    top: 0;
    width: 102%;
  }
}
@media screen and (min-width: 1000px) {
  .concept::before {
    background-size: contain;
    left: 420px;
    top: 50px;
  }
}

.concept__decoration-left {
  width: 54px;
  height: 60px;
  position: absolute;
  top: 12px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .concept__decoration-left {
    width: 90px;
    height: 90px;
    left: 230px;
    top: 0px;
  }
}
@media screen and (min-width: 1000px) {
  .concept__decoration-left {
    width: 100px;
    height: 100px;
    left: 416px;
    top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .concept__decoration-left {
    width: 126px;
    height: 138px;
    left: 416px;
    top: 60px;
  }
}

.concept__decoration-right {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 2px;
  right: 55px;
}
@media screen and (min-width: 768px) {
  .concept__decoration-right {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .concept__decoration-right {
    width: 80px;
    height: 80px;
    top: 40px;
    right: 130px;
  }
}
@media screen and (min-width: 1200px) {
  .concept__decoration-right {
    width: 100px;
    height: 100px;
    top: 35px;
    right: 130px;
  }
}

.concept__contents {
  position: relative;
  padding-top: 112px;
}
@media screen and (min-width: 768px) {
  .concept__contents {
    padding-top: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1000px) {
  .concept__contents {
    padding-top: 215px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .concept__contents {
    padding-top: 219px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 95px;
  }
}

@media screen and (min-width: 768px) {
  .concept__inner {
    width: 700px;
    padding-left: 0;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .concept__inner {
    width: 55%;
    padding-left: 0;
    padding-right: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .concept__inner {
    width: 32%;
    padding-left: 0;
    padding-right: 0px;
  }
}

.concept__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .concept__content {
    gap: 24px;
  }
}

.concept__title {
  color: #1391e6;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.1px;
}
@media screen and (min-width: 768px) {
  .concept__title {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.concept__sub-title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .concept__sub-title {
    font-size: 25px;
    line-height: 44px;
    letter-spacing: 2.24px;
  }
}
@media screen and (min-width: 1000px) {
  .concept__sub-title {
    font-size: 28px;
  }
}

.concept__text {
  margin-top: 27px;
  color: #393939;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  padding-right: 1px;
}
@media screen and (min-width: 768px) {
  .concept__text {
    margin-top: 35px;
  }
}

.concept__link {
  margin-top: 24px;
}
.concept__link:hover .button {
  background: #1391e6;
}
.concept__link:hover .button::after {
  background: url(../img/drawer__arrow-icon.png) center center/contain no-repeat;
  right: 7px;
}
.concept__link:hover .button__text {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .concept__link {
    margin-top: 37px;
  }
}

.button {
  border-radius: 24px;
  border: 1px solid #1391e6;
  background: #fff;
  padding: 12px 40px;
  margin-top: 38px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (min-width: 768px) {
  .button {
    margin-inline: 0;
    padding: 14px 45px;
  }
}
.button::after {
  content: "";
  background: url(../img/concept__arrow.png) center center/contain no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.button__text {
  color: #1391e6;
  text-align: center;
  font-weight: 600;
  line-height: 1;
}

.concept__image {
  margin-top: 41px;
  max-width: 89%;
  height: 61.2vw;
}
@media screen and (min-width: 768px) {
  .concept__image {
    max-width: 640px;
    height: 438px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .concept__image {
    max-width: 640px;
    height: 438px;
    margin-top: 0;
  }
}
.concept__image img {
  border-radius: 0px 20px 20px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.recommend {
  margin-top: 97px;
}
@media screen and (min-width: 768px) {
  .recommend {
    margin-top: 117px;
  }
}
@media screen and (min-width: 1000px) {
  .recommend {
    margin-top: 112px;
  }
}

.recommend__inner {
  padding-inline: 19px;
}
@media screen and (min-width: 768px) {
  .recommend__inner {
    max-width: 966px;
    margin-inline: auto;
    padding-inline: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .recommend__inner {
    padding-inline: 0;
    max-width: 966px;
    margin-inline: auto;
  }
}

.recommend__cards {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}
@media screen and (min-width: 768px) {
  .recommend__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 61px;
    margin-top: 60px;
  }
}

.recommend__card {
  margin-inline: auto;
}
.recommend__card-title {
  max-width: 177px;
  margin-inline: auto;
}

.recommend__card-icon {
  margin-top: 12px;
  max-width: 276px;
  height: auto;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .recommend__card-icon {
    margin-top: 16px;
  }
}

.recommend__card-text {
  margin-top: 20px;
  max-width: 281px;
  margin-inline: auto;
}

.recommend__card-description {
  color: #393939;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.red-text {
  color: #ee5a6d;
  font-weight: 700;
}

.section__medical {
  margin-top: 153px;
}
@media screen and (min-width: 768px) {
  .section__medical {
    margin-top: 230px;
  }
}

.medical__decoration-top {
  position: relative;
}

.medical__deco-top-bg {
  position: relative;
  top: 0px;
}

.medical__deco-top-left {
  width: 50px;
  height: 55px;
  position: absolute;
  top: -42px;
  left: 6px;
}
@media screen and (min-width: 768px) {
  .medical__deco-top-left {
    width: 70px;
    height: 70px;
    top: -60px;
    left: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .medical__deco-top-left {
    width: 126px;
    height: 138px;
    top: -84px;
  }
}

.medical__deco-top-center {
  width: 42px;
  height: 42px;
  position: absolute;
  top: -46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .medical__deco-top-center {
    width: 60px;
    height: 60px;
    top: -75px;
  }
}
@media screen and (min-width: 1000px) {
  .medical__deco-top-center {
    width: 100px;
    height: 100px;
    top: -95px;
  }
}
@media screen and (min-width: 1200px) {
  .medical__deco-top-center {
    width: 100px;
    height: 90px;
    top: -95px;
  }
}

.medical__deco-top-right {
  width: 25px;
  height: 25px;
  position: absolute;
  top: -16px;
  right: 11px;
}
@media screen and (min-width: 768px) {
  .medical__deco-top-right {
    width: 40px;
    height: 40px;
    top: -33px;
    right: 37px;
  }
}
@media screen and (min-width: 1000px) {
  .medical__deco-top-right {
    width: 58px;
    height: 58px;
  }
}

.medical__inner {
  padding-top: 5px;
  padding-bottom: 60px;
  background-color: #dff1fd;
}
@media screen and (min-width: 768px) {
  .medical__inner {
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .medical__wrap {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.medical__head {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .medical__head {
    margin-top: -7px;
  }
}

.medical__contents {
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .medical__contents {
    margin-top: 61px;
  }
}

.medical__contents-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .medical__contents-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
}

.medical__contents-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
}
.medical__contents-item:hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.medical__contents-item:hover::after {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 1;
  padding: 10px;
  margin: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
}
.medical__contents-item:hover .medical__contents-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  border-radius: 20px;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.medical__contents-body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

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

.medical__body-text1 {
  margin-top: 41px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .medical__body-text1 {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.medical__body-text2 {
  margin-top: 41px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .medical__body-text2 {
    font-size: 16px;
    letter-spacing: 1.28px;
    line-height: 28px;
  }
}

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

.medical__description-text {
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .medical__description-text {
    line-height: 28px;
  }
}

.medical__decoration-bottom {
  position: relative;
}

.medical__deco-bottom-left {
  width: 24px;
  height: 25px;
  bottom: 10px;
  position: absolute;
  left: 12px;
}
@media screen and (min-width: 768px) {
  .medical__deco-bottom-left {
    width: 57px;
    height: 56px;
    bottom: 0px;
    left: 41px;
    z-index: 1;
  }
}

.medical__deco-bottom-right {
  width: 56px;
  height: 60px;
  bottom: -7px;
  right: 7px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .medical__deco-bottom-right {
    width: 90px;
    height: 94px;
    bottom: -25px;
    right: 21px;
  }
}
@media screen and (min-width: 1200px) {
  .medical__deco-bottom-right {
    width: 125.307px;
    height: 138px;
    bottom: -21px;
  }
}

.medical__deco-bottom-bg {
  position: relative;
}

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

@media screen and (min-width: 768px) {
  .blog__inner {
    padding-inline: 50px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .blog__inner {
    padding-inline: 140px;
  }
}

.blog__head::before {
  left: 28px;
}
@media screen and (min-width: 768px) {
  .blog__head::before {
    left: 300px;
    top: 18px;
  }
}
.blog__head::after {
  right: 28px;
}
@media screen and (min-width: 768px) {
  .blog__head::after {
    right: 300px;
    top: 18px;
  }
}

.blog__contents {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .blog__contents {
    margin-top: 83px;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .blog__contents {
    margin-top: 86px;
  }
}

.blog__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 20px;
  min-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .blog__cards {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    margin-inline: 0;
    max-width: none;
  }
}
@media screen and (min-width: 1000px) {
  .blog__cards {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 65px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    margin-inline: 0;
    max-width: none;
  }
}

.blog__card {
  position: relative;
}
@media screen and (min-width: 768px) {
  .blog__card {
    border-radius: 20px;
    background: #fff;
    -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);
  }
}

.blog__card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.blog__card-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.blog__card-item:hover .blog__card-body-text {
  color: #1391e6;
}
@media screen and (min-width: 768px) {
  .blog__card-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.blog__card-head {
  overflow: hidden;
  width: 133px;
  height: 101px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .blog__card-head {
    width: auto;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .blog__card-head {
    max-width: 300px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .blog__card-head {
    max-width: 300px;
    height: 188px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

@media screen and (min-width: 768px) {
  .blog__card-head-image img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

.blog__card-new::before {
  content: none;
}

.blog__card.is-new .blog__card-new::before {
  content: "";
  background: url(../img/blog__deco-new.png) no-repeat center center/cover;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -9px;
  left: -9px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .blog__card.is-new .blog__card-new::before {
    width: 60px;
    height: 60px;
    top: -18px;
    left: -10px;
  }
}

.blog__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .blog__card-body {
    position: relative;
    padding-top: 13px;
    padding-bottom: 12px;
    padding-inline: 24px;
    gap: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.blog__card-body-label {
  width: 56px;
  height: 18px;
  border-radius: 10px;
  background: #1391e6;
  padding: 2px 8px 1px;
}
@media screen and (min-width: 768px) {
  .blog__card-body-label {
    position: absolute;
    top: -24px;
    left: 24px;
    padding: 6px 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.label-text {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}

.blog__card-body-text {
  color: #393939;
  font-family: "Rounded M+ 1c";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  height: 3em; /* 例：1行の高さ × 最大行数 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示する最大行数 */
  -webkit-box-orient: vertical; /* 縦方向にボックスを表示 */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .blog__card-body-text {
    font-size: 16px;
    line-height: 24px;
    height: auto;
    -webkit-line-clamp: 3;
  }
}

.blog__card-body-date {
  color: #888;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.blog__link:hover .button {
  background: #1391e6;
}
.blog__link:hover .button .blog__button-text {
  color: #fff;
}
.blog__link:hover .button::after {
  background: url(../img/drawer__arrow-icon.png) center center/contain no-repeat;
  right: 7px;
}

.blog__button {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .blog__button {
    margin-top: 60px;
  }
}

.blog__button-text {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.footer {
  margin-top: 100px;
}
@media screen and (min-width: 1000px) {
  .footer {
    margin-top: 160px;
  }
}

.footer__inner {
  padding-top: 13px;
  padding-bottom: 60px;
  padding-inline: 10px;
  background: #dff1fd;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .footer__inner {
    padding-top: 56px;
    padding-bottom: 63px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-inline: 140px;
  }
}

.footer__contents {
  background: #fff;
  padding-top: 32px;
  border-radius: 8px;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .footer__contents {
    border-radius: 20px;
    padding-bottom: 39px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .footer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .footer__contents {
    gap: 8px;
    padding-top: 38px;
  }
}

.footer__title-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .footer__title-link {
    gap: 17px;
  }
}

.footer__icon {
  width: 38.452px;
  height: 33px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__icon {
    width: 50px;
    height: 41px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.footer__logo {
  width: 257.435px;
  height: 30.162px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 337px;
    height: 37px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.footer__address {
  margin-top: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__address {
    margin-top: 10px;
  }
}

.address__num {
  color: #393939;
  font-weight: 500;
  line-height: normal;
}

.address__detail {
  color: #393939;
  font-weight: 500;
  line-height: normal;
}

.footer__contact-tel {
  margin-top: 21px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
@media screen and (min-width: 1200px) {
  .footer__contact-tel {
    margin-top: 25px;
  }
}

.footer__tel-icon {
  width: 28px;
  height: 28px;
}

.footer__tel-number {
  color: #1391e6;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.64px;
}

.footer__holiday {
  margin-top: 4px;
  color: #1391e6;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 1200px) {
  .footer__holiday {
    margin-top: 0;
  }
}

.footer__button-set {
  margin-top: 20px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__button-set {
    margin-top: 19px;
    gap: 20px;
    padding: 0;
    gap: 20px;
  }
}

.footer__link {
  width: 150px;
  height: 38px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__link {
    width: 220px;
    height: 56px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.footer__link-left {
  border-radius: 30px;
  background: #1391e6;
  padding: 8px 30px 9px 63px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__link-left:hover {
  background: #0060a0;
}
@media screen and (min-width: 768px) {
  .footer__link-left {
    padding: 16px 59px 16px 95px;
  }
}

.footer__button-left {
  position: relative;
}

.footer__button-text-left {
  color: #fff;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .footer__button-text-left {
    font-size: 16px;
    font-weight: 500;
  }
}
.footer__button-text-left::before {
  content: "";
  background: url(../img/footer__deco-reserve-icon.png) no-repeat center center/contain;
  width: 35px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: -39px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__link-right {
  border-radius: 30px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #1391e6;
  padding: 8px 20px 9px 46px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__link-right:hover {
  background: #1391e6;
}
.footer__link-right:hover .footer__button-text-right {
  color: #fff;
}
.footer__link-right:hover .footer__button-text-right::before {
  content: "";
  background: url(../img/footer__reserve-white.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .footer__link-right {
    padding: 16px 46px 16px 78px;
  }
}

.footer__button-right {
  position: relative;
}

.footer__button-text-right {
  color: #1391e6;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__button-text-right {
    font-size: 16px;
    font-weight: 500;
  }
}
.footer__button-text-right::before {
  content: "";
  background: url(../img/footer__deco-contact-icon.png) no-repeat center center/contain;
  width: 35px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: -36px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__business-hours {
  margin-inline: 10px;
  margin-top: 20px;
  -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);
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .footer__business-hours {
    margin-top: 21px;
    padding: 0;
    width: 477px;
    height: 166px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1200px) {
  .footer__content-right {
    padding-left: 30px;
  }
}

.footer__address-map {
  padding: 20px;
  aspect-ratio: 355/355;
}
@media screen and (min-width: 768px) {
  .footer__address-map {
    padding-top: 20px;
    margin-right: auto;
    margin-left: auto;
    width: 478px;
    height: 478px;
  }
}
@media screen and (min-width: 1000px) {
  .footer__address-map {
    padding: 0;
    width: 385px;
    height: 385px;
  }
}

.footer__nav-menu {
  margin-top: 51px;
  padding-inline: 10px;
}
@media screen and (min-width: 1000px) {
  .footer__nav-menu {
    margin-top: 43px;
    padding-inline: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .footer__nav-menu {
    margin-top: 42px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer__nav-top-link {
  color: #393939;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__nav-top-link:hover {
  opacity: 0.7;
}

.footer__nav-item1 {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .footer__nav-item1 {
    margin-top: 0;
  }
}

.footer__nav-head {
  color: #393939;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.footer__nav-policy {
  margin-top: 19px;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.footer__arrow {
  position: relative;
  padding-left: 12px;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__arrow:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1000px) {
  .footer__arrow {
    margin-top: 18px;
  }
}
.footer__arrow::before {
  content: "";
  background: url(../img/footer__deco-arrow.png) no-repeat center center/contain;
  position: absolute;
  width: 6px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.footer__nav-appearance {
  margin-top: 18px;
}

.footer__nav-item2 {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .footer__nav-item2 {
    margin-top: 0;
  }
}

.footer__nav-greet {
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .footer__nav-greet {
    margin-top: 18px;
  }
}

.footer__nav-staff {
  margin-top: 17px;
}
@media screen and (min-width: 1000px) {
  .footer__nav-staff {
    margin-top: 18px;
  }
}

.footer__nav-blog {
  margin-top: 18px;
}

.footer__nav-item3 {
  margin-top: 35px;
}
@media screen and (min-width: 1000px) {
  .footer__nav-item3 {
    margin-top: 0;
  }
}

.footer__medical-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer__head-medical-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .footer__head-medical-left {
    margin-top: 0;
    gap: 0;
  }
}

.footer__head-medical-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .footer__head-medical-right {
    margin-top: 0;
    gap: 0;
  }
}

.footer__nav-item4 {
  margin-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .footer__nav-item4 {
    margin-top: 0;
  }
}

.footer__nav-form {
  margin-top: 18px;
}

.footer__nav-reserve {
  margin-top: 19px;
}

.footer__copyright {
  height: 112px;
  background: #1391e6;
}
@media screen and (min-width: 1200px) {
  .footer__copyright {
    height: 55px;
  }
}

.copyright__text {
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: normal;
  padding-top: 18px;
  padding-bottom: 73px;
  font-size: 14px;
}
@media screen and (min-width: 1000px) {
  .copyright__text {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .copyright__text {
    padding-top: 18px;
  }
}

.reserve__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .reserve__button {
    display: block;
    position: fixed;
    top: 176px;
    right: 0;
    width: 92px;
    height: 120px;
    border-radius: 20px 0px 0px 20px;
    background: #1391e6;
    padding-top: 63px;
    z-index: 2;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .reserve__button:hover {
    background: #0060a0;
  }
}

.reserve__button-wrap {
  position: relative;
}
.reserve__button-wrap::before {
  content: "";
  background: url(../img/reserve-button-icon.png) no-repeat center center/contain;
  width: 52px;
  height: 32px;
  position: absolute;
  left: 20px;
  top: -43px;
}

.reserve__button-text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.top__button {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  right: 10px;
  bottom: 99px;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .top__button {
    right: 20px;
    bottom: 41px;
  }
}
.top__button.is-show {
  opacity: 1;
  visibility: visible;
}

.top__button-wrap {
  width: 52px;
  height: 52px;
}

.about-fv {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .about-fv {
    padding-top: 120px;
  }
}

.about-fv-card {
  position: relative;
}

.about-fv__image {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  height: 188px;
  position: relative;
}
.about-fv__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .about-fv__image::before {
    border-radius: 20px;
  }
}
.about-fv__image img {
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about-fv__image img {
    border-radius: 20px;
  }
}
@media screen and (min-width: 768px) {
  .about-fv__image {
    max-width: calc(100% - 120px);
    height: 340px;
  }
}

.about-fv__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.about-fv__title-ja {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
  padding-left: 4px;
}
@media screen and (min-width: 768px) {
  .about-fv__title-ja {
    font-size: 32px;
    letter-spacing: 3.2px;
  }
}

.about-fv__title-en {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .about-fv__title-en {
    font-size: 14px;
    letter-spacing: 1.4px;
    margin-top: 17px;
  }
}

.breadcrumb {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    max-width: calc(100% - 180px);
  }
}

.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .breadcrumb-list {
    margin-top: 11px;
  }
}

.breadcrumb__link-before {
  color: #c2c2c2;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.breadcrumb__separator {
  color: #393939;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.breadcrumb__link {
  color: #393939;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

@media screen and (min-width: 768px) {
  .policy {
    margin-top: 80px;
  }
}
.policy::before {
  top: 70px;
}
@media screen and (min-width: 1000px) {
  .policy::before {
    top: 117px;
  }
}

.policy__decoration__wrap {
  position: relative;
  top: 35px;
}
@media screen and (min-width: 768px) {
  .policy__decoration__wrap {
    top: 28px;
  }
}

.policy__contents {
  padding-top: 148px;
}
@media screen and (min-width: 768px) {
  .policy__contents {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    padding-top: 165px;
  }
}
@media screen and (min-width: 1000px) {
  .policy__contents {
    padding-top: 276px;
  }
}

@media screen and (min-width: 1000px) {
  .policy__inner {
    padding-right: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .policy__inner {
    width: 33%;
    padding-right: 0;
  }
}

.policy__content {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .policy__content {
    gap: 25px;
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .policy__content {
    width: 100%;
  }
}

.policy__text1 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .policy__text1 {
    margin-top: 35px;
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .policy__text1 {
    width: 100%;
  }
}

.policy__text2 {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .policy__text2 {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .policy__text2 {
    width: 100%;
  }
}

.policy__image {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .policy__image {
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .policy__image {
    width: 100%;
  }
}

.feature__contents {
  padding-top: 99px;
}
@media screen and (min-width: 768px) {
  .feature__contents {
    padding-top: 84px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
  }
}
@media screen and (min-width: 1000px) {
  .feature__contents {
    gap: 91px;
  }
}
@media screen and (min-width: 1200px) {
  .feature__contents {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

@media screen and (min-width: 768px) {
  .feature__inner {
    padding-left: 50px;
    width: 60%;
  }
}
@media screen and (min-width: 1000px) {
  .feature__inner {
    padding-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .feature__inner {
    padding-top: 37px;
    padding-left: 140px;
    padding-right: 0px;
    width: 43%;
  }
}

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

.feature__text2 {
  margin-top: 24px;
}

.feature__image {
  margin-top: 38px;
  max-width: 89%;
  height: 61.2vw;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .feature__image {
    max-width: 43%;
    max-height: 438px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .feature__image {
    max-width: 640px;
  }
}
@media screen and (min-width: 1200px) {
  .feature__image {
    margin-left: 0;
  }
}
.feature__image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0px 0px 20px;
}

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

@media screen and (min-width: 768px) {
  .state__inner {
    max-width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1000px) {
  .state__inner {
    max-width: calc(100% - 240px);
  }
}

.state__contents {
  margin-top: 38px;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 11px;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
}
@media screen and (min-width: 768px) {
  .state__contents {
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

.state__image {
  border-radius: 20px;
  overflow: hidden;
}

.medical-category {
  margin-top: 62px;
}
@media screen and (min-width: 768px) {
  .medical-category {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .medical-category__inner {
    padding-inline: 62px;
  }
}

.category__content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .category__content-head {
    gap: 23px;
  }
}

.category__content-title {
  color: #393939;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .category__content-title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.general-tag {
  border-radius: 24px;
  background: #1391e6;
  padding: 7px 12px;
}

.category__content-tag-text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}

.category__content-body {
  margin-top: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .category__content-body {
    margin-top: 33px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.category__content-link:hover .category__content-wrap {
  background: #1391e6;
}
.category__content-link:hover .category__content-text {
  color: #fff;
}

.category__content-wrap {
  border-radius: 12px;
  border: 1px solid #1391e6;
  background: #fff;
  padding-block: 15px;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .category__content-wrap {
    border: 2px solid #1391e6;
    padding: 16px 29px;
  }
}

.category__content-text {
  color: #1391e6;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .category__content-text {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

.category__content-special {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .category__content-special {
    margin-top: 78px;
  }
}

.special-tag {
  border-radius: 24px;
  background: #ee5a6d;
  padding: 7px 12px;
}

.section__general {
  height: auto;
  margin-top: 151px;
}
@media screen and (min-width: 768px) {
  .section__general {
    margin-top: 256px;
  }
}

@media screen and (min-width: 768px) {
  .general__inner {
    padding-top: 0;
    padding-inline: 60px;
  }
}

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

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

.general__content-card {
  border-radius: 20px;
  background: #fff;
  position: relative;
  padding: 20px;
}
@media screen and (min-width: 1000px) {
  .general__content-card {
    padding: 60px;
  }
}

.general__content-tag {
  width: 80px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  right: 20px;
  top: 0px;
}
@media screen and (min-width: 768px) {
  .general__content-tag {
    width: 100px;
    height: 80px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    right: 60px;
  }
}

.general__content-head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .general__content-head {
    -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;
  }
}
.general__content-head::after {
  content: "";
  width: 100%;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #c2c2c2;
  position: absolute;
  top: 89px;
}
@media screen and (min-width: 1000px) {
  .general__content-head::after {
    height: 1px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 80px;
  }
}

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

.general__content-head-subtitle {
  color: #1391e6;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .general__content-head-subtitle {
    color: #1391e6;
    padding-top: 1px;
  }
}

.general__content-body {
  padding-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .general__content-body {
    padding-top: 74px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .general__content-body {
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .general__body-text {
    max-width: 50%;
  }
}
@media screen and (min-width: 1000px) {
  .general__body-text {
    max-width: 420px;
  }
}

.general__body-text1 {
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.2px;
}
.general__body-image {
  border-radius: 20px;
  overflow: hidden;
}
.general__body-image img {
  border-radius: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.general__decoration-bottom {
  top: 13px;
}
@media screen and (min-width: 768px) {
  .general__decoration-bottom {
    top: 5px;
  }
}

.section__special {
  margin-top: 153px;
}
@media screen and (min-width: 768px) {
  .section__special {
    margin-top: 256px;
  }
}

@media screen and (min-width: 768px) {
  .special__inner {
    padding-top: 4px;
  }
}

.special__contents {
  gap: 41px;
}

.special__decoration-bottom {
  top: 16px;
}
@media screen and (min-width: 768px) {
  .special__decoration-bottom {
    top: 4px;
  }
}

@media screen and (min-width: 768px) {
  .medical__nav-menu {
    margin-top: 47px;
  }
}
@media screen and (min-width: 1200px) {
  .medical__nav-menu {
    margin-top: 43px;
  }
}

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

@media screen and (min-width: 768px) {
  .greeting__inner {
    padding-inline: 60px;
  }
}

.greeting__contents {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .greeting__contents {
    margin-top: 60px;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1000px) {
  .greeting__contents {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .greeting__wrap {
    max-width: 300px;
  }
}
@media screen and (min-width: 1000px) {
  .greeting__wrap {
    max-width: 460px;
  }
}

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

.doctor__description-text {
  margin-top: 28px;
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  padding-right: 1px;
}
@media screen and (min-width: 768px) {
  .doctor__description-text {
    margin-top: 36px;
  }
}

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

.doctor__name1 {
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.doctor__name2 {
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.doctor__image-sp {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.doctor__career {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .doctor__career {
    margin-top: 56px;
  }
}

.career__head {
  position: relative;
}
.career__head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #393939;
  top: 31px;
}
@media screen and (min-width: 768px) {
  .career__head::after {
    width: 650px;
  }
}
@media screen and (min-width: 1000px) {
  .career__head::after {
    width: 100%;
  }
}

.career__head-title {
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.career__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  padding-left: 2px;
}
.career__body:nth-of-type(3) {
  margin-top: 15px;
}
.career__body:nth-of-type(4) {
  margin-top: 19px;
}

.career__body-text-left {
  color: #393939;
  font-weight: 500;
  line-height: normal;
}

.career__body-text-right {
  margin-left: 17px;
  color: #393939;
  font-weight: 500;
  line-height: normal;
}

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

.qualification__head {
  position: relative;
  margin-bottom: 6px;
}
.qualification__head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #393939;
  top: 31px;
}
@media screen and (min-width: 768px) {
  .qualification__head::after {
    width: 650px;
  }
}
@media screen and (min-width: 1000px) {
  .qualification__head::after {
    width: 100%;
  }
}

.qualification__head-title {
  margin-top: 14px;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.qualification__body-text {
  margin-top: 24px;
  color: #393939;
  font-weight: 500;
  line-height: normal;
}
.qualification__body-text:nth-of-type(2) {
  margin-top: 15px;
}
.qualification__body-text:nth-of-type(3) {
  margin-top: 16px;
}

.doctor__image-pc {
  max-width: 460px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .doctor__image-pc {
    max-width: 300px;
  }
}
@media screen and (min-width: 1000px) {
  .doctor__image-pc {
    padding-top: 4px;
    max-width: 460px;
  }
}

.js-staff-swiper {
  margin-top: 100px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .js-staff-swiper {
    margin-top: 163px;
  }
}

/* スライドの動き等速 */
.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.staff__swiper-card-image {
  border-radius: 20px;
  overflow: hidden;
}

.introduction {
  margin-top: 101px;
}
@media screen and (min-width: 768px) {
  .introduction {
    margin-top: 163px;
  }
}

@media screen and (min-width: 768px) {
  .introduction__inner {
    padding-inline: 60px;
  }
}

@media screen and (min-width: 768px) {
  .introduction__contents {
    margin-top: 60px;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}

.dental-hygienist__head {
  margin-top: 38px;
  position: relative;
}
.dental-hygienist__head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #393939;
  top: 31px;
}
@media screen and (min-width: 1000px) {
  .dental-hygienist__head::after {
    width: 1000px;
  }
}

.dental-hygienist__head-title {
  color: #393939;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
}

@media screen and (min-width: 768px) {
  .dental-hygienist__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1000px) {
  .dental-hygienist__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }
}

.dental-hygienist__card {
  margin-top: 47px;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__card {
    max-width: 280px;
  }
}

.dental-hygienist__card2 {
  margin-top: 49px;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__card2 {
    max-width: 280px;
  }
}

.dental-hygienist__card3 {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__card3 {
    max-width: 280px;
  }
}

.dental-hygienist__card4 {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__card4 {
    margin-top: 45px;
    max-width: 280px;
  }
}

.dental-hygienist__card5 {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__card5 {
    margin-top: 45px;
    max-width: 280px;
  }
}

.dental-hygienist__card6 {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__card6 {
    margin-top: 60px;
    max-width: 280px;
  }
}

.dental-hygienist__card7 {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__card7 {
    margin-top: 60px;
    max-width: 280px;
  }
}

.dental-hygienist__card-image {
  border-radius: 20px;
  overflow: hidden;
}

.dental-hygienist__name {
  margin-top: 14px;
  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;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__name {
    margin-top: 15px;
  }
}

.dental-hygienist__name2 {
  margin-top: 21px;
  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;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__name2 {
    margin-top: 14px;
  }
}

.dental-hygienist__name6 {
  margin-top: 21px;
  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;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__name6 {
    margin-top: 17px;
  }
}

.dental-hygienist__name-left {
  color: #393939;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
}

.dental-hygienist__name-right {
  margin-left: 12px;
  color: #393939;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.44px;
}

.dental-hygienist__info {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .dental-hygienist__info {
    margin-top: 13px;
  }
}

.dental-hygienist__info-table th {
  background: #dff1fd;
  width: 140px;
  padding-top: 18px;
  padding-bottom: 16px;
  padding-left: 18px;
  color: #393939;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}
.dental-hygienist__info-table td {
  padding-top: 18px;
  padding-bottom: 16px;
  padding-left: 16px;
  color: #393939;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

.dental-assistant__head {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .dental-assistant__head {
    margin-top: 60px;
  }
}

.blog-fv__wrap {
  width: 100%;
}

.staff-blog {
  margin-top: 68px;
}
@media screen and (min-width: 768px) {
  .staff-blog {
    margin-top: 79px;
  }
}

@media screen and (min-width: 768px) {
  .staff-blog__inner {
    padding-inline: 0px;
  }
}
@media screen and (min-width: 1000px) {
  .staff-blog__inner {
    padding-inline: 140px;
  }
}

@media screen and (min-width: 768px) {
  .staff-blog__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1000px) {
  .staff-blog__contents {
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .staff-blog__contents-left {
    max-width: 60%;
  }
}
@media screen and (min-width: 1000px) {
  .staff-blog__contents-left {
    max-width: 680px;
  }
}

.staff-blog__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  min-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .staff-blog__cards {
    padding-top: 11px;
  }
}

.staff-blog__card {
  position: relative;
}

.staff-blog__card-new::before {
  content: "";
  background: url(../img/blog__deco-new.png) no-repeat center center/cover;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -9px;
  left: -9px;
  z-index: 2;
}

.staff-blog__card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.staff-blog__card-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.staff-blog__card-item:hover .blog__card-body-text {
  color: #1391e6;
}

.staff-blog__card-head {
  overflow: hidden;
  width: 133px;
  height: 101px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .staff-blog__card-head {
    width: 50%;
    height: auto;
  }
}
@media screen and (min-width: 1000px) {
  .staff-blog__card-head {
    width: 244px;
    height: 153px;
  }
}

.staff-blog__card-head-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .staff-blog__card-body {
    padding-top: 30px;
    padding-inline: 11px;
  }
}
@media screen and (min-width: 1000px) {
  .staff-blog__card-body {
    padding-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .staff-blog__card-body-label {
    top: 0;
    left: 10px;
  }
}
@media screen and (min-width: 1000px) {
  .staff-blog__card-body-label {
    top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .staff-blog__card-body-date {
    margin-top: 26px;
  }
}
@media screen and (min-width: 1000px) {
  .staff-blog__card-body-date {
    margin-top: 14px;
  }
}

.staff-blog__pagination {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1000px) {
  .staff-blog__pagination {
    margin-top: 100px;
    padding-left: 72px;
    gap: 10px;
  }
}

.button__pre-wrap {
  width: 71px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  background: #1391e6;
  padding: 7px 15px 7px 34px;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .button__pre-wrap {
    width: 82px;
    height: 36px;
    padding: 7px 15px 8px 39px;
  }
}
.button__pre-wrap:hover {
  background: #0060a0;
}
.button__pre-wrap::before {
  content: "";
  background: url(../img/page-blog_arrow-left.svg) no-repeat center center/contain;
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .button__pre-wrap::before {
    width: 16px;
    height: 16px;
  }
}

.button__pre-text {
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .button__pre-text {
    font-size: 14px;
  }
}

.staff-blog__button {
  color: #1391e6;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.staff-blog__button:hover {
  color: #fff;
}
.staff-blog__button:hover .button-wrap {
  background: #1391e6;
}

.button-wrap {
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #1391e6;
  padding-block: 6px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .button-wrap {
    width: 34px;
    height: 36px;
    padding-top: 7px;
    padding-bottom: 8px;
  }
}

.staff-blog__button-next {
  width: 71px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  background: #1391e6;
  padding: 7px 34px 7px 15px;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .staff-blog__button-next {
    width: 82px;
    height: 36px;
    padding: 7px 38px 8px 16px;
  }
}
.staff-blog__button-next:hover {
  background: #0060a0;
}
.staff-blog__button-next::before {
  content: "";
  background: url(../img/page-blog_arrow-right.svg) no-repeat center center/contain;
  width: 14px;
  height: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .staff-blog__button-next::before {
    width: 16px;
    height: 16px;
  }
}

.button__next-text {
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .button__next-text {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .staff-blog__contents-right {
    max-width: 30%;
    margin-top: 1px;
  }
}
@media screen and (min-width: 1000px) {
  .staff-blog__contents-right {
    max-width: 300px;
    margin-top: 1px;
  }
}

.clinic-info__content {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .clinic-info__content {
    margin-top: 0;
  }
}

.clinic-info__head {
  margin-top: 38px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .clinic-info__head {
    margin-top: 0;
  }
}
.clinic-info__head::before {
  content: "";
  background: url(../img/page-blog_sidebar-icon_1.png) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: 0;
}
.clinic-info__head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #393939;
  top: 31px;
}
@media screen and (min-width: 1000px) {
  .clinic-info__head::after {
    width: 300px;
  }
}

.clinic-info__head-title {
  padding-left: 35px;
  letter-spacing: 0;
}

.clinic-info__image {
  margin-top: 30px;
}

.clinic-info__body {
  margin-top: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-right: 1px;
}

.clinic-info__name {
  color: #393939;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.clinic-info__description {
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.about-link-text {
  color: #1391e6;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  padding-left: 3px;
  position: relative;
}
.about-link-text::after {
  content: "";
  background: url(../img/page-blog_clinic-info-arrow.png) no-repeat center center/contain;
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.new-articles__content {
  margin-top: 63px;
}
@media screen and (min-width: 768px) {
  .new-articles__content {
    margin-top: 61px;
  }
}

.new-articles__head {
  position: relative;
}
.new-articles__head::before {
  content: "";
  background: url(../img/page-blog_sidebar-icon_2.png) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: 0;
}
.new-articles__head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #393939;
  top: 31px;
}
@media screen and (min-width: 1000px) {
  .new-articles__head::after {
    width: 300px;
  }
}

.new-articles__head-title {
  padding-left: 35px;
  letter-spacing: 0;
}

.new-articles__cards {
  margin-top: 28px;
  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;
  min-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .new-articles__cards {
    gap: 13px;
    min-width: 285px;
  }
}
@media screen and (min-width: 1000px) {
  .new-articles__cards {
    min-width: 335px;
  }
}

.new-articles__card {
  position: relative;
}

.new-articles__card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.new-articles__card-head {
  width: 133px;
  height: 101px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .new-articles__card-head {
    width: 120px;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .new-articles__card-body {
    padding-top: 25px;
    padding-left: 0px;
    padding-right: 25px;
  }
}

@media screen and (min-width: 768px) {
  .new-articles__card-body-label {
    top: 0;
    left: 0;
    padding: 1px 8px 2px 8px;
  }
}

.new-articles__card-body-text {
  overflow: hidden;
  text-overflow: ellipsis;
  color: #393939;
  font-family: "Rounded M+ 1c";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  height: 3em; /* 例：1行の高さ × 最大行数 */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示する最大行数 */
  -webkit-box-orient: vertical; /* 縦方向にボックスを表示 */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .new-articles__card-body-text {
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .new-articles__card-body-date {
    margin-top: 4px;
  }
}

.staff-blog-category__content {
  margin-top: 61px;
}
@media screen and (min-width: 768px) {
  .staff-blog-category__content {
    margin-top: 50px;
  }
}

.staff-blog-category__head {
  position: relative;
}
.staff-blog-category__head::before {
  content: "";
  background: url(../img/page-blog_sidebar-icon_3.png) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: 0;
}
.staff-blog-category__head::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #393939;
  top: 31px;
}
@media screen and (min-width: 1000px) {
  .staff-blog-category__head::after {
    width: 300px;
  }
}

.staff-blog-category__head-title {
  padding-left: 35px;
  letter-spacing: 0;
}

.staff-blog-category__body {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .staff-blog-category__body {
    margin-top: 28px;
  }
}

.staff-blog-category__text {
  padding-left: 32px;
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  position: relative;
}
.staff-blog-category__text::before {
  content: "";
  background: url(../img/page-blog_icon-arrow-blue.png) no-repeat center center/contain;
  width: 6px;
  height: 12px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.staff-blog-footer__contents {
  padding-top: 34px;
}
@media screen and (min-width: 768px) {
  .staff-blog-footer__contents {
    padding-top: 41px;
  }
}

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

.archive-content1__header-title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px; /* 160% */
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .archive-content1__header-title {
    font-size: 28px;
    line-height: 40px; /* 142.857% */
    letter-spacing: 2.8px;
  }
}

.archive-content1__wrap {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .archive-content1__wrap {
    margin-top: 20px;
  }
}

.archive-content1__date-text {
  color: #1391e6;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  position: relative;
  padding-left: 20px;
  letter-spacing: 1px;
}
.archive-content1__date-text::before {
  content: "";
  position: absolute;
  background: url(../img/page-archive_date-icon.png) no-repeat center center/contain;
  width: 14px;
  height: 14px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.archive-content1__category {
  padding: 5px 12px;
  border-radius: 12px;
  background: #1391e6;
}

.archive-content1__category-text {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
}

.archive-content1__body {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .archive-content1__body {
    margin-top: 48px;
  }
}

.archive-content1__body-text {
  color: #393939;
  font-family: "Rounded M+ 1c";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.2px;
}
.archive-content1__body-text a {
  color: #1391e6;
  font-family: "Rounded M+ 1c";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.blog__archive-content2 {
  margin-top: 63px;
}
@media screen and (min-width: 768px) {
  .blog__archive-content2 {
    margin-top: 70px;
  }
}

.archive-content2__header-text {
  color: #1391e6;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  position: relative;
  padding-left: 22px;
}
@media screen and (min-width: 768px) {
  .archive-content2__header-text {
    font-size: 24px;
    letter-spacing: 1.92px;
    padding-left: 30px;
  }
}
.archive-content2__header-text::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 40px;
  background-color: #1391e6;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .archive-content2__header-text::before {
    width: 8px;
    height: 52px;
  }
}

.archive-content2__image {
  margin-top: 26px;
}

.blog__archive-content3 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .blog__archive-content3 {
    margin-top: 42px;
  }
}

.archive-content3__header-text {
  color: #1391e6;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  position: relative;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  .archive-content3__header-text {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
.archive-content3__header-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #1391e6;
  bottom: -7px;
  left: 0;
}

.archive-content3__body {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .archive-content3__body {
    margin-top: 28px;
  }
}

.archive-content3__body-text {
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.2px;
}

.blog__archive-content4 {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .blog__archive-content4 {
    margin-top: 60px;
  }
}

.archive-content4__header-text {
  margin-top: 16px;
  color: #1391e6;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.3px;
}
@media screen and (min-width: 768px) {
  .archive-content4__header-text {
    font-size: 16px;
  }
}

.archive-content4__body {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .archive-content4__body {
    margin-top: 20px;
  }
}

.archive-content4__body-text {
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.2px;
}

.archive-content4__body-list {
  margin-top: 12px;
  padding-left: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .archive-content4__body-list {
    margin-top: 22px;
    padding-left: 9px;
  }
}

.archive-content4__body-list-item {
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px; /* 187.5% */
}
@media screen and (min-width: 768px) {
  .archive-content4__body-list-item {
    letter-spacing: 1px;
  }
}

.blog-archive__pagination {
  margin-top: 37px;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .blog-archive__pagination {
    margin-top: 73px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    padding-left: 0;
  }
}

.archive-button-pre-wrap {
  width: 108px;
  height: 39px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 9px 15px 9px 37px;
}
@media screen and (min-width: 768px) {
  .archive-button-pre-wrap {
    width: 124px;
    height: 36px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.archive-button-pre-wrap::before {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.archive-button__pre-text {
  font-size: 14px;
}

.blog-archive__button {
  font-size: 14px;
}
.blog-archive__button:hover .archive-button-wrap p {
  color: #fff;
}

.archive-button-wrap {
  width: 95px;
  height: 41px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-block: 10px;
}
.archive-button-wrap p {
  color: #1391e6;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.blog-archive__button-next {
  width: 108px;
  height: 39px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 9px 37px 9px 15px;
}
@media screen and (min-width: 768px) {
  .blog-archive__button-next {
    width: 124px;
    height: 36px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.blog-archive__button-next::before {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.archive-button__next-text {
  font-size: 14px;
}

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

.contact-message {
  margin-top: 58px;
}
@media screen and (min-width: 768px) {
  .contact-message {
    margin-top: 77px;
  }
}

@media screen and (min-width: 768px) {
  .contact-message__inner {
    max-width: 730px;
    margin-right: auto;
    margin-left: auto;
    padding-inline: 0;
  }
}

.contact-message__text {
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.red-text2 {
  color: #ee5a6d;
  font-weight: 500;
  line-height: 24px;
}

.contact {
  margin-top: 99px;
  margin-bottom: -28px;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 150px;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 728px;
    margin-right: auto;
    margin-left: auto;
    padding-inline: 0;
  }
}

.contact__title::before {
  top: 25px;
}
@media screen and (min-width: 768px) {
  .contact__title::before {
    top: 10px;
  }
}
.contact__title::after {
  top: 25px;
}
@media screen and (min-width: 768px) {
  .contact__title::after {
    top: 10px;
  }
}

.contact-form {
  margin-top: 70px;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 77px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    gap: 36px;
  }
}

.contact__field {
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
}
@media screen and (min-width: 1000px) {
  .contact__field {
    padding-bottom: 27px;
  }
}
.contact__field:nth-of-type(1) {
  border-top: 1px solid #ddd;
  padding-top: 23px;
}
@media screen and (min-width: 1000px) {
  .contact__field:nth-of-type(1) {
    padding-top: 31px;
  }
}
.contact__field:nth-of-type(5) {
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .contact__field:nth-of-type(5) {
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .contact__field:nth-of-type(5) {
    padding-bottom: 15px;
  }
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact__filed-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .contact__filed-head {
    width: 360px;
    gap: 15px;
  }
}

.form-field__label {
  color: #393939;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.form-field__tag {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: #ee5a6d;
  padding: 3px 6px 2px;
}

@media screen and (min-width: 768px) {
  .form-field__item {
    width: 100%;
  }
}

.form-text {
  border-radius: 4px;
  background: #f6f6f6;
  padding-block: 12px;
  padding-left: 16px;
  border: none;
  width: 100%;
  font-size: 16px;
}
.form-text:focus {
  border: 1px solid #1391e6;
  outline: none;
}

.form-textarea {
  font-size: 16px;
  border-radius: 4px;
  background: #f6f6f6;
  width: 100%;
  border: none;
  padding-block: 12px;
  padding-left: 16px;
  height: 160px;
  resize: none;
}
.form-textarea:focus {
  border: 1px solid #1391e6;
  outline: none;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    height: 200px;
  }
}

.contact__button {
  margin-top: 70px;
}

.contact__submit {
  color: #1391e6;
  text-align: center;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.12px;
  padding-block: 8px 9px;
  max-width: 273px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-inline: auto;
    font-size: 16px;
    letter-spacing: 1.28px;
    max-width: 360px;
    padding-block: 16px;
  }
}

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

.contact-web-message__inner {
  max-width: 728px;
}
@media screen and (min-width: 768px) {
  .contact-web-message__inner {
    margin-left: auto;
    margin-right: auto;
    padding-inline: 0;
  }
}

.contact-web-message1-title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .contact-web-message1-title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.contact-web__tel {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (min-width: 768px) {
  .contact-web__tel {
    margin-top: 29px;
  }
}

.contact-web-holiday {
  text-align: left;
  padding-left: 45px;
}

.contact-web-message1-text {
  margin-top: 18px;
  color: #393939;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
@media screen and (min-width: 768px) {
  .contact-web-message1-text {
    margin-top: 24px;
  }
}

.contact-web-message2 {
  margin-top: 41px;
}

.contact-web-message2-title {
  color: #393939;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .contact-web-message2-title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.wp-block-spacer {
  height: 70px !important;
}

.contact-web-form {
  margin-top: 94px;
  margin-bottom: -30px;
}
@media screen and (min-width: 768px) {
  .contact-web-form {
    margin-top: 150px;
  }
}

@media screen and (min-width: 768px) {
  .contact-web__fields {
    gap: 29px;
  }
}

@media screen and (min-width: 768px) {
  .contact-web__field {
    padding-bottom: 33px;
  }
}
.contact-web__field:nth-of-type(1) {
  border-top: 1px solid #ddd;
  padding-top: 24px;
}
@media screen and (min-width: 1200px) {
  .contact-web__field:nth-of-type(1) {
    padding-top: 30px;
  }
}

.radio__field {
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .radio__field {
    margin-top: 10px;
    padding-bottom: 40px;
  }
}

.form-radio-field {
  gap: 0;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .form-radio-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.form-radio-filed-head {
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .form-radio-filed-head {
    width: 360px;
    gap: 17px;
  }
}

.form-radio-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .form-radio-field__item {
    gap: 30px;
  }
}

.form-radio-field .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (min-width: 1000px) {
  .form-radio-field .wpcf7-form-control {
    gap: 31px;
    margin-top: -20px;
  }
}

input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

.form-radio-field .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

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

.form-radio-field .wpcf7-list-item-label {
  color: #393939;
  font-weight: 500;
  line-height: normal;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form-radio-field .wpcf7-list-item-label::before {
  content: "";
  border-radius: 50%;
  border: 1px solid #1391e6;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.form-radio-field .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #1391e6;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.wpcf7-list-item-label {
  color: #393939;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.form-checkbox-field-wrap {
  gap: 21px;
}
@media screen and (min-width: 768px) {
  .form-checkbox-field-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .checkbox-wrap {
    width: 240px;
    margin-block: auto;
  }
}

.form-checkbox-filed-head {
  gap: 26px;
}

.form-checkbox-text {
  color: #888;
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .form-checkbox-text {
    margin-top: 0;
  }
}

.form-checkbox {
  cursor: pointer;
}

.form-checkbox-field .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 19px;
}
@media screen and (min-width: 1000px) {
  .form-checkbox-field .wpcf7-form-control {
    width: 488px;
    margin-top: 0;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 18px;
  }
}

input[type=checkbox] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

.form-checkbox-field .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form-checkbox-field .wpcf7-list-item-label {
  position: relative;
  padding-left: 32px;
}
.form-checkbox-field .wpcf7-list-item-label::before, .form-checkbox-field .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox-field .wpcf7-list-item-label::before {
  width: 24px;
  height: 24px;
  border-radius: 1px;
  border: 1px solid #1391e6;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox-field .wpcf7-list-item-label::after {
  width: 13px;
  height: 13px;
  left: 6px;
  background: url(../img/page-contact-web-check-icon.png) no-repeat center center/contain;
  opacity: 0;
}

.form-contact__head {
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .form-contact__head {
    width: 360px;
    gap: 15px;
    margin-top: 10px;
  }
}

.form__select-wrapper {
  position: relative;
}
.form__select-wrapper::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/page-contact-web-select-Icon.png) no-repeat center center/cover;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.form-select {
  font-size: 16px;
  border-radius: 4px;
  background: #f6f6f6;
  padding-block: 12px;
  padding-left: 16px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: relative;
  cursor: pointer;
}
.form-select:focus {
  border: 1px solid #1391e6;
  outline: none;
}
@media screen and (min-width: 1000px) {
  .form-select {
    width: 488px;
  }
}

.form-date__filed {
  padding-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .form-date__filed {
    padding-bottom: 15px;
  }
}

.form-filed__head {
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .form-filed__head {
    width: 360px;
    margin-top: -15px;
  }
}

.form-date-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form-date {
  border-radius: 4px;
  background: #f6f6f6;
  border: none;
  color: #c2c2c2;
  font-size: 16px;
  font-weight: 500;
  padding-block: 14px;
  padding-left: 7px;
  position: relative;
  cursor: pointer;
}
.form-date:focus {
  border: 1px solid #1391e6;
  outline: none;
}
.form-date::after {
  content: "";
  display: block;
  width: 12.854px;
  height: 14.977px;
  background: url(../img/page-contact-web_calendar-alt.png) no-repeat center center/cover;
  position: absolute;
  top: 15px;
  right: 16px;
  cursor: pointer;
}
.form-date:nth-of-type(1), .form-date:nth-of-type(2) {
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .form-date {
    width: 488px;
  }
}

input[type=date] {
  width: 100%;
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.form-message__field {
  padding-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .form-message__field {
    padding-bottom: 22px;
  }
}

.contact__button:hover .contact__submit {
  background: #1391e6;
  color: #fff;
}

.contact__submit {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}

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

.error-text {
  margin-top: 60px;
  color: #393939;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71429;
}

.staff-blog__pagination .staff-blog__button.current .button-wrap,
.staff-blog__pagination .staff-blog__button[aria-current=page] .button-wrap {
  background: #1391e6;
  border-color: #1391e6;
}
.staff-blog__pagination .staff-blog__button.current .button-wrap p,
.staff-blog__pagination .staff-blog__button[aria-current=page] .button-wrap p {
  color: #fff;
}