/* ============================================================
 * はなの芽 1日体験会LP 専用CSS
 *  - 既存 common/styles.css の CSS変数 (--green-*, --pink-*, --yellow-*)
 *    と reveal/reveal-hop アニメ・deco-float を流用
 *  - LP専用ヘッダー/フッター(header-lp.php / footer-lp.php) と組
 * ============================================================ */

/* ──────────────── SWELLコンテナ制御（フルワイド） ──────────────── */
body.page-template-page-oneday #content.l-content,
body.page-template-page-oneday .l-mainContent,
body.page-template-page-oneday .post_content {
  max-width: none;
  margin: 0;
  padding: 0;
}
body.page-template-page-oneday .p-pageTitle,
body.page-template-page-oneday .l-topTitleArea,
body.page-template-page-oneday .c-pageTitle,
body.page-template-page-oneday #breadcrumb,
body.page-template-page-oneday .p-breadcrumb {
  display: none !important;
}

body.page-template-page-oneday {
  background: var(--bg-cream);
}

.page-oneday-main {
  background: var(--bg-cream);
  color: var(--text-main);
  overflow: hidden;
}

/* reveal-delay ヘルパー（gallery.css と同じパターンを再定義） */
.page-oneday-main .reveal-delay-1 { transition-delay: .12s; animation-delay: .12s; }
.page-oneday-main .reveal-delay-2 { transition-delay: .24s; animation-delay: .24s; }
.page-oneday-main .reveal-delay-3 { transition-delay: .36s; animation-delay: .36s; }
.page-oneday-main .reveal-delay-4 { transition-delay: .48s; animation-delay: .48s; }


/* ============================================================
   LP HEADER（簡潔ヘッダー）
   ============================================================ */
.oneday-lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 252, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.oneday-lp-header.scrolled {
  border-bottom-color: var(--green-base);
  box-shadow: 0 2px 14px rgba(90, 158, 90, 0.08);
}
.oneday-lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  width: min(92%, 1080px);
  margin: 0 auto;
}
.oneday-lp-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}
.oneday-lp-header__logo-img {
  display: block;
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  .oneday-lp-header__logo-img { height: 48px; }
}
.oneday-lp-header__back {
  font-size: 0.82rem;
  color: var(--text-sub);
  font-weight: 500;
  transition: color .3s, opacity .3s;
}
.oneday-lp-header__back:hover {
  color: var(--green-accent);
  opacity: 1;
}


/* ============================================================
   共通ユーティリティ
   ============================================================ */
.oneday-container {
  width: min(92%, 1080px);
  margin: 0 auto;
}
.oneday-container--narrow {
  width: min(92%, 760px);
  margin: 0 auto;
}

.oneday-section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.oneday-section-title {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}


/* ============================================================
   HERO
   ============================================================ */
.oneday-hero {
  position: relative;
  padding: 100px 0 72px;
  background: linear-gradient(170deg,
    var(--green-light) 0%,
    var(--bg-cream) 50%,
    var(--yellow-warm) 100%);
  overflow: hidden;
}
.oneday-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -8%;
  width: 50vw; height: 50vw;
  max-width: 580px; max-height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(232, 160, 184, .18) 0%, transparent 60%);
  pointer-events: none;
}
.oneday-hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -8%;
  width: 40vw; height: 40vw;
  max-width: 460px; max-height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 197, 139, .16) 0%, transparent 60%);
  pointer-events: none;
}
.oneday-hero .oneday-container {
  position: relative;
  z-index: 2;
}

/* ヒーロー内の装飾 */
.oneday-hero .deco-float {
  width: clamp(64px, 10vw, 96px);
  height: auto;
}
.oneday-hero .deco-butterfly-1 {
  top: 12%;
  left: 4%;
  animation: butterflyFlight 9s infinite ease-in-out;
}
.oneday-hero .deco-flower-1 {
  bottom: 8%;
  right: 6%;
  width: clamp(72px, 11vw, 100px);
  animation: floatY 6s infinite ease-in-out;
}
.oneday-hero .deco-flower-2 {
  top: 14%;
  right: 10%;
  width: clamp(56px, 8vw, 80px);
  animation: floatY 7s infinite ease-in-out 1.4s;
}

