@import url("fonts-tsukushi.css");

@font-face {
  font-family: 'harenosoramincho';
  src: url("../fonts/harenosoramincho.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: 'shokakisararigyotai';
  src: url("../fonts/shokakisararigyotai.woff2") format("woff2");
  font-display: swap;
}

:root {
  --green-dark: #47523f;
  --dark: #0d2123;
  --divider-gradient: linear-gradient(90deg, #e7db86 17.01%, #cbe0e3 48.27%, #59a194 80.9%);
  --cream: #fffef8;
  --cream-text: #fffef8;
  --ink: #23261f;
  --gold: #c9b877;
  --gold-deep: #9c8347;
  --gold-pale: #f7f0da;
  /* 藍色寄りの深い紺。旧#227da8(明るい水色)から、格調のある配色に変更 */
  --blue: #1f3e52;
  --max-width: 980px;
  --header-max-width: 1200px;
  --dust: radial-gradient(rgba(201,184,119,.16) 1px, transparent 1.6px);

  --font-mincho: 'harenosoramincho', 'Hiragino Mincho ProN', serif;
  --font-tsukushi-mincho: 'tsukushioldmincho', 'Hiragino Mincho ProN', serif;
  --font-tsukushi-gothic: 'tsukushibmarugothic', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  --font-calligraphy: 'shokakisararigyotai', var(--font-mincho);
  --font-western: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html { font-size: 18px; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  line-height: 1.9;
  /* 100vwはブラウザのスクロールバー幅を含まないため、フルブリード要素(.hero/.page-hero等)が
     数px右にはみ出すことがある。横方向のスクロールを起こさせないための保険。 */
  overflow-x: hidden;
}

@media (max-width: 720px) {
  html { font-size: 16px; }
}

h1, h2 {
  font-family: var(--font-mincho);
  color: var(--dark);
  font-weight: 700;
}

a { color: inherit; }

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

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--dark);
  background-image: var(--dust);
  background-size: 16px 16px;
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.header-inner {
  position: relative;
  z-index: 1;
  max-width: var(--header-max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .3s ease;
}
.site-header.is-scrolled .header-inner { padding: .5rem 1.25rem; }
.header-inner::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  bottom: 2px;
  height: 54px;
  background-image: url("../img/header-brush.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: .9;
  pointer-events: none;
  z-index: -1;
}
.main-nav { position: relative; z-index: 1; }
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--cream-text);
}
.brand-logo {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px 12px rgba(13,33,35,.8);
  transition: width .3s ease, height .3s ease;
}
.site-header.is-scrolled .brand-logo { width: 48px; height: 48px; }
.brand-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: var(--font-mincho);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  letter-spacing: .5em;
  font-weight: 400;
  color: var(--cream-text);
  white-space: nowrap;
  transition: font-size .3s ease;
}
.brand-name::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 4rem);
  height: calc(100% + 3rem);
  background: radial-gradient(ellipse, rgba(13,33,35,.92) 0%, rgba(13,33,35,.6) 55%, transparent 78%);
  filter: blur(8px);
  z-index: -1;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cream-text);
  color: var(--cream-text);
  font-size: 1.3rem;
  padding: .2rem .6rem;
  border-radius: 4px;
}
.main-nav { background: linear-gradient(180deg, var(--dark) 0%, #000 100%); }
.main-nav ul {
  max-width: var(--header-max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 3rem;
}
.main-nav a {
  display: inline-block;
  padding: 1.1rem 0;
  text-decoration: none;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: var(--cream-text);
  border-bottom: 2px solid transparent;
  transition: border-color .25s ease, opacity .25s ease;
}
.main-nav a:hover { border-bottom-color: var(--gold); color: var(--gold); opacity: 1; }
.main-nav a.is-active { border-bottom-color: var(--gold); color: var(--gold); }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
}

@media (max-width: 600px) {
  .brand-name {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    font-size: 1.05rem;
    letter-spacing: .18em;
  }
  .brand-name::before { display: none; }
}

/* Main */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  overflow: hidden;
}
.hero-img {
  display: block;
  width: 100%;
  height: 90vh;
  min-height: 480px;
  max-height: 980px;
  object-fit: cover;
  transform: scale(1.02);
  animation: hero-zoom 8s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-caption h1 {
  color: var(--cream-text);
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  text-align: center;
  padding: 0 1rem;
  letter-spacing: .04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  opacity: 0;
  animation: fade-in-up 1.2s ease .3s forwards;
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.section { margin: 5rem 0; }
.section h1 { font-size: clamp(2.2rem, 5.5vw, 3.3rem); margin-bottom: 2rem; font-weight: 400; }

.page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #000 0%, #fff 100%);
  padding: 1.875rem 1.25rem;
}
.page-hero h1 {
  max-width: var(--max-width);
  margin: 0 auto;
  color: var(--cream-text);
  font-family: var(--font-mincho);
  font-size: clamp(2.2rem, 5.5vw, 3.3rem);
  font-weight: 400;
}
.section h2 { font-size: 1.3rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  border: 1px solid #e2ddc4;
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(156,131,71,.18);
}
.card h2 {
  margin-top: 0;
  font-family: var(--font-tsukushi-mincho);
  color: var(--blue);
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
}
.card p {
  font-family: var(--font-tsukushi-gothic);
  color: var(--blue);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

/* Photo cards (催し物・各種ご案内) */
.photo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 560px) {
  .photo-cards { grid-template-columns: 1fr; }
}
.photo-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(35,38,31,.15);
  transition: transform .7s cubic-bezier(.16,.8,.3,1), box-shadow .7s cubic-bezier(.16,.8,.3,1);
}
.photo-card:hover,
.photo-card:focus-visible {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 26px 44px rgba(35,38,31,.3), 0 0 0 2px var(--gold);
}
.photo-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.16,.8,.3,1);
}
.photo-card:hover .photo-card-img,
.photo-card:focus-visible .photo-card-img { transform: scale(1.08); }
.photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,33,35,0) 40%, rgba(13,33,35,.8) 100%);
  z-index: 1;
}
.photo-card-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.5rem;
  color: var(--cream-text);
}
.photo-card:not(.photo-card--brand) .photo-card-text::before {
  content: '';
  position: absolute;
  inset: -1.75rem -1rem -1rem;
  background: radial-gradient(ellipse 100% 90% at 50% 100%, rgba(13,33,35,.65) 0%, rgba(13,33,35,.32) 45%, rgba(13,33,35,0) 78%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.photo-card-text h2 {
  font-family: var(--font-mincho);
  color: var(--cream-text);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin: 0 0 .5rem;
}
.photo-card-text p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.6;
  opacity: .92;
}
.photo-card--brand {
  background: #fff;
  border: 1px solid #e2ddc4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-card--brand .photo-card-img {
  object-fit: contain;
  width: 65%;
  height: 65%;
  left: 17.5%;
  top: 17.5%;
  opacity: .18;
  transition: transform .5s ease, opacity .3s ease;
}
.photo-card--brand:hover .photo-card-img { transform: scale(1.08); opacity: .26; }
.photo-card--brand::before { display: none; }
.photo-card--brand .photo-card-text {
  position: static;
  text-align: center;
  padding: 0 1.5rem;
}
.photo-card--brand .photo-card-text h2 { color: var(--green-dark); }
.photo-card--brand .photo-card-text p { color: var(--ink); opacity: .8; }

.feature-bands {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.feature-band {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3.5rem clamp(2.5rem, calc((100vw - 980px) / 2 + 2.5rem), 30vw);
}
.feature-band--reverse { flex-direction: row-reverse; }
.feature-band--rabbit { background-image: var(--dust), linear-gradient(180deg, var(--dark) 0%, var(--dark) 60%, var(--cream) 100%); background-size: 16px 16px, auto; }
.feature-band--fish { background: var(--cream); }
.feature-band--hen { background-image: var(--dust), linear-gradient(180deg, var(--cream) 0%, var(--dark) 40%, var(--dark) 100%); background-size: 16px 16px, auto; }
.feature-band--rabbit .feature-band-text h2,
.feature-band--rabbit .feature-band-text p,
.feature-band--hen .feature-band-text h2,
.feature-band--hen .feature-band-text p {
  color: var(--cream-text);
}
.feature-band-icon {
  width: min(30%, 260px);
  flex-shrink: 0;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.15)) saturate(.82) sepia(.12);
}
.feature-band-icon--tall { width: min(22%, 220px); }
.feature-band-text { flex: 1; min-width: 0; }
.feature-band-text h2 {
  margin: 0 0 .5rem;
  font-family: var(--font-tsukushi-mincho);
  color: var(--blue);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 400;
  line-height: 1.3;
  text-wrap: balance;
}
.feature-band-text p {
  margin: .3rem 0;
  font-family: var(--font-tsukushi-gothic);
  color: var(--blue);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
@media (max-width: 700px) {
  .feature-band, .feature-band--reverse {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }
  .feature-band-icon, .feature-band-icon--tall {
    width: 55%;
    max-width: 220px;
    margin: 0 auto;
  }
}

.btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--dark) 0%, #16302f 100%);
  color: var(--cream-text) !important;
  text-decoration: none;
  border-radius: 999px;
  font-size: 1.05rem;
  letter-spacing: .05em;
  box-shadow: inset 0 0 0 1px rgba(201,184,119,.4), 0 6px 16px rgba(13,33,35,.2);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover {
  background: linear-gradient(135deg, var(--dark) 0%, #1f4442 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px var(--gold), 0 10px 24px rgba(13,33,35,.35);
}

.profile {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: -3rem;
  padding: 4rem 1.25rem;
  background-color: var(--dark);
  background-image: var(--dust);
  background-size: 16px 16px;
  color: var(--cream-text);
  border-top: none;
}
.profile-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.profile-photo {
  flex: 0 0 auto;
  width: 380px;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.profile-text { flex: 1 1 auto; min-width: 0; }
.profile h2 {
  font-family: var(--font-calligraphy);
  color: var(--cream-text);
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  font-weight: 400;
  letter-spacing: .04em;
  margin: 0 0 1.25rem;
}
.profile p {
  font-family: var(--font-mincho);
  margin: 0 0 .6rem;
  font-size: clamp(.9rem, 1.1vw, 1rem);
}

@media (max-width: 720px) {
  .profile-inner { flex-direction: column; gap: 1.75rem; text-align: center; }
  .profile-photo { width: 260px; }
}

/* ===== Homepage: 活動紹介 / さなえ会とは(抜粋) / 講演・公演情報 / 入会案内 ===== */
:root {
  /* 旧・桜ピンクから、金の砂子を思わせる淡いアイボリーゴールドへ */
  --sakura: var(--gold-deep);
  --sakura-pale: var(--gold-pale);
}

.eyebrow {
  display: block;
  font-family: var(--font-mincho);
  letter-spacing: .35em;
  font-size: .78rem;
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 .8rem;
}
.eyebrow--dark { color: var(--gold); }

.rule {
  position: relative;
  width: 64px;
  height: 1px;
  margin: 1.4rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
}
.rule::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: translate(-50%, -50%);
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h1 { margin-bottom: 0; }

.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sakura-pale);
  border: 1px solid rgba(201,184,119,.4);
  box-shadow: 0 4px 14px rgba(156,131,71,.15);
  margin-bottom: 1.25rem;
}
.icon-badge svg { width: 34px; height: 34px; }
.icon-badge--lg { width: 120px; height: 120px; flex: none; }
.icon-badge--lg svg { width: 56px; height: 56px; }

