@import url('https://fonts.googleapis.com/css2?family=Toppan+Bunkyu+Mincho&display=swap');

.page.blank {
  background-color: #fff;
  min-height: 100%;
}


/* TOPページ限定の下マージン */
body.top-page {
  margin-bottom: 60px; /* 必要な分だけ調整 */
}


/* リセット・基本設定 */
*, *:before, *:after {
  box-sizing: border-box;
}
html, body {
  min-height: 100%;
  margin: 0;
  background: #000000;
  -webkit-tap-highlight-color: transparent;
}
body {
}

/* ===== レイアウトに関する設定（ここから） ===== */

.book {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 2.8 / 1;
  z-index: 2;
}

@media (max-width: 768px) {
  .book {
    width: calc(100vw - 10px);
  }
}

.bound {
  perspective: 450vw;
}

.pages {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border-radius: 4px;
}

.page {
  width: 50%;
  height: 100%;
  transition-timing-function: ease-in-out;
  position: absolute;
  top: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5em;
  transform-origin: 0 0;
  transition: transform 1.4s, box-shadow 0.7s 0.2s;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  cursor: pointer;
  user-select: none;
}

.page.cover {
  padding: 0em;
  background-color: #000;
}

.page img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.bound .page:nth-child(odd) {
  pointer-events: all;
  transform: rotateY(0deg);
  right: 0;
  border-radius: 0 4px 4px 0;
}

/* キーボード操作中はホバーを無効化 */
.bound.is-navigating .page {
  pointer-events: none !important;
}
.bound:not(.is-navigating) .page:nth-child(odd):not(.cover):hover {
  transform: rotateY(-10deg);
}


.bound .page:nth-child(even) {
  pointer-events: none;
  transform: rotateY(180deg);
  transform-origin: 100% 0;
  left: 0;
  border-radius: 4px 0 0 4px;
}
.bound .page.grabbing {
  transition: none;
}
.bound .page.flipped:nth-child(odd) {
  pointer-events: none;
  transform: rotateY(-180deg);
}
.bound .page.flipped:nth-child(even) {
  pointer-events: all;
  transform: rotateY(0deg);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./img/shadow.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.page.flipped:nth-child(odd) {
  box-shadow: inset 20px 0 50px -24px rgba(255, 255, 255, 0.6);
}

.page.flipped:nth-child(even) {
  box-shadow: inset -20px 0 50px -20px rgba(193, 193, 193, 0.6);
}

.page::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.04) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.page:nth-child(odd):not(.flipped):not(.cover)::after {
  opacity: 1;
}

.page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

@media (max-width: 768px) {
  .page {
    padding: 1em;
  }
}

.pages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.pages.is-open::before {
  opacity: 1;
}

.bound .page:nth-child(even):not(.flipped) {
  transform: rotateY(179.9deg) !important;
}

.bound .page.flipped:nth-child(even) {
  transform: rotateY(0deg) !important;
}

.bound .page.flipped:nth-child(odd) {
  transform: rotateY(-179.9deg) !important;
}


/* ▼▼▼ STYLES FOR FULLSCREEN MODE ▼▼▼ */
/* ▼▼▼ フルスクリーンボタンのスタイル（画像バージョン）▼▼▼ */

/* ボタン本体の円 */
#fullscreen-button {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

/* クリック時の青い枠線（フォーカスリング）を非表示に */
#fullscreen-button:focus,
#fullscreen-button:focus-visible {
    outline: none;
    box-shadow: none;
}


/* ボタン本体の円 */
#fullscreen-button {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
}

/* クリック時の青い枠線（フォーカスリング）を非表示に */
#fullscreen-button:focus,
#fullscreen-button:focus-visible {
    outline: none;
    box-shadow: none;
}

/* ボタン内のアイコン共通設定 */
#fs-enter-icon,
#fs-exit-icon {
    width: 100%;
    height: 100%;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5; /* 少し透過させる */
}

/* 表示するアイコン画像の指定 */
#fs-enter-icon {
    background-image: url('img/full-enter-icon.png');
}

#fs-exit-icon {
    background-image: url('img/full-exit-icon.png');
}



body.fullscreen-active {
    overflow: hidden;
}

body.fullscreen-active .book {
    width: 90vw;
    height: calc(90vw / 2.8);
    max-width: none;
    z-index: 2000;
}

