@charset "utf-8";

/* ===== リセットCSS */

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Increase line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  1. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* ===== 共通 */

:root {
  --font-sans-serif: 'Noto Sans JP', sans-serif;
  --font-display: "Teko", sans-serif;
  --font-accent: "DotGothic16", sans-serif;

  --base-color: #ebe9e8;
  --main-color: #181818;
  --accent-color: #dc561e;

  --header-height: clamp(7.4rem, 6.133rem + 3.38vw, 11rem);
  --section-width: min(1300px, 100vw - (1.6rem * 2));

  --site-space: clamp(1.6rem, -3.154rem + 6.19vw, 4vw);
  --section-space: clamp(12rem, 7.774rem + 11.27vw, 24rem);
  --space-xxl: clamp(8rem, 5.182rem + 7.51vw, 16rem);
  --space-xl: clamp(6.4rem, 5.837rem + 1.5vw, 8rem);
  --space-l: clamp(4rem, 3.155rem + 2.25vw, 6.4rem);
  --space-m: clamp(3.2rem, 2.918rem + .75vw, 4rem);
  --space-s: clamp(2.4rem, 2.118rem + .75vw, 3.2rem);
  --space-xs: clamp(1.6rem, 1.318rem + .75vw, 2.4rem);
  --space-xxs: 1.6rem;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans-serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .04em;
  text-align: left;
  color: var(--main-color);
  background-color: var(--base-color);
  min-height: 100dvh;
  overflow-x: hidden;
}

img {
  height: auto;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

.title-main-size {
  font-family: var(--font-display);
  font-size: clamp(5.6rem, 4.755rem + 2.25vw, 8rem);
  font-weight: 600;
  line-height: 1;
}

.title-sub-size {
  font-size: clamp(1.8rem, 1.589rem + .56vw, 2.4rem);
  font-weight: 500;
}

.base-btn {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 380px;
  margin-inline: auto;
  padding: var(--space-xs) .8rem;
  font-size: clamp(1.8rem, 1.730rem + .19vw, 2rem);
  font-weight: 700;
  color: var(--base-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: .3s;
}

.base-btn::before {
  content: "";
  position: absolute;
  z-index: -10;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  transition: background-color .3s ease;
}

#back-btn::before {
  background: #686868;
}

.base-btn:hover::before,
#back-btn:hover::before {
  background-color: var(--base-color);
}

.base-btn:hover::after {
  content: attr(data-text);
  position: absolute;
  top: var(--space-xs);
  left: .8rem;
  width: calc(100% - .8rem * 2);
  height: calc(100% - var(--space-xs) * 2);
  color: var(--accent-color);
  animation: btn-link-glitch .3s cubic-bezier(.25, .46, .45, .94) both;
}

#back-btn:hover::after {
  color: #686868;
}

@keyframes btn-link-glitch {
  0% {
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }

  20% {
    transform: translate(-3px, 2px);
    clip-path: inset(50% 0 20% 0);
  }

  40% {
    transform: translate(2px, -1px);
    clip-path: inset(20% 0 60% 0);
  }

  60% {
    transform: translate(-2px, 1px);
    clip-path: inset(80% 0 5% 0);
  }

  80% {
    transform: translate(2px, -2px);
    clip-path: inset(30% 0 45% 0);
  }

  100% {
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
}

.base-btn-arrow,
.back-btn-arrow {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 5em;
  height: 100%;
  transform: translateY(-50%);
  background: url(../img/base-btn-line.svg) no-repeat center / 100%;
  transition: transform .3s ease;
}

.base-btn-arrow {
  right: -2.5em;
}

.back-btn-arrow {
  left: -2.5em;
  transform: translateY(-50%) scaleX(-1) translateX(0);
}

.base-btn:hover .base-btn-arrow,
.base-btn:focus .base-btn-arrow {
  transform: translateY(-50%) translateX(10px);
}

.base-btn:hover .back-btn-arrow,
.base-btn:focus .back-btn-arrow {
  transform: translateY(-50%) scaleX(-1) translateX(10px);
}

.icon {
  display: flex;
  align-items: center;
  gap: .5em;
}

.window-icon {
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/window_icon.svg) no-repeat center / contain;
}

/* ===== header */

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: var(--header-height);
  background-color: var(--main-color);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--site-space);
  opacity: 0;
  animation: header-fadein 2s forwards;
  animation-delay: 4.4s;
}

.header-logo-img {
  width: auto;
  height: clamp(4.2rem, 3.426rem + 2.07vw, 6.4rem);
}

.header-burger-btn {
  display: none;
}

@keyframes header-fadein {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- header-nav */

.header-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 min(3.4vw, 6.4rem);
  height: 100%;
}

.header-nav-link {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.589rem + .56vw, 2.4rem);
  font-weight: 500;
  color: var(--base-color);
  transition: .3s;
}

.nav-link-btn {
  padding: .8rem var(--space-m);
  background-color: var(--accent-color);
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.nav-link-btn:hover {
  background-color: var(--base-color);
}

.header-nav-link:hover::before,
.header-nav-link:hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
}

.nav-link-btn:hover::before,
.nav-link-btn:hover::after {
  color: var(--accent-color);
  top: .8rem;
  left: var(--space-m);
  width: calc(100% - var(--space-m) * 2);
  height: calc(100% - .8rem * 2);
  background: none;
}

.header-nav-link:hover::before {
  animation: nav-link-glitch .3s cubic-bezier(.25, .46, .45, .94) both;
}

.header-nav-link:hover::after {
  animation: nav-link-glitch .3s cubic-bezier(.25, .46, .45, .94) reverse both;
}

@keyframes nav-link-glitch {
  0% {
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }

  20% {
    transform: translate(-3px, 2px);
    clip-path: inset(50% 0 20% 0);
  }

  40% {
    transform: translate(2px, -1px);
    clip-path: inset(20% 0 60% 0);
  }

  60% {
    transform: translate(-2px, 1px);
    clip-path: inset(80% 0 5% 0);
  }

  80% {
    transform: translate(2px, -2px);
    clip-path: inset(30% 0 45% 0);
  }

  100% {
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
}

/* ===== fv */

.fv {
  position: relative;
  background-color: var(--main-color);
  line-height: 1.2;
  overflow: hidden;
}

.fv-bg-beam {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
}

.fv-wrap {
  display: grid;
  grid-template-columns: minmax(150px, 26vmin) minmax(300px, 1fr) minmax(150px, 40vmin);
  column-gap: 6vmin;
  position: relative;
  z-index: 20;
  height: 100%;
  min-height: calc(100vh - var(--header-height));
  padding: 6vmin var(--site-space);
  color: var(--base-color);
}

.fv-title-wrap {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  opacity: 0;
  animation: fv-fadein 2s forwards;
  animation-delay: 4s;
}

.fv-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 14vmin;
  font-weight: 600;
  line-height: 1;
}

.fv-subtitle-wrap {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: clamp(.8rem, .237rem + 1.5vw, 2.4rem);
}

.fv-subtitle {
  position: relative;
  font-size: 4.8vmin;
  font-weight: 600;
}

.fv-title::after,
.fv-subtitle::after {
  --slice-0: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  --slice-1: polygon(0% 80%, 100% 80%, 100% 100%, 0% 100%);
  --slice-2: polygon(0% 50%, 100% 50%, 100% 70%, 0% 70%);
  --slice-3: polygon(0% 10%, 100% 10%, 100% 15%, 0% 15%);
  --slice-4: polygon(0% 40%, 100% 40%, 100% 57%, 0% 57%);
  --slice-5: polygon(0% 80%, 100% 80%, 100% 95%, 0% 95%);
  display: block;
  position: absolute;
  inset: 0;
  text-shadow: -3px -3px 0px #f8f005, 3px 3px 0px #00e6f6, 6px 6px 0px #dc1E1E;
  clip-path: var(--slice-0);
}

.fv-title::after {
  content: "PLAY THE FUTURE";
  animation: title-glitch 1s steps(2, end) 4s forwards;
}

