/* ===========================================
   簡易リセット
   =========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===========================================
   カスタムプロパティ
   =========================================== */
:root {
  --color-bg: #0a0f0a;
  --color-overlay: rgba(0, 0, 0, 0.75);
  --color-accent: #20a936;
  --color-text: #ffffff;
  --color-muted: #20a936;
  --color-header-bg: linear-gradient(135deg, #000000 0%, #1a3d1a 100%);
  --color-modal-bg: linear-gradient(
    180deg,
    #0d2818 0%,
    #1a3d2a 50%,
    #0d2818 100%
  );
}

/* ===========================================
   ローディング画面
   =========================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d2818 0%, #1a3d2a 50%, #0d2818 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 1s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-img-wrap {
  position: relative;
  height: 100vh;
}

.loading-img {
  width: auto;
  height: 100%;
  opacity: 0;
  animation: fadeInImage 1.2s ease forwards;
}

.loading-tx {
  position: absolute;
  right: 20%;
  top: 36%;
  transform: translateY(-50%);
  width: 3%;
  opacity: 0;
  animation: fadeInTx 1.2s ease 0.8s forwards;
}

@media (min-width: 769px) {
  .loading-tx {
    right: 12%;
  }
}

.loading-title {
  position: absolute;
  bottom: 15vh;
  width: 80vw;
  max-width: 500px;
  opacity: 0;
  animation: fadeInTitle 1.2s ease 1.6s forwards;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInTx {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes fadeInTitle {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===========================================
   全体・共通
   =========================================== */
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family:
    "Zen Old Mincho",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  background-image: url("../images/bg-image.jpg");
  background-size: cover;
  background-position: center;
}

.app {
  position: relative;
  min-height: 100vh;
  max-width: 768px;
  margin: auto;
  display: flex;
  flex-direction: column;
  background-attachment: fixed;
}

.app::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-overlay);
  z-index: 0;
}

.app > * {
  position: relative;
  z-index: 1;
}

/* ===========================================
   ヘッダー
   =========================================== */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: #000000;
  padding: 0 20px;
  opacity: 0;
}

.header.fade-in {
  animation: headerFadeIn 0.8s ease forwards;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header-logo {
  height: 20px;
  object-fit: contain;
}

/* ===========================================
   位置情報エラー表示
   =========================================== */
.location-error {
  background-color: rgba(220, 53, 69, 0.9);
  color: white;
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 2px solid rgba(220, 53, 69, 1);
}

.location-error p {
  margin: 0;
}

/* ===========================================
   音声ガイド見出し
   =========================================== */
.guide-heading {
  padding: 24px 20px 16px;
  opacity: 0;
  transform: translateY(10px);
}

.guide-heading.fade-in {
  animation: trackFadeIn 0.8s ease forwards;
}

.guide-heading h1 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

/* ===========================================
   トラック一覧
   =========================================== */
.track-list {
  list-style: none;
  padding: 0 24px 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  opacity: 0;
  transform: translateY(10px);
}

.track-item.fade-in {
  animation: trackFadeIn 0.6s ease forwards;
}

@keyframes trackFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.track-number-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--color-accent);
  padding: 6px 10px 6px;
  border-radius: 20px;
  flex-shrink: 0;
}

.track-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.track-number-badge span {
  font-size: 13px;
  font-weight: 600;
  color: white;
  line-height: 1;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  font-size: 18px;
  color: var(--color-text);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-play-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
}

.track-play-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.track-item.playing .track-play-btn {
  border-color: var(--color-accent);
}

/* CSS三角形で再生アイコンを表現 */
.track-play-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent white;
  transform: translateX(5%);
}

/* 再生中は一時停止アイコン（2本の縦線）- 左側 */
.track-item.playing .track-play-btn::before {
  border: none;
  width: 2.5px;
  height: 35%;
  background-color: var(--color-accent);
  transform: translateX(-2px);
}

/* 再生中は一時停止アイコン（2本の縦線）- 右側 */
.track-item.playing .track-play-btn::after {
  content: "";
  width: 2.5px;
  height: 35%;
  background-color: var(--color-accent);
  transform: translateX(2px);
}

/* ===========================================
   モーダル
   =========================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-modal-bg);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.modal.active {
  display: block;
  animation: modalFadeIn 0.6s ease forwards;
}

.modal.closing {
  animation: modalFadeOut 0.5s ease forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3vh 5vw;
  min-height: 100vh;
  gap: 3vh;
  justify-content: center;
}

.modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1vh 0;
  flex-shrink: 0;
}

.modal-logo {
  height: 2.5vh;
  min-height: 18px;
  max-height: 24px;
  object-fit: contain;
}

/* ===========================================
   ジャケット画像
   =========================================== */
.artwork-container {
  width: 70vw;
  max-width: 400px;
  min-width: 200px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.artwork-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2vw;
  box-shadow: 0 2vh 4vh rgba(0, 0, 0, 0.5);
}

/* ===========================================
   トラック情報（モーダル内）
   =========================================== */
.track-info-modal {
  text-align: center;
  width: 100%;
  flex-shrink: 0;
}

