
/*
       WordPress貼り付け用スコープCSS
       外側のテーマに影響を与えないよう、すべて .hoppy-wp-v2 配下に限定
    */
.hoppy-wp-v2 {
  --orange: #FF5A1F;
  --orange-dark: #D94000;
  --black: #111111;
  --dark: #1E1E1E;
  --gray: #555555;
  --gray-mid: #888888;
  --gray-light: #F4F4F2;
  --white: #FFFFFF;
  --border: rgba(0, 0, 0, 0.09);
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Barlow Condensed', sans-serif;
  --radius: 8px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --transition: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  font-family: var(--font-ja);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hoppy-wp-v2 * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hoppy-wp-v2 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hoppy-wp-v2 a {
  text-decoration: none;
  color: inherit;
}

.hoppy-wp-v2 ul {
  list-style: none;
}

/* Section utilities */
.hoppy-wp-v2 .section {
  padding: 96px 5%;
}

.hoppy-wp-v2 .section--dark {
  background: var(--dark);
  color: var(--white);
}

.hoppy-wp-v2 .section--gray {
  background: var(--gray-light);
}

.hoppy-wp-v2 .section--black {
  background: var(--black);
  color: var(--white);
}

.hoppy-wp-v2 .section-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.hoppy-wp-v2 .section-title {
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hoppy-wp-v2 .section-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 14px;
}

.hoppy-wp-v2 .section-rule::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hoppy-wp-v2 .section-rule::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--border);
}

.hoppy-wp-v2 .section-rule--light::after {
  background: rgba(255, 255, 255, 0.12);
}

.hoppy-wp-v2 .section-lead {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.85;
}

.hoppy-wp-v2 .section-lead--light {
  color: rgba(255, 255, 255, 0.65);
}

.hoppy-wp-v2 .section-header {
  margin-bottom: 52px;
}

.hoppy-wp-v2 .section-header.center>.section-label {
  margin-bottom: 6px;
  text-align: left;
}

.hoppy-wp-v2 .section-header.center>.hoppy-h2 {
  margin-top: 0;
  text-align: left;
}

.hoppy-wp-v2 .section-header.center>.hoppy-h2::after {
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  transform: none;
}

/* Buttons */
.hoppy-wp-v2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  font-family: var(--font-ja);
}

.hoppy-wp-v2 .btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(255, 90, 31, 0.3);
}

.hoppy-wp-v2 .btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.4);
}

.hoppy-wp-v2 .btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.25);
}

.hoppy-wp-v2 .btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.hoppy-wp-v2 .btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hoppy-wp-v2 .btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hoppy-wp-v2 .btn-line {
  background: #06C755;
  color: var(--white);
  border-color: #06C755;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.25);
}

.hoppy-wp-v2 .btn-line:hover {
  background: #05A547;
  border-color: #05A547;
  transform: translateY(-2px);
}

.hoppy-wp-v2 .btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
  border-radius: 8px;
}

/* Common layout */
@media (min-width: 860px) {
  .hoppy-wp-v2 .concept-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  .hoppy-wp-v2 .concept-text {
    grid-column: 1 / 2;
    grid-row: 1;
    order: 1;
  }

  .hoppy-wp-v2 .concept-photo {
    grid-column: 2 / 3;
    grid-row: 1;
    order: 2;
  }
}

@media (max-width: 859px) {
  .hoppy-wp-v2 .concept-inner {
    display: flex;
    flex-direction: column;
  }
}

.hoppy-wp-v2 .common-image-container {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 0;
  isolation: isolate;
  margin-top: 28px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.hoppy-wp-v2 .common-image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Items page */
.hoppy-wp-v2.items-page {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f3ed 0%, #ffffff 22%);
}

.hoppy-wp-v2.items-page .section {
  position: relative;
}

.hoppy-wp-v2.items-page .items-page__intro {
  padding-top: 88px;
  padding-bottom: 56px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.10), rgba(255, 255, 255, 0) 40%),
    var(--gray-light);
}

.hoppy-wp-v2.items-page .items-page__intro .section-header {
  max-width: 860px;
  margin: 0 auto;
}

.hoppy-wp-v2.items-page .items-page__intro .section-title {
  max-width: 12em;
}

.hoppy-wp-v2.items-page .items-page__intro .section-lead {
  max-width: 720px;
}

.hoppy-wp-v2.items-page .items-page__catalog {
  padding-top: 48px;
}

.hoppy-wp-v2.items-page .items-page__catalog-header {
  max-width: 1120px;
  margin: 0 auto 40px;
  display: grid;
  gap: 18px;
  align-items: end;
}

.hoppy-wp-v2.items-page .items-page__catalog-header .hoppy-h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.hoppy-wp-v2.items-page .items-page__catalog-header .hoppy-text {
  margin-bottom: 0;
  max-width: 620px;
}

.hoppy-wp-v2.items-page .items-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hoppy-wp-v2.items-page .items-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.07);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.hoppy-wp-v2.items-page .items-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(17, 17, 17, 0.11);
  border-color: rgba(255, 90, 31, 0.20);
}

.hoppy-wp-v2.items-page .items-card__media.common-image-container {
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 0;
}

.hoppy-wp-v2.items-page .items-card__media .common-image {
  aspect-ratio: 4 / 3;
}

.hoppy-wp-v2.items-page .items-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 26px;
}

.hoppy-wp-v2.items-page .items-card__eyebrow {
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.hoppy-wp-v2.items-page .items-card__title {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hoppy-wp-v2.items-page .items-card__tag {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--gray);
}

.hoppy-wp-v2.items-page .items-card__desc {
  font-size: 0.94rem;
  line-height: 1.9;
  color: #2b2b2b;
}

.hoppy-wp-v2.items-page .items-card__price-box {
  margin-top: auto;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 90, 31, 0.08), rgba(255, 90, 31, 0.03));
  border: 1px solid rgba(255, 90, 31, 0.16);
  border-radius: 16px;
}

.hoppy-wp-v2.items-page .items-card__price-label {
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.hoppy-wp-v2.items-page .items-card__price {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
}

.hoppy-wp-v2.items-page .items-card__price span {
  margin-left: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray);
}

.hoppy-wp-v2.items-page .items-card__meta {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray);
}

.hoppy-wp-v2.items-page .items-card__cta {
  width: 100%;
  margin-top: 18px;
}

.hoppy-wp-v2.items-page .items-page__note {
  max-width: 1120px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: 0.9rem;
  color: var(--gray);
}

.hoppy-wp-v2.item-detail-page {
  padding: clamp(32px, 5vw, 72px) 20px;
}

.hoppy-wp-v2.item-detail-page .contact {
  max-width: 1080px;
  margin: 0 auto;
}

.hoppy-wp-v2.item-detail-page h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.08em;
}

.hoppy-wp-v2.item-detail-page .submit-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hoppy-wp-v2.item-detail-page .submit-wrap .btn-send {
  min-width: 160px;
  text-align: center;
}

.hoppy-wp-v2.item-detail-page .contact-message {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 32px 0 0;
}

.hoppy-wp-v2.item-detail-page .contact-message img {
  width: min(100%, 400px);
}

@media (min-width: 861px) {
  .hoppy-wp-v2.items-page .items-page__catalog-header {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    gap: 40px;
  }

  .hoppy-wp-v2.item-detail-page .contact-message {
    grid-template-columns: repeat(2, minmax(0, 400px));
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .hoppy-wp-v2.items-page .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hoppy-wp-v2.items-page .items-page__intro {
    padding-top: 72px;
    padding-bottom: 44px;
  }

  .hoppy-wp-v2.items-page .items-page__catalog {
    padding-top: 36px;
  }

  .hoppy-wp-v2.items-page .items-page__catalog-header {
    margin-bottom: 28px;
  }

  .hoppy-wp-v2.items-page .items-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hoppy-wp-v2.items-page .items-card__body {
    padding: 20px 18px 20px;
  }

  .hoppy-wp-v2.items-page .items-card__title {
    font-size: 1.2rem;
  }

  .hoppy-wp-v2.items-page .items-card__price {
    font-size: 1.65rem;
  }

  .hoppy-wp-v2.items-page .items-page__note {
    flex-direction: column;
    gap: 4px;
  }

  .hoppy-wp-v2.item-detail-page {
    padding: 24px 16px 40px;
  }

  .hoppy-wp-v2.item-detail-page h2 {
    margin-bottom: 20px;
    font-size: clamp(26px, 8vw, 34px);
  }

  .hoppy-wp-v2.item-detail-page .submit-wrap {
    gap: 10px;
    margin-top: 20px;
  }

  .hoppy-wp-v2.item-detail-page .submit-wrap .btn-send {
    width: 100%;
    min-width: 0;
  }

  .hoppy-wp-v2.item-detail-page .contact-message {
    gap: 14px;
    margin-top: 24px;
  }
}

/* 01. Hero / FV */
.hoppy-wp-v2 .hero {
  position: relative;
  min-height: 80vh;
  /* WP内では100vhだと長すぎる場合があるため調整 */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hoppy-wp-v2 .hero-photo {
  --hero-slide-1: url('https://gym-hoppy.info/wp-content/uploads/2026/05/top_hero01.webp');
  --hero-slide-2: url('https://gym-hoppy.info/wp-content/uploads/2026/05/top_hero02.webp');
  --hero-slide-duration: 8s;
  position: absolute;
  inset: 0;
  background: var(--hero-slide-1) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hoppy-wp-v2 .hero-photo::before,
.hoppy-wp-v2 .hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: opacity;
}

.hoppy-wp-v2 .hero-photo::before {
  background-image: var(--hero-slide-1);
  animation: hoppyHeroSlideFirst var(--hero-slide-duration) ease-in-out infinite;
}

.hoppy-wp-v2 .hero-photo::after {
  background-image: var(--hero-slide-2);
  animation: hoppyHeroSlideSecond var(--hero-slide-duration) ease-in-out infinite;
}

.hoppy-wp-v2 .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.30) 0%, rgba(10, 10, 10, 0.40) 100%);
  clip-path: polygon(0 0, 35% 0, 50% 100%, 0 100%);
  z-index: 1;
}

.hoppy-wp-v2 .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto 0 0;
  /* 中央寄せから左寄せに変更 */
  padding: 80px 5% 80px 8%;
  /* 左側の余白を少し増やす */
  display: grid;
  grid-template-columns: 55% 60%;
  /* 斜線の角度に合わせてテキストエリアの幅を調整 */
}

.hoppy-wp-v2 .hero-left {
  padding-right: 40px;
}

.hoppy-wp-v2 .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  animation: hoppyFadeInUp 0.5s ease both;
}

.hoppy-wp-v2 .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.74rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hoppy-wp-v2 .badge-dot {
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hoppy-wp-v2 .hero-h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  word-break: keep-all;
  overflow-wrap: normal;
  animation: hoppyFadeInUp 0.5s 0.08s ease both;
}

.hoppy-wp-v2 .hero-h1 em {
  display: inline-block;
  font-style: normal;
  color: var(--orange);
  white-space: nowrap;
}

.hoppy-wp-v2 .hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 8px;
  animation: hoppyFadeInUp 0.5s 0.16s ease both;
}

.hoppy-wp-v2 .hero-sub-em {
  font-size: 0.82rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 32px;
  animation: hoppyFadeInUp 0.5s 0.2s ease both;
}

.hoppy-wp-v2 .slots-highlight {
  color: var(--orange);
  font-weight: 700;
  font-style: normal;
  /* 斜体を解除して視認性を高める */
  display: inline-block;
}


.hoppy-wp-v2 .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  animation: hoppyFadeInUp 0.5s 0.24s ease both;
}