.fv-subtitle::after {
  content: "遊びの技術で未来を創る";
  animation: title-glitch 1s steps(2, end) 4s forwards;
}

@keyframes title-glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }

  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }

  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }

  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }

  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }

  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }

  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }

  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }

  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }

  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }

  99% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }

  100% {
    clip-path: var(--slice-0);
    transform: translate(0);
  }
}

.fv-path {
  width: 34vmin;
}

.fv-path path {
  stroke: var(--base-color);
  stroke-width: 1;
  fill: rgba(235, 233, 232, 0);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  transition: fill .3s ease-out;
  animation-delay: 4s;
}

.fv-path-line03 {
  animation: draw 1s ease-out forwards;
}

.fv-path-line01 {
  animation: draw .6s ease-out .6s forwards;
}

.fv-path-line02 {
  animation:
    draw .4s ease-out 1s forwards,
    fill-white .2s ease-out 1.4s forwards;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes fill-white {
  0% {
    fill: rgba(235, 233, 232, 0);
  }

  100% {
    fill: rgba(235, 233, 232, 1);
  }
}

.fv-item-left {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
  align-self: end;
}

.fv-position {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-accent);
  font-size: 1.8vmin;
  opacity: 0;
  animation: fv-fadein 2s forwards;
  animation-delay: 1.2s;
}

.fv-position-txt {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.fv-position-coordinate {
  position: relative;
  padding: .4rem .8rem;
  background-image: linear-gradient(90deg, var(--base-color) 0 8px, transparent 0 calc(100% - 8px), var(--base-color) calc(100% - 8px)),
    linear-gradient(var(--base-color) 0 8px, transparent 0 calc(100% - 8px), var(--base-color) calc(100% - 8px)),
    linear-gradient(90deg, var(--base-color) 0 8px, transparent 0 calc(100% - 8px), var(--base-color) calc(100% - 8px)),
    linear-gradient(var(--base-color) 0 8px, transparent 0 calc(100% - 8px), var(--base-color) calc(100% - 8px));
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: top, right, bottom, left;
  font-size: 1.2vmin;
  text-align: center;
}

.fv-map {
  position: relative;
  margin-top: var(--space-xs);
  padding: var(--space-xs) var(--space-s);
  background-color: var(--base-color);
  clip-path: polygon(85% 0, 100% 24%, 100% 100%, 0 100%, 0 0);
  opacity: 0;
  animation: fv-fadein 2s forwards;
  animation-delay: 1.6s;
}

.fv-map::before {
  content: "";
  position: absolute;
  z-index: -10;
  inset: 1px;
  background-color: var(--main-color);
  clip-path: polygon(85% 0, 100% 24%, 100% 100%, 0 100%, 0 0);
}

.fv-map-txt {
  font-family: var(--font-display);
  font-size: 1.8vmin;
  text-align: center;
}

.fv-map-img {
  max-width: 18vmin;
  margin: clamp(1rem, .314rem + .89vw, 1.6rem) auto 0;
  display: block;
  transition: opacity .5s ease-out;
  opacity: 1;
}

.fv-map-img.is-changing {
  opacity: 0;
}

.fv-map-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xxs);
  width: 100%;
  margin-top: clamp(.8rem, 0.659rem + 0.38vw, 1.2rem);
}

.fv-map-btn {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  padding: .8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  background-image: linear-gradient(90deg, var(--base-color) 0 3px, transparent 0 calc(100% - 3px), var(--base-color) calc(100% - 3px)),
    linear-gradient(var(--base-color) 0 3px, transparent 0 calc(100% - 3px), var(--base-color) calc(100% - 3px)),
    linear-gradient(90deg, var(--base-color) 0 3px, transparent 0 calc(100% - 3px), var(--base-color) calc(100% - 3px)),
    linear-gradient(var(--base-color) 0 3px, transparent 0 calc(100% - 3px), var(--base-color) calc(100% - 3px));
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: top, right, bottom, left;
}

.fv-map-icon-minus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1px;
  background-color: var(--base-color);
}

.fv-map-icon-plus::before,
.fv-map-icon-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--base-color);
}

.fv-map-icon-plus::before {
  width: .8rem;
  height: 1px;
}

.fv-map-icon-plus::after {
  width: 1px;
  height: .8rem;
}

.fv-map-bar {
  position: relative;
  flex-grow: 1;
  height: 1px;
  background-color: var(--base-color);
  opacity: .5;
}

.fv-map-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 6px;
  height: 6px;
  background-color: var(--base-color);
  transform: translate(-50%, -50%);
  transition: left .5s ease;
}

.fv-job {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  margin-top: 2.4vmin;
  opacity: 0;
  animation: fv-fadein 2s forwards;
  animation-delay: 2.4s;
}

.fv-job-icon {
  display: flex;
  align-items: center;
  gap: 1.5vmin;
}

.fv-job-img {
  width: 4vmin;
}

.fv-job-title {
  font-family: var(--font-display);
  font-size: 2.4vmin;
  font-weight: 400;
  line-height: 1.2;
  color: #b0adac;
}

.fv-3d {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  align-self: center;
  position: relative;
  width: 100%;
  max-width: 80vmin;
  height: 40vmin;
  margin: auto auto 5vmin;
  background-image: linear-gradient(90deg, var(--base-color) 0 clamp(2rem, 1.296rem + 1.88vw, 4rem), transparent 0 calc(100% - clamp(2rem, 1.296rem + 1.88vw, 4rem)), var(--base-color) calc(100% - clamp(2rem, 1.296rem + 1.88vw, 4rem))),
    linear-gradient(var(--base-color) 0 clamp(2rem, 1.296rem + 1.88vw, 4rem), transparent 0 calc(100% - clamp(2rem, 1.296rem + 1.88vw, 4rem)), var(--base-color) calc(100% - clamp(2rem, 1.296rem + 1.88vw, 4rem))),
    linear-gradient(90deg, var(--base-color) 0 clamp(2rem, 1.296rem + 1.88vw, 4rem), transparent 0 calc(100% - clamp(2rem, 1.296rem + 1.88vw, 4rem)), var(--base-color) calc(100% - clamp(2rem, 1.296rem + 1.88vw, 4rem))),
    linear-gradient(var(--base-color) 0 clamp(2rem, 1.296rem + 1.88vw, 4rem), transparent 0 calc(100% - clamp(2rem, 1.296rem + 1.88vw, 4rem)), var(--base-color) calc(100% - clamp(2rem, 1.296rem + 1.88vw, 4rem)));
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: top, right, bottom, left;
  opacity: 0;
  animation: fv-fadein 2s forwards;
}

.fv-3d-arrow-l,
.fv-3d-arrow-r {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(1.8rem, 1.448rem + .94vw, 2.8rem);
}

.fv-3d-arrow-l {
  left: -2%;
  transform: translateY(-50%) scaleX(-1);
}

.fv-3d-arrow-r {
  right: -2%;
}

.fv-3d-wave {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3vmin;
  color: var(--base-color);
  background: url(../img/fv-3d-wave-bg.svg) no-repeat center / 100%;
}

.fv-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fv-item-right {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  min-width: 0;
}

.fv-time-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 6vmin;
  gap: .4rem;
  font-family: var(--font-accent);
  opacity: 0;
  animation: fv-fadein 2s forwards;
  animation-delay: .4s;
}

.fv-time-txt {
  font-size: 1.8vmin;
}

.fv-date-txt {
  font-size: 1.5vmin;
}

.fv-graph-wrap {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.8vmin;
  opacity: 0;
  animation: fv-fadein 2s forwards;
  animation-delay: .8s;
}

.fv-graph-wrap::after {
  content: "";
  position: absolute;
  top: .8em;
  right: 0;
  z-index: 10;
  width: clamp(10%, 18vmin, 45%);
  height: 1.5vmin;
  background: repeating-linear-gradient(-45deg, var(--main-color) 0 clamp(.2rem, .0944rem + .28vw, .5rem), var(--base-color) 1px clamp(.3rem, .194rem + .28vw, .6rem));
}