@media (min-aspect-ratio: 280/100) {
    body.fullscreen-active .book {
        height: 98vh;
        width: calc(98vh * 2.8);
    }
}
/* ▲▲▲ END OF FULLSCREEN STYLES ▲▲▲ */


/* ▼▼▼ テキストページ用のスタイル ▼▼▼ */
.page.text-page {
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4.5%;
}

.page.text-page-about {
  align-items: center; /* 上下中央揃えに変更 */
  justify-content: center;
}

.text-content {
  text-align: center;
  color: #333;
  line-height: 1.6;
  font-size: clamp(8px, 0.9vw, 14px);
}

/* aboutページ用の大きいテキストスタイル */
.page.text-page-about .text-content {
  font-size: clamp(10px, 1.1vw, 16px); /* 通常より少し大きくする */
}

.text-content .ja {
  font-family: 'Toppan Bunkyu Mincho', serif;
  margin: 0;
  letter-spacing: 0.1em;
}

.text-content .en {
  font-family: Helvetica, sans-serif;
  font-size: 1em;
  opacity: 0.9;
  margin: 0;
  letter-spacing: 0.04em;
  color: #434343;
}

/* ロゴ表示 */
:root {
  --logo-size: 100px;
  --logo-gap: 16px;
}

/* ▼▼▼ ヘッダーのスタイルを変更 ▼▼▼ */
.site-header {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  /* Flexboxで上下に配置 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 元の配置に合わせた余白 */
  padding: var(--logo-gap);
  /* コンテナ自体のクリックは無効化 */
  pointer-events: none;
}

/* ヘッダー内のリンク要素だけクリックできるようにする */
.site-header > * {
  pointer-events: auto;
}

@media (max-width: 768px) {
  .site-header {
    position: absolute; /* relativeより少し上位に出せる */
    z-index: 1; /* 低めだがリンクが有効な程度 */
    pointer-events: none; /* 全体はクリックできなくする */
  }

  .site-header > * {
    pointer-events: auto; /* ロゴなどの子要素はクリック可能に */
  }
}

/* style.css 内 */
.about-link {
  color: #434343;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: none;
}
.about-link:hover {
  text-decoration: underline;
}

/* ▼▼▼ コピーライト用のスタイル ▼▼▼ */
.copyright-notice {
  display: block; /* リンクの下に改行して表示 */
  margin-top: 10px; /* 上のリンクとの間隔 */
  color: #434343;
  font-family: Helvetica, sans-serif;
  font-size: 12px; /* 少し小さくする */
}


.site-header .brand {
  display: inline-block;
  line-height: 0;
}

.site-header img {
  height: var(--logo-size);
  width: auto;
  display: block;
}

body {
  padding-top: calc(var(--logo-size) + (var(--logo-gap) * 2));
}

.cover-gallery {
  display: flex;
  justify-content: center;
  gap: 100px;
  max-width: 1200px; /* ← ここで最大幅を制限 */
  margin: 60px auto; /* ← 中央寄せ */
  margin-top: 60px;
  padding-bottom: 80px;
  flex-wrap: wrap;
}

.cover-gallery .cover img {
  max-width: 500px;
  height: auto;
  border: 1px solid #545454;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.cover-gallery .cover img:hover {
  transform: scale(1.05);
}

/* 表紙の専用スタイル */
.page.cover {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page.cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #545454;
}

.page.cover::before,
.page.cover::after {
  content: none !important;
}

/* ▼▼▼ 全画面表示ページ用のスタイル ▼▼▼ */
.page.full-image-page {
  padding: 0;
}
.page.full-image-page img {
  object-fit: contain; /* はみ出さずに全体を表示 */
}

/* ▼▼▼ 定義文用のテキストページスタイルを追加 ▼▼▼ */
.page.text-page-definition {
  align-items: flex-end; /* 下揃えに変更 */
  justify-content: center;
  padding-bottom: 4.5%; /* 下部に余白を追加 */
}

.page.text-page-definition .text-content {
  font-size: clamp(8px, 0.8vw, 11px); /* aboutページより小さいフォントサイズ */
  max-width: 95%; /* 横幅を少し狭めて読みやすくする */
  text-align: left; /* 左揃えにする */
}