.oneday-hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.oneday-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-soft);
  color: #b8527d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(232, 160, 184, .25);
}

.oneday-hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4.2vw, 2.4rem);
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.oneday-hero__title .em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.oneday-hero__title .em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 10px;
  background: rgba(255, 217, 102, .55);
  border-radius: 4px;
  z-index: -1;
}

.oneday-hero__sub {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 2;
  margin-bottom: 24px;
}

.oneday-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.oneday-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--white);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
}
.oneday-hero__chip-icon { font-size: 1rem; }

.oneday-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.oneday-hero__cta {
  font-size: 1.05rem;
  padding: 18px 38px;
}
.oneday-hero__cta svg {
  transition: transform .3s;
}
.oneday-hero__cta:hover svg {
  transform: translateX(3px);
}
.oneday-hero__cta-tel {
  font-size: 0.85rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 6px;
}
.oneday-hero__cta-tel a {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 0.04em;
}

.oneday-hero__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 36px rgba(58, 58, 42, 0.14);
}
.oneday-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oneday-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(61, 122, 61, 0.18) 100%);
  pointer-events: none;
}


/* ============================================================
   一日体験会とは
   ============================================================ */
.oneday-about {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--white);
  position: relative;
}

.oneday-about__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-top: 36px;
}
.oneday-about__image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.oneday-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oneday-about__text p {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text-main);
}
.oneday-about__text p + p { margin-top: 14px; }

.oneday-about__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}
.oneday-about__hl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-cream);
  border-radius: 14px;
  border: 1px solid var(--green-base);
}
.oneday-about__hl-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.oneday-about__hl-text {
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 600;
}


/* ============================================================
   開催概要（料金カード）
   ============================================================ */
.oneday-overview {
  padding: clamp(64px, 9vw, 100px) 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}
.oneday-overview .deco-float {
  z-index: 1;
}
.oneday-overview .deco-overview-ladybug {
  top: 18%;
  right: 6%;
  width: clamp(48px, 6vw, 64px);
  animation: ladybugWalk 6s infinite ease-in-out;
}

.oneday-overview__card {
  margin-top: 32px;
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  border: 2px solid var(--green-mid);
  box-shadow: 0 12px 40px rgba(90, 158, 90, .12);
  position: relative;
  z-index: 2;
}

.oneday-overview__price-block {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px dashed var(--green-base);
  position: relative;
}
.oneday-overview__price-label {
  font-family: var(--font-en);
  font-size: 0.78rem;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.oneday-overview__price {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1;
}
.oneday-overview__price .yen { font-size: 1.5rem; vertical-align: top; }
.oneday-overview__price .num { font-size: 3.6rem; letter-spacing: -0.02em; }
.oneday-overview__price .tax {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-sub);
  font-weight: 500;
  margin-left: 6px;
}
.oneday-overview__price-sub {
  display: inline-block;
  font-size: 0.82rem;
  color: #b8527d;
  font-weight: 700;
  background: var(--pink-soft);
  padding: 4px 16px;
  border-radius: 100px;
  margin-top: 12px;
}

.oneday-overview__details {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.oneday-overview__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  font-size: 0.92rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--green-light);
  align-items: baseline;
}
.oneday-overview__row:last-child { border-bottom: none; }
.oneday-overview__label {
  color: var(--green-accent);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.9rem;
}
.oneday-overview__value {
  color: var(--text-main);
  line-height: 1.8;
}

.oneday-overview__cta {
  text-align: center;
  margin-top: 32px;
}


/* ============================================================
   開催回カード（CPT 動的表示）
   ============================================================ */
.oneday-overview__events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.oneday-event-card {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px 24px;
  border: 2px solid var(--green-mid);
  box-shadow: 0 8px 26px rgba(90, 158, 90, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .35s ease-out, box-shadow .35s ease-out;
}
.oneday-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 158, 90, 0.16);
}
.oneday-event-card.is-closed,
.oneday-event-card.is-canceled {
  background: #f5f4ec;
  border-color: #d2d0c4;
  filter: grayscale(0.4);
}
.oneday-event-card.is-closed:hover,
.oneday-event-card.is-canceled:hover {
  transform: none;
  box-shadow: 0 8px 26px rgba(90, 158, 90, 0.08);
}

