@charset "UTF-8";

:root {
  --color-navy: #00167a;
  --color-navy-deep: #001056;
  --color-orange: #ff903e;
  --color-orange-hover: #f07e28;
  --color-orange-soft: #fff4eb;
  --color-orange-mid: #ffe0c4;
  --color-white: #ffffff;
  --color-text: #141428;
  --color-muted: #5a5f78;
  --color-gutter: #dfe3ee;
  --color-line: #e4e7f0;
  --header-height: 80rem;
  --section-pad: 120rem;
  --radius-pill: 999rem;
  --radius-card: 20rem;
  --radius-tab: 12rem;
  --shadow-soft: 0 8rem 28rem rgba(0, 22, 122, 0.12);
  --shadow-card: 0 12rem 40rem rgba(0, 22, 122, 0.14);
  --shadow-btn: 0 8rem 20rem rgba(0, 22, 122, 0.16);
  --shadow-btn-hover: 0 14rem 32rem rgba(0, 22, 122, 0.22);
  --ease: 0.28s ease;
  --font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ----------------------------------------
   リセット
   ---------------------------------------- */
   *,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: min(calc(100vw / 1440), 1px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-gutter);
  color: var(--color-text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button,
input {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: -1rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pc-br {
  display: inline;
}

.sp-br {
  display: none;
}

/* ----------------------------------------
   LPシェル / 全幅ブレイクアウト
   ---------------------------------------- */
.lp {
  position: relative;
  width: 1440rem;
  margin: 0 auto;
  background: var(--color-white);
}

.full-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.shell {
  width: 1440rem;
  margin: 0 auto;
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-height) + 12rem);
}

/* ----------------------------------------
   ボタン共通
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  min-height: 56rem;
  padding: 0 36rem;
  border-radius: var(--radius-pill);
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18rem rgba(0, 22, 122, 0.18);
}

.btn:hover::before {
  transform: translateX(280%) skewX(-18deg);
}

.btn:focus-visible {
  outline: 2rem solid var(--color-orange);
  outline-offset: 3rem;
}

.btn--sm {
  min-height: 42rem;
  padding: 0 16rem;
  font-size: 16rem;
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2.5px solid var(--color-navy);
  font-weight: 800;
  box-shadow: var(--shadow-btn);
}

.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-btn-hover);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
  box-shadow: var(--shadow-btn);
}

.btn--white:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn--orange {
  background: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-orange);
}

.btn--orange:hover {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
}

.btn__arrow::after {
  content: "";
  width: 7rem;
  height: 7rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: -2rem;
}

.btn--white .btn__arrow,
.btn--outline .btn__arrow {
  background: rgba(0, 22, 122, 0.08);
}

/* =========================================================
  ヘッダー
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-height);
  background: var(--color-white);
  box-shadow: 0 4rem 18rem rgba(0, 22, 122, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 48rem;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.header__logo img {
  width: auto;
  height: 40rem;
}

.header__toggle {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28rem;
  font-size: 16rem;
  font-weight: 700;
  color: var(--color-navy);
}

.header__nav a:not(.btn):hover {
  color: var(--color-orange);
}

.header__nav .btn {
  margin-left: 4rem;
}

.header__nav .btn + .btn {
  margin-left: -16rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  min-height: 56rem;
  padding: 0 36rem;
  border-radius: 999rem;
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18rem rgba(0, 22, 122, 0.18);
}

.btn:hover::before {
  transform: translateX(280%) skewX(-18deg);
}

.btn--sm {
  min-height: 42rem;
  padding: 0 16rem;
  font-size: 16rem;
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
  border: 2rem solid var(--color-navy);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2rem solid var(--color-navy);
}

.btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}


/* =========================================================
  ファーストビュー
  =========================================================*/
  .fv {
    position: relative;
    background: linear-gradient(180deg, var(--color-orange) 0%, var(--color-orange-mid) 60%);
    color: var(--color-navy);
    overflow: hidden;
  }
  
  .fv__gear {
    position: absolute;
    left: 50rem;
    top: -80rem;
    width: 600rem;
    max-width: none;
    height: auto;
    opacity: 0.42;
    pointer-events: none;
    mix-blend-mode: screen;
  }
  
  .fv__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 500rem;
    align-items: start;
    gap: 32rem;
    padding: 36rem 72rem 40rem;
  }
  
  .fv__copy {
    padding-top: 4rem;
  }
  
  .fv__badge,
  .fv__title,
  .fv__lead {
    margin-left: 64rem;
  }
  
  .fv__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32rem;
    padding: 0 32rem;
    margin-bottom: 16rem;
    border-radius: var(--radius-pill);
    background: var(--color-white);
    color: var(--color-orange);
    font-size: 16rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
  
  .fv__title {
    position: relative;
    z-index: 2;
    margin-bottom: 12rem;
    margin-right: -220rem;
    font-size: 38rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-shadow: 2rem 2rem 0 rgba(255, 255, 255, 1);
  }
  
  .fv__lead {
    margin-bottom: 20rem;
    font-size: 18rem;
    font-weight: 600;
    line-height: 1.7;
  }
  
  .fv__points {
    display: grid;
    gap: 10rem;
    padding-left: 96rem;
  }
  
  .fv__points li {
    display: flex;
    align-items: center;
    gap: 12rem;
    font-size: 18rem;
    font-weight: 700;
  }
  
  .fv__points img {
    width: 28rem;
    height: 28rem;
    flex-shrink: 0;
  }
  
  .fv__aside {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .fv__demo {
    position: relative;
    align-self: stretch;
    width: calc(100% + 80rem);
    margin-top: -36rem;
    margin-right: -80rem;
    padding: 24rem 32rem 22rem 36rem;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: -8rem 12rem 32rem rgba(0, 22, 122, 0.1);
    border-radius: 0 0 0 80rem;
    color: var(--color-text);
  }
  
  .fv__demo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 50vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    pointer-events: none;
  }
  
  .fv__demo-text,
  .fv__demo .demo-form {
    position: relative;
    z-index: 1;
    margin-left: 24rem;
  }
  
  .fv__demo-text {
    margin-bottom: 12rem;
    font-size: 16rem;
    font-weight: 800;
    line-height: 1.5;
    color: var(--color-navy);
  }

  .fv__demo .demo-form {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-radius: var(--radius-pill);
    box-shadow: none;
  }

  .fv__demo .demo-form input {
    min-width: 0;
    width: auto;
    min-height: 40rem;
    padding: 0 20rem;
    font-size: 12rem;
  }

  .fv__demo .demo-form input[name="company"] {
    flex: 2 1 0;
  }

  .fv__demo .demo-form input[name="email"] {
    flex: 3 1 0;
    border-left: 1px solid rgba(0, 22, 122, 0.12);
  }

  .fv__demo .demo-form .btn--demo {
    width: auto;
    flex-shrink: 0;
    min-width: 128rem;
    min-height: 40rem;
    padding: 0 16rem;
    border-radius: var(--radius-pill);
  }

  .fv__demo-note {
    position: relative;
    z-index: 1;
    align-self: stretch;
    width: calc(100% + 80rem);
    margin: 8rem -80rem 0 0;
    padding-right: 32rem;
    text-align: right;
    font-size: 13rem;
    font-weight: 700;
    line-height: 1.5;
  }

  .fv__demo-note a {
    display: inline-flex;
    align-items: center;
    gap: 6rem;
    color: var(--color-navy);
    text-decoration: underline;
    text-underline-offset: 3rem;
  }

  .fv__demo-note .fv__demo-note__arrow {
    flex-shrink: 0;
    background: transparent;
    border: 1.5rem solid var(--color-navy);
  }

  .fv__demo-note a:hover {
    color: var(--color-orange);
  }

  .fv__demo-note a:hover .fv__demo-note__arrow {
    border-color: var(--color-orange);
  }

