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

:root {
  --red: #e31617;
  --dark-red: #b80e14;
  --green: #00744d;
  --yellow: #ffff00;
  --dark-yellow: #fab300;
  --cream: #fdf6ee;
  --white: #ffffff;
}

body {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  color: #333;
  overflow-x: hidden;
  background: #fff;
  min-width: 320px;
}

img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
.header {
  background: var(--red);
  position: relative;
  padding: 14vh 20px 14vh;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  padding-top: max(14vh, env(safe-area-inset-top));
  text-align: center;
  overflow: hidden;
}

.header-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 180px;
  width: auto;
  height: auto;
  z-index: 2;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}

/* モッズー：位置はラッパー、アニメは画像 */
.header-bird-wrap {
  position: absolute;
  left: calc(50% - 370px);
  top: 10vh;
  transform: translateX(-50%);
  z-index: 1;
}

.header-bird {
  width: 150px;
  height: auto;
  /* border-radius: 50%; */
  display: block;
  /* ページ読み込み完了まで非表示（開始フレームと同じ） */
  opacity: 0;
  transform: translate(-140px, -120px) scale(0.85);
}

html.is-page-loaded .header-bird {
  animation: headerBirdIn 1.15s ease-out forwards;
}

@keyframes headerBirdIn {
  0% {
    opacity: 0;
    transform: translate(-140px, -120px) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-bird {
    opacity: 0;
    transform: none;
  }
  html.is-page-loaded .header-bird {
    animation: headerBirdInReduced 0.35s ease-out forwards;
  }
}

@keyframes headerBirdInReduced {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===== MESSAGE SECTION ===== */
.message-section {
  background: #fff;
  padding: 60px 20px 0px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  top: -5px;
  margin-bottom: 5px;
}

.message-section h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 24px;
  line-height: 1.6;
}

.message-section p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 900;
  color: var(--red);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: #fff;
  padding: 50px 20px 60px;
}

.video-main {
  max-width: 900px;
  margin: 0 auto 30px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 738/415;
  background: #000;
}

.video-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-main iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-btn::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--red);
  margin-left: 4px;
}