.track-number-text {
  font-size: clamp(11px, 1.8vh, 14px);
  color: var(--color-muted);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.5vh;
}

.track-title-text {
  font-size: clamp(16px, 2.5vh, 22px);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

/* ===========================================
   シークバー
   =========================================== */
.seek-container {
  width: 90%;
  max-width: 400px;
  padding: 0 2vw;
  flex-shrink: 0;
}

.seek-bar {
  width: 100%;
  height: clamp(3px, 0.5vh, 5px);
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: clamp(14px, 2vh, 18px);
  height: clamp(14px, 2vh, 18px);
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.3);
}

.seek-bar::-moz-range-thumb {
  width: clamp(14px, 2vh, 18px);
  height: clamp(14px, 2vh, 18px);
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.3);
}

/* ===========================================
   再生コントロール
   =========================================== */
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6vw;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
}

.control-btn {
  width: clamp(40px, 6vh, 56px);
  height: clamp(40px, 6vh, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.control-btn:hover {
  transform: scale(1.1);
}

.control-btn img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.control-btn-main {
  width: clamp(64px, 9vh, 84px);
  height: clamp(64px, 9vh, 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1vh 3vh rgba(32, 169, 54, 0.4);
  position: relative;
  flex-shrink: 0;
}

.control-btn-main:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(32, 169, 54, 0.6);
}

/* 再生アイコン（三角形） */
.control-btn-main::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent white;
  transform: translateX(5%);
}

/* 再生中（一時停止アイコン：2本の縦線）- 左側 */
.control-btn-main.playing::before {
  border: none;
  width: 3px;
  height: 30%;
  background-color: white;
  transform: translateX(-5px);
}

/* 再生中（一時停止アイコン：2本の縦線）- 右側 */
.control-btn-main.playing::after {
  content: "";
  width: 3px;
  height: 30%;
  background-color: white;
  transform: translateX(5px);
}

/* ===========================================
   閉じるボタン
   =========================================== */
.close-modal-btn {
  padding: clamp(8px, 1vh, 10px) clamp(32px, 8vw, 48px);
  background: transparent;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  font-size: clamp(14px, 2vh, 16px);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1vh;
  flex-shrink: 0;
}

.close-modal-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ===========================================
   ミニプレイヤー（画面下部固定）
   =========================================== */
.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 40, 24, 0.95) 0%,
    rgba(10, 30, 18, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(32, 169, 54, 0.3);
  z-index: 999;
  padding: 12px 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: block;
  pointer-events: none;
}

.mini-player.show {
  opacity: 1;
  pointer-events: auto;
}

.mini-player.hide {
  opacity: 0;
  pointer-events: none;
}

.mini-player:hover {
  background: linear-gradient(
    180deg,
    rgba(13, 40, 24, 1) 0%,
    rgba(10, 30, 18, 1) 100%
  );
}

.mini-player-content {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.mini-player-artwork {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.mini-player-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-player-number {
  font-size: 10px;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.mini-player-title {
  font-size: 14px;
  color: white;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-play-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
}

.mini-play-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* 再生アイコン（三角形） */
.mini-play-btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent white;
  transform: translateX(5%);
}

/* 再生中は一時停止アイコン（2本の縦線）- 左側 */
.mini-play-btn.playing::before {
  border: none;
  width: 2.5px;
  height: 35%;
  background-color: white;
  transform: translateX(-2px);
}

/* 再生中は一時停止アイコン（2本の縦線）- 右側 */
.mini-play-btn.playing::after {
  content: "";
  width: 2.5px;
  height: 35%;
  background-color: white;
  transform: translateX(2px);
}

/* ===========================================
   位置情報エラーポップアップ
   =========================================== */
.location-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-modal.show {
  display: block;
  opacity: 1;
}

.location-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.location-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(13, 40, 24, 0.98) 0%,
    rgba(10, 30, 18, 0.98) 100%
  );
  border: 1px solid rgba(32, 169, 54, 0.3);
  border-radius: 12px;
  padding: 32px 24px;
  max-width: 400px;
  width: 85vw;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.location-modal-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  animation: gpsFloat 2s ease-in-out infinite;
}