.demo-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8rem;
  width: 100%;
  padding: 8rem;
  overflow: hidden;
  border-radius: 16rem;
  background: var(--color-white);
  box-shadow: 0 6rem 18rem rgba(0, 22, 122, 0.12);
}

.demo-form input {
  width: 100%;
  min-width: 0;
  min-height: 42rem;
  padding: 0 18rem;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-size: 13rem;
  outline: none;
}
  
  .demo-form input::placeholder {
    color: #9aa0b5;
  }
  
.demo-form .btn--demo {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 42rem;
  padding: 0 20rem;
  border-radius: var(--radius-pill);
  font-size: 13rem;
  box-shadow: none;
}
  
  .demo-form .btn--demo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 35%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0.08) 65%,
      transparent 100%
    );
    transform: translateX(-160%) skewX(-18deg);
    transition: transform 0.7s ease;
    pointer-events: none;
  }
  
  .btn.btn--demo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18rem rgba(255, 255, 255, 0.28);
  }
  
  .btn.btn--demo:hover::before {
    transform: translateX(280%) skewX(-18deg);
  }
  
  .fv__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    left: -100rem;
    margin-top: 84rem;
  }
  
  .fv__cta-note {
    width: 100%;
    margin: 0 0 12rem;
    text-align: center;
    font-size: 16rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  
  .fv__aside .btn--download {
    width: 380rem;
    min-height: 66rem;
    font-size: 18rem;
  }



/* =========================================================
  紹介動画
   ========================================================= */
.videos {
  padding: 0rem 0 40rem;
  background: linear-gradient(180deg, var(--color-orange-mid) 0%, var(--color-white) 20%);
}

.carousel {
  position: relative;
  height: 480rem;
  margin: 0 auto 56rem;
}

.carousel__stage {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.carousel__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720rem;
  transform: translate(-50%, -50%);
  transition: transform 0.55s ease, opacity 0.55s ease, filter 0.55s ease;
  pointer-events: none;
}

.carousel__slide[data-offset="0"] {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.carousel__slide[data-offset="1"] {
  z-index: 4;
  opacity: 0.38;
  filter: saturate(0.7);
  transform: translate(calc(-50% + 430rem), -50%) scale(0.82);
}

.carousel__slide[data-offset="-1"] {
  z-index: 4;
  opacity: 0.38;
  filter: saturate(0.7);
  transform: translate(calc(-50% - 430rem), -50%) scale(0.82);
}

.carousel__slide:not([data-offset="0"]):not([data-offset="1"]):not([data-offset="-1"]) {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.carousel__card {
  background: transparent;
}

.carousel__title {
  margin: 10rem 0;
  color: var(--color-navy);
  font-size: 20rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.3;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  box-sizing: border-box;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.video-frame video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-frame.is-playing video {
  z-index: 4;
}

.video-frame__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--color-navy);
}

.video-frame__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 84rem;
  height: 84rem;
  border-radius: 50%;
  background: rgba(20, 20, 40, 0.55);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.video-frame.is-playing .video-frame__play {
  opacity: 1;
}

.video-frame.is-playing.is-overlay-hidden .video-frame__play {
  opacity: 0;
}

.video-frame.is-playing:hover .video-frame__play,
.video-frame.is-playing:focus-within .video-frame__play {
  opacity: 1;
}

.video-frame:not(.is-playing) .video-frame__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12rem 0 12rem 20rem;
  border-color: transparent transparent transparent #fff;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transform: translate(-50%, -50%);
}

.video-frame.is-playing .video-frame__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 22rem;
  border: none;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 13rem 0 0 #fff;
  transform: translate(calc(-50% - 4rem), -50%);
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56rem;
  height: 56rem;
  border-radius: 50%;
  background: var(--color-navy);
  box-shadow: 0 6rem 18rem rgba(29, 32, 136, 0.25);
  transform: translateY(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.carousel__arrow:hover {
  background: #1d2088;
  transform: translateY(calc(-50% - 2rem));
  box-shadow: 0 10rem 22rem rgba(29, 32, 136, 0.28);
}

.carousel__arrow[hidden] {
  display: none;
}

.carousel__arrow span {
  width: 12rem;
  height: 12rem;
  border-top: 2rem solid #fff;
  border-right: 2rem solid #fff;
}

.carousel__arrow--prev {
  left: calc(50% - 388rem);
}

.carousel__arrow--prev span {
  transform: rotate(-135deg);
  margin-left: 4rem;
}

.carousel__arrow--next {
  right: calc(50% - 388rem);
}

.carousel__arrow--next span {
  transform: rotate(45deg);
  margin-right: 4rem;
}

.videos__ctas {
  display: flex;
  justify-content: center;
  gap: 28rem;
}

.videos__ctas .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 280rem;
  min-height: 56rem;
}

.videos__ctas .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.videos__ctas .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18rem rgba(0, 22, 122, 0.18);
}