.oneday-event-card__urgent {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #e57373 0%, #c4574b 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(196, 87, 75, .35);
  white-space: nowrap;
  animation: pulseUrgent 2.4s infinite ease-in-out;
}
@keyframes pulseUrgent {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

.oneday-event-card__date {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 0;
  font-family: var(--font-en);
  color: var(--green-accent);
}
.oneday-event-card__date-month {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.oneday-event-card__date-day {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.oneday-event-card__date-dow {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-sub);
}
.oneday-event-card__year {
  font-family: var(--font-en);
  font-size: 0.78rem;
  color: var(--text-sub);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.oneday-event-card__venue {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-accent);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.oneday-event-card__theme {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.6;
  padding: 8px 12px;
  background: var(--bg-cream);
  border-radius: 10px;
  margin-bottom: 10px;
}

.oneday-event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px dashed var(--green-base);
}
.oneday-event-card__meta div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  font-size: 0.84rem;
  align-items: baseline;
}
.oneday-event-card__meta dt {
  color: var(--green-accent);
  font-weight: 700;
  margin: 0;
}
.oneday-event-card__meta dd {
  color: var(--text-main);
  margin: 0;
}

.oneday-event-card__status {
  margin: 12px 0 0;
  padding: 8px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-sub);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  letter-spacing: 0.06em;
}

.oneday-overview__empty {
  text-align: center;
  font-size: 0.95rem;
  line-height: 2.05;
  color: var(--text-main);
  padding: 36px 24px;
  margin-top: 28px;
  background: var(--white);
  border-radius: 18px;
  border: 1px dashed var(--green-base);
}
.oneday-overview__empty a {
  color: var(--green-accent);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.oneday-overview__common {
  margin-top: 36px;
  background: var(--white);
  border-radius: 18px;
  padding: 24px 28px;
  border: 1px solid var(--green-base);
  box-shadow: var(--shadow-soft);
}
.oneday-overview__common-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-light);
  border-radius: 100px;
}
.oneday-overview__common-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin: 0;
}
.oneday-overview__common-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--green-light);
  font-size: 0.88rem;
  align-items: baseline;
}
.oneday-overview__common-list div:nth-last-child(-n+2) {
  border-bottom: none;
}
.oneday-overview__common-list dt {
  color: var(--green-accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0;
}
.oneday-overview__common-list dd {
  color: var(--text-main);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .oneday-overview__events {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .oneday-overview__common-list {
    grid-template-columns: 1fr;
  }
  .oneday-overview__common-list div:nth-last-child(2) {
    border-bottom: 1px solid var(--green-light);
  }
}
@media (max-width: 600px) {
  .oneday-event-card { padding: 24px 20px 20px; }
  .oneday-event-card__date-day { font-size: 2.2rem; }
}


/* ============================================================
   こんな方にぴったり
   ============================================================ */
.oneday-target {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--white);
}
.oneday-target__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.oneday-target__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px;
  background: var(--bg-cream);
  border-radius: 14px;
  border: 1px solid var(--green-base);
  transition: transform .3s ease-out, box-shadow .3s ease-out;
}
.oneday-target__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}
.oneday-target__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.oneday-target__text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-main);
  margin: 0;
}


/* ============================================================
   参加者の声
   ============================================================ */
