@charset "UTF-8";

/* Base */
:root {
  --ink: #24313a;
  --muted: #667580;
  --line: #dce6e7;
  --paper: #fff;
  --soft: #f2f2f2;
  --mint: #76b9a7;
  --teal: #286d70;
  --coral: #e87866;
  --shadow: 0 18px 45px rgba(35, 49, 58, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  background: #fff;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: var(--ink);
}

.page-shell {
  width: min(950px, 100%);
  margin: 0 auto;
  padding: 0 10px;
}

.lp-main {
  padding-top: 76px;
  overflow: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  width: min(950px, 100%);
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 230, 231, 0.9);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  max-width: 150px;
}

.site-logo img {
  display: block;
  width: 100%;
  min-width: 120px;
  padding: 0 10px 0 0;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.site-nav__access {
  border-color: #323232 !important;
  background: #323232 !important;
}

.site-nav__reserve {
  color: #fff;
  border-color: #3EB354 !important;
  background: #3EB354 !important;
}

.site-nav img {
  display: block;
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
}

/* Image Sections */
.image-section {
  background: var(--paper);
}

.image-section .page-shell {
  padding: 0;
}

.image-section .page-shell_price-btn {
  position: absolute;
  bottom: 12px;
  padding: 0 40px 0;
}

.image-frame {
  display: block;
  width: 100%;
  /* background-color: #f4f7f6; */
}

.image-frame--link {
  cursor: pointer;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Page Links */
.page-links {
  padding: 24px 0;
}

.page-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.page-links__item,
.page-links__item picture,
.page-links__item img {
  display: block;
  width: 100%;
}

.page-links__item {
  position: relative;
  overflow: hidden;
}

.page-links__item::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(36, 49, 58, 0.58);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  content: attr(aria-label);
}

.page-links__item:nth-child(1) {
  background: #f8dcd7;
}

.page-links__item:nth-child(2) {
  background: #dcefeb;
}

.page-links__item:nth-child(3) {
  background: #f4ead0;
}

.page-links__item:nth-child(4) {
  background: #e5e1f4;
}

.page-links__item picture {
  position: relative;
  z-index: 1;
}

.page-links__item img {
  height: auto;
}

/* CTA */
.page-shell_cta {
  position: relative;
}

.page-shell_cta .clinic-accordion__cta {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 1%;
  padding: 0 16px;
  margin: 0 auto;
}

#Strengths .clinic-accordion__cta {
  bottom: 20px;
}

.p-idx-cta__btn {
  display: block;
  width: min(807px, 100%);
  margin: 28px auto 0;
}

.p-idx-cta__btn picture,
.p-idx-cta__btn img {
  display: block;
  width: 100%;
  height: auto;
}

