/**
 * テーマ共通スタイル（PC基準・デスクトップファースト）
 *
 * docs/mockups/kyoto-kitano-hospital-pc.svg を元に実装。
 * SPの上書きは styles/mobile.css。
 */

.sp-only {
  display: none;
}


/**
 * ヘッダー
 */
.site-header {
  position: relative;
  width: 100%;
  height: var(--header-pc);
  padding: 0 88px 0 33px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
}


.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2.75px;
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
}


.site-logo__org {
  color: var(--color-font);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}


.site-logo__name {
  color: var(--color-primary);
  font-size: var(--fs-2xl);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
}


.global-nav {
  display: flex;
  align-items: center;
  gap: var(--gap-pc);
}


@media (max-width: 998px) {
  .global-nav {
    gap: 0;
  }
}


.global-nav ul {
  position: absolute;
  right: 253px;
  display: flex;
  align-items: center;
}


@media (max-width: 960px) {
  .global-nav ul {
    display: none;
  }
}


.global-nav ul li {
  padding: 0 27.5px;
}


.global-nav ul li+li {
  border-left: 1px solid var(--color-border);
}


.global-nav ul li a {
  display: flex;
  align-items: center;
  gap: 8.25px;
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: color var(--duration) ease;
}


.global-nav ul li a:hover {
  color: var(--color-secondary);
}


.global-nav ul li a img {
  width: 27.5px;
  height: 27.5px;
  object-fit: contain;
}


.button-tel {
  position: absolute;
  right: 93.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.25px;
  width: 165px;
  height: 44px;
  border-radius: 11px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: background-color var(--duration) ease;
}


.button-tel:hover {
  background-color: var(--color-secondary);
}


.button-tel img {
  width: 27.5px;
  height: 27.5px;
  object-fit: contain;
}


.mobile-button-tel {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8.25px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 66px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: background-color var(--duration) ease;
  z-index: var(--z-sticky);
}

.mobile-button-tel img {
  width: 27.5px;
  height: 27.5px;
  object-fit: contain;
}


/**
 * ナビトグル（base.cssの土台を案件色に上書き）
 */
.nav-toggle {
  top: 16.5px;
  right: 16.5px;
  border-radius: 50%;
  background-color: var(--color-primary);
}


/**
 * モバイルパネル（全画面ナビ）
 */
.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  color: var(--color-primary);
  background-color: var(--color-white);
  background-image: url("../images/mobile/mobile-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity var(--duration) ease, visibility var(--duration) ease;
}


.mobile-panel.active {
  visibility: visible;
  opacity: 0.97;
}


.mobile-panel .site-logo {
  position: absolute;
  top: 18.75px;
  left: 33px;
}


.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px 33px;
}


.mobile-nav ul li a,
.mobile-nav ul li button {
  width: 331px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.25px;
  background-color: var(--color-white);
  border: none;
  border-radius: 11px;
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  cursor: pointer;
  transition: opacity var(--duration) ease;
}


.mobile-nav ul li a:hover,
.mobile-nav ul li button:hover {
  opacity: 0.82;
}


.mobile-nav ul li a img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}


.mobile-nav__tel {
  width: 331px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.25px;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 11px;
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 55px;
}


.mobile-nav__tel img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}


.mobile-nav__address {
  width: 331px;
  height: auto;
  text-align: left;
  margin-top: 22px;
  color: var(--color-font);
  font-size: var(--fs-xs);
  line-height: 1.75;
  letter-spacing: 0.05em;
}


.mobile-nav__copyright {
  width: 331px;
  height: auto;
  text-align: left;
  margin-top: 27.5px;
  color: var(--color-primary);
  font-size: var(--fs-xxs);
  line-height: 1.75;
  letter-spacing: 0.05em;
}


/**
 * フロアマップモーダル
 */
.floormap-modal {
  position: fixed;
  top: 0;
  left: 0;
  /* ナビ帯(12)の上に重ねるモーダルは100番台 */
  z-index: 100;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  background-color: var(--color-white);
  transition: opacity var(--duration) ease, visibility var(--duration) ease;
}


.floormap-modal.active {
  visibility: visible;
  opacity: 1;
}


/* nav-toggleと同じトークン（--menu-*）・配置・意匠で揃える */
.floormap-modal__close {
  position: absolute;
  top: 16.5px;
  right: 16.5px;
  z-index: var(--z-content);
  width: var(--menu-size);
  height: var(--menu-size);
  border: none;
  border-radius: 50%;
  background-color: var(--color-primary);
  cursor: pointer;
  transition: opacity var(--duration) ease;
}


