:root {
  --se-blue: #00a2fa;
  --se-cyan: #48c8ff;
  --se-teal: #0abfb6;
  --se-navy: #141c2b;
  --se-deep: #09111e;
  --se-ink: #222938;
  --se-muted: #5d6674;
  --se-line: #dce3eb;
  --se-soft: #f4f7fa;
  --se-white: #ffffff;
  --se-radius: 8px;
  --se-shadow: 0 24px 60px rgba(13, 28, 48, .13);
  --se-ease: cubic-bezier(.2, .72, .2, 1);
}

html {
  overflow-x: hidden;
}

.se-page {
  margin: 0;
  background: var(--se-white);
  color: var(--se-ink);
  font-family: "Noto Sans JP", YuGothic, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

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

.se-page img {
  display: block;
  width: 100%;
}

.se-page a {
  color: inherit;
  text-decoration: none;
}

/* Keep the injected JOLLYGOOD+ header colors above page-level link inheritance. */
.se-page .glass-nav__link {
  color: rgba(255, 255, 255, .88);
}

.se-page .glass-nav__link:hover {
  color: #fff;
}

.se-page .glass-nav__cta {
  color: rgba(255, 255, 255, .9);
}

.se-page .glass-nav.scrolled .glass-nav__link {
  color: var(--jg-text-sub);
}

.se-page .glass-nav.scrolled .glass-nav__cta {
  color: var(--jg-text);
}

.se-page .glass-nav.scrolled .glass-nav__cta--lang-en,
.se-page .glass-nav.scrolled .glass-nav__cta--lang-jp,
.se-page .glass-nav.scrolled .glass-nav__cta--mypage,
.se-page .glass-nav.scrolled .glass-nav__cta--app-dl {
  color: #fff;
}

.se-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.se-section {
  padding: 112px 0;
}

.se-eyebrow,
.se-kicker {
  display: block;
  color: var(--se-blue);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
}

.se-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.se-heading--split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  max-width: none;
  gap: 84px;
}

.se-heading h2 {
  margin: 14px 0 0;
  color: var(--se-navy);
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.25;
}

.se-heading > p,
.se-heading--split > p {
  margin: 20px 0 0;
  color: var(--se-muted);
  font-size: 17px;
  line-height: 2;
}

.se-heading--split > p {
  margin: 0 0 8px;
}

.se-heading--light h2 {
  color: #fff;
}

.se-heading--light > p {
  color: rgba(255, 255, 255, .72);
}

.se-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.se-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform .25s var(--se-ease), box-shadow .25s var(--se-ease), background .25s var(--se-ease);
}

.se-btn:hover {
  transform: translateY(-2px);
}

.se-btn--primary {
  background: linear-gradient(135deg, var(--se-blue), var(--se-teal));
  box-shadow: 0 16px 36px rgba(0, 162, 250, .28);
  color: #fff;
}

.se-btn--primary:hover {
  box-shadow: 0 20px 44px rgba(0, 162, 250, .38);
}

.se-btn--glass {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.se-btn--glass:hover {
  background: rgba(255, 255, 255, .15);
}

.se-js .se-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--se-ease), transform .75s var(--se-ease);
}

.se-js .se-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.se-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--se-deep);
  color: #fff;
}

.se-hero__media,
.se-hero__veil {
  position: absolute;
  inset: 0;
}