.fv-graph-title-wrap {
  position: relative;
  bottom: -2px;
  z-index: 10;
  width: max(12vh, 40%);
  padding: clamp(.4rem, .259rem + .38vw, .8rem) .8rem 0;
  background-color: var(--base-color);
  clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 100%, 0% 100%);
}

.fv-graph-title-wrap::before {
  content: "";
  position: absolute;
  z-index: -10;
  inset: 1px 1px -1px;
  background-color: var(--main-color);
  clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 100%, 0% 100%);
}

.fv-graph-title {
  width: calc(100% - .8rem);
  padding: clamp(.2rem, .130rem + .19vw, .4rem) clamp(.8rem, .518rem + .75vw, 1.6rem);
  font-weight: 500;
  background-color: rgba(235, 233, 232, .2);
  clip-path: polygon(0 0, calc(100% - 1.5rem) 0, 100% 100%, 0% 100%);
}

.fv-graph {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
  width: 100%;
  padding: clamp(.8rem, .237rem + 1.5vw, 2.4rem);
  border: 1px solid var(--base-color);
  overflow: hidden;
}

.fv-graph-item {
  display: grid;
  grid-template-columns: 15vmin 1fr;
  align-items: center;
  gap: var(--space-s);
}

.fv-graph-more {
  font-size: 1.6vmin;
  font-weight: 300;
  text-align: right;
}

.fv-graph-border {
  display: block;
  height: 1vmin;
  background: repeating-linear-gradient(90deg,
      #d9d9d9,
      #d9d9d9 1px,
      var(--main-color) 2px,
      var(--main-color) 4px);
  transform-origin: left center;
  animation: bar-graph 3s forwards;
}

.fv-graph-item:nth-child(1) .fv-graph-border {
  --target-width: 80%;
}

.fv-graph-item:nth-child(2) .fv-graph-border {
  --target-width: 20%;
}

.fv-graph-item:nth-child(3) .fv-graph-border {
  --target-width: 100%;
}

.fv-graph-item:nth-child(4) .fv-graph-border {
  --target-width: 50%;
}

@keyframes bar-graph {
  0% {
    width: 0%;
  }

  100% {
    width: var(--target-width);
  }
}

.fv-wave-graph {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  position: relative;
  display: block;
  width: 60%;
  height: 12vmin;
  margin: 2.4vmin 0 0 auto;
  background-color: var(--base-color);
  clip-path: polygon(15% 0, 100% 0, 100% calc(100% - 15%), calc(100% - 15%) 100%, 0 100%, 0 15%);
  opacity: 0;
  animation: fv-fadein 2s forwards;
  animation-delay: 2s;
}

.fv-wave-lattice {
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: 10;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  padding: 1rem;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), var(--base-color) calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), var(--base-color) calc(100% - 1px)),
    linear-gradient(to bottom, var(--main-color), var(--main-color));
  background-size: 20px 16px;
  background-repeat: repeat;
  background-position: center center;
  clip-path: polygon(15% 0, 100% 0, 100% calc(100% - 15%), calc(100% - 15%) 100%, 0 100%, 0 15%);
}

.fv-wave-path-wrap {
  display: flex;
  width: 200%;
  height: 100%;
  animation: wave-move 10s linear infinite;
}

.fv-wave-path {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}

.wave-path-line {
  stroke: var(--base-color);
  stroke-width: 3px;
  fill: none;
  stroke: var(--base-color);
  stroke-miterlimit: 10;
}

@keyframes wave-move {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.fv-scroll {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
  align-self: end;
  position: relative;
  width: 12vmin;
  height: 12vmin;
  margin: auto 0 0 auto;
  overflow: hidden;
  opacity: 0;
  animation: fv-fadein 2s forwards;
  animation-delay: 2.8s;
}

.fv-scroll-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.fv-scroll-single {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  height: 50%;
  font-family: var(--font-accent);
  font-size: clamp(.5rem, .323rem + .47vw, 1rem);
  transform-origin: center bottom;
}

.fv-scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(.6rem, .389rem + .56vw, 1.2rem);
  height: 4vmin;
  transform: translate(-50%, -50%);
  animation: scroll-arrow 2s infinite;
}

.fv-scroll-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 1px;
  background-color: var(--base-color);
  transform: translateX(-50%);
}

.fv-scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: clamp(.6rem, .389rem + .56vw, 1.2rem);
  height: clamp(.6rem, .389rem + .56vw, 1.2rem);
  border-bottom: 1px solid var(--base-color);
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes scroll-arrow {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}

@keyframes fv-fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ===== about */

.about-section {
  margin-block: var(--section-space);
}

.about-intro,
.about-service-wrap {
  width: var(--section-width);
  margin-inline: auto;
}

.about-advantage,
.about-service {
  margin-top: var(--space-xxl);
}

/* --- about-intro */

.about-intro {
  text-align: center;
}

.about-intro-title {
  margin-bottom: var(--space-l);
  font-size: clamp(3.4rem, 1.782rem + 4.32vw, 8rem);
}

.about-idea-accent {
  position: relative;
  padding-inline: clamp(1rem, .789rem + .56vw, 1.6rem);
}

.about-idea-accent::before,
.about-idea-accent::after {
  content: "";
  position: absolute;
  width: clamp(1rem, .296rem + 1.88vw, 3rem);
  height: clamp(1rem, .296rem + 1.88vw, 3rem);
}

.about-idea-accent::before {
  top: 0;
  left: 0;
  border-left: 2px solid var(--accent-color);
  border-top: 2px solid var(--accent-color);
}

.about-idea-accent::after {
  bottom: 0;
  right: 0;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}

.about-system-accent {
  position: relative;
  padding-bottom: clamp(1rem, .789rem + .56vw, 1.6rem);
}

.about-system-accent::before,
.about-system-accent::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-system-accent::before {
  bottom: 0;
  left: 0;
  width: clamp(1rem, .789rem + .56vw, 1.6rem);
  height: clamp(1rem, .789rem + .56vw, 1.6rem);
  border: 2px solid var(--accent-color);
}

.about-system-accent::after {
  bottom: clamp(.3rem, .194rem + .28vw, .6rem);
  left: clamp(1rem, .789rem + .56vw, 1.6rem);
  border-bottom: 2px solid var(--accent-color);
}

.about-shape-accent {
  color: var(--accent-color);
}

.about-intro-txt {
  font-size: clamp(1.8rem, 1.589rem + .56vw, 2.4rem);
  font-weight: 500;
  line-height: 2;
}

.about-intro-txt+.about-intro-txt {
  margin-top: var(--space-m);
}

/* --- about-advantage */

.about-advantage-title-inner {
  display: flex;
  align-items: flex-end;
  width: var(--section-width);
  margin-inline: auto;
  padding-left: 10%;
}

.advantage-title-line {
  width: 20%;
  height: 10vh;
  background: url(../img/about-advantage-line-pc.svg) no-repeat right center / contain;
}

.about-advantage-title-wrap {
  position: relative;
  width: fit-content;
  background-color: var(--main-color);
  color: var(--base-color);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 92% 100%, 8% 100%, 0 80%);
}

.about-advantage-title-wrap::after {
  content: "★ ★ ★ ★ ★";
  position: absolute;
  top: var(--space-xxs);
  right: var(--space-m);
  font-size: clamp(1rem, .789rem + .56vw, 1.6rem);
  color: var(--accent-color);
}

.about-advantage-subtitle {
  display: inline-block;
  padding: .4rem var(--space-s) .4rem var(--space-xs);
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.about-advantage-title {
  padding: var(--space-xs) var(--space-m) var(--space-m);
}

.about-advantage-wrap {
  position: relative;
  width: var(--section-width);
  margin: var(--space-m) auto 0;
  color: var(--base-color);
}

.about-advantage-list {
  position: relative;
  display: grid;
  grid-template-columns: min-content 1fr;
  column-gap: var(--space-xs);
}

.about-advantage-list:nth-child(1) {
  padding: var(--space-xl) var(--space-xl) var(--space-m);
}

.about-advantage-list:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -5px;
  background: url(../img/about-advantage-bg.svg) no-repeat top center / 100%;
  z-index: -10;
}