.videos__ctas .btn:hover::before {
  transform: translateX(280%) skewX(-18deg);
}

/* =========================================================
  各機能（タブ切り替え）
   ========================================================= */
.features {
  --feat-orange: #fc7031;
  --feat-navy: #1d2088;
  --feat-bump: 80rem;
  --feat-stroke: 2.5rem;
  --feat-tab-radius: 24rem;
  --feat-fillet: 12rem;
  padding: 48rem 0 40rem;
  background: linear-gradient(180deg, #ffcca7 0%, #ffffff 100%);
}

.features__heading {
  margin-bottom: 40rem;
  color: var(--color-navy);
  font-size: 34rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.06em;
}

.features__heading-em {
  font-size: 40rem;
  color: var(--color-orange);
  text-shadow:
    0 0 0 #ffffff,
    0 0 0 #ffffff,
    0 0 0 #ffffff,
    0 2rem 4rem #ffffff;
}
.tabs {
  max-width: 1200rem;
  margin: 0 auto;
  overflow: visible;
}

.tabs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-top: 64rem;
}

.tabs__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64rem;
  padding: 20rem 8rem 14rem;
  margin-left: -1px;
  border: 2px solid var(--color-line);
  border-bottom: none;
  border-radius: 14rem 14rem 0 0;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 30rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color var(--ease), border-color var(--ease);
}

.tabs__btn:first-child {
  margin-left: 0;
}

.tabs__btn:hover {
  color: var(--color-orange);
}

.tabs__icon {
  display: none;
}

.tabs__btn.is-active {
  z-index: 3;
  margin-bottom: -2px;
  padding-top: 20rem;
  color: var(--color-orange);
  border-color: var(--color-orange);
  border-bottom: 2px solid var(--color-white);
}

.tabs__btn.is-active .tabs__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 112rem;
  height: 112rem;
  overflow: visible;
  border: none;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.tabs__btn.is-active .tabs__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-white);
  border: 2px solid var(--color-orange);
  border-radius: 50%;
  clip-path: inset(0 0 50% 0);
  pointer-events: none;
}

.tabs__btn.is-active .tabs__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10rem;
  right: 10rem;
  z-index: 0;
  height: 6rem;
  background: var(--color-white);
  transform: translateY(-50%);
}

.tabs__icon img {
  position: relative;
  z-index: 1;
  width: 50rem;
  height: 50rem;
  margin-top: -22rem;
  object-fit: contain;
}

.tabs__panels {
  position: relative;
  z-index: 1;
}

.feature-panel {
  padding: 56rem 64rem 48rem;
  overflow: visible;
  border: 2px solid var(--color-orange);
  border-radius: 0 0 24rem 24rem;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.feature-panel[hidden] {
  display: none;
}

.feature-block {
  margin-bottom: 36rem;
}

.feature-block__title {
  display: flex;
  align-items: center;
  gap: 12rem;
  margin-bottom: 14rem;
  color: var(--color-orange);
  font-size: 30rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.feature-block__title::before {
  content: "";
  flex-shrink: 0;
  width: 6rem;
  height: 30rem;
  border-radius: 2rem;
  background: var(--color-orange);
}

.feature-block p {
  padding-left: 18rem;
  color: var(--color-text);
  font-size: 18rem;
  line-height: 2;
}

.feat-item__nowrap {
  white-space: nowrap;
}
.feat-bubble {
  position: absolute;
  top: 20rem;
  right: -200rem;
  z-index: 4;
  width: 320rem;
  height: 200rem;
  margin: 0;
  background: transparent;
  border: 0;
  color: var(--color-orange);
  font-size: 15rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  text-align: center;
  overflow: visible;
  pointer-events: none;
}
.feat-bubble__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(8rem 10rem 5rem rgba(255, 255, 255, 0.05));
}
.feat-bubble p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 14rem 28rem 32rem;
  box-sizing: border-box;
}