.katsudo-bands { display: flex; flex-direction: column; }
.katsudo-band {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid #e2ddc4;
}
.katsudo-bands .katsudo-band:last-child { border-bottom: none; }
.katsudo-band--reverse { flex-direction: row-reverse; }
.katsudo-band-text { flex: 1; min-width: 0; }
.katsudo-band-text h2 {
  margin: 0 0 .6rem;
  font-family: var(--font-tsukushi-mincho);
  color: var(--green-dark);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
}
.katsudo-band-text p {
  margin: 0;
  font-family: var(--font-tsukushi-gothic);
  color: var(--ink);
  opacity: .85;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}
@media (max-width: 700px) {
  .katsudo-band, .katsudo-band--reverse {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
}

.section-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.history-excerpt {
  background-color: var(--dark);
  background-image: var(--dust);
  background-size: 16px 16px;
  padding: 4.5rem 1.25rem;
}
.history-excerpt-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.history-excerpt-inner h1 {
  color: var(--cream-text);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0;
}
.history-excerpt-inner p {
  max-width: 640px;
  margin: 2rem auto 2rem;
  color: var(--cream-text);
  opacity: .85;
  font-family: var(--font-tsukushi-gothic);
  font-size: 1.02rem;
}
.history-excerpt-inner .btn { background: transparent; border: 1px solid rgba(255,254,248,.5); }
.history-excerpt-inner .btn:hover { background: rgba(255,254,248,.08); }

.performance-date {
  font-family: var(--font-mincho);
  color: var(--blue);
  font-size: .9rem;
  letter-spacing: .04em;
  margin: 0 0 .6rem !important;
}
.performance .cards .card h2 {
  color: var(--dark);
  font-family: var(--font-tsukushi-mincho);
}
.performance .cards .card p:not(.performance-date) { color: var(--ink); opacity: .85; }
.performance-cta { text-align: center; margin-top: 2.5rem; }

.nyukai-cta {
  background-color: var(--sakura-pale);
  background-image: var(--dust);
  background-size: 16px 16px;
  border-top: 3px solid var(--gold);
  padding: 4rem 1.25rem;
}
.nyukai-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.nyukai-cta-inner .icon-badge { margin: 0 auto .5rem; background: #fff; }
.nyukai-cta-inner h1 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 0; }
.nyukai-cta-inner p { margin: 2rem 0 .5rem; opacity: .85; }

.contact-info p { margin: .3rem 0; }

.contact-panel {
  background: #fff;
  border: 1px solid #e2ddc4;
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  padding: 2.25rem 2.5rem;
}
.contact-panel h2 {
  font-family: var(--font-mincho);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 1.5rem;
}
.contact-panel dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: .85rem 2rem;
  margin: 0;
}
.contact-panel dt {
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}
.contact-panel dd {
  margin: 0;
  color: var(--ink);
}
.contact-panel a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) {
  .contact-panel { padding: 1.75rem 1.5rem; }
  .contact-panel dl { grid-template-columns: 1fr; gap: .2rem 0; }
  .contact-panel dt { margin-top: .6rem; }
}

