/* =========================================================
   Front Page CSS — りんごの木オーナー（TOP ページ専用）
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;600;700&display=swap");

/* ════════════════════════════════
   募集受付終了のお知らせ
════════════════════════════════ */
.recruit-notice {
  width: fit-content;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 32px 0;
  text-align: center;
}
.recruit-notice p {
  color: #e60000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
}

/* ════════════════════════════════
   お知らせパネル（2カラム）
════════════════════════════════ */
.news-panel {
  padding: 40px 32px;
}
.news-inner {
  container-type: inline-size;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.news-img-col {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  min-height: 38cqi;
}
.news-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}
.news-card {
  flex: 0 0 50%;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(46, 42, 36, 0.06);
  padding: 32px;
}
.news-card-head {
  display: flex;
  text-align: center;
  margin-bottom: 24px;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.news-card-head img {
  width: 50px;
  height: 50px;
}
.news-card-head .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin: 0 0 6px;
}
.news-card-head .en {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  margin: 0;
}
.np-row {
  display: grid;
  grid-template-columns: 80px 1fr 18px;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.18s;
}
.np-row:last-child {
  border-bottom: none;
}
.np-row:hover {
  opacity: 0.72;
}
.np-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.np-date {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.np-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.np-arrow {
  font-size: 20px;
  color: var(--muted-2);
  justify-self: end;
  line-height: 1;
}
.news-card-foot {
  text-align: center;
  margin-top: 32px;
}
.news-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 14px;
  line-height: 22.2px;
  letter-spacing: 1.44px;
  color: var(--green);
  font-weight: 500;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s;
}
.news-more-btn:hover {
  background: rgba(74, 103, 65, 0.06);
}
.news-more-btn .btn-circle {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  line-height: 17px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-left: 8px;
  flex-shrink: 0;
  align-items: normal;
}

/* ════════════════════════════════
   ピックアップ
════════════════════════════════ */
.pickup-sec {
  padding: 72px 32px;
  position: relative;
  overflow: hidden;
}
.pickup-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.pickup-head {
  text-align: center;
  margin-bottom: 40px;
}
.pickup-head h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.189em;
  color: var(--ink);
  margin: 0;
}
.pickup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pickup-card {
  background: var(--white);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 3.75px 15px rgba(46, 42, 36, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.pickup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 42, 36, 0.13);
}
.pickup-card-img {
  position: relative;
  height: 159px;
  overflow: hidden;
  flex-shrink: 0;
}
.pickup-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.pickup-card:hover .pickup-card-img img {
  transform: scale(1.04);
}
.pickup-tag {
  position: absolute;
  top: 9px;
  left: 9px;
  background: #e5dec9;
  border-radius: 6px;
  padding: 6px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  box-shadow: 0 3.75px 4.7px rgba(0, 0, 0, 0.15);
}
.pickup-tag .tk {
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  font-weight: 500;
}
.pickup-tag .tj {
  font-size: 11px;
  color: #3d5538;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.pickup-card-body {
  padding: 16px 4px 14px 16px;
  flex: 1;
}
.pc-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  color: var(--terracotta);
  letter-spacing: 0.28em;
  margin: 0 0 4px;
}
.pc-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 14px;
}
.pc-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin: 0;
}
.pc-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dde3ce;
  display: flex;
  line-height: 22px;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* ════════════════════════════════
   コンテンツセクション共通
════════════════════════════════ */
.content-sec {
  padding: 40px 32px;
}
.content-sec.alt {
  background: var(--white);
}
.content-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ════════════════════════════════
   01 About: ステップ + サイドバー
════════════════════════════════ */
.about-info-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 20px 22px;
}
.about-info-box .lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}
.about-info-box .lbl::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--terracotta);
  flex-shrink: 0;
}
.about-info-box .note {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.022em;
}
.about-intro {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  margin-bottom: 22px;
}
.about-boxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.about-cond-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: cond;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-cond-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.022em;
  counter-increment: cond;
  font-weight: 500;
}
.about-cond-list li::before {
  content: counter(cond) ".";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 500;
}

.caution-box {
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  padding: 28px 28px;
}
.caution-box-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.caution-mark {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #d89a2a;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}
.caution-box h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.12em;
  margin: 0;
}
.caution-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  opacity: 0.9;
}

/* ════════════════════════════════
   02 Schedule
════════════════════════════════ */
.sec-intro {
  font-weight: bold;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}