@media (max-width: 860px) {
  .hoppy-wp-v2 .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hoppy-wp-v2 .hero-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    order: 1;
  }

  .hoppy-wp-v2 .hero-overlay {
    clip-path: none;
    background: none;
    order: 2;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hoppy-wp-v2 .hero-content {
    grid-template-columns: 1fr;
    padding: 0 5% 36px;
    margin-top: -70px;
    order: 3;
    position: relative;
    z-index: 2;
    background: transparent;
  }

  .hoppy-wp-v2 .hero-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    clip-path: polygon(0 0, 100% 6vw, 100% 100%, 0 100%);
    z-index: -1;
  }

  .hoppy-wp-v2 .hero-h1 {
    margin-top: 20px;
  }

  .hoppy-wp-v2 .hero-cta {
    margin-bottom: 0;
  }
}

/* 02. Concept */
.hoppy-wp-v2 .concept-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hoppy-wp-v2 .concept-body {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
}

.hoppy-wp-v2 .concept-body p+p {
  margin-top: 1em;
}

.hoppy-wp-v2 .concept-cta {
  margin-top: 28px;
}

@media (max-width: 860px) {
  .hoppy-wp-v2 .concept-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* 03. KPI Bar */
.hoppy-wp-v2 .kpi-bar {
  padding: 54px 5% 62px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.13), transparent 34%),
    linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  color: var(--white);
  overflow: hidden;
}

.hoppy-wp-v2 .kpi-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.hoppy-wp-v2 .kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
  position: relative;
}

.hoppy-wp-v2 .kpi-badge {
  position: relative;
  width: clamp(158px, 18vw, 208px);
  height: clamp(158px, 18vw, 208px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.08), transparent 35%),
    var(--card-dark);
  border: 2px solid #242424;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hoppy-wp-v2 .kpi-badge:hover {
  border-color: var(--premium-gold);
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(212, 175, 55, 0.16);
}

.hoppy-wp-v2 .kpi-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.05) 20%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(255, 255, 255, 0.05) 80%,
      transparent);
  animation: hoppy-kpi-shine 5s infinite ease-in-out;
  pointer-events: none;
}

.hoppy-wp-v2 .kpi-ring {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hoppy-wp-v2 .kpi-dots {
  position: absolute;
  inset: 0;
  border: 3px dotted rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hoppy-wp-v2 .kpi-rule {
  position: absolute;
  bottom: 24px;
  width: 42px;
  height: 2px;
  background: var(--premium-gold-deep);
  opacity: 0.45;
}

.hoppy-wp-v2 .line-benefit-campaign {
  margin-top: 56px;
}

.hoppy-wp-v2 .line-benefit-campaign .section-header {
  margin-bottom: 0;
  padding: 0 5%;
}

.hoppy-wp-v2 .line-benefit-campaign .section-lead {
  max-width: 680px;
}

.hoppy-wp-v2 .line-benefit-campaign .campaign-card-old {
  text-decoration: none;
}

.hoppy-wp-v2 .line-benefit-campaign .campaign-cards {
  margin-top: 32px;
}

@media (max-width: 599px) {
  .hoppy-wp-v2 .line-benefit-campaign {
    margin-top: 44px;
  }

  .hoppy-wp-v2 .line-benefit-campaign .section-header {
    margin-top: 44px !important;
  }

  .hoppy-wp-v2 .line-benefit-campaign .campaign-cards {
    margin-top: 24px;
    gap: 16px;
  }
}

.hoppy-wp-v2 .kpi-num {
  font-family: var(--font-en);
  font-size: clamp(3.05rem, 5.4vw, 5rem);
  font-weight: 900;
  color: var(--premium-gold);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}

.hoppy-wp-v2 .kpi-unit {
  font-size: 0.45em;
  color: var(--premium-gold-bright);
  vertical-align: baseline;
}

.hoppy-wp-v2 .kpi-desc {
  font-size: clamp(0.68rem, 1.2vw, 0.82rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.hoppy-wp-v2 .kpi-source {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.36);
  margin-top: 14px;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .hoppy-wp-v2 .kpi-bar {
    padding: 42px 5% 50px;
  }

  .hoppy-wp-v2 .kpi-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
  }

  .hoppy-wp-v2 .kpi-item:first-child {
    grid-column: 1 / -1;
  }

  .hoppy-wp-v2 .kpi-badge {
    width: clamp(126px, 37vw, 140px);
    height: clamp(126px, 37vw, 140px);
  }

  .hoppy-wp-v2 .kpi-item:first-child .kpi-badge {
    width: clamp(150px, 45vw, 166px);
    height: clamp(150px, 45vw, 166px);
  }

  .hoppy-wp-v2 .kpi-ring {
    inset: 8px;
  }

  .hoppy-wp-v2 .kpi-rule {
    bottom: 20px;
    width: 34px;
  }

  .hoppy-wp-v2 .kpi-source {
    margin-top: 10px;
    font-size: 0.58rem;
  }
}

/* 04. Campaign */
/* =========================================
       Campaign Section - Brutal Ticket (Glitch)
    ========================================= */
.hoppy-wp-v2 .campaign {
  background-color: #FFF4E6;
  position: relative;
  padding: 60px 0;
  text-align: center;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
  /* 影付きグリッチ背景（黒とオレンジの文字を少しズラして配置） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Ctext x='51%25' y='52%25' font-family='Barlow Condensed, sans-serif' font-size='20vw' font-weight='900' fill='rgba(17,17,17,0.08)' text-anchor='middle' dominant-baseline='middle'%3ESPECIAL%3C/text%3E%3Ctext x='50%25' y='50%25' font-family='Barlow Condensed, sans-serif' font-size='20vw' font-weight='900' fill='rgba(255,90,31,0.08)' text-anchor='middle' dominant-baseline='middle'%3ESPECIAL%3C/text%3E%3C/svg%3E");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 以前の背景文字（::before）はSVG背景に変更したため非表示に */
.hoppy-wp-v2 .campaign::before {
  display: none;
}

.hoppy-wp-v2 .campaign .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hoppy-wp-v2 .campaign-tag {
  background: var(--orange);
  color: var(--black);
  padding: 6px 16px;
  font-weight: 900;
  font-size: 0.9rem;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hoppy-wp-v2 .campaign-tag .badge-dot {
  background: var(--black);
}

.hoppy-wp-v2 .campaign .section-title {
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
  font-weight: 900;
  text-shadow: 2px 2px 0 #FFF, 4px 4px 0 var(--black);
}

.hoppy-wp-v2 .campaign-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px auto;
  max-width: 800px;
  width: 100%;
  padding: 0 5%;
}

.hoppy-wp-v2 .campaign-card {
  display: flex;
  flex-wrap: wrap;
  /* スマホ時に要素を折り返す */
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 0;
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--orange);
  text-align: left;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hoppy-wp-v2 .campaign-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--orange);
}

.hoppy-wp-v2 .campaign-card-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 0;
  flex: 1 1 100%;
  /* スマホ時は横幅100%にして単独の行にする */
}

.hoppy-wp-v2 .campaign-card-old {
  font-size: 0.9rem;
  color: var(--black);
  text-decoration: line-through;
  margin-bottom: 0;
  font-weight: 700;
}

.hoppy-wp-v2 .campaign-card-new {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  /* 画面幅に合わせて文字サイズを自動調整 */
  font-weight: 900;
  color: var(--orange);
  line-height: 1.2;
  text-shadow: 2px 2px 0 var(--black);
  white-space: nowrap;
  /* 【重要】「0円」の途中での改行を絶対に防ぐ */
}

.hoppy-wp-v2 .campaign-card-new span {
  font-size: clamp(0.9rem, 3vw, 1rem);
  margin-left: 2px;
}

/* ボタンのブルータリズム化 */
.hoppy-wp-v2 .campaign .btn-primary {
  background: var(--orange);
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  font-weight: 900;
  border-radius: 0;
}

.hoppy-wp-v2 .campaign .btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--black);
  background: var(--orange);
}

/* PCサイズ（600px以上）の時のレイアウト調整 */
@media (min-width: 600px) {
  .hoppy-wp-v2 .campaign-card-title {
    flex: 1;
    /* PCではタイトルも横並びにする */
  }
}

/* 05. Purpose Tiles */
.hoppy-wp-v2 .purpose-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.hoppy-wp-v2 .purpose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.hoppy-wp-v2 .purpose-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.hoppy-wp-v2 .purpose-card:nth-child(1) {
  grid-column: 1 / span 2;
}

.hoppy-wp-v2 .purpose-card:nth-child(2) {
  grid-column: 3 / span 2;
}

.hoppy-wp-v2 .purpose-card:nth-child(3) {
  grid-column: 5 / span 2;
}

.hoppy-wp-v2 .purpose-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.hoppy-wp-v2 .purpose-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.hoppy-wp-v2 .purpose-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 14px;
  position: relative;
}

.hoppy-wp-v2 .purpose-num::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.hoppy-wp-v2 .purpose-title {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.hoppy-wp-v2 .purpose-body {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.75;
}

.hoppy-wp-v2 .purpose-list {
  font-size: 0.8rem;
  color: var(--gray-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.hoppy-wp-v2 .purpose-list li::before {
  content: '・';
}

.hoppy-wp-v2 .purpose-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.hoppy-wp-v2 .purpose-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-mid);
  font-size: 0.7rem;
  transition: var(--transition);
}

.hoppy-wp-v2 .purpose-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.hoppy-wp-v2 .purpose-card:hover .purpose-link {
  color: var(--orange);
}

.hoppy-wp-v2 .purpose-card:hover .purpose-link-arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

@media (max-width: 900px) {
  .hoppy-wp-v2 .purpose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hoppy-wp-v2 .purpose-card:nth-child(n) {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .hoppy-wp-v2 .purpose-grid {
    grid-template-columns: 1fr;
  }
}

/* 06. Continuation Design */
.hoppy-wp-v2 .continue-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hoppy-wp-v2 .continue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hoppy-wp-v2 .continue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
}

.hoppy-wp-v2 .continue-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.hoppy-wp-v2 .continue-num {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255, 90, 31, 0.1);
  line-height: 1;
  margin-bottom: 10px;
}

.hoppy-wp-v2 .continue-title {
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.45;
}

.hoppy-wp-v2 .continue-body {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.85;
}

.hoppy-wp-v2 .why-hoppy .continue-card {
  display: flex;
  flex-direction: column;
}

.hoppy-wp-v2 .why-hoppy .continue-num {
  color: var(--orange);
}

.hoppy-wp-v2 .why-hoppy .continue-body {
  flex: 1;
}

.hoppy-wp-v2 .why-hoppy .reason-voice {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 90, 31, 0.04);
}

.hoppy-wp-v2 .why-hoppy .reason-voice-label {
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}

.hoppy-wp-v2 .why-hoppy .reason-voice-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: -1px;
}

.hoppy-wp-v2 .why-hoppy .reason-voice-text {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .hoppy-wp-v2 .continue-grid {
    grid-template-columns: 1fr;
  }
}

/* 07. Reviews / Testimonials */
.hoppy-wp-v2 .reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hoppy-wp-v2 .moment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.hoppy-wp-v2 .moment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.hoppy-wp-v2 .moment-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.1;
  position: absolute;
  top: 4px;
  left: 14px;
  line-height: 1;
}

.hoppy-wp-v2 .moment-num {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 10px;
}

.hoppy-wp-v2 .moment-title {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.4;
}

.hoppy-wp-v2 .moment-body {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.8;
}

.hoppy-wp-v2 .moment-meta {
  font-size: 0.76rem;
  color: var(--gray-mid);
  margin-top: 12px;
}

.hoppy-wp-v2 .carousel-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-mid);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hoppy-wp-v2 .carousel-heading::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
}

.hoppy-wp-v2 .reviews-close {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 36px;
  font-style: italic;
}

@media (max-width: 768px) {
  .hoppy-wp-v2 .moment-cards {
    grid-template-columns: 1fr;
  }
}

/* 08. Risk Reversal */
.hoppy-wp-v2 .risk-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hoppy-wp-v2 .risk-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hoppy-wp-v2 .risk-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(255, 90, 31, 0.07);
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: var(--radius);
  padding: 10px 18px;
}

.hoppy-wp-v2 .risk-badge-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.hoppy-wp-v2 .risk-badge-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}