/* History timeline */
.timeline-intro { max-width: 640px; margin: -1rem 0 3rem; color: var(--green-dark); }

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 9px;
  top: .35rem;
  bottom: .35rem;
  width: 3px;
  border-radius: 3px;
  background: var(--divider-gradient);
}
.timeline-item {
  position: relative;
  padding: 0 0 2.75rem 2.75rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 0;
  top: .3rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 4px var(--cream);
  z-index: 1;
}
.timeline-item:nth-child(1) { transition-delay: .05s; }
.timeline-item:nth-child(2) { transition-delay: .13s; }
.timeline-item:nth-child(3) { transition-delay: .21s; }
.timeline-item:nth-child(4) { transition-delay: .29s; }
.timeline-item:nth-child(5) { transition-delay: .37s; }
.timeline-date {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.2rem;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.timeline-item p { margin: 0; }

.timeline-item--milestone {
  border: 1px solid #e2ddc4;
  border-radius: 10px;
  padding: 1.5rem 1.75rem 1.5rem 2.75rem;
  background: linear-gradient(135deg, #fffef0 0%, #f5eec6 100%);
  box-shadow: 0 12px 28px rgba(35,38,31,.1);
}
.timeline-item--milestone .timeline-dot {
  border-color: var(--gold);
  background: var(--gold);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.timeline-item--milestone .timeline-date { color: #8a6d1f; }
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--cream), 0 0 0 4px rgba(201,184,119,.0); }
  50% { box-shadow: 0 0 0 4px var(--cream), 0 0 0 10px rgba(201,184,119,.35); }
}

@media (max-width: 720px) {
  .timeline-item--milestone { padding: 1.25rem 1.25rem 1.25rem 2.5rem; }
}

.info-list {
  border-top: 1px solid #e2ddc4;
}
.info-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid #e2ddc4;
}
.info-item h2 {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .06em;
}
.info-item p {
  margin: 0;
  font-family: var(--font-tsukushi-gothic);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.9;
}
@media (max-width: 640px) {
  .info-item { grid-template-columns: 1fr; gap: .6rem; padding: 1.75rem 0; }
}