.schedule-label {
  font-size: 20px;
  font-weight: bold;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.sch-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sch-scroll-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted-2);
  letter-spacing: 0.2em;
}
.sch-scroll-dots {
  display: flex;
  gap: 4px;
}
.sch-scroll-dots span {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--terracotta);
  display: block;
  opacity: 0.3;
  transform: scale(0.85);
  animation: sch-dot-flow 1.4s ease-in-out infinite;
}
/* 左→右へ光が流れるようにずらす */
.sch-scroll-dots span:nth-child(2) {
  animation-delay: 0.18s;
}
.sch-scroll-dots span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes sch-dot-flow {
  0%,
  65%,
  100% {
    opacity: 0.3;
    transform: scale(0.85);
  }
  25% {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* 動きを抑える設定のユーザーには静止表示 */
@media (prefers-reduced-motion: reduce) {
  .sch-scroll-dots span {
    animation: none;
    opacity: 0.6;
    transform: none;
  }
}
.sch-nav {
  display: flex;
  gap: 8px;
}
.sch-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  background: var(--white);
  border: 1px solid #d9cfb8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green);
  cursor: pointer;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1;
  transition: border-color 0.2s;
}
.sch-nav-btn:hover {
  border-color: var(--green);
}

/* === STEP CARDS === */
.schedule-steps {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 114px;
  padding-bottom: 12px;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  margin-bottom: 28px;
  cursor: grab;
}
.schedule-steps.is-grabbing {
  cursor: grabbing;
  user-select: none;
}
.schedule-steps.is-grabbing img {
  pointer-events: none;
}
.sch-gradient-line {
  position: absolute;
  width: 1660px;
  top: 52px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #b0411e 0%,
    #5a7a52 25%,
    #c97a3a 50%,
    #d89a2a 75%,
    #a8472a 100%
  );
  opacity: 0.35;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}
.sch-step-group {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sch-circle-area {
  position: absolute;
  top: -98px;
  height: 98px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 74px;
}
.sch-circle {
  width: 74px;
  height: 74px;
  border-radius: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 10px rgba(46, 42, 36, 0.16);
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}
.sch-circle-ring {
  position: absolute;
  inset: -7px;
  border-radius: 44px;
  border: 1px dashed;
  opacity: 0.45;
  pointer-events: none;
}
.sch-circle-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 4px 8px rgba(46, 42, 36, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.019em;
  line-height: 27.75px;
}
.sch-card {
  width: 100%;
  height: 403px;
  background: white;
  border: 1px solid #e5dec9;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(46, 42, 36, 0.06);
  position: relative;
  overflow: visible;
}
.sch-card-diamond {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 17px;
  height: 17px;
  background: white;
  border-left: 1px solid #e5dec9;
  border-top: 1px solid #e5dec9;
}
.sch-card-label {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 26px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 20.35px;
  white-space: nowrap;
}
.sch-card-content {
  position: absolute;
  bottom: 26px;
  left: 24px;
  right: 24px;
  height: 325px;
}
.sch-card-title {
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.08em;
  line-height: 28px;
  white-space: nowrap;
}
.sch-card-date {
  position: absolute;
  top: 32px;
  left: 0;
  height: 35px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: #faf6ec;
  border: 1px solid #e5dec9;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.sch-date-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.sch-card-photo {
  position: absolute;
  top: 83px;
  left: 0;
  right: 0;
  height: 132px;
  border-radius: 5px;
  overflow: hidden;
}
.sch-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sch-card-bullets {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sch-card-bullets.b32 {
  bottom: 8px;
}
.sch-bullet {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
}
.sch-bullet-icon {
  width: 17px;
  height: 17px;
  border-radius: 8.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.sch-bullet-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 21px;
  white-space: nowrap;
}

/* === PRICE CALLOUT === */
.price-callout {
  width: 421px;
  height: 126px;
  background: linear-gradient(140.7deg, #eceedf 0%, #faf6ec 100%);
  border: 1px solid #dde3ce;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px 0 24px;
  margin: 0 auto 32px;
}
.price-callout-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.price-callout-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-callout-label {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.093em;
  margin: 0 0 4px;
}
.price-callout-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  margin: 0 0 2px;
}
.price-callout-val .yen {
  font-size: 16px;
  color: var(--muted);
}
.price-callout-val .tilde {
  font-size: 26px;
  color: var(--muted);
}
.price-callout-note {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.044em;
  margin: 0;
}

/* === HARVEST CHART === */
.harvest-chart {
  margin-top: 8px;
}
.hc-body {
  background: var(--white);
  border: 1px solid #e5dec9;
  border-radius: 18px;
  padding: 33px 33px 20px;
  box-shadow: 0 4px 8px rgba(46, 42, 36, 0.06);
  margin-top: 32px;
}
.hc-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  margin: 0 0 24px;
  text-align: center;
}
.hc-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--border);
}
.hc-row:last-child {
  border-bottom: none;
}
.hc-variety {
  font-size: 16px;
  font-weight: bold;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.hc-bar-wrap {
  background: #faf6ec;
  border-radius: 16px;
  height: 30px;
  position: relative;
  overflow: hidden;
}
.hc-bar-pill {
  position: absolute;
  top: 50%;
  right: var(--r); /* 位置は変数で制御（スマホは --r-sp に切替） */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 12px;
  border-radius: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: white;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.hc-months {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0px;
  padding-top: 14px;
}
.hc-months-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  text-align: center;
}
.hc-months-inner span {
  font-size: 16px;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════
   03 Price
════════════════════════════════ */
.price-intro {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.019em;
  margin: 0 0 26px;
}
.price-intro strong {
  color: var(--terracotta);
  font-weight: 700;
}
.variety-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 8px;
}
.variety-card {
  display: grid;
  grid-template-columns: 262px 1fr;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.variety-card-img {
  width: 265px;
  padding: 22px;
  position: relative;
  min-height: 215px;
}
.variety-card-img img {
  width: 265px;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.variety-img-label {
  position: absolute;
  top: 11px;
  left: 11px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 5.6px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.variety-card-body {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
}
.variety-sub-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin: 0 0 6px;
}
.variety-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 13px;
  letter-spacing: 0.019em;
}
.variety-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: baseline;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.variety-row:last-child {
  border-bottom: none;
}
.variety-row-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.variety-row-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.019em;
}
.variety-price-inline {
  font-size: 14px;
}
.variety-price-inline .p-type {
  color: var(--ink);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.019em;
}
.variety-price-inline .p-val {
  font-size: 16px;
  font-weight: bold;
  color: var(--terracotta);
  letter-spacing: 0.04em;
}

.notice-boxes {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.notice-box {
  border-left: 2.8px solid var(--terracotta);
  border-radius: 0 11px 11px 0;
  padding: 21px 24px 21px 27px;
  background-color: var(--cream);
  margin-bottom: 14px;
}
.notice-box.green-left {
  border-left-color: var(--green);
}
.notice-box-title {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.09em;
  margin: 0 0 8px;
}
.notice-box.green-left {
  color: var(--green);
}
.notice-box:not(.green-left) {
  color: var(--terracotta);
}
.notice-box-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.022em;
}
.notice-box-sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.022em;
  margin: 4px 0 0;
}
.notice-box-sub .em {
  font-size: 18px;
  font-weight: 700;
}

