@charset "UTF-8";

/* =========================================================
   テナモ 基本機能 LP
   前半: PC（基準幅 1440）
   後半: SP（基準幅 375）  ※ @media (max-width: 767px)
   ========================================================= */

/* ----------------------------------------
   デザインシステム
   ---------------------------------------- */
: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-shot: 0 8rem 20rem rgba(0, 0, 0, 0.2);
  --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,
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;
}

/* ----------------------------------------
  FV
   ---------------------------------------- */
.fv {
  background: linear-gradient(180deg, var(--color-orange) 0%, var(--color-orange-mid) 60%);
  color: var(--color-navy);
  overflow: hidden;
}

.fv__gear {
  position: absolute;
  left: 100rem;
  top: -100rem;
  width: 400rem;
  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__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: var(--color-white);*/
  background: linear-gradient(180deg, var(--color-orange-mid) 0%, var(--color-white) 20%);
}

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

.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-navy);
  border: 1px 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;
  background: var(--color-navy);
}

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

.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: var(--shadow-btn);
  transform: translateY(-50%);
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.carousel__arrow:hover {
  background: var(--color-navy-deep);
  transform: translateY(calc(-50% - 2rem));
  box-shadow: var(--shadow-btn-hover);
}

.carousel__arrow span {
  width: 12rem;
  height: 12rem;
  border-top: 2px solid #fff;
  border-right: 2px 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 {
  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(5, 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;
}

.estimate-flow {
  position: relative;
  margin: 8rem 0 48rem;
  overflow: visible;
  container-type: inline-size;
}

.estimate-shot {
  position: relative;
}

.estimate-shot img {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-shot);
  background: var(--color-white);
}

.estimate-shot--cart {
  width: 70%;
  z-index: 1;
  overflow: visible;
}

.estimate-shot__frame {
  position: absolute;
  left: 73%;
  top: 61.5%;
  z-index: 3;
  width: 23.5%;
  height: 11%;
  border: 3rem solid var(--color-navy);
  box-shadow: 0 0 0 2rem var(--color-white);
  pointer-events: none;
}

.estimate-flow__note {
  position: absolute;
  top: 26%;
  right: 4%;
  z-index: 5;
  width: 24%;
  padding: 14rem 16rem;
  border-radius: 8rem;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: 0 8rem 18rem rgba(0, 22, 122, 0.2);
}

.estimate-flow__arrow {
  position: absolute;
  left: calc(70cqw * 0.965);
  top: calc(70cqw * 826 / 1464 * 0.67);
  z-index: 7;
  width: calc(70cqw * 0.1386);
  height: calc(70cqw * 826 / 1464 * 0.182);
  border-top: 3rem solid var(--color-navy);
  border-right: 3rem solid var(--color-navy);
  pointer-events: none;
}

.estimate-flow__arrow::after {
  content: "";
  position: absolute;
  left: 100%;
  right: auto;
  bottom: 0;
  border-style: solid;
  border-width: 12rem 8rem 0 8rem;
  border-color: var(--color-navy) transparent transparent transparent;
  transform: translateX(calc(-50% + 1.5rem));
}

.estimate-shot--done {
  width: 68%;
  margin-top: -70rem;
  margin-left: 32%;
  z-index: 2;
}

.estimate-flow__bubble {
  position: absolute;
  left: -11%;
  top: 34%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38%;
  height: auto;
  aspect-ratio: 294 / 185;
  padding: 12rem 32rem 20rem;
  color: var(--color-orange);
  font-size: 16rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  filter: drop-shadow(0 10rem 18rem rgba(0, 22, 122, 0.16));
}

.estimate-flow__bubble img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  box-shadow: none;
  background: none;
  pointer-events: none;
}

.estimate-flow__bubble span {
  position: relative;
  z-index: 1;
}

.order-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24rem;
}

.order-intro__copy {
  flex: 1;
  min-width: 0;
}