.video-sub-row {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.video-sub {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.video-sub img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-sub .play-btn {
  width: 50px;
  height: 50px;
}
.video-sub .play-btn::after {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--red);
  margin-left: 3px;
}

/* ===== WAVE DIVIDER ===== */
.wave-wrapper {
  position: relative;
  height: 40px;
  overflow: hidden;
  margin: -3px 0;
}
.wave-wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: waveScroll 12s linear infinite;
}
@keyframes waveScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wave-red-to-cream {
  background: var(--red);
}
.wave-red-to-cream svg path { fill: #fff; }
.wave-white-to-green {
  background: #fff;
}
.wave-white-to-green svg path { fill: var(--green); }
.wave-green-to-red {
  background: var(--green);
}
.wave-green-to-red svg path { fill: var(--red); }
.wave-red-to-yellow {
  background: var(--red);
}
.wave-red-to-yellow svg path {fill: var(--dark-yellow);}

/* ===== CHARACTER SECTION ===== */
.character-section {
  background: var(--green);
  padding: 30px 20px 48px;
  text-align: center;
  position: relative;
}

.section-label {
  font-size: 14px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 0px;
}

.character-area {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  max-width: 960px;
  margin: 0 auto;
  gap: 0;
  position: relative;
}

.character-text-left,
.character-text-right {
  padding-bottom: 64px;
}

.character-text-left {
  text-align: left;
  justify-self: start;
  max-width: 200px;
}

.character-text-right {
  text-align: left;
  justify-self: end;
  max-width: 200px;
}

.character-text-left h3,
.character-text-right h3 {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.character-text-left p,
.character-text-right p {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  line-height: 1.9;
  font-weight: 900;
}

.character-images {
  position: relative;
  width: 360px;
  min-height: 320px;
  margin: 0 auto;
}

.character-images .character-img-modzu,
.character-images .character-img-kidzu {
  position: absolute;
  bottom: 0;
  height: 320px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.character-images .character-img-modzu {
  left: -41%;
  width: 390px;
}

.character-images .character-img-kidzu {
  right: -25%;
  width: 290px;
}

/* ===== INTRODUCTION SECTION ===== */
.intro-section {
  background: var(--red);
  padding: 60px 20px 70px;
  text-align: center;
  position: relative;
}

.intro-section .section-label {
  color: var(--yellow);
}
.intro-section .section-title {
  color: var(--yellow);
  margin-bottom: 40px;
}

.intro-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.team-lead {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  flex-shrink: 0;
}

.team-lead img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.team-lead-info {
  max-width: 260px;
}

.team-lead-info .role {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 900;
  margin-bottom: 2px;
}
.team-lead-info .name {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.team-lead-info p {
  font-size: 13px;
  color: rgba(255,255,255,1);
  line-height: 1.8;
  font-weight: 900;
}

.team-lead-link {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.8;
  color: rgba(255, 255, 255, 1);
}
.team-lead-link a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}
.team-lead-link a:hover {
  opacity: 0.85;
}
.team-lead-link a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.intro-making {
  max-width: 600px;
  margin: 48px auto 0;
  padding: 0 20px;
}
.intro-making-label {
  font-size: 16px;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 16px;
  text-align: center;
}

.team-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.team-card {
  text-align: center;
  width: 130px;
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.team-card .role {
  font-size: 12px;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 900;
}

.team-card .name {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 5px;
}

/* ===== LYRICS SECTION ===== */
.lyrics-section {
  background: var(--red);
  padding: 30px 0 80px;
  text-align: center;
  overflow: hidden;
  position: relative;
  top: -5px;
  /* bottom: -5px; */
  margin-bottom: -10px;
}

.lyrics-text-track {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 10px 0;
}

.lyrics-text {
  display: flex;
  width: max-content;
  animation: lyricsScroll 20s linear infinite;
  padding: 0 20px;
  opacity: 0.3;
}

.lyrics-text span {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
  letter-spacing: 2px;
}

@keyframes lyricsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 転がる写真の背後：薄い白の丸（別サイズ・ゆっくり右→左） */
.lyrics-circles-bg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 10px 0;
  animation: photosScrollBg 60s linear infinite;
  pointer-events: none;
}

.lyrics-circles-bg span {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff38;
}

@keyframes photosScrollBg {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(-50%); }
}

.lyrics-photos {
  position: relative;
  z-index: 1;
  display: flex;
  animation: photosScroll 38s linear infinite;
  width: max-content;
  gap: 30px;
  padding: 10px 0;
}

.lyrics-photos img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  animation: photoSpin 20s linear infinite;
}
.lyrics-photos img:nth-child(even) {
  animation-duration: 26s;
  animation-direction: reverse;
}

@keyframes photosScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes photoSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--dark-yellow);
  padding: 60px 20px 80px;
  text-align: center;
  /* margin-top: -3px; */
  position: relative;
  top: -2px;
  margin-bottom: -6px;
}

.gallery-section .section-label {
  color: var(--red);
}
.gallery-section .section-title {
  color: var(--red);
  margin-bottom: 8px;
}