/* === プランカード（書面郵送 / Eメール） === */
.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 28px 30px 32px;
}
.plan-card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.plan-card-title.green {
  color: var(--green);
}
.plan-card-title.terra {
  color: var(--terracotta);
}
.plan-card-lead {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 0 0 14px;
}
.plan-card-method {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.85;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
}
.plan-card-method .caution-text {
  font-weight: 700;
}
.plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.plan-tag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
}
.plan-tag.green {
  background: #dde3ce;
  color: var(--green);
}
.plan-tag.terra {
  background: #f5efe3;
  color: var(--terracotta);
}
.plan-flow {
  padding-bottom: 8px;
}
.plan-flow-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.plan-flow-icon {
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-flow-icon svg {
  width: 40px;
  height: 40px;
}
.plan-flow-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.plan-flow-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.plan-flow-arrow-label {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.12em;
}
.plan-arrow {
  width: 100%;
  height: 9px;
  display: block;
}
.plan-card-foot {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.price-min-note {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.price-notes {
  margin-bottom: 22px;
}

/* ════════════════════════════════
   04 Access
════════════════════════════════ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}
.access-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.access-info-card {
  height: 100%;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  padding: 32px 36px;
}
.access-brand {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin: 0 0 4px;
}
.access-kana {
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.2em;
  margin: 0 0 24px;
}
.access-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13.5px;
  line-height: 1.7;
}
.access-row:last-of-type {
  border-bottom: none;
}
.access-row-label {
  flex-shrink: 0;
  min-width: 56px;
  font-size: 16px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.12em;
  padding-top: 2px;
}
.access-row-val {
  color: var(--ink);
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 16px;
}
.access-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  padding: 16px 24px;
  border-radius: 10px;
  background: var(--terracotta);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(176, 65, 30, 0.22);
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    background 0.2s;
}
.access-contact-btn:hover {
  background: #c14a24;
  box-shadow: 0 6px 14px rgba(176, 65, 30, 0.3);
}
.access-contact-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(176, 65, 30, 0.25);
}
.access-sns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.access-sns a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.cooljapanvideo {
  border: initial !important;
}
.access-sns a:hover {
  border-color: var(--green);
  color: var(--green);
}
.access-sns svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.access-map-img {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 0;
  border-radius: 12px;
  overflow: hidden;
}
.access-map-img img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.access-map-img iframe {
  width: 100%;
  height: 480px;
  display: block;
  border: 0;
}
.access-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* ════════════════════════════════
   申し込み
════════════════════════════════ */
.apply-sec {
  padding: 80px 32px;
}
.apply-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.center-sec-head {
  text-align: center;
  margin-bottom: 40px;
}
.center-sec-head h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin: 0 0 3px;
}
.center-sec-head .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.36em;
  color: var(--terracotta);
  margin: 0;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 28px;
}
.apply-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 40px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.apply-card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.093em;
  margin: 0 0 10px;
}
.apply-card-title.green {
  color: var(--green);
}
.apply-card-title.terra {
  color: var(--terracotta);
}
.apply-card-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.64;
  letter-spacing: 0.019em;
  margin: 0 0 10px;
  white-space: nowrap;
}
.apply-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}
.apply-tag {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 13px;
  border-radius: 999px;
  border: none;
}
.apply-tag.phone-tag {
  background: #dde3ce;
  color: var(--green);
}
.apply-tag.web-tag {
  background: #f5efe3;
  color: var(--terracotta);
}
.apply-action-btn {
  display: block;
  border-radius: 12px;
  padding: 19px 20px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.apply-action-btn:hover {
  opacity: 0.85;
}
.apply-action-btn.green-btn {
  background: var(--green);
}
.apply-action-btn.terra-btn {
  background: var(--terracotta);
}
.apply-action-btn .btn-main {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 17.5px;
  letter-spacing: 0.18em;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}
.apply-action-btn .btn-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.18em;
  display: block;
}
.apply-dl-link {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.025em;
}
.apply-dl-link a {
  color: var(--muted-2);
  text-decoration: none;
}
.apply-dl-link a:hover {
  color: var(--green);
}