.se-hero__media {
  background: url("/safety-event/assets/hero-vr-safety-event.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.se-hero__veil {
  background:
    linear-gradient(90deg, rgba(6, 14, 26, .96) 0%, rgba(7, 16, 29, .9) 35%, rgba(7, 16, 29, .44) 68%, rgba(7, 16, 29, .14) 100%),
    linear-gradient(180deg, rgba(7, 16, 29, .38), rgba(7, 16, 29, .26));
}

.se-hero__inner {
  position: relative;
  z-index: 1;
  padding: 154px 0 88px;
}

.se-hero__copy {
  max-width: 720px;
}

.se-kicker {
  display: inline-flex;
  padding: 7px 13px;
  border: 1px solid rgba(72, 200, 255, .4);
  border-radius: 999px;
  background: rgba(0, 162, 250, .13);
  color: #92dcff;
  letter-spacing: .08em;
}

.se-hero h1 {
  margin: 25px 0 22px;
  font-size: clamp(3.15rem, 6.2vw, 6rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.16;
}

.se-hero h1 em {
  color: #62d1ff;
  font-style: normal;
}

.se-hero__lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.se-hero__facts {
  display: flex;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.se-hero__facts li {
  min-width: 150px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.se-hero__facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.se-hero__facts strong,
.se-hero__facts span {
  display: block;
}

.se-hero__facts strong {
  color: #fff;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.se-hero__facts span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  font-weight: 600;
}

.se-scroll {
  position: absolute;
  right: 34px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .62);
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.se-scroll i {
  width: 1px;
  height: 54px;
  background: linear-gradient(#fff, transparent);
}

.se-band {
  border-bottom: 1px solid var(--se-line);
  background: #fff;
}

.se-band__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.se-band p {
  margin: 0;
  color: var(--se-muted);
  font-size: 15px;
  font-weight: 700;
}

.se-band ul {
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.se-band li {
  position: relative;
  color: var(--se-navy);
  font-size: 16px;
  font-weight: 800;
}

.se-band li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -19px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--se-blue);
}

.se-band li:first-child::before {
  display: none;
}

.se-problems {
  background:
    linear-gradient(rgba(20, 28, 43, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 28, 43, .025) 1px, transparent 1px),
    #fff;
  background-size: 42px 42px;
}

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

.se-problem {
  overflow: hidden;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(13, 28, 48, .08);
}

.se-problem__image {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.se-problem__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 16, 29, .72));
  pointer-events: none;
}

.se-problem__image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .8s var(--se-ease);
}

.se-problem:hover .se-problem__image img {
  transform: scale(1.025);
}

.se-problem__image > span {
  position: absolute;
  right: 20px;
  bottom: 14px;
  z-index: 1;
  color: var(--se-blue);
  font-family: "Barlow", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.se-problem__copy {
  padding: 26px 28px 30px;
}

.se-problem h3 {
  margin: 0 0 10px;
  color: var(--se-navy);
  font-size: 22px;
  line-height: 1.45;
}

.se-problem p {
  margin: 0;
  color: var(--se-muted);
  font-size: 16px;
  line-height: 1.85;
}

/* 紹介映像。課題提示の直後に置き、共感した状態で90秒を見てもらう */
.se-movie {
  background: var(--se-white);
}

.se-movie__intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.se-movie__intro p {
  margin: 20px 0 0;
  color: var(--se-muted);
  font-size: 16px;
  line-height: 1.9;
}

.se-movie__frame {
  margin: 0;
  max-width: 960px;
  margin-inline: auto;
}

/* 16:9を維持したまま可変。iframeは高さを持たないので比率箱で支える */
.se-movie__ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: var(--se-deep);
  box-shadow: var(--se-shadow);
}

.se-movie__ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.se-movie figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: var(--se-muted);
  font-size: 14px;
}

.se-movie figcaption a {
  color: var(--se-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--se-ease);
}

.se-movie figcaption a:hover {
  border-bottom-color: var(--se-blue);
}

@media (max-width: 640px) {
  .se-movie__intro {
    margin-bottom: 32px;
  }

  .se-movie__ratio {
    border-radius: 6px;
  }
}

.se-ready {
  position: relative;
  overflow: hidden;
  background: var(--se-soft);
}

.se-ready::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(0, 162, 250, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(0, 162, 250, .025), 0 0 0 180px rgba(0, 162, 250, .018);
}

.se-ready__intro {
  position: relative;
  max-width: 900px;
  margin-bottom: 54px;
}

