  :root {
    --deep-purple: #302b5a;
    --light-purple: #c1bed4;
    --sage: #bad092;
    --cream: #f0f2c7;
    --white: #ffffff;
    --text-dark: #2a2633;
    --text-mid: #4a4560;
    --accent-gold: #8a7a3a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    position: relative;
    overflow-x: hidden;
  }

  /* Grape background pattern */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 10% 20%, rgba(186,208,146,0.15) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(48,43,90,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
  }

  /* Decorative grape cluster SVGs */
  .grape-bg {
    position: fixed;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
  }
  .grape-bg-left { left: -60px; top: 30%; width: 280px; }
  .grape-bg-right { right: -60px; top: 60%; width: 280px; }

  /* ========== HEADER / SLIDESHOW ========== */
  header {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .slideshow {
    position: relative;
    height: 520px;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
  }

  .slide.active { opacity: 1; }

  /* Placeholder slides with gradient backgrounds mimicking wine/vineyard scenes */
  .slide-1 {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2c6b 30%, #7a5c3a 60%, #bad092 100%);
  }
  .slide-2 {
    background: linear-gradient(135deg, #1a3a2a 0%, #2e6b3a 40%, #6b9a3a 70%, #c1bed4 100%);
  }
  .slide-3 {
    background: linear-gradient(135deg, #4a1a2a 0%, #7a2a4a 40%, #302b5a 70%, #c1bed4 100%);
  }
  .slide-4 {
    background: linear-gradient(135deg, #2a3a1a 0%, #4a6b2a 40%, #bad092 70%, #f0f2c7 100%);
  }

  /* Grape cluster illustrations in slides */
  .slide::before {
    content: '🍇';
    font-size: 120px;
    position: absolute;
    right: 80px;
    bottom: 60px;
    opacity: 0.25;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
  }
  .slide::after {
    content: '🍷';
    font-size: 80px;
    position: absolute;
    left: 60px;
    top: 40px;
    opacity: 0.2;
  }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(48,43,90,0.3) 0%, rgba(48,43,90,0.6) 100%);
  }

  .header-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 20px;
  }

  .header-badge {
    background: rgba(186,208,146,0.3);
    border: 1px solid rgba(186,208,146,0.6);
    color: var(--cream);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    backdrop-filter: blur(4px);
  }

  .header-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    line-height: 1.5;
    max-width: 1000px;
    margin-bottom: 12px;
  }

  .header-subtitle {
    color: var(--cream);
    font-size: 0.95rem;
    opacity: 0.85;
    letter-spacing: 0.1em;
  }

  .slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
  }

  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .dot.active {
    background: var(--cream);
    transform: scale(1.3);
  }

  /* ========== MAIN CONTENT ========== */
  main {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }

  /* Section title style */
  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-purple);
    border-left: 4px solid var(--sage);
    padding: 8px 0 8px 14px;
    margin: 36px 0 16px;
    background: linear-gradient(to right, rgba(186,208,146,0.15), transparent);
    border-radius: 0 6px 6px 0;
  }

  /* Info block */
  .info-block {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);
    border: 1px solid var(--light-purple);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(48,43,90,0.06);
  }

  .info-row {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(193,190,212,0.5);
    align-items: flex-start;
  }
  .info-row:last-child { border-bottom: none; }

  .info-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--deep-purple);
    min-width: 120px;
    flex-shrink: 0;
  }

  .info-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.7;
  }

  /* Table style */
  .styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(48,43,90,0.06);
    font-size: 0.88rem;
  }

  .styled-table th {
    background: var(--deep-purple);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 0.85rem;
  }

  .styled-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(193,190,212,0.3);
    vertical-align: top;
    line-height: 1.6;
    color: var(--text-dark);
  }

  .styled-table tr:last-child td { border-bottom: none; }

  .styled-table tr:nth-child(even) td {
    background: rgba(186,208,146,0.1);
  }

  .styled-table .day-header td {
    background: rgba(48,43,90,0.08);
    font-weight: 700;
    color: var(--deep-purple);
  }

  /* Schedule note in table */
  .schedule-note {
    font-size: 0.78rem;
    color: #888;
    display: block;
    margin-top: 2px;
  }

  /* List style */
  .styled-list {
    list-style: none;
    padding: 0;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    border: 1px solid var(--light-purple);
    overflow: hidden;
  }

  .styled-list li {
    padding: 9px 16px 9px 36px;
    position: relative;
    font-size: 0.88rem;
    border-bottom: 1px dashed rgba(193,190,212,0.4);
    line-height: 1.6;
  }
  .styled-list li:last-child { border-bottom: none; }

  .styled-list li::before {
    content: '🍇';
    font-size: 0.75rem;
    position: absolute;
    left: 14px;
    top: 10px;
  }

  /* Notes list */
  .notes-list {
    list-style: none;
    padding: 0;
  }
  .notes-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-mid);
  }
  .notes-list li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--deep-purple);
    font-weight: 700;
  }

  /* ========== STEPS ========== */
  .steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-box {
    width: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,242,199,0.5));
    border: 2px solid var(--light-purple);
    border-radius: 16px;
    padding: 24px 28px;
    position: relative;
    box-shadow: 0 4px 16px rgba(48,43,90,0.08);
  }

  .step-number {
    display: inline-block;
    background: var(--deep-purple);
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
  }

  .step-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 2rem;
    margin: 8px 0;
    line-height: 1;
  }

  .apply-btn {
    display: inline-block;
    margin-top: 14px;
    background: linear-gradient(135deg, var(--deep-purple), #4a4280);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 16px rgba(48,43,90,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48,43,90,0.4);
  }

  /* ========== CONTACT INFO ========== */
  .contact-block {
    background-color: #FFFFFF;
    border: 1px solid var(--light-purple);
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 16px;
    font-size: 0.87rem;
    line-height: 1.9;
  }

  .contact-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sage);
  }

  .contact-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--deep-purple);
  }

  .highlight-note {
    background: rgba(186,208,146,0.25);
    border-left: 3px solid var(--sage);
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
    font-size: 0.82rem;
    margin-top: 8px;
    color: var(--text-mid);
  }

  /* Manager box */
  .manager-box {
    border: 2px solid var(--deep-purple);
    border-radius: 8px;
    padding: 18px 22px;
    margin-top: 20px;
    background: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    line-height: 1.8;
  }

  .manager-box .manager-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--deep-purple);
    margin-bottom: 6px;
  }

  /* Company footer section */
  .company-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px dashed var(--light-purple);
  }

  .company-section-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    color: var(--deep-purple);
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .company-row {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .company-info {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.9;
  }

  .company-logo {
    width: 120px;
    height: 80px;
    background: var(--light-purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-purple);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 2px dashed var(--deep-purple);
    flex-shrink: 0;
    text-align: center;
    padding: 8px;
  }

  .privacy-section {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.8;
  }

  /* Footer */
  footer {
    background: var(--deep-purple);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 20px;
    font-size: 0.78rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }

  footer a {
    color: var(--cream);
    text-decoration: none;
    margin: 0 6px;
  }
  footer a:hover { text-decoration: underline; }

  footer .footer-divider {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
  }

  /* Responsive */
  @media (max-width: 600px) {
    .company-row { flex-direction: column; align-items: flex-start; }
    .info-row { flex-direction: column; gap: 4px; }
    .info-label { min-width: unset; }
    .slideshow { height: 380px; }
    .header-title { font-size: 1.3rem; }
  }

  /* Accent tag */
  .tag {
    display: inline-block;
    background: var(--sage);
    color: var(--deep-purple);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
  }

  .price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-purple);
    font-family: 'Noto Serif JP', serif;
  }