.oneday-voices {
  padding: clamp(64px, 9vw, 100px) 0;
  background: linear-gradient(180deg, var(--yellow-warm) 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}
.oneday-voices .deco-voices-flower {
  bottom: 8%;
  right: 6%;
  width: clamp(72px, 9vw, 100px);
  animation: floatY 7s infinite ease-in-out;
}

.oneday-voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.oneday-voices__card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  border: 1px solid var(--green-base);
  transition: transform .4s ease-out, box-shadow .4s ease-out;
}
.oneday-voices__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.oneday-voices__card::before {
  content: '"';
  position: absolute;
  top: 14px;
  left: 22px;
  font-family: var(--font-accent);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--pink-accent);
  opacity: 0.45;
}
.oneday-voices__text {
  font-size: 0.92rem;
  line-height: 2.05;
  color: var(--text-main);
  position: relative;
  z-index: 2;
  padding-top: 4px;
}
.oneday-voices__note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-sub);
  position: relative;
  z-index: 2;
}


/* ============================================================
   お申し込みの流れ（4ステップ + 持ち物）
   ※ class.css の .entry-flow を参考にLP独自実装
   ============================================================ */
.oneday-flow {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--white);
  position: relative;
}
.oneday-flow .deco-flow-flower {
  top: 8%;
  left: 4%;
  width: clamp(72px, 9vw, 100px);
  animation: floatY 8s infinite ease-in-out;
}

.oneday-flow__list {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}
.oneday-flow__list::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--green-mid) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.6;
  z-index: 0;
}
.oneday-flow__item {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 18px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--green-base);
}
.oneday-flow__num {
  width: 56px; height: 56px;
  margin: -52px auto 14px;
  background: var(--white);
  border: 2.5px solid var(--green-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-accent);
  box-shadow: 0 4px 12px rgba(90, 158, 90, 0.18);
}
.oneday-flow__item:nth-child(2) .oneday-flow__num { border-color: var(--pink-accent); color: #b8527d; }
.oneday-flow__item:nth-child(3) .oneday-flow__num { border-color: var(--yellow-accent); color: var(--brown-dark); }
.oneday-flow__item:nth-child(4) .oneday-flow__num { border-color: var(--green-dark); }

.oneday-flow__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-accent);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
  line-height: 1.55;
}
.oneday-flow__text {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--text-main);
  margin: 0;
}

/* 持ち物サブカード（LPオリジナル） */
.oneday-flow__belongings {
  margin: 28px auto 0;
  max-width: 720px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  position: relative;
  z-index: 2;
}
.oneday-flow__belongings-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.oneday-flow__belongings-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.oneday-flow__belongings-list li {
  font-size: 0.82rem;
  color: var(--text-main);
  padding: 6px 14px;
  background: var(--white);
  border-radius: 100px;
  border: 1px solid var(--green-base);
  font-weight: 500;
}
.oneday-flow__belongings-note {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-top: 12px;
}


/* ============================================================
   キャンセルについて
   ============================================================ */
.oneday-cancel {
  padding: clamp(48px, 6vw, 64px) 0;
  background: var(--bg-cream);
}
.oneday-cancel__card {
  padding: 28px 32px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--green-base);
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 0 auto;
}
.oneday-cancel__card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.oneday-cancel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.oneday-cancel__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.85;
}
.oneday-cancel__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.oneday-cancel__check svg {
  width: 12px; height: 12px;
  stroke: var(--green-accent);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ============================================================
   申込フォーム
   ============================================================ */
.oneday-form {
  padding: clamp(64px, 9vw, 100px) 0 80px;
  background: linear-gradient(180deg, var(--green-light) 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}
.oneday-form .deco-form-butterfly {
  top: 8%;
  right: 6%;
  width: clamp(56px, 8vw, 80px);
  animation: butterflyFlight 11s infinite ease-in-out;
}

.oneday-form__card {
  max-width: 720px;
  margin: 32px auto 0;
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  border: 1px solid var(--green-base);
  box-shadow: 0 12px 36px rgba(90, 158, 90, .12);
  position: relative;
  z-index: 2;
}
.oneday-form__card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-accent);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.oneday-form__card-sub {
  font-size: 0.82rem;
  color: var(--text-sub);
  margin-bottom: 28px;
  text-align: center;
}

/* CF7フォーム本体のスタイル上書き */
.oneday-form__card .wpcf7-form p {
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
/* CF7が自動挿入する <br> を非表示にして label と input の余白を排除 */
.oneday-form__card .wpcf7-form p > br {
  display: none;
}
.oneday-form__card label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-accent);
  margin-bottom: 0;
  line-height: 1.6;
}
.oneday-form__card .required {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
  background: var(--pink-accent);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}