.se-ready__intro h2 {
  margin: 14px 0 22px;
  color: var(--se-navy);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.24;
}

.se-ready__intro p {
  max-width: 780px;
  margin: 0;
  color: var(--se-muted);
  font-size: 18px;
  line-height: 2;
}

.se-ready__story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
}

.se-ready__before,
.se-ready__after {
  padding: 38px 40px 42px;
  border-radius: var(--se-radius);
}

.se-ready__before {
  border: 1px solid #d6dde5;
  background: linear-gradient(135deg, rgba(93, 102, 116, .05), transparent 55%), #fff;
}

.se-ready__after {
  border: 1px solid rgba(0, 162, 250, .36);
  background: linear-gradient(145deg, rgba(0, 162, 250, .12), rgba(10, 191, 182, .05) 60%), #fff;
  box-shadow: 0 24px 60px rgba(0, 162, 250, .13);
}

.se-ready__label {
  color: #6b7582;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.se-ready__after .se-ready__label {
  color: #0279bb;
}

.se-ready__before h3,
.se-ready__after h3 {
  margin: 16px 0 26px;
  color: var(--se-navy);
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  letter-spacing: -.03em;
  line-height: 1.45;
}

.se-ready__before ul,
.se-ready__after ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.se-ready__before li {
  position: relative;
  padding: 12px 14px 12px 46px;
  border: 1px solid #e2e6eb;
  background: rgba(244, 247, 250, .82);
  color: #5e6773;
  font-size: 16px;
  font-weight: 700;
}

.se-ready__before li::before {
  content: "—";
  position: absolute;
  top: 11px;
  left: 16px;
  color: #9aa3ad;
}

.se-ready__after li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: var(--se-navy);
  font-size: 16px;
  font-weight: 800;
}

.se-ready__after li span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--se-blue);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
}

.se-ready__bridge {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.se-ready__bridge span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #dff4ff;
  color: #0279bb;
  font-size: 12px;
  font-weight: 800;
}

.se-ready__bridge strong {
  color: var(--se-navy);
  font-size: 15px;
}

.se-ready__bridge i {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--se-blue), var(--se-teal));
  box-shadow: 0 15px 34px rgba(0, 162, 250, .22);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 30px;
  font-style: normal;
}

.se-ready__promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 26px;
  margin: 28px 0 0;
  padding: 19px 24px;
  border-left: 4px solid var(--se-blue);
  background: var(--se-navy);
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
}

.se-ready__promise strong {
  color: #fff;
  font-size: 18px;
}

.se-turn {
  position: relative;
  background: var(--se-navy);
  color: #fff;
}

.se-turn::after {
  content: "360°";
  position: absolute;
  right: -20px;
  top: 32px;
  color: rgba(255, 255, 255, .035);
  font-family: "Barlow", sans-serif;
  font-size: min(26vw, 360px);
  font-weight: 800;
  line-height: 1;
}

.se-turn__statement {
  position: relative;
  z-index: 1;
  max-width: 930px;
}

.se-turn__statement p {
  margin: 18px 0 68px;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.28;
}

.se-turn__statement em {
  color: var(--se-cyan);
  font-style: normal;
}

.se-experience {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.se-experience__card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--se-radius);
  background: rgba(255, 255, 255, .045);
}

.se-experience__card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.se-experience__card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 11, 20, .8));
  pointer-events: none;
}

.se-experience__card figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.se-experience__card figcaption {
  position: absolute;
  right: 22px;
  bottom: 17px;
  left: 22px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.se-experience__card figcaption span {
  font-family: "Barlow", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.se-experience__card figcaption small,
.se-experience__step small {
  color: var(--se-cyan);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.se-experience__copy {
  padding: 30px 30px 34px;
}

.se-experience__copy > h3,
.se-experience__step h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
}

.se-experience__copy p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.9;
}

.se-experience__card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
}

