@charset "UTF-8";
/* ==========================================================
   ○○○ OFFICIAL SITE — style.css
   コンセプト：「王道かわいい」
   ブレイクポイント：SP ~767px / TB 768~1023px / PC 1024px~
   ========================================================== */

:root {
  --color-main:   #F47FB2; /* メイン：ピンク */
  --color-sub:    #1F2D5C; /* サブ：ネイビー */
  --color-accent: #FCE4EF; /* アクセント：淡ピンク */
  --color-bg:     #FFFFFF;
  --color-text:   #333333;

  --font-base: "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Yu Gothic", "Noto Sans JP", "Meiryo", sans-serif;

  --header-height: 64px;
  --radius: 16px;
  --shadow-soft: 0 6px 24px rgba(31, 45, 92, 0.08);
  --shadow-hover: 0 10px 32px rgba(244, 127, 178, 0.25);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--color-main);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 16px rgba(31, 45, 92, 0.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-height);
  padding: 0 16px;
}
.site-header__logo img { height: 40px; width: auto; }
.site-header__logo-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--color-main);
  text-shadow: 0 1px 6px rgba(255, 255, 255, 0.8);
  transition: color 0.35s ease;
}
.site-header.is-scrolled .site-header__logo-text { color: var(--color-main); }

/* PCナビ（SPでは非表示） */
.global-nav { display: none; }

/* ヘッダーSNS（SPでは非表示、ドロワー内に表示） */
.header-sns { display: none; }

/* ハンバーガー */
.hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-sub);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* SPドロワー */
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 24px 24px 48px;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__list li + li { border-top: 1px solid var(--color-accent); }
.mobile-menu__list a {
  display: block;
  padding: 14px 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-sub);
}
.mobile-menu__sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.mobile-menu__sns a {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-main);
}
.mobile-menu__sns svg { width: 20px; height: 20px; }

/* ==========================================================
   FIRST VIEW
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: auto;          /* SP：横幅基準・画像比率を維持し左右を切らない */
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 12%;
  background: linear-gradient(to bottom, rgba(31,45,92,0) 55%, rgba(31,45,92,0.35) 100%);
}
.hero__logo { width: min(60%, 360px); filter: drop-shadow(0 4px 16px rgba(31,45,92,0.4)); }
.hero__logo-text {
  color: #fff;
  font-size: clamp(28px, 7vw, 56px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 16px rgba(31, 45, 92, 0.5);
}
.hero__scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3em;
  opacity: 0.9;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ==========================================================
   共通セクション
   ========================================================== */
.section { padding: 64px 0; }
.section--news     { background: var(--color-bg); }
.section--schedule { background: var(--color-accent); }
.section--movie    { background: var(--color-bg); }

.section__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section__title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--color-sub);
  margin-bottom: 40px;
  position: relative;
}
.section__title-ja {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-main);
  margin-top: 4px;
  font-weight: 600;
}
.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-main);
  margin: 12px auto 0;
}
.section__empty {
  text-align: center;
  color: #888;
  padding: 32px 0;
}
.section__more { text-align: center; margin-top: 40px; }

.btn-more {
  display: inline-block;
  min-width: 200px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--color-main);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.btn-more:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: #f068a5;
}

/* ==========================================================
   NEWS
   ========================================================== */
.news-list { display: grid; gap: 12px; }
.news-card {
  background: #fff;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.news-card__link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px 12px;
  padding: 16px 20px;
}
.news-card__date {
  font-size: 13px;
  color: var(--color-sub);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.news-card__category {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-main);
  background: var(--color-accent);
  border-radius: 999px;
  padding: 2px 12px;
  white-space: nowrap;
}
.news-card__title {
  grid-column: 1 / -1;
  font-size: 15px;
  font-weight: 600;
}

/* ==========================================================
   SCHEDULE
   ========================================================== */