.order-intro__flow {
  flex-shrink: 0;
  width: 380rem;
  margin-top: 36rem;
  margin-right: 48rem;
  border-radius: 0;
}

.order-shots {
  margin: 8rem 0 48rem;
}

.order-shot {
  position: relative;
}

.order-shot__figure {
  position: relative;
  margin: 0;
  overflow: visible;
}

.order-shot__media {
  position: relative;
}

.order-shot img {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-shot);
  background: var(--color-white);
}

.order-shot__frame {
  position: absolute;
  z-index: 4;
  border: 3rem solid var(--color-navy);
  box-shadow: 0 0 0 2rem var(--color-white);
  pointer-events: none;
}

.order-callout {
  position: absolute;
  z-index: 8;
  margin: 0;
  padding: 12rem 16rem;
  border-radius: 8rem;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 13rem;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: 0 8rem 18rem rgba(0, 22, 122, 0.2);
}

.order-callout__title {
  display: block;
  margin: 0 0 6rem;
  font-size: 18rem;
  font-weight: 800;
  line-height: 1.3;
}

.order-shot__arrow {
  position: absolute;
  z-index: 9;
  pointer-events: none;
}

.order-shot__arrow::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--color-navy);
}

.order-shot--1,
.order-shot--2,
.order-shot--3 {
  margin-left: -64rem;
  margin-right: -64rem;
  padding-left: 204rem;
  padding-right: 204rem;
}

.order-shot--1 .order-callout {
  right: calc(100% + 16rem);
  top: 28.4%;
  width: 168rem;
  padding: 10rem 12rem;
  transform: translateY(-50%);
}

.order-shot--1 .order-shot__frame {
  left: 7.2%;
  top: 24.4%;
  width: 36%;
  height: 8%;
}

.order-shot--1 .order-shot__arrow {
  left: -16rem;
  top: 28.4%;
  width: calc(7.2% + 16rem);
  height: 2px;
  background: var(--color-navy);
  transform: translateY(-50%);
}

.order-shot--1 .order-shot__arrow::after {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.order-shot--2 .order-callout {
  left: calc(100% + 16rem);
  top: 78%;
  width: 168rem;
  transform: translateY(-50%);
}

.order-shot--2 .order-shot__frame {
  left: 85.3%;
  top: 86.6%;
  width: 5.2%;
  height: 8.4%;
}

.order-shot--2 .order-shot__arrow {
  left: 90.5%;
  top: 90.8%;
  width: calc(9.5% + 16rem);
  height: 2px;
  background: var(--color-navy);
  transform: translateY(-50%);
}

.order-shot--2 .order-shot__arrow::after {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.order-shot--3 {
  padding-bottom: 96rem;
}

.order-shot--3 .order-callout {
  left: 62%;
  top: calc(100% + 20rem);
  width: 248rem;
}

.order-shot--3 .order-shot__frame {
  left: 50.57%;
  top: 49.77%;
  width: 9.78%;
  height: 19.53%;
}

.order-shot--3 .order-shot__arrow {
  left: 55.46%;
  top: 69.3%;
  width: 6.54%;
  height: calc(30.7% + 50rem);
  border-left: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
}

.order-shot--3 .order-shot__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--color-navy);
  transform: translate(-50%, -50%);
}

.order-shot--3 .order-shot__arrow::after {
  display: none;
}

.order-ellipsis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
  padding: 18rem 0;
}

.order-ellipsis span {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--color-navy);
}

.approval {
  display: flex;
  align-items: stretch;
  gap: 16rem;
  margin-top: 20rem;
  padding-top: 56rem;
}

.approval p {
  padding-left: 0;
  line-height: 1.45;
}

.approval__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 148rem;
  padding: 40rem 24rem 20rem;
  background: var(--color-orange-soft);
  box-shadow: var(--shadow-soft);
}

.approval__box--apply {
  min-width: 148rem;
}

.approval__box--flow {
  flex: 0 0 auto;
  min-width: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 24rem;
  padding-right: 24rem;
}

