@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/antro-vectra");
:root {
  --bg: #edf2f7;
  --ink: #0b1b35;
  --accent: #EA292C;
  --surface: #ffffff;
  --duration-top: 70s;
  --duration-bottom: 78s;
  --font-accent: "Syncopate", sans-serif;
}

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

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview__text {
  font-weight: bold;
  line-height: 4;
}
.overview__text-undl {
  border-bottom: 2px dashed transparent;
  padding-bottom: 0.5rem;
}

.overview__image {
  display: inline-block;
  margin-top: 4rem;
}

.text-white {
  color: #fff;
  border-color: #fff;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid #d9e0ea;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.site-header .logo {
  margin: 0;
  font-size: 1.7rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.site-header .global-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.site-header .global-nav a {
  color: #2a3a52;
  text-decoration: none;
  font-size: 0.92rem;
}
.site-header .global-nav a:hover {
  color: var(--accent);
}

.fv {
  position: relative;
  min-height: clamp(520px, 70vh, 720px);
  overflow: hidden;
  background: #dce7f3;
}
.fv-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(170px, 26vh, 240px) 24px 120px;
}
.fv-content__eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 2rem);
}
.fv-content__title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  background: #fff;
  display: inline-block;
  padding: 8px 16px;
}
.fv-content__lead {
  margin: 18px 0 0;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.8rem);
}
.fv-nav {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  transform: translateX(-50%);
}
.fv-nav__title {
  margin: 0 0 8px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.fv-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 1.5rem 5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  font-size: 0.85rem;
}
.fv-nav__link {
  position: relative;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.fv-nav__link.is-active {
  color: var(--accent);
}
.fv-nav__link.is-active::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}
.fv-nav__link:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.fv-scroll-indicator {
  position: absolute;
  left: -4vw;
  bottom: 10rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: rotate(90deg);
}
.fv-scroll-indicator__text {
  color: var(--accent);
  font-family: var(--font-accent);
  font-weight: bold;
}
.fv-scroll-indicator__icon {
  width: 6rem;
  height: 2px;
  background-color: var(--accent);
}
.fv-scroll-indicator__icon::before {
  content: "";
  position: absolute;
  border-top: 2px solid var(--accent);
  top: 0;
  right: 4px;
  width: 2rem;
  height: 2rem;
  transform: rotate(25deg);
}

.fv-bg {
  position: absolute;
  top: 50%;
  right: 3vw;
  width: 100%;
  height: 100%;
  z-index: 1;
  width: auto;
  height: 60%;
  z-index: 3;
  transform: translateY(-50%);
}
.fv-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.fv-bg img {
  padding: 2rem;
}

.fv-marquee {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.fv-marquee--top {
  top: 0;
}
.fv-marquee--bottom {
  bottom: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  will-change: transform;
}
.marquee-track img {
  width: clamp(180px, 20vw, 340px);
  height: clamp(110px, 12vw, 190px);
  border-radius: 6px;
}
.marquee-track[data-direction=left] {
  animation: marquee-left var(--duration-top) linear infinite;
}
.marquee-track[data-direction=right] {
  animation: marquee-right var(--duration-bottom) linear infinite;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.section__header {
  margin-bottom: 4rem;
}
.section__header-sub {
  font-family: var(--font-accent);
  font-size: small;
  font-weight: bold;
  margin-bottom: 3rem;
  opacity: 0.2;
}
.section__header-sub--white {
  opacity: 1;
  color: #fff;
}
.section__header-title {
  display: inline;
  box-decoration-break: clone; /* 各行に背景を適用 */
  -webkit-box-decoration-break: clone;
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 3vw, 3rem);
  background-color: #fff;
  padding: 1rem;
}
.section__header-title span {
  color: var(--accent);
}

.intro {
  padding: 80px 24px 120px;
}
.intro__eyebrow {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 7rem;
  opacity: 0.8;
}
.intro__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.intro__lead {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto;
  max-width: 500px;
  line-height: 4;
}

.js-trigger {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.js-trigger .js-sticky-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 0;
}
.js-trigger .js-sticky-bg.is-fixed {
  position: fixed;
  top: 0;
  left: var(--sticky-left, 0);
  width: var(--sticky-width, 100%);
}
.js-trigger .js-sticky-bg.is-bottom {
  top: auto;
}
.js-trigger .js-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
}

.voice {
  padding-top: 0;
}
.voice__bg {
  position: relative;
}
.voice__bg::before {
  content: "";
  position: absolute;
  background-color: #001B39;
  top: 0;
  right: 0;
  mask-image: linear-gradient(-25deg, #000 30%, transparent 100%);
  mask-size: 100% 100%;
  width: 100%;
  height: 100%;
}
.voice__inner {
  text-align: right;
}

.support {
  padding-top: 0;
}
.support__bg {
  position: relative;
}
.support__bg::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  mask-image: linear-gradient(25deg, #000 30%, transparent 100%);
  mask-size: 100% 100%;
  width: 100%;
  height: 100%;
}

.bottom {
  position: relative;
}
.bottom__marquee img {
  aspect-ratio: 16/9;
  width: auto;
  height: clamp(110px, 18vw, 190px);
}
.bottom__marquee + .bottom__marquee {
  margin-top: 12px;
}
.bottom__label {
  position: absolute;
  background-color: #EA292C;
  color: #fff;
  text-align: center;
  padding: 4rem 4rem 2rem;
  width: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bottom__sub {
  position: absolute;
  font-family: "Antro Vectra", sans-serif;
  font-size: 4rem;
  width: max-content;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  letter-spacing: 0.2rem;
}
.bottom__title {
  margin-bottom: 3rem;
  padding-top: 3rem;
  font-size: 3rem;
}
.bottom__lead {
  font-weight: bold;
  line-height: 3;
}
.bottom__end {
  font-weight: bold;
  font-size: 1.6rem;
  font-style: italic;
  margin-top: 3rem;
  line-height: 1.8;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #001B39;
  color: #fff;
  padding: 2rem;
}
.site-footer__nav {
  display: flex;
  gap: 1rem;
}
.site-footer__nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-size: 0.9rem;
}
.site-footer__nav a:hover {
  text-decoration: underline;
}
.site-footer__copyright {
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .site-header .global-nav {
    gap: 12px;
  }
  .site-header .global-nav a {
    font-size: 0.82rem;
  }
  .fv-content {
    padding-top: 150px;
    padding-bottom: 96px;
  }
  .marquee-track img {
    width: 48vw;
    height: 28vw;
  }
}/*# sourceMappingURL=style.css.map */