.schedule-embed iframe {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.schedule-list { display: grid; gap: 12px; }
.schedule-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
}
.schedule-card__date {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
}
.schedule-card__md { font-size: 16px; font-weight: 700; line-height: 1.2; }
.schedule-card__wd { font-size: 11px; }
.schedule-card__title { font-weight: 700; font-size: 15px; }
.schedule-card__venue { font-size: 13px; color: #777; margin-top: 2px; }

/* ==========================================================
   MOVIE（循環スライダー）
   ========================================================== */
.movie-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.movie-slider__viewport { overflow: hidden; flex: 1; }
.movie-slider__track {
  display: flex;
  transition: transform 0.45s ease;
}
.movie-slide {
  flex: 0 0 100%;         /* SP：1件表示 */
  padding: 0 8px;
}
.movie-slide__link { display: block; }
.movie-slide__thumb {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}
.movie-slide__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.movie-slide__link:hover .movie-slide__thumb img { transform: scale(1.05); }
.movie-slide__title {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.movie-slider__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--color-sub);
  color: #fff;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
  transition: background-color 0.25s ease;
}
.movie-slider__arrow:hover { background: var(--color-main); }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--color-sub);
  color: #fff;
  padding: 56px 0 32px;
}
.site-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.site-footer__logo img { height: 48px; width: auto; margin: 0 auto; }
.site-footer__logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
.site-footer__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 28px 0;
}
.site-footer__sns a {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.site-footer__sns a:hover { background: var(--color-main); }
.site-footer__sns svg { width: 20px; height: 20px; }

.site-footer__nav ul,
.site-footer__legal ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.site-footer__nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
.site-footer__legal { margin-top: 24px; }
.site-footer__legal a { font-size: 11px; opacity: 0.7; }
.site-footer__nav a:hover,
.site-footer__legal a:hover { opacity: 1; color: var(--color-main); }

.site-footer__copy {
  margin-top: 32px;
  font-size: 11px;
  opacity: 0.6;
  letter-spacing: 0.08em;
}

/* ==========================================================
   タブレット：768px〜
   ========================================================== */
@media (min-width: 768px) {
  .section { padding: 88px 0; }
  .news-card__link {
    grid-template-columns: auto auto 1fr;
  }
  .news-card__title { grid-column: auto; }
}

/* ==========================================================
   PC：1024px〜
   ========================================================== */
@media (min-width: 1024px) {
  :root { --header-height: 80px; }

  /* ヘッダー：PCナビ表示、ハンバーガー非表示 */
  .hamburger, .mobile-menu { display: none; }

  /* ロゴを左端に固定、ナビ・SNSを右寄せ */
  .site-header__inner { justify-content: flex-start; }
  .site-header__logo { order: 1; }
  .global-nav { display: block; order: 2; margin-left: auto; }
  .header-sns { order: 3; }

  .global-nav__list {
    display: flex;
    gap: 24px;
  }
  .global-nav__list a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-sub);
    text-shadow: 0 1px 6px rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 4px 0;
  }
  .global-nav__list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-main);
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }
  .global-nav__list a:hover::after { transform: scaleX(1); }

  .header-sns {
    display: flex;
    gap: 12px;
  }
  .header-sns a {
    display: grid;
    place-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-main);
    transition: background-color 0.25s ease, color 0.25s ease;
  }
  .header-sns a:hover { background: var(--color-main); color: #fff; }
  .header-sns svg { width: 16px; height: 16px; }

  /* ヒーロー：画面全体を覆う（PCは従来どおり） */
  .hero__image {
    height: 100svh;
    min-height: 600px;
    object-fit: cover;
  }

  /* MOVIE：3件表示 */
  .movie-slide { flex: 0 0 calc(100% / 3); }
}

/* ==========================================================
   NEWS一覧・詳細ページ（news.php / news_detail.php）
   ========================================================== */

/* ページ共通ヘッダー帯 */
.page { padding-top: var(--header-height); }
.page__head {
  background: var(--color-accent);
  padding: 48px 0;
  text-align: center;
}
.page__title {
  font-size: 30px;
  letter-spacing: 0.14em;
  color: var(--color-sub);
  margin: 0;
}
.page__title-ja {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-main);
  margin-top: 6px;
  font-weight: 600;
}
.section__inner--narrow { max-width: 760px; }