.about-advantage-list:nth-child(2),
.about-advantage-list:nth-child(3) {
  padding: var(--space-m) var(--space-xl);
  background-color: var(--main-color);
}

.about-advantage-list:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(.3rem, -.043rem + .45vw, .6rem);
  height: 90%;
  background-color: var(--accent-color);
}

.about-advantage-list:nth-child(3) {
  padding-bottom: var(--space-xl);
}

.about-advantage-list+.about-advantage-list {
  border-top: 1px solid var(--base-color);
}

.about-advantage-num {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  align-self: center;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1rem, .648rem + .94vw, 2rem) clamp(1.6rem, .474rem + 3vw, 4.8rem) .8rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  background: url(../img/about-advantage-num.svg) no-repeat center / 100% 100%;
}

.about-txt-point {
  font-size: 2.4rem;
}

.about-txt-num {
  font-size: clamp(3rem, 1.24rem + 4.69vw, 8rem);
}

.about-advantage-list-title {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  font-size: clamp(2.4rem, 1.978rem + 1.13vw, 3.6rem);
  font-weight: 600;
}

.about-advantage-list-txt {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin-top: var(--space-xs);
  font-size: clamp(1.6rem, 1.318rem + .75vw, 2.4rem);
}

/* --- about-service */

.about-service {
  position: relative;
}

.about-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26vw;
  height: 1px;
  background-color: var(--main-color);
  z-index: -10;
}

.about-service::after {
  content: "";
  position: absolute;
  bottom: -8%;
  right: 0;
  width: 50vw;
  height: 100%;
  background: url(../img/about-service-bottom-bg.svg) no-repeat bottom right / 100%;
  z-index: -10;
}

.about-service-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 122%;
  z-index: -10;
}

.about-service-bg .st0 {
  fill: var(--main-color);
}

.about-service-bg .st1 {
  fill: none;
  stroke: var(--main-color);
}

.about-service-title-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--space-xl);
  width: fit-content;
  position: relative;
  padding: var(--space-m) var(--space-xl);
  background-color: var(--main-color);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
}

.about-service-title-wrap::before {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: var(--base-color);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
  z-index: -10;
}

.about-service-title::after {
  content: "";
  position: absolute;
  bottom: var(--space-m);
  display: inline-block;
  width: 1px;
  height: 1.2lh;
  margin-inline: .5em;
  background-color: var(--main-color);
  transform: rotate(-16deg);
}

.about-service-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28.0rem, 1fr));
  gap: var(--space-s);
  margin-top: var(--space-xl);
  text-align: center;
}

.about-service-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: clamp(2rem, 2.918rem + .75vw, 2.5rem) clamp(1rem, .755rem + 2.25vw, 2.5rem);
  background-color: #f9f9f9;
  border: 1px solid var(--main-color);
}

.about-service-item-wrap {
  display: flex;
  align-items: center;
  margin-top: var(--space-xs);
  padding: .8rem;
  background-color: var(--accent-color);
  border-radius: 50px;
}

.about-service-img {
  margin-inline: auto;
}

.about-service-num {
  padding: .6rem var(--space-xxs) 0;
  background-color: #fff;
  border-radius: 50px;
  color: var(--accent-color);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 2.118rem + .75vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.about-service-contract {
  margin-inline: auto;
  color: #fff;
  font-size: clamp(1.8rem, 1.589rem + .56vw, 2.4rem);
}

.about-service-txt {
  margin-block: var(--space-xs) var(--space-m);
}

.about-service-stripe-wrap {
  margin-top: auto;
  overflow-wrap: anywhere;
}

.about-service-accent {
  font-family: var(--font-display);
  font-size: clamp(6rem, 5.296rem + 1.88vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background: repeating-linear-gradient(90deg,
      #d6d5d4 0 .06em,
      #f9f9f9 .06em calc(.06em * 2),
      #d6d5d4 calc(.06em * 2) calc(.06em * 3),
      #f9f9f9 calc(.06em * 3) calc(.06em * 4),
      #d6d5d4 calc(.06em * 4) calc(.06em * 5),
      #f9f9f9 calc(.06em * 5) calc(.06em * 6),
      #d6d5d4 calc(.06em * 6) calc(.06em * 7));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: wave-stripe 60s linear infinite;
}

@keyframes wave-stripe {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ===== products */

.products-section {
  padding: var(--section-space) var(--site-space);
  background-color: var(--main-color);
  color: var(--base-color);
}

.products-title-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs);
  width: fit-content;
  margin-inline: auto;
}

.products-subtitle-wrap {
  display: flex;
  align-items: flex-end;
  gap: .8rem;
}

.products-subtitle {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: clamp(3.2rem, 2.918rem + .75vw, 4rem);
  padding-inline: var(--space-s);
  color: var(--main-color);
  background-color: var(--base-color);
  transform: skewX(20deg);
}

.products-subtitle-txt {
  display: inline-block;
  transform: skewX(calc(20deg * -1));
}

.products-line-left,
.products-line-middle,
.products-line-right {
  display: block;
  height: clamp(3.2rem, 2.918rem + .75vw, 4rem);
  background-color: var(--base-color);
  transform: skewX(20deg);
}

.products-line-left {
  width: clamp(1rem, .789rem + .56vw, 1.6rem);
}

.products-line-middle {
  width: clamp(.4rem, .259rem + .38vw, .8rem);
}

.products-line-right {
  width: clamp(.2rem, .130rem + .19vw, .4rem);
}

/* --- products-catch-box */

.products-catch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-s);
  width: var(--section-width);
  max-width: 100%;
  margin: var(--space-xl) auto 0;
}

.products-catch-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-xs);
  font-family: var(--font-accent);
}

.products-catch-line {
  display: flex;
  align-items: center;
}

.products-catch-line-svg {
  position: relative;
  z-index: 20;
  width: 12vw;
  background-color: var(--main-color);
}

.products-catch-black-box,
.products-catch-white-box {
  position: relative;
  z-index: 10;
  border: 1px solid var(--base-color);
}

.products-catch-black-box {
  padding: clamp(.8rem, .730rem + .19vw, 1rem);
}

.products-catch-white-box {
  padding: 0 clamp(.8rem, .730rem + .19vw, 1rem) clamp(.8rem, .730rem + .19vw, 1rem);
  border-top: clamp(1rem, .859rem + .38vw, 1.4rem) solid var(--base-color);
}

.products-catch-black-box::after,
.products-catch-white-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(0deg,
      rgba(255, 255, 255, .1) 0px,
      rgba(255, 255, 255, .1) 1px,
      transparent 4px);
  animation: box-noise 4s linear infinite;
}

@keyframes box-noise {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 300px;
  }
}

.products-catch-white-box::before {
  content: "";
  position: absolute;
  top: -.7rem;
  right: .2rem;
  z-index: 30;
  width: 1rem;
  height: 1rem;
  padding: .2rem;
  border: 1px solid var(--main-color);
  background:
    linear-gradient(45deg, transparent calc(50% - .5px), var(--main-color) calc(50% - .5px), var(--main-color) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(135deg, transparent calc(50% - .5px), var(--main-color) calc(50% - .5px), var(--main-color) calc(50% + .5px), transparent calc(50% + .5px));

  transform: translate(-50%, -50%);
}

.products-catch-black-title,
.products-catch-white-title,
.products-catch-txt {
  position: relative;
  z-index: 20;
  display: block;
}

.products-catch-black-title,
.products-catch-white-title {
  display: block;
  font-size: clamp(1rem, .859rem + .38vw, 1.4rem);
}

.products-catch-black-title {
  padding: .4rem;
  text-align: center;
  background-color: rgba(235, 233, 232, .2);
}

.products-catch-white-title {
  margin-top: clamp(.8rem, .730rem + .19vw, 1rem);
}

.products-catch-txt {
  display: block;
  margin-top: .8rem;
  font-size: clamp(1rem, .930rem + .19vw, 1.2rem);
}

/* --- products-catch-slider */

.products-catch-slider {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 450px;
  margin-inline: auto;
  overflow: hidden;
}

.products-catch-slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.products-slider-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-frame-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  object-fit: contain;
  pointer-events: none;
}