.hoppy-wp-v2 .risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hoppy-wp-v2 .risk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--transition);
}

.hoppy-wp-v2 .risk-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.hoppy-wp-v2 .risk-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 90, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.hoppy-wp-v2 .risk-card-icon-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
}

.hoppy-wp-v2 .risk-card-title {
  font-size: 0.97rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.hoppy-wp-v2 .risk-card-body {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.85;
}

@media (max-width: 768px) {
  .hoppy-wp-v2 .risk-grid {
    grid-template-columns: 1fr;
  }
}

/* 09. Flow */
.hoppy-wp-v2 .flow-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hoppy-wp-v2 .flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.hoppy-wp-v2 .flow-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding-bottom: 36px;
}

.hoppy-wp-v2 .flow-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hoppy-wp-v2 .flow-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hoppy-wp-v2 .flow-step-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(255, 90, 31, 0.08));
  margin-top: 6px;
}

.hoppy-wp-v2 .flow-step:last-child .flow-step-line {
  display: none;
}

.hoppy-wp-v2 .flow-step-content {
  padding-top: 12px;
}

.hoppy-wp-v2 .flow-step-title {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.hoppy-wp-v2 .flow-step-body {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.8;
}

/* 10. Pricing */
.hoppy-wp-v2 .pricing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hoppy-wp-v2 .pricing-body {
  font-size: 0.93rem;
  line-height: 1.9;
  margin: 20px 0 32px;
}

.hoppy-wp-v2 .pricing-body--light {
  color: rgba(255, 255, 255, 0.65);
}

.hoppy-wp-v2 .pricing-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 11. FAQ */
.hoppy-wp-v2 .faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hoppy-wp-v2 .faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hoppy-wp-v2 .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.hoppy-wp-v2 .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ja);
  font-size: 0.93rem;
  font-weight: 700;
  text-align: left;
  transition: background 0.2s;
}

.hoppy-wp-v2 .faq-q:hover {
  background: var(--gray-light);
}

.hoppy-wp-v2 .faq-q-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hoppy-wp-v2 .faq-chevron {
  transition: transform 0.3s;
}

.hoppy-wp-v2 .faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.hoppy-wp-v2 .faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.85;
  border-top: 1px solid var(--border);
}

.hoppy-wp-v2 .faq-item.open .faq-a {
  display: block;
}

/* 12. News / Blog */
.hoppy-wp-v2 .news-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hoppy-wp-v2 .news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.hoppy-wp-v2 .news-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--black);
  margin-bottom: 4px;
}

.hoppy-wp-v2 .news-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hoppy-wp-v2 .news-date {
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  color: var(--gray-mid);
  white-space: nowrap;
}

.hoppy-wp-v2 .news-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
}

.hoppy-wp-v2 .news-link:hover {
  color: var(--orange);
}

.hoppy-wp-v2 .news-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
}

@media (max-width: 680px) {
  .hoppy-wp-v2 .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 13. Access */
.hoppy-wp-v2 .access-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.hoppy-wp-v2 .access-info-table {
  width: 100%;
  border-collapse: collapse;
}

.hoppy-wp-v2 .access-info-table tr {
  border-bottom: 1px solid var(--border);
}

.hoppy-wp-v2 .access-info-table th {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gray-mid);
  padding: 11px 0;
  text-align: left;
  width: 84px;
}

.hoppy-wp-v2 .access-info-table td {
  font-size: 0.86rem;
  padding: 11px 0;
  line-height: 1.7;
}

.hoppy-wp-v2 .access-map-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hoppy-wp-v2 .access-map-placeholder iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.hoppy-wp-v2 .access-btns {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hoppy-wp-v2 .access-inner {
    grid-template-columns: 1fr;
  }
}

/* 14. Footer CTA */
.hoppy-wp-v2 .footer-cta {
  background: var(--orange);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hoppy-wp-v2 .footer-cta::before {
  content: 'HOPPY';
  font-family: var(--font-en);
  font-size: 17rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.hoppy-wp-v2 .footer-cta-copy {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: white;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
}

.hoppy-wp-v2 .footer-cta-sub {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  font-size: 0.9rem;
  position: relative;
}

/* Animations */
@keyframes hoppyFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hoppyHeroSlideFirst {

  0%,
  35% {
    opacity: 1;
  }

  50%,
  85% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hoppyHeroSlideSecond {

  0%,
  35% {
    opacity: 0;
  }

  50%,
  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* =========================================================
   Generic Components for Inner Pages (.hoppy-wp-v2)
========================================================= */

/* Headings */
.hoppy-wp-v2 .hoppy-h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hoppy-wp-v2 .hoppy-h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hoppy-wp-v2 .hoppy-h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 36px;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
}

/* Paragraphs & Text */
.hoppy-wp-v2 .hoppy-text {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.85;
  margin-bottom: 1.5em;
}

/* Tables */
.hoppy-wp-v2 .hoppy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: var(--white);
  border: 1px solid #dcdcdc;
}

.hoppy-wp-v2 .hoppy-table th,
.hoppy-wp-v2 .hoppy-table td {
  padding: 20px;
  border: 1px solid #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
}

.hoppy-wp-v2 .hoppy-table th,
.hoppy-wp-v2 .hoppy-table td:first-child,
.hoppy-wp-v2 .hoppy-table td.head-membership,
.hoppy-wp-v2 .hoppy-table td.head-admission,
.hoppy-wp-v2 .hoppy-table td.head-guest,
.hoppy-wp-v2 .hoppy-table td.head-addtion,
.hoppy-wp-v2 .hoppy-table td.head-option {
  background: var(--hoppy-v2-orange-dark, #D94000) !important;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1.2rem;
  width: 22%;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px 10px !important;
}

.hoppy-wp-v2 .hoppy-table td:first-child .section-label,
.hoppy-wp-v2 .hoppy-table th .section-label {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem !important;
  /* Larger typographic style */
  font-weight: 900 !important;
  letter-spacing: 0.15em !important;
  color: rgba(255, 255, 255, 0.2) !important;
  /* More faded for background effect */
  line-height: 1 !important;
  margin-bottom: -4px !important;
  /* Pull Japanese text up slightly closer */
  text-transform: uppercase !important;
  pointer-events: none;
}

.hoppy-wp-v2 .hoppy-table .hoppy-table__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  font-weight: 700;
  border-radius: 0 0 4px 0;
  line-height: 1.4;
}

.hoppy-wp-v2 .hoppy-table td:nth-child(2) {
  width: 26%;
  text-align: center;
}

.hoppy-wp-v2 .hoppy-table td:nth-child(3) {
  width: 52%;
}

.hoppy-wp-v2 .hoppy-table td.menu-price,
.hoppy-wp-v2 .hoppy-table .hoppy-price-val {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
}

.hoppy-wp-v2 .hoppy-table td.menu-price .yen {
  font-size: 1.1rem;
  font-family: var(--font-ja);
  color: var(--black);
  font-weight: 700;
  margin: 0 4px;
}

@media (max-width: 680px) {

  .hoppy-wp-v2 .hoppy-table th,
  .hoppy-wp-v2 .hoppy-table td {
    display: block;
    width: 100%;
  }

  .hoppy-wp-v2 .hoppy-table th {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .hoppy-wp-v2 .hoppy-table td {
    padding-top: 0;
    margin-bottom: 8px;
  }
}

/* Lists (Unordered) */
.hoppy-wp-v2 .hoppy-list {
  margin-bottom: 24px;
  padding-left: 0;
}

.hoppy-wp-v2 .hoppy-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--black);
}

.hoppy-wp-v2 .hoppy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* Notice Box */
.hoppy-wp-v2 .hoppy-notice {
  background: rgba(255, 90, 31, 0.05);
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.hoppy-wp-v2 .hoppy-notice p:last-child {
  margin-bottom: 0;
}

/* Definition Lists (Accordion / Info) */
.hoppy-wp-v2 .hoppy-dl {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hoppy-wp-v2 .hoppy-dl dt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  font-family: var(--font-ja);
  font-size: 0.93rem;
  font-weight: 700;
  text-align: left;
  color: var(--black);
  margin-bottom: -1px;
  /* border overlap */
}

.hoppy-wp-v2 .hoppy-dl dd {
  padding: 0 22px 18px;
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.85;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 12px;
}

.hoppy-wp-v2 .hoppy-dl-simple dt {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-weight: 900;
  padding: 16px 20px;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.hoppy-wp-v2 .hoppy-dl-simple dd {
  border: none;
  background: transparent;
  padding: 8px 12px 24px;
}

/* ================================================
   SP Plan A: Price Card Style
   ================================================ */
.hoppy-wp-v2 .hoppy-price-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 8px;
}

.hoppy-wp-v2 .hoppy-price-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.hoppy-wp-v2 .hoppy-price-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
}

.hoppy-wp-v2 .hoppy-price-card__head--system {
  background: #555 !important;
}

.hoppy-wp-v2 .hoppy-price-card__head--premium {
  background: #7b3f00 !important;
}

.hoppy-wp-v2 .hoppy-price-card__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hoppy-wp-v2 .hoppy-price-card__en {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-en);
  font-weight: 400;
}

.hoppy-wp-v2 .hoppy-price-card__ja {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
}

.hoppy-wp-v2 .hoppy-price-card__price {
  text-align: right;
  line-height: 1.2;
}

.hoppy-wp-v2 .hoppy-price-card__amount {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.hoppy-wp-v2 .hoppy-price-card__unit {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

.hoppy-wp-v2 .hoppy-price-card__body {
  padding: 16px 20px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--black);
}

.hoppy-wp-v2 .hoppy-price-card__desc {
  margin-bottom: 10px;
}

.hoppy-wp-v2 .course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.hoppy-wp-v2 .course-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.08);
  color: #c94000;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.hoppy-wp-v2 .course-tag--premium {
  border-color: rgba(123, 63, 0, 0.32);
  background: rgba(123, 63, 0, 0.1);
  color: #7b3f00;
}

.hoppy-wp-v2 .course-tag--light {
  border-color: rgba(34, 136, 238, 0.28);
  background: rgba(34, 136, 238, 0.08);
  color: #1c66b0;
}

.hoppy-wp-v2 .hoppy-price-card__body .course-tags {
  margin-bottom: 12px;
}

.hoppy-wp-v2 .hoppy-price-card__body .course-tag {
  font-size: 0.78rem;
  min-height: 28px;
  padding: 4px 10px;
  white-space: normal;
}

.hoppy-wp-v2 .hoppy-price-card__bonus {
  background: rgba(255, 90, 31, 0.06);
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  line-height: 1.7;
}

.hoppy-wp-v2 .hoppy-price-card--popular .hoppy-price-card__head {
  background: var(--orange-dark, #c94000);
}

.hoppy-wp-v2 .hoppy-price-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #111;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 0 0 8px 0;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  z-index: 2;
}

/* ================================================
   SP Plan B: Accordion Style
   ================================================ */
.hoppy-wp-v2 .hoppy-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.hoppy-wp-v2 .hoppy-accordion__item {
  border: 1px solid #dcdcdc;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.hoppy-wp-v2 .hoppy-accordion__item--static .hoppy-accordion__trigger {
  cursor: default;
  pointer-events: none;
}

.hoppy-wp-v2 .hoppy-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.hoppy-wp-v2 .hoppy-accordion__trigger-left {
  flex: 1;
  min-width: 0;
}

.hoppy-wp-v2 .hoppy-accordion__en {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-family: var(--font-en);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.hoppy-wp-v2 .hoppy-accordion__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
}

.hoppy-wp-v2 .hoppy-accordion__price-tag {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  white-space: nowrap;
  flex: 0 0 auto;
  margin-left: 12px;
}

.hoppy-wp-v2 .hoppy-accordion__price-unit {
  font-size: 0.8rem;
  color: var(--gray);
  font-family: var(--font-ja);
  font-weight: 400;
}

