/* Design reminder: クリーン・テクノロジー・エディトリアル。白／薄いブルーグレー、直線、#F97316、Noto Sans JP + Oswald。 */
:root {
  font-family: "Noto Sans JP", sans-serif;
  color: #334155;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --orange: #f97316;
  --orange-hover: #ea580c;
  --heading: #0f172a;
  --text: #334155;
  --mist: #f8fafc;
  --line: #e2e8f0;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

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

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

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

img {
  display: block;
  width: 100%;
}

.pc{
  display: block;
}

.sp{
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, .82);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(100% - 32px, 1280px);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .1em;
  white-space: nowrap;
}

.wordmark__mark {
  position: relative;
  width: 23px;
  height: 23px;
  display: inline-block;
  flex: 0 0 auto;
}

.wordmark__mark i {
  position: absolute;
  display: block;
  width: 3px;
  height: 22px;
  background: var(--orange);
  transform: skewX(-26deg);
}

.wordmark__mark i:nth-child(1) {
  left: 2px;
  opacity: .35;
}

.wordmark__mark i:nth-child(2) {
  left: 9px;
  opacity: .7;
}

.wordmark__mark i:nth-child(3) {
  left: 16px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: color 180ms var(--ease-out);
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--orange);
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--heading);
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  padding: 8px 20px 20px;
  border-top: 1px solid #f1f5f9;
  background: #fff;
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 2px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.35;
  transition: transform 150ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: 0 12px 28px rgba(234, 88, 12, .2);
}

.button:active {
  transform: scale(.97);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(249, 115, 22, .24);
  outline-offset: 3px;
}

.button--small {
  padding: 11px 20px;
  font-size: 12px;
}

.button--large {
  min-height: 58px;
  padding: 16px 34px;
  font-size: 16px;
}

.button--outline {
  border-color: #cbd5e1;
  background: #fff;
  color: var(--heading);
}

.button--outline:hover {
  color: var(--orange);
  background: #fff;
  border-color: var(--orange);
  box-shadow: none;
}

.hero-section {
  position: relative;
  min-height: 680px;
  padding: 154px 24px 104px;
  overflow: hidden;
  background: linear-gradient(132deg, #f8fafc 0%, #fff 62%, #fff7ed 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .56;
  background-image: linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(249, 115, 22, .18);
  transform: rotate(-16deg);
}

.hero-orbit::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--orange);
  box-shadow: 0 0 28px rgba(249, 115, 22, .55);
}

.hero-orbit--one {
  width: 460px;
  height: 460px;
  right: -158px;
  top: 58px;
}

.hero-orbit--one::before {
  left: 22px;
  top: 292px;
}

.hero-orbit--two {
  width: 280px;
  height: 280px;
  left: -130px;
  bottom: -100px;
  border-color: rgba(15, 23, 42, .08);
}

.hero-orbit--two::before {
  right: 25px;
  top: 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1024px);
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 24px;
  border: 1px solid var(--orange);
  background: rgba(255, 255, 255, .84);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-kicker {
  margin: 0 0 6px;
  color: var(--heading);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
}

.hero-content h1 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.22;
  letter-spacing: -.045em;
  font-weight: 900;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 800px;
  margin: 30px auto 38px;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 104px 24px;
}

.section--white {
  background: #fff;
}

.section--mist {
  background: var(--mist);
}

.content-wrap {
  width: min(100%, 1030px);
  margin: 0 auto;
}

.content-wrap--wide {
  width: min(100%, 1160px);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}

.section-heading h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.45;
  letter-spacing: -.02em;
  font-weight: 800;
}

.section-rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 19px auto 24px;
  background: var(--orange);
}

.section-description {
  color: #475569;
  font-size: 14px;
  line-height: 2;
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid #e8edf3;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 18px;
  border: 1px solid #e8edf3;
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  width: 25%;
  background: #f8fafc;
  color: var(--heading);
  font-weight: 800;
  text-align: center;
}

.comparison-table thead th:first-child {
  background: #fff;
}