.products-slider-img {
  position: absolute;
  z-index: 10;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.products-slider-frame.is-sp .products-slider-img {
  width: 95%;
  border-radius: 12px;
  aspect-ratio: 647 / 305;
  object-position: top;
}

.products-slider-frame.is-ds .products-slider-img {
  transform: translate(-50%, -105%);
  width: 90%;
  border-radius: 12px;
  aspect-ratio: 605 / 320;
}

.products-slider-frame.is-arcade .products-slider-img {
  transform: translate(-50%, -85%);
  width: 71%;
  border-radius: 12px;
  aspect-ratio: 487 / 360;
}

.products-slider-frame.is-tablet .products-slider-img {
  transform: translate(-54%, -50%);
  width: 81%;
  aspect-ratio: 301 / 229;
}

.products-slider-frame.is-other .products-slider-img {
  transform: translate(-50%, -50%);
  width: 93%;
  clip-path: polygon(5% 0, 100% 0, 100% 90%, 95% 100%, 0 100%, 0 10%);
  aspect-ratio: 157 / 106;
}

/* --- products-list */

.products-list {
  margin-top: var(--space-xl);
}

.products-list-wrap.swiper {
  overflow: visible;
}

.products-list.swiper-wrapper {
  display: block;
}

.products-item.swiper-slide,
.products-link-item {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr;
  gap: var(--space-xs);
  padding-block: var(--space-s);
  border-bottom: 1px solid var(--base-color);
  cursor: pointer;
}

.products-item:first-child {
  border-top: 1px solid var(--base-color);
}

.products-item:hover {
  z-index: 20;
}

.products-link.swiper-slide {
  display: block;
  padding-block: 0;
  border: none;
}

.products-link-item {
  color: var(--base-color);
  text-decoration: none;
  transition: background-color .3s ease, opacity .3s ease;
}

.products-link-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.products-hover-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  opacity: 0;
  z-index: 20;
  pointer-events: none;
  transition: opacity .5s ease-out;
}

.products-hover-thumb.is-active {
  opacity: 1;
}

.products-hover-img {
  width: 100%;
  height: auto;
  display: block;
}

.products-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.products-num {
  position: relative;
  flex-shrink: 0;
  padding-left: 1.2em;
  font-size: clamp(1.8rem, 1.589rem + .56vw, 2.4rem);
  font-weight: 300;
  color: var(--accent-color);
}

.products-num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  border-top: 1px solid var(--accent-color);
  box-shadow: -.4rem -.5rem 0 0 var(--accent-color);
  transform: rotate(-60deg);
}

.products-name {
  margin-top: .4rem;
  font-size: clamp(1.8rem, 1.589rem + .56vw, 2.4rem);
  font-weight: 500;
}

.products-tag {
  position: relative;
  padding-inline: 1.2em;
}

.products-tag::before,
.products-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(1rem, .789rem + .56vw, 1.6rem);
  height: clamp(1rem, .789rem + .56vw, 1.6rem);
}

.products-tag::before {
  left: 0;
  border-left: 1px solid var(--accent-color);
  border-top: 1px solid var(--accent-color);
  transform: translateY(-50%) rotate(-45deg);
}

.products-tag::after {
  right: 0;
  border-right: 1px solid var(--accent-color);
  border-top: 1px solid var(--accent-color);
  transform: translateY(-50%) rotate(45deg);
}

.products-txt {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-inline: 1.2em;
}

.products-txt::before,
.products-txt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1rem;
  height: 100%;
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.products-txt::before {
  left: 0;
  border-left: 1px solid var(--accent-color);
}

.products-txt::after {
  right: 0;
  border-right: 1px solid var(--accent-color);
}

.swiper-pagination {
  display: none;
}

/* --- products-cta */

.products-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  max-width: var(--section-width);
  margin: var(--space-xl) auto 0;
  padding: var(--space-xs);
  text-align: center;
  border: 1px solid var(--base-color);
}

.products-cta-title-wrap {
  padding: 1.2rem;
  background-color: rgba(217, 217, 217, .2);
}

.products-cta-title {
  font-size: clamp(1.8rem, 1.589rem + .56vw, 2.4rem);
  font-weight: 500;
}

.products-cta-txt {
  font-size: clamp(1rem, 1.530rem + .19vw, 1.125rem);
}

/* ===== news */

.news-section {
  display: flex;
  justify-content: space-between;
  gap: clamp(4rem, -1.634rem + 15.02vw, 20rem);
  width: var(--section-width);
  margin: var(--section-space) auto;
}

.news-content {
  flex: 1;
}

.news-list,
.news-link {
  display: flex;
  gap: var(--space-xs);
}

.news-list {
  padding-block: var(--space-s);
  border-bottom: 1px solid var(--main-color);
}

.news-list:first-child {
  padding-top: 0;
}

.news-link {
  color: var(--main-color);
}

.news-date {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xxs);
  font-family: var(--font-display);
  font-size: 2rem;
}

.news-icon {
  display: inline-block;
  text-align: center;
  width: 88px;
  padding-block: .8rem .5rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  background-color: var(--accent-color);
  color: #fff;
}

/* ===== recruit */

.recruit-wrap {
  width: var(--section-width);
  margin-inline: auto;
  padding-top: var(--space-xxl);
  text-align: center;
  background: url(../img/recruit-top-bg.svg) no-repeat center top / 100%;
}