.gallery-desc {
  font-size: 15px;
  font-weight: 900;
  /* color: var(--cream); */
  margin-bottom: 30px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.gallery-grid a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* hover: 暗いオーバーレイ */
.gallery-grid a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

/* hover: 中央のダウンロードアイコン */
.gallery-grid a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(22px, 9vw, 36px);
  height: clamp(22px, 9vw, 36px);
  background: url('img/ico_dl.webp') center center / contain no-repeat;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.gallery-grid a:hover::before,
.gallery-grid a:hover::after {
  opacity: 1;
}

.gallery-grid a:hover {
  transform: scale(1.05);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.is-open {
  display: flex;
}
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.video-modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  background: #000;
}
.video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.video-modal-close:hover {
  background: rgba(255,255,255,0.3);
}
.video-modal-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-red);
  padding: 30px 20px;
  padding-bottom: max(30px, env(safe-area-inset-bottom));
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}
.footer-copy {
  margin-bottom: 0;
}
.footer-legal {
  margin-top: 16px;
  font-size: 10px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
/* タブレット */
@media (max-width: 991.98px) {
  .header {
    padding: 10vh 16px 10vh;
  }
  .header-bird-wrap {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header-bird {
    width: 120px;
  }
  .header-badge {
    top: 20px;
    right: 20px;
    max-width: 160px;
  }
  .message-section {
    padding: 48px 16px 0;
  }
  .message-section h1 {
    font-size: 22px;
  }
  .message-section p {
    font-size: 15px;
  }
  .video-section {
    padding: 40px 16px 48px;
  }
  .video-main {
    margin-bottom: 20px;
  }
  .video-sub-row {
    gap: 20px;
  }
  .character-area {
    gap: 16px;
  }
  .character-text-left,
  .character-text-right {
    max-width: 180px;
    padding-bottom: 48px;
  }
  .character-text-left h3,
  .character-text-right h3 {
    font-size: 20px;
  }
  .character-text-left p,
  .character-text-right p {
    font-size: 12px;
  }
  .character-images {
    width: 320px;
    min-height: 280px;
  }
  .character-images .character-img-modzu,
  .character-images .character-img-kidzu {
    height: 280px;
  }
  .character-images .character-img-modzu {
    left: -35%;
    width: 340px;
  }
  .character-images .character-img-kidzu {
    right: -22%;
    width: 260px;
  }
  .intro-section {
    padding: 48px 16px 56px;
  }
  .intro-layout {
    gap: 32px;
    max-width: 100%;
    padding: 0 16px;
  }
  .team-lead img {
    width: 160px;
    height: 160px;
  }
  .team-lead-info {
    max-width: 240px;
  }
  .team-lead-info .name {
    font-size: 24px;
  }
  .team-grid {
    gap: 20px;
  }
  .team-card {
    width: 120px;
  }
  .team-card img {
    width: 110px;
    height: 110px;
  }
  .gallery-section {
    padding: 48px 16px 64px;
  }
  .gallery-grid {
    gap: 12px;
    padding: 0 16px;
  }
}

/* スマートフォン */
@media (max-width: 767.98px) {
  .header {
    padding: 8vh 12px 8vh;
  }
  .header-bird-wrap {
    left: 12px;
    top: auto;
    bottom: 16px;
    transform: none;
  }
  .header-bird {
    width: 80px;
  }
  .header-badge {
    top: 12px;
    right: 12px;
    max-width: 130px;
  }
  .header-logo {
    padding: 0 8px;
  }
  .wave-wrapper {
    height: 32px;
  }
  .message-section {
    padding: 32px 12px 0;
  }
  .message-section h1 {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .message-section p {
    font-size: 14px;
    line-height: 1.75;
  }
  .video-section {
    padding: 32px 12px 40px;
  }
  .video-main {
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .video-sub-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .video-sub {
    border-radius: 16px;
  }
  .play-btn {
    width: 56px;
    height: 56px;
  }
  .play-btn::after {
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid var(--red);
    margin-left: 3px;
  }
  .video-sub .play-btn {
    width: 44px;
    height: 44px;
  }
  .video-sub .play-btn::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid var(--red);
  }
  .section-label {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .character-section {
    padding: 24px 12px 40px;
  }
  .character-area {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    max-width: 100%;
    padding: 0 12px;
  }
  .character-text-left {
    order: 1;
    justify-self: center;
    text-align: center;
    max-width: 100%;
    padding-bottom: 16px;
  }
  .character-images {
    order: 2;
    width: 100%;
    max-width: 280px;
    min-height: 220px;
    margin: 0 auto 16px;
  }
  .character-images .character-img-modzu,
  .character-images .character-img-kidzu {
    height: 220px;
  }
  .character-images .character-img-modzu {
    left: -30%;
    width: 260px;
  }
  .character-images .character-img-kidzu {
    right: -25%;
    width: 200px;
  }
  .character-text-right {
    order: 3;
    justify-self: center;
    text-align: center;
    max-width: 100%;
    padding-bottom: 24px;
  }
  .character-text-left h3,
  .character-text-right h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .character-text-left p,
  .character-text-right p {
    font-size: 12px;
  }
  .intro-section {
    padding: 40px 12px 48px;
  }
  .intro-section .section-title {
    margin-bottom: 28px;
  }
  .intro-layout {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 12px;
  }
  .team-lead {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team-lead img {
    width: 140px;
    height: 140px;
  }
  .team-lead-info {
    max-width: 100%;
  }
  .team-lead-info .name {
    font-size: 22px;
  }
  .team-lead-info p {
    font-size: 12px;
  }
  .team-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .team-card {
    width: 110px;
  }
  .team-card img {
    width: 100px;
    height: 100px;
  }
  .team-card .name {
    font-size: 16px;
  }
  .intro-making {
    margin-top: 32px;
    padding: 0 12px;
  }
  .intro-making-label {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .footer-legal {
    font-size: 9px;
    text-align: left;
  }
  .lyrics-section {
    padding: 24px 0 56px;
  }
  .lyrics-text-track {
    padding: 8px 0;
  }
  .lyrics-text span {
    font-size: 16px;
  }
  .lyrics-circles-bg span {
    width: 140px;
    height: 140px;
  }
  .lyrics-circles-bg {
    gap: 24px;
  }
  .lyrics-photos {
    gap: 20px;
    padding: 8px 0;
  }
  .lyrics-photos img {
    width: 140px;
    height: 140px;
  }
  .gallery-section {
    padding: 40px 12px 56px;
  }
  .gallery-section .section-title {
    margin-bottom: 4px;
  }
  .gallery-desc {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;
  }
  .gallery-grid a {
    border-radius: 8px;
  }
  .footer {
    padding: 24px 12px;
    font-size: 11px;
  }
  .video-modal {
    padding: 12px;
  }
  .video-modal-close {
    top: -40px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .video-modal-title {
    font-size: 14px;
    margin-top: 10px;
  }
}

/* 小型スマートフォン */
@media (max-width: 575.98px) {
  .header {
    padding: 6vh 10px 6vh;
  }
  .header-bird-wrap {
    left: 8px;
    bottom: 12px;
  }
  .header-bird {
    width: 64px;
  }
  .header-badge {
    top: 8px;
    right: 8px;
    max-width: 110px;
  }
  .message-section h1 {
    font-size: 16px;
  }
  .message-section p {
    font-size: 13px;
  }
  .section-title {
    font-size: 20px;
  }
  .character-images {
    max-width: 240px;
    min-height: 180px;
  }
  .character-images .character-img-modzu,
  .character-images .character-img-kidzu {
    height: 180px;
  }
  .character-images .character-img-modzu {
    width: 220px;
    left: -28%;
  }
  .character-images .character-img-kidzu {
    width: 170px;
    right: -22%;
  }
  .team-lead img {
    width: 120px;
    height: 120px;
  }
  .team-card {
    width: 100px;
  }
  .team-card img {
    width: 90px;
    height: 90px;
  }
  .team-card .name {
    font-size: 14px;
  }
  .lyrics-text span {
    font-size: 14px;
  }
  .lyrics-circles-bg span {
    width: 100px;
    height: 100px;
  }
  .lyrics-circles-bg {
    gap: 16px;
  }
  .lyrics-photos img {
    width: 100px;
    height: 100px;
  }
  .gallery-grid {
    gap: 8px;
  }
}

/* 極小画面 */
@media (max-width: 374.98px) {
  .header-badge {
    max-width: 96px;
  }
  .header-logo-img {
    max-width: 90%;
  }
  .message-section h1 {
    font-size: 15px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .team-grid {
    gap: 12px;
  }
  .team-card {
    width: 90px;
  }
  .team-card img {
    width: 80px;
    height: 80px;
  }
}