.page.text-page-definition .text-content .ja {
  font-size: 0.9em; /* 英語テキスト基準で少し小さくする */
  line-height: 1.8; /* 行間を少し広げる */
}

.page.text-page-definition .text-content .en {
  font-size: 0.9em; /* 日本語より少し大きくする */
  line-height: 1.8; /* 行間を少し広げる */
}

/* ▼▼▼ Aboutリンク用のスタイルを調整 ▼▼▼ */
.about-link {
  color: #434343;
  font-family: Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: none;
}
.about-link:hover {
  text-decoration: underline;
}


/* ▼▼▼ この部分を追加 ▼▼▼ */
/* 裏表紙のスタイル調整 */
.page.full-image-page img[src="img/back-cover.jpg"] {
  object-fit: cover;
  border-radius: 4px 0 0 4px; /* 親要素の角丸に合わせて白い線を解消 */
  box-shadow: 0 0 0 1px #545454;
}

/* ▼▼▼ フルスクリーン時のテキストサイズ調整 ▼▼▼ */
body.fullscreen-active .page.text-page .text-content {
  font-size: clamp(12px, 1.2vw, 18px); /* 通常より大きく */
}

body.fullscreen-active .page.text-page-about .text-content {
  font-size: clamp(14px, 1.4vw, 20px); /* 通常より大きく */
}

body.fullscreen-active .page.text-page-definition .text-content {
    font-size: clamp(10px, 1.0vw, 14px); /* 通常より大きく */
}


/* ▼▼▼ スマホで全画面ボタン非表示 ▼▼▼ */
@media (max-width: 768px) {
  #fullscreen-button {
    display: none;
  }
}


/* 初期状態でhoverを無効化するためのクラス */
body.no-hover .cover img:hover {
  transform: none !important; /* 例：hoverによるズームを無効にする */
  opacity: 1 !important;      /* 例：透過が出る場合は固定する */
}

/* 初期 hover 無効化：ページめくりのホバーも */
body.no-hover .bound:not(.is-navigating) .page:nth-child(odd):not(.cover):hover {
  transform: none !important;
  box-shadow: none !important;
}

/* 初期表示では最前面にしない。ページがめくられて可視になった時だけ前面化 */
.page.full-image-page:last-child {
  pointer-events: none;  /* 初期はイベントを拾わない */
  z-index: auto;
}
.page.full-image-page:last-child.flipped {
  pointer-events: all;
  z-index: 10000;        /* 可視状態の時のみ前面化 */
}

body.hover-reset .bound:not(.is-navigating) .page:nth-child(odd):not(.cover):hover {
  transform: none !important;
  box-shadow: none !important;
}



/* ====== モバイル：1枚表示モード（横スクロール＋進捗バー） ====== */
body.mobile-single .book.bound { display: none; }

#mobileBook.mobile-book {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;             /* iOS Safari のアドレスバー対策 */
  min-height: 100vh;          /* フォールバック */
  background: #000;
  z-index: 2;                 /* ヘッダー(z=1000)より下に */
}

.mobile-book .mobile-track {
  height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
}

.m-slide {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px 24px;      /* 進捗バー分の下余白 */
}

.m-slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #545454; /* 既存の枠線テイストに合わせる */
}

/* テキストページ（色味だけ上げて読みやすく） */
.m-slide.text .text-content {
  color: #e6e6e6;
  text-align: center;
  line-height: 1.7;
  font-size: clamp(12px, 2.8vw, 18px);
  padding: 0 18px;
}

/* 空白ページも1枚として見せる（従来の白地維持） */
.m-slide.blank {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px #545454;
  width: calc(100% - 16px);
  height: calc(100% - 24px);
}

/* 進捗インジケーター（控えめなグレーの線） */
.mobile-progress {
  position: fixed;
  left: 6vw;
  right: 6vw;
  bottom: 8px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}
.mobile-progress .mobile-bar {
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.38);
  border-radius: 2px;
  transition: width 0.12s linear;
}

/* モバイル時はフルスクリーンボタン非表示（念のため） */
body.mobile-single #fullscreen-button { display: none !important; }

/* 既存のスマホ向け設定はそのまま活かしつつ、1枚表示モードを優先 */
@media (max-width: 768px) {
  .site-header { z-index: 1000; }
}