.approval__head {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  margin: 0;
  padding: 6rem 18rem;
  background: var(--color-navy);
  color: #ffffff;
  font-size: 14rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.feature-block .approval__head {
  color: #ffffff;
}

.approval__role {
  margin: 0 0 8rem;
  padding: 0;
  color: var(--color-navy);
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.feature-block .approval__role {
  width: 100%;
  margin: 0 0 8rem;
  padding: 0;
  color: var(--color-navy);
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.approval__box img,
.approval__person img {
  display: block;
  width: 56rem;
  height: auto;
}

.approval__people {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: auto;
  height: 100%;
  min-height: 0;
  gap: 70rem;
}

.approval__person {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40rem;
  padding-bottom: 20rem;
}

.approval__chevron {
  flex-shrink: 0;
  align-self: center;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11rem 0 11rem 18rem;
  border-color: transparent transparent transparent var(--color-navy);
}

.approval__end {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  gap: 12rem;
}

.approval__order-wrap {
  position: relative;
}

.approval__bubble {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12rem);
  z-index: 2;
  margin: 0;
  padding: 8rem 12rem;
  border: 3px solid var(--color-orange);
  background: var(--color-white);
  color: var(--color-orange);
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
}

.feature-block .approval__bubble {
  padding: 4rem 12rem;
  color: var(--color-orange);
  font-size: 18rem;
  line-height: 1.35;
}

.approval__bubble::after,
.approval__bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  left: auto;
  margin: 0;
  transform: translateY(-50%);
}

.approval__bubble::after {
  border-style: solid;
  border-width: 9rem 12rem 9rem 0;
  border-color: transparent var(--color-orange) transparent transparent;
}

.approval__bubble::before {
  z-index: 1;
  border-style: solid;
  border-width: 7rem 8rem 7rem 0;
  border-color: transparent var(--color-white) transparent transparent;
  transform: translate(1.5rem, -50%);
}

.approval__order {
  margin: 0;
  padding: 6rem 24rem;
  border: 2px solid var(--color-navy);
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 18rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.feature-block .approval__order {
  padding: 6rem 24rem;
  line-height: 1.2;
}

.order-repeat {
  display: block;
  width: 78%;
  max-width: 736rem;
  margin: 20rem auto 0;
  border-radius: 0;
}

.delivery-shot {
  margin: 8rem -64rem 24rem;
  padding: 0 204rem 96rem;
}

.delivery-shot__figure {
  position: relative;
  margin: 0;
  overflow: visible;
}

.delivery-shot img {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-shot);
  background: var(--color-white);
}

.delivery-shot__note {
  left: 50%;
  top: calc(100% + 20rem);
  width: 360rem;
  transform: translateX(-50%);
}

.delivery-shot__line {
  position: absolute;
  left: -16rem;
  top: 50%;
  z-index: 9;
  width: calc(50% - 180rem + 16rem);
  height: calc(50% + 50rem);
  border-left: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  pointer-events: none;
}

.delivery-shot__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28rem;
  height: 2px;
  background: var(--color-navy);
  transform: translateY(-50%);
}

.delivery-shot__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--color-navy);
  transform: translate(-50%, -50%);
}

.invoice-shot {
  margin: 8rem -64rem 24rem;
  padding: 0 204rem;
}

.invoice-shot__figure {
  position: relative;
  margin: 0;
  overflow: visible;
}

.invoice-shot img {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-shot);
  background: var(--color-white);
}

.invoice-shot__note--left {
  right: calc(100% + 16rem);
  top: 30.1%;
  width: 200rem;
  transform: translateY(-50%);
}

.invoice-shot__line--left {
  position: absolute;
  left: -16rem;
  top: 30.1%;
  z-index: 9;
  width: calc(5.9% + 16rem);
  height: 2px;
  background: var(--color-navy);
  transform: translateY(-50%);
  pointer-events: none;
}

.invoice-shot__line--left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--color-navy);
  transform: translate(50%, -50%);
}