.oneday-form__card .optional {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-sub);
  border: 1px solid var(--green-base);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.oneday-form__card .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio):not(.wpcf7-list-item-label) {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--bg-cream);
  border: 1.5px solid var(--green-base);
  border-radius: 12px;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 500;
  line-height: 1.6;
}
.oneday-form__card .wpcf7-form-control:not(.wpcf7-submit):focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(139, 197, 139, .25);
  background: var(--white);
}
.oneday-form__card select.wpcf7-form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a9e5a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--bg-cream);
  padding-right: 44px;
  cursor: pointer;
}
.oneday-form__card textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 110px;
  line-height: 1.85;
}


/* ラジオ（希望教室） */
.oneday-form__card .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.oneday-form__card .wpcf7-list-item {
  margin: 0;
  flex: 1 1 auto;
}
.oneday-form__card .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg-cream);
  border: 1.5px solid var(--green-base);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.oneday-form__card .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
  border-color: var(--green-mid);
  background: var(--green-light);
  color: var(--green-accent);
}
/* CF7のリストアイテム構造（label が input を内包する標準パターン）対応 */
.oneday-form__card .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg-cream);
  border: 1.5px solid var(--green-base);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin: 0;
}
.oneday-form__card .wpcf7-list-item label:has(input:checked) {
  border-color: var(--green-mid);
  background: var(--green-light);
  color: var(--green-accent);
}
.oneday-form__card .wpcf7-list-item input[type="radio"],
.oneday-form__card .wpcf7-list-item input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--green-mid);
}

/* プライバシー同意（罫線・背景なしのプレーン構造） */
.oneday-form__card p.oneday-form__privacy-text {
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.9;
  margin: 12px 0 8px;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
}
.oneday-form__card p.oneday-form__privacy {
  margin: 0 0 22px;
  display: block;
  background: transparent;
  border: none;
  padding: 0;
}
.oneday-form__card p.oneday-form__privacy .wpcf7-acceptance,
.oneday-form__card p.oneday-form__privacy .wpcf7-list-item,
.oneday-form__card p.oneday-form__privacy span.wpcf7-form-control.wpcf7-acceptance {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: auto !important;
  display: inline-block;
}
/* 同意ボタンのlabelからボーダー・背景・パディングを完全除去 */
.oneday-form__card p.oneday-form__privacy label,
.oneday-form__card p.oneday-form__privacy .wpcf7-list-item label,
.oneday-form__card p.oneday-form__privacy .wpcf7-list-item:has(input:checked) label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

/* 送信ボタン */
.oneday-form__card .wpcf7-submit,
.oneday-form__card input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green-accent);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background .3s, transform .2s, box-shadow .3s;
  box-shadow: 0 4px 18px rgba(61, 122, 61, 0.28);
}
.oneday-form__card .wpcf7-submit:hover,
.oneday-form__card input[type="submit"]:hover {
  background: #2f5e2f;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(61, 122, 61, 0.4);
}

/* CF7メッセージ */
.oneday-form__card .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  border: 1.5px solid var(--green-mid);
  background: var(--green-light);
  color: var(--green-accent);
}
.oneday-form__card .wpcf7-not-valid-tip {
  font-size: 0.78rem;
  color: #c4574b;
  margin-top: 6px;
  display: block;
}

/* Honeypot 隠し */
.oneday-form__card .hp-website-wrap,
.oneday-form__card .hp-website {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* 電話CTA */
.oneday-form__phone {
  margin: 28px auto 0;
  max-width: 720px;
  padding: 24px 28px;
  background: var(--bg-cream);
  border-radius: 16px;
  border: 1px dashed var(--green-base);
  text-align: center;
}
.oneday-form__phone-label {
  font-size: 0.82rem;
  color: var(--text-sub);
  margin-bottom: 6px;
}
.oneday-form__phone-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--green-accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
}
.oneday-form__phone-num:hover { opacity: 0.8; }
.oneday-form__phone-note {
  font-size: 0.78rem;
  color: var(--text-sub);
  margin-top: 4px;
}