/* ====== Mobile single mode: 枠線なし・角丸なし・左右に余白 ====== */
body.mobile-single #mobileBook .m-slide,
body.mobile-single #mobileBook .m-slide img {
  border-radius: 0 !important;
  box-shadow: none !important; /* 写真の周囲の薄い線を削除 */
}

/* 左右の余白（黒背景がのぞく感じに）。値は調整可 */
body.mobile-single #mobileBook .m-slide {
  padding: 8px 8px 24px; /* left/right=8px, 下は進捗バー分 */
}

/* 念のため：画像サイズ制御（枠がないのでコンテンツだけを収める） */
body.mobile-single #mobileBook .m-slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* モバイルの横スクロールで端のゴム巻きを抑止（対応ブラウザのみ有効） */
.mobile-book .mobile-track { overscroll-behavior-x: contain; }

/* ====== Mobile Single Mode（1枚表示）— 完全版  ====== */
body.mobile-single .book.bound { display: none; }

#mobileBook.mobile-book {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;     /* iOS Safariのアドレスバー対策 */
  min-height: 100vh;
  background: #000;
  z-index: 2;
}

/* 横スクロール＋スナップ（1枚ずつ） */
.mobile-book .mobile-track {
  height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overscroll-behavior-x: contain; /* 端のゴム巻きを抑止（対応ブラウザ） */
}

/* スライド本体：左右に控えめな余白、下は進捗バー分 */
.m-slide {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px 24px;
}

/* 画像：枠線なし・角丸なし・最大化 */
.m-slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* テキストスライド（読みやすく） */
.m-slide.text .text-content {
  color: #e6e6e6;
  text-align: center;
  line-height: 1.7;
  font-size: clamp(12px, 2.8vw, 18px);
  padding: 0 18px;
}

/* 進捗インジケーター（薄いグレーの線） */
.mobile-progress {
  position: fixed;
  left: 6vw;
  right: 6vw;
  bottom: 8px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}
.mobile-progress .mobile-bar {
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.38);
  border-radius: 2px;
  transition: width 0.12s linear;
}

/* モバイル時は既存の角丸や薄い線をすべて無効化 */
body.mobile-single .page.cover img,
body.mobile-single .page.full-image-page img,
body.mobile-single .cover-gallery .cover img {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* モバイル時はフルスクリーンボタン非表示（重複定義の上書き） */
body.mobile-single #fullscreen-button { display: none !important; }

/* ヘッダーは下げておく（クリックは子要素のみ） */
@media (max-width: 768px) {
  .site-header { z-index: 1; pointer-events: none; }
  .site-header > * { pointer-events: auto; }
}

/* ====== Mobile Single Mode（1枚表示）— 完全版  ====== */
body.mobile-single .book.bound { display: none; }

#mobileBook.mobile-book {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;     /* iOS Safariのアドレスバー対策 */
  min-height: 100vh;
  background: #000;
  z-index: 2;
}

/* 横スクロール＋スナップ（1枚ずつ） */
.mobile-book .mobile-track {
  height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overscroll-behavior-x: contain; /* 端のゴム巻きを抑止（対応ブラウザ） */
}

/* スライド本体：左右に控えめな余白、下は進捗バー分 */
.m-slide {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px 24px;
}

/* 画像：枠線なし・角丸なし・最大化 */
.m-slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* テキストスライド（読みやすく） */
.m-slide.text .text-content {
  color: #e6e6e6;
  text-align: center;
  line-height: 1.7;
  font-size: clamp(12px, 2.8vw, 18px);
  padding: 0 18px;
}

/* 進捗インジケーター（薄いグレーの線） */
.mobile-progress {
  position: fixed;
  left: 6vw;
  right: 6vw;
  bottom: 8px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}
.mobile-progress .mobile-bar {
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.38);
  border-radius: 2px;
  transition: width 0.12s linear;
}