/* ---- 一覧 ---- */
.news-index {
  border-top: 1px solid var(--color-accent);
}
.news-index__item { border-bottom: 1px solid var(--color-accent); }
.news-index__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 20px 12px;
  transition: background-color 0.2s ease;
}
.news-index__link:hover { background: rgba(252, 228, 239, 0.5); }
.news-index__date {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-sub);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.news-index__pin {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--color-main);
  border-radius: 999px;
  padding: 2px 10px;
  letter-spacing: 0.08em;
}
.news-index__category {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-main);
  flex-shrink: 0;
}
.news-index__title {
  font-size: 15px;
  font-weight: 500;
  width: 100%;
}

@media (min-width: 768px) {
  .news-index__title { width: auto; flex: 1; }
}

/* ---- ページネーション ---- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination__num,
.pagination__arrow {
  display: grid;
  place-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-sub);
  background: #fff;
  border: 1px solid var(--color-accent);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pagination__num:hover,
.pagination__arrow:hover { background: var(--color-accent); }
.pagination__num.is-current {
  background: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}
.pagination__ellipsis { color: #aaa; padding: 0 4px; }

/* ==========================================================
   記事本文（詳細ページ）
   ========================================================== */
.post { padding: 56px 0 72px; }
.post__header { margin-bottom: 32px; }
.post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.post__date {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-sub);
  letter-spacing: 0.05em;
}
.post__category {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-main);
  background: var(--color-accent);
  border-radius: 999px;
  padding: 3px 14px;
}
.post__title {
  font-size: 26px;
  line-height: 1.6;
  color: var(--color-sub);
  font-weight: 700;
}
.post__thumbnail {
  margin: 0 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
}
.post__thumbnail img { width: 100%; height: auto; }

/* 本文の各要素 */
.post__body { font-size: 16px; line-height: 2; }
.post-h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-sub);
  margin: 48px 0 16px;
  padding-left: 14px;
  border-left: 5px solid var(--color-main);
}
.post-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-sub);
  margin: 36px 0 12px;
}
.post-p { margin: 0 0 24px; }
.post-list { margin: 0 0 24px; padding-left: 1.5em; }
.post-list li { margin-bottom: 8px; list-style: revert; }
.post-quote {
  margin: 0 0 24px;
  padding: 16px 20px;
  background: var(--color-accent);
  border-radius: 8px;
  color: #555;
  font-style: italic;
}
.post-quote__cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-style: normal;
  color: #888;
}
.post-hr {
  border: 0;
  border-top: 2px dotted var(--color-accent);
  margin: 40px 0;
}
.post-figure { margin: 0 0 24px; }
.post-figure img { width: 100%; height: auto; border-radius: var(--radius); }
.post-figure__cap {
  margin-top: 8px;
  font-size: 13px;
  color: #888;
  text-align: center;
}
.post__body a { color: var(--color-main); text-decoration: underline; }
.post-button-wrap { text-align: center; margin: 0 0 24px; }
.post-button {
  display: inline-block;
  min-width: 220px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--color-main);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* 埋め込み（YouTube / X / Map） */
.post-embed { margin: 0 0 24px; }
.post-embed--video,
.post-embed--map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}
.post-embed--video iframe,
.post-embed--map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.post-embed--tweet { display: flex; justify-content: center; }

