/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== SECTION ILLUSTRATIONS ===== */
.section-illust {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 24px;
}

.section-illust--right {
  float: right;
  margin: 0 0 16px 24px;
}

@media screen and (max-width: 768px) {
  .section-illust {
    width: 120px;
    margin: 0 auto 16px;
  }
  .section-illust--right {
    float: none;
    margin: 0 auto 16px;
  }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo-icon {
  font-size: 20px;
  color: #E8913A;
}

.header__logo-text {
  font-size: 24px;
  font-weight: 900;
  color: #E8913A;
  letter-spacing: 2px;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: #E8913A;
  border-bottom-color: #E8913A;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 145, 58, 0.92), rgba(210, 120, 40, 0.88));
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px 24px;
  text-align: center;
}

.hero__content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 32px 32px;
  margin-bottom: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.hero__worker-img {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 400px;
  height: auto;
  z-index: 1;
  opacity: 0.9;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.hero__content > *:not(.hero__worker-img):not(.hero__ambassador) {
  position: relative;
  z-index: 2;
}

.hero__ambassador {
  display: block;
  font-size: 6px;
  font-weight: 700;
  color: #fff;
  text-align: right;
  padding: 0 8px 0 0;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.hero__sub-catch {
  font-size: 22px;
  font-weight: 900;
  color: #333;
  margin-bottom: 8px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero__zero {
  font-size: 56px;
  font-weight: 900;
  color: #E8913A;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.9);
}

.hero__sub-catch sup {
  font-size: 11px;
  color: #999;
}

.hero__brand {
  font-size: 52px;
  font-weight: 900;
  color: #E8913A;
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 0;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.9);
}

.hero__brand-particle {
  font-size: 32px;
  margin-left: 4px;
}

.hero__products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.hero__product-box {
  font-size: 40px;
  font-weight: 900;
  color: #333;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 18px;
  border-bottom: 4px solid #E8913A;
  display: inline-block;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.hero__product-and {
  font-size: 24px;
  font-weight: 700;
  color: #666;
}

/* Badges */
.hero__badges {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.hero__badge {
  width: 130px;
  padding: 12px 10px;
  border-radius: 12px;
  border: 2px solid #E8913A;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__badge-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #E8913A;
  padding: 2px 12px;
  border-radius: 20px;
  margin-bottom: 4px;
}

.hero__badge-number {
  font-size: 28px;
  font-weight: 900;
  color: #E8913A;
  line-height: 1.1;
}

.hero__badge-number small {
  font-size: 14px;
  font-weight: 700;
}

.hero__badge-number sup {
  font-size: 10px;
  color: #999;
}

.hero__badge-sub {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

/* Hero Sub Info (notes + phone below CTA) */
.hero-sub {
  background: #f9f9f9;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}

.hero-sub__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-sub__phone {
  flex-shrink: 0;
  text-align: center;
}

.hero-sub__phone-number {
  font-size: 22px;
  font-weight: 900;
  color: #E8913A;
  letter-spacing: 1px;
  display: block;
}

.hero-sub__phone-hours {
  font-size: 11px;
  color: #999;
}

.hero-sub__notes p {
  font-size: 9px;
  color: #999;
  line-height: 1.3;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .hero-sub__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* CTA inside hero */
.hero__cta {
  border-radius: 10px;
  padding: 12px 16px;
}

.hero__cta-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #E8913A;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.hero__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero__cta-buttons .cta-banner__btn {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 50px;
}

.hero__cta-buttons .cta-banner__btn small {
  font-size: 10px;
  margin-bottom: 2px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #E8913A, #e07028);
  padding: 48px 24px;
  border-radius: 16px 16px 0 0;
  max-width: 1200px;
  margin: 0 auto;
}

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

.cta-banner__tag {
  display: inline-block;
  background: #FFD700;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.cta-banner__title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner__title strong {
  font-weight: 900;
  font-size: 32px;
}

.cta-banner__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-banner__btn small {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cta-banner__btn--primary {
  background: linear-gradient(135deg, #F4511E, #E64A19);
  color: #fff;
  box-shadow: 0 4px 15px rgba(244, 81, 30, 0.4);
}

.cta-banner__btn--line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media screen and (max-width: 768px) {
  /* Header */
  .header__inner {
    height: 56px;
    padding: 0 16px;
  }

  .header__logo-text {
    font-size: 20px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__inner {
    padding: 20px 12px 16px;
  }

  .hero__content {
    padding: 16px 10px;
  }

  .hero__worker-img {
    width: 160px;
    right: -5px;
  }

  .hero__sub-catch {
    font-size: 12px;
  }

  .hero__zero {
    font-size: 20px;
  }

  .hero__brand {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero__brand-particle {
    font-size: 18px;
  }

  .hero__phone-number {
    font-size: 24px;
  }

  .hero__cta-tag {
    font-size: 11px;
    padding: 3px 12px;
  }

  .hero__cta-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .hero__cta-buttons .cta-banner__btn {
    width: auto;
    max-width: none;
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero__cta-buttons .cta-banner__btn small {
    font-size: 9px;
  }

  .hero__products {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero__product-box {
    font-size: 20px;
    padding: 2px 8px;
    border-bottom-width: 2px;
  }

  .hero__product-and {
    font-size: 14px;
  }

  .hero__products {
    margin-bottom: 10px;
    gap: 8px;
  }

  /* Badges */
  .hero__badges {
    gap: 6px;
  }

  .hero__badge {
    width: 85px;
    border-width: 2px;
    border-radius: 12px;
    padding: 8px 4px;
  }

  .hero__badge-label {
    font-size: 8px;
    padding: 1px 6px;
  }

  .hero__badge-number {
    font-size: 18px;
  }

  .hero__badge-number small {
    font-size: 9px;
  }

  .hero__badge-sub {
    font-size: 9px;
  }

  /* Notes */
  .hero__notes {
    margin-top: 12px;
    padding: 0 8px;
  }

  .hero__notes p {
    font-size: 9px;
  }

  /* Phone */
  .phone {
    padding: 24px 16px 16px;
  }

  .phone__number {
    font-size: 28px;
  }

  .phone__hours {
    font-size: 11px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 32px 12px;
    border-radius: 12px 12px 0 0;
  }

  .cta-banner__tag {
    font-size: 11px;
    padding: 4px 12px;
  }

  .cta-banner__title {
    font-size: 18px;
  }

  .cta-banner__title strong {
    font-size: 22px;
  }

  .cta-banner__desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-banner__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-banner__btn {
    width: 100%;
    max-width: 300px;
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* ===== ZERO COST SECTION ===== */
.zero-cost {
  background: linear-gradient(170deg, #FFF9F0 0%, #FFE8CC 100%);
  padding: 80px 24px;
}

.zero-cost__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.zero-cost__tag {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.zero-cost__title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
}

.zero-cost__title strong {
  color: #E8913A;
  font-size: 48px;
  font-weight: 900;
}

.zero-cost__illust {
  display: block;
  width: 180px;
  height: auto;
  margin: 16px auto 0;
}

.zero-cost__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #E8913A;
  margin-bottom: 40px;
}

.zero-cost__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zero-cost__card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.zero-cost__card:hover {
  transform: translateY(-4px);
}

.zero-cost__card-illust {
  width: 100px;
  height: auto;
  margin-bottom: 12px;
}

.zero-cost__card-title {
  font-size: 18px;
  font-weight: 900;
  color: #333;
  margin-bottom: 8px;
}

.zero-cost__card-number {
  font-size: 56px;
  font-weight: 900;
  color: #E8913A;
  line-height: 1.2;
  margin-bottom: 12px;
}

.zero-cost__card-number small {
  font-size: 20px;
  font-weight: 700;
}

.zero-cost__card-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ===== SUBSIDY SECTION ===== */
.subsidy {
  background: #f5f5f5;
  padding: 60px 24px;
  position: relative;
}

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

.subsidy__tag {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.subsidy__title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  line-height: 1.1;
  margin-bottom: 16px;
}

.subsidy__title strong {
  display: block;
  color: #E8913A;
  font-weight: 900;
  font-size: 64px;
  line-height: 0.95;
  margin: 0;
}

.subsidy__title strong span {
  font-size: 36px;
}

.subsidy__card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.subsidy__card-lead {
  font-size: 20px;
  font-weight: 900;
  color: #E8913A;
  margin-bottom: 14px;
}

.subsidy__card-photo {
  position: relative;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.subsidy__card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.subsidy__card-badges {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.subsidy__badge {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
}

.subsidy__badge--strong {
  font-size: 18px;
  padding: 8px 14px;
}

.subsidy__badge--strong strong {
  font-size: 22px;
  font-weight: 900;
}

.subsidy__card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

.subsidy__stats {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subsidy__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: #fff;
  border-radius: 16px;
  flex: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.subsidy__stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #E8913A;
  line-height: 1.2;
}

.subsidy__stat-number small {
  font-size: 16px;
  font-weight: 700;
}

.subsidy__stat-label {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  margin-top: 4px;
}

/* ===== VOICE SECTION ===== */
.voice {
  background: linear-gradient(180deg, #FFF9F0 0%, #FFF0DE 50%, #FFF9F0 100%) url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1400&h=600&fit=crop&q=60') center / cover no-repeat;
  background-attachment: fixed;
  padding: 80px 24px;
  position: relative;
}

.voice::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 249, 240, 0.92);
}

.voice__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.voice__tag {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.voice__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
}

.voice__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice__card {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
  overflow: hidden;
}

.voice__card-photo {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.voice__card-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__card-header,
.voice__card-detail,
.voice__card-text,
.voice__card-result {
  margin-left: 24px;
  margin-right: 24px;
}

.voice__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 12px;
}

.voice__card-num {
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: #E8913A;
  padding: 4px 12px;
  border-radius: 20px;
}

.voice__card-info {
  display: flex;
  flex-direction: column;
}

.voice__card-area {
  font-size: 12px;
  color: #999;
}

.voice__card-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.voice__card-detail {
  font-size: 13px;
  color: #E8913A;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #eee;
}

.voice__card-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.voice__card-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #FFF9F0;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.voice__card-before {
  font-size: 16px;
  font-weight: 700;
  color: #999;
  text-decoration: line-through;
}

.voice__card-arrow {
  font-size: 20px;
  color: #E8913A;
  font-weight: 900;
}

.voice__card-after {
  font-size: 20px;
  font-weight: 900;
  color: #E8913A;
}

/* ===== POINTS SECTION ===== */
.points {
  background: linear-gradient(160deg, #D4792A 0%, #E8913A 20%, #F5B04A 40%, #FBCB78 50%, #F5B04A 60%, #E8913A 80%, #D4792A 100%);
  padding: 80px 24px;
  position: relative;
}

.points::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 25% 15%, rgba(255,255,255,0.3) 0%, transparent 50%),
              radial-gradient(ellipse at 75% 85%, rgba(0,0,0,0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 40%);
  pointer-events: none;
}

.points__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.points__tag {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.points__title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 48px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  letter-spacing: 1px;
}

.points__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.points__item {
  background: #fff;
  border-radius: 16px;
  padding: 0 0 24px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.points__item-visual {
  position: relative;
}

.points__item-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E8913A;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.points__item-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.points__item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.points__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 16px 20px 0;
}

.points__item-title strong {
  background: linear-gradient(transparent 60%, #FFE082 60%);
}

.points__item-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  text-align: left;
  padding: 0 20px;
}

/* ===== ELECTRICITY SECTION ===== */
.electricity {
  position: relative;
  padding: 60px 24px 48px;
  overflow: hidden;
  background: #c6c0bb;
}

.electricity__bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  overflow: hidden;
}

.electricity__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.electricity__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #c6c0bb);
}

.electricity__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.electricity__tag {
  display: inline-block;
  background: #fff;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 30px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.electricity__title {
  font-size: 26px;
  font-weight: 900;
  color: #333;
  line-height: 1.4;
  margin-bottom: 24px;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
  text-shadow: 0 2px 8px rgba(255,255,255,0.9);
}

.electricity__title strong {
  font-size: 36px;
  display: block;
}

.electricity__card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 12px 24px 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.electricity__graph {
  position: relative;
  margin-bottom: 16px;
}

.electricity__graph-ylabel {
  display: block;
  font-size: 9px;
  color: #999;
  text-align: left;
  margin-bottom: 4px;
}

.electricity__graph-area {
  display: flex;
  gap: 4px;
}

.electricity__graph-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 8px;
  color: #999;
  padding-right: 2px;
  min-width: 16px;
  text-align: right;
}

.electricity__graph-plot {
  flex: 1;
  position: relative;
  height: 200px;
}

.electricity__graph-svg {
  width: 100%;
  height: 100%;
}

.electricity__graph-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #999;
  margin-top: 4px;
  margin-left: 20px;
}

/* Annotations */
.electricity__graph-anno {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  padding: 4px 6px;
  border-radius: 4px;
  pointer-events: none;
}

.electricity__graph-anno--quake {
  top: 20%;
  left: 8%;
  color: #333;
  background: rgba(255,255,255,0.8);
}

.electricity__graph-anno--oil {
  bottom: 15%;
  left: 18%;
  color: #666;
  font-size: 9px;
  background: rgba(255,255,255,0.8);
}

.electricity__graph-anno--energy {
  top: 2%;
  left: 30%;
  color: #333;
  font-size: 9px;
  text-align: center;
  background: rgba(255,255,255,0.85);
}

.electricity__graph-anno--future {
  top: 30%;
  right: 5%;
  color: #E8913A;
  font-size: 12px;
  font-weight: 900;
}

.electricity__notes {
  text-align: left;
}

.electricity__notes p {
  font-size: 9px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ===== RESPONSIVE: NEW SECTIONS ===== */
@media screen and (max-width: 768px) {
  /* Zero Cost */
  .zero-cost {
    padding: 48px 12px;
  }

  .zero-cost__title {
    font-size: 18px;
  }

  .zero-cost__title strong {
    font-size: 32px;
  }

  .zero-cost__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .zero-cost__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zero-cost__card {
    padding: 24px 20px;
  }

  .zero-cost__card-number {
    font-size: 44px;
  }

  /* Subsidy */
  .subsidy {
    padding: 48px 16px;
  }

  .subsidy__title {
    font-size: 20px;
  }

  .subsidy__title strong {
    font-size: 56px;
  }

  .subsidy__title strong span {
    font-size: 32px;
  }

  .subsidy__card {
    padding: 24px 16px;
  }

  .subsidy__stats {
    gap: 8px;
  }

  .subsidy__stat {
    padding: 16px 8px;
  }

  .subsidy__stat-number {
    font-size: 24px;
    white-space: nowrap;
  }

  .subsidy__stat-number small {
    font-size: 12px;
  }

  .subsidy__stat-label {
    font-size: 10px;
    white-space: nowrap;
  }

  /* Voice */
  .voice {
    padding: 48px 12px;
    overflow: hidden;
  }

  .voice__title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .voice__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .voice__card {
    padding: 0;
  }

  .voice__card-header,
  .voice__card-detail,
  .voice__card-text,
  .voice__card-result {
    margin-left: 16px;
    margin-right: 16px;
  }

  .voice__card-text {
    font-size: 13px;
    word-break: break-all;
  }

  .voice__card-result {
    gap: 8px;
    padding: 10px;
  }

  .voice__card-before {
    font-size: 13px;
  }

  .voice__card-after {
    font-size: 16px;
  }

  /* Points */
  .points {
    padding: 48px 12px;
  }

  .points__title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
  }

  .points__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .points__item {
    padding: 32px 16px 24px;
  }

  .points__item-desc {
    font-size: 13px;
  }

  /* Electricity */
  .electricity {
    padding: 48px 12px 36px;
  }

  .electricity__title {
    font-size: 22px;
  }

  .electricity__title strong {
    font-size: 30px;
  }

  .electricity__card {
    padding: 16px 10px;
  }

  .electricity__graph-plot {
    height: 160px;
  }
}

/* ===== BEFORE / AFTER SECTION ===== */
.beforeafter {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.beforeafter__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.beforeafter__heading {
  font-size: 36px;
  font-weight: 900;
  color: #E8913A;
  padding: 48px 24px 24px;
  background: #fff;
  text-decoration: underline;
  text-decoration-color: #E8913A;
  text-underline-offset: 8px;
}

/* --- BEFORE --- */
.beforeafter__before {
  background: #f0efed;
  padding: 40px 24px 48px;
}

.beforeafter__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #666;
  margin-bottom: 8px;
}

.beforeafter__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #555;
  margin-bottom: 20px;
}

.beforeafter__before-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.beforeafter__before-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.beforeafter__before-illust {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.beforeafter__before-text {
  font-size: 22px;
  font-weight: 900;
  color: #666;
}

.beforeafter__before-caption {
  font-size: 18px;
  font-weight: 700;
  color: #888;
}

/* --- Arrow (V-shape transition only) --- */
.beforeafter__arrow {
  height: 50px;
  background: #E8913A;
  position: relative;
}

.beforeafter__arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #f0efed;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.beforeafter__arrow-icon {
  display: none;
}

/* --- AFTER --- */
.beforeafter__after {
  background: #E8913A;
  padding: 32px 24px 48px;
}

.beforeafter__label--after {
  color: #fff;
  font-size: 20px;
  letter-spacing: 5px;
}

.beforeafter__subtitle--after {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.beforeafter__after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.beforeafter__after-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 20px 12px 16px;
  position: relative;
  text-align: center;
}

.beforeafter__after-num {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.beforeafter__after-illust {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 4px;
}

.beforeafter__after-verb {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.beforeafter__after-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ===== SAVINGS SECTION ===== */
.savings {
  background: linear-gradient(135deg, rgba(255,249,240,0.88) 0%, rgba(255,224,178,0.88) 50%, rgba(255,249,240,0.88) 100%),
              url('images/yamazaki-bg.jpg') center top / cover no-repeat;
  padding: 48px 24px;
}

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

.savings__tag {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.savings__title {
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin-bottom: 24px;
}

.savings__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.savings__title-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FCE4A8;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  font-size: 16px;
  font-weight: 900;
  color: #333;
  flex-shrink: 0;
}

.savings__title-amount {
  font-size: 72px;
  font-weight: 900;
  color: #E8913A;
  line-height: 1;
}

.savings__title-amount small {
  font-size: 36px;
}

.savings__title-no {
  font-size: 28px;
  color: #333;
}

.savings__title-sub2 {
  display: block;
  font-size: 18px;
  color: #888;
  margin: 4px 0;
}

.savings__title-impact {
  display: block;
  font-size: 32px;
  color: #333;
  font-weight: 700;
}

.savings__title-impact strong {
  color: #E8913A;
  font-size: 42px;
  font-weight: 900;
}

.savings__table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.savings__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}

.savings__row--header {
  background: #F5F5F5;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  padding: 12px 24px;
}

.savings__row--total {
  background: #FFF3E0;
  border-bottom: none;
}

.savings__row-label {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.savings__row-before {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.savings__row-after {
  font-size: 22px;
  font-weight: 700;
  color: #E8913A;
}

.savings__row-total {
  font-size: 28px;
  font-weight: 900;
  color: #E8913A;
  text-shadow: 1px 1px 0 rgba(232, 145, 58, 0.15);
}

.savings__note {
  font-size: 11px;
  color: #999;
  margin-top: 16px;
}

/* ===== CONCERNS SECTION ===== */
.concerns {
  background: #f5f5f5 url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&h=600&fit=crop') center / cover no-repeat;
  background-attachment: fixed;
  padding: 80px 24px;
  position: relative;
}

.concerns::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
}

.concerns__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.concerns__illust {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 20px;
}

.concerns__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin-bottom: 32px;
}

.concerns__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.concerns__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F5F5F5;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: left;
}

.concerns__item-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E8913A;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.concerns__item-text {
  font-size: 18px;
  font-weight: 700;
  color: #444;
}

.concerns__answer {
  background: linear-gradient(135deg, #E8913A, #e07028);
  padding: 24px;
  border-radius: 16px;
}

.concerns__answer-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.concerns__answer-text strong {
  font-size: 24px;
  font-weight: 900;
}

/* ===== BAD WORK SECTION ===== */
.badwork {
  background: #1a1a1a;
  padding: 60px 24px;
  color: #fff;
}

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

.badwork__tag {
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.badwork__title {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 12px;
}

.badwork__lead {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.badwork__lead strong {
  color: #FF6B6B;
}

.badwork__cases {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.badwork__case {
  background: #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
}

.badwork__case-photo {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

.badwork__case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d32f2f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

.badwork__case-title {
  font-size: 16px;
  font-weight: 900;
  color: #FF6B6B;
  padding: 16px 16px 8px;
}

.badwork__case-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  padding: 0 16px 16px;
}

.badwork__warning {
  background: rgba(211,47,47,0.15);
  border: 1px solid rgba(211,47,47,0.4);
  border-radius: 12px;
  padding: 16px 20px;
}

.badwork__warning-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
}

.badwork__warning-text strong {
  color: #FF6B6B;
}

/* ===== SOLVE SECTION ===== */
.solve {
  background: linear-gradient(135deg, #E8913A, #d4791e);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.solve::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&h=600&fit=crop') center / cover no-repeat;
  opacity: 0.1;
}

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

.solve__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.solve__lead {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.9;
}

.solve__brand {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.solve__brand strong {
  font-size: 44px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.15);
}

.solve__stats {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
}

.solve__stats strong {
  font-size: 36px;
  font-weight: 900;
  color: #FFE082;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
  margin: 0 2px;
}

.solve__sub {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.15);
}

.solve__photo {
  position: absolute;
  right: 0;
  bottom: -60px;
  z-index: 1;
}

.solve__photo-img {
  width: 265px;
  height: auto;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 768px) {
  .solve {
    padding: 40px 20px;
  }

  .solve__brand {
    font-size: 28px;
  }

  .solve__brand strong {
    font-size: 34px;
  }

  .solve__lead {
    font-size: 15px;
  }

  .solve__stats {
    font-size: 13px;
    padding: 10px 14px;
  }

  .solve__stats strong {
    font-size: 28px;
  }

  .solve__sub {
    font-size: 14px;
  }

  .solve__photo {
    right: -30px;
    bottom: -60px;
  }

  .solve__photo-img {
    width: 283px;
  }
}

/* ===== STRENGTHS SECTION ===== */
.strengths {
  background: #f5f5f5;
  padding: 60px 24px;
}

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

.strengths__tag {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.strengths__title {
  font-size: 22px;
  font-weight: 900;
  color: #333;
  line-height: 1.5;
  margin-bottom: 32px;
}

.strengths__block {
  background: #fff;
  border-radius: 20px;
  padding: 0 0 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  text-align: center;
}

.strengths__block-num {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 0 0 12px 12px;
  margin-bottom: 0;
}

.strengths__block-photo {
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
}

.strengths__block-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.strengths__block-photo--contain .strengths__block-img {
  height: auto;
  object-fit: contain;
}

.strengths__block-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  padding: 16px 20px 8px;
}

.strengths__block-title strong {
  color: #E8913A;
}

.strengths__block-title--line {
  background: #06C755;
  color: #fff;
  margin: 16px 20px 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 18px;
}

.strengths__block-title--line strong {
  color: #fff;
}

.strengths__block-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  padding: 0 20px;
  text-align: left;
}

/* コスト比較グラフ */
.strengths__cost-chart--hero {
  margin: 16px 0 0;
  border-radius: 0;
  padding: 24px 20px;
}

.strengths__cost-chart {
  margin: 16px 20px 0;
  background: #FFF9F0;
  border-radius: 12px;
  padding: 16px;
}

.strengths__cost-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.strengths__cost-row:last-child {
  margin-bottom: 0;
}

.strengths__cost-label {
  font-size: 10px;
  font-weight: 700;
  color: #666;
  min-width: 56px;
  text-align: right;
}

.strengths__cost-bar {
  flex: 1;
  display: flex;
  height: 32px;
  border-radius: 6px;
  overflow: hidden;
}

.strengths__cost-bar--other .strengths__cost-seg--ad {
  background: #ef5350;
  flex: 3;
}

.strengths__cost-bar--other .strengths__cost-seg--sales {
  background: #ff8a65;
  flex: 3;
}

.strengths__cost-bar--other .strengths__cost-seg--construct {
  background: #a5d6a7;
  flex: 4;
}

.strengths__cost-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

.strengths__cost-bar--arise {
  flex: 0.65;
}

.strengths__cost-seg--all {
  background: #E8913A;
  flex: 1;
  border-radius: 6px;
  font-size: 10px;
}

.strengths__cost-save {
  font-size: 11px;
  font-weight: 900;
  color: #E8913A;
  white-space: nowrap;
}

/* メーカー比較 */
.strengths__compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 20px 0;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 12px;
}

.strengths__compare-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.strengths__compare-label {
  font-size: 11px;
  font-weight: 700;
  color: #999;
}

.strengths__compare-item--arise .strengths__compare-label {
  color: #E8913A;
}

.strengths__compare-num {
  font-size: 32px;
  font-weight: 900;
  color: #999;
  line-height: 1;
}

.strengths__compare-num small {
  font-size: 14px;
}

.strengths__compare-item--arise .strengths__compare-num {
  color: #E8913A;
  font-size: 40px;
}

.strengths__compare-vs {
  font-size: 16px;
  font-weight: 900;
  color: #ccc;
}

/* ===== STEPS SECTION ===== */
.steps {
  background: #F8F9FA;
  padding: 80px 24px;
  border-top: 3px solid #E8913A;
}

.steps__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.steps__tag {
  display: inline-block;
  background: #FFF3E0;
  color: #E8913A;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.steps__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 48px;
}

.steps__title strong {
  color: #E8913A;
  font-weight: 900;
}

.steps__timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.steps__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding-bottom: 12px;
}

.steps__item:last-child {
  padding-bottom: 0;
}

.steps__item-line {
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #E8913A, #F5B04A);
}

.steps__item:last-child .steps__item-line {
  display: none;
}

.steps__item-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8913A, #F5A623);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(232, 145, 58, 0.3);
  z-index: 1;
}

.steps__item-content {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  flex: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  min-width: 0;
}

.steps__item-illust {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}

.steps__item-illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.steps__item-title {
  font-size: 16px;
  font-weight: 900;
  color: #333;
  margin-bottom: 4px;
}

.steps__item-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: linear-gradient(180deg, #fff 0%, #F5F5F5 100%);
  padding: 80px 24px;
}

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

.faq__tag {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.faq__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  margin-left: auto;
  font-size: 24px;
  color: #E8913A;
  font-weight: 400;
  flex-shrink: 0;
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E8913A;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.faq__answer {
  padding: 0 24px 20px 68px;
}

.faq__answer p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: #333;
  color: #fff;
  padding: 48px 24px 24px;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.footer__logo-icon {
  font-size: 28px;
}

.footer__logo-text {
  font-size: 24px;
  font-weight: 900;
  color: #E8913A;
  letter-spacing: 2px;
}

.footer__info {
  margin-bottom: 24px;
}

.footer__address {
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer__phone {
  font-size: 24px;
  font-weight: 900;
  color: #E8913A;
  display: block;
  margin-bottom: 4px;
}

.footer__hours {
  font-size: 12px;
  color: #999;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid #555;
}

.footer__nav a {
  font-size: 13px;
  color: #aaa;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #E8913A;
}

.footer__copy {
  font-size: 11px;
  color: #666;
}

/* ===== MAKER LOGO TICKER ===== */
.maker-ticker {
  background: #fff;
  padding: 20px 0;
  overflow: hidden;
}

.maker-ticker__title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.maker-ticker__wrap {
  overflow: hidden;
  position: relative;
}

.maker-ticker__wrap::before,
.maker-ticker__wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.maker-ticker__wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.maker-ticker__wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.maker-ticker__track {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
  padding-bottom: 8px;
}

.maker-ticker__logo {
  height: 24px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== INQUIRY FORM ===== */
.inquiry {
  background: linear-gradient(180deg, #FFF9F0 0%, #fff 100%);
  padding: 80px 16px;
  overflow: hidden;
}

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

.inquiry__tag {
  display: inline-block;
  background: #E8913A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.inquiry__title {
  font-size: 18px;
  font-weight: 900;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

.inquiry__title strong {
  color: #E8913A;
}

.inquiry__lead {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.inquiry__form {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: left;
}

.inquiry__field {
  margin-bottom: 20px;
}

.inquiry__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.inquiry__required {
  font-size: 11px;
  color: #fff;
  background: #E8913A;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
}

.inquiry__input,
.inquiry__select,
.inquiry__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #FAFAFA;
  transition: border-color 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}

.inquiry__input:focus,
.inquiry__select:focus,
.inquiry__textarea:focus {
  outline: none;
  border-color: #E8913A;
  background: #fff;
}

.inquiry__input.inquiry__input--error {
  border-color: #e53935;
  background: #FFF5F5;
}

.inquiry__error {
  display: none;
  color: #e53935;
  font-size: 12px;
  margin-top: 4px;
}

.inquiry__error--show {
  display: block;
}

.inquiry__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.inquiry__textarea {
  resize: vertical;
  min-height: 100px;
}

.inquiry__submit {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #E8913A, #F5A623);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(232, 145, 58, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.inquiry__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 145, 58, 0.4);
}

.inquiry__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.inquiry__note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

.inquiry__thanks {
  background: #fff;
  border-radius: 16px;
  padding: 48px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.inquiry__thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.inquiry__thanks-title {
  font-size: 22px;
  font-weight: 900;
  color: #333;
  margin-bottom: 12px;
}

.inquiry__thanks-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ===== CAMPAIGN BANNER ===== */
.campaign-banner {
  padding: 24px 16px;
  background: #FFF9F0;
}

.campaign-banner__inner {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid #FF9800;
  border-radius: 16px;
  padding: 24px 16px 16px;
  text-align: center;
  position: relative;
}

.campaign-banner__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF5722;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 20px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.campaign-banner__condition {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
}

.campaign-banner__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.campaign-banner__cards {
  position: relative;
  width: 150px;
  height: 100px;
  flex-shrink: 0;
}

.campaign-banner__card {
  position: absolute;
  width: 100px;
  height: 64px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #232F3E, #37475A);
  border: 2px solid #FF9900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.campaign-banner__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF9900, #FFB84D, #FF9900);
}

.campaign-banner__card-logo {
  font-size: 9px;
  font-weight: 900;
  color: #FF9900;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.campaign-banner__card-smile {
  width: 20px;
  height: 6px;
  margin-top: 2px;
  border-bottom: 2px solid #FF9900;
  border-radius: 0 0 10px 10px;
}

.campaign-banner__card-amount {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  margin-top: 4px;
}

.campaign-banner__card:nth-child(1) { left: -20px; top: 20px; transform: rotate(-10deg); z-index: 1; }
.campaign-banner__card:nth-child(2) { left: -10px; top: 10px; transform: rotate(-5deg); z-index: 2; }
.campaign-banner__card:nth-child(3) { left: 4px; top: 4px; transform: rotate(0deg); z-index: 3; }
.campaign-banner__card:nth-child(4) { left: 18px; top: 10px; transform: rotate(5deg); z-index: 4; }
.campaign-banner__card:nth-child(5) { left: 28px; top: 20px; transform: rotate(10deg); z-index: 5; }

.campaign-banner__amount-block {
  text-align: center;
}

.campaign-banner__amazon {
  display: block;
  color: #FF9900;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 0;
}

.campaign-banner__amount-line {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.campaign-banner__max {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 900;
  color: #FF5722;
  letter-spacing: 2px;
  line-height: 1;
  margin-right: 2px;
}

.campaign-banner__amount {
  font-size: 48px;
  font-weight: 900;
  color: #FF5722;
  line-height: 1;
}

.campaign-banner__unit {
  font-size: 20px;
  font-weight: 900;
  color: #FF5722;
}

.campaign-banner__present {
  font-size: 18px;
  font-weight: 900;
  color: #333;
  margin: 4px 0 0;
  background: linear-gradient(transparent 60%, #FFE082 60%);
  display: inline;
}

.campaign-banner__sub {
  margin-top: 8px;
  font-size: 11px;
  color: #999;
}

/* ===== RESPONSIVE: REMAINING SECTIONS ===== */
@media screen and (max-width: 768px) {
  /* Before/After */
  .beforeafter__heading {
    font-size: 24px;
    padding: 32px 16px 16px;
  }

  .beforeafter__before {
    padding: 28px 16px 40px;
  }

  .beforeafter__before-card {
    padding: 20px 24px;
  }

  .beforeafter__before-illust {
    width: 64px;
    height: 64px;
  }

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

  .beforeafter__after {
    padding: 28px 16px 36px;
  }

  .beforeafter__after-grid {
    gap: 10px;
  }

  .beforeafter__after-card {
    padding: 16px 8px 12px;
  }

  .beforeafter__after-verb {
    font-size: 20px;
  }

  .beforeafter__after-desc {
    font-size: 11px;
  }

  /* Savings */
  .savings {
    padding: 48px 12px;
  }

  .savings__title-amount {
    font-size: 56px;
  }

  .savings__title-amount small {
    font-size: 28px;
  }

  .savings__title-circle {
    width: 52px;
    height: 52px;
    font-size: 14px;
  }

  .savings__title-impact {
    font-size: 26px;
  }

  .savings__title-impact strong {
    font-size: 34px;
  }

  .savings__row {
    padding: 12px 12px;
    font-size: 13px;
  }

  .savings__row--header {
    font-size: 11px;
    padding: 10px 12px;
  }

  .savings__row-label {
    font-size: 12px;
  }

  .savings__row-before {
    font-size: 13px;
  }

  .savings__row-after {
    font-size: 14px;
  }

  .savings__row-total {
    font-size: 16px;
  }

  /* Concerns */
  .concerns {
    padding: 48px 12px;
  }

  .concerns__title {
    font-size: 20px;
  }

  .concerns__item {
    padding: 12px 16px;
  }

  .concerns__item-text {
    font-size: 14px;
  }

  .concerns__answer-text {
    font-size: 16px;
  }

  .concerns__answer-text strong {
    font-size: 20px;
  }

  /* Strengths */
  .strengths {
    padding: 48px 12px;
  }

  .strengths__title {
    font-size: 20px;
  }

  .strengths__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .strengths__card {
    padding: 24px 16px;
  }

  /* Steps */
  .steps {
    padding: 48px 12px;
  }

  .steps__title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .steps__item-content {
    padding: 16px;
  }

  .steps__item-illust {
    width: 64px;
    height: 64px;
  }

  .steps__item-title {
    font-size: 14px;
  }

  .steps__item-desc {
    font-size: 11px;
  }

  /* FAQ */
  .faq {
    padding: 48px 12px;
  }

  .faq__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .faq__question {
    padding: 16px;
    font-size: 14px;
  }

  .faq__answer {
    padding: 0 16px 16px 56px;
  }

  .faq__answer p {
    font-size: 13px;
  }

  /* Footer */
  .footer {
    padding: 32px 16px 16px;
  }

  .footer__nav {
    gap: 12px;
  }

  .footer__nav a {
    font-size: 12px;
  }

  .footer__phone {
    font-size: 20px;
  }

  .campaign-banner__row { gap: 8px; }
  .campaign-banner__cards { width: 100px; height: 68px; }
  .campaign-banner__card { width: 66px; height: 44px; }
  .campaign-banner__card-amount { font-size: 9px; }
  .campaign-banner__card-logo { font-size: 7px; }
  .campaign-banner__card-smile { width: 14px; height: 4px; }
  .campaign-banner__amount { font-size: 32px; }
  .campaign-banner__max { font-size: 12px; }
  .campaign-banner__unit { font-size: 15px; }
}