.subtour-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0 8px;
}

.subtour-deco-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--light-purple), transparent);
}

.subtour-title-inner {
  text-align: center;
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(240,242,199,0.5));
  border: 1px solid var(--light-purple);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(48,43,90,0.08);
  flex-shrink: 1;
}

.subtour-en {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--light-purple);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
}

.subtour-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--deep-purple);
  line-height: 1.4;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.subtour-desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .subtour-title-wrap { gap: 10px; }
  .subtour-title-inner { padding: 14px 16px; }
  .subtour-deco-line { display: none; }
}

  /* Top image area */
  .top-visual {
    width: 100%;
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2c6b 30%, #302b5a 70%, #bad092 100%);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-visual::before {
    content: '??';
    font-size: 200px;
    position: absolute;
    right: -20px;
    bottom: -20px;
    opacity: 0.1;
  }

  .top-visual-inner {
    text-align: center;
    padding: 40px 20px;
    z-index: 1;
    position: relative;
  }

  .top-visual-label {
    display: inline-block;
    background: rgba(186,208,146,0.3);
    border: 1px solid rgba(186,208,146,0.6);
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
  }

  .top-visual h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    margin-bottom: 6px;
  }

  .top-visual p {
    color: var(--cream);
    font-size: 0.85rem;
    opacity: 0.85;
    letter-spacing: 0.08em;
  }

  /* Breadcrumb / back link */
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--deep-purple);
    text-decoration: none;
    margin-bottom: 24px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--light-purple);
    background: rgba(255,255,255,0.6);
    transition: background 0.2s;
  }
  .back-link:hover { background: rgba(255,255,255,0.9); }

/* Precaution card */
.precaution-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--light-purple);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(48,43,90,0.06);
}

.precaution-card ol {
  list-style: decimal;      /*  ʂ̔ԍ */
  padding-left: 1.5em;      /*  ̗] */
}

.precaution-card ol li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(193,190,212,0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.precaution-card ol li:last-child {
  border-bottom: none;
}


  /* Confirm block */
  .confirm-block {
    background: linear-gradient(135deg, rgba(186,208,146,0.2), rgba(240,242,199,0.4));
    border: 2px solid var(--sage);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-bottom: 28px;
  }

  .confirm-question {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .btn-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-yes {
    display: inline-block;
    background: linear-gradient(135deg, var(--deep-purple), #4a4280);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 48px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 16px rgba(48,43,90,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48,43,90,0.4);
  }

  .btn-no {
    display: inline-block;
    background: rgba(255,255,255,0.8);
    color: var(--text-mid);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 48px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.1em;
    border: 2px solid var(--light-purple);
    transition: background 0.2s;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .btn-no:hover { background: #fff; }

  .btn-caption {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-mid);
    flex-wrap: wrap;
  }

  .btn-caption span { min-width: 120px; text-align: center; }



  /* P mark */
  .p-mark-wrap {
    margin: 12px 0;
  }
  .p-mark-wrap img {
    width: 60px;
    height: auto;
    border-radius: 4px;
  }

  /* Footer links */
  .footer-links {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 4px;
    line-height: 2;
  }
  .footer-links a {
    color: var(--deep-purple);
    text-decoration: underline;
    margin: 0 4px;
  }

  /* fade-in animation */
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.in-view {
    opacity: 1;
    transform: none;
  }