/* =========================================================
   コレ買い！ × 工房アプリコ｜あんず収穫インターン説明会資料
   Design: 白 × ベージュ × あんずオレンジ
   ========================================================= */

:root {
  /* Core palette */
  --ivory: #FBF7F0;          /* 主要背景：温かい白 */
  --cream: #F5ECDB;          /* セクション背景：ベージュ */
  --cream-deep: #EBDDC2;     /* 強めのベージュ */
  --warm-white: #FFFFFF;

  /* Apricot accents */
  --apricot: #E89A4E;        /* メインオレンジ（あんず）*/
  --apricot-deep: #D17E2E;   /* 強調 */
  --apricot-light: #F7C896;  /* ライト */
  --apricot-bg: #FDF1E2;     /* 極薄オレンジ背景 */

  /* Text */
  --ink: #2B2218;            /* 本文 */
  --ink-soft: #5C4F40;       /* 副次テキスト */
  --ink-mute: #8A7C6B;       /* 注釈 */

  /* Lines */
  --line: #E5D8C0;
  --line-soft: #EFE7D6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--apricot-bg) 60%, var(--apricot-light) 100%);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--apricot) 0%, transparent 70%);
  opacity: 0.25;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--apricot-light) 0%, transparent 70%);
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--apricot-deep);
  background: var(--warm-white);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  border: 1px solid var(--apricot-light);
}

.hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  color: var(--ink);
}

.hero__title--accent {
  color: var(--apricot-deep);
  position: relative;
}
.hero__title--accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 100%; height: 6px;
  background: var(--apricot);
  opacity: 0.4;
  border-radius: 3px;
}

.hero__lead {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 680px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__meta-item {
  background: var(--warm-white);
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
}

.hero__meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--apricot-deep);
}

.hero__meta-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

/* =========================================================
   SECTION
   ========================================================= */
.section {
  padding: 96px 0;
}

.section--cream {
  background: var(--cream);
}

.section--footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 80px 0 40px;
}

.section__heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--apricot);
}

.section__heading--center {
  justify-content: center;
  text-align: center;
  border-bottom-color: var(--apricot-light);
}

.section__num {
  font-family: 'Noto Serif JP', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--apricot);
  line-height: 1;
}

.section--footer .section__num {
  color: var(--apricot-light);
}

.section__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.section--footer .section__title {
  color: var(--ivory);
}

.section__lead {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 820px;
}

/* =========================================================
   GRID & CARD
   ========================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(208, 126, 46, 0.1);
}

.card__icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--apricot-deep);
  margin-bottom: 12px;
  font-family: 'Noto Serif JP', serif;
}

.card__text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.card__list {
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}
.card__list li {
  padding-left: 22px;
  position: relative;
}
.card__list li::before {
  content: "●";
  color: var(--apricot);
  font-size: 10px;
  position: absolute;
  left: 0; top: 6px;
}

/* =========================================================
   NOTE
   ========================================================= */
.note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--apricot-bg);
  border-left: 4px solid var(--apricot);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.note strong { color: var(--apricot-deep); }

/* =========================================================
   PROGRAM
   ========================================================= */
.grid--programs {
  margin-top: 16px;
}

.program {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}

.program--featured {
  background: linear-gradient(135deg, var(--apricot-bg) 0%, var(--warm-white) 100%);
  border-color: var(--apricot-light);
}