/* SNSシェア */
.post__share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--color-accent);
}
.post__share-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-sub);
}
.share-list { display: flex; gap: 12px; }
.share-btn {
  position: relative;
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--color-accent);
  color: var(--color-sub);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.share-btn:hover { background: var(--color-main); color: #fff; }
.share-btn svg { width: 20px; height: 20px; }
.share-btn__tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  background: var(--color-sub);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.share-btn--copy:hover .share-btn__tip,
.share-btn--copy:focus .share-btn__tip { opacity: 1; }

.post__back { text-align: center; margin-top: 56px; }

@media (min-width: 768px) {
  .post__title { font-size: 30px; }
}

/* ==========================================================
   PROFILE 一覧・詳細（改善版）
   ========================================================== */

/* ---- グループ紹介 ---- */
.group-photo {
  margin: 0 0 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.group-photo img { width: 100%; height: auto; }
.group-intro {
  font-size: 15px;
  line-height: 2.1;
  text-align: center;
  color: #4a4a4a;
  max-width: 640px;
  margin: 0 auto;
}

.section--members { background: var(--color-bg); }

/* ==========================================================
   メンバー一覧グリッド
   PC：1行3名・カード幅約255px・写真2:3（255×382）・横余白約45px
   SP：2列
   ========================================================== */
.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}
@media (min-width: 1024px) {
  .member-grid {
    grid-template-columns: repeat(3, 255px);
    justify-content: center;
    gap: 56px 45px;      /* 上下56px / 左右45px */
  }
}

.member-card { text-align: center; }

.member-card__link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-card__link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.member-card__photo {
  display: block;
  position: relative;
  aspect-ratio: 2 / 3;     /* 縦2:3（255×382相当） */
  overflow: hidden;
  background: #fff;
}
.member-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.member-card__link:hover .member-card__photo img { transform: scale(1.05); }
.member-card__noimg { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-accent), #fff); }

.member-card__body {
  padding: 16px 8px 4px;
}
.member-card__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-sub);
  letter-spacing: 0.06em;
}
.member-card__color {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.member-card__sns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}
.member-card__sns a {
  display: grid;
  place-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: var(--color-sub);
  transition: color 0.2s ease, transform 0.2s ease;
}
.member-card__sns a:hover { color: var(--color-main); transform: translateY(-2px); }
.member-card__sns svg { width: 17px; height: 17px; }

/* ==========================================================
   メンバー詳細（写真を主役に・メリハリのある情報）
   ========================================================== */
.member { padding: 64px 0 88px; }

/* 詳細ページ専用コンテナ（自己紹介が読みやすい幅を確保） */
.member-container { max-width: 980px; }

.member-detail { display: grid; gap: 40px; }
@media (min-width: 900px) {
  .member-detail {
    /* 写真は固定寄りの幅、情報側に十分な幅（1行12〜13文字目安）を残す */
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: start;
  }
}

/* プロフィール画像（一覧より大きく） */
.member-photo { position: relative; }
.member-photo__frame {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(31, 45, 92, 0.16);
  background: var(--color-accent);
}
.member-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.member-photo__img.is-switching {
  opacity: 0;
  transform: scale(1.04);
}
.member-photo__noimg { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-accent), #fff); }
@media (min-width: 900px) {
  .member-photo { position: sticky; top: calc(var(--header-height) + 24px); }
}
@media (max-width: 767px) {
  /* SPでは写真を少し小さくし、左右に余白を持たせる */
  .member-photo { max-width: 260px; margin: 0 auto; }
}
@media (min-width: 768px) and (max-width: 899px) {
  /* タブレットはSPより一回り大きいサイズで、左右に余白を持たせる */
  .member-photo { max-width: 340px; margin: 0 auto; }
}

/* 切り替えボタン（紺色背景・白アイコン・視認性重視） */
.photo-switch {
  --rot: 0deg;
  --scale: 1;
  --switch-color: var(--color-sub);
  position: absolute;
  top: 14px; right: 14px;
  width: 51px; height: 51px;         /* 押しやすいサイズを保ちつつ紺色の主張を少し抑える */
  display: grid;
  place-content: center;
  border: 2px solid rgba(255, 255, 255, 0.85); /* 白フチでさらに視認性UP */
  border-radius: 50%;
  background: var(--switch-color);   /* 紺色背景 */
  color: #fff;                       /* アイコンは白 */
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(31, 45, 92, 0.35); /* 軽い影で埋もれない */
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, filter 0.25s ease;
  transform: rotate(var(--rot)) scale(var(--scale));
}
.photo-switch:hover {
  --scale: 1.05;                     /* ホバーで軽く拡大 */
  box-shadow: 0 6px 18px rgba(31, 45, 92, 0.45);
  filter: brightness(1.05);
}
.photo-switch svg { display: block; width: 28px; height: 28px; }