.invoice-shot__note--right {
  left: calc(100% + 16rem);
  top: 57.2%;
  width: 216rem;
  transform: translateY(-50%);
}

.invoice-shot__line--right {
  position: absolute;
  left: 89.9%;
  top: 57.2%;
  z-index: 9;
  width: calc(10.1% + 16rem);
  height: 2px;
  background: var(--color-navy);
  transform: translateY(-50%);
  pointer-events: none;
}

.invoice-shot__line--right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--color-navy);
  transform: translate(-50%, -50%);
}

.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;
}

.feature-block__title::before {
  content: "";
  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;
}

.shot {
  position: relative;
  margin: 20rem -64rem 56rem;
  max-width: none;
  padding: 64rem 204rem 80rem;
}

.shot img,
.shot__img {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-shot);
  background: var(--color-white);
}

.shot .shot__img--sp {
  display: none;
}

.shot__notes--sp {
  display: none;
}

.shot__note {
  position: absolute;
  z-index: 2;
  max-width: 184rem;
  padding: 12rem 14rem;
  border-radius: 8rem;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 13rem;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 8rem 18rem rgba(0, 22, 122, 0.2);
}

.shot__note-title {
  display: block;
  margin: 0 0 6rem;
  font-size: 18rem;
  font-weight: 800;
  line-height: 1.3;
}

.shot__line {
  position: absolute;
  pointer-events: none;
}

.shot__line::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--color-navy);
}

.shot__note--freeword {
  top: 196rem;
  left: 8rem;
  max-width: none;
  padding: 10rem 12rem;
  white-space: nowrap;
}

.shot__note--freeword .shot__line {
  top: 50%;
  left: 100%;
  z-index: 1;
  width: 140rem;
  height: 2px;
  background: var(--color-navy);
  transform: translateY(-50%);
}

.shot__note--freeword .shot__line::after {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.shot__note--code {
  top: 348rem;
  left: 8rem;
}

.shot__note--code .shot__line {
  left: 78%;
  bottom: 100%;
  z-index: 1;
  width: 96rem;
  height: 67rem;
  border-top: 2px solid var(--color-navy);
  border-left: 2px solid var(--color-navy);
}

.shot__note--code .shot__line::after {
  top: -5rem;
  right: -5rem;
}

.shot__note--price {
  top: auto;
  bottom: 16rem;
  left: 430rem;
}

.shot__note--price .shot__line {
  left: 20rem;
  bottom: 100%;
  z-index: 1;
  width: 36rem;
  height: 146rem;
  border-top: 2px solid var(--color-navy);
  border-left: 2px solid var(--color-navy);
}

.shot__note--price .shot__line::after {
  top: -5rem;
  right: -5rem;
}

.shot__note--date {
  top: auto;
  bottom: 16rem;
  left: 50%;
  transform: translateX(-50%);
}

.shot__note--date .shot__line {
  left: 50%;
  bottom: 100%;
  z-index: 1;
  width: 2px;
  height: 94rem;
  background: var(--color-navy);
  transform: translateX(-50%);
}

.shot__note--date .shot__line::after {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shot__note--cat {
  top: auto;
  bottom: 16rem;
  right: 360rem;
}

.shot__note--cat .shot__line {
  right: 70%;
  bottom: 100%;
  z-index: 1;
  width: 30rem;
  height: 206rem;
  border-top: 2px solid var(--color-navy);
  border-right: 2px solid var(--color-navy);
}

.shot__note--cat .shot__line::after {
  top: -5rem;
  left: -5rem;
}

.shot__note--bar {
  top: 102rem;
  right: 8rem;
  width: 184rem;
}

.shot__note--bar .shot__line {
  right: 100%;
  bottom: 50%;
  z-index: 1;
  width: 168rem;
  height: 60rem;
  border-bottom: 2px solid var(--color-navy);
  border-left: 2px solid var(--color-navy);
}

.shot__note--bar .shot__line::after {
  top: -5rem;
  left: -5rem;
}

.shot__note--maker {
  top: 283rem;
  right: 60rem;
  width: 130rem;
  text-align: center;
}

.shot__note--maker .shot__line,
.shot__note--spec .shot__line {
  top: 50%;
  right: 100%;
  z-index: 1;
  width: 52rem;
  height: 1.5px;
  background: var(--color-navy);
  transform: translateY(-50%);
}

.shot__note--maker .shot__line::after,
.shot__note--spec .shot__line::after {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.shot__note--spec {
  top: 364rem;
  right: 60rem;
  width: 130rem;
  text-align: center;
}

.feature-more {
  position: relative;
  padding: 8rem 0 8rem;
  text-align: center;
}

.feature-more::before,
.feature-more::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 51rem;
  width: 104rem;
  height: 2rem;
  background: var(--color-navy);
}

.feature-more::before {
  left: 220rem;
  transform: rotate(58deg);
}

.feature-more::after {
  right: 220rem;
  transform: rotate(-58deg);
}

.feature-more__lead {
  margin-bottom: 8rem;
  color: var(--color-orange);
  font-size: 24rem;
  font-weight: 800;
}

.feature-more__sub {
  margin-bottom: 28rem;
  color: var(--color-navy);
  font-size: 15rem;
  font-weight: 700;
}

.feature-more .btn {
  min-width: 360rem;
}

/* ----------------------------------------
   CV
   ---------------------------------------- */
.cv {
  padding: 40rem 0 50rem;
  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;
}

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

.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;
}

.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);
}