.feat-visual {
  --feat-side: 200rem;
  --feat-gutter: 14rem;
  --feat-img-left: calc(var(--feat-side) + var(--feat-gutter));
  --feat-img-w: calc(100% - var(--feat-side) * 2 - var(--feat-gutter) * 2);
  position: relative;
  display: grid;
  grid-template-columns: var(--feat-side) minmax(0, 1fr) var(--feat-side);
  column-gap: var(--feat-gutter);
  align-items: start;
  /* 基本機能の .shot と同様、パネル左右余白を打ち消して枠際まで広げる */
  margin: 20rem -64rem 8rem;
}
.feat-visual__media {
  position: relative;
  grid-column: 2;
  overflow: visible;
  background: transparent;
}
.feat-visual__media > img {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-line);
  box-shadow: 0 8rem 20rem rgba(0, 0, 0, 0.2);
  background: var(--color-white);
}
.feat-pins {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.feat-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: var(--color-orange);
  border: 2rem solid #fff;
  color: #fff;
  font-size: 14rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4rem 10rem rgba(0, 22, 122, 0.25);
}
.feat-pin--1 { top: 10%; left: 7%; }
.feat-pin--2 { top: 38%; left: 8%; }
.feat-pin--3 { top: 64%; left: 7%; }
.feat-pin--4 { top: 80%; left: 7%; }
.hw-dash .feat-pin--1 { top: 6%; left: 6%; }
.hw-dash .feat-pin--2 { top: 14%; left: 62%; }
.hw-modal .feat-pin--3 { top: 88%; left: 72%; }
.feat-visual__media > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.feat-note {
  position: absolute;
  grid-column: 1 / -1;
  grid-row: 1;
  width: var(--feat-side);
  box-sizing: border-box;
  margin: 0;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 8rem;
  padding: 12rem 16rem;
  box-shadow: 0 8rem 18rem rgba(0, 22, 122, 0.2);
  z-index: 2;
}
.feat-note[data-num]::before {
  content: none;
  display: none;
}
.feat-note--tl {
  left: 8rem;
  top: 6%;
}
.feat-note--tr {
  right: 8rem;
  top: 40%;
  transform: translateY(-16rem);
  width: 220rem;
}
.feat-note--bl {
  left: 8rem;
  top: 60%;
  width: 220rem;
  text-align: left;
}
.feat-note--bl .feat-note__text span {
  display: block;
}
.feat-note--bl .feat-note__hl {
  text-align: center;
  font-size: 16rem;
}
.feat-note--bl .feat-note__hl strong {
  font-size: 15rem;
  padding: 4rem 10rem;
}
.feat-note--br {
  right: 8rem;
  top: 75%;
  width: 220rem;
  overflow: visible;
}

/* ===== 案A: 丸グラデキャッチ（一時コメント） =====
.feat-note--br::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: var(--color-navy);
  pointer-events: none;
}

.feat-note--br .feat-note__catch {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: calc(100% - 65rem);
  z-index: 0;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 175rem;
  height: 175rem;
  margin: 0;
  padding: 0 16rem 40rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--color-orange-mid) 30%, var(--color-white) 100%);
  color: var(--color-navy);
  font-size: 14rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 6rem 16rem rgba(0, 22, 122, 0.12);
}
===== 案A ここまで ===== */

/* 案B: 「その他ライセンス申込」から出る吹き出し */
.feat-note--br .feat-note__catch--bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14rem);
  z-index: 3;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: max-content;
  max-width: 250rem;
  min-width: 160rem;
  height: auto;
  margin: 0;
  padding: 10rem 10rem 14rem;
  border-radius: 16rem;
  background: var(--color-white);
  border: 2rem solid var(--color-navy);
  color: var(--color-navy);
  font-size: 14rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;  
  transform: translateX(-50%);
  box-shadow: 4rem 4rem 8rem rgba(0, 0, 0, 0.2);
}

.feat-note--br .feat-note__catch--bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10rem 9rem 0 9rem;
  border-color: var(--color-navy) transparent transparent transparent;
  transform: translateX(-50%);
}

.feat-note--br .feat-note__catch--bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 3rem);
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11rem 9rem 0 9rem;
  border-color: var(--color-white) transparent transparent transparent;
  transform: translateX(-50%);
}

.feat-note--br .feat-note__title,
.feat-note--br .feat-note__text {
  position: relative;
  z-index: 2;
}

.feat-note--br .feat-note__catch-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.feat-note--br .feat-note__catch-line {
  display: block;
}

.feat-note--br .feat-note__catch-num {
  position: relative;
  display: inline-block;
  margin: 0 2rem;
  color: var(--color-orange);
  font-size: 34rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  vertical-align: -4rem;
  paint-order: stroke fill;
}

