@charset "UTF-8";
body {
  font-size: 14px;
  line-height: 24px;
  color: #393939;
  background-color: #FFF;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}

.inner {
  padding-inline: 20px;
  width: 1040px;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 24px;
  }
}
@media screen and (min-width: 999px) {
  .inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    padding-inline: 140px;
    width: 1280px;
  }
}

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

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

.ib {
  display: inline-block;
}

.button {
  border: 1px solid #1391E6;
  background: #FFF;
  background-image: url(../img/btn-arrow_blue.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  padding: 8px 39px;
  border-radius: 100px;
  color: #1391E6;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
  -webkit-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .button {
    padding: 10px 45px;
  }
}
.button:hover {
  color: #fff;
  background-color: #1391E6;
  background-image: url(../img/btn-arrow_white.svg);
  background-position: right 5px center;
  background-repeat: no-repeat;
}

.section-title {
  text-align: center;
}

.section-title__text {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .section-title__text {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}
.section-title__text::before, .section-title__text::after {
  position: absolute;
  content: "";
  background: url(../img/title-deco.png) no-repeat;
  background-size: contain;
  height: 13px;
  width: 49px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1280px) {
  .section-title__text::before, .section-title__text::after {
    width: 67px;
    height: 20px;
  }
}
.section-title__text::before {
  left: -61px;
}
@media screen and (min-width: 999px) {
  .section-title__text::before {
    left: -94px;
  }
}
.section-title__text::after {
  right: -67px;
}
@media screen and (min-width: 999px) {
  .section-title__text::after {
    right: -94px;
  }
}

.drawer-content {
  width: 100vw;
  height: calc(100vh - 60px);
  position: fixed;
  top: 60px;
  right: 0;
  background: #0060A0;
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -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 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 50%;
  padding-top: 39px;
  max-width: 255px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .drawer-content__menu {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
  }
}

.drawer-content__link {
  position: relative;
  color: #fff;
  border-bottom: 1px dashed #fff;
  width: 254px;
  padding-block: 15px;
}
.drawer-content__link:nth-child(1) {
  border-top: 1px dashed #fff;
}
.drawer-content__link span {
  margin-left: 10px;
}
.drawer-content__link::after {
  position: absolute;
  background-image: url(../img/icon-right.svg);
  background-repeat: no-repeat;
  content: "";
  width: 16px;
  height: 16px;
  right: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

.drawer-icon {
  height: 18px;
  width: 28px;
  margin-left: auto;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
  left: 2px;
}
.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);
  top: 9px;
  left: 2px;
}

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

.header {
  height: 60px;
  top: 0;
  right: 0;
  left: 0;
  position: fixed;
  z-index: 20;
  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);
}
@media screen and (min-width: 1280px) {
  .header {
    height: 80px;
  }
}
.header.is-checked {
  background: #0060A0;
}

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

.header__nav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  position: relative;
}
.header__link span {
  font-size: 11px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__link svg {
  fill: #393939;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__link::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  background: #1391E6;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__link:hover svg {
  fill: #1391E6;
}
.header__link:hover span {
  color: #1391E6;
}
.header__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header__info {
  margin-left: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -14px;
}

.info__address {
  font-size: 12px;
  text-align: right;
}

.info__tel {
  color: #1391E6;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.64px;
  display: block;
}
.info__tel svg {
  margin-right: -2px;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-left: 20px;
  padding-right: 18px;
}
@media screen and (min-width: 1280px) {
  .header__inner {
    padding-inline: 40px;
  }
}

.header__logo {
  width: 270px;
}

.mv {
  margin-top: 75px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .mv {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .mv {
    margin-top: 120px;
  }
}

@media screen and (min-width: 1280px) {
  .mv__inner {
    max-width: 1980px;
    margin-inline: auto;
  }
}

.mv__swiper {
  padding-right: 20px !important;
  padding-left: 20px !important;
}
@media screen and (min-width: 768px) {
  .mv__swiper {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
}
@media screen and (min-width: 999px) {
  .mv__swiper {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
}

.mv__wrapper {
  position: relative !important;
  width: 100%;
  height: 447px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 999px) {
  .mv__wrapper {
    height: 520px;
  }
}

.swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .swiper-slide {
    border-radius: 20px;
  }
}

.swiper__text {
  position: absolute;
  z-index: 5;
  width: 264px;
  left: 20px;
  bottom: 37px;
}
@media screen and (min-width: 600px) {
  .swiper__text {
    bottom: 64px;
    left: 30px;
    width: 315px;
  }
}
@media screen and (min-width: 768px) {
  .swiper__text {
    bottom: 64px;
    left: 30px;
    width: 315px;
  }
}
@media screen and (min-width: 999px) {
  .swiper__text {
    bottom: 64px;
    left: 36px;
    width: 315px;
  }
}
@media screen and (min-width: 1280px) {
  .swiper__text {
    bottom: 81px;
    left: 63px;
    width: 415px;
  }
}

.mv__prev,
.mv__next {
  width: 43px !important;
  height: 43px !important;
  top: 50% !important;
}
@media screen and (min-width: 999px) {
  .mv__prev,
  .mv__next {
    width: 64px !important;
    height: 64px !important;
    top: 49% !important;
  }
}
.mv__prev::after,
.mv__next::after {
  display: none;
}

.mv__prev {
  left: -20px !important;
  background: url(../img/swiper-arrow-left.svg) no-repeat center center/contain;
}
@media screen and (min-width: 999px) {
  .mv__prev {
    left: -30px !important;
  }
}

.mv__next {
  right: -20px !important;
  background: url(../img/swiper-arrow-right.svg) no-repeat center center/contain;
}
@media screen and (min-width: 999px) {
  .mv__next {
    right: -32px !important;
  }
}

.swiper-pagination-bullets {
  bottom: 7px !important;
  left: -13px !important;
  width: 11px !important;
}
@media screen and (min-width: 999px) {
  .swiper-pagination-bullets {
    bottom: -4px !important;
    left: -23px !important;
  }
}

.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  display: block !important;
  margin: 9px 0 !important;
}
@media screen and (min-width: 999px) {
  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 10px 0 !important;
  }
}

.mv-low {
  padding-inline: 20px;
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 600px) {
  .mv-low {
    padding-inline: 48px;
  }
}
@media screen and (min-width: 999px) {
  .mv-low {
    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;
    bottom: -21px;
    padding-inline: 60px;
    margin-inline: auto;
    position: relative;
  }
}

.schedule {
  margin-left: 0;
  margin-top: -24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .schedule {
    margin-left: 0px;
    max-width: 400px;
  }
}
@media screen and (min-width: 999px) {
  .schedule {
    margin-left: 59px;
    margin-top: -56px;
    max-width: 477px;
  }
}
.schedule img {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .schedule img {
    border-radius: 12px;
    -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);
  }
}