/* Blog list */
.blog-intro { max-width: 640px; margin: -1rem 0 3rem; color: var(--green-dark); font-size: 1.05rem; }
.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.post-card[hidden] { display: none; }
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2ddc4;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .35s ease, box-shadow .35s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(35,38,31,.18);
}
.post-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(155deg, var(--dark) 0%, var(--green-dark) 100%);
}
.post-card-media .thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.post-card:hover .post-card-media .thumb { transform: scale(1.08); }
.post-card-media.is-placeholder { display: flex; align-items: center; justify-content: center; }
.post-card-media.is-placeholder .placeholder-logo {
  width: 42%;
  height: auto;
  opacity: .32;
  filter: brightness(0) invert(1);
  transition: transform .5s ease, opacity .3s ease;
}
.post-card:hover .post-card-media.is-placeholder .placeholder-logo { transform: scale(1.08); opacity: .42; }
.post-card-date {
  position: absolute;
  left: .9rem;
  top: .9rem;
  background: rgba(13,33,35,.82);
  color: var(--cream-text);
  font-size: .72rem;
  letter-spacing: .06em;
  padding: .4rem .8rem;
  border-radius: 999px;
  z-index: 1;
}
.post-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.5rem 1.6rem;
}
.post-card-body h2 {
  margin: 0 0 .6rem;
  font-size: 1.2rem;
  font-family: var(--font-tsukushi-mincho);
  color: var(--blue);
  font-weight: 400;
  line-height: 1.45;
}
.post-card-body p {
  margin: 0;
  flex: 1;
  font-size: .88rem;
  line-height: 1.8;
  color: #5b5e52;
}