.hoppy-wp-v2 .hoppy-accordion__arrow {
  font-size: 1rem;
  color: var(--gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 6px;
}

.hoppy-wp-v2 .hoppy-accordion__item.is-open .hoppy-accordion__arrow {
  transform: rotate(180deg);
}

.hoppy-wp-v2 .hoppy-accordion__item--static .hoppy-accordion__arrow {
  display: none;
}

.hoppy-wp-v2 .hoppy-accordion__item--static .hoppy-accordion__body {
  display: none !important;
}

.hoppy-wp-v2 .hoppy-accordion__body {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--black);
  border-top: 1px solid #eee;
}

.hoppy-wp-v2 .hoppy-accordion__item.is-open .hoppy-accordion__body {
  display: block;
}

/* FAQ Page */
.hoppy-wp-v2.faq-page .faq-page__hero-inner,
.hoppy-wp-v2.faq-page .faq-page__quick-nav-inner,
.hoppy-wp-v2.faq-page .faq-page__faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hoppy-wp-v2.faq-page .faq-page__hero {
  padding-top: 96px;
  padding-bottom: 88px;
}

.hoppy-wp-v2.faq-page .faq-page__hero .section-header {
  text-align: center;
}

.hoppy-wp-v2.faq-page .faq-page__hero .section-rule {
  margin-left: auto;
  margin-right: auto;
}

.hoppy-wp-v2.faq-page .faq-page__hero .section-lead {
  max-width: 720px;
  margin: 0 auto;
}

.hoppy-wp-v2.faq-page .faq-page__hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hoppy-wp-v2.faq-page .faq-page__hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(255, 90, 31, 0.18);
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 700;
}

.hoppy-wp-v2.faq-page .faq-page__hero-actions,
.hoppy-wp-v2.faq-page .faq-page__cta-actions,
.hoppy-wp-v2.faq-page .faq-page__review-embed-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hoppy-wp-v2.faq-page .faq-page__topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hoppy-wp-v2.faq-page .faq-page__quick-card {
  display: block;
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.hoppy-wp-v2.faq-page .faq-page__quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 90, 31, 0.24);
}

.hoppy-wp-v2.faq-page .faq-page__quick-card-label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.hoppy-wp-v2.faq-page .faq-page__quick-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.hoppy-wp-v2.faq-page .faq-page__quick-card p {
  margin: 0 0 16px;
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.8;
}

.hoppy-wp-v2.faq-page .faq-page__quick-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
}

.hoppy-wp-v2.faq-page .faq-page__summary {
  padding-top: 88px;
  padding-bottom: 88px;
}

.hoppy-wp-v2.faq-page .faq-page__review-embed {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hoppy-wp-v2.faq-page .faq-page__faq-main {
  padding-top: 88px;
  padding-bottom: 88px;
}

.hoppy-wp-v2.faq-page .faq-page__topic+.faq-page__topic {
  margin-top: 56px;
}

.hoppy-wp-v2.faq-page .faq-page__topic-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.hoppy-wp-v2.faq-page .faq-page__topic-label {
  margin: 0 0 8px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 700;
}

.hoppy-wp-v2.faq-page .faq-page__topic-title {
  margin: 0 0 8px;
  font-size: 1.6rem;
  line-height: 1.35;
}

.hoppy-wp-v2.faq-page .faq-page__topic-lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--gray);
}

.hoppy-wp-v2.faq-page .faq-page__cta-band {
  margin: 56px 0;
  padding: 36px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.08), rgba(255, 255, 255, 1));
  border: 1px solid rgba(255, 90, 31, 0.16);
  text-align: center;
}

.hoppy-wp-v2.faq-page .faq-page__cta-band--bottom {
  max-width: 980px;
  margin: 0 auto;
}

.hoppy-wp-v2.faq-page .faq-page__cta-copy {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.hoppy-wp-v2.faq-page .faq-page__bottom-cta {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* Contact Page */
.hoppy-wp-v2.contact-page .contact-page__hero-inner,
.hoppy-wp-v2.contact-page .contact-page__line-inner,
.hoppy-wp-v2.contact-page .contact-page__content-inner,
.hoppy-wp-v2.contact-page .contact-page__form-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hoppy-wp-v2.contact-page .contact-page__hero {
  padding-top: 96px;
  padding-bottom: 88px;
}

.hoppy-wp-v2.contact-page .contact-page__hero .section-header,
.hoppy-wp-v2.contact-page .contact-page__line .section-header,
.hoppy-wp-v2.contact-page .contact-page__paths .section-header,
.hoppy-wp-v2.contact-page .contact-page__support .section-header,
.hoppy-wp-v2.contact-page .contact-page__form .section-header {
  text-align: center;
}

.hoppy-wp-v2.contact-page .contact-page__hero .section-rule,
.hoppy-wp-v2.contact-page .contact-page__line .section-rule,
.hoppy-wp-v2.contact-page .contact-page__paths .section-rule,
.hoppy-wp-v2.contact-page .contact-page__support .section-rule,
.hoppy-wp-v2.contact-page .contact-page__form .section-rule {
  margin-left: auto;
  margin-right: auto;
}

.hoppy-wp-v2.contact-page .contact-page__hero .section-lead,
.hoppy-wp-v2.contact-page .contact-page__line .section-lead,
.hoppy-wp-v2.contact-page .contact-page__paths .section-lead,
.hoppy-wp-v2.contact-page .contact-page__support .section-lead,
.hoppy-wp-v2.contact-page .contact-page__form .section-lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.hoppy-wp-v2.contact-page .contact-page__hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hoppy-wp-v2.contact-page .contact-page__hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(255, 90, 31, 0.18);
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 700;
}

.hoppy-wp-v2.contact-page .contact-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hoppy-wp-v2.contact-page .contact-page__line {
  padding-top: 88px;
  padding-bottom: 88px;
}

.hoppy-wp-v2.contact-page .contact-page__image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 36px;
}

.hoppy-wp-v2.contact-page .contact-page__image-card {
  margin: 0;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06);
  text-align: center;
}

.hoppy-wp-v2.contact-page .contact-page__image {
  display: block;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  border-radius: 10px;
}

.hoppy-wp-v2.contact-page .contact-page__image-caption {
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--gray);
}

.hoppy-wp-v2.contact-page .contact-page__cta-band {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.08), rgba(255, 255, 255, 1));
  border: 1px solid rgba(255, 90, 31, 0.16);
  text-align: center;
}

.hoppy-wp-v2.contact-page .contact-page__cta-band--bottom {
  max-width: 100%;
}

.hoppy-wp-v2.contact-page .contact-page__cta-copy {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.hoppy-wp-v2.contact-page .contact-page__paths,
.hoppy-wp-v2.contact-page .contact-page__support,
.hoppy-wp-v2.contact-page .contact-page__form {
  padding-top: 88px;
  padding-bottom: 88px;
}

.hoppy-wp-v2.contact-page .contact-page__path-grid,
.hoppy-wp-v2.contact-page .contact-page__support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hoppy-wp-v2.contact-page .contact-page__path-card,
.hoppy-wp-v2.contact-page .contact-page__support-card {
  padding: 26px 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.hoppy-wp-v2.contact-page .contact-page__path-label,
.hoppy-wp-v2.contact-page .contact-page__support-label {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 700;
}

.hoppy-wp-v2.contact-page .contact-page__path-title,
.hoppy-wp-v2.contact-page .contact-page__support-title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.hoppy-wp-v2.contact-page .contact-page__path-body,
.hoppy-wp-v2.contact-page .contact-page__support-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gray);
}

.hoppy-wp-v2.contact-page .contact-page__path-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--orange);
}

.hoppy-wp-v2.contact-page .contact-page__form-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hoppy-wp-v2.contact-page .contact-page__form-note {
  margin-bottom: 22px;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255, 90, 31, 0.06);
}

.hoppy-wp-v2.contact-page .contact-page__form-note p {
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.8;
}

.hoppy-wp-v2.contact-page .contact-page__form-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--gray);
}

