
:root {
    --navy: #0a2b59;
    --teal: #0097a8;
    --teal-dark: #007f8f;
    --orange: #ff6b00;
    --soft: #f3fbfd;
    --line: #d9e7ec;
    --text: #18314f;
    --white: #fff;
    --shadow: 0 14px 40px rgba(16, 65, 90, 0.08);
  }
  * {
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body.subsidy-lp {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text);
    line-height: 1.8;
    background: #fff;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  a {
    color: inherit;
  }
  .container {
    width: 81%;
    margin: auto;
  }
  .container--narrow {
    width: min(980px, calc(100% - 40px));
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    background: #fff;
    padding: 10px 16px;
    z-index: 999;
  }
  .skip-link:focus {
    top: 12px;
  }
  .lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e8eef1;
    backdrop-filter: blur(8px);
  }
  .lp-header__inner {
    max-width: 1320px;
    margin: auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .lp-logo {
    display: flex;
    flex: 0 0 auto;
  }
  .lp-logo img {
    display: block;
    width: 160px;
  }
  .lp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
  }
  .lp-nav a {
    text-decoration: none;
    white-space: nowrap;
  }
  .lp-nav a:hover {
    color: var(--teal);
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: 0.2s;
  }
  .btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.98);
  }
  .btn--teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
  }
  .btn--orange {
    background: linear-gradient(135deg, #da3b59, #dd5871);
    color: #fff;
  }
  .lp-header__cta {
    min-height: 44px;
    border-radius: 24px;
    padding: 0 24px;
  }
  .nav-toggle {
    display: none;
  }
  .hero {
    padding: 0px 0 44px;
    background:
      radial-gradient(circle at 75% 30%, #e8f8fb 0 20%, transparent 21%),
      linear-gradient(180deg, #fff, #f8fcfd);
  }
  .hero__grid {
    padding-top: 7%;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    align-items: center;
    gap: 36px;
  }
  .eyebrow {
    color: var(--teal);
    font-weight: 800;
    letter-spacing: 0.05em;
  }
  .hero h1 {
    white-space: nowrap;
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.25;
    letter-spacing: 0.02em;
  }
  .hero h1 span {
    color: var(--teal);
  }
  .hero__lead {
    font-size: 21px;
    font-weight: 700;
    margin: 22px 0;
  }
  .hero__actions {
    display: flex;
    gap: 16px;
  }
  .hero__actions .btn {
    min-width: 190px;
  }
  .hero__note {
    margin-top: 20px;
    font-weight: 700;
    font-size: 14px;
  }
  .hero__note span {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 2px solid var(--teal);
    border-radius: 50%;
    color: var(--teal);
    margin-right: 7px;
  }
  .hero__visual {
    position: relative;
  }
  .hero-badge {
    position: absolute;
    right: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(145deg, #008f9f, #00a6b5);
    color: #fff;
    text-align: center;
    line-height: 1.45;
    box-shadow: var(--shadow);
    font-weight: 700;
    transform: rotate(3deg);
  }
  .hero-badge strong {
    font-size: 21px;
  }
  .section {
    padding: 76px 0;
  }
  .section--soft {
    background: var(--soft);
  }
  .section-title {
    text-align: center;
    color: var(--teal);
    font-size: 32px;
    line-height: 1.4;
    margin: 0 0 34px;
  }
  .about-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 34px;
    align-items: center;
    /* background: #fff;
    border-radius: 18px;
    padding: 30px 42px;
    box-shadow: var(--shadow); */
  }
  .about-card h2 {
    color: var(--teal);
    margin: 0 0 8px;
  }
  .icon-circle,
  .plan-icon {
    display: grid;
    place-items: center;
    border-radius: 50%;
    /* background: linear-gradient(145deg, #00a2b2, #007b8c); */
    background: #f3fbfd;
    color: #fff;
    font-size: 54px;
    width: 116px;
    height: 116px;
  }
  .fine-print {
    font-size: 12px;
    color: #64758b;
  }
  .center {
    text-align: center;
  }
  .plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .plan-card {
    border: 3px solid var(--line);
    /* border-radius: 16px; */
    padding: 32px;
    text-align: center;
    /* box-shadow: 0 8px 24px rgba(11, 70, 91, 0.05); */
  }
  .plan-card .plan-icon {
    margin: 0 auto 20px;
  }
  .plan-card h3 {
    font-size: 22px;
    color: var(--navy);
    line-height: 1.5;
  }
  .plan-card h3 small {
    font-size: 16px;
  }
  .price-box {
    margin-top: 24px;
    border: 1px solid #7ed3dd;
    border-radius: 10px;
    overflow: hidden;
  }
  .price-box > span {
    display: block;
    background: linear-gradient(145deg, #00a2b2, #007b8c);
    color: #fff;
    font-weight: 700;
  }
  .price-box strong {
    display: block;
    color: var(--teal);
    font-size: 22px;
    padding: 10px;
  }
  .price-box em {
    font-style: normal;
    font-size: 42px;
    line-height: 1;
  }
  .price-box small {
    display: block;
    padding: 0 10px 12px;
    color: #5f7182;
  }
  .card-grid {
    display: grid;
    gap: 22px;
  }
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-card,
  .benefit-card {
    background: #fff;
    border: 1px solid var(--line);
    /* border-radius: 14px; */
    padding: 28px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(11, 70, 91, 0.04);
  }
  .feature-card__icon {
    font-size: 52px;
  }
  .feature-card h3,
  .benefit-card h3 {
    color: var(--teal);
    font-size: 21px;
  }
  .benefit-card {
    position: relative;
    padding-top: 36px;
  }
  .benefit-card > span {
    position: absolute;
    top: -15px;
    left: 22px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 800;
  }
  .flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
  .flow-list li {
    position: relative;
    background: #fff;
    padding: 26px 18px;
    text-align: center;
    min-height: 260px;
  }
  .flow-list li:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -16px;
    top: 45%;
    font-size: 34px;
    color: #7c8d99;
    z-index: 2;
  }
  .flow-list b {
    position: absolute;
    left: 14px;
    top: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--teal);
    color: #fff;
  }
  .flow-icon {
    font-size: 42px;
    margin: 10px 0;
  }
  .flow-list h3 {
    font-size: 16px;
    color: var(--navy);
    line-height: 1.55;
  }
  .flow-list p {
    font-size: 13px;
  }
  .faq-list {
    display: grid;
    gap: 12px;
  }
  .faq-list details {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
  }
  .faq-list summary {
    position: relative;
    cursor: pointer;
    padding: 18px 58px 18px 54px;
    font-weight: 700;
    list-style: none;
  }
  .faq-list summary::-webkit-details-marker {
    display: none;
  }
  .faq-list summary::before {
    content: "Q.";
    position: absolute;
    left: 18px;
    color: var(--teal);
    font-weight: 800;
  }
  .faq-list summary::after {
    content: "＋";
    position: absolute;
    right: 20px;
    color: var(--teal);
    font-size: 22px;
  }
  .faq-list details[open] summary::after {
    content: "−";
  }
  .faq-list details div {
    padding: 0 54px 20px;
  }
  .contact-section {
    background: linear-gradient(180deg, #f8fcfd, #eef9fb);
  }
  .contact-panel {
    display: grid;
    grid-template-columns: 450px 1fr;
    background: #fff;
    border: 1px solid var(--line);
    /* border-radius: 18px; */
    overflow: hidden;
    /* box-shadow: var(--shadow); */
  }
  .contact-copy {
    padding: 38px;
    background: linear-gradient(160deg, #f3fcfd, #fff);
    text-align: center;
  }
  .contact-copy h2 {
    font-size: 20px;
    color: var(--teal);
  }
  .contact-copy strong {
    color: var(--teal);
  }
  .contact-icon {
    color: #578d98;
    font-size: 54px;
  }
  .contact-form-wrap {
    padding: 36px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .form-grid label {
    display: grid;
    gap: 7px;
    font-weight: 700;
    font-size: 14px;
  }
  .form-grid label.full {
    grid-column: 1/-1;
  }
  .form-grid span {
    color: #fff;
    background: #ff4b46;
    border-radius: 3px;
    padding: 2px 5px;
    font-size: 11px;
    width: max-content;
  }
  .form-grid small {
    color: #6f7f8f;
    font-weight: 500;
  }
  .form-grid input,
  .form-grid textarea {
    width: 100%;
    border: 1px solid #d9e4e8;
    border-radius: 6px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
  }
  .form-grid input:focus,
  .form-grid textarea:focus {
    outline: 3px solid rgba(0, 151, 168, 0.15);
    border-color: var(--teal);
  }
  .btn--submit {
    width: 70%;
    margin: 24px auto 0;
    display: flex;
    font-size: 16px;
  }
  .privacy {
    text-align: center;
    font-size: 12px;
    color: #6c7b88;
  }
  .privacy a {
    color: var(--teal);
  }
  .lp-footer {
    padding: 22px 0;
    background: var(--navy);
    color: #fff;
  }
  .lp-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .lp-footer a {
    color: #fff;
  }
  .lp-footer p {
    margin: 0;
  }
  @media (max-width: 1100px) {
    .lp-nav {
      gap: 16px;
      font-size: 12px;
    }
    .lp-header__cta {
      display: none;
    }
    .hero__grid {
      grid-template-columns: 1fr 1fr;
    }
    .flow-list {
      grid-template-columns: repeat(3, 1fr);
    }
    .flow-list li:not(:last-child)::after {
      display: none;
    }
  }
  @media (max-width: 820px) {
    .lp-header__inner {
      padding: 10px 18px;
    }
    .lp-logo img {
      width: 138px;
    }
    .nav-toggle {
      display: grid;
      margin-left: auto;
      width: 44px;
      height: 40px;
      border: 0;
      background: transparent;
      padding: 8px;
    }
    .nav-toggle span:not(.sr-only) {
      height: 2px;
      background: var(--navy);
      display: block;
    }
    .lp-nav {
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      display: none;
      flex-direction: column;
      align-items: stretch;
      background: #fff;
      padding: 18px 24px;
      border-bottom: 1px solid var(--line);
    }
    .lp-nav.is-open {
      display: flex;
    }
    .lp-nav a {
      padding: 10px 0;
    }
    .hero {
      padding-top: 34px;
    }
    .hero__grid {
      grid-template-columns: 1fr;
    }
    .hero__content {
      text-align: center;
    }
    .hero h1 {
      font-size: 42px;
    }
    .hero__lead {
      font-size: 18px;
    }
    .hero__actions {
      justify-content: center;
    }
    .hero-badge {
      width: 124px;
      height: 124px;
      font-size: 13px;
    }
    .hero-badge strong {
      font-size: 16px;
    }
    .about-card {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .icon-circle {
      margin: auto;
    }
    .plan-grid,
    .card-grid--3 {
      grid-template-columns: 1fr;
    }
    .flow-list {
      grid-template-columns: 1fr 1fr;
    }
    .contact-panel {
      grid-template-columns: 1fr;
    }
    .form-grid {
      grid-template-columns: 1fr;
    }
    .form-grid label.full {
      grid-column: auto;
    }
  }
  @media (max-width: 520px) {
    .container,
    .container--narrow {
      width: min(100% - 28px, 1160px);
    }
    .section {
      padding: 56px 0;
    }
    .hero h1 {
      font-size: 34px;
    }
    .hero__lead br {
      display: none;
    }
    .hero__actions {
      flex-direction: column;
    }
    .hero__actions .btn {
      width: 100%;
    }
    .hero__visual {
      margin-top: 8px;
    }
    .hero-badge {
      right: -4px;
      top: -10px;
    }
    .about-card {
      padding: 26px 20px;
    }
    .plan-card {
      padding: 24px 18px;
    }
    .price-box strong {
      font-size: 18px;
    }
    .price-box em {
      font-size: 34px;
    }
    .flow-list {
      grid-template-columns: 1fr;
    }
    .contact-copy,
    .contact-form-wrap {
      padding: 26px 20px;
    }
    .btn--submit {
      width: 100%;
    }
    .section-title {
      font-size: 27px;
    }
    .lp-footer .container {
      flex-direction: column;
      gap: 8px;
    }
  }

  .subsidy-lp #contact .name-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 7px;
  }
  
  .subsidy-lp #contact .name-grid__item {
    min-width: 0;
  }
  
  .subsidy-lp #contact .name-grid__item input {
    width: 100%;
  }
  
  .subsidy-lp #contact .contact-alert {
    display: none;
    margin-top: 5px;
    color: #e5483f;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
  }
  
  .subsidy-lp #contact .name-grid__item input:invalid:not(:placeholder-shown)
    + .contact-alert {
    display: block;
  }
  
  @media (max-width: 520px) {
    .subsidy-lp #contact .name-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  }

.subsidy-lp .hero-cta {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
}

.subsidy-lp .hero-cta__button {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  min-width: 210px;
  min-height: 76px;
  padding: 13px 26px 11px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 2px 3px 8px rgba(31, 56, 75, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

/* 対象プラン */
.subsidy-lp .hero-cta__button--plan {
  background: linear-gradient(
    100deg,
    #e29eaf 0%,
    #d82158 100%
  );
}

/* お問い合わせ */
.subsidy-lp .hero-cta__button--contact {
  background: linear-gradient(100deg, #0f6ea5 0%, #005470 100%);
}

/* 光沢 */
.subsidy-lp .hero-cta__button::before {
  position: absolute;
  top: -70%;
  left: -45%;
  width: 42%;
  height: 240%;
  background: rgba(255, 255, 255, 0.16);
  content: "";
  transform: rotate(22deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

/* メインコピー */
.subsidy-lp .hero-cta__main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
}

.subsidy-lp .hero-cta__text {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* マイクロコピー */
.subsidy-lp .hero-cta__micro {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

/* ホバー */
.subsidy-lp .hero-cta__button:hover {
  box-shadow: 3px 7px 16px rgba(31, 56, 75, 0.28);
}

/* スマートフォン */

@media (max-width: 520px) {
  .subsidy-lp .hero-cta {
    flex-direction: column;
    gap: 13px;
    width: 100%;
    margin-top: 24px;
  }

  .subsidy-lp .hero-cta__button {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    padding: 12px 25px 10px;
  }

  .subsidy-lp .hero-cta__text {
    font-size: 16px;
  }

  .subsidy-lp .hero-cta__micro {
    font-size: 10px;
  }
}


.benefit-card__image,
.feature-card__icon,
.flow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    font-size: 34px;

    margin: 0 auto 18px;
}


.privacy-policy {
  margin-top: 32px;
  padding: 24px;
  background: #f7f7f7;
  border-radius: 8px;
}

.privacy-policy .title {
  margin: 0 0 12px;
  font-weight: 700;
}

.privacy-policy .text {
  margin: 0 0 12px;
  line-height: 1.8;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.privacy-checkbox input {
  flex-shrink: 0;
  margin-top: 4px;
}

.btn--submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}