.comparison-table thead .comparison-table__accent {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.comparison-table tbody th {
  background: #f8fafc;
  color: var(--heading);
  font-weight: 800;
}

.comparison-table tbody td:last-child {
  border-color: var(--orange);
  background: #fff7ed;
  color: var(--orange-hover);
  font-weight: 800;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid #e8edf3;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .05);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .1);
}

.case-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e2e8f0;
}

.case-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease-out);
}

.case-card:hover .case-card__image img {
  transform: scale(1.035);
}

.case-card__body {
  padding: 28px 27px 31px;
}

.case-card__number {
  display: block;
  color: var(--orange);
  font: 700 32px/1 "Oswald", sans-serif;
  letter-spacing: .04em;
}

.case-card h3 {
  margin: 10px 0 10px;
  color: var(--heading);
  font-size: 17px;
  font-weight: 800;
}

.case-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

.creation-flow {
  margin-bottom: 38px;
  padding: 37px;
  border: 1px solid #e8edf3;
  background: #f8fafc;
}

.creation-flow h3 {
  margin: 0 0 25px;
  color: var(--heading);
  text-align: center;
  font-size: 17px;
  font-weight: 800;
}

.creation-flow__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.creation-flow__box {
  flex: 1 1 0;
  padding: 24px;
  border: 1px solid #dbe3ed;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.creation-flow__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 38px;
  margin-bottom: 12px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font: 700 15px "Oswald", sans-serif;
}

.creation-flow__screen {
  position: relative;
  width: 52px;
  height: 38px;
  margin-bottom: 12px;
  border: 2px solid #64748b;
  background: linear-gradient(135deg, rgba(14, 165, 233, .12), rgba(249, 115, 22, .16));
}

.creation-flow__screen i {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 18px;
  top: 10px;
  background: var(--orange);
  transform: rotate(45deg);
}

.creation-flow__box strong {
  color: var(--heading);
  font-size: 14px;
  margin-top: 8px;
}

.creation-flow__box small {
  margin-top: 7px;
  color: #64748b;
  font-size: 11px;
}

.creation-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.capability-box {
  padding: 29px 33px;
  border: 1px solid #e8edf3;
}

.capability-box h3 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--heading);
  font-size: 17px;
  font-weight: 800;
}

.capability-box ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.capability-box li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--orange);
  stroke-width: 3;
}

.workflow-panel {
  padding: 42px 34px 38px;
  border: 1px solid #e8edf3;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .055);
  text-align: center;
}

.workflow-strength {
  display: inline-block;
  margin-bottom: 38px;
  padding: 9px 26px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.workflow-strength::before {
  content: "✦";
  margin-right: 7px;
}

.workflow-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list>li {
  display: flex;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
}

.workflow-step {
  width: 100%;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow-step__number {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  margin-bottom: 11px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  font: 700 14px "Oswald", sans-serif;
}

.workflow-step strong {
  max-width: 105px;
  color: var(--heading);
  font-size: 11px;
  line-height: 1.55;
}

.workflow-step small {
  color: #94a3b8;
  font-size: 9px;
}

.workflow-connector {
  flex: 0 0 18px;
  margin-top: 24px;
  border-top: 2px dashed #cbd5e1;
}

.workflow-list>li.is-highlight .workflow-step__number {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(249, 115, 22, .2);
}

.workflow-list>li.is-highlight .workflow-step strong {
  color: var(--orange-hover);
}

.workflow-list>li.is-highlight .workflow-step small {
  color: #fb923c;
}

.workflow-list>li.is-highlight .workflow-connector {
  border-color: var(--orange);
  border-top-style: solid;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.product-card {
  border: 1px solid #e8edf3;
  background: #f8fafc;
}

.product-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e2e8f0;
}

.product-card__image img {
  height: 100%;
  object-fit: cover;
}

.product-card__image--compact,
.product-card__image--large {
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #f1f5f9 58%, #e2e8f0 100%);
}

.product-card__image--compact::before,
.product-card__image--large::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 11%;
  height: 12px;
  background: radial-gradient(ellipse, rgba(15, 23, 42, .18), transparent 70%);
  filter: blur(3px);
}

.oled-product {
  position: relative;
  display: block;
  width: 48%;
  height: 83%;
}

.oled-product--large {
  width: 64%;
  height: 87%;
}

.oled-product__glass {
  position: absolute;
  z-index: 2;
  inset: 2% 12% 29%;
  border: 4px solid #334155;
  background: linear-gradient(145deg, rgba(255, 255, 255, .76), rgba(186, 230, 253, .28) 45%, rgba(255, 247, 237, .52));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8), 0 9px 25px rgba(15, 23, 42, .12);
  overflow: hidden;
}