/* Blog post */
.post { margin-top: 1rem; }
.post .post-meta {
  color: var(--green-dark);
  font-size: .85rem;
  letter-spacing: .03em;
  margin: 0 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2ddc4;
}
.post-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2ddc4;
}
.post-author-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(35,38,31,.15);
}
.post-author-name {
  margin: 0 0 .3rem;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.02rem;
}
.post-author .post-meta {
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.post h1 {
  font-family: var(--font-mincho);
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 .9rem;
  line-height: 1.4;
}
.post p {
  font-size: 1.05rem;
  line-height: 2;
  margin: 1.4rem 0;
  color: var(--ink);
}
.post .content-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 2.25rem 0;
  box-shadow: 0 14px 32px rgba(35,38,31,.14);
}
.post .btn { margin-top: 1.5rem; }

/* Footer */
.site-footer {
  position: relative;
  background: var(--cream-text);
  color: rgb(13, 33, 35);
  padding: 3.5rem 1.25rem 2rem;
  font-size: .95rem;
  font-family: var(--font-western);
  border-top: 1px solid #e2ddc4;
}
.site-footer::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -4px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: translateX(-50%);
}
.site-footer a { color: rgb(13, 33, 35); transition: opacity .2s ease; }
.site-footer a:hover { opacity: .6; }
.site-footer p { margin: .3rem 0; }

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-brand-name {
  font-family: var(--font-mincho);
  font-size: 1.4rem;
  letter-spacing: .3em;
  margin: 0 0 .8rem !important;
}
.footer-address { color: #47523f; }
.footer-contact { text-align: center; }
.footer-contact a { text-decoration: underline; text-underline-offset: 3px; }

.footer-copyright {
  margin: 2.5rem 0 0 !important;
  padding-top: 1.5rem;
  border-top: 1px solid #e2ddc4;
  text-align: center;
  font-size: .8rem;
  color: #6b6f60;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* 出演依頼フォームなど、公開ページの入力フォーム */
.request-form { max-width: 640px; margin: 2rem 0; }
.request-form .field { margin-bottom: 1.25rem; }
.request-form .field label {
  display: block;
  margin-bottom: .4rem;
  font-family: var(--font-tsukushi-gothic);
  font-size: .95rem;
  color: var(--ink);
}
.request-form .required {
  display: inline-block;
  margin-left: .5rem;
  padding: .05rem .5rem;
  border-radius: 999px;
  background: #b3261e;
  color: #fff;
  font-size: .7rem;
  vertical-align: middle;
}
.request-form input[type="text"],
.request-form input[type="email"],
.request-form input[type="tel"],
.request-form input[type="date"],
.request-form input[type="number"],
.request-form select,
.request-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: .75rem .9rem;
  border: 1px solid #e2ddc4;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}
.request-form textarea { min-height: 140px; resize: vertical; }
.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(156,131,71,.18);
}
.request-form .hint {
  font-family: var(--font-tsukushi-gothic);
  font-size: .85rem;
  color: #777;
  margin: .5rem 0 0;
}
.request-form .region-warning {
  display: none;
  margin-top: .5rem;
  padding: .7rem .9rem;
  border-radius: 8px;
  background: #fff6e0;
  color: #8a6d1a;
  font-size: .85rem;
}
.request-form .region-warning.is-visible { display: block; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.form-notice {
  padding: .85rem 1.1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-family: var(--font-tsukushi-gothic);
  font-size: .92rem;
}
.form-notice.notice-success { background: #e7f3e5; color: #2e5c2b; }
.form-notice.notice-error { background: #fdecea; color: #b3261e; }