.floormap-modal__close:hover {
  opacity: 0.82;
}


.floormap-modal__close::before,
.floormap-modal__close::after {
  content: "";
  position: absolute;
  top: calc(50% - var(--menu-line) / 2);
  left: calc(var(--menu-size) / 4);
  width: calc(var(--menu-size) / 2);
  height: var(--menu-line);
  border-radius: calc(var(--menu-line) / 2);
  background-color: var(--color-white);
}


.floormap-modal__close::before {
  transform: rotate(45deg);
}


.floormap-modal__close::after {
  transform: rotate(-45deg);
}


.floormap-modal__body {
  width: 100%;
  height: 100%;
  padding: 77px 22px 33px;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  /* stretchだとpictureがコンテナ高に固定され、縦長画像の下がスクロールに含まれず見切れる */
  align-items: flex-start;
}


.floormap-modal__body picture {
  display: block;
  width: 100%;
  max-width: 770px;
}


.floormap-modal__body img {
  width: 100%;
  height: auto;
  border-radius: 11px;
}


/**
 * セクション見出し（クローバー＋タイトル）
 */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16.5px;
}


.section-header__title {
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.25;
}


.section-header__clover {
  width: 24px;
  height: 22px;
  object-fit: contain;
}


/**
 * ヒーロー
 */
.hero {
  /* 装飾（sprig/mimosa）が狭幅で右にはみ出し横スクロールを生むためクリップ */
  overflow-x: clip;
}


.hero__media {
  position: relative;
  max-width: 1170px;
  margin: 27.5px auto 0;
  padding: 0 22px;
  display: flex;
  align-items: flex-end;
}


.hero__tree {
  position: relative;
  z-index: var(--z-content);
  width: 385px;
  margin-right: -88px;
  object-fit: contain;
  transition-delay: 0.25s;
  transition-duration: 1.5s;
}


.hero__photo {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 27.5px;
  /* Rellaxのtransform更新を遅延させないため、フェードはopacityのみに限定。
     下からの浮き上がりは内側のimg（translate）に持たせる */
  transition-property: opacity;
  transition-delay: 0;
  transition-duration: 1.5s;
}


.hero__photo img {
  width: 100%;
  aspect-ratio: 770 / 600;
  border-radius: 27.5px;
  object-fit: cover;
  /* scale1.1のはみ出し(高さ5%)が22pxの上昇を覆うため、上端に隙間は出ない */
  translate: 0 22px;
  scale: 1.1;
  transition: translate 1.5s ease-out, scale 6s ease-out;
}


.hero__photo.visible img {
  translate: 0 0;
  scale: 1;
}


.hero__mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 50dvh;
  display: none;
}

.hero__copy {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 93.5px 22px 0;
  text-align: center;
}


.hero__deco {
  position: absolute;
  object-fit: contain;
}


.hero__deco--sprig-right {
  top: 44px;
  right: calc(50% - 445px);
  width: 99px;
}


.hero__deco--sprig-left {
  top: 176px;
  left: calc(50% - 410px);
  width: 88px;
}


.hero__deco--mimosa {
  top: 363px;
  right: calc(50% - 410px);
  width: 121px;
}


.hero__lead {
  display: inline-block;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-font);
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
}


.hero__catch {
  margin-top: 44px;
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.75;
}


.hero__intro {
  margin-top: 33px;
  margin-bottom: 0;
  font-size: var(--fs-base);
  letter-spacing: 0.05em;
  line-height: 2;
}


/**
 * 理念帯
 */
.philosophy {
  position: relative;
  margin-top: 99px;
  padding: 82.5px 22px;
  box-sizing: border-box;
  background: var(--color-philosophy);
}



.philosophy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: url("../images/deco/philosophy-left.webp") left top / contain no-repeat;
}


.philosophy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../images/deco/philosophy-right.webp") right bottom / contain no-repeat;
}


.philosophy__box {
  position: relative;
  max-width: 790px;
  margin: 0 auto;
  padding: 38.5px 33px;
  border-radius: 22px;
  box-sizing: border-box;
  background-color: var(--color-white);
  text-align: center;
  z-index: 1;
}


.philosophy__subtitle {
  margin-bottom: 0;
  font-size: var(--fs-lg);
  letter-spacing: 0.2em;
  line-height: 1;
}


.philosophy__title {
  margin-top: 22px;
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.5;
}


/**
 * 特徴3点
 */
.features {
  margin-top: 110px;
}


.features__list {
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: center;
}