/* モバイル時は既存の角丸や薄い線をすべて無効化 */
body.mobile-single .page.cover img,
body.mobile-single .page.full-image-page img,
body.mobile-single .cover-gallery .cover img {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* モバイル時はフルスクリーンボタン非表示（既存と重複してもOK） */
@media (max-width: 768px) {
  #fullscreen-button { display: none !important; }
}

/* ヘッダーは下げておく（リンクだけ操作可能） */
@media (max-width: 768px) {
  .site-header { z-index: 1; pointer-events: none; }
  .site-header > * { pointer-events: auto; }
}

/* ===== スマホ1枚表示：左上ロゴを最前面にして常時表示 ===== */
body.mobile-single .site-header {
  position: fixed;                 /* 画面に固定 */
  top: max(8px, env(safe-area-inset-top, 8px));
  left: max(8px, env(safe-area-inset-left, 8px));
  right: auto;
  bottom: auto;                    /* 既存の bottom:0 を打ち消す */
  z-index: 3000;                   /* #mobileBook(2) より上に */
  pointer-events: none;            /* 親は触れない */
}

body.mobile-single .site-header > * {
  pointer-events: auto;            /* 子要素（ロゴリンク）は触れる */
}

/* （任意）スマホ時のロゴサイズをやや控えめにする場合は有効化
body.mobile-single .site-header img {
  height: clamp(48px, 12vw, var(--logo-size));
}
*/

/* ====== Mobile: Portrait images sizing ====== */
/* 基本方針：縦長写真は高さを55%程度までに抑え、横幅は自動（比率維持） */
body.mobile-single #mobileBook .m-slide.is-portrait img {
  width: auto;                       /* 横幅は自動に（比率維持） */
  height: auto;                      /* 高さはmax-heightで制限 */
  max-height: 55vh;                  /* フォールバック */
  max-height: 55svh;                 /* iOSアドレスバーなどに強い単位 */
  max-width: calc(100% - 16px);      /* 左右8pxの余白を考慮して収める */
  object-fit: contain;               /* 既定と同じく全体を見せる */
}

/* 必要なら “もう少し小さく” などは上の55svhを50svh/60svh などに調整してください */

/* ====== Mobile Single Mode（1枚表示UI）— 追加CSS ====== */
body.mobile-single .book.bound { display: none; }

#mobileBook.mobile-book {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;    /* iOS Safari対策 */
  min-height: 100vh;
  background: #000;
  z-index: 2;
}

/* 横スクロール＋スナップ（1枚ずつ） */
.mobile-book .mobile-track {
  height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overscroll-behavior-x: contain;
}
/* スクロールバー非表示 */
body.mobile-single .mobile-book .mobile-track::-webkit-scrollbar { display: none; }
body.mobile-single .mobile-book .mobile-track { scrollbar-width: none; }

/* スライド本体：左右に余白、下は進捗バー分 */
.m-slide {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px 24px;
}

/* 画像：枠線なし・角丸なし（モバイル） */
.m-slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* テキストスライド（読みやすく） */
.m-slide.text .text-content {
  color: #e6e6e6;
  text-align: center;
  line-height: 1.7;
  font-size: clamp(12px, 2.8vw, 18px);
  padding: 0 18px;
}

/* 進捗インジケーター（薄いグレーの線） */
.mobile-progress {
  position: fixed;
  left: 6vw;
  right: 6vw;
  bottom: 8px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  z-index: 2000; /* ロゴ(3000)より下 */
  pointer-events: none;
}
.mobile-progress .mobile-bar {
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.38);
  border-radius: 2px;
  transition: width 0.12s linear;
}

/* 共有ボタン（対応端末のみ表示される） */
.share-btn {
  position: fixed;
  right: 12px;
  bottom: 44px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 6px;
  font: 14px/1.2 Helvetica, Arial, sans-serif;
  color: #eee;
  z-index: 2500;
  backdrop-filter: blur(6px);
}

/* ====== ロゴ：PC/スマホで同じ“左上”位置＆同マージン（強制上書き） ====== */
:root {
  --logo-size: 100px; /* 既存と同値 */
  --logo-gap: 16px;   /* 既存と同値 */
}
.site-header {
  position: fixed !important;
  top: calc(env(safe-area-inset-top, 0px) + var(--logo-gap)) !important;
  left: calc(env(safe-area-inset-left, 0px) + var(--logo-gap)) !important;
  right: auto !important;
  bottom: auto !important;
  height: auto !important;
  padding: 0 !important;
  z-index: 3000 !important;         /* #mobileBook より前面 */
  display: block !important;        /* 配置を固定（Flexでズレないように） */
  pointer-events: none;             /* 親は無効化 */
}
.site-header > * { pointer-events: auto; } /* 子要素はタップ可 */
.site-header .brand { display: inline-block; margin: 0 !important; line-height: 0; }
.site-header img { height: var(--logo-size); width: auto; display: block; }