/* ----------------------------------------
   フッター
   ---------------------------------------- */
  .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;
  }

/* ----------------------------------------
   ページトップ
   ---------------------------------------- */
.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: 2px solid var(--color-navy);
  color: var(--color-navy);
  font-size: 18rem;
  font-weight: 800;
  box-shadow: var(--shadow-btn);
  transition: background var(--ease), color var(--ease);
}

.back-to-top:hover {
  background: var(--color-navy);
  color: var(--color-white);
}







/* =========================================================
   SP（基準幅 375）
   このブロックより下はモバイル専用
   ========================================================= */
@media (max-width: 767px) {
  :root {
    --header-height: 64rem;
    --section-pad: 60rem;
  }

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

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

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

  .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;
    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;
  }

  /* 機能説明 */
  .features {
    padding: 28rem 0 24rem;
  }

  .features__heading {
    margin-bottom: 0rem;
    padding: 0 16rem;
    font-size: 22rem;
  }

  .features__heading-em {
    font-size: 24rem;
  }

  .tabs {
    overflow-x: hidden;
    overflow-y: visible;
    padding: 0 12rem;
  }

  .tabs__list {
    display: flex;
    gap: 0;
    max-width: none;
    width: 100%;
    overflow: visible;
    padding: 36rem 0 2rem;
    position: relative;
    z-index: 2;
  }

  .tabs__btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48rem;
    padding: 12rem 2rem 8rem;
    font-size: 11rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .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: 56rem;
    height: 56rem;
  }

  .tabs__btn.is-active .tabs__icon::after {
    left: 6rem;
    right: 6rem;
  }

  .tabs__icon img {
    width: 32rem;
    height: 32rem;
    margin-top: -10rem;
  }

  .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 {
    height: 18rem;
  }

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

  .shot {
    margin: 20rem 0 28rem;
    padding: 0;
  }

  .shot .shot__img--pc {
    display: none;
  }

  .shot .shot__img--sp {
    display: block;
  }

  .shot__notes--pc {
    display: none;
  }

  .shot__notes--sp {
    display: block;
    margin-top: 16rem;
  }

  .shot__caption-list {
    display: grid;
    gap: 8rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .shot__caption-list li {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 12rem 14rem;
    border-radius: 8rem;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 13rem;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: 0 8rem 18rem rgba(0, 22, 122, 0.2);
  }

  .shot__caption-num {
    flex: 0 0 auto;
  }

  .shot__caption-body {
    flex: 1 1 auto;
    min-width: 0;
  }

  .shot__caption-label {
    display: block;
    margin: 0 0 4rem;
    font-size: 16rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .shot__caption-desc {
    display: block;
    padding-left: 0;
    font-weight: 700;
  }

  .shot__note {
    position: static;
    max-width: none;
    font-size: 12rem;
  }

  .shot__note-title {
    font-size: 16rem;
    margin: 0 0 2rem;
  }

  .shot__line {
    display: none;
  }

  .estimate-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 16%;
    overflow: visible;
    margin: 8rem 0 8rem;
  }

  .estimate-shot--cart {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
  }

  .estimate-shot__frame::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 7;
    width: 3rem;
    height: 340%;
    background: var(--color-navy);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .estimate-flow__note {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    top: auto;
    right: auto;
    z-index: 5;
    width: auto;
    max-width: 188rem;
    margin: 16rem 8rem 16rem 0;
    padding: 10rem 12rem;
    font-size: 12rem;
    line-height: 1.5;
    align-self: center;
  }

  .estimate-flow__arrow {
    display: block;
    grid-column: 2;
    grid-row: 2;
    position: relative;
    left: auto;
    top: auto;
    z-index: 7;
    width: 3rem;
    height: auto;
    min-height: 48rem;
    justify-self: start;
    align-self: stretch;
    margin: 0;
    border: none;
    background: var(--color-navy);
    pointer-events: none;
  }

  .estimate-flow__arrow::after {
    left: 50%;
    right: auto;
    bottom: 0;
    border-width: 10rem 7rem 0 7rem;
    transform: translate(-50%, 50%);
  }

  .estimate-shot--done {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    margin: 0 0 92rem;
    overflow: visible;
  }

  .estimate-flow__bubble {
    position: absolute;
    left: -10%;
    top: 100%;
    bottom: auto;
    z-index: 6;
    width: 62%;
    height: auto;
    margin: 0;
    padding: 12rem 16rem 18rem;
    font-size: 12rem;
    transform: translateY(-18%);
  }

  .order-intro {
    flex-direction: column;
    gap: 16rem;
  }

  .order-intro__flow {
    width: 100%;
    max-width: 360rem;
    margin: 0 auto;
  }

  .order-shot--1,
  .order-shot--2,
  .order-shot--3 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .order-shot .order-shot__figure {
    display: block;
  }

  .order-shot .order-shot__caption {
    display: flex;
    align-items: center;
    column-gap: 16rem;
    margin-top: 12rem;
  }

  .order-shot .order-callout {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: calc(100% - 40rem);
    margin: 0;
    padding: 10rem 12rem;
    font-size: 12rem;
    line-height: 1.5;
    transform: none;
  }

  .order-shot .order-callout__title {
    font-size: 14rem;
    margin: 0 0 4rem;
  }

  .order-shot__frame,
  .order-shot__arrow {
    display: block;
  }

  .order-shot--1 .order-shot__frame {
    left: 4.8%;
    top: 21.8%;
    width: 40.8%;
    height: 13.2%;
  }

  .order-shot--2 .order-shot__frame {
    left: 82.6%;
    top: 83.4%;
    width: 9.2%;
    height: 14.8%;
  }

  .order-shot--3 .order-shot__frame {
    left: 47.8%;
    top: 45.4%;
    width: 15.4%;
    height: 28.2%;
  }

  .order-shot .order-ellipsis {
    padding: 0;
    gap: 8rem;
  }

  .order-shot--1 .order-shot__caption {
    justify-content: flex-start;
    margin-bottom: 12rem;
  }

  .order-shot--1 .order-shot__arrow {
    left: 4.8%;
    top: 28.4%;
    width: 2px;
    height: calc(71.6% + 12rem);
    background: var(--color-navy);
    transform: none;
    border: none;
  }

  .order-shot--1 .order-shot__arrow::after {
    top: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .order-shot--2 .order-shot__caption {
    justify-content: flex-end;
  }

  .order-shot--2 .order-shot__arrow {
    left: 91.8%;
    top: 90.8%;
    width: 2px;
    height: calc(9.2% + 12rem);
    background: var(--color-navy);
    transform: none;
    border: none;
  }

  .order-shot--2 .order-shot__arrow::after {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .order-shot--3 .order-shot__caption {
    justify-content: flex-end;
  }

  .order-shot--3 .order-callout {
    width: 36%;
    max-width: 36%;
  }

  .order-shot--3 .order-shot__arrow {
    left: 55.5%;
    top: 73.6%;
    width: 9%;
    height: calc(26.4% + 36rem);
    background: none;
    border: none;
    border-left: 2px solid var(--color-navy);
    border-bottom: 2px solid var(--color-navy);
    transform: none;
  }

  .order-shot--3 .order-shot__arrow::before {
    top: 0;
    bottom: auto;
    left: 0;
    transform: translate(-50%, -50%);
  }

  .order-shot--3 .order-shot__arrow::after {
    display: none;
  }

  .order-callout__title {
    font-size: 16rem;
    margin: 0 0 2rem;
  }

  .delivery-shot {
    margin: 8rem 0 12rem;
    padding: 0;
  }

  .delivery-shot__figure {
    display: flex;
    flex-direction: column;
  }

  .delivery-shot__note {
    position: static;
    order: 0;
    left: auto;
    width: auto;
    margin-top: 10rem;
    transform: none;
  }

  .delivery-shot__line {
    display: none;
  }

  .invoice-shot {
    margin: 8rem 0 12rem;
    padding: 0;
  }

  .invoice-shot__figure {
    display: flex;
    flex-direction: column;
  }

  .invoice-shot__note {
    position: static;
    order: -1;
    width: auto;
    margin-bottom: 10rem;
    transform: none;
  }

  .invoice-shot__note--right {
    order: 0;
    margin-top: 10rem;
    margin-bottom: 0;
  }

  .invoice-shot__line {
    display: none;
  }

  .order-ellipsis {
    padding: 12rem 0;
  }

  .approval {
    flex-direction: column;
    gap: 20rem;
    margin-top: 36rem;
    padding-top: 12rem;
  }

  .approval__box,
  .approval__box--apply,
  .approval__box--flow {
    width: 100%;
  }

  .approval__people {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 12rem;
    height: auto;
  }

  .approval__person {
    padding-top: 8rem;
    padding-bottom: 0;
  }

  .approval__person:first-child {
    padding-top: 40rem;
  }

  .approval__chevron {
    transform: rotate(90deg);
  }

  .approval__end {
    flex-direction: column;
    width: 100%;
    padding-top: 0;
  }

  .approval__order-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .approval__order {
    order: 1;
  }

  .approval__bubble {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    order: 2;
    margin: 16rem 0 0;
    text-align: center;
    white-space: normal;
  }

  .approval__bubble::after,
  .approval__bubble::before {
    top: auto;
    right: auto;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .approval__bubble::after {
    border-width: 0 6rem 7rem 6rem;
    border-color: transparent transparent var(--color-orange) transparent;
  }

  .approval__bubble::before {
    border-width: 0 5rem 5.5rem 5rem;
    border-color: transparent transparent var(--color-white) transparent;
    transform: translate(-50%, 1.5rem);
  }

  .order-repeat {
    width: 100%;
  }

  .feature-more::before,
  .feature-more::after {
    display: none;
  }

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

  .feature-more__sub {
    margin-bottom: 16rem;
    font-size: 12rem;
  }

  .feature-more .btn {
    min-width: 0;
    width: 100%;
    min-height: 48rem;
    font-size: 13rem;
    white-space: normal;
  }

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

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

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

  .cv-card__visual {
    width: 180rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cv-card__visual img {
    margin-left: auto;
    margin-right: auto;
  }

  .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;
  }

  .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;
  }

  /* フッター */
  .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;
  }
}