.features__item {
  width: calc(100% / 3);
  padding: 0 44px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}


@media (max-width: 931px) {
  .features__item {
    padding: 0 16.5px;
  }
}


.features__item+.features__item {
  border-left: 1px solid var(--color-border);
}


.features__photo {
  width: 100%;
  overflow: hidden;
  border-radius: 5.5px;
}


.features__photo img {
  width: 100%;
  aspect-ratio: 292 / 228;
  border-radius: 5.5px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-move);
}


.features__photo:hover img {
  transform: scale(1.05);
}


.features__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.features__icon {
  width: 55px;
  height: 55px;
  margin: 33px 0 22px;
  object-fit: contain;
}


.features__text {
  margin-bottom: 0;
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
}


/**
 * クリーム帯（介護医療院とは＋リハビリテーション）
 */
.care-band {
  margin-top: 110px;
  padding: 0 0 132px;
  background-color: var(--color-alternate);
}


section.about {
  padding-top: 0;
}


@media (max-width: 768px) {
  section.about {
    padding-top: 66px;
  }
}


.about__inner {
  padding-top: 110px;
  margin-left: max(calc(50% - 530px), 22px);
  display: flex;
  align-items: flex-start;
  gap: 88px;
}


@media (max-width: 1089px) {
  .about__inner {
    flex-direction: column;
    gap: 55px;
    margin-left: 0;
    max-width: 856px;
    margin: 0 auto;
    padding: 0 33px;
  }
}


.about__body {
  flex-shrink: 0;
  width: 490px;
}


@media (max-width: 1089px) {
  .about__body {
    width: 100%;
  }
}


.about__lead {
  margin-top: 33px;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}


.about__divider {
  height: 0;
  margin: 44px 0;
  border: none;
  border-top: 1px solid var(--color-primary);
}


.about__block+.about__block {
  margin-top: 44px;
}


.about__subtitle {
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
}


.about__subtitle::before {
  margin-right: 5.5px;
  content: "●";
}


.about__list {
  margin-top: 16.5px;
}


.about__list li {
  padding-left: 1em;
  color: var(--color-font);
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  line-height: 2;
  text-indent: -1em;
}


.about__list li::before {
  content: "・";
}


.about__note {
  margin-bottom: 0;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  line-height: 2;
}


.about__text {
  margin-top: 16.5px;
  margin-bottom: 0;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  line-height: 2;
}


.about__photos {
  flex: 1;
  min-width: 0;
}


.about__photos-row {
  margin-bottom: 5.5px;
  display: flex;
  gap: 5.5px;
}


.about__photo {
  /* width%＋gapが100%を超えるぶんをflexの縮小で吸収する */
  min-width: 0;
  overflow: hidden;
}


.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-move);
}


.about__photo:hover img {
  transform: scale(1.05);
}


.about__photo--1 {
  width: 37%;
  aspect-ratio: 238 / 290;
}


.about__photo--2 {
  width: 63%;
  aspect-ratio: 405 / 290;
}


.about__photo--3 {
  width: 100%;
  aspect-ratio: 650 / 420;
}


/**
 * リハビリテーション（クリーム帯内の白パネル）
 */
.rehabilitation {
  margin-top: 132px;
}


.rehabilitation__panel {
  position: relative;
  margin-left: max(calc(50% - 530px), 22px);
  padding: 66px 44px 66px 66px;
  border-radius: 44px 0 0 44px;
  display: flex;
  align-items: flex-start;
  gap: 66px;
  background-color: var(--color-white);
}


@media (max-width: 1089px) {
  .rehabilitation__panel {
    flex-direction: column;
    gap: 44px;
  }
}

.rehabilitation__leaf {
  position: absolute;
  top: -66px;
  left: -44px;
  width: 275px;
  object-fit: contain;
}


.rehabilitation__body {
  flex-shrink: 0;
  width: 445px;
}


@media (max-width: 1089px) {
  .rehabilitation__body {
    width: 100%;
    max-width: 856px;
    margin: 0 auto;
    padding: 0 33px;
  }
}

.rehabilitation__text {
  margin-top: 33px;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  line-height: 2;
}


.rehabilitation__photos {
  flex: 1;
  min-width: 0;
  max-width: 484px;
  display: flex;
  gap: 11px;
}


@media (max-width: 1089px) {
  .rehabilitation__photos {
    max-width: 856px;
    margin: 0 auto;
    padding: 0 33px;
  }
}


.rehabilitation__photo {
  width: calc(50% - 5.5px);
  aspect-ratio: 235 / 225;
  overflow: hidden;
}