.news {
  margin-top: 43px;
}
@media screen and (min-width: 768px) {
  .news {
    width: 100%;
  }
}
@media screen and (min-width: 999px) {
  .news {
    width: 50.1851851852%;
    max-width: 542px;
    margin-top: 0;
    padding-left: 2px;
  }
}

.news__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}
@media screen and (min-width: 1280px) {
  .news__title-wrap {
    margin-bottom: 6px;
  }
}

.news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.news__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-left: 15px;
}
@media screen and (min-width: 1280px) {
  .news__title {
    margin-left: 12px;
  }
}

.news__title-en {
  color: #1391E6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-left: 15px;
}
@media screen and (min-width: 1280px) {
  .news__title-en {
    font-size: 12px;
  }
}

@media screen and (min-width: 1280px) {
  .news__lists {
    margin-left: 2px;
  }
}

.news__archive {
  color: #888;
  font-size: 11px;
  border-bottom: 1px solid #888;
}
@media screen and (min-width: 1280px) {
  .news__archive {
    font-size: 12px;
  }
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  padding: 10px 0;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__list:hover .news__date,
.news__list:hover .news__title-name {
  color: #1391E6;
}
.news__list:hover::after {
  right: 0;
  background-image: url(../img/btn-arrow_blue.svg);
}
@media screen and (min-width: 1280px) {
  .news__list {
    padding: 7px 0;
  }
}
.news__list::after {
  position: absolute;
  content: "";
  background-image: url(../img/btn-arrow-black.svg);
  background-size: cover;
  width: 16px;
  height: 16px;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1280px) {
  .news__list::after {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 6px;
  }
}

.news__date {
  color: #393939;
  font-size: 12px;
  margin-left: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1280px) {
  .news__date {
    margin-left: 12px;
  }
}

.news__title-name {
  color: #393939;
  font-size: 14px;
  margin-left: 24px;
  padding-right: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (min-width: 1280px) {
  .news__title-name {
    padding-right: 20px;
  }
}

.concept {
  margin-top: 274px;
  position: relative;
  overflow: hidden;
  padding-top: 105px;
}
@media screen and (min-width: 768px) {
  .concept {
    margin-top: 82px;
    padding-top: 212px;
  }
}
@media screen and (min-width: 1280px) {
  .concept {
    padding-bottom: 108px;
  }
}
.concept::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/concept-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  min-width: 556px;
  height: 81.06667vw;
  top: 0;
  left: 12px;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .concept::after {
    min-width: 800px;
    height: 400px;
    left: calc(50% - 222px);
  }
}
@media screen and (min-width: 768px) {
  .concept::after {
    min-width: 1000px;
    height: 500px;
    top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .concept::after {
    min-width: 1310px;
    height: 726px;
    padding-top: 180px;
    padding-bottom: 108px;
  }
}

@media screen and (min-width: 768px) {
  .concept__inner {
    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: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.concept__wrapper {
  padding-inline: 20px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .concept__wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-top: 36px;
    margin-left: 70px;
    width: 31.796875%;
  }
}
@media screen and (min-width: 1280px) {
  .concept__wrapper {
    margin-left: 95px;
  }
}

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

.concept__title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px; /* 160% */
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .concept__title {
    margin-top: 23px;
    font-size: 24px;
    line-height: 38px; /* 157.143% */
    letter-spacing: 2.24px;
  }
}
@media screen and (min-width: 1280px) {
  .concept__title {
    font-size: 28px;
    line-height: 44px;
  }
}

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

.concept__button {
  text-align: center;
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .concept__button {
    text-align: left;
    margin-top: 37px;
  }
}

.concept__picture {
  width: 89%;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .concept__picture {
    width: 50%;
    height: 442px;
    border-radius: 0 40px 40px 0;
    margin-top: 0;
  }
}
.concept__picture img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  max-height: 61.2vw;
  height: 100%;
}
@media screen and (min-width: 1280px) {
  .concept__picture img {
    height: 442px;
    width: 100%;
  }
}

.recommend {
  margin-top: 100px;
  margin-bottom: 97px;
}
@media screen and (min-width: 768px) {
  .recommend {
    margin-top: 116px;
    margin-bottom: 134px;
  }
}

.recommend__inner {
  padding-inline: 47px;
}

.recommend__items {
  margin-top: 37px;
  display: block;
  max-width: 284px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (min-width: 768px) {
  .recommend__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 58px;
    gap: 59px;
    max-width: 996px;
  }
}
@media screen and (min-width: 999px) {
  .recommend__items {
    gap: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .recommend__items {
    gap: 59px;
  }
}

.recommend__item {
  text-align: center;
}

.recommend__item-title {
  text-align: center;
}
.recommend__item-title img {
  width: 178px;
}

.recommend__item-img {
  text-align: center;
  margin-top: 12px;
}
@media screen and (min-width: 999px) {
  .recommend__item-img {
    margin-top: 15px;
  }
}
.recommend__item-img img {
  max-width: 276px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recommend__item-img img {
    max-width: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .recommend__item-img img {
    max-width: 276px;
  }
}

.recommend__item-text {
  text-align: left;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .recommend__item-text {
    width: 200px;
  }
}
@media screen and (min-width: 999px) {
  .recommend__item-text {
    width: 284px;
  }
}

.text-red {
  color: #EE5A6D;
}

.info {
  margin-top: 97px;
  position: relative;
}
.info .section-title {
  margin-top: 0;
}
@media screen and (min-width: 1280px) {
  .info {
    padding-top: 0;
    padding-bottom: 80px;
    margin-top: 0px;
  }
}
.info::after {
  background-image: url(../img/info-bg-bottom_sp.png);
  background-position: bottom center;
  width: inherit;
  bottom: -28px;
}
@media screen and (min-width: 1280px) {
  .info::after {
    height: 97px;
    bottom: -97px;
  }
}

.info-top,
.info-bottom {
  position: relative;
  height: 100vh;
  width: 100%;
}
.info-top::before,
.info-bottom::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-position: bottom center;
  width: inherit;
  height: inherit;
}

.info-top {
  height: 22.66667vw;
}
@media screen and (min-width: 1280px) {
  .info-top {
    height: 15.70313vw;
  }
}
.info-top::before {
  background-image: url(../img/info-bg-top_sp.png);
  background-position: top center;
  bottom: 0;
}
@media screen and (min-width: 1280px) {
  .info-top::before {
    background-image: url(../img/info-bg-top.png);
  }
}

.info-bottom {
  height: 7.57812vw;
}
.info-bottom::before {
  background-image: url(../img/info-bg-bottom_sp.png);
  background-position: top center;
  bottom: 0;
}
@media screen and (min-width: 1280px) {
  .info-bottom::before {
    background-image: url(../img/info-bg-bottom.png);
  }
}

.info-bg-color {
  background-color: #DFF1FD;
  padding-top: 30px;
  padding-bottom: 62px;
}
@media screen and (min-width: 1280px) {
  .info-bg-color {
    padding-top: 0;
    padding-bottom: 84px;
  }
}

.info__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .info__items {
    margin-top: 58px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .info__items {
    gap: 80px;
  }
}
.info__items .info__item:nth-child(2) .info__item-texts {
  top: 26%;
}
@media screen and (min-width: 600px) {
  .info__items .info__item:nth-child(2) .info__item-texts {
    top: 38%;
  }
}
@media screen and (min-width: 999px) {
  .info__items .info__item:nth-child(2) .info__item-texts {
    top: 30%;
  }
}
@media screen and (min-width: 1280px) {
  .info__items .info__item:nth-child(2) .info__item-texts {
    top: 35%;
  }
}

.info__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.info__item:after {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.info__item img {
  border-radius: 20px;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.info__item:hover img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.info__item:hover .info__item-line {
  border: 2px solid #fff;
}
.info__item:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.info__item-line {
  border-radius: 20px;
  height: calc(100% - 20px);
  margin: 10px;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  width: calc(100% - 20px);
  z-index: 1;
  position: absolute;
  top: 0;
}

.info__item-texts {
  position: absolute;
  text-align: center;
  top: 35%;
  width: 100%;
  z-index: 2;
  color: #FFF;
}
@media screen and (min-width: 600px) {
  .info__item-texts {
    top: 38%;
  }
}
@media screen and (min-width: 1280px) {
  .info__item-texts {
    top: 35%;
  }
}

.info__item-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding-bottom: 42px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .info__item-title {
    font-size: 30px;
  }
}
@media screen and (min-width: 999px) {
  .info__item-title {
    font-size: 28px;
    letter-spacing: 2.24px;
    padding-bottom: 48px;
  }
}
.info__item-title::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 30px;
  background: #FFF;
  bottom: 17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1280px) {
  .info__item-title::after {
    width: 40px;
  }
}

.info__item-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.96px;
  line-height: 20px;
}
@media screen and (min-width: 600px) {
  .info__item-text {
    font-size: 14px;
    line-height: 30px;
  }
}
@media screen and (min-width: 999px) {
  .info__item-text {
    font-size: 16px;
    line-height: 28px; /* 175% */
    letter-spacing: 1.28px;
  }
}

.info__text {
  margin-top: 21px;
  background: #FFF;
  padding: 18px 20px 17px;
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1280px) {
  .info__text {
    margin-top: 60px;
    padding: 36px 40px;
    line-height: 28px; /* 200% */
  }
}

.info__decos {
  position: relative;
}
.info__decos::before, .info__decos::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.info__decos::before {
  background-image: url(../img/info-bottom-deco-1.png);
  width: 24px;
  height: 25px;
  bottom: 40px;
  left: 12px;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .info__decos::before {
    bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .info__decos::before {
    left: 20px;
    bottom: 85px;
  }
}
@media screen and (min-width: 999px) {
  .info__decos::before {
    bottom: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .info__decos::before {
    width: 57px;
    height: 56px;
    left: 40px;
    bottom: 7.6vw;
  }
}
.info__decos::after {
  background-image: url(../img/info-bottom-deco-2.png);
  width: 56px;
  height: 60px;
  bottom: 22px;
  right: 7px;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .info__decos::after {
    bottom: 38px;
  }
}
@media screen and (min-width: 768px) {
  .info__decos::after {
    bottom: 50px;
    right: 40px;
  }
}
@media screen and (min-width: 999px) {
  .info__decos::after {
    bottom: 70px;
  }
}
@media screen and (min-width: 1280px) {
  .info__decos::after {
    width: 128px;
    height: 142px;
    right: 20px;
    bottom: 5.46vw;
  }
}

.blog {
  margin-top: 98px;
}
@media screen and (min-width: 999px) {
  .blog {
    margin-top: 78px;
  }
}

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

.blog__list {
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blog__list {
    width: calc(50% - 25px);
  }
}
@media screen and (min-width: 999px) {
  .blog__list {
    width: calc(33.333333% - 33.3333333333px);
  }
}

.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100px;
  position: relative;
  -webkit-transform: color 0.4s ease-out;
          transform: color 0.4s ease-out;
}
.blog-card:hover .blog-card__img img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
          transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.blog-card:hover .blog-card__body .blog-card__title {
  color: #1391E6;
}
.blog-card:nth-child(n+2) {
  margin-top: 20px;
}
@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);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
    min-height: 315px;
  }
  .blog-card:nth-child(n+2) {
    margin-top: 0px;
  }
  .blog-card:nth-child(n+3) {
    margin-top: 0px;
  }
  .blog-card:nth-child(n+3) {
    margin-top: 60px;
  }
  .blog-card:not(:nth-child(1)):not(:nth-child(3)):not(:nth-child(5)) {
    margin-left: 50px;
  }
}
@media screen and (min-width: 999px) {
  .blog-card:nth-child(2), .blog-card:nth-child(3), .blog-card:nth-child(5), .blog-card:nth-child(6) {
    margin-left: 50px;
  }
  .blog-card:nth-child(4) {
    margin-left: 0 !important;
  }
  .blog-card:nth-child(3) {
    margin-top: 0px;
  }
}

