@charset "UTF-8";

/* ==========================================================
  Foundation
========================================================== */
:root {
  --color-main: #0a2e52;
  --color-main-dark: #06233f;
  --color-support: #1b5fa8;
  --color-accent: #c9a227;
  --color-text: #1a1a1a;
  --color-muted: #5b6b7c;
  --color-mist: #f4f7fb;
  --color-border: #d5dee8;
  --font-jp: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
  --font-en: "Inter", Arial, sans-serif;
  --content-width: 1200px;
}

/* ==========================================================
  Project: Contact form
========================================================== */
.p-form-page {
  background: var(--color-mist);
}

.p-form-hero {
  display: grid;
  min-height: 240px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(6, 35, 63, 0.92), rgba(10, 46, 82, 0.92)),
    url("../img/p-hero__bg.webp") center 58% / cover no-repeat;
  place-items: center;
}

.p-form-hero p {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}

.p-form-hero h1 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: 0;
}

.p-contact-form,
.p-thanks {
  padding-block: 96px 112px;
  background-color: var(--color-mist);
  background-image:
    linear-gradient(rgba(27, 95, 168, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 95, 168, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}

.p-contact-form__inner,
.p-thanks__inner {
  max-width: 840px;
}

.p-contact-form__lead {
  margin: -16px auto 40px;
  color: var(--color-muted);
  text-align: center;
}

.p-contact-form__errors {
  margin-bottom: 24px;
  padding: 20px 24px;
  color: #8e2732;
  background: #fff1f2;
  border-left: 3px solid #ba4050;
}

.p-contact-form__errors p {
  font-weight: 700;
}

.p-contact-form__errors ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.p-contact-form__form {
  padding: 48px 56px 56px;
  background: #fff;
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 12px 32px rgba(10, 46, 82, 0.08);
}

.p-contact-form__field + .p-contact-form__field {
  margin-top: 28px;
}

.p-contact-form__field label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--color-main);
  font-weight: 700;
}

.p-contact-form__field input,
.p-contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid #b8c7d6;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.p-contact-form__field textarea {
  min-height: 220px;
  resize: vertical;
}

.p-contact-form__field input:focus,
.p-contact-form__field textarea:focus {
  border-color: var(--color-support);
  box-shadow: 0 0 0 3px rgba(27, 95, 168, 0.13);
}

