/* --- FANCLUB PAGE --- */

a.logo {
  text-decoration: none;
  color: inherit;
}

.fanclub-page {
  scroll-padding-top: 88px;
}

.fanclub-page .logo span {
  font-size: clamp(11px, 2.8vw, 18px);
  letter-spacing: 0.05em;
}

.fanclub-page nav ul li a {
  font-size: 15px;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .fanclub-page nav ul li a {
    font-size: 1.3rem;
  }
}

/* --- FANCLUB HERO（index.html とは別レイアウト） --- */
.fanclub-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

.fanclub-hero__zoom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  padding-top: 80px;
  transform-origin: center center;
  will-change: transform;
}

.fanclub-hero__visual {
  position: relative;
  min-height: 420px;
}

.fanclub-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.fanclub-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px clamp(32px, 6vw, 80px);
  background-color: var(--text-color);
  color: var(--white);
  position: relative;
}

.fanclub-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    135deg,
    rgba(143, 195, 31, 0.18) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.fanclub-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(143, 195, 31, 0.12) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  pointer-events: none;
}

.fanclub-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px clamp(36px, 5vw, 64px) 44px;
  max-width: 440px;
  border: 2px solid rgba(143, 195, 31, 0.4);
  box-shadow:
    inset 0 0 0 6px rgba(47, 79, 47, 0.6),
    0 0 40px rgba(143, 195, 31, 0.08);
}

.fanclub-hero__content::before,
.fanclub-hero__content::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--edamame-green);
  border-style: solid;
  pointer-events: none;
}

.fanclub-hero__content::before {
  top: 12px;
  left: 12px;
  border-width: 3px 0 0 3px;
}

.fanclub-hero__content::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 3px 3px 0;
}

.fanclub-hero__label {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 0.35em;
  padding-left: 0.35em;
  margin-bottom: 16px;
  font-family: "Oswald", sans-serif;
  opacity: 0.85;
}

.fanclub-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--edamame-green);
  text-shadow: 0.05em 0.05em 0 var(--white);
}

.fanclub-hero__title-line {
  display: block;
  padding-left: 0.04em;
}

.fanclub-hero__divider {
  position: relative;
  width: 60px;
  height: 4px;
  background-color: var(--edamame-green);
  margin: 24px auto 28px;
}

.fanclub-hero__divider::before,
.fanclub-hero__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background-color: rgba(143, 195, 31, 0.45);
}

.fanclub-hero__divider::before {
  right: calc(100% + 14px);
}

.fanclub-hero__divider::after {
  left: calc(100% + 14px);
}

.fanclub-hero__lead {
  margin: 0 auto;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.95;
  font-weight: bold;
  max-width: 22em;
  letter-spacing: 0.04em;
}

/* ヒーロー登場アニメーション */
.fanclub-hero__visual {
  opacity: 0;
  transform: translateX(-30px);
  animation: fanclub-hero-visual-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.fanclub-hero__panel {
  opacity: 0;
  transform: translateX(30px);
  animation: fanclub-hero-panel-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

@keyframes fanclub-hero-visual-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fanclub-hero-panel-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fanclub-hero__zoom {
    transform: none;
    will-change: auto;
  }

  .fanclub-hero__visual,
  .fanclub-hero__panel {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* --- セクションタイトル + 枝豆転がり --- */
.fanclub-section-head {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
  gap: 0.15em;
  margin-bottom: 60px;
}

.fanclub-section-head .section-title {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1;
}

.edamame-roll {
  height: 1.45em;
  width: auto;
  flex-shrink: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(calc(-50vh - 60px)) rotate(0deg);
  pointer-events: none;
}

.edamame-roll.is-rolled-in {
  visibility: visible;
  animation: edamame-roll-in 1s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.edamame-roll.is-rolled-done {
  opacity: 1;
  transform: translateY(0.5em) rotate(720deg);
}

@keyframes edamame-roll-in {
  0% {
    opacity: 0;
    transform: translateY(calc(-50vh - 60px)) rotate(0deg);
  }
  15% {
    opacity: 1;
  }
  72% {
    transform: translateY(calc(6px + 0.5em)) rotate(620deg);
  }
  86% {
    transform: translateY(calc(-3px + 0.5em)) rotate(700deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0.5em) rotate(720deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .edamame-roll.is-rolled-in {
    visibility: visible;
    opacity: 1;
    transform: translateY(0.5em);
    animation: none;
  }
}

#fanclub-fee {
  padding: 100px 10%;
  background-color: var(--white);
  background-image: radial-gradient(var(--fresh-green) 1px, transparent 1px);
  background-size: 20px 20px;
}

#fanclub-benefits {
  padding: 100px 10%;
  background-color: var(--bg-color);
}

#fanclub-join {
  padding: 100px 10%;
  background-color: var(--edamame-green);
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
}

#fanclub-join .section-title {
  color: var(--white);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

#fanclub-contact {
  padding: 100px 10%;
  background-color: var(--white);
  border-top: 4px solid var(--edamame-green);
}

.fanclub-card {
  background-color: var(--bg-color);
  border: 4px solid var(--text-color);
  padding: 50px;
  box-shadow: 15px 15px 0px var(--fresh-green);
  max-width: 800px;
  margin: 0 auto;
}

#fanclub-join .fanclub-card {
  background-color: var(--white);
  box-shadow: 15px 15px 0px rgba(47, 79, 47, 0.15);
}

.fanclub-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
  border-bottom: 2px dashed var(--edamame-green);
  padding-bottom: 10px;
  margin-bottom: 25px;
  color: var(--text-color);
}