.recruit-title-wrap {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.recruit-title {
  position: relative;
  padding-inline: var(--space-l);
}

.recruit-title::before,
.recruit-title::after {
  content: "";
  position: absolute;
  top: -.6rem;
  display: block;
  width: 100%;
  height: 100%;
}

.recruit-title::before {
  left: 0;
  background: url("../img/recruit-title-bracket.svg") no-repeat center left / contain;
}

.recruit-title::after {
  right: 0;
  background: url("../img/recruit-title-bracket.svg") no-repeat center left / contain;
  transform: scaleX(-1);
}

.recruit-subtitle {
  position: relative;
  margin-top: .8rem;
}

.recruit-subtitle::before,
.recruit-subtitle::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.recruit-subtitle::before {
  left: 0;
  background: url(../img/recruit-title-line.svg) no-repeat center left / 30%;
}

.recruit-subtitle::after {
  right: 0;
  background: url(../img/recruit-title-line.svg) no-repeat center left/ 30%;
  transform: scaleX(-1);
}

.recruit-content-wrap {
  display: grid;
  grid-template-columns: minmax(44rem, max-content) 1fr;
  margin-top: var(--space-xl);
}

.recruit-list-wrap+.recruit-job-title {
  margin-top: var(--space-xl);
}

.recruit-job-title {
  padding: var(--space-xxs) var(--space-xs);
  font-size: clamp(1.8rem, 1.589rem + .56vw, 2.4rem);
  font-weight: 600;
  text-align: left;
  background-color: var(--accent-color);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.recruit-list-wrap {
  position: relative;
  grid-column: 1 / 3;
  margin-top: var(--space-s);
  padding-bottom: var(--space-xxl);
}

.recruit-list-wrap:last-of-type {
  padding-bottom: 0;
}

.recruit-list-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 10vh;
  margin: 0 calc(50% - 50vw);
  background: url(../img/recruit-middle-bg.svg) no-repeat center / 100%;
}

.recruit-list-wrap:last-of-type::after {
  content: none;
}

.recruit-list {
  display: grid;
  grid-template-columns: 12em 1fr;
  text-align: left;
}

.recruit-list-title,
.recruit-list-txt {
  padding-block: var(--space-s);
  border-bottom: 1px solid var(--main-color);
}

.recruit-list-title {
  position: relative;
  padding-inline: clamp(2.2rem, 2.130rem + .19vw, 2.4rem) var(--space-m);
  font-weight: 500;
}

.recruit-list-title::before,
.recruit-list-title::after {
  content: "";
  position: absolute;
}

.recruit-list-title::before {
  top: calc(var(--space-s) + .35lh);
  left: .15lh;
  width: .3lh;
  height: .3lh;
  background-color: var(--main-color);
}

.recruit-list-title::after {
  top: calc(var(--space-s) + .2lh);
  left: 0;
  bottom: 0;
  width: .6lh;
  height: .6lh;
  border: 1px solid var(--main-color);
}

.recruit-lead-bg {
  height: 10vh;
  margin: clamp(4rem, 2.592rem + 3.76vw, 8rem) 0 0 calc(50% - 50vw);
  background: url(../img/recruit-bottom-bg.svg) no-repeat top left / 100%;
}

.recruit-lead-txt {
  position: relative;
  z-index: -10;
  top: -9vmin;
  display: inline-block;
  max-width: clamp(60vw, 62vw, 80vw);
  margin-top: -1px;
  padding: var(--space-m) var(--space-l) var(--space-l);
  font-size: clamp(1.6rem, 1.530rem + .19vw, 1.8rem);
  font-weight: 500;
  background: linear-gradient(transparent 1px, var(--main-color) 1px, var(--main-color));
  clip-path: polygon(100% 0, 97% 80%, 53% 80%, 50% 100%, 47% 80%, 3% 80%, 0 0);
}

.recruit-lead-txt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -20;
  background-color: var(--base-color);
  clip-path: polygon(calc(100% - 1px) 0, calc(97% - 1px) calc(80% - 1px), calc(53% - 1px) calc(80% - 1px), 50% calc(100% - 2px), calc(47% + 1px) calc(80% - 1px), calc(3% + 1px) calc(80% - 1px), 1px 0);
}

/* ===== contact */

.contact-section {
  margin-top: calc(var(--section-space) - 9vh);
  padding-top: var(--space-xxl);
  background-color: var(--main-color);
  color: var(--base-color);
}

.contact-wrap {
  width: var(--section-width);
  margin-inline: auto;
}

.contact-top-wrap {
  position: relative;
  width: min(1200px, 100vw - (1.6rem * 2));
  max-width: 89vw;
  margin-inline: auto;
  padding: var(--space-xxs) var(--space-m);
  background-color: var(--base-color);
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.contact-top-wrap::before {
  content: "";
  position: absolute;
  inset: 1px 1px -1px;
  z-index: -10;
  background-color: #212121;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0% 100%);
}

.contact-subtitle-wrap,
.contact-title-wrap {
  text-align: center;
}

.contact-subtitle-wrap {
  position: relative;
  margin-inline: var(--space-s);
  padding: clamp(.8rem, 0.518rem + 0.75vw, 1.6rem);
  background-color: var(--base-color);
  clip-path: polygon(1% 0, 99% 0, 100% 100%, 0% 100%);
}

.contact-subtitle-wrap::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -10;
  background-color: #2d2d2d;
  clip-path: polygon(1% 0, 99% 0, 100% 100%, 0% 100%);
}

.contact-title-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: var(--space-xxs) var(--space-xs);
  padding: var(--space-xs) var(--space-m) var(--space-s);
  background-color: var(--base-color);
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0% 100%);
}

.contact-title-wrap::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -10;
  background-color: #242424;
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0% 100%);
}

.contact-title-square {
  display: block;
  width: calc(16% - (12px * 2));
  aspect-ratio: 1 / 1;
  transform: translateY(8px);
  border: 1px solid var(--base-color);
}

.contact-title {
  display: inline-block;
  width: 68%;
  padding: var(--space-xs);
  background-color: #2d2d2d;
  border: 1px solid var(--base-color);
  outline: 8px solid var(--main-color);
  box-shadow: 0 0 0 9px var(--base-color);
}

.contact-form-bg {
  width: min(1200px, 100vw - (1.6rem * 2));
  max-width: 89vw;
  margin-inline: auto;
  padding-inline: var(--space-s);
  background-color: #212121;
  border-left: 1px solid var(--base-color);
  border-right: 1px solid var(--base-color);
}

.contact-form-wrap {
  padding: var(--space-s) var(--space-xl);
  background-color: var(--main-color);
  border: 1px solid var(--base-color);
}

.contact-form-content {
  min-height: 100vmin;
  padding: var(--space-m) clamp(1.6rem, .755rem + 2.25vw, 4rem);
  background-color: #2d2d2d;
  border: 1px solid var(--base-color);
}

.contact-txt {
  padding-bottom: var(--space-m);
  border-bottom: 1px solid var(--base-color);
}

.contact-form {
  margin-top: var(--space-m);
}

.form-item {
  display: grid;
  grid-template-columns: 13em 4fr;
  column-gap: var(--space-s);
  align-items: center;
}

.form-item:first-child,
.form-item:last-child {
  align-items: flex-start;
}

.form-item+.form-item {
  margin-top: 2.4rem;
}

.form-item-consultation {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.form-item-consultation label {
  position: relative;
  cursor: pointer;
  padding-left: var(--space-s);
}

.form-item-consultation label::before,
.form-item-consultation label::after {
  content: "";
  display: block;
  position: absolute;
}

.form-item-consultation label::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--base-color);
}

.form-item-consultation label::after {
  top: .7rem;
  left: .3rem;
  transform: rotate(-45deg);
  width: 1.2rem;
  height: .6rem;
  border-bottom: 3px solid var(--accent-color);
  border-left: 3px solid var(--accent-color);
  opacity: 0;
}

input:checked+label::after {
  opacity: 1;
}

.form-item-name {
  display: flex;
  align-items: center;
  gap: var(--space-xxs);
  font-weight: 700;
}

.form-item:last-child .form-item-name {
  margin-top: var(--space-xxs);
}

.badge-required,
.badge-any {
  flex-shrink: 0;
  padding: .2rem .8rem;
  font-size: 1.4rem;
  font-weight: 400;
}

.badge-required {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.badge-any {
  color: var(--base-color);
  border: 1px solid var(--base-color);
}

.form-control {
  width: 100%;
  min-height: 60px;
  padding: var(--space-xxs) var(--space-xs);
  background-color: #686868;
  border: 1px solid var(--base-color);
  border-radius: 6px;
}

.form-error-message {
  margin-top: .4rem;
  color: var(--accent-color);
}

input,
textarea {
  color: var(--base-color);
  caret-color: var(--base-color);
}

input::placeholder,
textarea::placeholder {
  color: #cdcdcd;
}

input[type=radio] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip-path: inset(50%);
  margin: -1px;
}

.contact-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xxs);
}

.contact-btn {
  margin: var(--space-l) 0 0;
}

.contact-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding: var(--space-xs) var(--space-xs) var(--space-xl);
  background-color: var(--base-color);
  clip-path: polygon(4% 0, 96% 0, 100% 65%, 100% 100%, 0 100%, 0 65%);
}

.contact-img-wrap::before {
  content: "";
  position: absolute;
  inset: -1px 1px 1px;
  z-index: -10;
  background-color: #212121;
  clip-path: polygon(4% 0, 96% 0, 100% 65%, 100% 100%, 0 100%, 0 65%);
}

/* ===== footer */

.footer {
  position: relative;
  padding-top: 15vh;
  background-color: var(--main-color);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 100vw - (1.6rem * 2));
  max-width: 89vw;
  height: 30vh;
  background-color: #212121;
  border-left: 1px solid var(--base-color);
  border-right: 1px solid var(--base-color);
}

/* --- footer-company */

.footer-company {
  width: var(--section-width);
  margin-inline: auto;
}

