@charset "UTF-8";
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

.button {
  display: inline-block;
  position: relative;
  padding: 9px 40px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  border: 1px solid #1391E6;
  background: #ffffff;
  color: #1391E6;
  font-size: 14px;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
}
.button:hover {
  background: #1391E6;
  color: #ffffff;
}
.button:hover .button-arrow-icon {
  stroke: #ffffff;
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 1280px) {
  .button {
    padding: 10px 46px;
  }
}

.button-arrow-icon {
  position: absolute;
  right: 12px;
}
@media screen and (min-width: 1280px) {
  .button-arrow-icon {
    top: 11px;
  }
}

.inner {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 1280px) {
  .inner {
    margin-left: 0;
    margin-right: 0;
  }
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
}
.section-heading ::before {
  content: "";
  display: inline-block;
  background: url(../img/common/section-heading-sp.png) no-repeat;
  width: 49px;
  height: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 16px;
}
@media screen and (min-width: 1280px) {
  .section-heading ::before {
    background: url(../img/common/section-heading-pc.png) no-repeat;
    width: 67px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .section-heading ::before {
    background: url(../img/common/section-heading-pc.png) no-repeat;
    width: 67px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.section-heading ::after {
  content: "";
  display: inline-block;
  background: url(../img/common/section-heading-sp.png) no-repeat;
  width: 49px;
  height: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 16px;
}
@media screen and (min-width: 1280px) {
  .section-heading ::after {
    background: url(../img/common/section-heading-pc.png) no-repeat;
    width: 67px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .section-heading ::after {
    background: url(../img/common/section-heading-pc.png) no-repeat;
    width: 67px;
    height: 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1280px) {
  .section-heading {
    margin-bottom: 59px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .section-heading {
    margin-bottom: 48px;
  }
}

.section-heading-text {
  color: #393939;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 1280px) {
  .section-heading-text {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .section-heading-text {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.red-text {
  color: #EE5A6D;
}

.header {
  opacity: 0.85;
  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);
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.header.is-checked {
  background-color: #0060A0;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  opacity: 1;
}
@media screen and (min-width: 1280px) {
  .header {
    opacity: 0.85;
    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);
  }
}

.header__inner {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  -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: 1280px) {
  .header__inner {
    height: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header__inner {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__logo {
  display: block;
  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: 1280px) {
  .header__nav {
    margin-left: auto;
    margin-right: 32px;
    margin-top: -6px;
  }
}

@media screen and (min-width: 1280px) {
  .header__nav-list {
    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;
    margin-top: 8px;
  }
}

@media screen and (min-width: 1280px) {
  .header__nav-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;
    color: #393939;
    padding-bottom: 6px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1391E6), to(#1391E6));
    background-image: linear-gradient(#1391E6, #1391E6);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 2px; /* 下線のサイズ（横幅、高さ） */
    -webkit-transition: background-size 0.3s;
    transition: background-size 0.3s;
  }
  .header__nav-link:hover {
    color: #1391E6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-position: bottom; /* 下線のホバー時位置 */
    background-size: 20px 2px; /* 下線の横幅を100%にする */
  }
  .header__nav-link.current {
    color: #1391E6;
    background-position: bottom;
    background-size: 20px 2px; /* 下線の横幅を100%にする */
  }
}

@media screen and (min-width: 1280px) {
  .header__nav-icon {
    display: block;
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 1280px) {
  .header__nav-text {
    display: block;
    margin-top: 6px;
    font-family: "M PLUS Rounded 1c", serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px; /* 163.636% */
  }
}

@media screen and (min-width: 1280px) {
  .header__contact {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1280px) {
  .header__address {
    color: #393939;
    text-align: right;
    font-size: 12px;
    font-family: "M PLUS Rounded 1c", serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
}

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

@media screen and (min-width: 1280px) {
  .header__phone-icon {
    width: 28px;
    height: 28px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 1280px) {
  .header__phone-number {
    color: #1391E6;
    text-align: center;
    font-family: "M PLUS Rounded 1c", serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 112.5% */
    letter-spacing: -0.64px;
  }
}

.header__logo-icon {
  display: block;
  width: 34px;
  height: 32px;
}

.header__logo-text {
  display: block;
  width: 225px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 11px;
}
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 51;
  padding-top: 36px;
  background: #0060A0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow-y: auto;
  overflow-x: auto;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer-content__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 254px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .drawer-content__nav {
    width: 300px;
    margin-top: 50px;
  }
}

.drawer-content__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 15px;
  margin-bottom: 15px;
}

.drawer-content__link-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 14px;
  color: #ffffff;
}

.drawer-content__link-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
}

.drawer-content__link-icon-right {
  display: block;
  width: 14px;
  height: 14px;
  margin: 4px 0 0 auto;
}

.drawer-icon {
  width: 30px;
  height: 30px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 14px;
  background: #ffffff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  visibility: hidden;
  position: absolute;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 14px;
  background: #ffffff;
}

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

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

.fv__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 1280px) {
  .fv__inner {
    padding-right: 60px;
    padding-left: 60px;
  }
}

.fv__img {
  position: relative;
  width: 100%;
  height: 188px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .fv__img {
    height: 340px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .fv__img {
    width: 1160px;
    height: 340px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 100%;
  }
}
.fv__img::before {
  content: "";
  display: block;
  background: url(../img/medical-img/fv-img-sp.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 188px;
  position: absolute;
}
@media screen and (min-width: 1280px) {
  .fv__img::before {
    height: 340px;
    background: url(../img/medical-img/fv-img-pc.png) center/cover no-repeat;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .fv__img::before {
    width: 1160px;
    height: 340px;
    width: 100%;
    background: url(../img/medical-img/fv-img-sp.png) center/cover no-repeat;
  }
}
.fv__img::after {
  content: "";
  display: block;
  background: #000;
  opacity: 0.2;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.fv__img-wrap {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  margin-top: 60px;
}
@media screen and (min-width: 1280px) {
  .fv__img-wrap {
    gap: 14px;
    margin-top: 128px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .fv__img-wrap {
    gap: 14px;
    margin-top: 128px;
  }
}

.fv__img-title {
  z-index: 2;
}

.fv__img-title-text {
  color: #FFF;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.8px;
}
@media screen and (min-width: 1280px) {
  .fv__img-title-text {
    font-size: 32px;
    letter-spacing: 2.8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .fv__img-title-text {
    font-size: 32px;
    letter-spacing: 2.8px;
  }
}

.fv__img-title-english {
  z-index: 2;
}

.fv__img-title-english-text {
  color: #FFF;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1280px) {
  .fv__img-title-english-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .fv__img-title-english-text {
    font-size: 14px;
  }
}

.breadcrumb {
  display: block;
  color: #393939;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 9px;
}
@media screen and (min-width: 1280px) {
  .breadcrumb {
    margin-top: 13px;
  }
}

.home-name {
  color: #C2C2C2;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-right: 8px;
}
@media screen and (min-width: 1280px) {
  .home-name {
    margin-left: 30px;
  }
}

.current-item {
  color: #393939;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 8px;
}

.web-reservation {
  position: fixed;
  top: 28%;
  right: 0;
  width: 92px;
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #1391E6;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
}
.web-reservation:hover {
  background-color: #0060A0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1280px) {
  .web-reservation {
    top: 27%;
  }
}

.web-reservation__link {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.web-reservation__icon {
  margin: 20px 20px 11px 20px;
}
.web-reservation__icon img {
  display: block;
  width: 52px;
  height: 32px;
}

.web-reservation__text {
  color: #ffffff;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 22px;
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 97px;
  width: 52px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}
@media screen and (min-width: 1280px) {
  .pagetop {
    right: -1px;
    bottom: 40px;
    width: 76px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.treatment-list {
  margin-top: 62px;
}
@media screen and (min-width: 1280px) {
  .treatment-list {
    margin-top: 80px;
  }
}
.treatment-list__category {
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 75px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .treatment-list__category {
    padding-left: 62px;
    padding-bottom: 75px;
    padding-right: 0;
    margin: 0;
    max-width: 10000px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-list__category {
    padding-left: 62px;
    padding-bottom: 75px;
    padding-right: 0;
    margin: 0;
    max-width: 10000px;
  }
}

.treatment-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1280px) {
  .treatment-list__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.treatment-list__title {
  color: #393939;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1280px) {
  .treatment-list__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.treatment-list__label {
  color: #FFF;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  margin-left: 22px;
}
@media screen and (min-width: 1280px) {
  .treatment-list__label {
    margin-left: 20px;
  }
}

.treatment-list__label--insurance {
  width: 88px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  background: #1391E6;
  padding: 8px 12px 10px 12px;
}
@media screen and (min-width: 1280px) {
  .treatment-list__label--insurance {
    padding: 7px 11px 5px 11px;
    margin-top: 3px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-list__label--insurance {
    padding: 8px 12px 10px 12px;
  }
}

.treatment-list__label--private {
  width: 57px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  background: #EE5A6D;
  padding: 8px 12px 10px 12px;
}
@media screen and (min-width: 1280px) {
  .treatment-list__label--private {
    padding: 7px 11px 3px 11px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-list__label--private {
    padding: 8px 12px 10px 12px;
  }
}

.treatment-list__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: 16px;
  margin-top: 33px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .treatment-list__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 11px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-list__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
}

.treatment-list__item {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid #1391E6;
  background: #FFF;
  padding-top: 15px;
  padding-bottom: 15px;
}
.treatment-list__item::after {
  content: "";
  width: 0;
  height: 0;
  opacity: 0;
  border-top: 3px solid #1391E6;
  border-right: 3px solid #1391E6;
  -webkit-transform: rotate(135deg) translateY(-50%);
          transform: rotate(135deg) translateY(-50%);
  position: absolute;
  top: 52%;
  right: 50%;
  border-radius: 1px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: absolute;
}
@media screen and (min-width: 1280px) {
  .treatment-list__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    border: 2px solid #1391E6;
    padding-top: 16px;
    padding-right: 31px;
    padding-bottom: 16px;
    padding-left: 31px;
  }
  .treatment-list__item:hover {
    background-color: #DFF1FD;
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #FFF;
  }
  .treatment-list__item:hover .treatment-list__link {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .treatment-list__item:hover::after {
    width: 15px;
    height: 15px;
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-list__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    border: 2px solid #1391E6;
    padding-top: 16px;
    padding-right: 31px;
    padding-bottom: 16px;
    padding-left: 31px;
  }
}

.treatment-list__link {
  display: inline-block;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  color: #1391E6;
}
@media screen and (min-width: 1280px) {
  .treatment-list__link {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-list__link {
    font-size: 24px;
    letter-spacing: 1.92px;
  }
}

.g-treatment,
.s-treatment {
  display: block;
  position: relative;
  padding-top: 81px;
  margin-bottom: 68px;
}
.g-treatment::before,
.s-treatment::before {
  content: "";
  display: block;
  background: url(../img/medical/top-deco-sp.png) no-repeat;
  background-size: 100% 100%;
  height: 34px;
}
@media screen and (min-width: 1280px) {
  .g-treatment::before,
  .s-treatment::before {
    background: url(../img/medical/top-deco.png) no-repeat;
    height: 106px;
    background-size: 100% 100%;
  }
}
.g-treatment::after,
.s-treatment::after {
  content: "";
  display: block;
  background: url(../img/medical/bottom-deco-sp.png) no-repeat;
  background-size: 100% 100%;
  height: 34px;
}
@media screen and (min-width: 1280px) {
  .g-treatment::after,
  .s-treatment::after {
    background: url(../img/medical/bottom-deco.png) no-repeat;
    height: 96px;
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 1280px) {
  .g-treatment,
  .s-treatment {
    padding-top: 180px;
  }
}

.medical__bg-img-nose {
  width: 44px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: calc(50% - 23px);
  top: 34px;
}
.medical__bg-img-nose img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .medical__bg-img-nose {
    width: 100px;
    height: 90px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    left: calc(50% - 47px);
    top: 87px;
  }
}

.medical__bg-img-bluestars {
  width: 50px;
  height: 55px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: calc(50% - 181px);
  top: 32px;
}
.medical__bg-img-bluestars img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .medical__bg-img-bluestars {
    width: 126px;
    height: 138px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    left: calc(50% - 618px);
    top: 94px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .medical__bg-img-bluestars {
    top: 14px;
  }
}

.medical__bg-img-bluestar {
  width: 25px;
  height: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: calc(50% + 151px);
  top: 61px;
}
.medical__bg-img-bluestar img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .medical__bg-img-bluestar {
    width: 58px;
    height: 58px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    left: calc(50% + 544px);
    top: 147px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .medical__bg-img-bluestar {
    top: 43px;
  }
}

.medical__bg-img-whitestar {
  width: 24px;
  height: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: calc(50% - 177px);
  bottom: 32px;
}
.medical__bg-img-whitestar img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .medical__bg-img-whitestar {
    width: 57px;
    height: 56px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    left: calc(50% - 601px);
    bottom: 95px;
  }
}

.medical__bg-img-whitestars {
  width: 56px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  left: calc(50% + 123px);
  bottom: 13px;
}
.medical__bg-img-whitestars img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .medical__bg-img-whitestars {
    width: 125.307px;
    height: 138px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    left: calc(50% + 494px);
    bottom: 74px;
  }
}

.g-treatment__inner {
  background: #DFF1FD;
  padding-bottom: 62px;
}
@media screen and (min-width: 1280px) {
  .g-treatment__inner {
    height: auto;
    margin: 0 auto;
    padding-bottom: 87px;
  }
}
.g-treatment__heading {
  padding-top: 27px;
}
@media screen and (min-width: 1280px) {
  .g-treatment__heading {
    padding-top: 0;
    margin-bottom: 57px;
  }
}

.treatment__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: 41px;
}
@media screen and (min-width: 1280px) {
  .treatment__cards {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .scroll-target {
    scroll-margin-top: 82px;
  }
}

.treatment-card {
  margin-right: 20px;
  margin-left: 20px;
  border-radius: 20px;
  background: #FFF;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .treatment-card {
    width: 1000px;
    margin-right: 0;
    margin-left: 0;
  }
}
.treatment-card__inner {
  padding: 20px;
}
@media screen and (min-width: 1280px) {
  .treatment-card__inner {
    padding: 60px;
  }
}

@media screen and (min-width: 1280px) {
  .treatment-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #C2C2C2;
    margin-top: -9px;
    padding-bottom: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-card__header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.treatment-card__title {
  color: #393939;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1280px) {
  .treatment-card__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-card__title {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.treatment-card__label {
  color: #FFF;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}

.treatment-card__label--insurance {
  color: #393939;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 20px;
  margin: 0;
  padding: 16px 9px 25px 9px;
  z-index: 2;
  text-align: center;
  color: white;
  background: #1391E6;
  border-radius: 2px 0 0 0;
  width: 80px;
  height: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1280px) {
  .treatment-card__label--insurance {
    font-size: 16px;
    letter-spacing: 1.28px;
    right: 60px;
    width: 100px;
    height: 61px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 24px 9px 25px 9px;
  }
}
.treatment-card__label--insurance:before {
  position: absolute;
  content: "";
  top: 0;
  right: -6px;
  border: none;
  border-right: solid 6px transparent;
}
.treatment-card__label--insurance:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 40px solid #1391E6;
  border-right: 40px solid #1391E6;
  border-bottom: 12px solid transparent;
}
@media screen and (min-width: 1280px) {
  .treatment-card__label--insurance:after {
    border-left: 50px solid #1391E6;
    border-right: 50px solid #1391E6;
    border-bottom: 16px solid transparent;
  }
}

.treatment-card__subtitle {
  display: block;
  color: #1391E6;
  font-family: "M PLUS Rounded 1c", serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #C2C2C2;
}
@media screen and (min-width: 1280px) {
  .treatment-card__subtitle {
    border-bottom: none;
  }
}

@media screen and (min-width: 1280px) {
  .treatment__card-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    margin-top: 36px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment__card-contents {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    margin-top: 36px;
  }
}

.treatment-card__content {
  margin-top: 16px;
}
@media screen and (min-width: 1280px) {
  .treatment-card__content {
    width: 420px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-card__content {
    width: 42%;
  }
}

.treatment-card__text {
  color: #393939;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}
.treatment-card__image-wrapper {
  margin-top: 16px;
}
@media screen and (min-width: 1280px) {
  .treatment-card__image-wrapper {
    display: block;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .treatment-card__image-wrapper {
    width: 42%;
  }
}

.treatment-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  aspect-ratio: 295/221;
}
@media screen and (min-width: 1280px) {
  .treatment-card__image {
    width: 420px;
    height: 315px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 20px;
    aspect-ratio: none;
  }
}

.s-treatment__inner {
  padding-top: 28px;
  padding-bottom: 62px;
  background: #DFF1FD;
}
@media screen and (min-width: 1280px) {
  .s-treatment__inner {
    padding-top: 3px;
    padding-bottom: 82px;
  }
}

.s-treatment-heading {
  margin-bottom: 41px;
}
@media screen and (min-width: 1280px) {
  .s-treatment-heading {
    margin-bottom: 60px;
  }
}

.treatment-card__label--private {
  color: #393939;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 20px;
  margin: 0;
  padding: 16px 9px 25px 9px;
  z-index: 2;
  text-align: center;
  color: white;
  background: #EE5A6D;
  border-radius: 2px 0 0 0;
  width: 80px;
  height: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1280px) {
  .treatment-card__label--private {
    font-size: 16px;
    letter-spacing: 1.28px;
    right: 60px;
    width: 100px;
    height: 61px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 24px 9px 25px 9px;
  }
}
.treatment-card__label--private:before {
  position: absolute;
  content: "";
  top: 0;
  right: -6px;
  border: none;
  border-right: solid 6px transparent;
}
.treatment-card__label--private:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 40px solid #EE5A6D;
  border-right: 40px solid #EE5A6D;
  border-bottom: 12px solid transparent;
}
@media screen and (min-width: 1280px) {
  .treatment-card__label--private:after {
    border-left: 50px solid #EE5A6D;
    border-right: 50px solid #EE5A6D;
    border-bottom: 16px solid transparent;
  }
}

.footer {
  display: block;
  padding-top: 29px;
}
.footer:before {
  content: "";
  display: block;
  background: url(../img/footer/footer-deco.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 34px;
}
@media screen and (min-width: 1280px) {
  .footer {
    padding-top: 95px;
  }
}

.footer__inner {
  background-color: #DFF1FD;
  padding-top: 13px;
}
@media screen and (min-width: 1280px) {
  .footer__inner {
    padding-top: 56px;
  }
}

.footer__wrapper {
  background: #FFF;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  border-radius: 8px;
}
@media screen and (min-width: 1280px) {
  .footer__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 1000px;
    margin: 0 auto;
    padding: 37px 50px;
    border-radius: 20px;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .footer__wrapper {
    margin-left: clamp(10px, 5vw, 80px);
    margin-right: clamp(10px, 5vw, 80px);
  }
}

.footer__contents-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 11px;
  height: 33px;
  gap: 13px;
}
@media screen and (min-width: 1280px) {
  .footer__contents-logo {
    height: 41px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.footer__contents-logo-text {
  display: block;
  width: 257px;
  height: 30px;
}
@media screen and (min-width: 1280px) {
  .footer__contents-logo-text {
    width: 337px;
    height: 37px;
  }
}

.footer__contents-address {
  color: #393939;
  text-align: right;
  font-size: 14px;
  font-family: "M PLUS Rounded 1c", serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 21px;
}

.footer__phone {
  margin-bottom: -2px;
}

.header__phone-number {
  color: #1391E6;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 112.5% */
  letter-spacing: -0.64px;
}

.footer-contents-opentime {
  margin-bottom: 16px;
}

.footer-contents-opentime-text {
  color: #1391E6;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.footer__contents-buttons {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-bottom: 22px;
}
@media screen and (min-width: 1280px) {
  .footer__contents-buttons {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .footer__contents-buttons {
    gap: 20px;
  }
}

.footer__contents-reserve-button {
  position: relative;
  background-color: #1391E6;
  border-radius: 30px;
  color: #FFF;
  display: inline-block;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 30px 9px 63px;
}
.footer__contents-reserve-button:hover {
  background-color: #0060A0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1280px) {
  .footer__contents-reserve-button {
    font-size: 16px;
    font-weight: 500;
    padding: 16px 59px 16px 95px;
  }
}
.footer__contents-reserve-button::before {
  background: url(../img/footer/icon-pc.svg) no-repeat center center;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 30px;
  left: 28px;
  margin: auto;
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .footer__contents-reserve-button::before {
    left: 60px;
    top: 20px;
  }
}

.footer__contents-mail-button {
  position: relative;
  border: solid 1px #1391E6;
  border-radius: 30px;
  color: #1391E6;
  display: inline-block;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 9px 21px 8px 47px;
}
.footer__contents-mail-button:hover {
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 1280px) {
  .footer__contents-mail-button {
    font-size: 16px;
    padding: 16px 46px 16px 78px;
  }
}
.footer__contents-mail-button::before {
  background: url(../img/footer/mail-icon.svg) no-repeat center center;
  background-size: 100% 100%;
  background-color: #FFF;
  content: "";
  display: block;
  height: 17px;
  position: absolute;
  width: 17px;
  left: 21px;
  margin: auto;
  top: 11px;
}
@media screen and (min-width: 1280px) {
  .footer__contents-mail-button::before {
    height: 24px;
    width: 24px;
    left: 47px;
    top: 15px;
  }
}

.footer__contents-schedule {
  margin-left: 10px;
  margin-right: 10px;
}
.footer__contents-schedule img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .footer__contents-schedule {
    margin: 0;
  }
}

.footer__map {
  height: auto;
  padding: 16px 20px 13px 20px;
}
@media screen and (min-width: 1280px) {
  .footer__map {
    width: 385px;
    height: 385px;
    margin-top: 17px;
    padding: 0;
  }
}

.footer__map-share {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 483px;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .footer__map-share {
    width: 385px;
    height: 385px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .footer__map-share {
    max-width: 483px;
    height: auto;
  }
}

.navigation {
  padding-left: 20px;
  margin-top: 63px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1280px) {
  .navigation {
    margin-top: 42px;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .navigation {
    margin-left: clamp(10px, 5vw, 80px);
  }
}

.navigation__list {
  color: #393939;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 1280px) {
  .navigation__list {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}

.navigation__item {
  margin-top: 39px;
}
@media screen and (min-width: 1280px) {
  .navigation__item {
    margin-top: 0;
  }
}

.navigation__title {
  color: #393939;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.title-top:hover {
  color: #1391E6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigation__sub-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: 18px;
  margin-top: 18px;
}

.navigation__sub-item {
  position: relative;
  margin-left: 12px;
}
.navigation__sub-item::before {
  content: "";
  background-image: url(../img/footer/list-icon.png);
  position: absolute;
  width: 6px;
  height: 12px;
  top: 6px;
  left: -12px; /*左端からのアイコンまで*/
  color: #0060A0; /*アイコン色*/
}

.navigation__sub-link {
  color: #393939;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.navigation__sub-link:hover {
  color: #1391E6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigation__sub-list--grid {
  display: grid; /* 子要素をグリッドレイアウトにする */
  grid-template-columns: 78px 133px; /* 2列固定 */
  grid-template-rows: repeat(4, 24px); /* 4行固定 */
  padding: 0; /* パディングをリセット */
  margin-top: 18px;
}
@media screen and (min-width: 1280px) {
  .navigation__sub-list--grid {
    grid-template-columns: 76px 124px; /* 2列固定 */
  }
}

.copyright {
  height: 112px;
  background: #1391E6;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 73px;
}
@media screen and (min-width: 1280px) {
  .copyright {
    height: 55px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.copyright-text {
  color: #FFF;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer__bar {
  position: relative;
  padding-top: 6px;
  padding-bottom: 6px;
  height: 65px;
  position: fixed;
  bottom: 0;
  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);
  width: 100%;
  z-index: 1000;
}

.footer__bar-wrap {
  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__bar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-top: 1px;
}

.footer__bar-phone {
  color: #1391E6;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer__bar-phone-icon {
  width: 17px;
  height: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__bar-phone-number {
  color: #1391E6;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer__bar-opentime {
  position: relative;
  top: -6px;
}

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

.footer__bar-reserve-button {
  position: relative;
  background-color: #1391E6;
  border-radius: 8px;
  color: #FFF;
  display: inline-block;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  padding: 5px 21px 0px 70px;
  margin-left: 12px;
}
.footer__bar-reserve-button::before {
  background: url(../img/footer/icon-pc.svg) no-repeat center center;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 28px;
  position: absolute;
  width: 46px;
  left: 15px;
  top: 10px;
  margin: auto;
  z-index: 1;
}
.footer__bar-reserve-button--main {
  font-size: 16px;
  display: block;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer__bar-reserve-button--sub {
  font-size: 12px;
  display: block;
  position: relative;
  font-weight: 700;
  top: -7px;
  letter-spacing: 1px;
}

.footer__bar-br-text {
  color: #FFF;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}