.oled-product--compact .oled-product__glass {
  inset-inline: 18%;
}

.oled-product__glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 17%, rgba(255, 255, 255, .62) 18%, transparent 23%, transparent 68%, rgba(255, 255, 255, .35) 69%, transparent 74%);
}

.oled-product__glass b {
  position: absolute;
  width: 56%;
  height: 24%;
  left: 22%;
  top: 38%;
  border-radius: 50% 8% 50% 8%;
  background: linear-gradient(90deg, #f97316, #fb923c 45%, #38bdf8);
  filter: drop-shadow(0 0 12px rgba(249, 115, 22, .52));
  transform: rotate(-13deg) skewX(-12deg);
}

.oled-product__glass b::after {
  content: "";
  position: absolute;
  width: 72%;
  height: 36%;
  left: 10%;
  top: 95%;
  border-top: 2px solid rgba(14, 165, 233, .7);
  border-radius: 50%;
}

.oled-product__stem {
  position: absolute;
  z-index: 1;
  left: calc(50% - 4px);
  bottom: 13%;
  width: 8px;
  height: 25%;
  background: linear-gradient(90deg, #1e293b, #64748b, #1e293b);
}

.oled-product__base {
  position: absolute;
  z-index: 3;
  left: 22%;
  right: 22%;
  bottom: 10%;
  height: 7px;
  background: linear-gradient(#64748b, #1e293b);
  box-shadow: 0 4px 8px rgba(15, 23, 42, .22);
}

.oled-product--compact .oled-product__base {
  left: 27%;
  right: 27%;
}

.product-card__body {
  padding: 29px 30px 32px;
  text-align: center;
}

.product-tag {
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid var(--orange);
  color: var(--orange-hover);
  font-size: 10px;
  font-weight: 800;
}

.product-card h3 {
  margin: 11px 0 14px;
  color: var(--heading);
  font: 700 24px/1.3 "Oswald", "Noto Sans JP", sans-serif;
}

.product-card p {
  margin: 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.9;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 104px 24px;
  background: var(--heading);
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px);
  background-size: 56px 56px;
}

.contact-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -300px;
  top: -300px;
  border: 1px solid rgba(249, 115, 22, .3);
  transform: rotate(20deg);
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.contact-heading {
  margin-bottom: 38px;
  text-align: center;
}

.contact-heading>span {
  display: block;
  margin-bottom: 6px;
  color: #fb923c;
  font: 700 14px "Oswald", sans-serif;
  letter-spacing: .18em;
}

.contact-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.45;
  font-weight: 800;
}

.contact-heading p {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 2;
}

.contact-form {
  padding: 44px 48px 48px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--heading);
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0;
  background: #f8fafc;
  color: var(--heading);
  padding: 13px 14px;
  font-size: 13px;
  outline: none;
  transition: border-color 160ms var(--ease-out), background-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .1);
}

.form-submit {
  text-align: center;
}

.form-submit p {
  margin: 0 0 17px;
  color: #64748b;
  font-size: 10px;
}

.site-footer {
  padding: 29px 24px;
  border-top: 1px solid #f1f5f9;
  background: #fff;
}

.site-footer__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
  color: #94a3b8;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  /* .mobile-nav {
    display: block;
  } */

  .workflow-list {
    flex-wrap: wrap;
    gap: 24px 0;
  }

  .workflow-list>li {
    flex: 0 0 25%;
    justify-content: center;
  }

  .workflow-connector {
    display: none;
  }
}