.feat-note__title {
  margin: 0 0 6rem;
  font-size: 18rem;
  font-weight: 800;
  line-height: 1.3;
}
.feat-note__text {
  font-size: 13rem;
  font-weight: 700;
  line-height: 1.55;
}
.feat-note__hl {
  margin-top: 6rem;
  font-size: 13rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-orange);
}
.feat-note__hl span {
  display: block;
  margin-bottom: 2rem;
}
.feat-note__hl strong {
  display: inline-block;
  background: var(--color-orange-mid);
  color: var(--color-navy);
  padding: 3rem 12rem;
  border-radius: 4rem;
  font-size: 13rem;
  letter-spacing: .02em;
}
.feat-visual__leaders {
  position: absolute;
  inset: 0;
  grid-column: 1 / -1;
  grid-row: 1;
  pointer-events: none;
  z-index: 1;
}
.feat-leader {
  position: absolute;
  background: var(--color-navy);
}
.feat-leader::after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--color-navy);
}
.feat-leader--tl {
  left: var(--feat-side);
  top: 13.5%;
  height: 2rem;
  width: calc(var(--feat-gutter) + var(--feat-img-w) * 0.52);
  transform: translateY(-50%);
}
.feat-leader--tl::after {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.feat-leader--tl2 {
  left: var(--feat-side);
  top: 10.8%;
  height: 2rem;
  width: calc(var(--feat-gutter) + var(--feat-img-w) * 0.08);
  transform: translateY(-50%);
}
.feat-leader--tl2::after {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.feat-leader--tr {
  left: calc(var(--feat-img-left) + var(--feat-img-w) * 0.887);
  top: calc(40% + 28rem);
  height: 2rem;
  width: calc(100% - var(--feat-side) - (var(--feat-img-left) + var(--feat-img-w) * 0.887) + 2rem);
  transform: translateY(-50%);
}
.feat-leader--tr::after {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.feat-leader--bl {
  left: calc(8rem + 220rem);
  top: 65%;
  width: calc(var(--feat-img-left) + var(--feat-img-w) * 0.048 - (8rem + 220rem));
  height: 2rem;
  background: var(--color-navy);
  transform: translateY(-50%);
}
.feat-leader--bl .feat-leader__v,
.feat-leader--bl .feat-leader__h {
  display: none;
}
.feat-leader--bl::after {
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
.feat-leader--br {
  left: calc(var(--feat-img-left) + var(--feat-img-w) * 0.928);
  top: 80%;
  height: 2rem;
  width: calc(100% - 8rem - 220rem - (var(--feat-img-left) + var(--feat-img-w) * 0.928));
  transform: translateY(-50%);
}
.feat-leader--br::after {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hw-intro {
  margin-bottom: 36rem;
}
.hw-flow {
  position: relative;
  margin-left: -64rem;
  margin-right: -64rem;
}
.hw-flow .feat-visual {
  margin-left: 0;
  margin-right: 0;
}
.hw-dash .feat-note--tl {
  top: 8%;
}
.hw-dash .feat-note--tr {
  top: 16%;
  transform: translateY(-50%);
}
.hw-dash .feat-leader--tl {
  top: 13%;
  width: calc(var(--feat-gutter) + var(--feat-img-w) * 0.08);
}
.hw-dash .feat-leader--tr {
  left: calc(var(--feat-img-left) + var(--feat-img-w) * 0.94);
  top: 16%;
  width: calc(100% - var(--feat-side) - (var(--feat-img-left) + var(--feat-img-w) * 0.94));
}
.hw-pin {
  position: absolute;
  width: 8rem;
  height: 8rem;
  pointer-events: none;
  opacity: 0;
}
.hw-modal {
  position: relative;
  z-index: 4;
  margin-top: -15rem;
  padding: 24rem 0 0 clamp(120rem, 18.75vw, 270rem);
}
.hw-modal__media {
  --hw-tail-x: 16%;
  position: relative;
  width: min(52%, 560rem);
  margin: 0;
  padding: 6rem;
  border: 3rem solid var(--color-navy);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 12rem 28rem rgba(0, 22, 122, 0.16);
  overflow: visible;
}
.hw-modal__tail {
  position: absolute;
  left: var(--hw-tail-x);
  top: 0;
  z-index: 1;
  width: 18rem;
  height: 18rem;
  box-sizing: border-box;
  background: #fff;
  border: 3rem solid var(--color-navy);
  border-right: none;
  border-bottom: none;
  transform: translate(-50%, calc(-50% - 2rem)) rotate(45deg);
  pointer-events: none;
}
.hw-modal__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8rem;
}
.hw-modal__shot {
  position: relative;
  overflow: hidden;
  border-radius: 8rem;
}
.hw-modal__shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8rem;
}
.hw-pin--renew {
  left: 93.1%;
  top: 73%;
  transform: translate(-50%, -50%);
}
.hw-modal__note {
  position: absolute;
  left: calc(100% + 20rem);
  top: 66%;
  width: 184rem;
  margin: 0;
  transform: translateY(-50%);
  z-index: 5;
}
.hw-pin--note {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hw-flow__join {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}
.hw-flow__line {
  stroke: var(--color-navy);
  stroke-width: 2;
  stroke-linecap: round;
}
.hw-flow__dot {
  fill: var(--color-navy);
}

.sec-heading {
  margin: 0 0 30rem;
  color: var(--color-navy);
  font-size: 40rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ----------------------------------------
   会社概要
   ---------------------------------------- */
.sec-company {
  padding: 48rem 0 60rem;
  background: var(--color-white);
}

.company-table {
  width: 800rem;
  max-width: calc(100% - 40rem);
  margin: 0 auto;
  text-align: left;
}

.company-table__row {
  display: grid;
  grid-template-columns: 200rem 1fr;
  gap: 32rem;
  align-items: baseline;
  margin: 0;
  padding: 20rem 0 20rem 100rem;
  border-bottom: 1px solid var(--color-line);
}

.company-table__row:first-child {
  border-top: 1px solid var(--color-line);
}

.company-table__row dt,
.company-table__row dd {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: left;
}

.company-table__row dd a {
  color: #1a5fd4;
  text-decoration: underline;
  text-underline-offset: 3rem;
}

.company-table__row dd a:hover {
  color: var(--color-navy);
}

/* =========================================================
   CV
   ========================================================= */
.cv {
  padding: 40rem 0 60rem;
  background: linear-gradient(180deg, #ffffff 0%, #ffe7d2 42%, var(--color-orange) 100%);
}

.cv__shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  padding: 0;
  max-width: 1280rem;
}

.cv-card {
  display: flex;
  align-items: center;
  gap: 0rem;
  min-height: 220rem;
  padding: 30rem;
  border: 2px solid var(--color-orange);
  border-radius: 20rem;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.cv-card--demo {
  display: block;
  background: #ffebd8;
}

.cv-card__visual {
  flex-shrink: 0;
  width: 280rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-card__visual img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.cv-card__note {
  margin-bottom: 18rem;
  color: var(--color-navy);
  font-size: 18rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
}

.cv-card--dl .btn {
  min-width: 260rem;
}

.cv-card__title {
  margin-bottom: 10rem;
  color: var(--color-navy);
  font-size: 22rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.cv-card__text {
  margin-bottom: 20rem;
  color: var(--color-navy);
  font-size: 15rem;
  font-weight: 700;
  text-align: center;
}

.demo-form--cv {
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-radius: var(--radius-pill);
  margin-bottom: 12rem;
}

.demo-form--cv input {
  min-width: 0;
  width: auto;
  min-height: 45rem;
  padding: 0 20rem;
  font-size: 12rem;
}

.demo-form--cv input[name="company"] {
  flex: 2 1 0;
}

.demo-form--cv input[name="email"] {
  flex: 3 1 0;
  border-left: 1px solid rgba(0, 22, 122, 0.12);
}

.demo-form--cv .btn--demo {
  width: auto;
  flex-shrink: 0;
  min-width: 128rem;
  min-height: 40rem;
  padding: 0 16rem;
  border-radius: var(--radius-pill);
}

.cv-card__disclaimer {
  color: var(--color-navy);
  font-size: 12rem;
  font-weight: 500;
  margin-left: 20rem;
}
.back-to-top {
  position: fixed;
  right: 28rem;
  bottom: 28rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2rem solid var(--color-navy);
  color: var(--color-navy);
  font-size: 18rem;
  font-weight: 800;
  box-shadow: 0 6rem 16rem rgba(0, 22, 122, .12);
  transition: background .2s ease, color .2s ease;
}
.back-to-top:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* =========================================================
   フッター
   ========================================================= */
   .footer {
    background: var(--color-navy);
    color: var(--color-white);
  }
  
  .footer__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80rem;
    min-height: 180rem;
    padding: 48rem 120rem;
  }
  
  .footer__name {
    margin-bottom: 8rem;
    font-size: 36rem;
    font-weight: 800;
    letter-spacing: 0.06em;
  }
  
  .footer__dept {
    margin-bottom: 10rem;
    font-size: 20rem;
    font-weight: 700;
  }
  
  .footer__tel {
    font-size: 32rem;
    font-weight: 700;
  }
  
  .footer__tel span {
    margin-left: 8rem;
    font-size: 16rem;
    font-weight: 500;
  }
  
  .footer__bsol {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500rem;
    min-height: 100rem;
    margin-left: 88rem;
    overflow: hidden;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    transition: transform var(--ease), box-shadow var(--ease);
  }
  
  .footer__bsol img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .footer__bsol:hover {
    transform: translateY(-2rem);
    box-shadow: var(--shadow-btn-hover);
  }
  
  .footer__bsol span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44rem;
    padding: 0 36rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-navy);
    font-size: 18rem;
    font-weight: 800;
  }

/* ---------- 動画モーダル ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 18, 48, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24rem;
}
.video-modal[hidden] { display: none; }
.video-modal__dialog {
  position: relative;
  width: 640rem;
  background: var(--color-white);
  border-radius: 20rem;
  padding: 48rem 40rem 40rem;
  text-align: center;
  box-shadow: 0 20rem 50rem rgba(0, 0, 0, .2);
}
.video-modal__close {
  position: absolute;
  top: 12rem;
  right: 16rem;
  width: 36rem;
  height: 36rem;
  font-size: 28rem;
  line-height: 1;
  color: var(--color-navy);
}
.video-modal__title {
  font-size: 24rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12rem;
}
.video-modal__text {
  font-size: 15rem;
  line-height: 1.8;
  margin-bottom: 28rem;
}
.video-modal__actions {
  display: flex;
  justify-content: center;
  gap: 16rem;
}

/* =========================================================
  @mobile（SP 基準: 375px）
   ========================================================= */
@media (max-width: 767px) {
  :root {
    --header-height: 64rem;
    --section-pad: 60rem;
  }

  html {
    font-size: calc(100vw / 375);
  }

  .lp,
  .shell {
    width: 100%;
    max-width: 100%;
  }

  .lp {
    overflow-x: hidden;
  }

  .full-bleed {
    width: 100%;
    margin-left: 0;
  }

  .header {
    overflow: visible;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }

  /* ヘッダー */
  .header__inner {
    padding: 0 16rem;
  }

  .header__logo img {
    height: 32rem;
  }

  .header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44rem;
    height: 44rem;
    margin-left: auto;
  }

  .header__toggle span,
  .header__toggle span::before,
  .header__toggle span::after {
    display: block;
    width: 22rem;
    height: 2rem;
    background: var(--color-navy);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .header__toggle span {
    position: relative;
  }

  .header__toggle span::before,
  .header__toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .header__toggle span::before {
    top: -7rem;
  }

  .header__toggle span::after {
    top: 7rem;
  }

  .header.is-open .header__toggle span {
    background: transparent;
  }

  .header.is-open .header__toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .header.is-open .header__toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 12rem 16rem 20rem;
    z-index: 210;
    background: var(--color-white);
    box-shadow: 0 12rem 24rem rgba(0, 22, 122, 0.12);
  }

  .header.is-open .header__nav {
    display: flex;
  }

  .header__nav a:not(.btn) {
    width: 100%;
    padding: 14rem 0;
    text-align: center;
    border-bottom: 1px solid var(--color-line);
    font-size: 15rem;
  }

  .header__nav .btn {
    width: 100%;
    margin: 10rem 0 0;
  }

  /* FV */
  .fv__gear {
    left: auto;
    right: -80rem;
    top: -20rem;
    width: 180rem;
    opacity: 0.36;
  }

  .fv__shell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20rem;
    min-height: 0;
    padding: 20rem 20rem 32rem;
  }

  .fv__copy {
    align-self: stretch;
    width: 100%;
    padding-top: 0;
  }

  .fv__badge,
  .fv__title,
  .fv__lead {
    margin-left: 16rem;
  }

  .fv__badge {
    min-height: 28rem;
    margin-bottom: 16rem;
    font-size: 12rem;
  }

  .fv__title {
    margin-bottom: 14rem;
    margin-right: 0;
    font-size: 26rem;
  }

  .fv__lead {
    margin-bottom: 22rem;
    font-size: 13rem;
  }

  .fv__points {
    gap: 12rem;
    padding-left: 24rem;
  }

  .fv__points li {
    gap: 10rem;
    font-size: 14rem;
  }

  .fv__points img {
    width: 24rem;
    height: 24rem;
  }

  .fv__aside {
    align-self: center;
    width: calc(100% - 32rem);
    max-width: 100%;
    margin-inline: auto;
    align-items: center;
    text-align: center;
  }

  .fv__demo-text,
  .fv__demo .demo-form {
    margin-left: 0;
    margin-right: 0;
  }

  .fv__demo {
    align-self: center;
    width: 100%;
    margin: 0 auto;
    padding: 14rem;
    border-radius: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fv__demo::after {
    display: none;
  }

  .fv__demo-text {
    margin-bottom: 12rem;
    margin-left: 0;
    font-size: 14rem;
    width: 100%;
  }

  .fv__demo-note {
    width: 100%;
    margin: 8rem 0 0;
    padding-right: 0;
    font-size: 11rem;
  }

  .fv__demo .demo-form {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    border-radius: var(--radius-pill);
    padding: 0;
    gap: 0;
    margin-left: 0;
    background: var(--color-white);
    box-shadow: none;
    overflow: hidden;
  }

  .fv__demo .demo-form input {
    min-width: 0;
    width: auto;
    min-height: 38rem;
    height: 38rem;
    padding: 0 8rem;
    border: none;
    border-radius: 0;
    background: var(--color-white);
    font-size: 11rem;
  }

  .fv__demo .demo-form input[name="company"] {
    flex: 2 1 0;
  }

  .fv__demo .demo-form input[name="email"] {
    flex: 3 1 0;
    border-left: 1px solid rgba(0, 22, 122, 0.12);
  }

  .fv__demo .demo-form .btn--demo {
    flex: 0 0 auto;
    width: auto;
    min-width: 96rem;
    min-height: 38rem;
    height: 38rem;
    padding: 0 10rem;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    font-size: 11rem;
  }

  .demo-form--cv {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    border-radius: var(--radius-pill);
    padding: 0;
    gap: 0;
    margin-left: 0;
  }

  .demo-form--cv input {
    flex: 1;
    min-width: 0;
    width: auto;
    min-height: 38rem;
    height: 38rem;
    padding: 0 8rem;
    font-size: 11rem;
  }

  .demo-form--cv input[name="company"] {
    flex: 2 1 0;
  }

  .demo-form--cv input[name="email"] {
    flex: 3 1 0;
    border-left: 1px solid rgba(0, 22, 122, 0.12);
  }

  .demo-form--cv .btn--demo {
    flex: 0 0 auto;
    width: auto;
    min-width: 96rem;
    min-height: 38rem;
    height: 38rem;
    padding: 0 10rem;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    font-size: 11rem;
  }

  .fv__cta {
    position: relative;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20rem;
    margin-inline: auto;
    text-align: center;
  }

  .fv__cta-note {
    margin: 0 0 10rem;
    font-size: 14rem;
    text-align: center;
  }

  .fv__aside .btn--download {
    width: 100%;
    min-height: 56rem;
    font-size: 15rem;
  }

  /* 動画 */
  .videos {
    padding: 28rem 0 24rem;
  }

  .carousel {
    height: 240rem;
    margin-bottom: 16rem;
  }

  .carousel__slide {
    width: 300rem;
  }

  .carousel__slide[data-offset="1"] {
    transform: translate(calc(-50% + 210rem), -50%) scale(0.78);
  }

  .carousel__slide[data-offset="-1"] {
    transform: translate(calc(-50% - 210rem), -50%) scale(0.78);
  }

  .carousel__slide[data-offset="2"],
  .carousel__slide[data-offset="-2"] {
    opacity: 0;
    pointer-events: none;
  }

  .carousel__card {
    border-radius: 0;
  }

  .carousel__title {
    margin-bottom: 8rem;
    font-size: 15rem;
  }

  .video-frame {
    border-radius: 14rem;
  }

  .video-frame__play {
    width: 56rem;
    height: 56rem;
  }

  .carousel__arrow {
    width: 40rem;
    height: 40rem;
  }

  .carousel__arrow--prev {
    left: 8rem;
  }

  .carousel__arrow--next {
    right: 8rem;
  }

  .videos__ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8rem;
    padding: 0 10rem;
  }

  .videos__ctas .btn {
    flex: 1;
    width: auto;
    min-width: 0;
    min-height: 40rem;
    padding: 0 10rem;
    font-size: 13rem;
  }

  .btn:hover {
    transform: none;
    box-shadow: none;
  }

  .features {
    --feat-bump: 52rem;
    --feat-stroke: 2rem;
    --feat-tab-radius: 14rem;
    --feat-fillet: 8rem;
    padding: 28rem 0 40rem;
  }
  .features__heading {
    font-size: 22rem;
    margin-bottom: 12rem;
    padding: 0 16rem;
  }
  .features__heading-em {
    font-size: 26rem;
  }
  .feat-card {
    border-radius: 0;
  }
  .tabs {
    overflow: visible;
    padding: 0 12rem;
  }

  .tabs__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: none;
    overflow: visible;
    padding: 44rem 0 0;
    gap: 0;
    position: relative;
    z-index: 2;
  }

  .tabs__btn {
    flex: none;
    width: auto;
    min-width: 0;
    min-height: 56rem;
    padding: 12rem 8rem 10rem;
    font-size: 14rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    white-space: normal;
    text-align: center;
    background: #f7f4ef;
  }

  .tabs__btn.is-active {
    padding-top: 12rem;
    border-bottom: 2px solid var(--color-white);
    margin-bottom: -2px;
    background: var(--color-white);
    z-index: 4;
  }

  .tabs__btn.is-active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -1px;
    right: -1px;
    height: 6rem;
    background: var(--color-white);
    z-index: 5;
  }

  .tabs__btn.is-active .tabs__icon {
    width: 72rem;
    height: 72rem;
  }

  .tabs__icon img {
    width: 44rem;
    height: 44rem;
    margin-top: -14rem;
  }

  .tabs__panels {
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 0;
    margin-top: -2px;
  }

  .feature-panel {
    padding: 28rem 16rem 24rem;
    border: 2px solid var(--color-orange);
    border-radius: 0 0 16rem 16rem;
  }

  .feature-block {
    margin-bottom: 24rem;
  }

  .feature-block__title {
    font-size: 18rem;
  }

  .feature-block__title::before {
    width: 4rem;
    height: 18rem;
  }

  .feature-block p {
    font-size: 16rem;
    line-height: 1.85;
  }

  .feat-item__nowrap {
    white-space: normal;
  }

  .hw-intro {
    margin-bottom: 20rem;
  }
  .feat-bubble {
    top: -20rem;
    right: 0;
    width: 160rem;
    max-width: 160rem;
    height: 116rem;
    font-size: 9rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
  .feat-bubble p {
    padding: 8rem 12rem 22rem;
  }
  .feat-visual {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    margin: 16rem 0 0;
  }
  .feat-visual__media { order: -1; }
  .feat-visual__media > img { height: auto; }
  .feat-pins {
    display: block;
  }

  .feat-pin {
    width: 24rem;
    height: 24rem;
    font-size: 12rem;
  }
  .feat-note {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
    padding: 12rem 14rem 12rem 48rem;
  }
  .feat-note--tl,
  .feat-note--tr,
  .feat-note--bl,
  .feat-note--br,
  .hw-dash .feat-note--tl,
  .hw-dash .feat-note--tr {
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
  }
  .feat-note--bl {
    width: 100%;
    text-align: left;
  }
  .feat-note--bl .feat-note__hl {
    text-align: left;
  }

  .feat-note--br {
    margin-bottom: 64rem;
    overflow: visible;
  }

  .feat-note--br .feat-note__catch--bubble {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 12rem);
    bottom: auto;
    width: max-content;
    max-width: calc(100% - 8rem);
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 10rem 12rem;
    font-size: 12rem;
    transform: translateX(-50%);
  }

  /* 上向きテール（カードから出ている見た目） */
  .feat-note--br .feat-note__catch--bubble::after {
    top: auto;
    bottom: 100%;
    border-width: 0 8rem 10rem 8rem;
    border-color: transparent transparent var(--color-navy) transparent;
  }

  .feat-note--br .feat-note__catch--bubble::before {
    top: auto;
    bottom: calc(100% - 2rem);
    border-width: 0 7rem 8rem 7rem;
    border-color: transparent transparent var(--color-white) transparent;
  }

  .feat-note--br .feat-note__catch-body {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0;
  }

  .feat-note--br .feat-note__catch-line {
    display: inline;
  }

  .feat-note--br .feat-note__catch-num {
    font-size: 24rem;
    vertical-align: -1rem;
    margin: 0 1rem;
  }

  .feat-note[data-num]::before {
    content: attr(data-num);
    position: absolute;
    top: 12rem;
    left: 12rem;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: var(--color-orange);
    border: 2rem solid #fff;
    color: #fff;
    font-size: 12rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4rem 10rem rgba(0, 22, 122, 0.22);
  }
  .feat-visual__leaders { display: none; }
  .feat-note__title { font-size: 16rem; margin: 0 0 2rem; }
  .feat-note__text { font-size: 13rem; }
  .hw-flow {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    margin-left: 0;
    margin-right: 0;
  }
  .feat-visual.hw-dash,
  .hw-modal,
  .hw-modal__media {
    display: contents;
  }
  .hw-dash .feat-visual__media {
    order: 1;
  }
  .hw-modal__shot {
    order: 2;
    padding: 6rem;
    border: 3rem solid var(--color-navy);
    background: #fff;
    box-shadow: 0 12rem 28rem rgba(0, 22, 122, 0.16);
  }
  .hw-dash .feat-note {
    order: 3;
  }
  .hw-modal__note {
    order: 4;
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin: 0;
    transform: none;
  }
  .hw-modal__tail {
    display: none;
  }
  .hw-flow__join { display: none; }

  .sec-heading {
    font-size: 26rem;
    margin-bottom: 0;
  }

  .sec-company {
    padding: 32rem 0 40rem;
  }

  .company-table {
    width: 100%;
    max-width: none;
    padding: 0 20rem;
    margin: 0 auto;
    text-align: left;
  }

  .company-table__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding: 14rem 40rem;
  }

  .company-table__row dt,
  .company-table__row dd {
    font-size: 13rem;
    letter-spacing: 0.02em;
    text-align: left;
  }

  .company-table__row dt {
    color: var(--color-muted);
    font-size: 12rem;
    font-weight: 700;
  }

  /* CV */
  .cv {
    padding: 40rem 0 40rem;
  }

  .cv__shell {
    display: flex;
    flex-direction: column;
    gap: 16rem;
    padding: 0 16rem;
  }

  .cv-card {
    flex-direction: column;
    align-items: center;
    gap: 16rem;
    min-height: 0;
    padding: 24rem 18rem;
  }

  .cv-card__visual {
    width: 100%;
    max-width: 220rem;
    margin-inline: auto;
  }

  .cv-card__visual img {
    width: 80%;
  }

  .cv-card--dl .cv-card__body {
    width: 100%;
    text-align: center;
  }

  .cv-card__note,
  .cv-card__title {
    font-size: 14rem;
  }

  .cv-card__text {
    font-size: 12rem;
  }

  .cv-card--dl .btn,
  .cv-card .btn {
    width: 100%;
    min-width: 0;
  }

  .cv-card__disclaimer {
    font-size: 11rem;
  }

  /* フッター */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24rem;
    min-height: 0;
    padding: 32rem 20rem 40rem;
  }

  .footer__name {
    font-size: 20rem;
  }

  .footer__dept {
    font-size: 15rem;
  }

  .footer__tel {
    font-size: 16rem;
  }

  .footer__tel span {
    display: block;
    margin: 6rem 0 0;
    font-size: 12rem;
  }

  .footer__bsol {
    width: 100%;
    min-height: 72rem;
    margin-left: 0;
  }

  .footer__bsol span {
    font-size: 14rem;
    padding: 0 20rem;
  }

  /* ページトップ */
  .back-to-top {
    display: none;
  }
}
