@charset "UTF-8";
:root {
  --forest-950: #0b2921;
  --forest-900: #123c2f;
  --forest-800: #1b4c3c;
  --forest-700: #2b654d;
  --sage: #dce8bf;
  --sage-soft: #eef3df;
  --cream: #f8f4e8;
  --paper: #fffdf6;
  --ink: #17322a;
  --ink-soft: #596c64;
  --orange: #b85a10;
  --sun: #f2b846;
  --line: rgba(18, 60, 47, 0.2);
  --shadow: 0 24px 70px rgba(11, 41, 33, 0.13);
  --shell: 1200px;
  --header: 82px;
  --font-family-main: "Noto Sans JP";
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
li,
dt,
dd {
  overflow-wrap: anywhere;
}

main section,
main section * {
  min-width: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: var(--forest-700);
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.l-shell {
  width: min(var(--shell), 100% - 64px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--forest-900);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled, body.nav-open .site-header {
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

body:not(.nav-open) .site-header:not(.is-scrolled) {
  color: #fff;
}
body:not(.nav-open) .site-header:not(.is-scrolled) .brand__service {
  border-left-color: rgba(255, 255, 255, 0.4);
}
body:not(.nav-open) .site-header:not(.is-scrolled) .global-nav__cta {
  color: var(--forest-950);
  background: var(--sun);
  border-color: var(--sun);
}
body:not(.nav-open) .site-header:not(.is-scrolled) .nav-toggle {
  background: rgba(7, 30, 24, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand__logo {
  width: 173px;
  height: 36px;
  display: block;
}

.brand__logo--dark {
  display: none;
}

.site-header.is-scrolled .brand__logo--light,
body.nav-open .brand__logo--light {
  display: none;
}

.site-header.is-scrolled .brand__logo--dark,
body.nav-open .brand__logo--dark {
  display: block;
}

.brand__service {
  margin-left: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.global-nav a:not(.global-nav__cta) {
  position: relative;
}
.global-nav a:not(.global-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--orange);
  transition: right 0.2s ease;
}
.global-nav a:not(.global-nav__cta):hover::after, .global-nav a:not(.global-nav__cta):focus-visible::after {
  right: 0;
}

.global-nav__cta {
  padding: 11px 22px;
  color: #fff;
  background: var(--forest-900);
  border: 1px solid var(--forest-900);
  transition: color 0.2s ease, background 0.2s ease;
}
.global-nav__cta:hover, .global-nav__cta:focus-visible {
  color: var(--forest-900);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--forest-900);
  border: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: max(680px, 100svh);
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: calc(var(--header) + 48px) 0 130px;
  color: #fff;
  background: var(--forest-950);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  background: linear-gradient(90deg, rgba(6, 27, 22, 0.88) 0%, rgba(6, 27, 22, 0.7) 43%, rgba(6, 27, 22, 0.18) 75%), linear-gradient(180deg, rgba(6, 27, 22, 0.18) 48%, rgba(6, 27, 22, 0.72) 100%);
}
.hero::after {
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  scale: 1.015;
}

.hero__inner {
  width: 100%;
}

.hero__content {
  width: min(760px, 70vw);
  padding: 42px 0;
}

@media (min-width: 981px) {
  .hero__inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .hero__content {
    margin-left: clamp(48px, 17vw, 300px);
  }
}
.eyebrow,
.section-number,
.section-label {
  margin: 0 0 24px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-number {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow span {
  padding: 4px 11px;
  color: var(--forest-950);
  background: var(--sun);
  font-size: 12px;
}
.eyebrow::after {
  content: "";
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.hero h1,
.section-head h2,
.problem h2,
.support__intro h2,
.simulation h2,
.storage h2,
.contact__heading h2 {
  margin: 0;
  font-family: var(--font-family-main), sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(50px, 6vw, 86px);
  line-height: 1.12;
  text-shadow: 0 7px 34px rgba(0, 0, 0, 0.34);
}
.hero h1 > span {
  display: block;
  white-space: nowrap;
}
.hero h1 em {
  position: relative;
  color: var(--sun);
  font-style: normal;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 5px;
  z-index: -1;
  height: 13px;
  z-index: -1;
  background: rgba(184, 90, 16, 0.48);
}

.hero__lead {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.9;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
}

.button--accent {
  color: #fff;
  background: var(--orange);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
}
.button--accent:hover, .button--accent:focus-visible {
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
}

.button--dark {
  color: #fff;
  background: var(--forest-900);
}

.button--outline {
  color: var(--forest-900);
  background: transparent;
  border-color: var(--forest-900);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.hero__capabilities {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  background: rgba(7, 30, 24, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}
.hero__capabilities .l-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__capabilities span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 22px;
  font-weight: 700;
}
.hero__capabilities span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__capabilities i {
  color: var(--sun);
  font-size: 19px;
}

.hero__scroll {
  position: absolute;
  right: 28px;
  bottom: 120px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  letter-spacing: 0.18em;
}
.hero__scroll i {
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
.problem {
  color: #fff;
  background: var(--forest-900);
}

.problem__inner {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  align-items: center;
  gap: 42px 8vw;
  padding-top: 90px;
  padding-bottom: 90px;
}

.problem .section-number {
  color: var(--sun);
}

.problem h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.55;
}

.problem__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.problem__list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.problem__list span {
  color: var(--sun);
  font-family: var(--font-family-main), sans-serif;
  font-size: 25px;
}
.problem__list p {
  margin: 0;
  font-size: clamp(16px, 1.55vw, 21px);
}
.problem__list strong {
  color: var(--sun);
}

.problem__answer {
  grid-column: 1/-1;
  margin: 20px 0 0;
  text-align: center;
  font-family: var(--font-family-main), sans-serif;
  font-size: clamp(24px, 3.2vw, 43px);
  font-weight: 700;
  line-height: 1.6;
}
.problem__answer em {
  color: var(--sun);
  font-style: normal;
}

.section {
  padding: clamp(100px, 11vw, 160px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  align-items: end;
  gap: 30px 6vw;
  margin-bottom: 70px;
}
.section-head .section-number {
  grid-column: 1/-1;
  margin-bottom: 0;
}
.section-head h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.25;
}
.section-head h2 span {
  color: var(--orange);
}
.section-head > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.about {
  background: var(--paper);
  padding-bottom: 0;
}

.scheme {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 48px;
  padding: clamp(26px, 5vw, 62px);
  background: linear-gradient(135deg, var(--sage-soft), #fff 72%);
  border: 1px solid var(--forest-900);
  box-shadow: 14px 14px 0 rgba(18, 60, 47, 0.08);
}

.scheme__copy {
  min-width: 0;
}
.scheme__copy h3 {
  margin: 0;
  font-family: var(--font-family-main), sans-serif;
  font-size: clamp(28px, 3.3vw, 45px);
  line-height: 1.5;
}
.scheme__copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.scheme__copy li {
  display: grid;
  grid-template-columns: 12px 52px 1fr;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 11px;
}
.scheme__copy b {
  color: var(--ink);
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.legend-dot--fit {
  background: #91a59c;
}

.legend-dot--market {
  background: var(--forest-700);
}

.legend-dot--fip {
  background: var(--orange);
}

.chart-shell {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
}
.chart-shell canvas {
  display: block;
  max-width: 100%;
}

.chart-shell__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.chart-shell__heading strong {
  font-family: var(--font-family-main), sans-serif;
  font-size: 14px;
}
.chart-shell__heading small {
  color: var(--ink-soft);
  font-size: 9px;
}

.chart-shell--price {
  padding: 0 16px 16px;
}
.chart-shell--price .chart-shell__heading {
  margin-inline: -16px;
}
.chart-shell--price img {
  width: 100%;
  height: auto;
}

.rule-change {
  margin-top: 110px;
  padding: clamp(56px, 7vw, 96px) 0;
  color: var(--ink);
  background: var(--sun);
}

.rule-change__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-height: 740px;
}

.rule-change__copy {
  max-width: 780px;
  padding-left: clamp(18px, 2.4vw, 34px);
  border-left: 3px solid var(--forest-900);
}
.rule-change__copy h3 {
  margin: 0;
  font-family: var(--font-family-main), sans-serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.5;
}
.rule-change__copy > p:last-child {
  margin: 26px 0 0;
  color: rgba(11, 41, 33, 0.8);
}

.rule-change__badge {
  display: inline-block;
  margin: 0 0 22px;
  padding: 6px 13px;
  color: #fff;
  background: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.priority-table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-self: center;
  width: min(100%, 920px);
  gap: 100px;
}
.priority-table > div {
  padding: clamp(18px, 2vw, 28px);
  color: var(--ink);
  background: var(--paper);
}
.priority-table > span {
  color: var(--forest-900);
  font-size: 80px;
  font-weight: 700;
}
.priority-table b {
  display: block;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-family-main), sans-serif;
  font-size: 18px;
}
.priority-table b small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-family: "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 9px;
  font-weight: 400;
}
.priority-table ol {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: priority;
}
.priority-table li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  counter-increment: priority;
}
.priority-table li.blank {
  height: 41px;
}
.priority-table li.blank::before {
  display: none;
}
.priority-table li.blank {
  border-bottom: none;
}
.priority-table li::before {
  content: counter(priority, decimal-leading-zero);
  display: inline-grid;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #fff;
  background: var(--forest-900);
  border-radius: 50%;
  font-size: 8px;
  line-height: 1;
}
.priority-table li.is-fip {
  color: var(--orange);
  font-weight: 700;
}
.priority-table li.is-fip::before {
  background: var(--orange);
}

.support {
  color: #fff;
  background: var(--forest-950);
}

.support__intro {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 26px;
  margin-bottom: 80px;
}
.support__intro .section-number {
  grid-column: 1/-1;
  color: var(--sun);
  margin-bottom: 0;
}
.support__intro h2 {
  font-size: clamp(48px, 4.5vw, 64px);
  line-height: 1.35;
}
.support__intro h2 em {
  color: var(--sun);
  font-style: normal;
}
.support__intro > p:last-child {
  margin: 0;
  max-width: 620px;
  justify-self: end;
  color: rgba(255, 255, 255, 0.68);
}

.support-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.support-item {
  min-height: 260px;
  display: grid;
  grid-template-columns: 90px 1fr 290px;
  align-items: center;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.support-item__number {
  align-self: start;
  color: var(--sun);
  font-family: var(--font-family-main), sans-serif;
  font-size: 42px;
}

.support-item__body {
  align-self: start;
  max-width: 590px;
}
.support-item__body h3 {
  margin: 0;
  font-family: var(--font-family-main), sans-serif;
  font-size: clamp(27px, 3vw, 40px);
}
.support-item__body p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.support-item__visual {
  position: relative;
  width: 250px;
  height: 150px;
  justify-self: end;
  align-self: center;
  overflow: hidden;
  background: var(--sage-soft);
}
.support-item__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.support-item:hover .support-item__visual img {
  transform: scale(1.04);
}

.simulation {
  background: var(--cream);
}

.simulation__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(54px, 6vw, 88px);
}

.simulation__copy h2 {
  font-size: clamp(44px, 4vw, 56px);
  line-height: 1.4;
}
.simulation__copy > p:not(.section-number) {
  margin: 30px 0 0;
  color: var(--ink-soft);
}
.simulation__copy small {
  display: block;
  margin-top: 22px;
  color: #7c8984;
  font-size: 10px;
}

@media (min-width: 1101px) {
  .problem__inner {
    grid-template-columns: minmax(620px, 0.95fr) minmax(0, 1.05fr);
    gap: 42px clamp(32px, 5vw, 72px);
  }
  .problem h2 {
    font-size: clamp(34px, 3.2vw, 46px);
    white-space: nowrap;
  }
  .support__title--desktop,
  .simulation__title--desktop {
    white-space: nowrap;
  }
}
@media (min-width: 981px) and (max-width: 1100px) {
  .problem__inner,
  .simulation__grid {
    grid-template-columns: 1fr;
  }
  .income-card {
    max-width: 720px;
  }
}
.income-card {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 86px clamp(18px, 4vw, 50px) clamp(26px, 4vw, 48px);
  background: var(--paper);
  border: 3px solid var(--forest-700);
  border-radius: 14px;
  box-shadow: none;
}
.income-card > header {
  position: absolute;
  top: -3px;
  left: -3px;
  display: flex;
  align-items: center;
  min-height: 62px;
  margin: 0;
  padding: 10px 28px;
  color: #fff;
  background: var(--forest-700);
  border: 0;
  border-radius: 11px 11px 11px 0;
}
.income-card > header span {
  color: inherit;
  font-family: var(--font-family-main), sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}
.income-card > header small {
  display: none;
}

.income-card__content {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
}

.chart-shell--income {
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.income-bar-chart {
  --income-base-height: clamp(134px, 14vw, 180px);
  --income-increase-height: clamp(52px, 5.8vw, 73px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 0.39fr));
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 0 4px;
}

.income-bar {
  --income-stack-height: var(--income-base-height);
  display: grid;
  grid-template-rows: auto auto;
  text-align: center;
}

.income-bar--fip {
  --income-stack-height: calc(var(--income-base-height) + var(--income-increase-height));
}

.income-bar__visual {
  position: relative;
  height: calc(var(--income-base-height) + var(--income-increase-height) + 34px);
}

.income-bar__amount {
  position: absolute;
  right: 0;
  bottom: calc(var(--income-stack-height) + 7px);
  left: 0;
  margin: 0;
  color: #111;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.income-bar__stack {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  height: var(--income-stack-height);
}

.income-bar__base {
  display: block;
  height: var(--income-base-height);
  background: #e5f0ce;
}

.income-bar__increase {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--income-increase-height);
  color: #fff;
  background: #08720f;
  font-size: clamp(16px, 1.85vw, 22px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.income-bar__label {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 400;
  line-height: 1.2;
}

.income-scenarios {
  display: grid;
  gap: 22px;
}

.income-scenario h3 {
  margin: 0 0 6px;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.3;
}
.income-scenario dl {
  margin: 0;
}
.income-scenario dl > div:not(.income-scenario__price-components),
.income-scenario .income-scenario__price-components > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px;
  padding: 1px 0;
  font-size: clamp(12px, 1.35vw, 16px);
  line-height: 1.25;
}
.income-scenario dt::before {
  content: "・";
}
.income-scenario dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.income-scenario--fip {
  padding-top: 16px;
  border-top: 1px solid var(--forest-900);
}

.income-scenario__subtotal {
  align-items: center !important;
  margin-top: 0;
  padding-top: 10px !important;
  border-top: 1px solid var(--forest-900);
}
.income-scenario__subtotal dt {
  display: flex;
  align-items: center;
  gap: 7px;
}
.income-scenario__subtotal dt::before {
  content: "＝";
}
.income-scenario__subtotal dt span {
  display: inline-block;
  padding: 2px 5px;
  color: #fff;
  background: var(--forest-700);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.income-scenario__subtotal dd {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.income-scenario__subtotal strong {
  font-weight: 700;
  white-space: nowrap;
}

.income-scenario__price-components {
  margin: 2px 0 0;
  padding: 3px 0 9px 14px;
  border-left: 2px solid var(--forest-700);
}

.income-scenario__subtotal em {
  display: inline-block;
  margin: 0;
  padding: 3px 6px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  vertical-align: 0.1em;
}

.income-formula {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) auto minmax(0, 1fr) auto minmax(0, 0.96fr);
  align-items: center;
  gap: 7px;
  margin-top: 10px;
}
.income-formula p {
  margin: 0;
  padding: 8px 5px;
  text-align: center;
  border: 2px solid var(--forest-700);
  border-radius: 10px;
  line-height: 1.2;
}
.income-formula span,
.income-formula strong {
  display: block;
}
.income-formula span {
  font-size: 9px;
  font-weight: 700;
}
.income-formula strong {
  font-size: clamp(11px, 1.2vw, 14px);
}
.income-formula > i {
  color: var(--forest-900);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}
.income-formula .is-total {
  border-color: var(--forest-900);
}

.income-chart-summary {
  position: absolute;
  inset: auto 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 10px;
}
.income-chart-summary span {
  color: var(--ink-soft);
}
.income-chart-summary b {
  color: var(--ink);
  font-family: var(--font-family-main), sans-serif;
  font-size: 14px;
}
.income-chart-summary i {
  color: var(--forest-700);
}
.income-chart-summary em {
  padding: 4px 8px;
  color: #fff;
  background: var(--orange);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.income-card__detail {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.income-card__detail p {
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
}
.income-card__detail span,
.income-card__detail strong {
  display: block;
}
.income-card__detail span {
  color: var(--ink-soft);
  font-size: 8px;
}
.income-card__detail strong {
  font-family: var(--font-family-main), sans-serif;
  font-size: 13px;
}
.income-card__detail > i {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}
.income-card__detail .is-total {
  color: #fff;
  background: var(--forest-900);
}
.income-card__detail .is-total span {
  color: var(--sage);
}

.income-assumptions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.income-assumptions dl {
  margin: 0;
  padding: 12px;
  background: var(--cream);
}
.income-assumptions dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 8px;
}
.income-assumptions dl div:last-child {
  border-bottom: 0;
}
.income-assumptions dd {
  margin: 0;
  font-weight: 700;
}

.storage {
  padding: 110px 0;
  background: var(--sage-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.storage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(54px, 6vw, 88px);
}

.storage-graphic {
  position: relative;
  min-width: 0;
  width: min(100%, 1000px);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--forest-900);
  box-shadow: none;
}

.storage-graphic__icon {
  position: absolute;
  right: 18px;
  top: -34px;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(18, 60, 47, 0.2);
  font-size: 27px;
}

.chart-shell--storage {
  height: 430px;
  border: 0;
}
.chart-shell--storage canvas {
  width: 100% !important;
  height: 345px !important;
}

.storage__copy {
  max-width: 780px;
}
.storage__copy h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.45;
}
.storage__copy > p:last-child {
  margin: 28px 0 0;
  color: var(--ink-soft);
}

.section-head--horizontal {
  grid-template-columns: 1.15fr 0.85fr;
}
.section-head--horizontal > div .section-number {
  margin-bottom: 20px;
}

.flow-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px);
  list-style: none;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 rgba(18, 60, 47, 0.08);
}
.flow-list li {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 54px 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 17px 28px;
  color: var(--forest-900);
  background: #fff;
  border: 1px solid rgba(18, 60, 47, 0.16);
}
.flow-list li::after {
  content: "";
  position: absolute;
  right: 50%;
  top: auto;
  bottom: -28px;
  z-index: 2;
  width: 56px;
  height: 14px;
  background: var(--forest-700);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(50%);
}
.flow-list li.is-last {
  color: #fff;
  background: var(--orange);
}
.flow-list li.is-last::after {
  display: none;
}
.flow-list span {
  color: var(--orange);
  font-family: var(--font-family-main), sans-serif;
  font-size: 30px;
}
.flow-list .is-last span {
  color: #fff;
}
.flow-list li > i {
  color: var(--forest-700);
  font-size: 27px;
}
.flow-list .is-last > i {
  color: #fff;
}
.flow-list strong,
.flow-list small {
  display: block;
}
.flow-list strong {
  font-family: var(--font-family-main), sans-serif;
  font-size: 19px;
  line-height: 1.55;
}
.flow-list small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}
.flow-list .is-last small {
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  color: #fff;
  background: var(--forest-900);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
}

.contact__heading {
  position: static;
}
.contact__heading .section-number {
  color: var(--sun);
}
.contact__heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.5;
}
.contact__heading > p:not(.section-number) {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
}
.contact__heading dl {
  margin: 48px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.contact__heading dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 11px;
}
.contact__heading dt {
  color: var(--sun);
}
.contact__heading dd {
  margin: 0;
}

.contact__title--mobile {
  display: none;
}

.support__title--mobile,
.simulation__title--mobile {
  display: none;
}

.contact-panel {
  padding: clamp(26px, 4vw, 54px);
  color: var(--ink);
  background: var(--paper);
}

.form-step {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 34px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.form-step span {
  color: var(--ink);
  font-family: var(--font-family-main), sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
}

.form-step,
.form-field--wide {
  grid-column: 1/-1;
}

.form-field {
  display: grid;
  align-content: start;
  gap: 9px;
}
.form-field > span {
  font-size: 12px;
  font-weight: 700;
}
.form-field em,
.form-field small {
  margin-left: 6px;
  padding: 2px 5px;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}
.form-field em {
  color: #fff;
  background: var(--orange);
}
.form-field small {
  color: var(--ink-soft);
  background: var(--sage-soft);
}
.form-field input,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(43, 101, 77, 0.12);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a3ada8;
}
.form-field input {
  min-height: 52px;
  padding: 10px 13px;
}
.form-field textarea {
  resize: vertical;
  padding: 13px;
}
.form-field.is-invalid input, .form-field.is-invalid textarea {
  border-color: #c94b36;
}

.field-error {
  min-height: 1.4em;
  color: #c94b36;
  font-size: 10px;
  font-style: normal;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-alert {
  margin: 0 0 26px;
  padding: 14px;
  color: #8c291d;
  background: #fff0ed;
  border-left: 4px solid #c94b36;
  font-size: 12px;
}

.confirm-list {
  margin: 0;
  border-top: 1px solid var(--line);
}
.confirm-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.confirm-list dt {
  font-size: 11px;
  font-weight: 700;
}
.confirm-list dd {
  margin: 0;
  white-space: normal;
}

.form-actions {
  display: flex;
  justify-content: end;
  gap: 18px;
  margin-top: 32px;
}

.form-complete {
  padding: 50px 10px;
  text-align: center;
}
.form-complete > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.form-complete h3 {
  margin: 20px 0 0;
  font-family: var(--font-family-main), sans-serif;
  font-size: 30px;
}
.form-complete p {
  margin: 16px 0 30px;
  color: var(--ink-soft);
}

.site-footer {
  color: #fff;
  background: var(--forest-950);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__inner {
  min-height: 210px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.site-footer__inner > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}
.site-footer__inner > a {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 11px;
}
.site-footer__inner > a i {
  font-size: 0.9em;
}
.site-footer__inner > small {
  grid-column: 1/-1;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.footer-brand img {
  width: 173px;
  height: 36px;
  display: block;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  color: #fff;
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--forest-950);
  font-size: 12px;
  font-weight: 700;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.floating-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
}
.floating-cta span {
  padding: 2px 5px;
  color: var(--orange);
  background: #fff;
  font-size: 9px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --header: 72px;
  }
  .l-shell {
    width: min(var(--shell), 100% - 40px);
  }
  .global-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 26px 20px 34px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }
  .global-nav.is-open {
    transform: none;
    visibility: visible;
  }
  .global-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }
  .global-nav .global-nav__cta {
    margin-top: 18px;
    text-align: center;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle[aria-expanded=true] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .nav-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero {
    min-height: max(680px, 100svh);
    padding-bottom: 140px;
  }
  .problem__inner,
  .section-head,
  .rule-change,
  .support__intro,
  .simulation__grid,
  .storage__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    width: min(720px, 88vw);
  }
  .problem__inner {
    min-height: auto;
  }
  .problem__answer {
    grid-column: auto;
  }
  .section-head .section-number,
  .support__intro .section-number {
    grid-column: auto;
  }
  .scheme {
    grid-template-columns: 1fr;
  }
  .chart-shell--price {
    height: auto;
  }
  .support-item {
    grid-template-columns: 70px 1fr 220px;
  }
  .support-item__visual {
    width: 210px;
  }
  .income-card {
    max-width: none;
  }
  .income-card__content {
    grid-template-columns: 1fr;
  }
  .flow-list li {
    min-height: 90px;
    grid-template-columns: 60px 42px 1fr;
    align-items: center;
    align-content: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .flow-list li::after {
    top: auto;
    right: 50%;
    bottom: -30px;
    transform: translateX(50%);
  }
  .contact__heading {
    position: static;
  }
}
@media (max-width: 680px) {
  :root {
    --header: 64px;
  }
  body {
    font-size: 14px;
  }
  .l-shell {
    width: min(var(--shell), 100% - 30px);
  }
  .brand__logo {
    width: 132px;
    height: auto;
  }
  .brand__service {
    display: none;
  }
  .contact__heading h2 {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.55;
  }
  .contact__title--desktop {
    display: none;
  }
  .contact__title--mobile {
    display: block;
  }
  .support__intro .support__title,
  .simulation__copy .simulation__title {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.55;
  }
  .support__title--desktop,
  .simulation__title--desktop {
    display: none;
  }
  .support__title--mobile,
  .simulation__title--mobile {
    display: block;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
  }
  .hero {
    min-height: max(640px, 100svh);
    padding: calc(var(--header) + 28px) 0 132px;
    align-items: center;
  }
  .hero__media img {
    object-position: 58% center;
  }
  .hero__content {
    width: 100%;
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(29px, 9.3vw, 40px);
  }
  .hero__lead br {
    display: none;
  }
  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }
  .hero__actions .button {
    width: min(100%, 330px);
  }
  .text-link {
    align-self: start;
  }
  .hero__capabilities .l-shell {
    min-height: 108px;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__capabilities span {
    justify-content: flex-start;
    padding: 10px 12px;
    font-size: 10px;
  }
  .hero__capabilities span:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
  .hero__capabilities span:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .hero__scroll {
    display: none;
  }
  .problem__inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .problem h2 {
    font-size: 28px;
  }
  .problem__list li {
    grid-template-columns: 36px 1fr;
  }
  .problem__answer br {
    display: none;
  }
  .section {
    padding: 84px 0;
  }
  .about {
    padding-bottom: 0;
  }
  .section-head {
    margin-bottom: 44px;
  }
  .section-head h2 {
    font-size: 38px;
  }
  .scheme {
    gap: 28px;
    padding: 20px;
    box-shadow: 7px 7px 0 rgba(18, 60, 47, 0.08);
  }
  .chart-shell--price {
    height: auto;
    padding-inline: 8px;
  }
  .chart-shell--price .chart-shell__heading {
    margin-inline: -8px;
  }
  .rule-change {
    margin-top: 74px;
    padding: 44px 0;
  }
  .rule-change__inner {
    gap: 40px;
    min-height: 0;
  }
  .rule-change__copy {
    padding-left: 17px;
  }
  .priority-table {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .priority-table > span {
    justify-self: center;
    transform: rotate(90deg);
  }
  .support__intro {
    margin-bottom: 40px;
  }
  .support__intro h2 {
    font-size: 38px;
  }
  .support-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 0;
  }
  .support-item__number {
    font-size: 30px;
  }
  .support-item__visual {
    grid-column: auto;
    justify-self: start;
    width: 100%;
    max-width: none;
    height: 120px;
  }
  .income-card {
    padding: 76px 14px 24px;
    border-width: 2px;
  }
  .chart-shell--income {
    padding-inline: 0;
  }
  .income-scenarios {
    gap: 20px;
  }
  .income-scenario dl > div:not(.income-scenario__price-components),
  .income-scenario__price-components > div {
    gap: 8px;
    font-size: 11px;
  }
  .income-scenario__subtotal {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 6px !important;
  }
  .income-scenario__subtotal dd {
    gap: 5px;
    justify-content: flex-end;
  }
  .income-scenario__subtotal em {
    padding: 2px 4px;
    font-size: 8px;
  }
  .income-scenario__subtotal strong {
    font-size: 10px;
  }
  .income-formula {
    grid-template-columns: 1fr;
  }
  .income-formula > i {
    justify-self: center;
    transform: rotate(90deg);
  }
  .income-chart-summary {
    gap: 7px;
    flex-wrap: wrap;
  }
  .income-chart-summary b {
    font-size: 12px;
  }
  .income-card__detail {
    grid-template-columns: 1fr;
  }
  .income-card__detail > i {
    justify-self: center;
  }
  .income-assumptions {
    grid-template-columns: 1fr;
  }
  .storage {
    padding: 80px 0;
  }
  .storage-graphic {
    padding: 12px;
  }
  .storage-graphic__icon {
    right: 10px;
    top: -26px;
    width: 52px;
    height: 52px;
    font-size: 21px;
  }
  .chart-shell--storage {
    height: 310px;
  }
  .chart-shell--storage canvas {
    height: 235px !important;
  }
  .flow-list li {
    grid-template-columns: 48px 34px 1fr;
    padding: 18px 14px;
  }
  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }
  .contact-panel {
    margin-inline: 0;
    padding-inline: 18px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-step,
  .form-field--wide {
    grid-column: auto;
  }
  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 45px;
  }
  .site-footer__inner > small {
    grid-column: auto;
  }
  .floating-cta {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/*# sourceMappingURL=style.css.map */
