@charset 'UTF-8';

/* 1. 変数の定義と、ブラウザの基礎リセット */
:root {
  --text-color: #333333;
  --bg-color-gray: #eee;
  --color-light-gray: #b6b6b6;
  --color-mid-gray: #9a9a9a;
  --color-dark-gray: #636363;
  --color-light-main: #ffd9d9;
  --color-mid-main: #eb9683;
  --color-main: #ad4e36;
  --color-light-sub: #d3bf10;
  --color-sub: #b39855;
  --header-height-pc: 70px;
  --header-height-sp: 50px;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* スマホの文字サイズ自動変化を防止 */
  scroll-behavior: smooth; /*スルスルスクロール */
  scroll-padding-top: var(--header-height-pc);
}
@media (width < 768px) {
  html {
    scroll-padding-top: var(--header-height-sp);
  }
}

/* 2. すべての要素に box-sizing を波及させる */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* 3. 全体の文字スタイルとリセット */
body {
  font-size: 1rem;
  margin: 0; /* ブラウザ標準の余白を消去 */
  color: var(--text-color);
  line-height: 1.75;
  font-family:
    -apple-system, BlinkMacSystemFont, "Zen Kaku Gothic New", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/* 4. 各要素の最適化 */
a {
  color: inherit; /* 親の文字色（body）を強制継承 */
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle; /* bottomより画像下の隙間が消えやすい */
  font-style: italic; /* 画像割れ時の代替テキスト用 */
}
p {
  margin-block-start: 0;
  margin-block-end: 0.5em;
}
p:last-child {
  margin-block-end: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0; /* 標準の太い余白をリセット */
  font-weight: normal;
}

/* テキストクラススタイル */
.text-sm {
  font-size: 0.5em;
}
.text-bold {
  font-weight: 500;
}
.text-blue {
  color: var(--color-dark-main);
}

/* スマホ用 */
.sp-only {
  display: none;
}

/* ------------------------
  セクション
--------------------------- */
section {
  background-color: #fff;
  background-image: url("/images/line_bg_v2.svg");
  background-position: 20px 20px;
  background-repeat: no-repeat;
  background-size: 200px;
  overflow: hidden;
}
section:nth-child(even) {
  background-color: var(--bg-color-gray);
}
.section-title {
  font-family: "Shadows Into Light", cursive;
  font-size: 3rem;
  line-height: 1.5;
  color: var(--color-main);
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 0.15em;
  position: relative;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 2em;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-light-sub);
}
.section-title-ja {
  display: block;
  font-family: "Zen Old Mincho", serif;
  color: var(--color-mid-gray);
  font-size: 1rem;
  letter-spacing: 0;
  text-align: center;
}
.section-description {
  text-align: center;
  margin-bottom: 30px;
}
.section-subtitle {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.5rem, 1vw, 2.5rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
}
.deco-blue::after {
  position: absolute;
  content: "";
  width: 2em;
  height: 3px;
  background: var(--color-main);
  bottom: -10px;
  left: 0;
}
.deco-yellow::after {
  position: absolute;
  content: "";
  width: 2em;
  height: 3px;
  background: var(--color-sub);
  bottom: -10px;
  left: 0;
}
@media (width < 768px) {
  section {
    background-size: 150px;
  }
  .section-title {
    font-size: 2.375rem;
  }
}

/* ------------------------
  インナー
--------------------------- */
.inner-box {
  max-width: 1280px;
  margin-inline: auto;
  margin-block: 100px;
  padding-inline: 20px;
}
@media (width < 768px) {
  .inner-box {
    width: 100%;
    padding-inline: 20px;
    margin-block: 80px;
  }
}