.se-experience__card--wide figure img {
  height: 100%;
  min-height: 440px;
  aspect-ratio: auto;
}

.se-experience__card--wide .se-experience__copy {
  display: grid;
  align-content: center;
  gap: 32px;
  padding: 38px;
}

.se-experience__step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
}

.se-experience__step > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(72, 200, 255, .48);
  border-radius: 50%;
  color: var(--se-cyan);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.se-experience__step small {
  display: block;
  margin: 1px 0 5px;
}

.se-experience__step h3 {
  font-size: 21px;
}

.se-industries {
  background: var(--se-soft);
}

.se-industry-list {
  display: grid;
  gap: 84px;
}

.se-industry {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  align-items: center;
  gap: 64px;
}

.se-industry--reverse {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
}

.se-industry--reverse .se-industry__image {
  grid-column: 2;
}

.se-industry--reverse .se-industry__copy {
  grid-column: 1;
  grid-row: 1;
}

.se-industry__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--se-radius);
  box-shadow: var(--se-shadow);
}

.se-industry__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8, 16, 30, .72));
  pointer-events: none;
}

.se-industry__image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .8s var(--se-ease);
}

.se-industry:hover .se-industry__image img {
  transform: scale(1.025);
}

.se-industry__image > span {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, .92);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.se-industry__copy small {
  color: var(--se-blue);
  font-size: 14px;
  font-weight: 800;
}

.se-industry__copy h3 {
  margin: 10px 0 18px;
  color: var(--se-navy);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -.035em;
  line-height: 1.35;
}

.se-industry__copy p {
  margin: 0;
  color: var(--se-muted);
  line-height: 2;
}

.se-industry__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.se-industry__copy li {
  padding: 5px 10px;
  border: 1px solid #cbd9e5;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #4c5e70;
  font-size: 14px;
  font-weight: 700;
}

.se-industry__copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0279bb;
  font-size: 15px;
  font-weight: 800;
}

.se-industry__copy a::after {
  content: "→";
  transition: transform .2s ease;
}

.se-industry__copy a:hover::after {
  transform: translateX(4px);
}

.se-package {
  position: relative;
  overflow: hidden;
  background: var(--se-deep);
  color: #fff;
}

.se-package::before {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -45%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(72, 200, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 120px rgba(72, 200, 255, .025), 0 0 0 240px rgba(72, 200, 255, .015);
}

.se-package__compare {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 56px 1.15fr;
  align-items: stretch;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .035);
}

.se-package__compare > div {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 152px;
  padding: 28px 34px;
}

.se-package__compare > i {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .28);
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-style: normal;
}

.se-package__compare .is-package {
  border-left: 1px solid rgba(72, 200, 255, .28);
  background: linear-gradient(135deg, rgba(0, 162, 250, .16), rgba(10, 191, 182, .06));
}

.se-package__compare small {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  font-weight: 700;
}

.se-package__compare .is-package small {
  color: var(--se-cyan);
}

.se-package__compare strong {
  color: #fff;
  font-size: 22px;
}

.se-package__compare span {
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
}

.se-package__bundle {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 24px;
}

.se-package__hardware,
.se-package__documents {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
}

.se-package__hardware {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: 38px;
}

.se-package__hardware::after {
  content: "VR";
  position: absolute;
  right: -8px;
  bottom: -34px;
  color: rgba(72, 200, 255, .07);
  font-family: "Barlow", sans-serif;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1;
}

.se-package__number {
  display: block;
  margin-bottom: 30px;
  color: var(--se-cyan);
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.se-package__hardware small,
.se-package__documents-head small {
  color: var(--se-cyan);
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.se-package__hardware h3,
.se-package__documents-head h3 {
  margin: 8px 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
}

.se-package__hardware p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.9;
}

.se-package__hardware ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.se-package__hardware li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 700;
}

.se-package__hardware li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--se-cyan);
}

.se-package__documents {
  padding: 34px;
}

