@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  color: #393939;
  background: #ffffff;
}
body.is-fixed {
  overflow: hidden;
}

.button {
  color: #1391e6;
  background: #ffffff;
  line-height: 1.5;
  border-radius: 24px;
  border: 1px solid #1391e6;
  padding-block: 10px;
  padding-inline: 45px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover {
  color: #ffffff;
  background: #1391e6;
}
.button:hover .button__arrow {
  right: 8px;
}
.button:hover .button__arrow path {
  stroke: #ffffff;
}

.button__text {
  font-weight: 500;
}

.button__arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 11px;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
@media screen and (min-width: 900px) {
  .button__arrow {
    width: 14px;
    height: 14px;
  }
}
.button__arrow svg {
  display: block;
}

.heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5; /* 30px */
  letter-spacing: 1.6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 360px) {
  .heading {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .heading {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}
.heading::before, .heading::after {
  content: "";
  position: absolute;
  width: 49px;
  height: 14.6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/recommend-title-deco.png") no-repeat center/contain;
}
@media screen and (min-width: 900px) {
  .heading::before, .heading::after {
    width: 67px;
    height: 20px;
  }
}
.heading::before {
  left: -63px;
}
@media screen and (min-width: 900px) {
  .heading::before {
    left: -94px;
  }
}
.heading::after {
  right: -63px;
}
@media screen and (min-width: 900px) {
  .heading::after {
    right: -94px;
  }
}

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

.title {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5; /* 21px */
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #1391e6;
}
@media screen and (min-width: 900px) {
  .title {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.subtitle {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 900px) {
  .subtitle {
    font-size: 28px;
    letter-spacing: 2.24px;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
}

.red {
  color: #ee5a6d;
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (min-width: 1200px) {
  .link:hover, .link.is-active {
    color: #1391e6;
  }
  .link:hover .header-link-icon path, .link.is-active .header-link-icon path {
    fill: #1391e6;
  }
  .link.is-current {
    color: #1391e6;
  }
  .link.is-current::before {
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
  .link.is-current .header-link-icon path {
    fill: #1391e6;
  }
}

.link-underline {
  color: #1391e6;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

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

.header {
  height: 60px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: #ffffff;
}
.header.is-checked {
  background: #0060a0;
}
@media screen and (min-width: 1200px) {
  .header {
    height: 80px;
  }
}

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

.header-logo {
  width: 270px;
  margin: 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-logo svg {
  width: 270px;
  height: 32px;
}
@media screen and (max-width: 360px) {
  .header-logo svg {
    width: 250px;
  }
}
.header-logo.is-checked path[fill="#1391E6"] {
  fill: #ffffff;
}
.header-logo.is-checked {
  /* 白 → 青 */
}
.header-logo.is-checked path[fill=white] {
  fill: #0060a0;
}

.header-logo-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-logo-link:hover svg {
  opacity: 0.8;
}

.header__nav {
  top: 60px;
  right: 0;
  color: #ffffff;
  background: #0060a0;
  padding-inline: 60px;
  position: fixed;
  width: 100%;
  height: calc(100% - 60px);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 500;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 1200px) {
  .header__nav {
    background: #ffffff;
    color: #393939;
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: auto;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 34px;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 255px;
  padding-top: 110px;
}
@media screen and (min-width: 1200px) {
  .header__lists {
    padding-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    width: auto;
  }
}

.header__list {
  border-bottom: 1px dashed #ffffff;
}
.header__list:nth-of-type(1) {
  border-top: 1px dashed #ffffff;
}

.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  padding-block: 14.5px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .header__nav-link {
    -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: 7px;
  }
  .header__nav-link::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    bottom: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(0);
            transform: translateX(-50%) scaleX(0);
    -webkit-transform-origin: center;
            transform-origin: center;
    background: #1391e6;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header__nav-link:hover::before {
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
}
.header__nav-link::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1px;
  background: url("../img/header__nav-arrow.png") no-repeat center/contain;
}
@media screen and (min-width: 1200px) {
  .header__nav-link::after {
    display: none;
  }
}

.header-link-icon {
  width: 24px;
  height: 24px;
}
.header-link-icon path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .header-link-icon path {
    fill: #393939;
  }
}

.header-link-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .header-link-text {
    font-size: 11px;
    font-weight: 700;
  }
}

.drawer-icon {
  position: relative;
  width: 27px;
  height: 17px;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #ffffff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 27px;
  height: 2px;
  background: #1391e6;
  border-radius: 10px;
  -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-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__info {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__info {
    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: right;
  }
}

.clinic__address {
  font-size: 12px;
  line-height: 1.5;
}

.clinic__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}

.clinic__tel-icon {
  width: 29px;
  height: 29px;
}
.clinic__tel-icon path {
  fill: #1391e6;
}

.clinic__tel-number {
  color: #1391e6;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3; /* 41.6px */
  letter-spacing: -0.64px;
}

.breadcrumb {
  padding-top: 9px;
  color: #8d8d8d;
  margin-bottom: 14px;
}
.breadcrumb span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.breadcrumb a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.breadcrumb a:hover {
  opacity: 0.6;
}
.breadcrumb i {
  margin-left: 5px;
  margin-right: 5px;
}

.breadcrumb__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .breadcrumb__inner {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}

.current-item {
  color: #393939;
}

.breadcrumb__home {
  color: #888888;
  font-weight: 500;
  line-height: 1.5;
}

.breadcrumb__current-name {
  color: #393939;
  font-weight: 500;
  line-height: 1.5;
}

.breadcrumb span[property=itemListElement] + span[property=itemListElement]::before {
  content: ">";
  margin: 0 10px;
  color: #393939;
}

.page-heading {
  padding-top: 20px;
}
@media screen and (min-width: 900px) {
  .page-heading {
    padding-top: 40px;
  }
}

.page-heading__inner {
  position: relative;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .page-heading__inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-heading__image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.page-heading__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.page-heading__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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: 14px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-heading__content {
    gap: 17px;
  }
}

.page-heading__ja {
  font-size: 24px;
  letter-spacing: 4.8px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .page-heading__ja {
    font-size: 32px;
    letter-spacing: 3.2px;
  }
}

.page-heading__en {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-heading__en {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.footer {
  padding-top: 14px;
  padding-bottom: 59px;
  background: #dff1fd;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
  padding-inline: 10px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    max-width: 1020px;
    margin-left: auto;
    margin-right: auto;
    gap: 44px;
  }
}

.footer__content {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
  padding: 32px 10px 20px;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .footer__content {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 40px;
    padding-bottom: 32px;
    padding-inline: 49px;
    border-radius: 20px;
  }
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__body {
    gap: 19px;
  }
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo-link svg {
  width: 309px;
  height: 37px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 360px) {
  .footer__logo-link svg {
    width: 280px;
  }
}
@media screen and (min-width: 900px) {
  .footer__logo-link svg {
    width: 405px;
    height: 48px;
  }
}
.footer__logo-link:hover svg {
  opacity: 0.8;
}

.footer__address {
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}

.address__code {
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 900px) {
  .address__code {
    line-height: 1.5;
  }
}

.address__text {
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 900px) {
  .address__text {
    line-height: 1.5;
  }
}

.footer__info {
  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;
}
.footer__info--reserve .clinic__tel-number {
  font-size: 20px;
  letter-spacing: normal;
}
.footer__info--reserve .clinic__tel-icon {
  width: 18px;
  height: 18px;
}
.footer__info--reserve .clinic__time {
  font-size: 10px;
  line-height: 1.5;
  color: #393939;
}
@media screen and (min-width: 900px) {
  .footer__info--reserve {
    display: none;
  }
}

.clinic__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.clinic__time {
  color: #1391e6;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.clinic__time-reservation {
  color: #1391e6;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.footer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 900px) {
  .footer__buttons {
    gap: 20px;
  }
}

.footer--button {
  padding: 8px 5px;
  width: 150px;
  border-radius: 30px;
  background: #1391e6;
  color: #ffffff;
  border: 1px solid #1391e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 360px) {
  .footer--button {
    width: 130px;
  }
}
@media screen and (min-width: 900px) {
  .footer--button {
    width: 220px;
    padding: 15px 10px;
  }
}
.footer--button:hover {
  background: #0060a0;
  border: 1px solid #0060a0;
}

.footer--button--contact {
  background: #ffffff;
  color: #1391e6;
}
.footer--button--contact:hover {
  background: #1391e6;
  color: #ffffff;
  border: 1px solid #1391e6;
}
.footer--button--contact:hover .contact__button-icon path {
  stroke: #ffffff;
}

.footer__button-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .footer__button-text {
    font-size: 16px;
  }
}

.reserve__button-icon svg {
  display: block;
  width: 17px;
  height: 12px;
}
@media screen and (min-width: 900px) {
  .reserve__button-icon svg {
    width: 21px;
    height: 15px;
  }
}

.contact__button-icon svg {
  display: block;
  width: 17px;
  height: 17px;
}
.contact__button-icon svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 900px) {
  .contact__button-icon svg {
    width: 24px;
    height: 24px;
  }
}

.footer__medical-time {
  position: absolute;
  top: 222px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 350px;
  height: 100%;
}
@media screen and (max-width: 370px) {
  .footer__medical-time {
    width: 300px;
  }
}
@media screen and (min-width: 900px) {
  .footer__medical-time {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: auto;
    height: auto;
  }
}
.footer__medical-time img {
  width: 347px;
  height: 125px;
}
@media screen and (min-width: 900px) {
  .footer__medical-time img {
    width: 482px;
    height: 174px;
  }
}

.footer__image {
  margin-top: 140px;
  padding-inline: 10px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__image {
    margin: 0;
    padding-inline: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 385px;
  }
}
.footer__image iframe {
  width: 100%;
  max-width: 385px;
  aspect-ratio: 1/1;
  display: block;
  margin: 0 auto;
}

.footer__nav {
  padding-inline: 10px;
}

.footer__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: 40px;
}
@media screen and (min-width: 900px) {
  .footer__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__item-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.footer__item-title-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.footer__item-title-link:hover {
  opacity: 0.8;
}

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

.footer__link-list {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__link-list::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 12px;
  background: url("../img/footer-link-arrow.png") no-repeat center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__link-list:hover {
  opacity: 0.8;
}

.footer__link-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.copyright {
  padding: 13px 70px;
  color: #ffffff;
  background: #1391e6;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 900px) {
  .copyright {
    padding-block: 17px;
    margin-bottom: 0;
  }
}

.footer__reserve {
  padding-top: 7px;
  padding-bottom: 6px;
  border-top: 1px solid #1391e6;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  z-index: 600;
}
@media screen and (min-width: 900px) {
  .footer__reserve {
    padding-block: 0;
  }
}

.footer__reserve-inner {
  padding-inline: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 900px) {
  .footer__reserve__button {
    position: fixed;
    right: 0;
    top: 170px;
    z-index: 100;
  }
}

.footer__reserve--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1391e6;
  border-radius: 8px;
  padding-top: 6px;
  padding-bottom: 5px;
  padding-inline: 17px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 900px) {
  .footer__reserve--button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px 0 0 20px;
    gap: 5px;
    padding: 20px 17px;
  }
}
.footer__reserve--button:hover {
  background: #0060a0;
}

.footer__reserve--button-icon svg {
  width: 46px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .footer__reserve--button-icon svg {
    width: 52px;
    height: 32px;
  }
}

.footer__reserve--button-texts {
  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: 2px;
}
@media screen and (min-width: 900px) {
  .footer__reserve--button-texts {
    gap: 0;
  }
}

.footer__reserve--button-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .footer__reserve--button-text {
    font-size: 14px;
    line-height: 1.3;
  }
}
.footer__reserve--button-text-small {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
@media screen and (min-width: 900px) {
  .footer__reserve--button-text-small {
    font-size: 14px;
    line-height: 1.3;
  }
}

.pagetop {
  display: none;
}
@media screen and (min-width: 900px) {
  .pagetop {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 41px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid #1391e6;
    background: #ffffff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
  .pagetop::after {
    position: absolute;
    content: "";
    width: 52px;
    height: 52px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url("../img/button-to-top.png") no-repeat center/contain;
  }
}