/* =========================================
   天心堂薬局 - スタイルシート
   ========================================= */

/* CSS変数 */
:root {
  --primary: #63ae56;
  --primary-dark: #549947;
  --primary-light: rgba(99, 174, 86, 0.1);
  --secondary: #686358;
  --accent: #e9a19b;
  --background: #faf9f7;
  --foreground: #2d2a26;
  --muted: #6b6560;
  --muted-light: #f5f4f2;
  --border: #e5e3df;
  --white: #ffffff;
  --gray-100: #eeeeee;
  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* リセット */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* フォント */
.font-serif {
  font-family: var(--font-serif);
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

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

.btn-outline {
  background-color: var(--white);
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--foreground);
  border: 1px solid var(--border);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

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

.btn-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.btn-link:hover {
  text-decoration: underline;
}

/* カード */
.card {
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

/* セクションヘッダー */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 16px;
}

.section-highlight {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

/* =========================================
   ヘッダー
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #5c4a3d;
  transition: color 0.3s ease;
}

.logo-sub {
  font-size: 11px;
  color: #6b5b4f;
  transition: color 0.3s ease;
}

.header.scrolled .logo-text {
  color: var(--primary);
}

.header.scrolled .logo-sub {
  color: var(--muted);
}

.nav-desktop {
  display: none;
  gap: 24px;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: #5c4a3d;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: #3d3129;
}

.header.scrolled .nav-desktop a {
  color: var(--foreground);
}

.header.scrolled .nav-desktop a:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
}

.header-cta .btn {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 9999px;
}

.header-cta .btn:hover {
  background-color: #549947;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #5c4a3d;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.header.scrolled .mobile-menu-btn span {
  background-color: var(--foreground);
}

/* ハンバーガーアイコン → X アニメーション */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
  padding: 0 16px;
}

.mobile-menu.active {
  max-height: 400px;
  opacity: 1;
  padding: 16px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-nav a {
  transform: translateX(0);
  opacity: 1;
}

/* 各メニュー項目を順番に表示 */
.mobile-menu.active .mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav a:nth-child(6) { transition-delay: 0.3s; }

.mobile-nav a:hover {
  color: var(--primary);
}

/* モバイルメニュー内のボタンは白文字を維持 */
.mobile-nav a.btn-primary {
  color: var(--white);
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav a.btn-primary:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* =========================================
   ヒーローセクション
   ========================================= */
.hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: flex-start;
  padding-top: 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.1) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 32px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: #5c4a3d;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 672px;
}

.hero-text {
  font-size: 16px;
  color: #6b5b4f;
  line-height: 2;
  margin-bottom: 40px;
  max-width: 672px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 0;
    align-items: center;
  }

  .hero-bg img {
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.6) 30%,
      rgba(255, 255, 255, 0.2) 60%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero-content {
    padding-top: 0;
    width: 90%;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }
}

/* =========================================
   新着情報
   ========================================= */
.news {
  background-color: #faf9f7;
  padding: 64px 0;
}

.news .section-header {
  margin-bottom: 32px;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  margin-bottom: 24px;
}

.news-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
  text-align: center;
}

.news-date {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  text-align: center;
}

.news-content {
  font-size: 15px;
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .news {
    padding: 80px 0;
  }
}

/* =========================================
   お悩みチェックリスト
   ========================================= */
.concerns-checklist {
  background-color: var(--white);
  padding: 64px 0;
}

.checklist-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
}

.checklist-grid {
  display: grid;
  gap: 16px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

.checklist-item span:last-child {
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .concerns-checklist {
    padding: 96px 0;
  }

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

  .checklist-item span:last-child {
    font-size: 16px;
  }
}

/* =========================================
   選ばれる理由
   ========================================= */
.reasons {
  background-color: var(--white);
  padding: 80px 0;
}

.reasons-grid {
  display: grid;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.reason-card {
  padding: 40px;
  text-align: center;
}

.reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-light);
  margin: 0 auto 24px;
}

.reason-icon svg {
  stroke: var(--primary);
}

.reason-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.reason-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .reasons {
    padding: 128px 0;
  }

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

/* =========================================
   お悩みカテゴリ
   ========================================= */
.concerns-categories {
  background-color: var(--gray-100);
  padding: 80px 0;
}

.categories-grid {
  display: grid;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  overflow: hidden;
  background-color: var(--white);
}

