/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2025 | 08:33:51 */
/* ベースリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 特定のページでh2スタイルをリセット */
.page-id-20781 h2,
.page-id-20781 .entry-content h2,
.page-id-20781 .post-content h2 {
    /* テーマのh2スタイルを全てリセット */
    all: unset !important;
    display: block !important;
    
    /* または個別にリセット */
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: inherit !important;
}

/* カスタムプロパティ - お茶テーマカラー */
:root {
  --tea-green: #2d5016;
  --light-tea: #8bc34a;
  --pale-green: #dcedc8;
  --fresh-green: #689f38;
  --white: #ffffff;
  --cream: #fafaf8;
  --dark-text: #1a1a1a;
  --gray-text: #616161;
  --light-gray: #f5f5f5;
  --accent-orange: #ff6f00;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ベーススタイル */
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-text);
  background-color: var(--white);
  font-feature-settings: "palt";
}

.tea-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクション共通 */
section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.title-en {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--fresh-green);
  font-weight: 600;
  margin-bottom: 10px;
}

.title-ja {
  display: block;
  font-size: 32px;
  font-weight: 500;
  color: var(--dark-text);
  letter-spacing: 2px;
}

/* ヒーローセクション */
.hero-section {
  padding: 60px 0 80px;
  background: linear-gradient(to bottom, #e6f4e0 0%, #c8e6c9 60%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.tea-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(139, 195, 74, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 195, 74, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(139, 195, 74, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.campaign-label {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 111, 0, 0.3);
}

.hero-title {
  margin-bottom: 24px;
}

.title-main {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--tea-green);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.title-sub {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.title-feature {
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: var(--fresh-green);
  letter-spacing: 1px;
}

.hero-description {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-points {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--tea-green);
}

.hero-cta {
  margin-top: 32px;
}

.hero-visual {
  position: relative;
}

.product-display {
  position: relative;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.product-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-medium));
  object-fit: contain;
}

.tea-leaves {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><path d="M20,40 Q40,20 60,35 T100,30 Q120,10 140,25 T180,20" stroke="%238bc34a" stroke-width="2" fill="none" opacity="0.3"/></svg>')
    no-repeat center;
}

.price-badge {
  position: absolute;
  top: 10px;
  right: -10px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-medium);
  transform: rotate(5deg);
}

.badge-label {
  display: block;
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.badge-discount {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-orange);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fresh-green);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.cta-main:hover {
  background: var(--tea-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.cta-arrow {
  font-size: 24px;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.phone-icon {
  font-size: 24px;
}

.phone-contact a {
  color: var(--tea-green);
  text-decoration: none;
  font-weight: 700;
}

/* 共感セクション */
.empathy-section {
  background: var(--light-gray);
}

.worries-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.worry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  padding: 48px 32px 40px 32px;
  position: relative;
  min-height: 340px;
}

.worry-illust {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
  object-fit: contain;
}

.worry-number {
  font-size: 48px;
  font-weight: 200;
  color: var(--light-tea);
  line-height: 1;
}

.worry-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--tea-green);
}

.worry-content p {
  font-size: 20px;
  color: var(--gray-text);
  line-height: 1.8;
}

.risk-explanation {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-light);
}

.risk-icon {
  font-size: 60px;
  flex-shrink: 0;
}

.risk-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--tea-green);
}

.risk-content p {
  font-size: 20px;
  color: var(--gray-text);
  line-height: 1.9;
}

/* 解決策セクション */
.solution-section {
  background: var(--white);
}

.solution-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.solution-image {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.solution-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-light));
  margin-left: auto;
  margin-right: auto;
}

.solution-text {
  text-align: left;
}

.feature-badges {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 18px;
}

.feature-badges .badge {
  background: var(--pale-green);
  color: var(--tea-green);
  padding: 6px 18px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.solution-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--tea-green);
  letter-spacing: 1px;
}

.lead {
  font-size: 20px;
  color: var(--gray-text);
  margin-bottom: 30px;
  line-height: 1.9;
}

.feature-points {
  list-style: none;
}

.feature-points li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--dark-text);
}

.feature-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fresh-green);
  font-weight: bold;
  font-size: 20px;
}

.comparison {
  background: var(--cream);
  padding: 40px;
  border-radius: 20px;
}

.comparison-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--tea-green);
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
}

.card h4 {
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.card.traditional h4 {
  color: var(--gray-text);
}

.card.eversmile h4 {
  color: var(--fresh-green);
}

.cons-list,
.pros-list {
  list-style: none;
}

.cons-list li,
.pros-list li {
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  font-size: 18px;
}

.cons-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #e57373;
  font-weight: bold;
  font-size: 20px;
}