@media (max-width: 820px) {

  .section,
  .contact-section {
    padding: 78px 20px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .case-card {
    display: grid;
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  }

  .case-card__image {
    aspect-ratio: auto;
    min-height: 260px;
  }

  .creation-flow__row {
    flex-direction: column;
  }

  .creation-flow__arrow {
    transform: rotate(90deg);
  }

  .product-grid {
    gap: 22px;
  }

  .workflow-list>li {
    flex-basis: 33.333%;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    width: calc(100% - 24px);
    height: 66px;
  }

  .wordmark {
    font-size: 12px;
    letter-spacing: .05em;
    width:60%;
  }

  .wordmark__mark {
    transform: scale(.82);
    margin-right: -2px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-section {
    min-height: 0;
    padding: 126px 18px 78px;
  }

  .hero-label {
    margin-bottom: 19px;
  }

  .hero-kicker {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 10vw, 43px);
    line-height: 1.3;
  }

  .hero-copy {
    margin: 23px auto 30px;
    font-size: 13px;
    line-height: 1.9;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button--large {
    width: 100%;
    min-height: 54px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .section,
  .contact-section {
    padding: 66px 16px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .section-description {
    font-size: 13px;
  }

  .case-card {
    display: block;
  }

  .case-card__image {
    aspect-ratio: 16/9;
    min-height: 0;
  }

  .creation-flow {
    padding: 25px 18px;
  }

  .capability-box {
    padding: 23px 20px;
  }

  .workflow-panel {
    padding: 30px 15px;
  }

  .workflow-strength {
    padding: 8px 14px;
    font-size: 11px;
  }

  .workflow-list {
    gap: 25px 0;
  }

  .workflow-list>li {
    flex-basis: 50%;
  }

  .workflow-step__number {
    width: 45px;
    height: 45px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card__body {
    padding: 25px 23px 27px;
  }

  .contact-form {
    padding: 28px 20px 31px;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 559px){
  .pc{
    display: none;
  }

  .sp{
    display: block;
  }
  .hero-content h1{
    font-size:29px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: hero-enter 720ms var(--ease-out) both;
  }

  .hero-orbit--one {
    animation: orbit-drift 11s ease-in-out infinite alternate;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-drift {
  from {
    transform: rotate(-16deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(-12deg) translate3d(-18px, 12px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Static HTML additions */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav.is-open {
  display: block;
}

.menu-button .icon-close {
  display: none;
}

.menu-button[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-button[aria-expanded="true"] .icon-close {
  display: block;
}


.scroll-hint span {
  color: var(--orange);
  margin-left: 5px;
}

/* border-collapse時の競合を避け、当製品列の左線を確実にオレンジで表示 */
.comparison-table thead th:last-child,
.comparison-table tbody td:last-child {
  position: relative;
}

.comparison-table thead th:last-child::before,
.comparison-table tbody td:last-child::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  width: 1px;
  background: var(--orange);
  z-index: 2;
}

@media (max-width: 900px) {
  .scroll-hint {
    display: block;
  }
}

.lineup-movie video{
  object-fit: cover;
    aspect-ratio: 16 / 9;
width:100%;
}


/* =========================================================
   以下を css/style.css の最下部に追加：FV 動画レイアウト
   ========================================================= */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  width: min(100%, 1200px);
  margin: 0 auto;
}

.hero-layout .hero-content {
  width: 100%;
  margin: 0;
  text-align: left;
}

.hero-layout .hero-content h1 {
  font-size: clamp(36px, 3.8vw, 52px);
  white-space: nowrap;
}

.hero-layout .hero-copy {
  max-width: 660px;
  margin: 26px 0 34px;
}

.hero-layout .hero-actions {
  justify-content: flex-start;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f172a;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(15, 23, 42, .18);
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    width: min(100%, 720px);
  }

  .hero-layout .hero-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-layout {
    gap: 30px;
  }

  .hero-layout .hero-content h1 {
    font-size: clamp(25px, 7.7vw, 32px);
    white-space: nowrap;
  }

  .hero-layout .hero-copy {
    margin: 22px 0 28px;
  }


  .hero-video {
    border-radius: 6px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
  }
}

.wpcf7 form.spam .wpcf7-response-output{
	display:none;
}