/* スマホでもデスクトップでも、ロゴの余白・位置は完全同一 */
@media (max-width: 768px) {
  .site-header { /* 値は同じ。上書きするだけで変えない */ }
}

/* モバイル時はフルスクリーンボタン非表示（安全側の再定義） */
@media (max-width: 768px) {
  #fullscreen-button { display: none !important; }
}

/* ====== Mobile Single Mode（1枚表示UI）— 追加CSS ====== */
body.mobile-single .book.bound { display: none; }

#mobileBook.mobile-book {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;    /* iOS Safari対策 */
  min-height: 100vh;
  background: #000;
  z-index: 2;
}

/* 横スクロール＋スナップ（1枚ずつ） */
.mobile-book .mobile-track {
  height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overscroll-behavior-x: contain;
}
/* スクロールバー非表示 */
body.mobile-single .mobile-book .mobile-track::-webkit-scrollbar { display: none; }
body.mobile-single .mobile-book .mobile-track { scrollbar-width: none; }

/* スライド本体：左右に余白、下は進捗バー分 */
.m-slide {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px 24px;
}

/* 画像：枠線なし・角丸なし（モバイル） */
.m-slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

/* テキストスライド（読みやすく） */
.m-slide.text .text-content {
  color: #e6e6e6;
  text-align: center;
  line-height: 1.7;
  font-size: clamp(12px, 2.8vw, 18px);
  padding: 0 18px;
}

/* 進捗インジケーター（薄いグレーの線） */
.mobile-progress {
  position: fixed;
  left: 6vw;
  right: 6vw;
  bottom: 8px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  z-index: 2000;
  pointer-events: none;
}
.mobile-progress .mobile-bar {
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,0.38);
  border-radius: 2px;
  transition: width 0.12s linear;
}

/* ====== ロゴ：PC/スマホで同じ“左上”位置＆同マージン（強制上書き） ====== */
:root {
  --logo-size: 100px; /* 既存の指定と揃える */
  --logo-gap: 16px;   /* 既存の指定と揃える */
}
.site-header {
  position: fixed !important;
  top: calc(env(safe-area-inset-top, 0px) + var(--logo-gap)) !important;
  left: calc(env(safe-area-inset-left, 0px) + var(--logo-gap)) !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3000 !important;         /* #mobileBook より前面 */
  padding: 0 !important;
  display: block !important;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.site-header .brand { display: inline-block; margin: 0 !important; line-height: 0; }
.site-header img { height: var(--logo-size); width: auto; display: block; }

/* スマホでもデスクトップでもロゴの余白・位置は完全同一（上書きのみ） */
@media (max-width: 768px) {
  .site-header { /* 値は同一。上書きでぶれを無くす */ }
}

/* モバイル時はフルスクリーンボタン非表示（安全側の再定義） */
@media (max-width: 768px) {
  #fullscreen-button { display: none !important; }
}

/* ====== TOPページ：スマホでカバー画像を必ず横幅100%に ====== */
@media (max-width: 768px) {
  .cover-gallery {
    /* 1カラムで画面幅いっぱい＋左右に少し余白 */
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    padding: 0 16px;
    margin: 24px auto 72px; /* 下はフッター分の逃げ */
  }
  .cover-gallery .cover { width: 100%; }
  .cover-gallery .cover img {
    width: 100% !important;   /* ← 横幅100%で必ず収める */
    max-width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;       /* 切れないように収める */
    object-position: center;
  }
}

/* ====== ハンバーガー（スマホのみ表示） ====== */
@media (max-width: 768px) {
  .hamburger {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 12px));
    right: max(12px, env(safe-area-inset-right, 12px));
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.35);
    border-radius: 8px;
    z-index: 3001;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px;
    margin: 6px auto;
    background: #eee;
    transition: transform .2s ease, opacity .2s ease;
  }
  /* 開いた時の「×」アニメ */
  .site-header.menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header.menu-open .hamburger span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* 右スライドのメニュー（既存 .site-nav をスマホ時だけオーバーレイ化） */
  .site-header .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 72vw; max-width: 320px;
    transform: translateX(100%);
    background: rgba(0,0,0,.92);
    padding: 84px 20px 20px;
    border-left: 1px solid rgba(255,255,255,.12);
    transition: transform .25s ease;
    z-index: 3000;
  }
  .site-header.menu-open .site-nav { transform: translateX(0); }

  /* メニュー内のリンク見栄え（既存 .about-link をそのまま使用） */
  .site-header .site-nav .about-link {
    display: block;
    color: #e7e7e7;
    font-size: 15px;
    padding: 12px 2px;
    text-decoration: none;
  }
  .site-header .site-nav .about-link + br { display: none; } /* スマホでは <br> 無しでOK */
}