/* ------------------------
  スクロールボタン
--------------------------- */
#scroll-btn {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  bottom: 40px;
  right: 20px;
  background: var(--color-light-gray);
  text-align: center;
  color: #fff;
  text-decoration: none;
  /* ここを追加 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#scroll-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
#scroll-btn i {
  font-size: 50px;
  line-height: 80px;
}
@media (any-hover: hover) {
  #scroll-btn:hover {
    background: var(--color-main);
    color: #fff;
  }
}
@media (width < 768px) {
  #scroll-btn {
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 15px;
  }
  #scroll-btn i {
    font-size: 30px;
    line-height: 50px;
  }
}

/* ------------------------
  ヘッダーとナビゲーション
--------------------------- */
.logo__box {
  margin: 0;
  margin-block-end: 0;
}
.logo {
  text-align: left;
}
.logo__img {
  height: 50px;
  width: 100%;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  height: 70px;
  align-items: center;
}
.header__nav-list {
  display: flex;
  gap: 10px;
  font-family: "Cause", cursive;
}
.header__nav-link {
  display: block;
  text-align: center;
  font-weight: 500;
  padding-inline: 0.5em;
  position: relative;
}
.header__nav-link::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background: var(--color-mid-main);
  bottom: 0;
  left: 0;
  transition: all 0.5s ease;
}
.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}
.header__nav-desc {
  display: block;
  font-size: 0.6em;
  color: var(--color-sub);
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: -5px;
}

@media (width < 768px) {
  .header__nav {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    padding-top: 100px;
    width: 80%;
    height: 100dvh;
    top: 0;
    right: -100%;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 105;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .header__nav-link {
    font-size: 1.25rem;
  }
  /* .header__nav-link::after {
    display: none;
  } */
  .header__nav.is-open {
    right: 0;
  }
  .header__inner {
    padding-block: 5px;
    height: 50px;
  }
  .logo__img {
    height: 40px;
  }
}

/* フォーカス時のアクセシビリティ（キーボード操作対応） */
:is(.header__nav-link, .btn):focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
}

/* ハンバーガーメニュー for スマホ */
@media (width < 768px) {
  .sp-only {
    display: block;
  }
  .logo__img {
    height: 40px;
  }
  .menu-btn {
    position: relative;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
  }
  .menu-btn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    left: 0;
  }
  .menu-btn span:nth-child(1) {
    top: 0;
  }
  .menu-btn span:nth-child(2) {
    top: 11px;
  }
  .menu-btn span:nth-child(3) {
    bottom: 0;
  }
  .menu-btn.is-open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .menu-btn.is-open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  /* ハンバーガーメニューを開いたときの背景スクロール防止 */
  body.is-open {
    overflow: hidden;
  }
}

/* ------------------------
  ヒーローエリア
--------------------------- */
.hero__area {
  margin-top: var(--header-height-pc);
  height: calc(100vh - var(--header-height-pc));
  width: 100%;
  background-image: url("/images/hair-salon_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.hero__wrapper {
  max-width: 1280px;
  margin-inline: auto;
  height: 100%;
  display: grid;
  place-content: center;
}
.hero__shopname {
  font-family: "Shadows Into Light", cursive;
  color: #fff;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
  position: relative;
}
.hero__shopname::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  bottom: -10px;
  left: 1.5em;
}
.hero__shopname span {
  font-size: 2rem;
}
.hero__shopname-ja {
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

@media (width < 768px) {
  .hero__area {
    margin-top: var(--header-height-sp);
    height: calc(100dvh - var(--header-height-sp));
  }
}

/* ------------------------
  About
--------------------------- */
/* 自己紹介 */
.about__info {
  display: flex;
  gap: 50px;
}
.about__textarea,
.about__imagearea {
  flex: 1;
}
.about__author {
  font-family: "Zen Old Mincho", serif;
  color: var(--color-main);
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.about__name {
  margin-top: 10px;
  text-align: right;
  line-height: 1.5;
  font-size: 1.125rem;
}
.about__history {
  font-size: 0.85em;
  font-weight: 400;
  background: var(--color-mid-main);
  color: #fff;
  padding: 0.1em 0.2em;
}
.about__photo {
  overflow: hidden;
}
.about__photo img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition:
    filter 1s ease,
    transform 1s ease;
}
@media (any-hover: hover) {
  .about__photo img:hover {
    transform: scale(1.2);
  }
}
@media (width < 768px) {
  .about__info {
    flex-direction: column;
  }
}

/* スタッフ */
.about__staff {
  width: 80%;
  margin-inline: auto;
}
.about__staff-list {
  display: flex;
  gap: 20px;
}
.about__staff-item {
  border-radius: 10px;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* 3人・隙間20px×2箇所ぶんを先に引いてから3等分する */
  width: calc((100% - 20px * 2) / 3);
  box-shadow: 0px 0px 5px rgba(164, 121, 4, 0.7);
}
.about__staff-photo {
  display: block;
  margin-inline: auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
}
.about__staff-name {
  font-weight: 500;
}
.staff-history {
  font-weight: 400;
  background: var(--color-sub);
  color: #fff;
  padding: 0.1em 0.2em;
  font-size: 0.9em;
}
.about__staff-comment {
  font-size: 0.875rem;
}
@media (width < 768px) {
  .about__staff {
    width: 100%;
  }
  .about__staff-list {
    flex-direction: column;
  }
  .about__staff-item {
    width: 100%;
  }
}

/* ------------------------
  Gallery
--------------------------- */
.gallery {
  text-align: center;
}
.gallery__box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 300px 300px;
  gap: 10px;
}
.image-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/2;
}
.image-item:nth-child(2) {
  grid-column: 3/5;
  grid-row: 1/3;
}
.image-item:nth-child(3) {
  grid-column: 5/7;
  grid-row: 1/2;
}
.image-item:nth-child(4) {
  grid-column: 1/3;
  grid-row: 2/3;
}
.image-item:nth-child(5) {
  grid-column: 5/7;
  grid-row: 2/3;
}
@media (width < 768px) {
  .gallery__box {
    display: flex; /* flexに変更して縦に並べる */
    flex-direction: column;
    gap: 20px;
  }
}