.flowing {
  animation: ctaBounce 1.6s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes ctaBounce {
  0%,
  42%,
  100% {
    transform: translateY(0) scale(1);
  }

  54% {
    transform: translateY(-13px) scale(1.018);
  }

  66% {
    transform: translateY(0) scale(0.99);
  }

  78% {
    transform: translateY(-6px) scale(1.01);
  }

  88% {
    transform: translateY(0) scale(1);
  }
}

.cta-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 32px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  border-radius: 6px;
  background: linear-gradient(180deg, #f08a76, #d95f4c);
  box-shadow: 0 12px 24px rgba(217, 95, 76, 0.28);
}

.cta-button--wide {
  display: flex;
  width: min(620px, 100%);
  margin: 30px auto 0;
}

/* BA Slider */
.p-idx-ba {
  max-width: 950px;
  max-height: 1520px;
  margin: 0 auto;
  padding: 0 0 18%;
  background-image: url(../images/bg-ba-slide.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-idx-ba .page-shell {
  padding: 60px 24px;
}

.slide {
  padding: 0 20px;
}

.ba-section-image {
  width: 100%;
  min-height: 120px;
}

.ba-section-image img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0 8px;
}

.ba-tab {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.ba-tab__image {
  display: block;
  width: 100%;
  height: auto;
}

.ba-tab__image--on {
  display: none;
}

.ba-tab.is-active .ba-tab__image--off {
  display: none;
}

.ba-tab.is-active .ba-tab__image--on {
  display: block;
}

.ba-slider-panel[hidden] {
  display: none;
}

.ba-slider {
  position: relative;
  width: 100%;
  margin-bottom: 46px;
}

.ba-slider__item img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 60px;
  height: 60px;
  padding: 0;
  font-size: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.72);
  transform: translateY(-50%);
}

.ba-slider .slick-prev {
  left: -40px;
}

.ba-slider .slick-next {
  right: -40px;
}

.ba-slider .slick-arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.ba-slider .slick-prev::after {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.ba-slider .slick-next::after {
  transform: translate(-65%, -50%) rotate(45deg);
}

.ba-slider .slick-dots {
  position: absolute;
  right: 0;
  bottom: -32px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ba-slider .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  font-size: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}

.ba-slider .slick-dots .slick-active button {
  background: var(--coral);
}

/* Section Heading */
.section-band {
  padding: 72px 0;
  background: var(--paper);
}

.section-band--light {
  background: var(--soft);
}

.section-band--accent {
  background: #4e4e4e;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 32px;
  text-align: center;
}

.section-title-image {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading:has(.section-title-image) .section-kicker,
.section-heading:has(.section-title-image) .section-title,
.section-heading.has-title-image .section-kicker,
.section-heading.has-title-image .section-title {
  display: none;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  position: relative;
  padding: 20px 58px 20px 24px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 14px;
  height: 14px;
  content: "";
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-65%) rotate(45deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-list p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-answer p {
  padding: 0;
}

.faq-answer p + p,
.faq-answer ul + p {
  margin-top: 10px;
}

.faq-answer ul {
  margin-top: 8px;
  padding-left: 1.2em;
  list-style: disc;
}

.faq-answer a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Overview */
.overview-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.overview-table div {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid var(--line);
}

.overview-table div:last-child {
  border-bottom: 0;
}

.overview-table dt,
.overview-table dd {
  padding: 18px 22px;
}

.overview-table dt {
  font-weight: 800;
  background: #c5c5c5;
}

.overview-table dd {
  color: var(--muted);
}

/* Doctors */
.doctors .section-title {
  color: #fff !important;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.doctor-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(36, 49, 58, 0.08);
}

.doctor-card--main {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0 28px;
  align-items: center;
  grid-column: 1 / -1;
  padding: 34px 42px 30px;
}

.doctor-card__photo,
.doctor-card__main-photo {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.doctor-card__photo img,
.doctor-card__main-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card__main-photo {
  align-self: end;
}

.doctor-card__main-body {
  align-self: center;
}

.doctor-card__supervise {
  margin-bottom: 12px;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.doctor-card--main h3 {
  margin: 0;
  color: #303030;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.doctor-card--main h3 span {
  margin-left: 8px;
  font-size: 20px;
}

.doctor-card__profile {
  grid-column: 1 / -1;
  margin-top: 14px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.doctor-card__caption {
  padding: 12px 10px 16px;
  text-align: center;
  background: #fff;
}

.doctor-card__caption p {
  margin: 0 0 2px;
  color: #303030;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.doctor-card__caption h3 {
  margin: 0;
  color: #505050;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

/* Clinics */
.clinics {
  background: transparent;
}

.clinic-accordion {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.clinic-accordion__item {
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 10px 28px rgba(36, 49, 58, 0.08);
}

.clinic-accordion__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 62px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  background: #050505;
  cursor: pointer;
  list-style: none;
}

.clinic-accordion__summary::-webkit-details-marker {
  display: none;
}

.clinic-accordion__summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 16px;
  height: 16px;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(45deg);
}

.clinic-accordion__item[open] .clinic-accordion__summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.clinic-accordion__name {
  padding-left: 0;
}

.clinic-accordion__body {
  padding: 0 44px 38px;
}

.clinic-accordion__photo,
.clinic-accordion__map,
.clinic-accordion__cta picture,
.clinic-accordion__cta img {
  display: block;
  width: 100%;
}

.clinic-accordion__photo,
.clinic-accordion__cta img {
  height: auto;
}

.clinic-accordion__photo {
  margin-bottom: 30px;
}

.clinic-accordion__map {
  height: 320px;
  margin-bottom: 24px;
  border: 0;
}

.clinic-accordion__cta {
  display: block;
  background: transparent;
}

.clinic-accordion__cta picture {
  background: transparent;
}

.clinic-info {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.75;
}

.clinic-info div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
}

.clinic-info dt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  font-weight: 900;
  text-align: center;
  background: #e2e2e2;
}

.clinic-info dd {
  padding: 2px 0;
  font-weight: 700;
}

/* Reserve Form */
.reserve__lead {
  margin: -18px 0 26px;
  color: var(--muted);
  text-align: center;
}

.reserve-form {
  display: grid;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.reserve-form fieldset {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.reserve-form legend {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
}

.reserve-form label {
  font-weight: 800;
}

.field-title {
  display: block;
  margin-top: 4px;
}

.reserve-form label span {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  color: #fff;
  font-size: 12px;
  border-radius: 999px;
  background: var(--coral);
}

.choice-grid,
.field-grid,
.date-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.date-note {
  color: #24313a;
  font-size: 13px;
}

.date-field {
  display: grid;
  gap: 6px;
}

.date-field__label {
  color: #24313a;
  font-size: 13px;
  font-weight: 800;
}

.choice-grid--three,
.field-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.choice-grid label,
.privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  font-weight: 700;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdfd;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.choice-grid label:has(input[type="radio"]:checked) {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(40, 109, 112, 0.22);
}

.choice-grid label:has(input[type="radio"]:focus-visible) {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.field-error {
  margin: -4px 0 -2px;
  color: #ff3838;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.reserve-form input.is-invalid,
.reserve-form select.is-invalid,
.reserve-form textarea.is-invalid {
  border-color: #ff8a8a;
  background: #fffafa;
}

.choice-grid.is-error label {
  border-color: #ffb3b3;
  background: #fffafa;
}

.choice-grid.is-error label:has(input[type="radio"]:checked) {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid var(--mint);
  background: #fff;
}

input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

input[type="checkbox"]:checked {
  background: radial-gradient(circle, var(--teal) 0 42%, #fff 45%);
}

.reserve-form input[type="text"],
.reserve-form input[type="email"],
.reserve-form input[type="tel"],
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdfd;
}

.reserve-form textarea {
  min-height: 140px;
}

.js-datepicker {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.flatpickr-calendar {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(36, 49, 58, 0.18);
}

.flatpickr-calendar.open {
  z-index: 20;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  border-color: var(--teal);
  background: var(--teal);
}

.submit-button {
  width: min(460px, 100%);
  margin: 8px auto 0;
  border: 0;
  cursor: pointer;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 0;
  bottom: 16px;
  left: 0;
  z-index: 25;
  max-width: 860px;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta a {
  display: block;
}

.floating-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.page-top-button {
  position: absolute;
  right: 24px;
  bottom: 100%;
  z-index: 26;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 49, 58, 0.5);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.page-top-button::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 3px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.page-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  padding: 32px 0;
  color: #24313a;
  text-align: center;
}

.site-footer__privacy {
  display: inline-block;
  margin-bottom: 10px;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer small {
  display: block;
}

/* Thanks */
.thanks-page {
  min-height: 100vh;
  background: var(--soft);
}

.thanks-main {
  display: grid;
  min-height: 100vh;
  padding: 32px 18px;
  place-items: center;
}

.thanks-panel {
  width: min(720px, 100%);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}

.thanks-panel p:not(.section-kicker) {
  margin-bottom: 28px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 84px;
  }

  .page-shell {
    padding: 0 10px;
  }

  .p-idx-ba .page-shell {
    padding: 40px 0 0;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .site-nav a {
    min-width: 68px;
    min-height: 38px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .lp-main {
    padding-top: 64px;
  }

  .section-band {
    padding: 54px 0;
  }

  .overview-table div,
  .choice-grid,
  .choice-grid--three,
  .choice-grid--two,
  .field-grid,
  .field-grid--three,
  .date-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card--main {
    grid-template-columns: 34% 1fr;
    gap: 0 16px;
    padding: 24px 22px;
  }

  .doctor-card__supervise {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .doctor-card--main h3 {
    font-size: 19px;
  }

  .doctor-card--main h3 span {
    display: inline-block;
    margin-left: 4px;
    font-size: 17px;
  }

  .doctor-card__profile {
    font-size: 13px;
  }

  .reserve-form {
    padding: 22px;
  }

  .overview-table dt,
  .overview-table dd {
    padding: 14px 16px;
  }

  .clinic-accordion {
    gap: 12px;
  }

  .clinic-accordion__summary {
    min-height: 60px;
    padding: 10px 54px;
    font-size: 22px;
  }

  .clinic-accordion__body {
    padding: 0 18px 32px;
  }

  .clinic-info {
    font-size: 13px;
  }

  .clinic-info div {
    grid-template-columns: 94px 1fr;
    gap: 14px;
  }

  .clinic-choice-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clinic-choice-grid label {
    justify-content: center;
    min-height: 44px;
    padding: 8px 4px;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
  }

  .floating-cta {
    font-size: 0;
    line-height: 0;
  }

  .floating-cta a {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0 10px;
    border-radius: 0;
    background: none;
  }

  .page-top-button {
    right: 24px;
    bottom: 100%;
    width: 60px;
    height: 60px;
    font-size: 12px;
  }

  .site-footer {
    padding: 32px 0;
  }
}