.footer-company-wrap {
  margin-right: calc(50% - 50vw);
  padding: var(--space-xl) 0 var(--space-l) var(--space-m);
  background-color: var(--base-color);
  clip-path: polygon(38% 0, 40% 7%, 100% 7%, 100% 100%, 0 100%, 0 0);
}

.footer-company-title-wrap {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: clamp(4rem, 2.592rem + 3.76vw, 8rem);
}

.footer-company-title::after {
  content: "";
  position: absolute;
  bottom: .2lh;
  display: inline-block;
  width: 1px;
  height: 1lh;
  margin-inline: .5em;
  background-color: var(--main-color);
  transform: rotate(-20deg);
}

.footer-company-subtitle {
  position: relative;
}

.footer-company-subtitle::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: calc(100% + var(--space-xxs));
  z-index: 10;
  width: 100vw;
  height: .5lh;
  background: repeating-linear-gradient(45deg,
      var(--base-color),
      var(--base-color) 6px,
      var(--main-color) 6px,
      var(--main-color) 8px);
}

.footer-company-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-m);
  margin-top: var(--space-xl);
}

.footer-company-content {
  width: 100%;
}

.footer-company-list {
  display: grid;
  grid-template-columns: 12em 1fr;
}

.footer-company-list-title,
.footer-company-list-txt {
  padding-block: var(--space-xxs);
  border-bottom: 1px solid var(--main-color);
}

.footer-company-list-title {
  position: relative;
  padding-inline: clamp(2.2rem, 2.130rem + .19vw, 2.4rem) var(--space-m);
  font-weight: 500;
}

.footer-company-list-title:first-of-type {
  padding-top: 0;
}

.footer-company-list-title::before,
.footer-company-list-title::after {
  content: "";
  position: absolute;
}

.footer-company-list-title::before {
  top: calc(var(--space-xxs) + .35lh);
  left: .15lh;
  width: .3lh;
  height: .3lh;
  background-color: var(--main-color);
}

.footer-company-list-title:first-of-type::before {
  top: .35lh;
}

.footer-company-list-title::after {
  top: calc(var(--space-xxs) + .2lh);
  left: 0;
  width: .6lh;
  height: .6lh;
  border: 1px solid var(--main-color);
}

.footer-company-list-title:first-of-type::after {
  top: .2lh;
}

.footer-company-list-txt:first-of-type {
  padding-top: 0;
}

.footer-company-list-link {
  display: inline-block;
  border: 1px solid var(--main-color);
}

.footer-company-map {
  position: relative;
  width: 100%;
  height: 100%;
}

.footer-company-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- footer-nav */

.footer-nav {
  margin-top: var(--space-l);
  padding-inline: var(--site-space);
}

.footer-nav-list {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-l);
}

.footer-nav-link {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.730rem + .19vw, 2rem);
  font-weight: 500;
  color: var(--base-color);
  transition: .3s;
}

.footer-nav-link:hover::before,
.footer-nav-link:hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
}

.footer-nav-link:hover::before {
  animation: nav-link-glitch .3s cubic-bezier(.25, .46, .45, .94) both;
}

.footer-nav-link:hover::after {
  animation: nav-link-glitch .3s cubic-bezier(.25, .46, .45, .94) reverse both;
}

