/* ==========================================================================
   ちばらき珈琲 - Style Sheet
   Concept: Modern Monochrome Specialty Cafe
   ========================================================================== */

/* 1. CSS Variables & Reset
   ========================================================================== */
:root {
  /* Colors */
  --color-black: #000000;
  --color-dark: #121212;
  --color-dark-accent: #1a1a1a;
  --color-dark-card: #222222;
  --color-white: #ffffff;
  --color-light: #fafaf9;
  --color-light-accent: #f5f5f4;
  --color-light-card: #ffffff;
  
  /* Accent: Warm premium gold/coffee tone */
  --color-accent: #c8a27c;
  --color-accent-light: #dfc6ae;
  --color-accent-dark: #b38e68;
  --color-accent-rgb: 200, 162, 124;
  
  /* Text Colors */
  --color-text-dark: #1a1a1a;
  --color-text-light: #f5f5f5;
  --color-text-muted: #767676;
  --color-text-muted-light: #b5b5b5;
  --color-border-light: #e5e5e0;
  --color-border-dark: #333333;

  /* Typography */
  --font-serif: "Noto Serif JP", Georgia, serif;
  --font-sans: "Inter", "Noto Sans JP", -apple-system, sans-serif;
  
  /* Shadows & Transitions */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.06);
  --shadow-accent: 0 10px 30px rgba(200, 162, 124, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Header Height */
  --header-height: 80px;
  --header-height-scrolled: 70px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-dark);
  background-image: url('coffee.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* 2. Global Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.bg-dark {
  background-color: rgba(10, 10, 10, 0.62) !important;
  color: var(--color-text-light) !important;
}