.category-image {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: var(--white);
}

.category-image img {
  max-height: 100%;
  object-fit: contain;
}

.category-content {
  padding: 24px;
  padding-top: 16px;
}

.category-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-content p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .concerns-categories {
    padding: 128px 0;
  }

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

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   改善事例
   ========================================= */
.testimonials {
  background-color: var(--muted-light);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 32px;
  background-color: var(--white);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.testimonial-age {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-concern {
  font-size: 14px;
  color: var(--muted);
}

.stars {
  color: #facc15;
  font-size: 18px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-period {
  font-size: 12px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .testimonials {
    padding: 128px 0;
  }

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

/* =========================================
   薬剤師紹介
   ========================================= */
.staff {
  padding: 80px 0;
}

.staff-grid {
  display: grid;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.staff-card {
  padding: 32px;
}

.staff-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.staff-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.staff-badge {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.staff-experience {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.staff-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .staff {
    padding: 128px 0;
  }

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

/* =========================================
   オンライン相談の流れ
   ========================================= */
.online-flow {
  padding: 80px 0;
}

.flow-grid {
  display: grid;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  position: relative;
}

.flow-card {
  padding: 32px;
  text-align: center;
}

.flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-light);
  margin: 0 auto 24px;
}

.flow-icon svg {
  stroke: var(--primary);
}

.flow-number {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.flow-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.flow-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.flow-arrow {
  display: none;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  font-size: 24px;
  font-weight: 700;
  color: var(--muted);
}

@media (min-width: 768px) {
  .online-flow {
    padding: 128px 0;
  }

  .flow-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .flow-arrow {
    display: block;
  }

  .flow-step:last-child .flow-arrow {
    display: none;
  }
}

/* =========================================
   よくある質問
   ========================================= */
.faq {
  background-color: rgba(104, 99, 88, 0.1);
  padding: 64px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

@media (min-width: 768px) {
  .faq {
    padding: 96px 0;
  }
}

/* =========================================
   CTAセクション
   ========================================= */
.cta {
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.cta-text {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-buttons .btn {
  min-width: 200px;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta {
    padding: 128px 0;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-buttons .btn {
    min-width: 180px;
  }
}

@media (min-width: 1024px) {
  .cta-buttons .btn {
    min-width: 200px;
  }
}

/* =========================================
   店舗情報
   ========================================= */
.store-info {
  background-color: var(--white);
  padding: 64px 0;
}

.store-grid {
  display: grid;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.store-card {
  padding: 32px;
}

.store-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.store-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.store-detail svg {
  flex-shrink: 0;
  stroke: var(--primary);
  margin-top: 4px;
}

.detail-label {
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.store-achievements {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.achievements-list {
  font-size: 14px;
  color: var(--muted);
}

.achievements-list li {
  margin-bottom: 8px;
}

.achievements-list li::before {
  content: "• ";
}

.store-image-card {
  padding: 0;
  overflow: hidden;
}

.store-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.store-map-card {
  padding: 0;
  overflow: hidden;
  min-height: 300px;
}

.store-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

@media (min-width: 768px) {
  .store-info {
    padding: 96px 0;
  }

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

/* =========================================
   フッター
   ========================================= */
.footer {
  background-color: var(--gray-100);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-about h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-nav h4,
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-nav ul,
.footer-contact ul {
  font-size: 14px;
  color: var(--muted);
}

.footer-nav li,
.footer-contact li {
  margin-bottom: 8px;
}

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

.footer-bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* =========================================
   モーダル
   ========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background-color: var(--white);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: var(--muted-light);
}

.modal-content {
  padding: 24px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  padding-right: 32px;
}

.modal-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.symptoms-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.symptom-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.symptom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.symptom-item.checked .symptom-checkbox {
  background-color: #4b674b;
  border-color: #4b674b;
}

.symptom-checkbox::after {
  content: "";
  display: none;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.symptom-item.checked .symptom-checkbox::after {
  display: block;
}

.symptom-text {
  font-size: 14px;
  line-height: 1.5;
}

.modal-message {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   薬店情報ページ (medicine.html)
   ========================================= */
.medicine-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.medicine-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.medicine-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medicine-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.medicine-hero h1 {
  position: relative;
  z-index: 10;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 2rem;
  text-align: center;
}

.medicine-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title-box {
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 50px 0 20px;
}

.section-title-box:first-of-type {
  margin-top: 0;
}

.medicine-content .subsection-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 30px 0 15px;
  padding-left: 10px;
  border-left: 4px solid var(--primary);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.info-table th,
.info-table td {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: none;
  border-right: none;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: var(--primary-light);
  width: 30%;
  font-weight: 500;
}

.info-table td.check {
  color: #c00;
}

.photo-placeholder {
  background: #f0f0f0;
  border: 2px dashed #ccc;
  padding: 40px;
  text-align: center;
  color: #888;
  margin-bottom: 30px;
}

.photo-placeholder img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .photo-placeholder img {
    max-width: 500px;
  }
}

.medicine-content .back-link {
  text-align: center;
  margin: 50px 0 30px;
}

.medicine-content p {
  line-height: 1.8;
  margin-bottom: 30px;
}

/* =========================================
   商品一覧ページ (items.html)
   ========================================= */
.items-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
}

.items-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.items-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.items-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.items-hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
}

.items-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

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

@media (min-width: 768px) {
  .items-hero {
    height: 400px;
  }

  .items-hero-title {
    font-size: 48px;
  }

  .items-hero-text {
    font-size: 18px;
  }
}

/* 商品グリッド */
.products-section {
  padding: 64px 0;
  background-color: var(--background);
}

.products-grid {
  display: grid;
  gap: 32px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--muted-light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.product-price .tax {
  font-size: 14px;
  font-weight: 400;
}

.product-btn {
  width: 100%;
}

.product-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .products-section {
    padding: 96px 0;
  }

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

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 商品CTAセクション */
.products-cta {
  background-color: var(--white);
  padding: 64px 0;
}

.products-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.products-cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.products-cta-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.products-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .products-cta {
    padding: 96px 0;
  }

  .products-cta-title {
    font-size: 32px;
  }

  .products-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* =========================================
   記事ページ (article/*.html)
   ========================================= */

/* 記事ヘッダー */
.article-header {
  background-color: #fafaf8;
  border-bottom: 1px solid var(--border);
  padding-top: 80px;
}

.article-header-inner {
  max-width: 672px;
  margin: 0 auto;
  padding: 32px 16px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.article-breadcrumb a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: var(--primary);
}

.article-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #4a4a3a;
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

@media (min-width: 768px) {
  .article-title {
    font-size: 28px;
  }
}

/* 記事本文 */
.article-content {
  max-width: 672px;
  margin: 0 auto;
  padding: 24px 16px;
}

.article-content p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
}

@media (min-width: 768px) {
  .article-content p {
    font-size: 16px;
  }
}

/* 30秒要約ボックス */
.article-summary {
  background-color: #f5f5f0;
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.article-summary h2 {
  font-size: 16px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-summary ul {
  list-style: none;
}

.article-summary li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.6;
  margin-bottom: 10px;
}

.article-summary li:last-child {
  margin-bottom: 0;
}

.article-summary .check {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* リード文 */
.article-lead {
  font-size: 16px !important;
  color: #4a4a3a;
  line-height: 1.8;
  padding-left: 12px;
  border-left: 3px solid var(--primary);
  margin-bottom: 24px !important;
}

@media (min-width: 768px) {
  .article-lead {
    font-size: 18px !important;
  }
}

/* この記事でわかることボックス */
.article-toc-box {
  background-color: #fafaf8;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.article-toc-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 12px;
}

.article-toc-box ul {
  list-style: none;
}

.article-toc-box li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.article-toc-box li:last-child {
  margin-bottom: 0;
}

.article-toc-box li::before {
  content: none;
}

.article-toc-box .arrow {
  color: var(--primary);
  flex-shrink: 0;
}

/* 記事セクション見出し */
.article-section {
  margin-bottom: 40px;
}

.article-section h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #4a4a3a;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 20px;
}

.article-section h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .article-section h2 {
    font-size: 24px;
  }

  .article-section h3 {
    font-size: 20px;
  }
}

/* 記事内画像 */
.article-image {
  width: 100%;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .article-image {
    height: 320px;
  }
}

/* ポイントリスト */
.article-points {
  margin-bottom: 24px;
}

.article-point {
  border-left: 3px solid var(--primary);
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.article-point:last-child {
  margin-bottom: 0;
}

.article-point h4 {
  font-size: 16px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.article-point p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 薬局カード - イチオシ */
.pharmacy-card-featured {
  background-color: #f5f5f0;
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-bottom: 24px;
}

.pharmacy-card-featured .badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.pharmacy-card-featured h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 4px;
}

.pharmacy-card-featured .subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.pharmacy-card-featured .description {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pharmacy-info-box {
  background-color: var(--white);
  padding: 16px;
  border-radius: var(--radius);
}

.pharmacy-info-box p {
  font-size: 12px;
  color: #4a4a3a;
  margin-bottom: 6px;
}

.pharmacy-info-box p:last-of-type {
  margin-bottom: 0;
}

.pharmacy-info-box strong {
  font-weight: 700;
}

.pharmacy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pharmacy-tag {
  background-color: #e8f0e6;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  color: #4a4a3a;
}

@media (min-width: 768px) {
  .pharmacy-card-featured h3 {
    font-size: 20px;
  }
}

/* 薬局カード - 通常 */
.pharmacy-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.pharmacy-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 4px;
}

.pharmacy-card .subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.pharmacy-card .description {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 12px;
}

.pharmacy-card .note {
  color: #c00;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.pharmacy-card .info {
  font-size: 12px;
  color: #4a4a3a;
  margin-bottom: 4px;
}

.pharmacy-card .info:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .pharmacy-card h3 {
    font-size: 20px;
  }
}

/* 悩み別テーブル */
.article-table-wrapper {
  overflow-x: auto;
  margin-bottom: 32px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.article-table th,
.article-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  font-size: 14px;
  color: #4a4a3a;
}

.article-table thead tr {
  background-color: #f5f5f0;
}

.article-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

/* アドバイスボックス */
.article-advice-box {
  background-color: #e8f0e6;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.article-advice-box h4 {
  font-size: 14px;
  font-weight: 600;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.article-advice-box p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 0;
}

/* 肌トラブルセクション */
.skincare-box {
  background-color: #f5f5f0;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.skincare-box p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 0;
}

.skincare-box strong {
  font-weight: 700;
}

/* 商品紹介ボックス */
.product-intro-box {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.product-intro-inner {
  display: block;
}

.product-intro-image {
  margin-bottom: 24px;
}

.product-intro-image img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.product-intro-content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 16px;
}

.product-intro-content > p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.product-intro-content ul {
  list-style: none;
}

.product-intro-content li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.product-intro-content li:last-child {
  margin-bottom: 0;
}

.product-intro-content .check {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .product-intro-box {
    padding: 32px;
  }

  .product-intro-inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }

  .product-intro-image {
    width: 33.333%;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .product-intro-image img {
    max-width: 100%;
  }

  .product-intro-content {
    flex: 1;
  }
}

/* 特徴グリッド */
.article-features-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.article-feature-card {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 24px;
  border-radius: var(--radius);
}

.article-feature-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #4a4a3a;
  margin-bottom: 12px;
}

.article-feature-card p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 相談の流れ */
.article-flow-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.article-flow-card {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 24px;
  border-radius: var(--radius);
}

.article-flow-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.article-flow-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.article-flow-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #4a4a3a;
  margin: 0;
}

.article-flow-card p {
  font-size: 12px;
  color: #4a4a3a;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 持ち物リスト */
.article-checklist {
  list-style: none;
  margin-bottom: 32px;
}

.article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.article-checklist li:last-child {
  margin-bottom: 0;
}

.article-checklist li::before {
  content: none;
}

.article-checklist .bullet {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

/* 注意ボックス */
.article-warning-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.article-warning-box h3 {
  font-size: 14px;
  font-weight: 600;
  color: #4a4a3a;
  margin-bottom: 12px;
}

.article-warning-box ul {
  list-style: none;
}

.article-warning-box li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #4a4a3a;
  line-height: 1.6;
  margin-bottom: 8px;
}

.article-warning-box li:last-child {
  margin-bottom: 0;
}

.article-warning-box li::before {
  content: none;
}

.article-warning-box .bullet {
  color: #ffc107;
  margin-top: 4px;
  flex-shrink: 0;
}

/* FAQ */
.article-faq-list {
  margin-bottom: 40px;
}

.article-faq-item {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.article-faq-item:last-child {
  margin-bottom: 0;
}

.article-faq-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: #4a4a3a;
  margin-bottom: 12px;
}

.article-faq-item p {
  font-size: 12px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 0;
}

/* まとめCTAボックス */
.article-cta-box {
  background-color: var(--primary);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 40px;
}

.article-cta-box h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.article-cta-box p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--white);
}

.article-cta-box .btn {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.article-cta-box .btn:hover {
  background-color: #f0f0f0;
}

@media (min-width: 768px) {
  .article-cta-box {
    padding: 40px;
  }

  .article-cta-box h3 {
    font-size: 24px;
  }
}

/* 参考情報 */
.article-references {
  margin-bottom: 40px;
}

.article-references h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 16px;
}

.article-references ul {
  list-style: none;
}

.article-references li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.article-references li:last-child {
  margin-bottom: 0;
}

.article-references .bullet {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

/* 免責事項 */
.article-disclaimer {
  background-color: #f5f5f0;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.article-disclaimer p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* 共感テキストボックス */
.article-empathy {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  background: linear-gradient(135deg, #faf8f5 0%, #f0f9f4 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.8;
}

/* メッセージハイライト */
.article-message-highlight {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  margin: 24px 0;
  border: 2px solid var(--primary);
}

.article-message-highlight p {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* 原因グリッド */
.article-causes-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.article-cause-item {
  background-color: #faf8f5;
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.article-cause-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.article-cause-item p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-causes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 体質タイプカード */
.article-type-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.article-type-card {
  background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}

.article-type-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--primary);
}

.article-type-card > p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 12px;
}

.article-type-card .symptoms {
  font-size: 13px;
  color: #666;
  padding: 12px;
  background: rgba(99, 174, 86, 0.1);
  border-radius: 6px;
  margin-bottom: 0;
}

.article-type-card .symptoms strong {
  font-weight: 700;
}

/* 薬局紹介ボックス */
.article-pharmacy-box {
  background: linear-gradient(135deg, #f8f6f3 0%, #fff 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
}

.article-pharmacy-box h3 {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.article-pharmacy-box .certification {
  text-align: center;
  margin-bottom: 16px;
}

.article-pharmacy-box .certification-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4a574 0%, #c49660 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 25px;
}

.article-pharmacy-box .tagline {
  text-align: center;
  font-size: 15px;
  color: #4a4a3a;
  margin-bottom: 24px;
}

.article-pharmacy-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.article-pharmacy-feature {
  text-align: center;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
}

.article-pharmacy-feature .icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.article-pharmacy-feature h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.article-pharmacy-feature p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

.article-pharmacy-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.article-pharmacy-info p {
  font-size: 14px;
  color: #4a4a3a;
  margin-bottom: 6px;
}

.article-pharmacy-info .address {
  font-weight: 700;
}

.article-pharmacy-info .note {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .article-pharmacy-box {
    padding: 24px 16px;
  }

  .article-pharmacy-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* 信頼性セクション */
.article-trust-section {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f3f0 100%);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.article-trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.article-trust-item {
  text-align: center;
  padding: 16px;
}

.article-trust-item .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.article-trust-item .unit {
  font-size: 16px;
  color: var(--primary);
}

.article-trust-item .label {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .article-trust-section {
    padding: 24px 16px;
  }

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

/* 理由グリッド */
.article-reasons-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.article-reason-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius);
}

.article-reason-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.article-reason-item p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 記事内リスト */
.article-content .article-section ul {
  list-style: none;
  margin-bottom: 20px;
}

.article-content .article-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.6;
}

.article-content .article-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* 記事内h3 */
.article-content .article-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: #4a4a3a;
  margin-top: 28px;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--primary);
}

/* インフォボックス */
.article-info-box {
  background-color: #f0f9f4;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.article-info-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.article-info-box ul {
  margin-bottom: 12px;
}

.article-info-box > p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 関連記事 */
.article-related {
  margin-bottom: 40px;
}

.article-related h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 16px;
}

.article-related-cards {
  display: grid;
  gap: 16px;
}

.article-related-card {
  display: block;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-related-card:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.article-related-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-related-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   特定商取引法ページ (tradelaw.html)
   ========================================= */

.tradelaw-page {
  background-color: var(--white);
  padding-top: 64px;
}

/* ページヘッダー */
.tradelaw-header {
  background-color: #fafaf8;
  border-bottom: 1px solid var(--border);
}

.tradelaw-header-inner {
  max-width: 768px;
  padding: 32px 16px;
}

.tradelaw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.tradelaw-breadcrumb a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.tradelaw-breadcrumb a:hover {
  color: var(--primary);
}

.tradelaw-title {
  font-size: 24px;
  font-weight: 700;
  color: #4a4a3a;
  line-height: 1.5;
  margin-bottom: 8px;
}

.tradelaw-subtitle {
  font-size: 14px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .tradelaw-title {
    font-size: 30px;
  }
}

/* メインコンテンツ */
.tradelaw-content {
  max-width: 768px;
  padding: 32px 16px 64px;
}

/* セクション */
.tradelaw-section {
  margin-bottom: 48px;
}

.tradelaw-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #4a4a3a;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .tradelaw-section-title {
    font-size: 24px;
  }
}

/* テーブル */
.tradelaw-table-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tradelaw-table {
  width: 100%;
}

.tradelaw-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.tradelaw-row:last-child {
  border-bottom: none;
}

.tradelaw-row.alt {
  background-color: #fafaf8;
}

.tradelaw-label {
  font-size: 14px;
  font-weight: 700;
  color: #4a4a3a;
}

.tradelaw-value {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .tradelaw-row {
    grid-template-columns: 200px 1fr;
    gap: 16px;
  }
}

/* リンク */
.tradelaw-link {
  color: var(--primary);
  transition: opacity 0.2s ease;
}

.tradelaw-link:hover {
  text-decoration: underline;
}

/* ボックス */
.tradelaw-box {
  background-color: #f5f5f0;
  padding: 24px;
  border-radius: var(--radius);
}

.tradelaw-box-simple {
  background-color: #f5f5f0;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  color: #4a4a3a;
}

/* リスト */
.tradelaw-list {
  list-style: none;
}

.tradelaw-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 12px;
}

.tradelaw-list li:last-child {
  margin-bottom: 0;
}

.tradelaw-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

/* サブセクション */
.tradelaw-subsection {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.tradelaw-subsection:last-child {
  margin-bottom: 0;
}

.tradelaw-subsection-title {
  font-size: 16px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 12px;
}

.tradelaw-subsection-block {
  margin-bottom: 40px;
}

.tradelaw-subsection-block:last-child {
  margin-bottom: 0;
}

.tradelaw-h3 {
  font-size: 18px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 16px;
}

/* テキスト */
.tradelaw-text {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* 注意ボックス */
.tradelaw-notice {
  background-color: #fff9f5;
  border: 1px solid #f2b1a3;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  color: #4a4a3a;
  margin-top: 24px;
}

/* リスク区分カード */
.tradelaw-risk-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tradelaw-risk-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.tradelaw-risk-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.tradelaw-risk-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.tradelaw-risk-badge.gray {
  background-color: #686358;
}

.tradelaw-risk-badge.pink {
  background-color: #f2b1a3;
}

.tradelaw-risk-badge.green {
  background-color: var(--primary);
}

.tradelaw-risk-badge.lightgreen {
  background-color: #9ab582;
}

.tradelaw-risk-note {
  font-size: 12px;
  color: var(--muted);
}

.tradelaw-risk-card p {
  font-size: 14px;
  color: #4a4a3a;
  margin-bottom: 4px;
}

.tradelaw-risk-card p:last-child {
  margin-bottom: 0;
}

/* 警告ボックス */
.tradelaw-warning-box {
  background-color: #fff9f5;
  border-left: 4px solid #f2b1a3;
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
}

.tradelaw-warning-icon {
  flex-shrink: 0;
  color: #f2b1a3;
}

.tradelaw-warning-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.tradelaw-warning-box p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 0;
}

/* 情報ボックス */
.tradelaw-info-box {
  padding: 24px;
  border-radius: var(--radius);
}

.tradelaw-info-box.green {
  background-color: #e8f0e6;
}

.tradelaw-info-box > p {
  font-size: 14px;
  color: #4a4a3a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.tradelaw-info-inner {
  background-color: var(--white);
  padding: 16px;
  border-radius: var(--radius);
}

.tradelaw-info-inner p {
  font-size: 14px;
  color: #4a4a3a;
  margin-bottom: 8px;
}

.tradelaw-info-inner p:last-child {
  margin-bottom: 0;
}

/* 更新日 */
.tradelaw-updated {
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  margin-top: 32px;
}

/* =========================================
   お問い合わせページ (contact.html)
   ========================================= */

/* コンタクト情報セクション */
.contact-info-section {
  background-color: var(--white);
  padding: 48px 0;
}

.contact-info-section .container,
.contact-form-section .container {
  max-width: 720px;
}

.contact-intro {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* コンタクトカード */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: #f8f9f7;
  border: 1px solid #e0e5dd;
  border-radius: var(--radius);
}

.contact-card-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.contact-card-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #4a5e3f;
  margin-bottom: 8px;
}

.contact-card-content p {
  font-size: 14px;
  color: #6b7b5e;
  margin-bottom: 0;
}

.contact-phone {
  font-size: 18px !important;
  font-weight: 700;
  color: #4a5e3f !important;
}

.contact-note {
  font-size: 12px !important;
  color: #8b9884 !important;
}

/* お問い合わせ注意事項 */
.contact-notice {
  background-color: #fff8f5;
  border: 1px solid #f2b1a3;
  border-radius: var(--radius);
  padding: 20px;
}

.contact-notice p {
  font-size: 14px;
  color: #6b7b5e;
  line-height: 1.8;
  margin-bottom: 0;
}

.contact-notice strong {
  color: #4a5e3f;
}

/* フォームセクション */
.contact-form-section {
  background-color: var(--white);
  padding: 0 0 64px;
}

.contact-form-wrapper {
  background-color: var(--white);
  border: 1px solid #e0e5dd;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-form-iframe {
  width: 100%;
  height: 800px;
  border: none;
}

@media (min-width: 768px) {
  .contact-form-iframe {
    height: 900px;
  }
}

/* 店舗情報 */
.contact-store-info {
  margin-top: 24px;
  padding: 20px;
  background-color: #f8f9f7;
  border: 1px solid #e0e5dd;
  border-radius: var(--radius);
}

.contact-store-info h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4a5e3f;
  margin-bottom: 12px;
}

.contact-store-info h3 svg {
  color: var(--primary);
}

.store-address {
  font-size: 14px;
  color: #6b7b5e;
  line-height: 1.8;
  margin-bottom: 12px;
}

.store-notes {
  font-size: 12px;
  color: #8b9884;
  line-height: 1.8;
  margin-bottom: 0;
}

/* フッターお問い合わせボタン */
.footer-contact-btn {
  margin-top: 16px;
  display: inline-block;
}

/* =========================================
   LINE予約ページ (line.html)
   ========================================= */

.line-page {
  background-color: var(--white);
}

/* ヘッダーを常に白背景に */
.line-page .header {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.line-page .header .logo-text {
  color: var(--primary);
}

.line-page .header .logo-sub {
  color: var(--muted);
}

.line-page .header .nav-desktop a {
  color: var(--foreground);
}

.line-page .header .nav-desktop a:hover {
  color: var(--primary);
}

.line-page .header .mobile-menu-btn span {
  background-color: var(--foreground);
}

/* ヒーローセクション */
.line-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.line-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.line-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.line-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.line-hero-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .line-hero {
    height: 350px;
  }

  .line-hero-title {
    font-size: 36px;
  }
}

/* 説明テキスト */
.line-intro-text {
  font-size: 15px;
  color: #6b7b5e;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .line-intro-text {
    font-size: 16px;
    margin-bottom: 48px;
  }
}

/* ステップセクション */
.line-steps {
  padding: 40px 0 64px;
  background-color: var(--white);
}

.line-steps-container {
  max-width: 640px;
  margin: 0 auto;
}

/* ステップカード */
.line-step {
  position: relative;
  padding-bottom: 40px;
}

.line-step-last {
  padding-bottom: 0;
}

/* 縦線（コネクター） */
.line-step-connector {
  position: absolute;
  left: 24px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background-color: #d4e4d0;
}

.line-step-last .line-step-connector {
  display: none;
}

/* ステップヘッダー */
.line-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.line-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(99, 174, 86, 0.3);
}

.line-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #4a5e3f;
}

@media (min-width: 768px) {
  .line-step-title {
    font-size: 20px;
  }
}

/* ステップコンテンツ */
.line-step-content {
  margin-left: 64px;
  background-color: #f8f9f7;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e0e5dd;
}

.line-step-text {
  font-size: 14px;
  color: #6b7b5e;
  line-height: 1.8;
  margin-bottom: 0;
}

.line-step-text strong {
  color: #4a5e3f;
  font-weight: 600;
}

.line-step-note {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #e07b6b;
}

/* QRコードセクション */
.line-qr-section {
  text-align: center;
  margin-bottom: 24px;
}

.line-qr-box {
  display: inline-block;
  background-color: var(--white);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e0e5dd;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.line-qr-image {
  width: 192px;
  height: 192px;
  border-radius: 8px;
}

.line-qr-text {
  font-size: 13px;
  color: #6b7b5e;
  margin-bottom: 0;
}

/* 友だち追加ボタン */
.line-add-section {
  text-align: center;
}

.line-add-text {
  font-size: 13px;
  color: #6b7b5e;
  margin-bottom: 12px;
}

.line-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #06C755;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.line-add-btn:hover {
  background-color: #05b34c;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.4);
}

/* 画像プレースホルダー */
.line-image-box {
  margin-top: 16px;
  background-color: var(--white);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e0e5dd;
}

.line-image-placeholder {
  width: 100%;
  height: 160px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-image-placeholder p {
  font-size: 13px;
  color: #999;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* フッターセクション */
.line-footer-section {
  padding: 40px 0 48px;
  background-color: #f8f9f7;
}

.line-note-box {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e0e5dd;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.line-note-text {
  font-size: 14px;
  color: #6b7b5e;
  line-height: 1.8;
  margin-bottom: 16px;
}

.line-phone-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background-color: var(--primary);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(99, 174, 86, 0.3);
}

.line-phone-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 174, 86, 0.4);
}

.line-phone-btn svg {
  stroke: var(--white);
  flex-shrink: 0;
}

.line-phone-btn div {
  display: flex;
  flex-direction: column;
}

.line-phone-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.line-phone-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

/* トップページへ戻る */
.line-back-link {
  text-align: center;
}

.line-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.line-back-link a:hover {
  color: var(--primary-dark);
}

.line-back-link svg {
  stroke: currentColor;
}

/* LINEチャット相談セクション */
.line-chat-section {
  padding: 48px 0 64px;
  background-color: var(--white);
  border-top: 1px solid #e0e5dd;
}

.line-chat-title {
  font-size: 22px;
  font-weight: 700;
  color: #4a5e3f;
  text-align: center;
  margin-bottom: 16px;
}

.line-chat-lead {
  font-size: 15px;
  color: #6b7b5e;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* 相談方法カード */
.line-chat-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.line-chat-card {
  background-color: #f8f9f7;
  border-radius: 12px;
  border: 1px solid #e0e5dd;
  overflow: hidden;
}

.line-chat-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e0e5dd;
  background-color: var(--white);
}

.line-chat-card-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary);
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 8px;
}

.line-chat-card-badge-secondary {
  background-color: #7ba3d4;
}

.line-chat-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #4a5e3f;
  margin: 0;
}

.line-chat-card-body {
  padding: 20px;
}

.line-chat-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.line-chat-card-list li {
  font-size: 14px;
  color: #6b7b5e;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

.line-chat-card-list li:last-child {
  margin-bottom: 0;
}

.line-chat-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.line-chat-card-list li strong {
  color: #4a5e3f;
  font-weight: 600;
}

/* 補足メッセージ */
.line-chat-note {
  background-color: #fdf9f3;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e8dcc8;
  margin-bottom: 32px;
}

.line-chat-note p {
  font-size: 14px;
  color: #6b7b5e;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* アクションエリア */
.line-chat-action {
  text-align: center;
}

.line-chat-action .line-add-btn {
  margin-bottom: 16px;
}

.line-chat-back-link {
  display: inline-block;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.line-chat-back-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .line-chat-section {
    padding: 64px 0 80px;
  }

  .line-chat-title {
    font-size: 26px;
  }

  .line-chat-lead {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .line-chat-cards {
    flex-direction: row;
    gap: 24px;
  }

  .line-chat-card {
    flex: 1;
  }

  .line-chat-card-title {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .line-steps {
    padding: 64px 0 96px;
  }

  .line-footer-section {
    padding: 48px 0 64px;
  }
}