/* ============================================================
   LP FOOTER
   ============================================================ */
.oneday-lp-footer {
  padding: 44px 0 32px;
  background: var(--green-accent);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.95;
  text-align: center;
}
.oneday-lp-footer__inner {
  width: min(92%, 920px);
  margin: 0 auto;
}
.oneday-lp-footer__logo {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.oneday-lp-footer__org {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.oneday-lp-footer__info {
  margin-bottom: 18px;
  font-size: 0.85rem;
}
.oneday-lp-footer__info a {
  color: var(--yellow-accent);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.oneday-lp-footer__hours {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 4px;
}
.oneday-lp-footer__links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.oneday-lp-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color .3s;
  font-size: 0.85rem;
}
.oneday-lp-footer__links a:hover {
  color: rgba(255, 255, 255, 1);
  opacity: 1;
}
.oneday-lp-footer__copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   SP固定CTA（モバイル時のみ表示）
   ============================================================ */
.oneday-sp-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
  background: rgba(253, 252, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--green-base);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.oneday-sp-cta.visible {
  transform: translateY(0);
}
.oneday-sp-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--green-accent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(61, 122, 61, 0.3);
  text-decoration: none;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .page-oneday-main { padding-top: 60px; }

  .oneday-hero { padding: 80px 0 56px; }
  .oneday-hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oneday-hero__image {
    max-width: 380px;
    aspect-ratio: 4 / 5;
    order: 2;
    margin: 0 auto;
  }

  .oneday-about__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oneday-about__image {
    max-width: 460px;
    margin: 0 auto;
  }

  .oneday-overview__card { padding: 36px 28px; }
  .oneday-overview__price .num { font-size: 3rem; }

  .oneday-target__grid { grid-template-columns: 1fr; }
  .oneday-voices__grid { grid-template-columns: 1fr; gap: 14px; }

  .oneday-flow__list {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
  }
  .oneday-flow__list::before { display: none; }
  .oneday-flow__item {
    text-align: left;
    padding: 24px 22px 22px 22px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: start;
  }
  .oneday-flow__num {
    margin: 0;
    grid-row: span 2;
    align-self: start;
  }
  .oneday-flow__title { margin: 4px 0 6px; grid-column: 2; }
  .oneday-flow__text { grid-column: 2; }

  .oneday-form__card { padding: 32px 24px; }
  .oneday-cancel__card { padding: 22px 22px; }

  .oneday-sp-cta { display: block; }
  .oneday-lp-footer { padding-bottom: calc(32px + 76px); }
}

@media (max-width: 600px) {
  body.page-template-page-oneday { font-size: 14px; }

  .oneday-lp-header__inner { height: 68px; }
  .oneday-lp-header__logo-img { height: 44px; }
  .oneday-lp-header__back { font-size: 0.75rem; }

  .oneday-hero__title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .oneday-hero__chips { gap: 8px; }
  .oneday-hero__chip { padding: 7px 12px; font-size: 0.8rem; }
  .oneday-hero__cta { font-size: 0.95rem; padding: 16px 28px; }
  .oneday-hero__cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }

  .oneday-overview__card { padding: 28px 22px; border-radius: 18px; }
  .oneday-overview__price .num { font-size: 2.6rem; }
  .oneday-overview__row {
    grid-template-columns: 78px 1fr;
    gap: 10px;
    font-size: 0.86rem;
    padding: 12px 0;
  }

  .oneday-target__item { padding: 18px 18px; }

  .oneday-voices__card { padding: 28px 22px; }

  .oneday-form__card {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .oneday-form__card-title { font-size: 1.15rem; }

  .oneday-cancel__card { padding: 22px 18px; }

  .oneday-form__phone-num { font-size: 1.4rem; }

  .oneday-lp-footer__links { gap: 14px; font-size: 0.8rem; }
}

@media (max-width: 380px) {
  .oneday-hero__cta { width: 100%; }
}