.bg-light {
  background-color: rgba(245, 245, 244, 0.94) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-center {
  text-align: center;
}

.max-w-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.margin-top-sm { margin-top: 15px; }
.margin-top-md { margin-top: 30px; }
.margin-top-lg { margin-top: 60px; }

/* Grid Layouts */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2-col {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-col {
  grid-template-columns: repeat(3, 1fr);
}

.alignment-center {
  align-items: center;
}

.alignment-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.w-full {
  width: 100%;
}

@media (max-width: 992px) {
  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2-col, .grid-3-col {
    grid-template-columns: 1fr;
  }
  .grid {
    gap: 20px;
  }
}

/* Common Section Header */
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.section-divider {
  width: 40px;
  height: 2px;
  background-color: var(--color-black);
  margin: 0 auto;
}

.section-divider.bg-accent {
  background-color: var(--color-accent);
}

/* Responsive Line Break Helper */
br.br-mobile {
  display: none;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    letter-spacing: 0.02em;
  }
  br.br-mobile {
    display: inline;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
    letter-spacing: 0;
  }
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 162, 124, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline.text-white {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-icon-right {
  margin-left: 8px;
  font-size: 12px;
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 15px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

/* Stylized Image Placeholder (Crucial Requirement) */
.image-placeholder {
  background: linear-gradient(135deg, #e5e5eb 0%, #d8d8e0 100%);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #7a7a85;
  text-align: center;
  padding: 24px;
  transition: var(--transition-smooth);
}

.bg-dark .image-placeholder {
  background: linear-gradient(135deg, #1e1e24 0%, #17171d 100%);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  color: #8c8c9e;
}

.image-placeholder:hover {
  border-color: var(--color-accent);
}

.aspect-3-2 {
  aspect-ratio: 3/2;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.placeholder-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--color-accent);
  opacity: 0.8;
}

.placeholder-icon.text-lg {
  font-size: 40px;
}

.placeholder-label {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.bg-dark .placeholder-label {
  color: var(--color-white);
}

.placeholder-size {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.shadow-premium {
  box-shadow: var(--shadow-premium);
}

/* 3. Navigation Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled-dark {
  height: var(--header-height-scrolled);
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border-dark);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.site-header.scrolled .header-logo,
.site-header.scrolled-dark .header-logo {
  height: 42px;
}

.logo-fallback {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-black);
}

.site-header.scrolled-dark .logo-fallback {
  color: var(--color-white);
}

/* Nav Menu Desktop */
.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333333;
  padding: 8px 0;
  position: relative;
}

.site-header.scrolled-dark .nav-link {
  color: #cccccc;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.site-header.scrolled-dark .nav-btn {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.nav-btn:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
}

.site-header.scrolled-dark .nav-btn:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-black);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transition: var(--transition-smooth);
}

.site-header.scrolled-dark .hamburger-bar {
  background-color: var(--color-white);
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    z-index: 999;
    transition: var(--transition-smooth);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .nav-link {
    font-size: 18px;
    font-weight: 600;
  }
  
  .nav-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    text-align: center;
  }

  /* Hamburger Active Animation */
  .mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-nav-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* 4. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background-color: var(--color-black);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('coffee.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  opacity: 0.7;
}

.indicator-line {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.indicator-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
    line-height: 1.4;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* 5. Section 1: About (自己紹介)
   ========================================================================== */
.about-section,
.online-section,
.seminar-section,
.contact-section,
.story-detail-section,
.peaberry-detail-section,
.seminar-detail-section {
  background-color: rgba(255, 255, 255, 0.93) !important;
}

.about-text-block {
  padding-right: 40px;
}

.about-lead {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.about-paragraph {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 20px;
  text-align: justify;
}

.owner-signature {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.owner-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  font-weight: 700;
}

.about-image-wrapper {
  position: relative;
}

@media (max-width: 768px) {
  .about-text-block {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .about-lead {
    font-size: 19px;
  }
}

/* 6. Section 2: Flat Bean & Peaberry
   ========================================================================== */
.peaberry-section,
.shopinfo-section {
  background-color: rgba(10, 10, 10, 0.62) !important;
}

.peaberry-intro {
  margin-bottom: 60px;
}

.lead-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.comparison-container {
  align-items: stretch;
}

.comparison-card {
  background-color: var(--color-dark-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.comparison-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.comparison-card.featured {
  border: 1px solid var(--color-accent);
}

.comparison-card.featured:hover {
  box-shadow: var(--shadow-accent);
}

.comparison-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.comparison-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

/* Graphic CSS/SVG Diagrams */
.bean-diagram {
  position: relative;
  width: 140px;
  height: 140px;
}

.cherry-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e11d48 0%, #9f1239 80%);
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flat Seed Elements */
.flat-seed-left {
  width: 32px;
  height: 60px;
  background-color: #d1d5db;
  border-top-left-radius: 30px 40px;
  border-bottom-left-radius: 30px 40px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-right: 2px;
  position: relative;
  box-shadow: inset 3px 0 8px rgba(0, 0, 0, 0.2);
}

.flat-seed-right {
  width: 32px;
  height: 60px;
  background-color: #d1d5db;
  border-top-right-radius: 30px 40px;
  border-bottom-right-radius: 30px 40px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-left: 2px;
  position: relative;
  box-shadow: inset -3px 0 8px rgba(0, 0, 0, 0.2);
}

.seed-crease {
  position: absolute;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background-color: #4b5563;
}

.flat-seed-left .seed-crease {
  right: 0;
}

.flat-seed-right .seed-crease {
  left: 0;
}

/* Peaberry Seed Elements */
.peaberry-seed {
  width: 50px;
  height: 62px;
  background-color: var(--color-accent-light);
  border-radius: 30px 30px 30px 30px / 36px 36px 36px 36px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3), inset 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-crease {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #6b4d32;
}

.round-crease::before {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: -2px;
  width: 5px;
  border-radius: 50%;
  border-left: 1.5px solid #8d623b;
}

.bean-type-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bean-type-title .japanese {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 400;
}

.bean-ratio {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted-light);
  margin-bottom: 20px;
}

.accent-bg-text {
  color: var(--color-accent) !important;
}

.bean-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.peaberry-conclusion {
  background-color: var(--color-dark-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.conclusion-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .comparison-card {
    padding: 30px;
  }
  .peaberry-conclusion {
    padding: 24px;
  }
  .lead-text {
    font-size: 16px;
  }
}

/* 7. Section 3: Online Store & Furusato Nozei
   ========================================================================== */
.premium-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.shop-card-header {
  margin-bottom: 20px;
}

.shop-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.shop-title {
  font-size: 24px;
  font-weight: 700;
}

.shop-description {
  font-size: 14px;
  color: #555555;
  margin-bottom: 24px;
}

.shop-image-placeholder {
  margin-bottom: 24px;
}

/* Search Helper Styling */
.search-helper-box {
  background-color: var(--color-light-accent);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
}

.search-box-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
}

.search-input-wrapper {
  display: flex;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.search-input-field {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
}

.btn-copy {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-copy:hover {
  background-color: var(--color-accent-dark);
}

.copy-success-message {
  display: none;
  position: absolute;
  bottom: 8px;
  right: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.portal-links-label {
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}

.portal-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.portal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: #444444;
  transition: var(--transition-fast);
}

.portal-btn:hover {
  border-color: var(--color-black);
  color: var(--color-black);
  background-color: var(--color-light-accent);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .premium-card {
    padding: 24px;
  }
  .portal-links-grid {
    grid-template-columns: 1fr;
  }
  
  /* BASE Button Wrap Prevention (Item 4) */
  .premium-card .btn {
    font-size: 12.5px;
    padding: 12px 14px;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
  
  /* Copy Keyword Container Stacking (Item 5) */
  .search-input-wrapper {
    flex-direction: column;
    background-color: transparent;
    border: none;
    overflow: visible;
  }
  .search-input-field {
    width: 100%;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    padding: 12px;
    text-align: center;
    background-color: var(--color-white);
  }
  .btn-copy {
    width: 100%;
    justify-content: center;
    padding: 12px;
    border-radius: var(--radius-sm);
  }
}

/* 8. Section 4: Workshop & Seminar (出張コーヒー教室)
   ========================================================================== */
.seminar-section {
  background-color: var(--color-light-accent);
}

.seminar-intro {
  margin-bottom: 50px;
}

.course-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.course-card:hover {
  transform: translateY(-4px);
}

.course-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-bottom-right-radius: var(--radius-md);
}

.course-badge.text-only {
  background-color: var(--color-black);
}

.course-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 8px;
}

.course-duration {
  font-size: 13px;
  color: var(--color-accent-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.course-desc {
  font-size: 14.5px;
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 24px;
}

.course-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background-color: var(--color-light-accent);
  border: 1px solid var(--color-border-light);
  color: #555555;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* Setup basic details styles */
.setup-details-container {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-premium);
}

.details-main-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.detail-info-box {
  background-color: var(--color-light-accent);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.detail-info-box:hover {
  border-color: var(--color-accent-light);
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.box-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-accent);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}

.detail-info-box:hover .box-icon-wrapper {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.detail-info-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.detail-info-box p {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.6;
}

/* Pricing rules styles */
.pricing-rules-wrapper {
  background-color: #fafaf9;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 30px;
}

.rules-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--color-black);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.rule-item {
  display: flex;
  flex-direction: column;
}

.rule-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.rule-value {
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-black);
}

.rule-value .small {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.rules-note {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: right;
}

@media (max-width: 768px) {
  .course-card {
    padding: 30px 24px;
  }
  .setup-details-container {
    padding: 30px 20px;
  }
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .rules-note {
    text-align: left;
  }
}

/* Estimator Widget Styling (The WOW Feature) */
.estimator-widget-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.widget-header {
  padding: 40px;
  border-bottom: 1px solid var(--color-border-light);
}

.badge-accent {
  background-color: rgba(200, 162, 124, 0.15);
  color: var(--color-accent-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 10px;
}

.widget-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.widget-header p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.widget-body {
  padding: 40px;
}

.control-group {
  margin-bottom: 28px;
}

.control-group:last-child {
  margin-bottom: 0;
}

.control-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 12px;
  display: block;
}

.highlight-num {
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 700;
}

/* Slider Custom Design */
.slider-field {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.slider-field::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: var(--transition-fast);
}

.slider-field::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background-color: var(--color-accent-dark);
}

.slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.sub-helper-text {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* Inputs and Custom Controls */
.select-field {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

.select-field:focus {
  border-color: var(--color-accent);
}

/* Custom Checkboxes */
.checkbox-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 13.5px;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 18px;
  width: 18px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--color-accent);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

.check-label {
  font-weight: 500;
  color: #333333;
}

/* Estimator Result Panel */
.estimator-result-panel {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.result-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 15px;
}

.result-total-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.result-total-box .currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-right: 6px;
}

.result-total-box .total-amount {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.result-total-box .tax-tag {
  font-size: 11px;
  color: var(--color-text-muted-light);
  margin-left: 8px;
}

.result-divider {
  height: 1px;
  background-color: var(--color-border-dark);
  margin-bottom: 24px;
}

.result-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}

.breakdown-item .item-label {
  position: relative;
  flex-grow: 1;
}

.breakdown-item .item-value {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-white);
  margin-left: 15px;
  flex-shrink: 0;
}

.result-note-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--color-accent);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.result-note-box p {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--color-text-muted-light);
}

@media (max-width: 768px) {
  .widget-header {
    padding: 24px;
  }
  .widget-body {
    padding: 24px;
  }
  .estimator-result-panel {
    padding: 24px;
  }
  .result-total-box .total-amount {
    font-size: 38px;
  }
}

/* 9. Section 5: Related Shops & SNS
   ========================================================================== */
.related-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition-smooth);
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.related-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 2px;
}

.related-subtitle {
  font-size: 12.5px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.related-text-desc {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 24px;
}

.related-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin-bottom: 24px;
}

.related-info-table th, .related-info-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
  text-align: left;
}

.related-info-table th {
  width: 100px;
  font-weight: 700;
  color: var(--color-black);
}

.icon-w {
  width: 18px;
  color: var(--color-accent);
}

.justify-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 10. Section 6: Shop Info & Access
   ========================================================================== */
.shopinfo-section {
  background-color: var(--color-dark);
}

.shop-details-table-wrapper {
  padding-right: 40px;
}

.table-title {
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.store-info-table {
  width: 100%;
  border-collapse: collapse;
}

.store-info-table th, .store-info-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-dark);
  text-align: left;
  font-size: 14.5px;
}

.store-info-table th {
  width: 120px;
  font-weight: 700;
  color: var(--color-accent);
}

.store-info-table td {
  color: rgba(255, 255, 255, 0.85);
}

.tel-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.map-container-wrapper {
  width: 100%;
}

.map-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
}

.map-inner iframe {
  display: block;
}

.border-white {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .shop-details-table-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

/* 11. Section 7: Contact Form
   ========================================================================== */
.contact-section {
  background-color: var(--color-white);
}

.contact-intro {
  margin-bottom: 50px;
}

.contact-form-container {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.form-label .required {
  background-color: #ef4444;
  color: var(--color-white);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  margin-left: 6px;
  font-weight: 700;
}

.form-label .optional {
  background-color: #9ca3af;
  color: var(--color-white);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  margin-left: 6px;
  font-weight: 700;
}

/* Form Fields */
.input-field, .textarea-field {
  width: 100%;
  padding: 14px 18px;
  font-size: 14.5px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  background-color: var(--color-light-accent);
  transition: var(--transition-smooth);
}

.input-field:focus, .textarea-field:focus {
  border-color: var(--color-accent);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(200, 162, 124, 0.15);
}

.textarea-field {
  resize: vertical;
}

/* Custom Radios */
.radio-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  background-color: var(--color-light-accent);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.radio-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  user-select: none;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-mark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 18px;
  width: 18px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.radio-container:hover input ~ .radio-mark {
  border-color: var(--color-accent);
}

.radio-container input:checked ~ .radio-mark {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.radio-mark::after {
  content: "";
  position: absolute;
  display: none;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.radio-container input:checked ~ .radio-mark::after {
  display: block;
}

/* Conditional Field Box */
.conditional-fields-box {
  display: none; /* Controlled by JS */
  background-color: rgba(200, 162, 124, 0.05);
  border: 1px solid var(--color-accent-light);
  border-radius: var(--radius-md);
  padding: 24px;
  animation: fadeIn 0.4s ease;
}

.conditional-title {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-options-row {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }
  .radio-options-grid {
    grid-template-columns: 1fr;
  }
  .checkbox-options-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* Form Submit and Feedback alerts */
.form-feedback-alert {
  display: none; /* Controlled by JS */
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  align-items: flex-start;
  gap: 12px;
  animation: fadeIn 0.3s ease;
  margin-top: 15px;
}

.form-feedback-alert.success {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-feedback-alert.success i {
  color: #10b981;
  font-size: 20px;
}

.form-feedback-alert strong {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* 12. Footer & Scroll To Top
   ========================================================================== */
.site-footer {
  background-color: rgba(0, 0, 0, 0.95) !important;
  color: var(--color-text-muted-light);
  padding: 60px 0 40px;
  border-top: 1px solid var(--color-border-dark);
}

.footer-logo-wrapper {
  margin-bottom: 30px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.footer-sns-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-sns-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.footer-sns-icon:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  font-size: 13.5px;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.copyright {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* Scroll To Top Button */
.btn-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.btn-scroll-top:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .btn-scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

/* ==========================================================================
   Multi-page / Subpages Additions
   ========================================================================== */

/* Subpage Hero */
.subpage-hero-section {
  position: relative;
  width: 100%;
  height: 280px;
  background-image: url('coffee.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding-top: 40px; /* Spacer for header */
  text-align: center;
}

.subpage-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
}

.subpage-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.subpage-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.breadcrumbs {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs .divider {
  font-size: 9px;
  opacity: 0.4;
}

/* Page Specific Layout Blocks */
.domestic-seminar-box {
  background-color: var(--color-light-accent);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin: 60px auto 0;
}

.box-title {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 16px;
}

.benefits-title {
  font-size: 14.5px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--color-black);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.benefits-list li {
  font-size: 13.5px;
  color: #4a4a4a;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.benefits-list li i {
  margin-top: 4px;
  font-size: 12px;
}

.subpage-cta {
  background-color: rgba(255, 255, 255, 0.94) !important;
  border-top: 1px solid var(--color-border-light) !important;
  color: var(--color-text-dark) !important;
}

.subpage-cta .cta-title,
.subpage-cta .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-black) !important;
}

.subpage-cta .about-paragraph {
  color: #333333 !important;
}

.text-left {
  text-align: left !important;
}

.gap-lg {
  gap: 60px;
}

@media (max-width: 768px) {
  .subpage-hero-section {
    height: 220px;
  }
  .subpage-title {
    font-size: 26px;
  }
  .domestic-seminar-box {
    padding: 30px 20px;
    margin-top: 40px;
  }
  .gap-lg {
    gap: 30px;
  }
}