@keyframes nav-link-glitch {
  0% {
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }

  20% {
    transform: translate(-3px, 2px);
    clip-path: inset(50% 0 20% 0);
  }

  40% {
    transform: translate(2px, -1px);
    clip-path: inset(20% 0 60% 0);
  }

  60% {
    transform: translate(-2px, 1px);
    clip-path: inset(80% 0 5% 0);
  }

  80% {
    transform: translate(2px, -2px);
    clip-path: inset(30% 0 45% 0);
  }

  100% {
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
}

.footer-loop {
  display: flex;
  margin-top: var(--space-xl);
  overflow: hidden;
}

.footer-loop-txt {
  flex: 0 0 auto;
  padding-left: .5em;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(8rem, 3.774rem + 11.27vw, 20rem);
  font-weight: 600;
  color: #393939;
  line-height: 1;
  animation: footer-loop-seamless 30s linear infinite;
}

@keyframes footer-loop-seamless {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.footer-copyright {
  margin-block: 0 var(--space-m);
  padding-inline: var(--site-space);
  font-size: 1.2rem;
  color: #B7B6B6;
  text-align: right;
}

/* ===== レスポンシブ */

@media screen and (max-width:1100px) {

  /* ===== fv */

  .fv-wrap {
    grid-template-columns: minmax(0, 240px) minmax(0, 300px);
    justify-content: space-between;
  }

  .fv-title-wrap {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    margin-bottom: var(--space-xxs);
  }

  .fv-path {
    display: none;
  }

  .fv-item-left {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    align-self: start;
  }

  .fv-position {
    display: none;
  }

  .fv-map {
    padding: var(--space-xxs);
  }

  .fv-3d {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    margin: 8vmin auto;
  }

  .fv-item-right {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }

  .fv-graph-item {
    grid-template-columns: 1fr;
    gap: .4rem;
  }

  .fv-wave-graph {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin-inline: 0 auto;
  }

  .fv-scroll {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
    margin-inline: auto;
  }
}

@media screen and (max-width:768px) {

  /* ===== 共通 */

  .base-btn {
    width: 90%;
    max-width: 380px;
    min-width: auto;
  }

  .contact-btn-wrap {
    flex-direction: column;
    gap: 0;
  }

  .base-btn-arrow,
  .back-btn-arrow {
    width: 3em;
    background: url(../img/base-btn-line-sp.svg) no-repeat center / 100%;
  }

  .base-btn-arrow {
    right: -1em;
  }

  .back-btn-arrow {
    left: -1em;
  }

  .pc-br {
    display: none;
  }

  /* ===== header */

  .header-wrap {
    opacity: 1;
    animation: none;
  }

  .header-burger-btn {
    display: block;
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    background: none;
    border: none;
  }

  .burger-bar {
    position: absolute;
    right: 0;
    width: 32px;
    height: 2px;
    background-color: var(--base-color);
    transition: all .3s;
    transform-origin: center center;
  }

  .bar-top {
    top: 0;
  }

  .header-burger-btn.open .bar-top {
    top: 6px;
    transform: rotate(20deg);
  }

  .bar-mid {
    top: 0;
    background-color: var(--accent-color);
    transform-origin: right top;
    transform: rotate(-20deg);
    scale: 1.06 1;
  }

  .header-burger-btn.open .bar-mid {
    background: none;
  }

  .bar-bottom {
    top: 12px;
  }

  .header-burger-btn.open .bar-bottom {
    top: 6px;
    transform: rotate(-20deg);
  }

  .burger-txt {
    display: block;
    position: absolute;
    top: calc(2px + 12px + 2px);
    right: 0;
    width: 100%;
    transition: all .3s;
  }

  .burger-txt::before,
  .burger-txt::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--base-color);
  }

  .burger-txt::before {
    content: "MENU";
    letter-spacing: .18em;
    opacity: 1;
  }

  .header-burger-btn.open .burger-txt::before {
    opacity: 0;
  }

  .burger-txt::after {
    content: "CLOSE";
    letter-spacing: .12em;
    opacity: 0;
  }

  .header-burger-btn.open .burger-txt::after {
    opacity: 1;
  }

  /* --- header-nav */

  .header-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    z-index: 100;
    width: 80%;
    height: 100vh;
    padding: var(--space-m);
    background-color: var(--main-color);
    transition: right .4s ease;
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav-list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-l);
    overflow: auto;
  }

  .header-nav-item {
    width: 100%;
  }

  .nav-link-btn {
    text-align: center;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  }

  /* ===== about */

  /* --- about-intro */

  .about-intro-txt {
    line-height: 1.8;
  }

  /* --- about-advantage */

  .about-advantage-title-inner {
    flex-direction: column-reverse;
    align-items: center;
    padding-left: 0;
  }

  .about-advantage-title-wrap {
    width: 100%;
    max-width: 500px;
  }

  .advantage-title-line {
    background: url(../img/about-advantage-line-sp.svg) no-repeat center / contain;
  }

  .about-advantage-wrap {
    width: 100%;
    padding: var(--space-l) var(--space-xxs);
    background: var(--main-color);
  }

  .about-advantage-wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: -.4rem;
    left: 0;
    width: 30%;
    height: clamp(.4rem, .259rem + .38vw, .8rem);
    background-color: var(--accent-color);
    background-image: none;
    transform: none;
    z-index: 10;
  }

  .about-advantage-wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: auto;
    bottom: -.4rem;
    right: 0;
    width: 30%;
    height: clamp(.4rem, .259rem + .38vw, .8rem);
    background-color: var(--accent-color);
    transform: none;
    z-index: 10;
  }

  .about-advantage-list:nth-child(1) {
    padding: 0 0 var(--space-m);
  }

  .about-advantage-list:nth-child(1)::before,
  .about-advantage-list:nth-child(2)::after {
    content: none;
  }

  .about-advantage-list:nth-child(2),
  .about-advantage-list:nth-child(3) {
    padding: var(--space-m) 0;
  }

  .about-advantage-list:nth-child(3) {
    padding-bottom: 0;
  }

  .about-advantage-num {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .about-txt-point {
    display: none;
  }

  .about-advantage-list-title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .about-advantage-list-txt {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }

  /* --- about-service */

  .about-service {
    overflow: hidden;
    padding-bottom: 5vh;
  }

  .about-service::before {
    content: none;
  }

  .about-service::after {
    bottom: 0;
    width: 95vw;
  }

  .about-service-bg {
    top: 7%;
    left: 30%;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: scale(2.5);
    transform-origin: top right;
  }

  .about-service-title-wrap {
    justify-content: center;
    gap: var(--space-l);
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
    padding: var(--space-s) var(--space-l);
  }

  .about-service-title::after {
    margin-inline: .3em;
    height: .8lh;
  }

  .about-service-subtitle {
    white-space: nowrap;
  }

  /* ===== products */

  .products-title-wrap {
    flex-direction: column;
  }

  .products-catch {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .products-catch-contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .products-catch-contents:first-child {
    order: 1;
  }

  .products-catch-contents:last-child {
    order: 2;
  }

  /* --- products-catch-slider */

  .products-catch-slider {
    order: 3;
    margin-top: 18vh;
  }

  .products-catch-contents:first-child .products-catch-item:nth-child(2),
  .products-catch-contents:last-child .products-catch-item:nth-child(1),
  .products-catch-contents:last-child .products-catch-item:nth-child(2) {
    display: none;
  }

  .products-catch-line {
    flex-direction: column;
  }

  .products-catch-contents:last-child .products-catch-line {
    flex-direction: column-reverse;
  }

  .products-catch-line-svg {
    width: 10vw;
  }

  .products-catch-contents:first-child .products-catch-line-svg {
    transform: rotate(90deg) scaleY(-1);
    transform-origin: center center;
    margin-top: 2.5vh;
  }

  .products-catch-contents:last-child .products-catch-line-svg {
    transform: rotate(90deg) scaleX(-1) scaleY(-1);
    transform-origin: center center;
    margin-top: 2.5vh;
  }

  /* --- products-list */

  .products-list-wrap.swiper {
    width: 100%;
    padding-bottom: var(--space-xl);
  }

  .products-list {
    margin-top: var(--space-xxs);
  }

  .products-list.swiper-wrapper {
    display: flex;
    position: relative;
  }

  .products-item.swiper-slide,
  .products-link-item {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--base-color);
    cursor: none;
  }

  .products-link.swiper-slide {
    border: none;
  }

  .products-hover-thumb {
    display: none;
  }

  .products-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-list-wrap .swiper-pagination {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
  }

  .products-list-wrap .swiper-pagination-bullet {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--base-color);
    opacity: 1;
    margin: 0 .6rem;
    transition: all .3s ease;
  }

  .products-list-wrap .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    border-color: transparent;
  }

  /* ===== news */

  .news-section {
    flex-direction: column;
  }

  .news-list,
  .news-link {
    flex-direction: column;
  }

  /* ===== recruit */

  .recruit-wrap {
    background: url(../img/recruit-top-bg-sp.svg) no-repeat center top / 100%;
  }

  .recruit-subtitle::before,
  .recruit-subtitle::after {
    content: none;
  }

  .recruit-content-wrap {
    grid-template-columns: 1fr;
  }

  .recruit-list {
    grid-template-columns: 1fr;
  }

  .recruit-list-wrap {
    padding-bottom: 0;
  }

  .recruit-list-wrap::after {
    content: none;
  }

  .recruit-job-title {
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  }

  .recruit-list-title {
    padding-bottom: 0;
    border: none;
  }

  .recruit-job-bg {
    height: 0;
    background: none;
  }

  .recruit-lead-bg {
    background: url(../img/recruit-bottom-bg-sp.svg) no-repeat top left / 100%;
  }

  .recruit-lead-txt {
    max-width: 100%;
    margin-top: var(--space-m);
    padding: 0 var(--space-xxs) var(--space-l);
  }

  /* ===== contact */

  .contact-top-wrap,
  .contact-title-wrap {
    padding: 0;
    background: none;
    clip-path: none;
  }

  .contact-title-wrap {
    align-items: stretch;
    margin-block: .8rem var(--space-m);
  }

  .contact-title {
    width: 64%;
    outline: none;
    box-shadow: none;
  }

  .contact-title-square {
    width: calc(18% - (4px * 2));
    transform: none;
    aspect-ratio: auto;
  }

  .contact-subtitle-wrap {
    margin: 0;
  }

  .contact-form-bg,
  .contact-form-wrap {
    padding: 0;
    background: none;
    border: none;
  }

  .contact-form-content {
    min-height: auto;
  }

  .contact-img-wrap {
    padding: var(--space-xxs) 0 var(--space-xl);
    background: none;
    clip-path: none;
  }

  .contact-img-wrap::before {
    inset: auto 0 0;
    z-index: 10;
    width: 100vw;
    height: 1px;
    margin: 0 calc(50% - 50vw);
    background-color: var(--base-color);
    clip-path: none;
  }

  .form-item {
    grid-template-columns: 1fr;
  }

  .form-item-name,
  .form-item:last-child .form-item-name {
    margin: 0 0 var(--space-xxs);
  }

  /* ===== footer */

  .footer {
    padding-top: 10vh;
  }

  /* --- footer-company */

  .footer-company {
    width: 100%;
  }

  .footer-company-wrap {
    margin: 0;
    padding: var(--space-l) var(--space-xxs);
    clip-path: polygon(60% 0, 65% 3%, 100% 3%, 100% 100%, 0 100%, 0 0);
  }

  .footer-company-subtitle::after {
    content: none;
  }

  .footer-company-title-wrap::after {
    content: "";
    position: absolute;
    bottom: -1.6rem;
    left: 0;
    z-index: 10;
    width: 100%;
    height: .3lh;
    background: repeating-linear-gradient(45deg,
        var(--base-color),
        var(--base-color) 4px,
        var(--main-color) 4px,
        var(--main-color) 6px);
  }

  .footer-company-title::after {
    margin-inline: .3em;
    height: .8lh;
  }

  .footer-company-content-wrap {
    grid-template-columns: 1fr;
  }

  .footer-company-list {
    grid-template-columns: 1fr;
  }

  .footer-company-list-title {
    padding-bottom: 0;
    border: none;
  }

  .footer-company-list-txt:first-of-type {
    padding-top: .8rem;
  }

  .footer-company-list-txt {
    padding-top: .8rem;
    padding-left: clamp(2.2rem, 2.130rem + .19vw, 2.4rem);
  }

  .footer-company-map {
    aspect-ratio: 16 / 9;
  }

  /* --- footer-nav */

  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-copyright {
    text-align: center;
  }
}