/* プロフィール情報 */
.member-info { min-width: 0; padding-top: 8px; }

.member-catch {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted var(--color-main);
}

.member-name {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-sub);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.member-kana {
  font-size: 13px;
  color: #9a9aa5;
  letter-spacing: 0.14em;
  margin-top: 6px;
}
.member-color-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.member-color-row__swatch {
  width: 20px; height: 20px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9), 0 2px 6px rgba(31, 45, 92, 0.2);
}
.member-color-row__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #b0b0ba;
}

/* プロフィール一覧 */
.member-props {
  margin: 32px 0 0;
}
.member-props__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 6px 20px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--color-accent);
}
.member-props__row:first-child { border-top: 1px solid var(--color-accent); }
.member-props__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-main);
  padding-top: 2px;
}
.member-props__value {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.7;
}

/* 自己紹介 */
.member-intro { margin-top: 44px; }
.member-intro__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-sub);
  text-align: left;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.member-intro__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  border-radius: 2px;
  background: var(--color-main);
}
.member-intro__text {
  font-size: 15px;
  line-height: 2.15;
  color: #3a3a3a;
}

/* SNS */
.member-sns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.member-sns a {
  display: grid;
  place-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-main);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.member-sns a:hover { background: var(--color-main); color: #fff; transform: translateY(-2px); }
.member-sns svg { width: 20px; height: 20px; }

.member__back { text-align: center; margin-top: 64px; }

@media (max-width: 899px) {
  .member-name { font-size: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .member-photo__img.is-switching { transform: none; }
  .photo-switch { transition: box-shadow 0.25s ease, filter 0.25s ease; }
}

/* ==========================================================
   MOVIE一覧ページ（movie.php）
   PC：2列 / SP：1列
   ========================================================== */
.movie-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px 0;                 /* SP：動画間の縦余白を広めに確保 */
  padding: 8px 16px 16px;      /* SP：左右16px */
}
@media (min-width: 768px) {
  .movie-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;            /* 上下48px / 左右40px */
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
  }
}

.movie-index__link { display: block; }
.movie-index__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.movie-index__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.movie-index__link:hover .movie-index__thumb img { transform: scale(1.05); }
.movie-index__title {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-sub);
  word-break: break-word;      /* 長いタイトルは自然に折り返す */
}

/* SP：動画間に薄い区切り線を入れて区切りを分かりやすく */
@media (max-width: 767px) {
  .movie-index__item:not(:last-child) {
    padding-bottom: 56px;
    border-bottom: 1px solid var(--color-accent);
  }
  .movie-index { gap: 40px 0; } /* 区切り線分を考慮して調整 */
}

/* ==========================================================
   SP版のみ：ヘッダーを白背景固定にし、FVをその下から開始（重ねない）
   PC・タブレットは従来どおり（透明でFVに重ねる）
   ========================================================== */
@media (max-width: 767px) {
  /* ヘッダーは常に白背景＋シャドウ（スクロール前から） */
  .site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(31, 45, 92, 0.10);
  }
  /* ロゴ文字はメインカラーで見えるように */
  .site-header__logo-text { color: var(--color-main); text-shadow: none; }

  /* FVはヘッダーの高さ分だけ下げて重ならないようにする */
  .hero { margin-top: var(--header-height); }
}

/* ==========================================================
   DISCOGRAPHY一覧（discography.php）
   PC：左右レイアウト（画像左・情報右）／SP：縦積み
   ========================================================== */
.disco-list {
  display: grid;
  gap: 64px 0;                 /* 楽曲同士の上下余白 */
  padding: 0 16px;             /* SP：左右16px */
}
@media (min-width: 768px) {
  .disco-list { padding: 0; gap: 72px 0; }
}

.disco-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .disco-item {
    grid-template-columns: 300px 1fr;  /* 画像300px＋情報 */
    gap: 40px;                          /* 画像と情報の間に十分な余白 */
    align-items: center;
  }
}