.c-required,
.c-optional {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 1px 7px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.c-required {
  background: var(--color-support);
}

.c-optional {
  color: var(--color-muted);
  background: #e8edf2;
}

.p-contact-form__consent {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
  cursor: pointer;
}

.p-contact-form__consent input {
  width: 18px;
  height: 18px;
  margin: 6px 0 0;
  accent-color: var(--color-support);
}

.p-contact-form__consent a {
  color: var(--color-support);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-contact-form__consent .c-required {
  margin-left: 8px;
  text-decoration: none;
}

.p-contact-form__turnstile {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.p-contact-form__turnstile .cf-turnstile {
  width: 100%;
}

.p-contact-form__submit {
  margin-top: 32px;
  text-align: center;
}

.p-contact-form__submit .c-button {
  min-width: 320px;
  border: 0;
  cursor: pointer;
}

.p-contact-form__submit .c-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.p-contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.p-thanks__inner {
  padding: 64px 56px;
  text-align: center;
  background: #fff;
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 12px 32px rgba(10, 46, 82, 0.08);
}

.p-thanks__label {
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
}

.p-thanks h2 {
  margin-top: 8px;
  color: var(--color-main);
  font-size: 28px;
  font-weight: 500;
}

.p-thanks__mark {
  display: block;
  width: 8px;
  height: 8px;
  margin: 22px auto;
  background: var(--color-accent);
  transform: rotate(45deg);
}

.p-thanks .c-button {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .p-form-hero {
    min-height: 180px;
  }

  .p-form-hero p {
    font-size: 10px;
  }

  .p-form-hero h1 {
    font-size: 24px;
  }

  .p-contact-form,
  .p-thanks {
    padding-block: 56px 72px;
    background-size: 24px 24px;
  }

  .p-contact-form__inner,
  .p-thanks__inner {
    width: min(calc(100% - 32px), 840px);
  }

  .p-contact-form__lead {
    margin: -8px auto 28px;
    font-size: 13px;
    text-align: left;
  }

  .p-contact-form__form {
    padding: 32px 20px 40px;
  }

  .p-contact-form__field + .p-contact-form__field {
    margin-top: 24px;
  }

  .p-contact-form__field input,
  .p-contact-form__field textarea {
    font-size: 16px;
  }

  .p-contact-form__field textarea {
    min-height: 180px;
  }

  .p-contact-form__consent {
    justify-content: flex-start;
    margin-top: 28px;
    font-size: 12px;
  }

  .p-contact-form__turnstile {
    margin-top: 24px;
  }

  .p-contact-form__submit .c-button {
    width: 100%;
    min-width: 0;
  }

  .p-thanks__inner {
    padding: 48px 20px;
  }

  .p-thanks h2 {
    font-size: 22px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  padding-top: 84px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.85;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

/* ==========================================================
  Layout
========================================================== */
.l-inner {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
}

.l-section {
  padding-block: 96px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 84px;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--content-width));
  height: 100%;
  margin-inline: auto;
}

.l-footer {
  padding-block: 56px;
  color: #aebfd0;
  background: var(--color-main-dark);
}

.l-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
}

/* ==========================================================
  Component
========================================================== */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.c-button--header,
.c-button--primary {
  color: #fff;
  background: var(--color-support);
}

.c-button--header {
  min-height: 40px;
  padding: 10px 26px;
  font-size: 13px;
  font-weight: 700;
}

.c-button--outline-gold {
  color: var(--color-accent);
  border-color: var(--color-accent);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

.c-button--outline-navy {
  min-height: 40px;
  padding: 9px 24px;
  color: var(--color-main);
  border-color: var(--color-main);
}

.c-button--gold {
  min-width: 272px;
  color: var(--color-main);
  font-weight: 700;
  background: #d4aa20;
}

.c-button:hover {
  opacity: 0.82;
}

.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  text-align: center;
}

.c-section-title__en {
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 3px;
}

.c-section-title__ja {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
}

.c-section-title__rule {
  width: 103px;
  height: auto;
}

.c-section-title--light .c-section-title__ja {
  color: #fff;
}

.tm {
  font-size: 0.6em;
  vertical-align: super;
}

/* ==========================================================
  Header
========================================================== */
.p-header__logo {
  width: 180px;
}

.p-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.p-header__nav a {
  font-size: 14px;
}

.p-header__mobile-nav,
.p-header__menu {
  display: none;
}

/* ==========================================================
  Hero
========================================================== */
.p-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  color: #fff;
  background-image: linear-gradient(180deg, rgba(10, 46, 82, 0.8) 0%, rgba(22, 103, 184, 0.08) 50%, rgba(10, 46, 82, 0.8) 100%), url("../img/p-hero__bg.webp");
  background-position: center;
  background-size: cover;
}

.p-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.p-hero__label {
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 6px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

.p-hero__title {
  font-size: 44px;
  line-height: 1.45;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.p-hero__sub-title {
  color: var(--color-accent);
  font-size: 22px;
  line-height: 1.45;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.p-hero__small {
  font-size: 12px;
}

.p-hero__rule {
  width: 148px;
}

.p-hero__lead {
  font-size: 16px;
  line-height: 1.9;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.p-hero__buttons {
  display: flex;
  gap: 14px;
}

.p-hero__stats {
  display: none;
}

/* ==========================================================
  Performance
========================================================== */
.p-specs {
  position: relative;
  min-height: 581px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.6) 43%, rgba(15, 70, 120, 0.6) 100%), url("../img/p-specs__bg.webp");
  background-position: center;
  background-size: cover;
}

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

.p-specs__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 213px;
  padding: 32px 16px 26px;
  text-align: center;
  background: #fff;
  border-top: 2px solid var(--color-accent);
}

.p-specs__number {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}

.p-specs__number span {
  margin-left: 4px;
  color: var(--color-accent);
  font-size: 22px;
  font-weight: 500;
}

.p-specs__mark,
.p-scenes__mark,
.p-products__mark {
  display: block;
  width: 28px;
  height: 4px;
  background: var(--color-accent);
}

.p-specs__card h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.p-specs__card > p:last-child {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

.p-specs__note {
  margin-top: 38px;
  color: #666;
  font-size: 12px;
  text-align: center;
}

.p-cta-mini {
  display: none;
}

/* ==========================================================
  Use case
========================================================== */
.p-scenes {
  background: #fff;
}

.p-scenes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.p-scenes__item {
  min-width: 0;
}

.p-scenes__image {
  width: 100%;
  aspect-ratio: 584 / 300;
  object-fit: cover;
}

.p-scenes__label,
.p-products__label,
.p-evidence__label,
.p-concept__point-label,
.p-products__related-label {
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 2px;
}

.p-scenes__label {
  margin-top: 18px;
}

.p-scenes__item h3 {
  margin-top: 8px;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.5;
}

.p-scenes__mark {
  width: 24px;
  height: 2px;
  margin-top: 12px;
}

.p-scenes__body {
  margin-top: 14px;
  color: var(--color-muted);
  line-height: 1.85;
}

/* ==========================================================
  Concept
========================================================== */
.p-concept {
  min-height: 682px;
  background-image: linear-gradient(90deg, rgba(244, 247, 251, 0.82), rgba(244, 247, 251, 0.95)), url("../img/p-concept__bg.webp");
  background-position: center;
  background-size: cover;
}

.p-concept__content {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.p-concept__copy {
  font-size: 15px;
  line-height: 2;
}

.p-concept__copy > p + p {
  margin-top: 22px;
}

.p-concept__point {
  margin-top: 28px;
  padding: 20px 24px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.85;
  background: #fff;
  border-top: 2px solid var(--color-accent);
}

.p-concept__point-label {
  margin-bottom: 8px;
}

.p-concept__image {
  width: 100%;
}

/* ==========================================================
  Strengths
========================================================== */
.p-strengths {
  background: #fff;
}

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

.p-strengths__card {
  position: relative;
  min-height: 300px;
  padding: 30px 24px 24px;
  background: var(--color-mist);
  border-top: 2px solid var(--color-accent);
}

.p-strengths__card > img {
  display: block;
  width: 44px;
  margin: 10px auto 16px;
}

.p-strengths__number {
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
}

.p-strengths__card h3 {
  color: var(--color-main);
  font-size: 15px;
  line-height: 1.5;
}

.p-strengths__sub {
  margin-top: 6px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 500;
}

.p-strengths__body {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.85;
}

/* ==========================================================
  Evidence
========================================================== */
.p-evidence {
  background-color: #f2f7fc;
  background-image: linear-gradient(rgba(216, 228, 240, 0.65) 1px, transparent 1px), linear-gradient(90deg, rgba(216, 228, 240, 0.55) 1px, transparent 1px);
  background-size: 40px 40px;
}

.p-evidence__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}

.p-evidence__graph > img {
  width: 100%;
  background: #fff;
}

.p-evidence__graph figcaption {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 12px;
}

.p-evidence__data {
  min-height: 303px;
  padding: 28px 32px 20px;
  background: #fff;
  border-top: 2px solid var(--color-accent);
}

.p-evidence__data h3 {
  margin-top: 5px;
  color: var(--color-main);
  font-size: 17px;
}

.p-evidence__data dl {
  margin-top: 12px;
}

.p-evidence__data dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
  border-bottom: 1px solid var(--color-border);
}

.p-evidence__data dt {
  font-size: 14px;
}

.p-evidence__data dd {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.p-evidence__data dd small {
  color: var(--color-muted);
  font-size: 11px;
}

.p-evidence__data dd strong {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 24px;
  line-height: 1;
}

.p-evidence__data dd span {
  color: var(--color-accent);
  font-size: 11px;
}

.p-evidence__note {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 10px;
}

.p-evidence__cert {
  margin-top: 36px;
  text-align: center;
}

.p-evidence__cert h3 {
  color: var(--color-main);
  font-size: 16px;
}

.p-evidence__cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.p-evidence__cert-grid p {
  display: grid;
  min-height: 64px;
  place-items: center;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
  background: #fff;
  border: 1px solid var(--color-border);
}

/* ==========================================================
  Products
========================================================== */
.p-products {
  background: #fff;
}

.p-products__main {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
  padding: 40px;
  background: var(--color-mist);
  border-top: 2px solid var(--color-accent);
}

.p-products__main h3 {
  margin-top: 8px;
  color: var(--color-main);
  font-size: 24px;
  line-height: 1.5;
}

.p-products__mark {
  width: 48px;
  height: 2px;
  margin-block: 12px;
}

.p-products__main-copy > p:not(.p-products__label) {
  color: var(--color-muted);
  line-height: 1.85;
}

.p-products__main-copy .c-button {
  margin-top: 18px;
}

.p-products__main-image {
  width: 340px;
  aspect-ratio: 340 / 220;
  object-fit: cover;
}

.p-products__related-label {
  width: max-content;
  margin: 40px auto 24px;
  padding: 4px 16px;
  color: var(--color-main);
  background: #eef4fa;
  letter-spacing: 0;
}

.p-products__related {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.p-products__sub {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--color-border);
}

.p-products__sub img {
  width: 90px;
  aspect-ratio: 1;
  object-fit: cover;
}

.p-products__sub h3 {
  color: var(--color-main);
  font-size: 16px;
}

.p-products__sub p {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.p-products__sub a {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-support);
  font-size: 12px;
}

/* ==========================================================
  Company / CTA / Footer
========================================================== */
.p-company {
  padding-block: 40px;
  background: var(--color-mist);
}

.p-company__inner {
  display: grid;
  grid-template-columns: 176px 1fr auto;
  gap: 28px;
  align-items: center;
}

.p-company__inner > img {
  width: 176px;
}

.p-company__copy h2 {
  color: var(--color-main);
  font-size: 18px;
}

.p-company__copy p {
  color: var(--color-muted);
  font-size: 13px;
}

.p-cta {
  padding-block: 72px;
  color: #c9d4df;
  background: var(--color-main);
}

.p-cta__inner {
  text-align: center;
}

.p-cta .c-section-title {
  margin-bottom: 24px;
}

.p-cta__inner > p {
  font-size: 14px;
}

.p-cta__inner > .c-button {
  margin-top: 34px;
}

.p-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.p-footer__links > p {
  margin-bottom: 4px;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 3px;
}

.p-footer__links a {
  font-size: 12px;
}

.p-footer__brand {
  text-align: right;
}

.p-footer__brand img {
  width: 150px;
  margin-left: auto;
}

.p-footer__brand p {
  margin-top: 8px;
  color: #71879c;
  font-size: 10px;
}

/* ==========================================================
  Utility
========================================================== */
.u-sp {
  display: none;
}
.u-sp-ok {
  display: none;
}

@media (max-width: 767px) {
  /* ========================================================
    SP Foundation / Layout
  ======================================================== */
  body {
    padding-top: 64px;
    font-size: 13px;
    line-height: 1.75;
  }

  .l-inner {
    width: calc(100% - 40px);
  }

  .l-section {
    padding-block: 64px;
  }

  .l-header {
    height: 64px;
  }

  .l-header__inner {
    width: calc(100% - 32px);
  }

  .l-footer {
    padding: 58px 20px 30px;
  }

  .l-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
    width: 100%;
  }

  .c-button {
    width: 100%;
    min-height: 44px;
    padding: 11px 20px;
  }

  .c-button--header {
    width: auto;
    min-height: 40px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .c-section-title {
    gap: 8px;
    margin-bottom: 36px;
  }

  .c-section-title__en {
    font-size: 10px;
    letter-spacing: 0;
  }

  .c-section-title__ja {
    color: var(--color-main);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }

  .c-section-title__rule {
    width: 103px;
  }

  /* ========================================================
    SP Header / Hero
  ======================================================== */
  .p-header__logo {
    width: 104px;
  }

  .p-header__nav {
    display: none;
  }

  .p-header__menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
    list-style: none;
  }

  .p-header__menu::-webkit-details-marker {
    display: none;
  }

  .p-header__menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-main);
  }

  .p-header__mobile-nav {
    position: relative;
    display: block;
  }

  .p-header__mobile-nav nav {
    position: absolute;
    top: 44px;
    right: -16px;
    display: flex;
    flex-direction: column;
    width: 220px;
    padding: 12px 20px;
    color: #fff;
    background: var(--color-main);
    box-shadow: 0 8px 18px rgba(6, 35, 63, 0.22);
  }

  .p-header__mobile-nav nav a {
    padding-block: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .p-header__mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .p-hero {
    min-height: 654px;
    background-image: linear-gradient(180deg, rgba(10, 46, 82, 0.5), rgba(10, 46, 82, 0.34)), url("../img/p-hero__bg-sp.webp");
    background-position: center;
  }

  .p-hero__inner {
    align-items: stretch;
    width: calc(100% - 40px);
    gap: 16px;
    padding-top: 32px;
    text-align: left;
  }

  .p-hero__label {
    font-size: 10px;
    letter-spacing: 0;
    text-align: left;
  }

  .p-hero__title {
    font-size: 28px;
    line-height: 1.55;
  }

  .p-hero__rule {
    display: none;
  }

  .p-hero__lead {
    font-size: 12px;
    line-height: 1.9;
    text-align: left;
  }

  .p-hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
  }

  .p-hero__buttons .c-button--outline-gold {
    order: 1;
    color: #fff;
    background: var(--color-support);
    border-color: var(--color-support);
    text-shadow: none;
  }

  .p-hero__buttons .c-button--primary {
    order: 2;
    color: var(--color-support);
    background: #fff;
    border-color: var(--color-support);
  }

  .p-hero__stats {
    display: block;
    margin-top: 18px;
    padding: 16px;
    text-align: center;
    background: rgba(6, 35, 63, 0.84);
    border: 1px solid var(--color-accent);
  }

  .p-hero__stats-label {
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 500;
  }

  .p-hero__stats-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 8px;
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 600;
  }

  .p-hero__stats-values span {
    position: relative;
    white-space: nowrap;
  }

  .p-hero__stats-values small {
    position: absolute;
    top: 25px;
    left: 50%;
    color: var(--color-accent);
    font-family: var(--font-jp);
    font-size: 8px;
    font-weight: 400;
    transform: translateX(-50%);
  }

  .p-hero__stats-note {
    margin-top: 14px;
    font-size: 11px;
  }

  /* ========================================================
    SP Performance / mini CTA
  ======================================================== */
  .p-specs {
    min-height: 863px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(15, 70, 120, 0.25)), url("../img/p-specs__bg-sp.webp");
    background-position: center;
  }

  .p-specs__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .p-specs__card {
    min-height: 124px;
    gap: 7px;
    padding: 14px 12px 12px;
  }

  .p-specs__number {
    font-size: 42px;
  }

  .p-specs__number span {
    font-size: 17px;
  }

  .p-specs__mark {
    width: 24px;
    height: 2px;
  }

  .p-specs__card h3 {
    font-size: 13px;
  }

  .p-specs__card > p:last-child {
    font-size: 10px;
  }

  .p-specs__note {
    margin-top: 24px;
    font-size: 10px;
  }

  .p-cta-mini {
    display: block;
    padding-block: 28px;
    color: #fff;
    background: var(--color-main);
  }

  .p-cta-mini__inner {
    text-align: center;
  }

  .p-cta-mini__inner p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
  }

  .p-cta-mini__inner .c-button {
    margin-top: 14px;
  }

  /* ========================================================
    SP Use case / Concept
  ======================================================== */
  .p-scenes__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-scenes__item {
    min-height: 288px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-accent);
  }

  .p-scenes__image {
    aspect-ratio: 584 / 300;
  }

  .p-scenes__label {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0;
  }

  .p-scenes__item h3 {
    margin-top: 3px;
    color: var(--color-main);
    font-size: 20px;
  }

  .p-scenes__mark {
    margin-top: 3px;
  }

  .p-scenes__body {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.7;
  }

  .p-concept {
    padding-block: 48px;
    background-image: linear-gradient(rgba(244, 247, 251, 0.5), rgba(244, 247, 251, 0.68)), url("../img/p-concept__bg-sp.webp");
  }

  .p-concept__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .p-concept__copy {
    font-size: 12px;
    line-height: 1.75;
  }

  .p-concept__copy > p + p {
    margin-top: 20px;
  }

  .p-concept__point {
    margin-top: 22px;
    padding: 16px;
    font-size: 12px;
    line-height: 1.7;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-accent);
  }

  .p-concept__image {
    width: 100%;
    background: #fff;
  }

  /* ========================================================
    SP Strengths / Evidence
  ======================================================== */
  .p-strengths {
    background: var(--color-mist);
  }

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

  .p-strengths__card {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    min-height: 158px;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-accent);
  }

  .p-strengths__card > img {
    display: none;
  }

  .p-strengths__card h3 {
    font-size: 15px;
  }

  .p-strengths__body {
    font-size: 11px;
    line-height: 1.7;
  }

  .p-evidence {
    background-size: 40px 40px;
  }

  .p-evidence__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .p-evidence__data {
    order: 1;
    min-height: 276px;
    padding: 18px 16px 14px;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-accent);
  }

  .p-evidence__data h3 {
    font-size: 15px;
  }

  .p-evidence__data dl > div {
    padding-block: 10px;
  }

  .p-evidence__data dt {
    font-size: 12px;
  }

  .p-evidence__data dd small {
    font-size: 9px;
  }

  .p-evidence__data dd strong {
    font-size: 22px;
  }

  .p-evidence__graph {
    order: 2;
  }

  .p-evidence__graph-sp {
    padding: 18px 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-accent);
  }

  .p-evidence__graph-sp.u-sp-ok,
  .p-evidence__cert > .u-sp-ok {
    display: block;
  }

  .p-evidence__graph-sp h3 {
    color: var(--color-main);
    font-size: 14px;
  }

  .p-evidence__graph-sp > p {
    color: var(--color-muted);
    font-size: 10px;
  }

  .p-evidence__graph-sp img {
    width: 100%;
    margin-top: 10px;
  }

  .p-evidence__cert {
    margin-top: 28px;
  }

  .p-evidence__cert h3 {
    font-size: 14px;
  }

  .p-evidence__cert > p {
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 11px;
  }

  /* ========================================================
    SP Products / Company / CTA / Footer
  ======================================================== */
  .p-products__main {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-accent);
  }

  .p-products__main h3 {
    font-size: 22px;
  }

  .p-products__main-image {
    width: 100%;
  }

  .p-products__main-copy > p:not(.p-products__label) {
    font-size: 12px;
    line-height: 1.75;
  }

  .p-products__mark {
    display: none;
  }

  .p-products__related-label {
    margin-block: 38px 16px;
    padding: 0;
    color: var(--color-accent);
    background: transparent;
    letter-spacing: 0;
  }

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

  .p-products__sub {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 16px;
    border-top: 2px solid var(--color-accent);
  }

  .p-products__sub img {
    width: 64px;
  }

  .p-products__sub h3 {
    font-size: 15px;
  }

  .p-products__sub p {
    font-size: 11px;
  }

  .p-company {
    padding-block: 32px;
  }

  .p-company__inner {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    align-items: center;
    gap: 14px;
  }

  .p-company__inner > img {
    width: 140px;
  }

  .p-company__copy h2 {
    font-size: 18px;
  }

  .p-company__copy p {
    margin-top: 8px;
    font-size: 11px;
  }

  .p-company__inner .c-button {
    width: 200px;
    margin-top: 4px;
  }

  .p-cta {
    padding-block: 54px;
  }

  .p-cta .c-section-title__ja {
    color: #fff;
    font-size: 20px;
  }

  .p-cta__inner > p {
    font-size: 12px;
    line-height: 1.8;
  }

  .p-cta__inner > .c-button {
    margin-top: 28px;
    color: #fff;
    background: var(--color-support);
  }

  .p-footer__links {
    gap: 6px;
  }

  .p-footer__links > p {
    display: none;
  }

  .p-footer__links a {
    font-size: 10px;
  }

  .p-footer__brand {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
  }

  .p-footer__brand img {
    position: absolute;
    right: 34px;
    width: 96px;
    margin-top: -148px;
  }

  .p-footer__brand p {
    margin-top: 12px;
    font-size: 9px;
  }

  .u-pc {
    /* display: none !important; */
  }
  .u-pc-ok {
    display: none !important;
  }

  .u-sp {
    /* display: initial; */
  }
  .u-sp-ok {
    display: initial;
  }
.p-evidence__cert-grid {
  gap: 4px;
}
.p-evidence__cert-grid p {
  font-size: 10px;
}
}