.se-package__documents-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.se-package__documents-head .se-package__number {
  margin: 5px 0 0;
}

.se-package__documents-head h3 {
  margin-bottom: 0;
}

.se-document-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.se-document {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .17);
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .2);
  transition: transform .3s var(--se-ease), border-color .3s var(--se-ease);
}

.se-document:hover {
  z-index: 2;
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(72, 200, 255, .65);
}

.se-document img {
  aspect-ratio: 1 / 1.32;
  object-fit: cover;
  object-position: top;
}

.se-document figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 8px 8px;
  background: linear-gradient(transparent, rgba(7, 16, 29, .94) 46%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.se-document--more {
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  aspect-ratio: 1 / 1.32;
  border-color: rgba(72, 200, 255, .38);
  background: linear-gradient(145deg, rgba(0, 162, 250, .18), rgba(10, 191, 182, .07));
  color: #fff;
  text-align: center;
}

.se-document--more strong {
  color: var(--se-cyan);
  font-family: "Barlow", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.se-document--more span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.se-package__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(72, 200, 255, .24);
  background: rgba(0, 162, 250, .08);
}

.se-package__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

.se-package__bottom strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.se-operation {
  background: #fff;
}

.se-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.se-scale__item {
  min-height: 330px;
  padding: 30px 26px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
  transition: transform .25s var(--se-ease), border-color .25s var(--se-ease), box-shadow .25s var(--se-ease);
}

.se-scale__item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 162, 250, .5);
  box-shadow: var(--se-shadow);
}

.se-scale__num {
  color: var(--se-blue);
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-size: 4.3rem;
  font-weight: 800;
  line-height: 1;
}

.se-scale__num small {
  margin-left: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

.se-scale h3 {
  margin: 70px 0 12px;
  color: var(--se-navy);
  font-size: 20px;
}

.se-scale p {
  margin: 0;
  color: var(--se-muted);
  font-size: 16px;
  line-height: 1.8;
}

.se-note {
  margin: 18px 0 0;
  color: #6a7480;
  font-size: 14px;
}

.se-flow {
  background: var(--se-soft);
}

.se-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.se-flow__list li {
  position: relative;
  min-height: 270px;
  padding: 27px 26px;
  border-top: 1px solid #cfd9e4;
  border-bottom: 1px solid #cfd9e4;
  border-left: 1px solid #cfd9e4;
  background: rgba(255, 255, 255, .62);
}

.se-flow__list li:last-child {
  border-right: 1px solid #cfd9e4;
}

.se-flow__list li::after {
  content: "";
  position: absolute;
  top: 51px;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--se-blue);
  border-right: 2px solid var(--se-blue);
  background: var(--se-soft);
  transform: rotate(45deg);
}

.se-flow__list li:last-child::after {
  display: none;
}