/* ------------------------
  画像ギャラリー（モーダル）
--------------------------- */
/* クリックできることをユーザーに伝えるカーソル変更 */
.image-item.is-clickable {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .image-item.is-clickable:hover {
    opacity: 0.8;
  }
}

/* モーダル背景（最初は非表示） */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.85); /* 暗い背景 */
  display: grid;
  place-items: center; /* 上下左右の中央揃え */
  z-index: 1000; /* ヘッダー(100)より上に配置 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* JSで .is-visible がついたら表示 */
.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* モーダルのコンテンツ枠 */
.modal__content {
  max-width: 85%;
  max-height: 80vh;
}

/* モーダル内の拡大画像 */
#modal-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain; /* 画面内に画像を綺麗に収める */
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

/* 表示された時に画像を少しふわっと大きくする */
.modal.is-visible #modal-img {
  transform: scale(1);
}

/* 閉じボタン */
.modal__close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 3.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal__close-btn:hover {
  color: var(--color-mid-pink);
}

@media (width < 768px) {
  .modal__close-btn {
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
  }
}

/* ------------------------
  Menu
--------------------------- */
.menu__box {
  margin-bottom: 40px;
}
.menu__set {
  display: flex;
  gap: 40px;
}
.menu__set.menu__set--reverse {
  flex-direction: row-reverse;
}
.menu__imagarea {
  overflow: hidden;
  flex: 0 1 420px;
}
.menu__img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  object-position: center;
}
.menu__text-area {
  flex: 1; /* 複雑な計算をせず、自動で綺麗に幅を広げる */
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu__title {
  text-align: left;
  font-size: 1.25rem;
  color: var(--color-sub);
  font-weight: 500;
  border-bottom: 1px solid var(--color-sub);
  margin-bottom: 30px;
}
.menu__title::before {
  content: "\2a";
  color: var(--color-sub);
  margin-top: 5px;
}
.menu__name {
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px dotted var(--color-light-gray);
  margin-bottom: 10px;
}
.menu__price {
  font-size: 1rem;
  font-weight: 500;
  border-left: 4px solid var(--color-mid-main);
  padding-left: 5px;
  margin-bottom: 5px;
  line-height: 1.4;
}
.menu__desc {
  margin-bottom: 0px;
}
.menu__note {
  padding: 1em;
  border: 2px solid var(--color-mid-main);
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
}
.menu__note span {
  font-weight: 400;
  font-size: 0.85em;
}
@media (width < 768px) {
  .menu__box {
    gap: 20px;
  }
  .menu__set,
  .menu__set.menu__set--reverse {
    flex-direction: column;
  }
  .menu__imagarea {
    flex: 0 1 100%;
  }
  .menu__text-area {
    width: 100%;
  }
}

/* ------------------------
  Infomation
--------------------------- */
.info {
  text-align: center;
}
.info .inner-box {
  width: 60%;
}
.info__box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: left;
}
.info__date {
  width: 25%;
  padding-block: 2em;
  padding-inline: 1em;
  border-bottom: 1px solid var(--color-light-gray);
  text-align: center;
  display: grid;
  place-items: center;
}
.info__text {
  width: 75%;
  padding: 2em;
  border-bottom: 1px solid var(--color-light-gray);
  position: relative;
}
.info__text::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 1em;
  background-color: var(--color-main);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (width < 768px) {
  .info .inner-box {
    width: 100%;
  }
  .info__box {
    display: block;
  }
  .info__date {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1em;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 0.875rem;
  }
  .info__text {
    width: 100%;
    text-align: left;
    padding: 1em;
    padding-left: 2em;
  }
  .info__text::before {
    width: 2px;
    height: 1em;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
  }
}