/* === 申込：2大ボタン === */
.apply-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
}
.apply-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.apply-btn-col {
  display: flex;
  flex-direction: column;
}
.apply-btn-col .apply-dl-link {
  margin-top: 14px;
}
.apply-big-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  border-radius: 12px;
  padding: 32px 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.apply-big-btn:hover {
  opacity: 0.9;
}
.apply-big-btn.green {
  background: var(--green);
}
.apply-big-btn.terra {
  background: var(--terracotta);
}
.apply-big-btn .abb-label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
}
.apply-big-btn .abb-main {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.14em;
}
.apply-big-btn .abb-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
}

.apply-notices {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.apply-notice {
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed var(--border);
  border-radius: 13px;
  padding: 25px 32px;
}
.apply-notice-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}
.apply-notice-title::before {
  content: "";
  width: 8.7px;
  height: 8.7px;
  border-radius: 4.4px;
  background: var(--terracotta);
  flex-shrink: 0;
}
.apply-notice-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 8px;
  letter-spacing: 0.022em;
}
.apply-notice-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.025em;
}
.apply-notice-text a {
  text-decoration: underline;
  color: #007aff;
}
.apply-notice-link a {
  color: var(--muted-2);
  text-decoration: none;
}
.apply-notice-link a:hover {
  color: var(--green);
}

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-sec {
  padding: 80px 32px;
}
.faq-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
  align-items: start;
}
.faq-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 23px 27px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-q {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.faq-q-mark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  color: var(--terracotta);
  flex-shrink: 0;
  line-height: 21.6px;
  width: 16px;
}
.faq-q-text {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.85;
  letter-spacing: 0.05em;
  margin: 0;
}
.faq-sep {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 0;
}
.faq-a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.faq-a-mark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  color: var(--green);
  flex-shrink: 0;
  line-height: 21.6px;
  width: 14.7px;
  margin-top: 12px;
}
.faq-a-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.95;
  margin: 0;
  letter-spacing: 0.022em;
}