.pros-list li::before {
  content: "◎";
  position: absolute;
  left: 0;
  color: var(--fresh-green);
  font-weight: bold;
  font-size: 20px;
}

/* 利点セクション */
.benefits-section {
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--tea-green);
}

.benefit-card p {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.9;
}

.usage-scenarios {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
}

.usage-scenarios h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--tea-green);
}

.scenario-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.scenario-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: var(--pale-green);
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.scenario-item:hover {
  background: var(--light-tea);
  color: var(--white);
}

.scenario-icon {
  font-size: 28px;
}

.scenario-text {
  font-size: 18px;
  font-weight: 500;
}

/* 信頼性セクション */
.trust-section {
  background: var(--white);
}

.trust-content {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials {
  margin-bottom: 60px;
}

.testimonials h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--tea-green);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--cream);
  padding: 40px;
  border-radius: 16px;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: var(--light-tea);
  opacity: 0.3;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--dark-text);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  text-align: right;
  font-size: 14px;
  color: var(--gray-text);
}

.quality-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.quality-item {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

.quality-item h4 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--tea-green);
}

.quality-item p {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.9;
}

/* 商品セクション */
.product-section {
  background: var(--light-gray);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
}

.product-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.product-visual img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto 18px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 18px;
}

.product-details {
  padding-left: 24px;
}

.product-features .feature {
  background: var(--pale-green);
  color: var(--tea-green);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.product-details h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--tea-green);
}

.spec-table {
  margin-bottom: 40px;
}

.spec-table h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.spec-table table {
  width: 100%;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
}

.spec-table th {
  background: var(--pale-green);
  padding: 12px 20px;
  text-align: left;
  font-weight: 500;
  color: var(--tea-green);
}

.spec-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--white);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.product-info {
  display: grid;
  gap: 16px;
}

.info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: var(--tea-green);
}

.info-value {
  color: var(--gray-text);
}

/* オファーセクション */
.offer-section {
  background: var(--white);
}

.offer-header {
  text-align: center;
  margin-bottom: 60px;
}

.offer-period {
  font-size: 20px;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 12px;
}

.offer-message {
  font-size: 24px;
  color: var(--gray-text);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.offer-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
  position: relative;
  /* 余白を詰めるためにmax-widthを指定してもOK */
  /* max-width: 320px; */
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.offer-card.recommended {
  border: 3px solid var(--fresh-green);
}

.recommend-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-orange);
  color: var(--white);
  padding: 10px 30px;
  font-weight: 600;
  font-size: 14px;
  transform: rotate(45deg) translate(25%, -50%);
  transform-origin: center;
}

.offer-card .offer-content {
  padding: 20px;
}

.offer-card .product-visual {
  margin-bottom: 18px;
}

.price-display {
  text-align: center;
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}

.price-row .original {
  font-size: 16px;
  color: var(--gray-text);
  text-decoration: line-through;
  margin: 0;
}

.price-row .special {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-orange);
  margin: 0;
}

.price-row .tax {
  font-size: 16px;
  color: var(--gray-text);
  font-weight: 400;
  margin-left: 2px;
}

.offer-content h3 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--tea-green);
}

.quantity {
  position: absolute;
  bottom: 10px;
  right: 50%;
  transform: translateX(50%);
  background: var(--tea-green);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
}

.original {
  font-size: 16px;
  color: var(--gray-text);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.special {
  margin-bottom: 12px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-orange);
}

.tax {
  font-size: 16px;
  color: var(--gray-text);
}

.per-item {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.savings {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
}

.purchase-btn {
  display: block;
  width: 100%;
  padding: 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.purchase-btn.primary {
  background: var(--fresh-green);
  color: var(--white);
}

.purchase-btn.primary:hover {
  background: var(--tea-green);
}

.purchase-btn.secondary {
  background: var(--white);
  color: var(--fresh-green);
  border: 2px solid var(--fresh-green);
}

.purchase-btn.secondary:hover {
  background: var(--pale-green);
}

.shipping-note {
  text-align: center;
  padding: 20px;
  background: var(--pale-green);
  border-radius: 12px;
  margin-bottom: 30px;
}

.shipping-note p {
  font-size: 18px;
  color: var(--tea-green);
  font-weight: 500;
}

/* CTAセクション */
.cta-section {
  background: var(--cream);
  padding: 80px 0;
}

.cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-wrapper h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--tea-green);
}

.cta-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.online-cta,
.phone-cta {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
}

.online-cta h3,
.phone-cta h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--tea-green);
}