/* ------------------------
  Access
--------------------------- */
.access {
  text-align: center;
}
.section-title + p {
  margin-bottom: 2em;
}

/* --- レイアウト構造 --- */
.access__box {
  display: flex;
  gap: 40px;
  width: 100%;
  align-items: flex-start; /* 地図の縦伸びを防ぐ */
}

/* --- 左側：地図エリア --- */
.access__map {
  overflow: hidden;
  flex: 1; /* ← 50%ずつ均等に分け合う */
  width: 100%;
  aspect-ratio: 16 / 9;
}
.access__text {
  flex: 1; /* ← こちらも同じ比率 */
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- 右側：テーブルエリア --- */
.access__text {
  flex: 1; /* 複雑なcalcを使わず自動フィットさせる */
}
.access__table {
  width: 100%;
  border-collapse: collapse; /* 隙間のない綺麗な線にするための指定 */
}
.access__table tr {
  border-bottom: 1px solid #eee; /* 行の区切り線 */
}
.access__table tr:last-child {
  border-bottom: none; /* 最後の不要な線をカット */
}
.access__head {
  width: 30%;
  font-weight: 500;
  padding: 1em;
  text-align: left;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.access__desc {
  width: 70%;
  padding: 1em;
  text-align: left;
}
@media (width < 768px) {
  .access__box {
    flex-direction: column;
    align-items: stretch;
  }
  .access__map {
    flex: 1; /* 縦積み時は100%幅になるようflex: 1のままでOK(flex-direction: columnなので、flex-basisは高さ方向ではなく、この場合は単に幅いっぱいに広がる指定として機能します) */
  }
  .access__head {
    width: auto;
    letter-spacing: 0;
  }
  .access__desc {
    width: auto;
  }
}

/* ------------------------
  Contact
--------------------------- */
.contact__box {
  text-align: center;
}
.contact__btn {
  background: var(--color-sub);
  color: #fff;
  padding: 1em 4em;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}
.contact__btn::after {
  position: absolute;
  content: "\f138";
  font: var(--fa-font-solid);
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .contact__btn:hover {
    background: var(--color-mid-main);
    color: #fff;
    font-weight: 700;
  }
  .contact__btn:hover::after {
    right: 1em;
  }
}
/* ------------------------
  フッター
--------------------------- */
footer {
  background-color: var(--color-dark-gray);
  padding-top: 50px;
}
.footer__sns {
  margin-inline: auto;
  text-align: center;
}
.footer__sns-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #fff;
}
.footer__sns-icon {
  width: 40px;
  height: auto;
}
.footer__sns-link {
  display: inline-block;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .footer__sns-link:hover {
    transform: translateY(-5px);
  }
}
.footer__logo-box {
  text-align: center;
  padding: 2em;
}
.footer__logo-box img {
  display: inline-block;
  height: 50px;
  width: auto;
}
.footer__logo-box span {
  display: inline-block;
  color: #fff;
  font-size: 0.75rem;
  margin-top: 10px;
}
.footer__logo {
  width: 150px;
}
.footer__author {
  color: var(--color-light-gray);
  font-size: 0.75rem;
  border-top: 1px solid var(--color-light-gray);
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
}
.copyright {
  margin-bottom: 0;
}
.privacy-law a {
  display: inline-block;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.privacy-law a:first-child {
  margin-left: 0;
}
@media (any-hover: hover) {
  .privacy-law a:hover {
    color: var(--color-light-sub);
  }
}
@media (width < 768px) {
  .footer__author {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  /* 下部固定ボタン(電話する/予約する)の高さぶん、フッターの最後に余白を確保 */
  footer {
    padding-bottom: 64px;
  }
}

/* ------------------------
  フッター固定ボタン
--------------------------- */
.fixed-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 50px;
  flex-direction: column;
}
.fixed-nav__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}
.fixed-nav__btn i {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.fixed-nav__btn span {
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
}
.fixed-nav__btn--tel {
  border-radius: 20px 0 0 0;
  background: var(--color-sub);
}
.fixed-nav__btn--reserve {
  background: var(--color-main);
  border-radius: 0 0 0 20px;
}
@media (any-hover: hover) {
  .fixed-nav__btn--tel:hover {
    background: var(--color-light-sub);
  }
  .fixed-nav__btn--reserve:hover {
    background: var(--color-mid-main);
  }
}
@media (width <768px) {
  .fixed-nav {
    top: auto;
    right: auto;
    transform: none;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    z-index: 900; /* headerより低く、モーダルより低い程度に */
  }
  /* ハンバーガーメニューが開いている間は、下部固定ボタンを隠す */
  body.is-open .fixed-nav {
    display: none;
  }
  .fixed-nav__btn {
    flex: 1;

    padding: 10px 0;
    font-size: 0.8rem;
  }
  .fixed-nav__btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  .fixed-nav__btn--tel,
  .fixed-nav__btn--reserve {
    border-radius: 0;
  }
  .fixed-nav__btn span {
    writing-mode: horizontal-tb; /* 横書き（上から下）に戻す */
    text-orientation: mixed; /* 文字の向きを初期値に戻す */
    text-combine-upright: none; /* 縦中横を解除する */
  }
}

/* ------------------------
  プライバシーポリシーページ
--------------------------- */
.privacyhero__area {
  margin-top: var(--header-height-pc);
  height: 50vh;
  width: 100%;
  background-image: url("/images/privacy_hero_image2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
@media (width < 768px) {
  .privacyhero__area {
    margin-top: var(--header-height-sp);
    height: calc(50vh - var(--header-height-sp));
  }
}
.privacyhero__wrapper {
  height: 100%;
  display: grid;
  place-items: center;
  align-items: center;
}
.privacyhero__title {
  font-family: "Zen Old Mincho", serif;
  color: var(--text-color);
  font-size: 3rem;
  padding: 1em 2em;
  background: rgba(255, 255, 255, 0.8);
}
@media (width <= 1024px) {
  .privacyhero__area {
    height: 30vh;
  }
}
.privacy .inner-box {
  width: 60%;
}
@media (width <= 1280px) {
  .privacy .inner-box {
    width: 80%;
  }
}
@media (width <= 1024px) {
  .privacyhero__title {
    font-size: 2rem;
  }
  .privacy .inner-box {
    width: 90%;
  }
}
@media (width < 768px) {
  .privacyhero__title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: clamp(1.25rem, 1vw, 2rem);
  }
}
@media (width < 481px) {
  .privacyhero__title {
    font-size: 1.5rem;
  }
  .privacy .inner-box {
    width: 100%;
  }
}

.privacy__box {
  margin-bottom: 40px;
}
.privacy__box:last-child {
  margin-bottom: 100px;
}
.privacy__list-ol {
  list-style-position: inside;
}
.privacy__box a {
  color: var(--color-main);
  font-weight: 500;
}
@media (any-hover: hover) {
  .privacy__box a:hover {
    color: var(--color-mid-main);
  }
}

/* ------------------------
  フェードイン
--------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}