.rehabilitation__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-move);
}


.rehabilitation__photo:hover img {
  transform: scale(1.05);
}


/**
 * アクセス
 */
.access {
  padding: 132px 0 66px;
}


.access__map {
  max-width: var(--container);
  margin: 66px auto 0;
  padding: 0 22px;
}


.access__map-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 33px;
}


.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__inner {
  margin: 110px auto 0;
  padding: 0 calc((100vw - var(--container)) / 2 + 66px) 0 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 66px;
}


@media (max-width: 1134px) {
  .access__inner {
    padding: 0 33px 0 0;
  }
}


@media (max-width: 1089px) {
  .access__inner {
    flex-direction: column;
    gap: 55px;
  }
}


.access__left {
  flex: 1;
  min-width: 0;
}


@media (max-width: 1089px) {
  .access__left {
    order: 2;
  }
}


.access__left-inner {
  padding-left: calc((100vw - var(--container)) / 2 + 66px);
}


@media (max-width: 1134px) {
  .access__left-inner {
    padding-left: 33px;
  }
}


@media (max-width: 1089px) {
  .access__left-inner {
    padding-left: 0;
    width: 100%;
    max-width: 856px;
    margin: 0 auto;
    padding: 0 33px;
  }
}


.access__building img {
  width: 100%;
  object-fit: cover;
}


.access__logo {
  margin-top: 44px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 5.5px;
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
}


.access__logo-org {
  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}


.access__logo-name {
  color: var(--color-primary);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
}


.access__tel {
  max-width: 480px;
  margin-top: 33px;
  padding: 33px;
  border-radius: 22px;
  box-sizing: border-box;
  background-color: var(--color-primary);
  text-align: center;
}


@media (max-width: 1089px) {
  .access__tel {
    max-width: 100%;
  }
}

.access__tel-label {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}


.access__tel-number {
  margin-top: 16.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16.5px 11px;
  color: var(--color-white);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: opacity var(--duration) ease;
}


.access__tel-number:hover {
  opacity: 0.82;
}


.access__tel-number img {
  width: 33px;
  height: 33px;
  object-fit: contain;
}


.access__tel-hours {
  margin-top: 11px;
  margin-bottom: 0;
  color: var(--color-white);
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  line-height: 1;
}


.access__right {
  flex-shrink: 0;
  width: 490px;
}


@media (max-width: 1089px) {
  .access__right {
    width: 100%;
    max-width: 856px;
    margin: 0 auto;
    padding: 0 33px;
    order: 1;
  }
}


.access__label {
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}


.access__address {
  margin-top: 16.5px;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  line-height: 2;
}


.access__transport {
  margin-top: 44px;
}


.access__transport>li {
  padding: 27.5px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 22px;
}


.access__transport-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}


.access__transport-icon.train {
  width: 44px;
  height: 55px;
  object-fit: contain;
}


.access__transport-title {
  color: var(--color-primary);
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
}


.access__transport-list {
  margin-top: 11px;
}


.access__transport-list li {
  display: flex;
  align-items: baseline;
  gap: 8.25px;
  color: var(--color-font);
  font-size: var(--fs-base);
  letter-spacing: 0.05em;
  line-height: 1.75;
}


.access__transport-list li::before {
  flex-shrink: 0;
  color: var(--color-primary);
  content: "●";
  font-size: var(--fs-xs);
}


.access__partners {
  padding: 27.5px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 44px;
}


.access__partners .access__label {
  flex-shrink: 0;
  width: 132px;
  line-height: 1.9;
}


.access__partners-list li {
  color: var(--color-font);
  font-size: var(--fs-base);
  letter-spacing: 0.05em;
  line-height: 1.9;
}


/**
 * フッター
 */
.site-footer {
  padding: 33px 22px 22px;
  border-top: 1px solid var(--color-primary);
}


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


.footer-note__title,
.footer-note__text {
  margin-bottom: 0;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  line-height: 1.75;
}


.copyright {
  margin-top: 27.5px;
  margin-bottom: 0;
  color: var(--color-primary);
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}


/**
 * PAGE TOP（common.jsの.back-to-topでフェード制御）
 */
.back-to-top {
  position: fixed;
  right: 16.5px;
  bottom: 44px;
  z-index: var(--z-sticky);
  display: none;
  color: var(--color-primary);
  text-align: center;
}


.back-to-top::before {
  width: 1px;
  height: 88px;
  margin: 0 auto 11px;
  display: block;
  content: "";
  background-color: var(--color-primary);
}


.back-to-top__label {
  display: block;
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
}