.fanclub-fee-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fanclub-fee-item {
  flex: 1 1 200px;
  background-color: var(--white);
  border: 2px solid var(--text-color);
  padding: 30px 25px;
  text-align: center;
  box-shadow: 6px 6px 0px rgba(143, 195, 31, 0.3);
}

.fanclub-fee-label {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 12px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}

.fanclub-fee-amount {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: bold;
  color: var(--edamame-green);
  font-family: "Oswald", sans-serif;
}

.fanclub-fee-amount span {
  font-size: 0.55em;
  margin-left: 2px;
}

.fanclub-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fanclub-benefit-list li {
  background-color: var(--white);
  border: 2px solid var(--text-color);
  padding: 18px 24px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.05);
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  padding-left: 48px;
}

.fanclub-benefit-list li::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--edamame-green);
  font-size: 1rem;
}

.fanclub-join-text {
  line-height: 1.8;
  margin: 0 0 30px;
  font-weight: bold;
}

.fanclub-form-embed {
  width: 100%;
  margin: 0;
}

.fanclub-form-embed .formmailer-embed {
  width: 100%;
  min-height: 120px;
}

.fanclub-contact-block {
  line-height: 1.9;
}

.fanclub-contact-block p {
  margin: 0 0 8px;
}

.fanclub-contact-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-color);
}

.fanclub-contact-block a {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px dashed var(--edamame-green);
  transition: color 0.3s;
}

.fanclub-contact-block a:hover {
  color: var(--edamame-green);
}

.fanclub-contact-tel,
.fanclub-contact-mail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-weight: bold;
}

.fanclub-contact-tel i,
.fanclub-contact-mail i {
  color: var(--edamame-green);
  width: 20px;
  text-align: center;
}

.fanclub-back-area {
  padding: 80px 10% 100px;
  text-align: center;
  background-color: var(--bg-color);
  background-image: radial-gradient(var(--fresh-green) 1px, transparent 1px);
  background-size: 20px 20px;
  border-top: 4px solid var(--edamame-green);
}

.fanclub-back-label {
  margin: 0 0 24px;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: bold;
  letter-spacing: 0.2em;
  color: var(--text-color);
  font-family: "Oswald", sans-serif;
  opacity: 0.7;
}

.fanclub-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 48px;
  background-color: var(--white);
  color: var(--text-color);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: bold;
  border: 3px solid var(--text-color);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.12em;
  font-family: "Oswald", sans-serif;
  box-shadow: 8px 8px 0 var(--fresh-green);
}

.fanclub-back-btn i {
  font-size: 0.9em;
  color: var(--edamame-green);
}

.fanclub-back-btn:hover {
  background-color: var(--text-color);
  border-color: var(--text-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 10px 10px 0 rgba(143, 195, 31, 0.45);
}

.fanclub-back-btn:hover i {
  color: var(--white);
}

@media (max-width: 1024px) {
  .fanclub-hero {
    min-height: auto;
  }

  .fanclub-hero__zoom {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .fanclub-hero__visual {
    min-height: 320px;
    max-height: 45vh;
  }

  .fanclub-hero__visual img {
    clip-path: none;
  }

  .fanclub-hero__panel {
    padding: 48px 24px 56px;
  }

  .fanclub-hero__content {
    max-width: 100%;
    padding: 40px 28px 36px;
  }

  .fanclub-hero__lead {
    max-width: 100%;
  }

  #fanclub-fee,
  #fanclub-benefits,
  #fanclub-join,
  #fanclub-contact {
    padding: 60px 5%;
  }

  .fanclub-card {
    padding: 30px 24px;
  }

  .fanclub-fee-list {
    flex-direction: column;
  }

  .fanclub-back-area {
    padding: 60px 5% 80px;
  }

  .fanclub-back-btn {
    padding: 14px 32px;
    width: 100%;
    max-width: 320px;
  }
}