.online-cta p,
.phone-cta p {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 30px;
}

.cta-buttons {
  display: grid;
  gap: 16px;
}

.order-btn {
  display: block;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.order-btn.large {
  background: var(--fresh-green);
  color: var(--white);
  font-size: 18px;
}

.order-btn.large:hover {
  background: var(--tea-green);
  transform: translateY(-2px);
}

.order-btn.secondary {
  background: var(--white);
  color: var(--fresh-green);
  border: 2px solid var(--fresh-green);
}

.order-btn.secondary:hover {
  background: var(--pale-green);
}

.price-info {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

.phone-display {
  background: var(--pale-green);
  padding: 30px;
  border-radius: 12px;
}

.phone-label {
  display: block;
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.phone-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--tea-green);
  text-decoration: none;
  margin-bottom: 8px;
}

.phone-hours {
  display: block;
  font-size: 14px;
  color: var(--gray-text);
}

.cta-note {
  font-size: 14px;
  color: var(--gray-text);
}

/* 補足セクション */
.supplement-section {
  background: var(--white);
  padding: 80px 0;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 16px;
}

.info-card h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--tea-green);
}

.info-card p {
  font-size: 20px;
  color: var(--gray-text);
  line-height: 1.9;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.9;
}

.info-card li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--fresh-green);
}

/* フッター */
.footer {
  background: var(--tea-green);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-info h4 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}

.company-info p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.contact {
  margin-top: 12px;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .campaign-label {
    font-size: 14px;
    padding: 8px 24px;
  }

  .product-display {
    max-width: 250px;
  }

  .title-ja {
    font-size: 28px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .title-main {
    font-size: 28px;
  }

  .title-sub {
    font-size: 16px;
  }

  .title-feature {
    font-size: 24px;
  }

  .hero-cta {
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .cta-main {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .worry-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .worry-number {
    font-size: 36px;
  }

  .risk-explanation {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .solution-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solution-image {
    max-width: 250px;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .scenario-list {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .quality-info {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .cta-methods {
    grid-template-columns: 1fr;
  }

  .phone-number {
    font-size: 32px;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .solution-text {
    text-align: left;
  }

  .feature-badges {
    justify-content: flex-start;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .title-main {
    font-size: 28px;
  }

  .title-feature {
    font-size: 24px;
  }

  .hero-points {
    flex-direction: column;
    gap: 12px;
  }

  .cta-main {
    font-size: 18px;
    padding: 16px 32px;
  }

  .phone-contact {
    font-size: 20px;
  }

  .price {
    font-size: 28px;
  }
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.worry-item,
.benefit-card,
.testimonial,
.offer-card {
  animation: fadeIn 0.6s ease-out;
}

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* フォーカス状態 */
a:focus,
button:focus {
  outline: 3px solid var(--fresh-green);
  outline-offset: 3px;
}

/* 印刷用スタイル */
@media print {
  .hero-section,
  .cta-section,
  .footer {
    display: none;
  }

  section {
    padding: 30px 0;
  }

  body {
    font-size: 12pt;
  }
}

.benefits-section .section-title .title-ja {
  font-size: 26px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.benefits-section .title-ja {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card .product-visual {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.offer-card .product-visual img {
  display: inline-block;
  width: 100%;
  max-width: 100px;
  height: auto;
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-section .title-ja {
  font-weight: 700;
}

.solution-section .title-ja {
  font-weight: 700;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  margin-bottom: 32px;
  box-shadow: var(--shadow-light);
  border-radius: 12px;
  overflow: hidden;
}
.comparison-table th {
  background: var(--tea-green);
  color: var(--white);
  font-size: 1.1em;
  font-weight: 700;
  padding: 16px;
  text-align: center;
}
.comparison-table th:nth-child(2) {
  background: var(--pale-green);
  color: var(--tea-green);
}
.comparison-table td {
  padding: 16px;
  color: var(--dark-text);
  font-weight: 500;
  text-align: center;
}
.comparison-table tr:nth-child(even) td {
  background: var(--light-gray);
}
.comparison-table tr:nth-child(odd) td {
  background: var(--white);
}
.comparison-table td:first-child {
  font-weight: 700;
  text-align: left;
}

@media (max-width: 600px) {
  .worries-container {
    grid-template-columns: 1fr;
  }
  .hero-points {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  .phone-number {
    font-size: 18px;
  }
}

/* シンプルな横並び比較用 */
.simple-comparison-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin: 40px 0;
}
.simple-comparison-row > div {
  flex: 1 1 0;
  min-width: 180px;
}
.simple-comparison-row img {
  display: block;
  margin: 0 auto;
}