.program__tag {
  display: inline-block;
  background: var(--apricot);
  color: var(--warm-white);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.program__date {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.program__sat { color: #4A89DC; font-size: 18px; }
.program__sun { color: #D9534F; font-size: 18px; }

.program__highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--apricot-deep);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}

.program__features {
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}
.program__features li {
  padding-left: 20px;
  position: relative;
}
.program__features li::before {
  content: "✓";
  color: var(--apricot);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.program__common {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.program__common-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--apricot-deep);
  margin-bottom: 8px;
}
.program__common p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* =========================================================
   TIMETABLE
   ========================================================= */
.timetable {
  margin-bottom: 40px;
  background: var(--warm-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.timetable--zoom {
  background: var(--cream-deep);
}

.timetable__header {
  background: var(--apricot);
  color: var(--warm-white);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.timetable__program {
  background: var(--warm-white);
  color: var(--apricot-deep);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.timetable__program--alt {
  background: var(--apricot-deep);
  color: var(--warm-white);
}
.timetable__program--zoom {
  background: var(--ink);
  color: var(--warm-white);
}

.timetable__day {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.timetable__or {
  font-size: 13px;
  background: rgba(255,255,255,0.25);
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

.timetable__table {
  width: 100%;
  border-collapse: collapse;
}
.timetable__table tr {
  border-bottom: 1px solid var(--line-soft);
}
.timetable__table tr:last-child { border-bottom: none; }

.timetable__table td {
  padding: 14px 20px;
  font-size: 14px;
}

.timetable__table .time {
  width: 100px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--apricot-deep);
  background: var(--apricot-bg);
  text-align: center;
  border-right: 1px solid var(--line-soft);
}

.timetable__table .event {
  color: var(--ink);
  line-height: 1.7;
}
.timetable__table .event strong {
  color: var(--apricot-deep);
}
.timetable__table .event small {
  display: block;
  color: var(--ink-mute);
  font-size: 12px;
  margin-top: 4px;
}

.badge {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

.timetable__note {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: right;
  margin-top: 8px;
}

/* =========================================================
   MEETING POINT
   ========================================================= */
.meeting-point__main {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--apricot);
  border-radius: 12px;
  padding: 32px 36px;
}
.meeting-point__main h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--apricot-deep);
  margin-bottom: 8px;
}
.meeting-point__address {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.meeting-point__access {
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}
.meeting-point__access li {
  padding-left: 24px;
  position: relative;
}
.meeting-point__access li::before {
  content: "▸";
  color: var(--apricot);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.meeting-point__access strong {
  color: var(--ink);
}
.meeting-point__note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink-mute);
}

/* =========================================================
   LODGING
   ========================================================= */
.lodging {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 24px;
  overflow: hidden;
}

.lodging__head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--apricot-bg) 0%, var(--warm-white) 100%);
  border-bottom: 1px solid var(--line-soft);
}

.lodging__no {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--apricot);
  line-height: 1;
  min-width: 60px;
}

.lodging__title-block { flex: 1; }

.lodging__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.lodging__tag {
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 500;
}

.lodging__badge {
  background: var(--cream-deep);
  color: var(--ink-soft);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.lodging__badge--recommend {
  background: var(--apricot);
  color: var(--warm-white);
}
.lodging__badge--popular {
  background: #C7563F;
  color: var(--warm-white);
}
.lodging__badge--budget {
  background: #5A8C5E;
  color: var(--warm-white);
}

.lodging__body {
  padding: 28px 32px;
}

.lodging__data {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px 24px;
  font-size: 14px;
  line-height: 1.85;
}
.lodging__data dt {
  font-weight: 700;
  color: var(--apricot-deep);
  padding: 6px 0;
  border-right: 1px dashed var(--line);
}
.lodging__data dd {
  color: var(--ink-soft);
  padding: 6px 0;
}

.lodging__pros {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.lodging__pros strong {
  color: var(--apricot-deep);
}

/* compare table */
.compare {
  margin-top: 48px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
}

.compare__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--apricot-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--apricot);
}

.compare__wrapper {
  overflow-x: auto;
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 600px;
}
.compare__table th,
.compare__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
.compare__table th {
  background: var(--cream);
  color: var(--apricot-deep);
  font-weight: 700;
}
.compare__table td:first-child {
  font-weight: 700;
  color: var(--ink);
}

/* =========================================================
   GRANT
   ========================================================= */
.grant {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.grant__item {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--apricot);
  border-radius: 12px;
  padding: 24px 22px;
}
.grant__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--apricot-deep);
  margin-bottom: 12px;
}
.grant__value {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
}
.grant__value strong {
  font-size: 22px;
  color: var(--apricot-deep);
  font-family: 'Noto Serif JP', serif;
}
.grant__value small {
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 400;
}

.grant__note {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 32px;
}

.grant__note h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--apricot-deep);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.grant__note ul {
  list-style: none;
  margin-bottom: 20px;
}
.grant__note ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
}
.grant__note ul li::before {
  content: "□";
  color: var(--apricot);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.grant__caution {
  padding: 16px 20px;
  background: #FFF4E5;
  border-left: 4px solid #D17E2E;
  border-radius: 4px;
  font-size: 13px;
  line-height: 2;
  color: var(--ink);
}

.grant__link {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
.grant__link a {
  color: var(--apricot-deep);
  text-decoration: underline;
  word-break: break-all;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.contact__block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 236, 219, 0.15);
  border-radius: 12px;
  padding: 24px 26px;
}

.contact__block h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--apricot-light);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 236, 219, 0.15);
}

.contact__block p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ivory);
}

.footer__credit {
  margin-top: 56px;
  text-align: center;
  font-size: 12px;
  color: rgba(245, 236, 219, 0.5);
  letter-spacing: 0.1em;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 50px; }
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }

  .grid--2,
  .grid--3,
  .grant,
  .contact {
    grid-template-columns: 1fr;
  }

  .section__heading {
    flex-wrap: wrap;
    gap: 12px;
  }
  .section__num { font-size: 36px; }

  .lodging__head {
    flex-wrap: wrap;
    padding: 20px 22px;
  }
  .lodging__no { font-size: 28px; min-width: 44px; }
  .lodging__name { font-size: 18px; }
  .lodging__body { padding: 20px 22px; }

  .lodging__data {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .lodging__data dt {
    border-right: none;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 2px;
    margin-top: 8px;
  }

  .timetable__table .time {
    width: 70px;
    font-size: 12px;
  }
  .timetable__table td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* =========================================================
   PRINT (PDF出力用)
   ========================================================= */
@page { size: A4; margin: 8mm 6mm; }

@media print {
  html, body { background: white; font-size: 11px; line-height: 1.6; }
  .container { padding: 0; max-width: 100%; }

  .hero { padding: 32px 24px; break-after: page; }
  .section { padding: 24px 0; break-inside: avoid; orphans: 3; widows: 3; }
  .section--cream { background: var(--cream); -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .section--footer { background: var(--ink); color: var(--ivory); -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  .card { box-shadow: none; padding: 18px; margin-bottom: 12px; page-break-inside: auto; }
  .card:hover { transform: none; box-shadow: none; }

  .lodging { break-inside: avoid; page-break-inside: avoid; }
  .timetable { break-inside: avoid; page-break-inside: avoid; }
  .program { break-inside: avoid; page-break-inside: avoid; }

  h2, h3 { break-inside: avoid; page-break-inside: avoid; break-after: avoid; page-break-after: avoid; }
  .lodging__head { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .timetable__header { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .timetable__table .time { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  table { page-break-inside: auto; }
  tr { break-inside: avoid; page-break-inside: avoid; }
  thead { display: table-header-group; }

  a { color: var(--apricot-deep); text-decoration: none; }

  .hero::before, .hero::after { display: none; }
}