/* ====== フッターの © をページ下に ====== */
.site-footer {
  text-align: center;
  color: #434343;
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  margin: 24px 0 20px;
}
@media (max-width: 768px) {
  .site-footer { margin: 8px 0 16px; }
}


/* =================== Hamburger/Menu：色と表示条件を統一 =================== */
/* PCでは非表示（ベース） */
#hamburger.hamburger { display: none; }

/* メニューの共通色（バーと文字を同じ色に） */
:root {
  --menu-fg: #434343;        /* グレー本体 */
  --menu-fg-hover: rgb(126, 126, 126);  /* ホバー時の少し明るいグレー */
}

@media (max-width: 768px) {
  /* スマホでのみ表示・配置 */
  #hamburger.hamburger {
    display: block;
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 12px));
    right: max(12px, env(safe-area-inset-right, 12px));
    width: 40px; height: 40px;
    /* 枠線なし指定 */
    border: none; outline: none;
    /* 背景は薄い黒のみ（好みで透明にしてもOK） */
    background: rgba(0,0,0,.35);
    border-radius: 8px;
    z-index: 3001;
  }
  #hamburger.hamburger:focus { outline: none; box-shadow: none; }
  #hamburger.hamburger span {
    display: block; width: 22px; height: 2px;
    margin: 6px auto;
    background: var(--menu-fg);        /* 3本線＝メニュー文字と同じグレー */
    transition: transform .2s ease, opacity .2s ease;
  }
  /* 開いた時の「×」アニメ */
  .site-header.menu-open #hamburger.hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header.menu-open #hamburger.hamburger span:nth-child(2) { opacity: 0; }
  .site-header.menu-open #hamburger.hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* 右スライドメニュー（既存navをオーバーレイ化） */
  .site-header .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 72vw; max-width: 320px;
    transform: translateX(100%);
    background: rgba(0,0,0,.92);
    padding: 84px 20px 20px;
    border-left: 1px solid rgba(255,255,255,.06);
    transition: transform .25s ease;
    z-index: 3000;
  }
  .site-header.menu-open .site-nav { transform: translateX(0); }

  /* メニュー内の文字色＝グレー（白→グレーに統一） */
  .site-header .site-nav .about-link,
  .site-header .site-nav .copyright-notice {
    color: var(--menu-fg);
  }
  .site-header .site-nav .about-link:hover {
    color: var(--menu-fg-hover);
    text-decoration: none;
  }

  /* メニュー内の <br> は不要 */
  .site-header .site-nav .about-link + br { display: none; }
}

/* ===== iPhone Safariで本体が少し下に見える問題を解消 ===== */
/* アルバム（cover-view）とTOPページ（必要なら）で、グローバルの上パディングを無効化 */
body.cover-view {               /* ex: sorairo/index.html などの各写真集ページ */
  padding-top: 0 !important;
}

/* TOPページにも適用したい場合は（お好みで） */
body.top-page {
  padding-top: 0 !important;
}

/* iOSの可変アドレスバーに合わせ、縦センターの基準を"視覚ビューポート"に揃える */
@supports (height: 100svh) {
  html, body { min-height: 100svh; }
}

/* （任意）スマホのTOPギャラリーの上余白を少しだけ残す場合 */
@media (max-width: 768px) {
  .cover-gallery { margin-top: 24px; } /* 既定は60px → 少しだけに */
}

/* 横スクロールの意図を明示 */
body.mobile-single #mobileBook .mobile-track { touch-action: pan-x; }

/* スマホ横向きのときだけ、ロゴを半分サイズにする */
@media (orientation: landscape) and (pointer: coarse) and (max-width: 900px) {
  .site-header img {
    height: calc(var(--logo-size) / 2) !important; /* 100px → 50px */
  }
}