/* FAQ アコーディオン */
details.faq-card {
  gap: 0;
}
summary.faq-q {
  cursor: pointer;
  list-style: none;
  align-items: center;
}
summary.faq-q::-webkit-details-marker {
  display: none;
}
summary.faq-q::marker {
  content: "";
}
.faq-toggle {
  margin-left: auto;
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-right: 2px solid var(--muted-2);
  border-bottom: 2px solid var(--muted-2);
  transform: rotate(45deg);
  transition: transform 0.25s;
  margin-top: -4px;
}
details.faq-card[open] .faq-toggle {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.faq-a-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
}

/* ════════════════════════════════
   レスポンシブ
════════════════════════════════ */
@media (max-width: 768px) {
  /* 募集受付終了のお知らせ */
  .recruit-notice {
    padding: 14px 14px 0;
  }
  .recruit-notice p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* ニュースパネル */
  .news-panel {
    padding: 16px 14px;
  }
  .news-inner {
    flex-direction: column;
    gap: 14px;
  }
  .news-img-col {
    flex: none;
    width: 100%;
    min-height: 0;
    border-radius: 10px;
  }
  .news-img-col img {
    border-radius: 10px;
    aspect-ratio: 16/9;
    width: 100%;
  }
  .news-card {
    padding: 18px 14px 24px;
    border-radius: 12px;
  }
  .news-card-head {
    margin-bottom: 14px;
  }
  .news-card-head .ja {
    font-size: 14px;
  }
  .news-card-foot {
    margin-top: 24px;
  }
  /* スマホ: お知らせ一覧（.news-row）と同じ2段レイアウトに揃える
     1段目=日付＋バッジ（横並び） / 2段目=タイトル＋矢印 */
  .np-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "meta  meta"
      "title arrow";
    column-gap: 12px;
    row-gap: 8px;
    padding: 13px 0;
    border-bottom: 1px dashed #b0a582;
  }
  .np-meta {
    grid-area: meta;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .np-date {
    font-size: 14px;
    font-weight: 700;
  }
  .np-title {
    grid-area: title;
    font-size: 14px;
    line-height: 1.65;
  }
  .np-arrow {
    grid-area: arrow;
    align-self: start;
    font-size: 13px;
    line-height: 1.65;
    color: var(--green);
  }
  .news-more-btn {
    font-size: 12px;
    padding: 13px 20px;
  }

  /* ピックアップ */
  .pickup-sec {
    padding: 32px 14px;
  }
  .pickup-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .pickup-head {
    margin-bottom: 20px;
  }
  .pickup-head h2 {
    font-size: 15px;
  }
  .pickup-card-img {
    height: 110px;
  }
  .pickup-card-body {
    padding: 12px 4px 10px 10px;
  }
  .pc-en {
    font-size: 10px;
  }
  .pc-title {
    font-size: 14px;
  }
  .pickup-tag .tk {
    font-size: 10px;
  }
  .pickup-tag .tj {
    font: 10px;
  }
  .pickup-tag {
    top: 4px;
    left: 4px;
    padding: 4px 8px;
  }
  .pc-title-row {
    padding-right: 0px;
    align-items: baseline;
  }
  /* コンテンツセクション共通 */
  .content-sec {
    padding: 36px 14px;
  }

  /* About */
  .caution-box {
    padding: 20px;
    border-radius: 10px;
  }
  .caution-body {
    font-size: 14px;
  }
  .about-info-box .lbl {
    font-size: 14px;
  }
  .about-info-box .note {
    font-size: 14px;
  }
  .about-cond-list li {
    font-size: 14px;
  }
  /* スケジュール */
  .sec-intro {
    white-space: normal;
    font-size: 14px;
  }
  .schedule-label {
    font-size: 16px;
  }
  .sch-gradient-line {
    width: 1656px;
  }
  .sch-scroll-hint {
    margin-bottom: 12px;
  }
  .sch-step-group {
    flex: 0 0 320px;
  }
  .sch-card {
    height: auto;
    min-height: 400px;
  }
  .sch-card-content {
    top: 56px;
    bottom: auto;
  }
  .sch-card-title {
    font-size: 16px;
  }
  .sch-card-photo {
    height: 132px;
  }
  .price-callout {
    width: auto;
    height: auto;
    padding: 16px 16px 16px 24px;
    gap: 0px;
    margin: 0 0 24px;
  }
  .price-callout-img {
    width: 30px;
    height: 30px;
  }
  .price-callout-label {
    font-size: 13px;
  }
  .price-callout-val {
    font-size: 20px;
  }
  .price-callout-note {
    font-size: 13px;
  }
  .price-callout-val .yen {
    font-size: 13px;
  }
  .hc-body {
    padding: 20px 16px 14px;
    border-radius: 12px;
  }
  .hc-row {
    grid-template-columns: 90px 1fr;
    gap: 4px;
  }
  .hc-variety {
    font-size: 12px;
  }
  .hc-bar-pill {
    font-size: 13px;
    padding: 2px 8px;
    right: var(--r-sp); /* 10〜12月ズーム用の位置に切替 */
  }
  .hc-months {
    grid-template-columns: 80px 1fr;
    gap: 10px;
  }
  /* スマホは 10〜12月だけを全幅にズーム表示 */
  .hc-months-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .hc-months-inner span:nth-child(-n + 9) {
    display: none;
  }

  /* 価格 */
  .price-intro {
    font-size: 12px;
    white-space: normal;
  }
  .plan-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }
  .plan-card {
    padding: 22px 20px 20px;
    border-radius: 12px;
  }
  .plan-card-title {
    font-size: 16px;
  }
  .plan-card-lead {
    font-size: 14px;
  }
  .plan-card-method {
    font-size: 14px;
  }
  .plan-flow {
    margin-top: 16px;
  }
  .variety-card {
    grid-template-columns: 1fr;
  }
  .variety-card-img {
    margin: 0 auto;
    min-height: 180px;
  }
  .variety-card-body {
    padding: 16px 20px;
  }
  .variety-sub-title {
    font-size: 16px;
  }
  .variety-desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .variety-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 0;
  }
  .variety-row-label {
    font-size: 14px;
  }
  .variety-price-inline {
    font-size: 14px;
  }

  .notice-box {
    padding: 16px 18px 16px 22px;
    margin-bottom: 10px;
  }
  .notice-box-title {
    font-size: 14px;
  }
  .notice-box-text {
    font-size: 14px;
  }
  .notice-box-sub {
    font-size: 14px;
  }
  .notice-box-sub .em {
    font-size: 16px;
  }
  .plan-card-foot {
    font-size: 16px;
  }
  .price-min-note {
    font-size: 13px;
    text-align: left;
  }
  .hc-title {
    font-size: 20px;
  }
  .center-sec-head h2 {
    font-size: 20px;
  }
  .apply-big-btn .abb-sub {
    font-size: 14px;
  }
  .apply-btn-col .apply-dl-link {
    margin-top: 0;
    font-size: 14px;
  }
  .apply-big-btn.terra {
    margin-top: 16px;
  }
  /* アクセス */
  .access-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .access-info-card {
    padding: 18px 18px;
    border-radius: 12px;
  }
  .access-brand {
    font-size: 15px;
  }
  .access-kana {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .access-row {
    flex-direction: column;
    font-size: 13px;
    padding: 8px 0;
    gap: 4px;
  }
  .access-contact-btn {
    margin-top: 14px;
    padding: 14px 20px;
    font-size: 14px;
  }
  .access-map-img img {
    border-radius: 10px;
    width: 100%;
  }
  .access-map-img iframe {
    height: 300px;
  }
  .access-photo img {
    height: 180px;
    border-radius: 10px;
    width: 100%;
  }
  .access-sns {
    gap: 8px;
    margin-top: 14px;
  }

  /* 申し込み */
  .apply-sec {
    padding: 36px 14px;
  }
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
  .apply-card {
    padding: 28px 20px 24px;
    border-radius: 14px;
  }
  .apply-card-title {
    font-size: 16px;
  }
  .apply-card-sub {
    font-size: 13px;
    white-space: normal;
  }
  .apply-action-btn {
    padding: 15px 16px;
    border-radius: 10px;
  }
  .apply-action-btn .btn-main {
    font-size: 15px;
  }
  .apply-action-btn .btn-sub {
    font-size: 10.5px;
  }
  .apply-box {
    padding: 22px 16px;
    border-radius: 14px;
  }
  .apply-btn-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .apply-big-btn {
    padding: 24px 16px;
    border-radius: 10px;
  }
  .apply-big-btn .abb-main {
    font-size: 18px;
  }
  .apply-notice {
    padding: 18px 20px;
    border-radius: 10px;
  }
  .apply-notice-title {
    font-size: 14px;
  }
  .apply-notice-text {
    font-size: 14px;
  }

  /* FAQ */
  .faq-sec {
    padding: 36px 14px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .faq-card {
    padding: 18px 20px;
    border-radius: 12px;
  }
  .faq-q-text {
    font-size: 14px;
  }
  .faq-a-text {
    font-size: 13px;
  }
}