.hoppy-wp-v2.contact-page .contact-page__form-list li+li {
  margin-top: 6px;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .hoppy-contact-form {
  color: var(--black);
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .ft-wrap {
  max-width: none;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .ft-cell {
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .ft-wrap:first-child .ft-cell {
  border-top: 0;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .ft-wrap .ft-cell:first-child {
  width: 230px;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .form-title-wrap {
  gap: 12px;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .form-title-wrap .title {
  color: var(--black);
  font-weight: 700;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table p.require {
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
  padding: 6px 10px;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .kind {
  gap: 12px;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .kind .wpcf7-list-item {
  margin: 0;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .kind label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #fff;
  transition: var(--transition);
  cursor: pointer;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .kind label:hover {
  border-color: rgba(255, 90, 31, 0.3);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .kind input[type="radio"] {
  accent-color: var(--orange);
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .form-text,
.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .form-textarea,
.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table select,
.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .datetime-wrap .date {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .form-text:focus,
.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .form-textarea:focus,
.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table select:focus,
.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .datetime-wrap .date:focus {
  outline: none;
  border-color: rgba(255, 90, 31, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .form-textarea {
  min-height: 220px;
  height: 220px;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .datetime-wrap {
  gap: 14px;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .submit-wrap {
  margin-top: 28px;
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .submit-wrap .btn-send {
  min-width: 280px;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 32px rgba(255, 90, 31, 0.28);
}

.hoppy-wp-v2.contact-page .contact-page__form-panel .submit-wrap .btn-send:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 90, 31, 0.32);
}

.hoppy-wp-v2.contact-page .contact-page__bottom-cta {
  padding-top: 72px;
  padding-bottom: 72px;
}

.hoppy-wp-v2.recruit-page .recruit-page__hero-inner,
.hoppy-wp-v2.recruit-page .recruit-page__section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hoppy-wp-v2.recruit-page .recruit-page__hero {
  padding-top: 96px;
  padding-bottom: 88px;
}

.hoppy-wp-v2.recruit-page .recruit-page__section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.hoppy-wp-v2.recruit-page .recruit-page__hero .section-header,
.hoppy-wp-v2.recruit-page .recruit-page__section .section-header {
  text-align: center;
}

.hoppy-wp-v2.recruit-page .recruit-page__hero .section-rule,
.hoppy-wp-v2.recruit-page .recruit-page__section .section-rule {
  margin-left: auto;
  margin-right: auto;
}

.hoppy-wp-v2.recruit-page .recruit-page__hero .section-lead,
.hoppy-wp-v2.recruit-page .recruit-page__section .section-lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.hoppy-wp-v2.recruit-page .recruit-page__lead-heading {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.7;
  font-weight: 700;
}

.hoppy-wp-v2.recruit-page .recruit-page__hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hoppy-wp-v2.recruit-page .recruit-page__hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(255, 90, 31, 0.18);
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 700;
}

.hoppy-wp-v2.recruit-page .recruit-page__jobs .section-header {
  margin-bottom: 40px;
}

.hoppy-wp-v2.recruit-page .recruit-page__job-block+.recruit-page__job-block {
  margin-top: 48px;
}

.hoppy-wp-v2.recruit-page .recruit-page__job-label {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 700;
}

.hoppy-wp-v2.recruit-page .recruit-page__job-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.hoppy-wp-v2.recruit-page .recruit-page__table {
  border-collapse: collapse;
  border-radius: 0;
  border: 1px solid #cfcfcf;
  box-shadow: none;
  background: var(--white);
  table-layout: fixed;
}

.hoppy-wp-v2.recruit-page .recruit-page__table td {
  padding: 18px 16px;
  border: 1px solid #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.75;
  vertical-align: top;
}

.hoppy-wp-v2.recruit-page .recruit-page__table td:first-child {
  width: 25% !important;
  padding: 18px 14px !important;
  background: #f3f3f3 !important;
  color: var(--black) !important;
  font-size: 0.95rem !important;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  min-height: 0;
}

.hoppy-wp-v2.recruit-page .recruit-page__table td:not(:first-child) {
  text-align: left;
  padding-left: 22px;
}

.hoppy-wp-v2.recruit-page .recruit-page__table .hoppy-list {
  margin-bottom: 0;
  padding-left: 0;
}

.hoppy-wp-v2.recruit-page .recruit-page__table .hoppy-list li {
  margin-bottom: 0.25em;
  padding-left: 0;
}

.hoppy-wp-v2.recruit-page .recruit-page__table .hoppy-list li::before {
  display: none;
}

.hoppy-wp-v2.recruit-page .recruit-page__table .hoppy-list li:last-child {
  margin-bottom: 0;
}

.hoppy-wp-v2.recruit-page .recruit-page__salary,
.hoppy-wp-v2.recruit-page .recruit-page__plain-text {
  font-size: 0.96rem;
  line-height: 1.85;
  text-align: left;
}

.hoppy-wp-v2.recruit-page .recruit-page__salary {
  color: var(--black);
  font-weight: 400;
}

.hoppy-wp-v2.recruit-page .recruit-page__culture-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.hoppy-wp-v2.recruit-page .recruit-page__culture-card {
  margin: 0;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06);
}

.hoppy-wp-v2.recruit-page .recruit-page__culture-image {
  display: block;
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hoppy-wp-v2.recruit-page .recruit-page__culture-caption {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
}

.hoppy-wp-v2.recruit-page .recruit-page__entry-band {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.08), rgba(255, 255, 255, 1));
  border: 1px solid rgba(255, 90, 31, 0.16);
  text-align: center;
}

.hoppy-wp-v2.recruit-page .recruit-page__entry-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 900px) {

  .hoppy-wp-v2.contact-page .contact-page__path-grid,
  .hoppy-wp-v2.contact-page .contact-page__support-grid,
  .hoppy-wp-v2.recruit-page .recruit-page__culture-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hoppy-wp-v2.faq-page .faq-page__topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hoppy-wp-v2.faq-page .faq-page__hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .hoppy-wp-v2.faq-page .faq-page__topic-grid {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2.faq-page .faq-page__hero-actions,
  .hoppy-wp-v2.faq-page .faq-page__cta-actions,
  .hoppy-wp-v2.faq-page .faq-page__review-embed-actions {
    flex-direction: column;
  }

  .hoppy-wp-v2.faq-page .faq-page__hero-actions .btn,
  .hoppy-wp-v2.faq-page .faq-page__cta-actions .btn,
  .hoppy-wp-v2.faq-page .faq-page__review-embed-actions .btn {
    width: 100%;
  }

  .hoppy-wp-v2.faq-page .faq-page__review-embed,
  .hoppy-wp-v2.faq-page .faq-page__cta-band {
    padding: 22px 18px;
  }

  .hoppy-wp-v2.faq-page .faq-page__topic-title {
    font-size: 1.28rem;
  }

  .hoppy-wp-v2.contact-page .contact-page__hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .hoppy-wp-v2.contact-page .contact-page__line,
  .hoppy-wp-v2.contact-page .contact-page__paths,
  .hoppy-wp-v2.contact-page .contact-page__support,
  .hoppy-wp-v2.contact-page .contact-page__form,
  .hoppy-wp-v2.recruit-page .recruit-page__section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hoppy-wp-v2.contact-page .contact-page__image-grid,
  .hoppy-wp-v2.contact-page .contact-page__path-grid,
  .hoppy-wp-v2.contact-page .contact-page__support-grid,
  .hoppy-wp-v2.recruit-page .recruit-page__culture-media {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2.contact-page .contact-page__hero-actions,
  .hoppy-wp-v2.recruit-page .recruit-page__entry-actions {
    flex-direction: column;
  }

  .hoppy-wp-v2.contact-page .contact-page__hero-actions .btn,
  .hoppy-wp-v2.recruit-page .recruit-page__entry-actions .btn {
    width: 100%;
  }

  .hoppy-wp-v2.contact-page .contact-page__image-card,
  .hoppy-wp-v2.contact-page .contact-page__form-panel,
  .hoppy-wp-v2.contact-page .contact-page__cta-band,
  .hoppy-wp-v2.recruit-page .recruit-page__culture-card,
  .hoppy-wp-v2.recruit-page .recruit-page__entry-band {
    padding: 22px 18px;
  }

  .hoppy-wp-v2.contact-page .contact-page__path-title,
  .hoppy-wp-v2.contact-page .contact-page__support-title,
  .hoppy-wp-v2.recruit-page .recruit-page__lead-heading {
    font-size: 1rem;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__table,
  .hoppy-wp-v2.recruit-page .recruit-page__table tbody,
  .hoppy-wp-v2.recruit-page .recruit-page__table tr,
  .hoppy-wp-v2.recruit-page .recruit-page__table td {
    display: block !important;
    width: 100% !important;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__table tr {
    border-bottom: 1px solid #cfcfcf;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__table tr:last-child {
    border-bottom: 0;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__table td {
    box-sizing: border-box;
    padding: 14px 14px !important;
    font-size: 0.92rem !important;
    line-height: 1.75;
    border-left: 0;
    border-right: 0;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__table td:first-child {
    display: block !important;
    padding: 12px 14px !important;
    border-bottom: 0;
    font-size: 0.92rem !important;
    width: 100% !important;
    max-width: none !important;
    background: #f3f3f3 !important;
    box-sizing: border-box;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__table td:not(:first-child) {
    padding-left: 14px !important;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__table .hoppy-list li {
    line-height: 1.8;
  }

  .hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .ft-wrap .ft-cell:first-child {
    width: auto;
  }

  .hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .kind label,
  .hoppy-wp-v2.contact-page .contact-page__form-panel .submit-wrap .btn-send {
    width: 100%;
  }

  .hoppy-wp-v2.contact-page .contact-page__form-panel .form-table .datetime-wrap {
    flex-direction: column;
  }
}

@media (min-width: 860px) {
  .hoppy-wp-v2.recruit-page .recruit-page__table td:first-child {
    display: table-cell !important;
    width: 25% !important;
  }

  .hoppy-wp-v2.recruit-page .recruit-page__table td:not(:first-child) {
    display: table-cell !important;
    width: 75% !important;
  }

  .hoppy-wp-v2 .hoppy-table td:first-child,
  .hoppy-wp-v2 .hoppy-table td.head-membership,
  .hoppy-wp-v2 .hoppy-table td.head-admission,
  .hoppy-wp-v2 .hoppy-table td.head-guest,
  .hoppy-wp-v2 .hoppy-table td.head-addtion,
  .hoppy-wp-v2 .hoppy-table td.head-option {
    display: table-cell !important;
    vertical-align: bottom;
    min-height: 132px;
    padding: 52px 14px 18px !important;
    text-align: left;
    isolation: isolate;
    width: 22% !important;
  }

  .hoppy-wp-v2 .hoppy-table td:first-child .section-label,
  .hoppy-wp-v2 .hoppy-table th .section-label {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 12px;
    margin: 0 !important;
    font-size: clamp(1.8rem, 2.6vw, 2.7rem) !important;
    color: rgba(255, 255, 255, 0.16) !important;
    letter-spacing: 0.18em !important;
    white-space: nowrap;
    overflow: hidden;
    z-index: 0;
  }
}

@media (max-width: 859px) {
  .hoppy-wp-v2 .hoppy-dl-simple dd:first-of-type .hoppy-options-accordion {
    display: none !important;
  }

  .hoppy-wp-v2 .hoppy-dl-simple {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
  }

  .hoppy-wp-v2 .hoppy-dl-simple dd {
    display: block !important;
    padding: 8px 12px 24px !important;
  }

  .hoppy-wp-v2 .hoppy-price-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .hoppy-wp-v2 .hoppy-price-card,
  .hoppy-wp-v2 .hoppy-accordion,
  .hoppy-wp-v2 .hoppy-accordion__item {
    display: block !important;
  }

  .hoppy-wp-v2 .hoppy-options-accordion+.price-list {
    display: none !important;
  }

  .hoppy-wp-v2 .hoppy-accordion__body {
    display: none !important;
  }

  .hoppy-wp-v2 .hoppy-accordion__item.is-open .hoppy-accordion__body {
    display: block !important;
  }
}

/* Staff Page */
.hoppy-wp-v2.staff-page .section {
  position: relative;
}

.hoppy-wp-v2.staff-page .staff-page__intro {
  overflow: hidden;
}

.hoppy-wp-v2.staff-page .staff-page__intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 90, 31, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(40, 142, 238, 0.1), transparent 30%);
  pointer-events: none;
}

.hoppy-wp-v2 .staff-section-header {
  margin-bottom: 34px;
}

.hoppy-wp-v2 .staff-hero {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.hoppy-wp-v2 .staff-hero__media,
.hoppy-wp-v2 .staff-person-card__media {
  width: min(100%, 320px);
  max-width: none;
  aspect-ratio: 3 / 4;
  padding: 20px 20px 10px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 241, 234, 0.92));
}

.hoppy-wp-v2 .staff-hero__media .common-image,
.hoppy-wp-v2 .staff-person-card__media .common-image {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center top;
}

.hoppy-wp-v2 .staff-hero__media--status {
  width: min(100%, 500px);
  padding: 10px;
  background: #06122a;
}

.hoppy-wp-v2 .staff-person-card__media--status {
  padding: 10px;
  background: #06122a;
}

.hoppy-wp-v2 .staff-identity,
.hoppy-wp-v2 .staff-person-card__body {
  display: flex;
  flex-direction: column;
}

.hoppy-wp-v2 .staff-role,
.hoppy-wp-v2 .staff-person-card__role {
  margin: 0 0 10px;
  color: #ff5a1f;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hoppy-wp-v2 .staff-name,
.hoppy-wp-v2 .staff-person-card__name {
  margin: 0;
  color: #111;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.hoppy-wp-v2 .staff-person-card__name {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.hoppy-wp-v2 .staff-kana,
.hoppy-wp-v2 .staff-attr,
.hoppy-wp-v2 .staff-person-card__attr {
  margin: 8px 0 0;
  color: #5a5a5a;
  line-height: 1.7;
}

.hoppy-wp-v2 .staff-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  color: #2c2c2c;
  line-height: 1.6;
}

.hoppy-wp-v2 .staff-social a {
  display: inline-flex;
  align-items: center;
}

.hoppy-wp-v2 .staff-social img {
  width: 30px;
  height: 30px;
}

.hoppy-wp-v2 .staff-meta-grid,
.hoppy-wp-v2 .staff-person-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.hoppy-wp-v2 .staff-meta-card,
.hoppy-wp-v2 .staff-person-card__panel,
.hoppy-wp-v2 .staff-message-card,
.hoppy-wp-v2 .staff-story-card,
.hoppy-wp-v2 .staff-qa__item,
.hoppy-wp-v2 .staff-timeline__item,
.hoppy-wp-v2 .staff-person-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
}

.hoppy-wp-v2 .staff-meta-card,
.hoppy-wp-v2 .staff-person-card__panel {
  padding: 24px;
}

.hoppy-wp-v2 .staff-meta-card__label,
.hoppy-wp-v2 .staff-person-card__label,
.hoppy-wp-v2 .staff-qa__label {
  margin: 0 0 10px;
  color: #ff5a1f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hoppy-wp-v2 .staff-meta-card__title,
.hoppy-wp-v2 .staff-person-card__heading,
.hoppy-wp-v2 .staff-message-card__title,
.hoppy-wp-v2 .staff-story-card__title,
.hoppy-wp-v2 .staff-qa__question {
  margin: 0;
  color: #111;
  font-size: 1.26rem;
  font-weight: 900;
  line-height: 1.45;
}

.hoppy-wp-v2 .staff-plain-list {
  margin-top: 14px;
}

.hoppy-wp-v2 .staff-note {
  margin: 14px 0 0;
  color: #666;
  font-size: 0.92rem;
}

.hoppy-wp-v2 .staff-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hoppy-wp-v2 .staff-story-card {
  padding: 26px;
  border-top: 4px solid #ff5a1f;
}

.hoppy-wp-v2 .staff-story-flow {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 247, 242, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hoppy-wp-v2 .staff-story-flow__lead,
.hoppy-wp-v2 .staff-story-flow__text,
.hoppy-wp-v2 .staff-story-flow__pull,
.hoppy-wp-v2 .staff-story-flow__belief {
  margin: 0;
}

.hoppy-wp-v2 .staff-story-flow__lead {
  color: #111;
  font-size: clamp(1.8rem, 3.7vw, 2.8rem);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.hoppy-wp-v2 .staff-story-flow__lead+.staff-story-flow__text {
  margin-top: 24px;
}

.hoppy-wp-v2 .staff-story-flow__text {
  color: #2f2f2f;
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  line-height: 2.15;
}

.hoppy-wp-v2 .staff-story-flow__text+.staff-story-flow__text {
  margin-top: 18px;
}

.hoppy-wp-v2 .staff-story-flow__pull {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 90, 31, 0.34);
  color: #111;
  font-size: clamp(1.26rem, 2.4vw, 1.7rem);
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.hoppy-wp-v2 .staff-story-flow__pull+.staff-story-flow__text {
  margin-top: 24px;
}

.hoppy-wp-v2 .staff-story-flow__belief {
  margin-top: 38px;
  padding: 26px 0 26px 22px;
  border-left: 3px solid rgba(17, 17, 17, 0.8);
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.06), rgba(255, 255, 255, 0));
  color: #111;
  font-size: clamp(1.18rem, 2.1vw, 1.45rem);
  font-weight: 800;
  line-height: 1.95;
}

.hoppy-wp-v2 .staff-story-flow__belief+.staff-story-flow__text {
  margin-top: 34px;
}

.hoppy-wp-v2 .staff-story-flow__closing {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.hoppy-wp-v2 .staff-dual-sections {
  display: grid;
  gap: 0;
  background: #fff;
}

.hoppy-wp-v2 .staff-dual-sections>.section {
  margin: 0;
}

.hoppy-wp-v2 .staff-dual-sections>#trainer-okada-story {
  background: #fff;
}

.hoppy-wp-v2 .staff-accordion {
  overflow: hidden;
}

.hoppy-wp-v2 .staff-accordion__summary {
  position: relative;
  display: block;
  padding: 0;
  cursor: pointer;
  list-style: none;
}

.hoppy-wp-v2 .staff-accordion__summary::-webkit-details-marker {
  display: none;
}

.hoppy-wp-v2 .staff-accordion__summary .staff-section-header {
  margin-bottom: 18px;
}

.hoppy-wp-v2 .staff-accordion__preview {
  margin: 0;
  padding-right: 76px;
  color: #222;
}

.hoppy-wp-v2 .staff-accordion__preview--lead {
  font-size: clamp(1.18rem, 2.2vw, 1.62rem);
  font-weight: 900;
  line-height: 1.65;
}

.hoppy-wp-v2 .staff-accordion__preview--timeline {
  display: flex;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 1.02rem;
  line-height: 1.8;
}

.hoppy-wp-v2 .staff-accordion__year {
  color: #111;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hoppy-wp-v2 .staff-accordion__cue {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 32px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  color: #ff5a1f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hoppy-wp-v2 .staff-accordion__cue::before {
  content: "開く";
}

.hoppy-wp-v2 .staff-accordion[open] .staff-accordion__cue::before {
  content: "閉じる";
}

.hoppy-wp-v2 .staff-accordion__content {
  margin-top: 24px;
}

.hoppy-wp-v2 .staff-accordion__content .staff-story-flow {
  padding-top: clamp(24px, 4vw, 44px);
}

.hoppy-wp-v2 .staff-story-card__body,
.hoppy-wp-v2 .staff-message-card__body,
.hoppy-wp-v2 .staff-qa__answer,
.hoppy-wp-v2 .staff-timeline__body {
  margin: 14px 0 0;
  color: #333;
  line-height: 1.85;
}

.hoppy-wp-v2 .staff-story-card__body+.staff-story-card__body,
.hoppy-wp-v2 .staff-message-card+.staff-message-card {
  margin-top: 14px;
}

.hoppy-wp-v2 .staff-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.hoppy-wp-v2 .staff-timeline::before {
  content: "";
  position: absolute;
  left: 124px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 90, 31, 0.34), rgba(17, 17, 17, 0.08));
}

.hoppy-wp-v2 .staff-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 24px 26px;
}

.hoppy-wp-v2 .staff-timeline__item::before {
  content: "";
  position: absolute;
  left: 118px;
  top: 34px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5a1f;
  box-shadow: 0 0 0 8px rgba(255, 90, 31, 0.14);
}

.hoppy-wp-v2 .staff-timeline__year {
  position: relative;
  z-index: 1;
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hoppy-wp-v2 .staff-team-grid {
  display: grid;
  gap: 24px;
}

.hoppy-wp-v2 .staff-team-grid--assistants {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hoppy-wp-v2 #assistants .staff-person-card {
  grid-template-columns: 1fr;
}

.hoppy-wp-v2 #assistants .staff-person-card__media {
  width: min(100%, 500px);
  margin: 0 auto;
}

.hoppy-wp-v2 .staff-person-card {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.hoppy-wp-v2 .staff-person-card__body {
  padding: 28px;
}

.hoppy-wp-v2 #counselor .staff-person-card {
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 28px;
}

.hoppy-wp-v2 #counselor .staff-person-card__media--status {
  width: min(100%, 500px);
}

.hoppy-wp-v2 #counselor .staff-person-card__body {
  padding: 28px 28px 28px 0;
}

.hoppy-wp-v2 .staff-message-stack,
.hoppy-wp-v2 .staff-qa {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.hoppy-wp-v2 .staff-message-card {
  padding: 22px 24px;
  border-left: 5px solid rgba(255, 90, 31, 0.9);
}

.hoppy-wp-v2 .staff-qa__item {
  padding: 22px 24px;
}

.hoppy-wp-v2 .staff-qa__answer {
  margin-top: 10px;
}

@media (max-width: 980px) {

  .hoppy-wp-v2 .staff-hero,
  .hoppy-wp-v2 .staff-person-card,
  .hoppy-wp-v2 .staff-team-grid--assistants {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2 .staff-story-grid,
  .hoppy-wp-v2 .staff-meta-grid,
  .hoppy-wp-v2 .staff-person-card__grid {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2 .staff-hero__media,
  .hoppy-wp-v2 .staff-person-card__media {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .hoppy-wp-v2 .staff-hero__media--status {
    width: min(100%, 520px);
  }

  .hoppy-wp-v2 .staff-person-card__media--status {
    width: min(100%, 520px);
  }

  .hoppy-wp-v2 #assistants .staff-person-card__media {
    width: min(100%, 520px);
  }

  .hoppy-wp-v2 #counselor .staff-person-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hoppy-wp-v2 #counselor .staff-person-card__media--status {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .hoppy-wp-v2 #counselor .staff-person-card__body {
    padding: 0 28px 28px;
  }
}

@media (min-width: 981px) {
  .hoppy-wp-v2 .staff-dual-sections {
    position: relative;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 28px;
    align-items: start;
  }

  .hoppy-wp-v2 .staff-dual-sections::after {
    content: "";
    position: absolute;
    top: 56px;
    bottom: 56px;
    left: calc(54% + 14px);
    width: 1px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.12) 14%, rgba(17, 17, 17, 0.12) 86%, rgba(17, 17, 17, 0));
    pointer-events: none;
  }

  .hoppy-wp-v2 .staff-dual-sections>#trainer-okada-story,
  .hoppy-wp-v2 .staff-dual-sections>#trainer-okada-history {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hoppy-wp-v2 .staff-dual-sections>#trainer-okada-story .staff-story-flow {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .hoppy-wp-v2 .staff-section-header {
    margin-bottom: 26px;
  }

  .hoppy-wp-v2 .staff-dual-sections>.staff-accordion {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hoppy-wp-v2 .staff-dual-sections>.staff-accordion:not([open]) {
    padding-bottom: 24px;
  }

  .hoppy-wp-v2 .staff-dual-sections>.staff-accordion+.staff-accordion {
    margin-top: 0;
  }

  .hoppy-wp-v2 .staff-name,
  .hoppy-wp-v2 .staff-person-card__name {
    font-size: 1.85rem;
  }

  .hoppy-wp-v2 .staff-story-flow {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hoppy-wp-v2 .staff-story-card,
  .hoppy-wp-v2 .staff-meta-card,
  .hoppy-wp-v2 .staff-person-card__panel,
  .hoppy-wp-v2 .staff-message-card,
  .hoppy-wp-v2 .staff-qa__item,
  .hoppy-wp-v2 .staff-person-card__body,
  .hoppy-wp-v2 .staff-timeline__item {
    padding: 20px;
  }

  .hoppy-wp-v2 .staff-timeline::before {
    display: none;
  }

  .hoppy-wp-v2 .staff-timeline__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hoppy-wp-v2 .staff-timeline__item::before {
    display: none;
  }

  .hoppy-wp-v2 .staff-timeline__body {
    margin-top: 2px;
  }

  .hoppy-wp-v2 .staff-social img {
    width: 28px;
    height: auto;
  }

  .hoppy-wp-v2 .staff-story-flow__lead {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .hoppy-wp-v2 .staff-accordion__preview {
    padding-right: 0;
  }

  .hoppy-wp-v2 .staff-accordion__preview--lead {
    font-size: 1.16rem;
    line-height: 1.75;
  }

  .hoppy-wp-v2 .staff-accordion__cue {
    position: static;
    margin-top: 14px;
  }

  .hoppy-wp-v2 .staff-story-flow__text {
    font-size: 0.98rem;
    line-height: 2;
  }

  .hoppy-wp-v2 .staff-story-flow__pull,
  .hoppy-wp-v2 .staff-story-flow__belief {
    font-size: 1.08rem;
    line-height: 1.9;
  }
}

/* Concept page */
.hoppy-wp-v2.concept-page {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(244, 244, 242, 0.7) 0%, rgba(255, 255, 255, 0) 12%);
}

.hoppy-wp-v2.concept-page .concept-page__inner {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.hoppy-wp-v2.concept-page .concept-page__section-header--center,
.hoppy-wp-v2.concept-page .concept-page__flow-note,
.hoppy-wp-v2.concept-page .concept-page__cta-note,
.hoppy-wp-v2.concept-page .concept-page__trial-story-link {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hoppy-wp-v2.concept-page .concept-page__section-header--center {
  text-align: left;
}

.hoppy-wp-v2.concept-page .concept-page__section-header--center .section-rule {
  justify-content: flex-start;
}

.hoppy-wp-v2.concept-page .concept-page__section-header--center .section-rule::after {
  flex: 1;
}

.hoppy-wp-v2.concept-page .concept-page__body {
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.9;
}

.hoppy-wp-v2.concept-page .concept-page__body+.concept-page__body {
  margin-top: 16px;
}

.hoppy-wp-v2.concept-page .concept-page__hero {
  padding-top: 88px;
  background: #ffffff;
}

.hoppy-wp-v2.concept-page .concept-page__hero-inner,
.hoppy-wp-v2.concept-page .concept-page__audience-grid,
.hoppy-wp-v2.concept-page .concept-page__trainer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 40px;
  align-items: center;
}

.hoppy-wp-v2.concept-page .concept-page__hero-copy .section-title {
  font-size: clamp(1.95rem, 4vw, 3.1rem);
  line-height: 1.25;
}

.hoppy-wp-v2.concept-page .concept-page__hero-actions,
.hoppy-wp-v2.concept-page .concept-page__cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hoppy-wp-v2.concept-page .concept-page__hero-image {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}

.hoppy-wp-v2.concept-page .concept-page__graph-wrap,
.hoppy-wp-v2.concept-page .concept-page__decision-box,
.hoppy-wp-v2.concept-page .concept-page__fit-box,
.hoppy-wp-v2.concept-page .concept-page__cta-panel,
.hoppy-wp-v2.concept-page .concept-page__note-card,
.hoppy-wp-v2.concept-page .concept-page__flow-card,
.hoppy-wp-v2.concept-page .concept-page__design-card,
.hoppy-wp-v2.concept-page .concept-page__big3-card,
.hoppy-wp-v2.concept-page .concept-page__point-card,
.hoppy-wp-v2.concept-page .concept-page__compare-stack-item {
  background: rgba(255, 255, 255, 0.76);
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}

.hoppy-wp-v2.concept-page .concept-page__graph-wrap {
  padding: 0;
  background: transparent;
}

.hoppy-wp-v2.concept-page .concept-page__graph-image {
  border-radius: 18px;
}

.hoppy-wp-v2.concept-page .concept-page__graph-caption {
  margin-top: -22px;
  padding: 0 10px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
}

.hoppy-wp-v2.concept-page .concept-page__decision-box,
.hoppy-wp-v2.concept-page .concept-page__fit-box,
.hoppy-wp-v2.concept-page .concept-page__cta-panel {
  margin-top: 24px;
  padding: 0;
  background: transparent;
}

.hoppy-wp-v2.concept-page .concept-page__decision-box {
  border-left: 0;
}

.hoppy-wp-v2.concept-page .concept-page__decision-title,
.hoppy-wp-v2.concept-page .concept-page__fit-title,
.hoppy-wp-v2.concept-page .concept-page__cta-panel-title,
.hoppy-wp-v2.concept-page .concept-page__note-title {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.55;
  margin-bottom: 12px;
}

.hoppy-wp-v2.concept-page .concept-page__emphasis {
  color: var(--orange-dark);
}

.hoppy-wp-v2.concept-page .concept-page__design-grid,
.hoppy-wp-v2.concept-page .concept-page__big3-grid,
.hoppy-wp-v2.concept-page .concept-page__fit-grid,
.hoppy-wp-v2.concept-page .concept-page__flow-grid {
  display: grid;
  gap: 20px;
}

.hoppy-wp-v2.concept-page .concept-page__design-grid,
.hoppy-wp-v2.concept-page .concept-page__big3-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hoppy-wp-v2.concept-page .concept-page__fit-grid,
.hoppy-wp-v2.concept-page .concept-page__flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hoppy-wp-v2.concept-page .concept-page__design-card,
.hoppy-wp-v2.concept-page .concept-page__big3-card,
.hoppy-wp-v2.concept-page .concept-page__flow-card {
  padding: 24px;
}

.hoppy-wp-v2.concept-page .concept-page__design-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.18), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.05);
}

.hoppy-wp-v2.concept-page .concept-page__design-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 90, 31, 0.18));
}

.hoppy-wp-v2.concept-page .concept-page__design-number,
.hoppy-wp-v2.concept-page .concept-page__big3-number,
.hoppy-wp-v2.concept-page .concept-page__flow-step {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange-dark);
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 900;
}

.hoppy-wp-v2.concept-page .concept-page__design-title,
.hoppy-wp-v2.concept-page .concept-page__big3-title,
.hoppy-wp-v2.concept-page .concept-page__flow-title,
.hoppy-wp-v2.concept-page .concept-page__point-title,
.hoppy-wp-v2.concept-page .concept-page__fit-card-title,
.hoppy-wp-v2.concept-page .concept-page__compare-stack-title {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hoppy-wp-v2.concept-page .concept-page__closing-line {
  margin-top: 28px;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.8;
}

.hoppy-wp-v2.concept-page .concept-page__big3-main-media {
  aspect-ratio: 16 / 7;
  margin-top: 0;
  margin-bottom: 28px;
}

.hoppy-wp-v2.concept-page .concept-page__big3-list {
  list-style: none;
  counter-reset: big3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0 0 28px;
  padding: 0;
}

.hoppy-wp-v2.concept-page .concept-page__big3-item {
  counter-increment: big3;
  padding: 0 0 0 22px;
  border-left: 3px solid rgba(255, 90, 31, 0.24);
}

.hoppy-wp-v2.concept-page .concept-page__big3-item::before {
  content: "0" counter(big3);
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 900;
}

.hoppy-wp-v2.concept-page .concept-page__big3-guidance-media {
  aspect-ratio: 16 / 5.6;
  margin-top: 0;
  margin-bottom: 24px;
}

.hoppy-wp-v2.concept-page .concept-page__big3-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.hoppy-wp-v2.concept-page .concept-page__note-card {
  padding: 24px;
}

.hoppy-wp-v2.concept-page .concept-page__compare-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.hoppy-wp-v2.concept-page .concept-page__point-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px;
  background: #f8f4ec;
}

.hoppy-wp-v2.concept-page .concept-page__point-icon {
  width: 76px;
  flex: 0 0 76px;
}

.hoppy-wp-v2.concept-page .concept-page__point-body,
.hoppy-wp-v2.concept-page .concept-page__fit-card-body,
.hoppy-wp-v2.concept-page .concept-page__comparison-layer-value,
.hoppy-wp-v2.concept-page .concept-page__flow-body {
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.8;
}

.hoppy-wp-v2.concept-page .concept-page__comparison {
  width: 100%;
}

.hoppy-wp-v2.concept-page .concept-page__comparison--desktop {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 236, 0.86) 100%);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: var(--white);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-head,
.hoppy-wp-v2.concept-page .concept-page__comparison-row-head,
.hoppy-wp-v2.concept-page .concept-page__comparison-cell {
  padding: 20px 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.94rem;
  line-height: 1.8;
  vertical-align: top;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-head {
  text-align: center;
  font-weight: 900;
  color: #5a534e;
  background: #f4f2ee;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-head--blank {
  width: 15%;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-head--standard {
  width: 28.333%;
  background: #faf8f5;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-head--featured {
  width: 28.333%;
  color: var(--white);
  background: linear-gradient(135deg, #ff7a45 0%, #e64a19 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 16px 26px rgba(230, 74, 25, 0.24);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-row-head {
  width: 110px;
  font-weight: 900;
  text-align: center;
  color: #4f4a45;
  background: #f4f2ee;
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-cell {
  background: rgba(255, 255, 255, 0.98);
  color: #5f5a55;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-cell--featured {
  position: relative;
  font-weight: 700;
  color: #3f3029;
  background: linear-gradient(180deg, #fff5f2 0%, #ffebee 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 69, 0.08), inset 10px 0 18px rgba(255, 122, 69, 0.08);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-table tbody tr:last-child .concept-page__comparison-cell--featured {
  border-bottom: 0;
  border-bottom-right-radius: 24px;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-table tbody tr:last-child .concept-page__comparison-row-head,
.hoppy-wp-v2.concept-page .concept-page__comparison-table tbody tr:last-child .concept-page__comparison-cell:not(.concept-page__comparison-cell--featured) {
  border-bottom: 0;
}

.hoppy-wp-v2.concept-page .concept-page__comparison--mobile {
  display: none;
  margin-top: 24px;
  gap: 16px;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-card {
  padding: 18px;
  background: #f4f4f2;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 12px 24px rgba(17, 17, 17, 0.05);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-card+.concept-page__comparison-card {
  margin-top: 24px;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-card-title {
  margin: 0 0 14px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #2e3138;
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-layer {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.04);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-layer+.concept-page__comparison-layer {
  margin-top: 12px;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-layer--featured {
  background: linear-gradient(90deg, #fff5f2 0%, #ffffff 100%);
  border-left: 4px solid #ff5722;
  box-shadow: 0 12px 24px rgba(255, 87, 34, 0.12);
}

.hoppy-wp-v2.concept-page .concept-page__comparison-layer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 900;
  color: #77716b;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-layer--featured .concept-page__comparison-layer-label {
  color: #ff5722;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-layer-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ff5722;
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
}

.hoppy-wp-v2.concept-page .concept-page__comparison-layer-value {
  margin: 0;
  font-size: 0.88rem;
  color: #4f4a45;
}

.hoppy-wp-v2.concept-page .concept-page__fit-list,
.hoppy-wp-v2.concept-page .concept-page__cta-list {
  list-style: none;
  margin-top: 18px;
}

.hoppy-wp-v2.concept-page .concept-page__fit-list {
  padding: 18px 22px;
  border-radius: 18px;
  background: #f8f4ec;
}

.hoppy-wp-v2.concept-page .concept-page__fit-list li,
.hoppy-wp-v2.concept-page .concept-page__cta-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.85;
}

.hoppy-wp-v2.concept-page .concept-page__fit-list li+li,
.hoppy-wp-v2.concept-page .concept-page__cta-list li+li {
  margin-top: 8px;
}

.hoppy-wp-v2.concept-page .concept-page__fit-list li::before,
.hoppy-wp-v2.concept-page .concept-page__cta-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.hoppy-wp-v2.concept-page .concept-page__trainer-copy .section-title {
  margin-top: 0;
}

.hoppy-wp-v2.concept-page .concept-page__trainer-image {
  aspect-ratio: 4 / 3;
}

.hoppy-wp-v2.concept-page .concept-page__trainer-link {
  margin-top: 24px;
}

.hoppy-wp-v2.concept-page .concept-page__flow-card--with-image {
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.hoppy-wp-v2.concept-page .concept-page__flow-image {
  margin-top: 16px;
  aspect-ratio: 4 / 3;
}

.hoppy-wp-v2.concept-page .concept-page__flow-image--placeholder {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.16), transparent 28%),
    linear-gradient(135deg, #fff7ef 0%, #f8ddcd 100%);
  border: 2px dashed rgba(255, 90, 31, 0.45);
}

.hoppy-wp-v2.concept-page .concept-page__flow-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.hoppy-wp-v2.concept-page .concept-page__flow-placeholder span {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--black);
}

.hoppy-wp-v2.concept-page .concept-page__flow-note,
.hoppy-wp-v2.concept-page .concept-page__trial-story-link {
  margin-top: 24px;
  text-align: center;
}

.hoppy-wp-v2.concept-page .concept-page__cta-band {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.12), transparent 26%),
    linear-gradient(180deg, #f7f3ed 0%, #efe7dc 100%);
  color: var(--black);
}

.hoppy-wp-v2.concept-page .concept-page__cta-band .section-title,
.hoppy-wp-v2.concept-page .concept-page__cta-note {
  color: var(--black);
}

.hoppy-wp-v2.concept-page .concept-page__cta-band .section-lead--light {
  color: var(--gray);
}

.hoppy-wp-v2.concept-page .concept-page__cta-band .section-rule--light::after {
  background: var(--border);
}

.hoppy-wp-v2.concept-page .concept-page__cta-panel {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--black);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.05);
}

.hoppy-wp-v2.concept-page .concept-page__cta-panel .concept-page__cta-panel-title,
.hoppy-wp-v2.concept-page .concept-page__cta-panel .concept-page__cta-list li {
  color: var(--black);
}

.hoppy-wp-v2.concept-page .concept-page__cta-band .concept-page__cta-actions {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.hoppy-wp-v2.concept-page .concept-page__cta-note {
  margin-top: 18px;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

@media (max-width: 959px) {

  .hoppy-wp-v2.concept-page .concept-page__hero-inner,
  .hoppy-wp-v2.concept-page .concept-page__audience-grid,
  .hoppy-wp-v2.concept-page .concept-page__trainer-grid {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2.concept-page .concept-page__fit-grid,
  .hoppy-wp-v2.concept-page .concept-page__flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hoppy-wp-v2.concept-page .concept-page__compare-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hoppy-wp-v2.concept-page .concept-page__hero {
    padding-top: 72px;
  }

  .hoppy-wp-v2.concept-page .concept-page__hero-actions,
  .hoppy-wp-v2.concept-page .concept-page__cta-actions {
    flex-direction: column;
  }

  .hoppy-wp-v2.concept-page .concept-page__hero-actions .btn,
  .hoppy-wp-v2.concept-page .concept-page__cta-actions .btn,
  .hoppy-wp-v2.concept-page .concept-page__trial-story-link .btn {
    width: 100%;
  }

  .hoppy-wp-v2.concept-page .concept-page__design-grid,
  .hoppy-wp-v2.concept-page .concept-page__flow-grid,
  .hoppy-wp-v2.concept-page .concept-page__big3-notes {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2.concept-page .concept-page__big3-list {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2.concept-page .concept-page__decision-box,
  .hoppy-wp-v2.concept-page .concept-page__fit-box,
  .hoppy-wp-v2.concept-page .concept-page__cta-panel,
  .hoppy-wp-v2.concept-page .concept-page__note-card,
  .hoppy-wp-v2.concept-page .concept-page__flow-card,
  .hoppy-wp-v2.concept-page .concept-page__design-card,
  .hoppy-wp-v2.concept-page .concept-page__big3-card,
  .hoppy-wp-v2.concept-page .concept-page__point-card,
  .hoppy-wp-v2.concept-page .concept-page__comparison-card {
    border-radius: 18px;
  }
}

@media (min-width: 768px) {
  .hoppy-wp-v2.concept-page .concept-page__comparison--desktop {
    display: block;
  }

  .hoppy-wp-v2.concept-page .concept-page__comparison--mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .hoppy-wp-v2.concept-page .concept-page__comparison--desktop {
    display: none;
  }

  .hoppy-wp-v2.concept-page .concept-page__comparison--mobile {
    display: block;
  }
}

/* Event page */
.hoppy-wp-v2.event-page {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.08), transparent 26%),
    linear-gradient(180deg, #f7f3ed 0%, #ffffff 24%);
}

.hoppy-wp-v2.event-page .event-page__intro .section-header {
  max-width: 760px;
}

.hoppy-wp-v2.event-page .event-page__featured,
.hoppy-wp-v2.event-page .event-page__series,
.hoppy-wp-v2.event-page .event-page__media,
.hoppy-wp-v2.event-page .event-page__sponsors {
  position: relative;
}

.hoppy-wp-v2.event-page .event-page__section-heading {
  max-width: 1120px;
  margin: 0 auto 32px;
  display: grid;
  gap: 18px;
}

.hoppy-wp-v2.event-page .event-page__section-heading .hoppy-text {
  margin: 0;
}

.hoppy-wp-v2.event-page .event-feature-card {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.10);
}

.hoppy-wp-v2.event-page .event-feature-card__media.common-image-container {
  margin: 0;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.hoppy-wp-v2.event-page .event-feature-card__media .common-image {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

.hoppy-wp-v2.event-page .event-feature-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 38px 38px 40px;
}

.hoppy-wp-v2.event-page .event-feature-card__status {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hoppy-wp-v2.event-page .event-feature-card__date {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--gray);
}

.hoppy-wp-v2.event-page .event-feature-card__title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.hoppy-wp-v2.event-page .event-feature-card__desc {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.95;
  color: #2b2b2b;
}

.hoppy-wp-v2.event-page .event-feature-card .btn {
  margin-top: 8px;
  width: fit-content;
  min-width: 180px;
}

.hoppy-wp-v2.event-page .event-card-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hoppy-wp-v2.event-page .event-card-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hoppy-wp-v2.event-page .event-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.07);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.hoppy-wp-v2.event-page .event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(17, 17, 17, 0.11);
  border-color: rgba(255, 90, 31, 0.20);
}

.hoppy-wp-v2.event-page .event-card__media.common-image-container {
  margin: 0;
  border-radius: 0;
  aspect-ratio: 4 / 3;
}

.hoppy-wp-v2.event-page .event-card__media .common-image {
  aspect-ratio: 4 / 3;
}

.hoppy-wp-v2.event-page .event-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 26px;
}

.hoppy-wp-v2.event-page .event-card__eyebrow {
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.hoppy-wp-v2.event-page .event-card__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.hoppy-wp-v2.event-page .event-card__date {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.75;
  color: var(--gray);
}

.hoppy-wp-v2.event-page .event-card__desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.9;
  color: #2b2b2b;
}

.hoppy-wp-v2.event-page .event-sponsor-list {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.hoppy-wp-v2.event-page .event-sponsor-list__item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.hoppy-wp-v2.event-page .event-sponsor-list__date {
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.hoppy-wp-v2.event-page .event-sponsor-list__body {
  min-width: 0;
}

.hoppy-wp-v2.event-page .event-sponsor-list__title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.6;
}

.hoppy-wp-v2.event-page .event-sponsor-list__title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 90, 31, 0.35);
  text-underline-offset: 0.2em;
}

.hoppy-wp-v2.event-page .event-sponsor-list__title a:hover {
  color: var(--orange);
}

@media (min-width: 861px) {
  .hoppy-wp-v2.event-page .event-page__section-heading {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    align-items: end;
    gap: 40px;
  }
}

@media (max-width: 1100px) {
  .hoppy-wp-v2.event-page .event-feature-card {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2.event-page .event-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hoppy-wp-v2.event-page .event-card-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hoppy-wp-v2.event-page .event-page__intro {
    padding-top: 72px;
    padding-bottom: 44px;
  }

  .hoppy-wp-v2.event-page .event-page__section-heading {
    margin-bottom: 28px;
  }

  .hoppy-wp-v2.event-page .event-feature-card__body {
    padding: 24px 20px 24px;
  }

  .hoppy-wp-v2.event-page .event-feature-card__title {
    font-size: 1.65rem;
  }

  .hoppy-wp-v2.event-page .event-feature-card .btn {
    width: 100%;
  }

  .hoppy-wp-v2.event-page .event-card-grid,
  .hoppy-wp-v2.event-page .event-card-grid--compact {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hoppy-wp-v2.event-page .event-card__body {
    padding: 20px 18px 20px;
  }

  .hoppy-wp-v2.event-page .event-card__title {
    font-size: 1.18rem;
  }

  .hoppy-wp-v2.event-page .event-sponsor-list__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }
}

.hoppy-wp-v2.relive-page {
  background:
    radial-gradient(circle at top right, rgba(255, 90, 31, 0.10), transparent 28%),
    linear-gradient(180deg, #f7f3ed 0%, #ffffff 22%);
}

.hoppy-wp-v2.relive-page .section {
  position: relative;
}

.hoppy-wp-v2.relive-page .relive-page__intro {
  padding-top: 88px;
  padding-bottom: 56px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.10), rgba(255, 255, 255, 0) 42%),
    var(--gray-light);
}

.hoppy-wp-v2.relive-page .relive-page__hero,
.hoppy-wp-v2.relive-page .relive-page__section-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.hoppy-wp-v2.relive-page .relive-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.92fr);
  gap: 40px;
  align-items: center;
}

.hoppy-wp-v2.relive-page .relive-page__hero-copy {
  min-width: 0;
}

.hoppy-wp-v2.relive-page .relive-page__hero-copy .section-title {
  max-width: 11em;
}

.hoppy-wp-v2.relive-page .relive-page__hero-copy .section-lead {
  max-width: 680px;
}

.hoppy-wp-v2.relive-page .relive-page__hero-media.common-image-container {
  margin: 0;
  aspect-ratio: 4 / 3.4;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.12);
}

.hoppy-wp-v2.relive-page .relive-page__hero-media .common-image {
  aspect-ratio: 4 / 3.4;
}

.hoppy-wp-v2.relive-page .relive-page__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hoppy-wp-v2.relive-page .relive-page__cta-group .btn {
  min-width: 160px;
}

.hoppy-wp-v2.relive-page .relive-page__benefits .section-header,
.hoppy-wp-v2.relive-page .relive-page__media .section-header,
.hoppy-wp-v2.relive-page .relive-page__purchase .section-header {
  max-width: 860px;
  margin: 0 auto 44px;
}

.hoppy-wp-v2.relive-page .relive-page__feature-grid,
.hoppy-wp-v2.relive-page .relive-page__purchase-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.hoppy-wp-v2.relive-page .relive-page__feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hoppy-wp-v2.relive-page .relive-page__purchase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hoppy-wp-v2.relive-page .relive-page__feature-card,
.hoppy-wp-v2.relive-page .relive-page__body-card,
.hoppy-wp-v2.relive-page .relive-page__video-card,
.hoppy-wp-v2.relive-page .relive-page__purchase-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.07);
}

.hoppy-wp-v2.relive-page .relive-page__feature-card,
.hoppy-wp-v2.relive-page .relive-page__purchase-card {
  padding: 28px 28px 30px;
}

.hoppy-wp-v2.relive-page .relive-page__body-card {
  padding: 34px 34px 36px;
}

.hoppy-wp-v2.relive-page .relive-page__feature-eyebrow,
.hoppy-wp-v2.relive-page .relive-page__purchase-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.hoppy-wp-v2.relive-page .relive-page__feature-title,
.hoppy-wp-v2.relive-page .relive-page__purchase-title {
  margin: 0;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.hoppy-wp-v2.relive-page .relive-page__feature-text,
.hoppy-wp-v2.relive-page .relive-page__body-text,
.hoppy-wp-v2.relive-page .relive-page__purchase-text {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.95;
  color: #2b2b2b;
}

.hoppy-wp-v2.relive-page .relive-page__cta-block {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.hoppy-wp-v2.relive-page .relive-page__cta-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.hoppy-wp-v2.relive-page .relive-page__video-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hoppy-wp-v2.relive-page .relive-page__video-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.hoppy-wp-v2.relive-page .relive-page__video-card:first-child {
  grid-column: span 2;
}

.hoppy-wp-v2.relive-page .relive-page__video-copy {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--black);
}

.hoppy-wp-v2.relive-page .relive-page__accent {
  font-weight: 900;
}

.hoppy-wp-v2.relive-page .relive-page__accent--red {
  color: #d43a2f;
}

.hoppy-wp-v2.relive-page .relive-page__accent--blue {
  color: #2878d6;
}

.hoppy-wp-v2.relive-page .relive-page__accent--green {
  color: #1c9b57;
}

.hoppy-wp-v2.relive-page .relive-page__video-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hoppy-wp-v2.relive-page .relive-page__video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.hoppy-wp-v2.relive-page .relive-page__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hoppy-wp-v2.relive-page .relive-page__cta-block--bottom {
  max-width: 1120px;
  margin: 36px auto 0;
}

.hoppy-wp-v2.relive-page .relive-page__payment-media.common-image-container {
  margin: 18px 0 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 90, 31, 0.08), rgba(255, 90, 31, 0.03));
}

.hoppy-wp-v2.relive-page .relive-page__payment-media .common-image {
  object-fit: contain;
}

@media (max-width: 1100px) {

  .hoppy-wp-v2.relive-page .relive-page__hero,
  .hoppy-wp-v2.relive-page .relive-page__feature-grid,
  .hoppy-wp-v2.relive-page .relive-page__purchase-grid,
  .hoppy-wp-v2.relive-page .relive-page__video-grid {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2.relive-page .relive-page__video-card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .hoppy-wp-v2.relive-page .relive-page__intro {
    padding-top: 72px;
    padding-bottom: 44px;
  }

  .hoppy-wp-v2.relive-page .relive-page__feature-card,
  .hoppy-wp-v2.relive-page .relive-page__purchase-card,
  .hoppy-wp-v2.relive-page .relive-page__video-card {
    padding: 20px 18px 22px;
  }

  .hoppy-wp-v2.relive-page .relive-page__body-card {
    padding: 24px 20px 26px;
  }

  .hoppy-wp-v2.relive-page .relive-page__benefits .section-header,
  .hoppy-wp-v2.relive-page .relive-page__media .section-header,
  .hoppy-wp-v2.relive-page .relive-page__purchase .section-header {
    margin-bottom: 28px;
  }

  .hoppy-wp-v2.relive-page .relive-page__cta-group {
    gap: 10px;
  }

  .hoppy-wp-v2.relive-page .relive-page__cta-group .btn {
    width: 100%;
    min-width: 0;
  }

  .hoppy-wp-v2.relive-page .relive-page__video-stack {
    grid-template-columns: 1fr;
  }

  .hoppy-wp-v2.relive-page .relive-page__feature-title,
  .hoppy-wp-v2.relive-page .relive-page__purchase-title {
    font-size: 1.18rem;
  }
}