.is-newer::after {
  position: absolute;
  content: "";
  background-image: url(../img/badge-new.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  left: -8px;
  top: -9px;
}
@media screen and (min-width: 768px) {
  .is-newer::after {
    width: 60px;
    height: 60px;
    left: -10px;
    top: -20px;
  }
}

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

.blog-card__body {
  margin-top: -7px;
  padding-left: 10px;
  width: 60%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .blog-card__body {
    padding-left: 0;
    min-width: 252px;
    width: 100%;
    margin-top: 0;
    padding: 23px 24px 0px 24px;
  }
}

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

.blog-card__title {
  margin-top: 6px;
  line-height: 20px; /* 142.857% */
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
@media screen and (min-width: 768px) {
  .blog-card__title {
    margin-top: 0;
    font-size: 16px;
    line-height: 24px; /* 150% */
  }
}

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

.blog__button {
  margin-top: 38px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog__button {
    margin-top: 60px;
  }
}

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

footer {
  background-color: #DFF1FD;
}

.footer-info__inner {
  padding-inline: 10px;
  padding-top: 13px;
}
@media screen and (min-width: 768px) {
  .footer-info__inner {
    padding-inline: 20px;
    padding-top: 56px;
  }
}

.footer-info {
  border-radius: 8px;
  background: #FFF;
  padding: 32px 10px 22px 10px;
}
@media screen and (min-width: 600px) {
  .footer-info {
    padding: 52px 42px 52px 49px;
  }
}
@media screen and (min-width: 999px) {
  .footer-info {
    max-width: 1000px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 49px;
  }
}

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

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

.footer-info__address {
  margin-top: 11px;
  text-align: center;
}
.footer-info__address span {
  margin-left: 14px;
}

.footer-info__tel {
  margin-top: 18px;
  display: block;
  color: #1391E6;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px; /* 112.5% */
  letter-spacing: -0.64px;
  text-align: center;
}
@media screen and (min-width: 999px) {
  .footer-info__tel {
    margin-top: 16px;
  }
}
.footer-info__tel img {
  vertical-align: top;
  margin-top: 4px;
  width: 28px;
  height: 28px;
}

.footer-info__time {
  margin-top: 8px;
  color: #1391E6;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}
@media screen and (min-width: 999px) {
  .footer-info__time {
    margin-top: 4px;
  }
}

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

.footer-info__button {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  max-width: 150px;
  width: 100%;
  height: 38px;
}
@media screen and (min-width: 999px) {
  .footer-info__button {
    height: 56px;
    min-width: 220px;
  }
}
@media screen and (min-width: 999px) {
  .footer-info__button:nth-child(2) {
    margin-left: 6px;
  }
}

.footer-info__button-blue,
.footer-info__button-white {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media screen and (min-width: 999px) {
  .footer-info__button-blue,
  .footer-info__button-white {
    font-size: 16px;
    font-weight: 500;
  }
}

.footer-info__button-blue {
  background: #1391E6;
  color: #FFF;
}
.footer-info__button-blue:hover {
  background: #0060A0;
}
.footer-info__button-blue span {
  margin-left: 3px;
}
@media screen and (min-width: 999px) {
  .footer-info__button-blue span {
    margin-left: 6px;
  }
}
@media screen and (min-width: 999px) {
  .footer-info__button-blue svg {
    width: 30px;
    height: 20px;
  }
}

.footer-info__button-white {
  background: #fff;
  color: #1391E6;
  border: 1px solid #1391E6;
}
.footer-info__button-white:nth-child(2) {
  margin-left: 15px;
}
.footer-info__button-white:hover {
  background: #1391E6;
  color: #fff;
}
.footer-info__button-white:hover svg {
  fill: #fff;
}
.footer-info__button-white span {
  margin-left: 9px;
}
@media screen and (min-width: 999px) {
  .footer-info__button-white span {
    margin-left: 8px;
  }
}
@media screen and (min-width: 999px) {
  .footer-info__button-white svg {
    width: 24px;
    height: 24px;
  }
}

.footer-info__time-table {
  margin-top: 20px;
  display: block;
  width: 100%;
  max-width: 478px;
  margin-right: auto;
  margin-left: auto;
}
.footer-info__time-table img {
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.footer-top__right {
  margin-top: 20px;
  width: calc(100% - 20px);
  margin-right: auto;
  margin-left: auto;
  max-width: 478px;
}
@media screen and (min-width: 999px) {
  .footer-top__right {
    width: 100%;
    margin-top: 0;
    margin-left: 40px;
    max-width: 385px;
    max-height: 385px;
  }
}

.footer-info__left-map {
  padding-top: 100%;
  width: 100%;
  position: relative;
}
.footer-info__left-map iframe {
  width: 100%;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.footer-nav {
  margin-top: 62px;
  margin-bottom: 66px;
}
@media screen and (min-width: 999px) {
  .footer-nav {
    margin-top: 50px;
    margin-bottom: 62px;
  }
}

.footer-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 46px;
}
@media screen and (min-width: 999px) {
  .footer-nav__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}

.footer-nav__item {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.footer-nav__subnav-item {
  margin-top: 26px;
}

.footer-nav__arrow {
  font-weight: 500;
  position: relative;
  margin-left: 12px;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.footer-nav__arrow:hover {
  opacity: 0.8;
}
.footer-nav__arrow::before {
  position: absolute;
  content: "";
  background-image: url(../img/footer-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 12px;
  left: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-nav__item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

.copyright {
  background: #1391E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
  padding-top: 16px;
  padding-bottom: 79px;
  margin-top: 60px;
}
@media screen and (min-width: 1280px) {
  .copyright {
    height: initial;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.copyright__text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.pagetop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 56px;
  height: 56px;
  right: 8px;
  bottom: 98px;
  z-index: 20;
}
@media screen and (min-width: 999px) {
  .pagetop {
    right: 18px;
    bottom: 38px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.reserve {
  background: #1391E6;
  border-radius: 20px 0px 0px 20px;
  position: fixed;
  width: 92px;
  height: 120px;
  top: 176px;
  right: 0;
  z-index: 10;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}
@media screen and (min-width: 1280px) {
  .reserve {
    display: block;
  }
}
.reserve:hover {
  background: #0060A0;
}
.reserve img {
  margin-top: 20px;
}

.reserve__text {
  margin-top: 11px;
  color: #fff;
  line-height: 130%; /* 18.2px */
}

.page__top {
  margin-top: 20px;
  margin-inline: 20px;
  height: 188px;
  max-width: 1920px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .page__top {
    margin-top: 100px;
    height: 340px;
    margin-inline: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .page__top {
    margin-top: 120px;
  }
}
.page__top::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.page__top-about {
  background-image: url(../img/page-about-top-sp.jpg);
}
@media screen and (min-width: 768px) {
  .page__top-about {
    background-image: url(../img/page-about-top.jpg);
  }
}

.page__top-text {
  color: #fff;
  position: absolute;
  text-align: center;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page__top-text {
    top: 52%;
  }
}

.page__top-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4.8px;
}
@media screen and (min-width: 768px) {
  .page__top-title {
    font-size: 32px;
    letter-spacing: 3.2px;
  }
}

.page__top-subtitle {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 768px) {
  .page__top-subtitle {
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

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

.pa__feature-items {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .pa__feature-items {
    margin-top: 60px;
  }
}

.pa__feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .pa__feature-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.pa__feature-item:nth-child(2) {
  margin-top: 94px;
}
@media screen and (min-width: 768px) {
  .pa__feature-item:nth-child(2) {
    margin-top: 22px;
  }
}
.pa__feature-item:nth-child(2) .pa__feature-img {
  margin-left: auto;
  margin-right: inherit;
  border-radius: 20px 0px 0px 20px;
}
@media screen and (min-width: 999px) {
  .pa__feature-item:nth-child(2) .pa__feature-img {
    margin-left: 93px;
  }
}
@media screen and (min-width: 999px) {
  .pa__feature-item:nth-child(2) .pa__feature-description {
    margin-left: 0;
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .pa__feature-item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.bg-deco {
  padding-top: 106px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bg-deco {
    margin-top: 60px;
    padding-top: 216px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 999px) {
  .bg-deco {
    padding-bottom: 72px;
  }
}
@media screen and (min-width: 1280px) {
  .bg-deco {
    padding-bottom: 170px;
  }
}
.bg-deco::before {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/concept-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  min-width: 556px;
  height: 81.06667vw;
  top: 0;
  left: 12px;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .bg-deco::before {
    width: 145px;
    min-width: 800px;
    height: 400px;
    left: calc(50% - 222px);
  }
}
@media screen and (min-width: 768px) {
  .bg-deco::before {
    min-width: 1000px;
    height: 500px;
    top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .bg-deco::before {
    min-width: 1310px;
    height: 725px;
    width: 102%;
    left: 32.5%;
  }
}

.pa__feature-img {
  margin-top: 38px;
  border-radius: 0px 20px 20px 0px;
  min-width: 334px;
  width: 89%;
  min-height: 230px;
  margin-right: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .pa__feature-img {
    max-height: 438px;
    height: 100%;
    width: 50%;
    margin-right: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .pa__feature-img img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
    height: 438px;
    width: 100%;
  }
}

.pa__feature-description {
  padding-inline: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pa__feature-description {
    width: 50%;
    margin-left: 30px;
    margin-top: -4px;
    padding-top: 36px;
  }
}
@media screen and (min-width: 999px) {
  .pa__feature-description {
    width: 31.8%;
    margin-left: 96px;
    padding-inline: 0;
  }
}

.pa__feature-sub {
  color: #1391E6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
}
@media screen and (min-width: 999px) {
  .pa__feature-sub {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.pa__feature-title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px; /* 160% */
  letter-spacing: 1.6px;
}
@media screen and (min-width: 999px) {
  .pa__feature-title {
    margin-top: 24px;
    font-size: 28px;
    line-height: 44px; /* 157.143% */
    letter-spacing: 2.24px;
  }
}

.pa__feature-textblock {
  margin-top: 25px;
}
@media screen and (min-width: 999px) {
  .pa__feature-textblock {
    margin-top: 36px;
  }
}

.pa__feature-text:nth-child(2) {
  margin-top: 24px;
}

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

.pa__gallery-photos {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 335px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .pa__gallery-photos {
    max-width: 335px;
  }
}
@media screen and (min-width: 768px) {
  .pa__gallery-photos {
    margin-top: 60px;
    width: 100%;
    max-width: 999px;
  }
}

.pa__gallery-photo {
  max-width: 162px;
  max-height: 162px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 374px) {
  .pa__gallery-photo {
    max-width: 140px;
    max-height: 140px;
  }
}
@media screen and (min-width: 600px) {
  .pa__gallery-photo {
    width: calc(50% - 5.5px);
  }
}
@media screen and (min-width: 768px) {
  .pa__gallery-photo {
    max-width: 317px;
    max-height: 317px;
    width: calc(33.3333% - 16px);
  }
}
.pa__gallery-photo:nth-child(2n) {
  margin-left: 11px;
}
@media screen and (min-width: 768px) {
  .pa__gallery-photo:nth-child(2n) {
    margin-left: 0;
  }
}
.pa__gallery-photo:nth-child(3), .pa__gallery-photo:nth-child(4), .pa__gallery-photo:nth-child(5), .pa__gallery-photo:nth-child(6) {
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .pa__gallery-photo:nth-child(3), .pa__gallery-photo:nth-child(4), .pa__gallery-photo:nth-child(5), .pa__gallery-photo:nth-child(6) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .pa__gallery-photo:nth-child(4), .pa__gallery-photo:nth-child(5), .pa__gallery-photo:nth-child(6) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .pa__gallery-photo:nth-child(2), .pa__gallery-photo:nth-child(3), .pa__gallery-photo:nth-child(5), .pa__gallery-photo:nth-child(6) {
    margin-left: 24px;
  }
}

.page__top-medical {
  background-image: url(../img/medical-top-sp.jpg);
}
@media screen and (min-width: 768px) {
  .page__top-medical {
    background-image: url(../img/medical-top.jpg);
  }
}

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

.info__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .info__inner {
    padding-inline: 40px;
  }
}

@media screen and (min-width: 768px) {
  .medical__inner {
    padding-inline: 62px;
    margin-left: 0;
  }
}

.medical__nav-item:nth-of-type(2) {
  margin-top: 80px;
}
.medical__nav-item:nth-of-type(2) .medical__nav-title-sub {
  background: #EE5A6D;
}

.medical__nav-titleWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}

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

.medical__nav-title-sub {
  color: #FFF;
  font-weight: 700;
  letter-spacing: 1.12px;
  background: #1391E6;
  padding: 6px 12px;
  border-radius: 24px;
}

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

.medical__item {
  border-radius: 12px;
  border: 1px solid #1391E6;
  padding: 17px 20px;
  display: block;
  -webkit-transition: 0.3s padding ease-in-out;
  transition: 0.3s padding ease-in-out;
}
@media screen and (min-width: 768px) {
  .medical__item {
    border: 2px solid #1391E6;
    padding: 22px 29px;
  }
}
.medical__item:hover {
  background-color: #DFF1FD;
  background-image: url(../img/icon-arrow_bottom.svg);
  background-position: bottom 5px center;
  background-repeat: no-repeat;
  padding: 11px 29px 31px;
}

.medical__item-link {
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #1391E6;
}
@media screen and (min-width: 768px) {
  .medical__item-link {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

.medical-info {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .medical-info {
    margin-top: 160px;
    padding-bottom: 0;
  }
}

.medical-info__cards {
  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;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .medical-info__cards {
    margin-top: 58px;
  }
}

.medical-info__2 .medical-info__cards {
  gap: 41px;
}
@media screen and (min-width: 768px) {
  .medical-info__2 .medical-info__cards {
    gap: 40px;
  }
}

.medical-info__card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .medical-info__card {
    padding: 68px 60px 60px;
  }
}

.medical-info__card-titlewrap {
  padding-bottom: 19px;
  border-bottom: 1px solid #C2C2C2;
}
@media screen and (min-width: 768px) {
  .medical-info__card-titlewrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 38px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 42px;
  }
}

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

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

.medical-info__card-content {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .medical-info__card-content {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .medical-info__card-textwrap {
    width: 50%;
  }
}

.medical-info__card-imgwrap {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .medical-info__card-imgwrap {
    margin-top: 0;
    width: 50%;
  }
}

.medical-info__card-img {
  width: 100%;
}
.medical-info__card-img img {
  border-radius: 20px;
}

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

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

.medical-info__decos::before {
  bottom: 26px;
}
@media screen and (min-width: 1280px) {
  .medical-info__decos::before {
    width: 57px;
    height: 56px;
    left: 40px;
    bottom: 7.6vw;
  }
}
.medical-info__decos::after {
  bottom: 10px;
}
@media screen and (min-width: 1280px) {
  .medical-info__decos::after {
    width: 128px;
    height: 142px;
    right: 20px;
    bottom: 5.46vw;
  }
}

.page__top-staff {
  background-image: url(../img/staff-top-sp.jpg);
}
@media screen and (min-width: 768px) {
  .page__top-staff {
    background-image: url(../img/staff-top-pc.jpg);
  }
}

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

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

.greeting__description {
  max-width: 460px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

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

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

.greeting__textwrap2 {
  margin-top: 24px;
}

.greeting__textwrap3 {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .greeting__textwrap3 {
    margin-top: 16px;
  }
}

.greeting__textwrap3 {
  text-align: right;
}

.greeting__imgWrap {
  margin-top: 40px;
  display: block;
}
@media screen and (min-width: 768px) {
  .greeting__imgWrap {
    display: none;
  }
}

.greeting__img-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .greeting__img-pc {
    display: block;
    margin-top: 3px;
    padding-left: 80px;
    max-width: 460px;
    width: 100%;
  }
}

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

.greeting__career-title,
.greeting__license-title {
  padding-bottom: 6px;
  font-size: 16px;
  border-bottom: 1px solid #393939;
}

.greeting__career-block {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.greeting__career-block:not(:first-of-type) {
  margin-top: 12px;
}

.greeting__career-detail {
  line-height: 161%; /* 22.54px */
}

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

.greeting__license-block {
  margin-top: 11px;
}
.greeting__license-block:nth-of-type(3) {
  margin-top: 16px;
}

.staff__swiper {
  margin-top: 98px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .staff__swiper {
    margin-top: 160px;
  }
}

.staff__swiper-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.staff__swiper-slide {
  display: block;
  min-width: 200px;
  width: 100%;
}
.swiper-wrapper {
  height: inherit;
}

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

.staff-member__contentWrap {
  margin: 36px auto 0;
  max-width: 460px;
}
@media screen and (min-width: 768px) {
  .staff-member__contentWrap {
    margin-top: 60px;
    max-width: none;
  }
}

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

.staff-member__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  padding-bottom: 7px;
  border-bottom: 1px solid #707070;
}

.staff-member__items {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}
@media screen and (min-width: 768px) {
  .staff-member__items {
    margin-top: 39px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .staff-member__item {
    width: calc(33.3333333% - 13.3333333333px);
  }
  .staff-member__item:not(:nth-child(3n+1)) {
    margin-left: 20px;
  }
  .staff-member__item:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 999px) {
  .staff-member__item {
    width: calc(33.3333333% - 20px);
  }
  .staff-member__item:not(:nth-child(3n+1)) {
    margin-left: 30px;
  }
  .staff-member__item:nth-child(n+4) {
    margin-top: 61px;
  }
}
@media screen and (min-width: 999px) {
  .staff-member__item {
    width: calc(33.3333333% - 53.3333333333px);
  }
  .staff-member__item:not(:nth-child(3n+1)) {
    margin-left: 80px;
  }
}

.staffCard__img {
  text-align: center;
  position: relative;
  padding-top: 100%;
}
.staffCard__img img {
  position: absolute;
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.staffCard__nameWrap {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.staffCard__charge {
  font-size: 12px;
  letter-spacing: 0.96px;
}

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

.staffCard__info {
  margin-top: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .staffCard__info {
    margin-top: 16px;
  }
}

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

.staffCard__info-left {
  background-color: #DFF1FD;
  border-bottom: 1px solid #fff;
}
.page__top-archive {
  background-image: url(../img/page-blog-top-sp.png);
}
@media screen and (min-width: 768px) {
  .page__top-archive {
    background-image: url(../img/page-blog-top-pc.png);
  }
}

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

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

@media screen and (min-width: 768px) {
  .archive__articles {
    width: calc(100% - 300px - 30px);
  }
}

.archive__lists {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .archive__lists {
    margin-top: 0px;
  }
}

.archive__list {
  max-width: 600px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive__list {
    max-height: 153px;
    max-width: none;
  }
}

.archive-card {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: color 0.4s ease-out;
          transform: color 0.4s ease-out;
}
@media screen and (min-width: 768px) {
  .archive-card {
    min-height: 153px;
  }
}
.archive-card:hover .archive-card__img img {
  -webkit-transform: translate(-50%, -50%) scale(1.1, 1.1);
          transform: translate(-50%, -50%) scale(1.1, 1.1);
}
.archive-card:hover .archive-card__body .archive-card__title {
  color: #1391E6;
}
.archive-card .is-new::after {
  position: absolute;
  content: "";
  background-image: url(../img/badge-new.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  left: -8px;
  top: -9px;
}
@media screen and (min-width: 768px) {
  .archive-card .is-new::after {
    left: -10px;
    top: -10px;
  }
}
.archive-card:nth-child(n+2) {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .archive-card:nth-child(n+2) {
    margin-top: 20px;
  }
}

.archive-card__img {
  width: 40%;
  height: 100px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .archive-card__img {
    position: relative;
    width: 100%;
    max-width: 245px;
    height: 153px;
  }
}
.archive-card__img img {
  height: 100%;
  width: 100%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.archive-card__body {
  padding-left: 9px;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .archive-card__body {
    max-width: 405px;
    padding: 18px 0 15px 20px;
    width: 100%;
    min-height: 138px;
  }
}

.archive-card__category {
  border-radius: 10px;
  background: #1391E6;
  color: #FFF;
  font-size: 10px;
  padding: 0px 8px 0px 8px;
  height: 18px;
  display: inline-block;
  line-height: 18px;
}
@media screen and (min-width: 768px) {
  .archive-card__category {
    font-size: 11px;
    height: 28px;
    line-height: 28px;
    padding: 0 12px;
    text-align: center;
  }
}

.archive-card__title {
  margin-top: 5px;
  line-height: 20px; /* 142.857% */
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
@media screen and (min-width: 768px) {
  .archive-card__title {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px; /* 150% */
  }
}

.archive-card__published {
  margin-top: 8px;
  display: block;
  color: #888;
  font-size: 11px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .archive-card__published {
    font-size: 12px;
    margin-top: 16px;
  }
}

.pagination {
  margin-top: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination a:hover {
  background: #1391E6;
  border-color: #1391E6;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 100px;
    gap: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .pagination {
    margin-left: 73px;
  }
}

.paginaton__arrow-prev {
  position: relative;
  border-radius: 4px;
  background: #1391E6;
  color: #FFF;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  padding: 7px 15px 7px 39px;
}
@media screen and (min-width: 768px) {
  .paginaton__arrow-prev {
    font-size: 14px;
  }
}
.paginaton__arrow-prev::after {
  position: absolute;
  content: "";
  background: url(../img/pagination_prev.png);
  background-size: contain;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
@media screen and (min-width: 768px) {
  .paginaton__arrow-prev::after {
    width: 16px;
    height: 16px;
  }
}
.paginaton__arrow-prev:hover::after {
  left: 12px;
}

.paginaton__arrow-next {
  position: relative;
  border-radius: 4px;
  background: #1391E6;
  color: #FFF;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  padding: 7px 39px 7px 15px;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}
@media screen and (min-width: 768px) {
  .paginaton__arrow-next {
    font-size: 14px;
  }
}
.paginaton__arrow-next::after {
  position: absolute;
  content: "";
  background: url(../img/pagination_next.png);
  background-size: contain;
  width: 14px;
  height: 14px;
  top: 50%;
  right: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
@media screen and (min-width: 768px) {
  .paginaton__arrow-next::after {
    width: 16px;
    height: 16px;
  }
}
.paginaton__arrow-next:hover::after {
  right: 12px;
}

.page-numbers {
  border-radius: 4px;
  border: 1px solid #1391E6;
  color: #1391E6;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    width: 34px;
    height: 36px;
    font-size: 14px;
  }
}

.current {
  border-radius: 4px;
  background: #1391E6;
  color: #FFF;
}

.sidebar {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .sidebar {
    width: 300px;
    margin-top: -9px;
  }
}

.sidebar__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px; /* 125% */
  border-bottom: 1px solid #888;
  padding-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.sidebar__title svg {
  vertical-align: middle;
  margin-right: 6px;
}

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

.sidebar-clinic__subTitle {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px; /* 125% */
}

.sidebar-clinic__text {
  margin-top: 12px;
}

.sidebar-clinic__button {
  margin-top: 10px;
  margin-left: 3px;
  display: block;
  color: #1391E6;
  line-height: normal;
  position: relative;
}
.sidebar-clinic__button::after {
  position: absolute;
  content: "";
  background: url(../img/sidebar_arrow.svg);
  width: 18px;
  height: 18px;
  top: 50%;
  left: 84px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

.sidebar-article__lists {
  margin-top: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .sidebar-article__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sidebar-article__list {
  max-width: 600px;
  width: 100%;
}

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

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

.sidebar-article-card__body {
  margin-top: -7px;
  padding-left: 10px;
  width: calc(100% - 132px);
}
@media screen and (min-width: 768px) {
  .sidebar-article-card__body {
    padding-left: 0;
    max-width: 170px;
    margin-top: -3px;
    padding: 0px 10px;
    text-align: start;
    width: calc(100% - 120px);
  }
}

.sidebar-article-card__category {
  border-radius: 10px;
  background: #1391E6;
  color: #FFF;
  font-size: 10px;
  padding: 0px 8px 0px 8px;
  height: 18px;
  display: inline-block;
  line-height: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .sidebar-article-card__category {
    font-size: 10px;
    font-weight: 500;
    height: 18px;
    line-height: normal;
    padding: 1% 8px 0px 8px;
    text-align: center;
    vertical-align: top;
  }
}

.sidebar-article-card__title {
  margin-top: 4px;
  line-height: 20px; /* 142.857% */
  -webkit-transition: color 0.4s ease-out;
  transition: color 0.4s ease-out;
}
@media screen and (min-width: 768px) {
  .sidebar-article-card__title {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
  }
}

.sidebar-article-card__published {
  margin-top: 6px;
  display: block;
  color: #888;
  font-size: 11px;
  line-height: normal;
}

.sidebar-category {
  margin-top: 60px;
}

.sidebar-category__lists {
  margin-top: 16px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .sidebar-category__lists {
    margin-top: 19px;
  }
}

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

.sidebar-category__link {
  font-size: 16px;
  padding-left: 12px;
  line-height: normal;
  position: relative;
}
.sidebar-category__link::before {
  position: absolute;
  content: "";
  background: url(../img/footer-arrow.png) center center no-repeat;
  background-size: cover;
  width: 6px;
  height: 12px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

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

@media screen and (min-width: 768px) {
  .blogPage__articles {
    width: calc(100% - 300px - 30px);
  }
}

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

.entry__meta {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .entry__meta {
    margin-top: 20px;
  }
}

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

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

.entry__content {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .entry__content {
    margin-top: 46px;
  }
}
.entry__content a {
  color: #1391E6;
  text-decoration: underline;
}
.entry__content ul {
  margin-top: 12px;
  margin-left: 20px;
  padding-left: 10px;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .entry__content ul {
    margin-top: 21px;
    padding-left: 8px;
  }
}
.entry__content li {
  font-size: 16px;
  line-height: 30px; /* 187.5% */
  margin-bottom: 4px;
}
.entry__content li:nth-last-child(1) {
  margin-bottom: 0;
}

.wp-block-heading {
  color: #1391E6;
  font-weight: 700;
  line-height: normal;
}

h2.wp-block-heading {
  margin-top: 56px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.44px;
  border-left: 6px solid #1391E6;
  padding: 7px 0 6px 16px;
}
@media screen and (min-width: 768px) {
  h2.wp-block-heading {
    margin-top: 60px;
    border-left: 8px solid #1391E6;
    font-size: 24px;
    letter-spacing: 1.92px;
    padding: 8px 0 8px 20px;
  }
}

h3.wp-block-heading {
  margin-top: 40px;
  font-size: 16px;
  letter-spacing: 1.28px;
  border-bottom: 1px solid #1391E6;
  padding-bottom: 4px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  h3.wp-block-heading {
    margin-top: 42px;
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: 1.6px;
    padding-bottom: 5px;
  }
}

h4.wp-block-heading {
  margin-top: 56px;
  margin-bottom: 16px;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  h4.wp-block-heading {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

.wp-block-image {
  margin-top: 20px;
  font-size: 16px;
}

.related-link {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .related-link {
    margin-top: 72px;
  }
}

.related-link__prev,
.related-link__next {
  background: #1391E6;
  border-radius: 4px;
  position: absolute;
  height: 39px;
  width: 108px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .related-link__prev,
  .related-link__next {
    width: 124px;
    height: 36px;
  }
}
.related-link__prev a,
.related-link__next a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  height: 100%;
  height: 100%;
}

.related-link__prev {
  right: calc(50% + 60px);
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .related-link__prev {
    right: calc(50% + 65px);
  }
}
.related-link__prev a {
  background: url(../img/pagination_prev.png) no-repeat left 16px center/contain;
  background-size: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.related-link__archive {
  border: 1px solid #1391E6;
  border-radius: 4px;
  color: #1391E6;
  height: 41px;
  width: 95px;
}
@media screen and (min-width: 768px) {
  .related-link__archive {
    width: 90px;
  }
}
.related-link__archive a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 4px;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  height: 100%;
  height: 100%;
}

.related-link__next {
  left: calc(50% + 60px);
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .related-link__next {
    left: calc(50% + 65px);
  }
}
.related-link__next a {
  background: url(../img/pagination_next.png) no-repeat right 16px center/contain;
  background-size: 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.page__top-thanks {
  background-image: url(../img/page-contact-top-sp.jpg);
}
@media screen and (min-width: 768px) {
  .page__top-thanks {
    background-image: url(../img/page-contact-top-pc.jpg);
  }
}

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

.contact__text,
.contact-thanks__text {
  max-width: 730px;
  margin-right: auto;
  margin-left: auto;
}

.thanks__text-red {
  color: #EE5A6D;
}

.contact .section-title,
.reservation .section-title {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .contact .section-title,
  .reservation .section-title {
    margin-top: 150px;
  }
}

.Form {
  margin-top: 66px;
  max-width: 728px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .Form {
    margin-top: 72px;
  }
}

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

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

div.wpcf7 .wpcf7-spinner {
  display: block;
}

.Form-Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding-bottom: 25px;
  padding-top: 24px;
  border-bottom: 1px solid #ddd;
}
.Form-Item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.Form-Item:first-child {
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .Form-Item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    padding-bottom: 28px;
    padding-top: 28px;
  }
}

.Form-Item-Label {
  font-size: 16px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .Form-Item-Label {
    min-width: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.Form-Item-Label-Required {
  margin-left: 12px;
  font-size: 12px;
  line-height: normal;
  background: #EE5A6D;
  color: #FFF;
  padding: 3px 6px 2px 6px;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .Form-Item-Label-Required {
    margin-left: 16px;
  }
}

.wpcf7-form-control-wrap input {
  border-radius: 4px;
  background: #F6F6F6;
  border: none;
  font-size: 16px;
  line-height: normal;
  padding: 12px 0 12px 16px;
  width: 100%;
}
.wpcf7-form-control-wrap input::-webkit-input-placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap input::-moz-placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap input:-ms-input-placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap input::-ms-input-placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap input::placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap textarea {
  border-radius: 4px;
  background: #F6F6F6;
  border: none;
  font-size: 16px;
  line-height: normal;
  padding: 12px 0 12px 16px;
  width: 100%;
  height: 160px;
}
.wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap textarea:-ms-input-placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #C2C2C2;
}
.wpcf7-form-control-wrap textarea::placeholder {
  color: #C2C2C2;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control-wrap textarea {
    height: 200px;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control-wrap {
    width: 100%;
  }
}

.isMsg {
  width: 100%;
  max-width: 240px;
}

.button-wrap {
  margin-top: 70px;
  text-align: center;
}

.wpcf7-submit {
  letter-spacing: 1.12px;
  color: #1391E6;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #1391E6;
  padding: 6px 114px 6px 114px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .wpcf7-submit {
    font-size: 16px;
    letter-spacing: 1.28px;
    padding: 15px 154px 14px 154px;
    border-radius: 28px;
  }
}
.wpcf7-submit:hover {
  background: #1391E6;
  border-color: #1391E6;
  color: #fff;
}

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

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

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

.reservation-info__title2 {
  margin-top: 50px;
}

.reservation-info__telBox {
  display: inline-block;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .reservation-info__telBox {
    margin-top: 24px;
  }
}

.reservation-info__text {
  margin-top: 20px;
}

.reservation-info__text2 {
  margin-top: 34px;
}

.radio-xxx .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.radio-xxx .wpcf7-radio .wpcf7-list-item {
  position: relative;
  margin-right: 32px;
}
.radio-xxx .wpcf7-radio .wpcf7-list-item input[type=radio] {
  opacity: 0;
  position: absolute;
}
.radio-xxx .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.radio-xxx .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding: 12px 0 12px 32px;
  cursor: pointer;
}
.radio-xxx .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  background: #fff;
  border: 1px solid #1391E6;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  display: block;
}
.radio-xxx .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  background: #1391E6;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.Form-Item__subtext {
  color: #888;
  font-size: 11px;
  line-height: normal;
}

.checkbox-xxx .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.checkbox-xxx .wpcf7-checkbox .wpcf7-list-item {
  position: relative;
}
.checkbox-xxx .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.checkbox-xxx .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.checkbox-xxx .wpcf7-checkbox .wpcf7-list-item span {
  position: relative;
  display: inline-block;
  margin-right: 24px;
  padding: 8px 0 8px 32px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .checkbox-xxx .wpcf7-checkbox .wpcf7-list-item span {
    margin-right: 32px;
  }
}
.checkbox-xxx .wpcf7-checkbox .wpcf7-list-item span::before {
  background: #fff;
  border: 1px solid #1391E6;
  width: 24px;
  height: 24px;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  display: block;
}
.checkbox-xxx .wpcf7-checkbox .wpcf7-list-item span::after {
  background-image: url(../img/Check.svg);
  background-position: -1px 5px;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
  display: block;
  opacity: 0;
}
.checkbox-xxx .wpcf7-checkbox .wpcf7-list-item span:checked + input::after {
  opacity: 1;
}

input[type=radio]:focus-visible + .wpcf7-list-item-label::before,
input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #1391E6;
}

.menu-xxx {
  position: relative;
}
.menu-xxx select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f6f6f6;
  background-image: url(./../img/select.svg);
  background-position: right 12px center;
  background-repeat: no-repeat;
  font-size: 16px;
  line-height: normal;
  padding: 13px 16px;
  width: 100%;
}

.wpcf7-select {
  border-radius: 4px;
  background: #F6F6F6;
  border: none;
  color: #393939;
  font-size: 16px;
  line-height: normal;
  padding: 12px 0 12px 16px;
  width: 100%;
}

.dateWrap {
  width: 100%;
}

.date:nth-of-type(2), .date:nth-of-type(3) {
  margin-top: 16px;
}
.date span {
  position: relative;
}
.date span input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 12px 14px 12px 16px;
  width: 100%;
  font-size: 16px;
  color: #C2C2C2;
}
.date span input::-webkit-inner-spin-button, .date span input::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
  position: relative;
  background-image: url(./../img/icon-calender.svg);
  background-position: right center;
  background-repeat: no-repeat;
}
.date span input::-webkit-inner-spin-button:focus-visible, .date span input::-webkit-calendar-picker-indicator:focus-visible {
  outline: 2px solid #1391E6;
}
@media screen and (min-width: 768px) {
  .date span input::-webkit-inner-spin-button, .date span input::-webkit-calendar-picker-indicator {
    width: 20px;
    height: 20px;
  }
}

.breadcrumb {
  margin-top: 8px;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  margin: 12px 20px 0;
  max-width: 1920px;
  width: 90.625%;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding-left: 28px;
    padding-right: 28px;
    margin: 12px auto 0;
  }
}

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

.footer-cta__tel {
  text-align: center;
}

.footer-cta__tel {
  text-align: center;
}
.footer-cta__tel a {
  color: #1391E6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.footer-cta__tel img {
  width: 18px;
  height: 18px;
  vertical-align: bottom;
}

.footer-cta__time {
  color: #393939;
  text-align: center;
  font-size: 10px;
  display: block;
  line-height: 1;
  margin-top: 6px;
}

.footer-cta__reservation {
  background-color: #1391E6;
  border-radius: 8px;
  padding: 5px 10px;
  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;
  margin-left: 12px;
  max-width: 157px;
  width: 100%;
}
.footer-cta__reservation img {
  width: 46px;
  height: 28px;
}

.footer-cta__reservationText {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  margin-left: 9px;
  text-align: center;
}

.footer-cta__reservationText-big {
  font-size: 16px;
  font-weight: 700;
}

.wp-image-990 {
  width: 670px;
  height: 419px;
  -o-object-fit: cover;
     object-fit: cover; /* 画像の切り抜き調整 */
}