.disco-item__jacket {
  aspect-ratio: 1 / 1;         /* ジャケットは1:1 */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-accent);
}
.disco-item__jacket img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.disco-item__noimg { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-accent), #fff); }

.disco-item__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-sub);
  line-height: 1.5;
  margin-bottom: 8px;
}
.disco-item__date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-main);
  margin-bottom: 20px;
}
.disco-item__lead {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}
.disco-item__services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.disco-service {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: 280px;
  padding: 12px 20px;
  border: 1.5px solid var(--color-accent);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-sub);
  background: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.disco-service:hover {
  background: var(--color-accent);
  border-color: var(--color-main);
  transform: translateY(-2px);
}
.disco-service__arrow { color: var(--color-main); font-weight: 700; }

@media (min-width: 768px) {
  .disco-item__title { font-size: 24px; }
}

/* ========== CONTACT / REPORT フォーム ========== */
.contact-heading { font-size: 20px; font-weight: 700; color: var(--color-sub); text-align: center; margin-bottom: 24px; padding-bottom: 14px; position: relative; }
.contact-heading::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 48px; height: 3px; border-radius: 2px; background: var(--color-main); }
.contact-form { margin-top: 8px; }
.form-row { margin-bottom: 24px; }
.form-label { display: block; font-size: 14px; font-weight: 700; color: var(--color-sub); margin-bottom: 8px; }
.req, .opt { display: inline-block; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.req { background: var(--color-main); color: #fff; }
.opt { background: var(--color-accent); color: var(--color-sub); }
.form-control { width: 100%; padding: 13px 14px; font-size: 16px; font-family: inherit; color: var(--color-text); background: #fff; border: 1.5px solid #e5d5dd; border-radius: 10px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.form-control:focus { outline: none; border-color: var(--color-main); box-shadow: 0 0 0 3px rgba(244, 127, 178, 0.15); }
.form-control.is-error { border-color: #e0245e; background: #fff6f8; }
textarea.form-control { min-height: 180px; resize: vertical; line-height: 1.7; }
select.form-control { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F47FB2' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-err { margin-top: 6px; font-size: 13px; color: #e0245e; font-weight: 600; }
.contact-error-top { background: #fff6f8; border: 1.5px solid #e0245e; color: #c01e50; border-radius: 10px; padding: 14px 16px; margin-bottom: 24px; font-size: 14px; font-weight: 600; }
.contact-notice { background: var(--color-accent); border-radius: 12px; padding: 20px 22px; margin: 32px 0; font-size: 13px; line-height: 1.9; color: #555; }
.contact-notice p { margin: 0 0 10px; }
.contact-notice p:last-child { margin-bottom: 0; }
.contact-notice a { color: var(--color-main); font-weight: 700; text-decoration: underline; }
.contact-submit { text-align: center; margin-top: 28px; }
.btn-more--outline { background: transparent; border: 2px solid var(--color-main); color: var(--color-main); }
.btn-more--outline:hover { background: var(--color-main); color: #fff; }
.section--report { background: var(--color-accent); }
.report-lead { text-align: center; font-size: 14px; line-height: 1.9; color: #555; margin-bottom: 8px; }
.thanks-msg { font-size: 15px; line-height: 2; color: #444; margin-bottom: 32px; }
.contact-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ========== 固定ページ（規約・会社情報など） ========== */
.legal-body { font-size: 15px; line-height: 2; color: #3a3a3a; }
.legal-body h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-sub);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  margin: 28px 0 12px;
}
.legal-body p { margin: 0 0 18px; }
.legal-body ul, .legal-body ol { margin: 0 0 20px; padding-left: 1.4em; }
.legal-body li { margin-bottom: 8px; line-height: 1.9; }
.legal-body a { color: var(--color-main); text-decoration: underline; }
.legal-date { margin-top: 40px; font-size: 13px; color: #999; text-align: right; }
@media (max-width: 767px) {
  .legal-body { font-size: 14px; }
  .legal-body h2 { font-size: 17px; margin-top: 32px; }
}