@keyframes gpsFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.location-modal-title {
  font-size: clamp(18px, 3vh, 22px);
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.location-modal-message {
  font-size: clamp(14px, 2vh, 16px);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.location-modal-btn {
  padding: 12px 48px;
  background: var(--color-accent);
  border: none;
  border-radius: 24px;
  color: white;
  font-size: clamp(15px, 2vh, 17px);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.location-modal-btn:hover {
  background: #28c244;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(32, 169, 54, 0.4);
}

/* ===========================================
   レスポンシブ対応
   =========================================== */
@media (min-width: 768px) {
  .track-list {
    max-width: 600px;
    margin: 0 auto;
  }

  .controls {
    gap: 8vw;
  }
}

@media (min-width: 1024px) {
  .modal-content {
    padding: 4vh 6vw;
  }

  .controls {
    gap: 10vw;
    max-gap: 80px;
  }
}

/* ===========================================
   小野武久ページ
   =========================================== */

/* ページ全体 */
.ono-page {
  min-height: 100vh;
  position: relative;
}

.ono-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../onotakehisa/images/ono-portrait.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(var(--page-blur, 0px));
  z-index: -1;
  pointer-events: none;
}

/* ===========================================
   ヒーローセクション
   =========================================== */
.ono-hero {
  position: relative;
  padding-top: 65vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ono-hero-image {
  display: none;
}

.ono-hero-content {
  position: relative;
  z-index: 1;
  padding: 24px 20px 40px;
}

.ono-hero-label {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ono-hero-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.ono-hero-name {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.ono-hero-years {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

.ono-hero-ruby {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.ono-hero-description {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* タイムライン */
.ono-timeline {
  background-color: #006a32;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ono-timeline-item {
  display: flex;
  gap: 16px;
}

.ono-timeline-year {
  font-size: 13px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  width: 56px;
}

.ono-timeline-text {
  font-size: 13px;
  color: white;
  line-height: 1.6;
}

/* ===========================================
   ギャラリーセクション
   =========================================== */
.ono-gallery-section {
  padding: 40px 20px 60px;
}

.ono-gallery-title {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.ono-gallery-description {
  font-size: 14px;
  color: #999999;
  margin-bottom: 32px;
}

/* ギャラリーグリッド */
.ono-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ギャラリーアイテム */
.ono-gallery-item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.ono-gallery-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 8px;
}

.ono-gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* モーダル対象のホバー */
.ono-modal-target {
  cursor: pointer;
}

.ono-modal-target .ono-gallery-image-wrap:hover .ono-gallery-image {
  transform: scale(1.05);
}

.ono-gallery-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

.ono-gallery-item-author {
  font-size: 12px;
  color: #a9a9a9;
  line-height: 1.4;
}

/* ===========================================
   ギャラリーモーダル
   =========================================== */
.ono-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
}

.ono-modal.show {
  display: block;
  animation: modalFadeIn 0.8s ease forwards;
}

.ono-modal.closing {
  animation: modalFadeOut 0.6s ease forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.ono-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ono-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  opacity: 0;
}

.ono-modal.show .ono-modal-content {
  animation: modalContentIn 1.2s ease 0.3s forwards;
}

@keyframes modalContentIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0px);
  }
}

.ono-modal-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ono-modal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ono-modal-title {
  font-size: 20px;
  font-weight: 500;
  color: white;
  text-align: center;
  margin: 0;
}

.ono-modal-author {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0;
}

.ono-modal-close {
  padding: 12px 48px;
  background: transparent;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ono-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ===========================================
   小野武久ページ - PC対応
   =========================================== */
/* ===========================================
   小野武久ページ - PC対応（769px以上）
   =========================================== */
@media (min-width: 769px) {
  /* ページ全体を左右に分割 */
  .ono-page {
    display: flex;
    min-height: 100vh;
  }

  /* 背景ぼかしをPCでは無効化 */
  .ono-page::before {
    display: none;
  }

  /* 左側: KV + プロフィール（600px固定） */
  .ono-hero {
    position: fixed;
    left: 0;
    top: 0;
    width: 600px;
    height: 100vh;
    padding-top: 0;
    min-height: 100vh;
    background-image: url("../onotakehisa/images/ono-portrait.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow-y: auto;
  }

  .ono-hero-content {
    padding: 60px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .ono-hero-name {
    font-size: 36px;
  }

  .ono-hero-label {
    font-size: 13px;
  }

  .ono-hero-ruby {
    font-size: 13px;
  }

  .ono-hero-years {
    font-size: 15px;
  }

  .ono-hero-description {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .ono-timeline {
    padding: 24px;
  }

  .ono-timeline-year {
    font-size: 13px;
    width: 60px;
  }

  .ono-timeline-text {
    font-size: 13px;
  }

  /* 右側: ギャラリー（可変幅） */
  .ono-gallery-section {
    margin-left: 600px;
    width: calc(100% - 600px);
    padding: 60px 40px 80px;
    background-color: #000000;
    min-height: 100vh;
  }

  .ono-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ono-gallery-title {
    font-size: 32px;
  }

  .ono-gallery-item-title {
    font-size: 14px;
  }

  .ono-gallery-item-author {
    font-size: 12px;
  }

  .ono-modal-content {
    max-width: 600px;
    gap: 24px;
  }

  .ono-modal-image {
    max-width: 500px;
  }

  .ono-modal-title {
    font-size: 24px;
  }

  .ono-modal-author {
    font-size: 16px;
  }
}

/* より大きい画面（1200px以上） */
@media (min-width: 1200px) {
  .ono-hero-content {
    padding: 20px 30px;
  }

  .ono-hero-name {
    font-size: 40px;
  }

  .ono-hero-description {
    font-size: 16px;
  }

  .ono-gallery-section {
    padding: 80px 60px 100px;
  }

  .ono-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .ono-gallery-title {
    font-size: 36px;
  }

  .ono-gallery-item-title {
    font-size: 15px;
  }

  .ono-gallery-item-author {
    font-size: 13px;
  }
}