.se-flow__list span {
  color: var(--se-blue);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.se-flow__list div {
  margin-top: 60px;
}

.se-flow__list h3 {
  margin: 0 0 11px;
  color: var(--se-navy);
  font-size: 18px;
}

.se-flow__list p {
  margin: 0;
  color: var(--se-muted);
  font-size: 15px;
  line-height: 1.8;
}

.se-faq {
  background: #fff;
}

.se-faq__list {
  max-width: 940px;
  border-top: 1px solid var(--se-line);
}

.se-faq details {
  border-bottom: 1px solid var(--se-line);
}

.se-faq summary {
  position: relative;
  padding: 28px 60px 28px 0;
  color: var(--se-navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

.se-faq summary::-webkit-details-marker {
  display: none;
}

.se-faq summary::before,
.se-faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 18px;
  height: 2px;
  background: var(--se-blue);
  transition: transform .2s ease;
}

.se-faq summary::after {
  transform: rotate(90deg);
}

.se-faq details[open] summary::after {
  transform: rotate(0);
}

.se-faq details p {
  max-width: 820px;
  margin: -4px 0 30px;
  color: var(--se-muted);
  font-size: 16px;
  line-height: 2;
}

.se-cta {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--se-deep);
  color: #fff;
}

.se-cta__image,
.se-cta__veil {
  position: absolute;
  inset: 0;
}

.se-cta__image {
  background: url("/safety-event/assets/hero-vr-safety-event.jpg") center 58% / cover no-repeat;
  transform: scale(1.015);
}

.se-cta__veil {
  background: linear-gradient(90deg, rgba(7, 16, 29, .97), rgba(7, 16, 29, .78) 54%, rgba(7, 16, 29, .36));
}

.se-cta__inner {
  position: relative;
  z-index: 1;
}

.se-cta h2 {
  max-width: 760px;
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.24;
}

.se-cta p {
  max-width: 660px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}

.se-mobile-cta {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .se-js .se-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .se-industry__image img,
  .se-btn,
  .se-scale__item {
    transition: none;
  }
}

@media (max-width: 980px) {
  .se-shell {
    width: min(100% - 40px, 900px);
  }

  .se-section {
    padding: 88px 0;
  }

  .se-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .se-heading--split > p {
    max-width: 720px;
  }

  .se-scale {
    grid-template-columns: repeat(2, 1fr);
  }

  .se-experience__card--wide {
    grid-template-columns: 1fr 1fr;
  }

  .se-industry,
  .se-industry--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .se-ready__story {
    grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
    gap: 14px;
  }

  .se-ready__before,
  .se-ready__after {
    padding: 30px;
  }

  .se-package__bundle {
    grid-template-columns: 1fr;
  }

  .se-package__hardware {
    min-height: 440px;
  }

  .se-document-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .se-flow__list {
    grid-template-columns: 1fr;
  }

  .se-flow__list li,
  .se-flow__list li:last-child {
    min-height: auto;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    border-right: 1px solid #cfd9e4;
    border-bottom: 0;
  }

  .se-flow__list li:last-child {
    border-bottom: 1px solid #cfd9e4;
  }

  .se-flow__list li::after {
    top: auto;
    right: auto;
    bottom: -5px;
    left: 48px;
    transform: rotate(135deg);
  }

  .se-flow__list div {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .se-page {
    padding-bottom: 68px;
    font-size: 16px;
  }

  .se-shell {
    width: calc(100% - 32px);
  }

  .se-section {
    padding: 72px 0;
  }

  .se-heading {
    margin-bottom: 38px;
  }

  .se-heading h2 {
    font-size: clamp(2rem, 10.5vw, 3.1rem);
    line-height: 1.32;
  }

  .se-hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .se-hero__media {
    background-position: 66% center;
    transform: none;
  }

  .se-hero__veil {
    background:
      linear-gradient(180deg, rgba(7, 16, 29, .25) 0%, rgba(7, 16, 29, .62) 34%, rgba(7, 16, 29, .97) 70%, rgba(7, 16, 29, 1) 100%),
      linear-gradient(90deg, rgba(7, 16, 29, .76), rgba(7, 16, 29, .18));
  }

  .se-hero__inner {
    padding: 120px 0 52px;
  }

  .se-hero h1 {
    margin-top: 20px;
    font-size: clamp(2.8rem, 14.2vw, 4.5rem);
    line-height: 1.15;
  }

  .se-hero__lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .se-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .se-btn {
    width: 100%;
  }

  .se-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .se-hero__facts li {
    min-width: 0;
    padding: 0 10px;
  }

  .se-hero__facts strong {
    font-size: 20px;
  }

  .se-hero__facts span {
    font-size: 13px;
    line-height: 1.5;
  }

  .se-scroll {
    display: none;
  }

  .se-band__inner {
    min-height: 90px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .se-band ul {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .se-band li {
    font-size: 14px;
  }

  .se-band li::before {
    display: none;
  }

  .se-problem-grid,
  .se-experience,
  .se-scale {
    grid-template-columns: 1fr;
  }

  .se-problem-grid,
  .se-experience {
    gap: 18px;
  }

  .se-problem__copy {
    padding: 22px 22px 25px;
  }

  .se-problem h3 {
    font-size: 20px;
  }

  .se-ready__intro {
    margin-bottom: 38px;
  }

  .se-ready__intro h2 {
    font-size: 30px;
    line-height: 1.32;
  }

  .se-ready__intro p {
    font-size: 16px;
    line-height: 1.9;
  }

  .se-ready__story {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .se-ready__before,
  .se-ready__after {
    padding: 28px 22px 30px;
  }

  .se-ready__before h3,
  .se-ready__after h3 {
    font-size: 24px;
  }

  .se-ready__bridge {
    grid-template-columns: auto auto 52px;
    min-height: 74px;
  }

  .se-ready__bridge i {
    width: 48px;
    height: 48px;
    font-size: 24px;
    transform: rotate(90deg);
  }

  .se-ready__promise {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 18px 18px 19px;
  }

  .se-ready__promise strong {
    font-size: 17px;
  }

  .se-package__compare {
    grid-template-columns: 1fr;
  }

  .se-package__compare > div {
    min-height: 0;
    padding: 24px 22px;
  }

  .se-package__compare > i {
    display: none;
  }

  .se-package__compare .is-package {
    border-top: 1px solid rgba(72, 200, 255, .28);
    border-left: 0;
  }

  .se-package__compare strong {
    font-size: 19px;
  }

  .se-package__hardware {
    min-height: 490px;
    padding: 28px 22px;
  }

  .se-package__documents {
    padding: 28px 18px 20px;
  }

  .se-package__documents-head {
    grid-template-columns: 34px 1fr;
  }

  .se-package__hardware h3,
  .se-package__documents-head h3 {
    font-size: 21px;
  }

  .se-document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .se-document figcaption {
    font-size: 11px;
  }

  .se-package__bottom {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .se-package__bottom strong {
    font-size: 18px;
  }

  .se-turn__statement p {
    margin-bottom: 44px;
    font-size: 28px;
    letter-spacing: -.045em;
  }

  .se-experience__card--wide {
    display: block;
  }

  .se-experience__card--wide figure img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .se-experience__copy,
  .se-experience__card--wide .se-experience__copy {
    padding: 24px 22px 28px;
  }

  .se-experience__copy > h3 {
    font-size: 21px;
  }

  .se-experience__card figcaption {
    right: 16px;
    bottom: 13px;
    left: 16px;
  }

  .se-experience__card figcaption span {
    font-size: 28px;
  }

  .se-experience__card figcaption small {
    font-size: 11px;
    letter-spacing: .11em;
  }

  .se-experience__step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .se-experience__step h3 {
    font-size: 19px;
  }

  .se-industry-list {
    gap: 60px;
  }

  .se-industry,
  .se-industry--reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .se-industry--reverse .se-industry__image,
  .se-industry--reverse .se-industry__copy {
    grid-column: 1;
    grid-row: auto;
  }

  .se-industry__copy h3 {
    font-size: 24px;
  }

  .se-scale__item {
    min-height: 240px;
  }

  .se-scale h3 {
    margin-top: 42px;
  }

  .se-cta {
    min-height: 640px;
    align-items: flex-end;
  }

  .se-cta__image {
    background-position: 68% center;
    transform: none;
  }

  .se-cta__veil {
    background: linear-gradient(180deg, rgba(7, 16, 29, .2), rgba(7, 16, 29, .95) 62%);
  }

  .se-cta__inner {
    padding-bottom: 74px;
  }

  .se-cta h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.7rem);
  }

  .se-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: block;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .2);
    background: rgba(9, 17, 30, .94);
    backdrop-filter: blur(18px);
  }

  .se-mobile-cta a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--se-blue), var(--se-teal));
    color: #fff;
    font-size: 16px;
    font-weight: 800;
  }
}
