@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/antro-vectra");
@import url("https://fonts.cdnfonts.com/css/syncopate");
/* 
  ブレークポイントの考え方：
  - モバイルファースト（320px〜がベース）
  - sm: 540px〜  大型スマートフォン（iPhone 14 Pro Max等）
  - md: 768px〜  タブレット縦向き（iPad縦等）
  - lg: 1024px〜 タブレット横向き、小型ノートPC（iPad横等）
  - xl: 1280px〜 一般的なノートPC、デスクトップ
  - xxl: 1600px〜 大型ディスプレイ、4K対応
*/
:root {
  --duration-top: 70s;
  --duration-bottom: 78s;
}

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


main {
  min-width: 320px;
  color: #082141;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  background: #F0F4F9;
}


main {
  display: block;
}

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

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

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

main button,
main input,
main select,
main textarea {
  font: inherit;
  color: inherit;
}

main table {
  border-collapse: collapse;
  border-spacing: 0;
}

main th,
main td {
  text-align: inherit;
  vertical-align: top;
}

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

main picture,
main svg,
main video,
main canvas,
main iframe {
  display: block;
  max-width: 100%;
}

main sup,
main sub {
  font-size: 0.75em;
  line-height: 1;
}

main sup {
  vertical-align: super;
}

main sub {
  vertical-align: sub;
}

.footer__backlink {
  z-index: 100;
}

main .outer {
  margin: 0;
  min-width: 320px;
  color: #082141;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  background: #F0F4F9;
  overflow: hidden;
}

.section__header {
  margin-bottom: 6rem;
}
.section__header-sub {
  font-family: "Syncopate", sans-serif;
  font-size: 1.4rem;
  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(4rem, 5vw, 5rem);
  font-weight: bold;
  background-color: #fff;
  padding: 0.5rem 2rem;
  line-height: 1.8;
}
@media screen and (min-width: 1600px) {
  .section__header-title {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .section__header-title {
    font-size: 3.8rem;
    padding: 0 1rem;
    line-height: 1.6;
  }
}
.section__header-title span {
  color: #EA292C;
}

@media screen and (max-width: 1023px) {
  .overview {
    padding: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .overview {
    padding: 6vh 6vw;
  }
}
.overview__text {
  font-weight: bold;
  line-height: 4;
}
@media screen and (max-width: 1023px) {
  .overview__text {
    line-height: 3;
  }
}
.overview__text-undl {
  position: relative;
  background: linear-gradient(to bottom, transparent 60%, rgba(234, 41, 44, 0.6) 60%);
}
@media screen and (min-width: 1024px) {
  .overview__text.text-white {
    color: #fff;
  }
}
.overview__right {
  display: flex;
  justify-content: end;
}
.overview__center {
  display: flex;
  justify-content: center;
  width: 100%;
}
.overview__button {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 4px;
  position: relative;
  width: 100%;
  background-color: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  cursor: pointer;
  padding: 2px 20px;
  border-radius: calc(infinity * 1px);
  border-width: 2px;
  border-style: solid;
  border-color: rgb(51, 51, 51);
  border-image: initial;
  transition: background 0.5s;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .overview__button {
    max-width: 480px;
    min-height: 60px;
    font-size: 2rem;
  }
}
.overview__button::before {
  content: "";
  min-width: 15px;
  height: 15px;
  margin-right: 10px;
  border-top: 3px solid #ea3323;
  border-right: 3px solid #ea3323;
  transform: rotate(45deg) skew(-15deg, -15deg);
}
.overview__button:hover {
  background-color: rgb(230, 230, 230);
}
.overview__image {
  display: inline-flex;
  flex-direction: column;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .overview__image {
    align-items: center;
  }
}

.md-block {
  display: none;
}
@media screen and (max-width: 1023px) {
  .md-block {
    display: block;
  }
}

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

.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;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .marquee-track img {
    width: 48vw;
    height: 28vw;
  }
}
.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);
  }
}
.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;
}
@media screen and (max-width: 1023px) {
  .js-trigger .js-sticky-bg {
    display: none;
  }
}
.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: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 26vh;
  padding-bottom: 26vh;
}
@media screen and (min-width: 1600px) {
  .js-trigger .js-inner {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1279px) {
  .js-trigger .js-inner {
    padding: 15vh 10vw;
  }
}
@media screen and (max-width: 1023px) {
  .js-trigger .js-inner {
    padding: 0;
  }
}

.fv {
  position: relative;
  min-height: clamp(520px, 75vh, 780px);
  overflow: hidden;
  background: #DBEDFD;
}
@media screen and (min-width: 1600px) {
  .fv {
    min-height: clamp(520px, 80vh, 820px);
  }
}
@media screen and (max-width: 767px) {
  .fv {
    height: 100vh;
  }
}
.fv-content {
  position: absolute;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1600px) {
  .fv-content {
    max-width: 1600px;
  }
}
@media screen and (max-width: 767px) {
  .fv-content {
    padding-top: 150px;
    padding-bottom: 96px;
  }
}
.fv-content__eyebrow {
  margin: 0 0 12px;
  color: #EA292C;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 3rem);
}
@media screen and (min-width: 1600px) {
  .fv-content__eyebrow {
    margin: 0 0 2rem;
    font-size: clamp(1.8rem, 3vw, 4rem);
  }
}
.fv-content__title {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.15rem;
  background: #fff;
  display: inline;
  padding: 0.5rem 2rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (min-width: 1600px) {
  .fv-content__title {
    font-size: clamp(3.5rem, 9vw, 9rem);
  }
}
@media screen and (max-width: 767px) {
  .fv-content__title {
    padding: 0 0.5rem;
    line-height: 1.6;
  }
}
.fv-content__title small {
  font-size: 90%;
}
.fv-content__lead {
  margin: 18px 0 0;
  font-weight: 700;
  font-size: clamp(1rem, 2.8vw, 2.8rem);
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 1600px) {
  .fv-content__lead {
    margin: 2rem 0 0;
    font-size: clamp(1rem, 2.8vw, 3.8rem);
  }
}
@media screen and (max-width: 1023px) {
  .fv-content__lead {
    text-shadow: 1px 1px 2px #fff, -1px 1px 2px #fff, -1px -1px 2px #fff, 1px -1px 2px #fff;
  }
}
.fv-nav {
  position: absolute;
  left: 50%;
  bottom: 3.6rem;
  z-index: 4;
  transform: translateX(-50%);
  width: max-content;
}
@media screen and (max-width: 1023px) {
  .fv-nav {
    display: none;
  }
}
.fv-nav__title {
  font-family: "Syncopate", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #EA292C;
  letter-spacing: 0.1em;
}
.fv-nav__list {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 2rem 8rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}
.fv-nav__link {
  position: relative;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.fv-nav__link.is-active {
  color: #EA292C;
}
.fv-nav__link.is-active::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: #EA292C;
  border-radius: 50%;
  transform: translateY(-50%);
}
.fv-nav__link:hover {
  color: #EA292C;
}
.fv-scroll-indicator {
  position: absolute;
  left: -4vw;
  bottom: 16rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateY(0) rotate(90deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1279px) {
  .fv-scroll-indicator {
    bottom: 10rem;
  }
}
@media screen and (max-width: 1023px) {
  .fv-scroll-indicator {
    bottom: 6rem;
    left: -10vw;
  }
}
.fv-scroll-indicator:hover {
  transform: translateY(1rem) rotate(90deg);
}
.fv-scroll-indicator__text {
  color: #EA292C;
  font-size: 1.8rem;
  font-family: "Syncopate", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .fv-scroll-indicator__text {
    font-size: 1.2rem;
  }
}
.fv-scroll-indicator__icon {
  width: 10rem;
  height: 2px;
  background-color: #EA292C;
}
@media screen and (max-width: 1023px) {
  .fv-scroll-indicator__icon {
    width: 5rem;
  }
}
.fv-scroll-indicator__icon::before {
  content: "";
  position: absolute;
  border-top: 2px solid #EA292C;
  top: 9px;
  right: 4px;
  width: 2rem;
  height: 2rem;
  transform: rotate(25deg);
}
@media screen and (max-width: 1023px) {
  .fv-scroll-indicator__icon::before {
    top: 5px;
    right: 2px;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.fv-bg {
  position: absolute;
  top: 50%;
  right: 3vw;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: -1 !important;
  width: auto;
  height: 150%;
  z-index: 3;
  transform: translateY(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .fv-bg {
    width: 50%;
    height: auto;
    right: 0;
  }
}
.fv-bg img {
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .fv-bg img {
    padding: 2rem;
  }
}

.fv-marquee {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .fv-marquee .marquee-track + .marquee-track {
    margin-top: 8px;
  }
}
.fv-marquee--top {
  top: 0;
}
.fv-marquee--bottom {
  bottom: 0;
}

.fv-marquee-toggle {
  position: absolute;
  right: clamp(1.2rem, 2vw, 2.4rem);
  bottom: clamp(1.2rem, 2vw, 2.4rem);
  z-index: 5;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border: 1px solid rgba(8, 33, 65, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #EA292C;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fv-marquee-toggle:hover {
  background: #EA292C;
  border-color: #EA292C;
  color: #fff;
}
.fv-marquee-toggle[aria-pressed=true] {
  background: rgba(8, 33, 65, 0.9);
  border-color: rgba(8, 33, 65, 0.9);
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .fv-marquee-toggle {
    right: 1.2rem;
    bottom: 1.2rem;
    width: 4rem;
    height: 4rem;
  }
}

.fv-marquee-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fv-marquee-toggle__icon--pause {
  gap: 4px;
}
.fv-marquee-toggle__icon--pause span {
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: currentColor;
}

.fv-marquee-toggle__icon--play {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  display: none;
}

.fv-marquee-toggle[aria-pressed=true] .fv-marquee-toggle__icon--pause {
  display: none;
}
.fv-marquee-toggle[aria-pressed=true] .fv-marquee-toggle__icon--play {
  display: inline-block;
}

.fv.is-marquee-paused .marquee-track {
  animation-play-state: paused !important;
}

.intro {
  position: relative;
  padding-top: 10rem;
  letter-spacing: 0.15rem;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .intro {
    padding-top: 5rem;
  }
}
.intro__eyebrow {
  padding: 0 0 5rem;
  color: #fff;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-size: 12rem;
  line-height: 1;
  text-align: center;
  opacity: 0.8;
}
@media screen and (max-width: 1279px) {
  .intro__eyebrow {
    font-size: 10rem;
  }
}
@media screen and (max-width: 1023px) {
  .intro__eyebrow {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__eyebrow {
    font-size: 8vw;
  }
}
.intro__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.intro__bg-item {
  position: absolute;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 0.65s ease, transform 0.8s ease;
}
.intro__bg-item--1 {
  top: -5vh;
  left: 16rem;
  width: 31rem;
}
@media screen and (min-width: 1600px) {
  .intro__bg-item--1 {
    top: -15vh;
    width: 45rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__bg-item--1 {
    top: -3vh;
    left: 1rem;
  }
}
@media screen and (max-width: 539px) {
  .intro__bg-item--1 {
    left: -15rem;
  }
}
.intro__bg-item--2 {
  top: -15vh;
  right: 14rem;
  width: 25rem;
}
@media screen and (min-width: 1600px) {
  .intro__bg-item--2 {
    top: -25vh;
    width: 35rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__bg-item--2 {
    top: -10vh;
    right: 6rem;
  }
}
@media screen and (max-width: 539px) {
  .intro__bg-item--2 {
    top: -5vh;
    right: 1rem;
    width: 17rem;
  }
}
.intro__bg-item--3 {
  top: 20vh;
  right: 2rem;
  width: 28rem;
}
@media screen and (min-width: 1600px) {
  .intro__bg-item--3 {
    top: 10vh;
    width: 43rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__bg-item--3 {
    top: 15vh;
    right: -5rem;
  }
}
@media screen and (max-width: 539px) {
  .intro__bg-item--3 {
    top: 15vh;
    right: -17rem;
  }
}
.intro__bg-item--4 {
  top: 35vh;
  left: 6rem;
  width: 22rem;
}
@media screen and (min-width: 1600px) {
  .intro__bg-item--4 {
    top: 20vh;
    width: 37rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__bg-item--4 {
    top: 25vh;
    left: -4rem;
  }
}
@media screen and (max-width: 539px) {
  .intro__bg-item--4 {
    top: 36vh;
    left: -15rem;
  }
}
.intro__bg-item--5 {
  right: 12rem;
  bottom: 6vh;
  width: 30rem;
}
@media screen and (min-width: 1600px) {
  .intro__bg-item--5 {
    width: 42rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__bg-item--5 {
    top: -15vh;
    right: 2rem;
  }
}
@media screen and (max-width: 539px) {
  .intro__bg-item--5 {
    top: auto;
    bottom: 15vh;
    right: -14rem;
  }
}
.intro__bg-item--6 {
  left: 16rem;
  bottom: 2vh;
  width: 24rem;
}
@media screen and (min-width: 1600px) {
  .intro__bg-item--6 {
    bottom: 0;
    width: 38rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__bg-item--6 {
    left: -1rem;
    bottom: 10vh;
  }
}
@media screen and (max-width: 539px) {
  .intro__bg-item--6 {
    top: auto;
    left: -6rem;
    bottom: 5vh;
  }
}
.intro.is-revealed .intro__bg-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.intro.is-revealed .intro__bg-item--1 {
  transition-delay: 0.08s;
}
.intro.is-revealed .intro__bg-item--2 {
  transition-delay: 0.22s;
}
.intro.is-revealed .intro__bg-item--3 {
  transition-delay: 0.34s;
}
.intro.is-revealed .intro__bg-item--4 {
  transition-delay: 0.48s;
}
.intro.is-revealed .intro__bg-item--5 {
  transition-delay: 0.62s;
}
.intro.is-revealed .intro__bg-item--6 {
  transition-delay: 0.76s;
}
.intro__inner {
  position: relative;
  margin: 10rem 0;
  padding: 0 4vw;
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 1600px) {
  .intro__inner {
    margin: 25rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .intro__inner {
    margin: 5rem 0;
  }
}
.intro__lead {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto;
  max-width: 500px;
  line-height: 3.5;
}
@media screen and (min-width: 1600px) {
  .intro__lead {
    font-size: 2.2rem;
    max-width: 780px;
  }
}
@media screen and (max-width: 1023px) {
  .intro__lead {
    font-size: 1.4rem;
    line-height: 4;
  }
}
.intro__arrow {
  position: relative;
  width: 4px;
  height: 10rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10rem;
}
.intro__arrow-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #082141;
  border-radius: 50%;
}
.intro__arrow-dot:nth-child(2) {
  top: 2rem;
  background-color: #EA292C;
}
.intro__arrow-dot:nth-child(3) {
  top: 4rem;
}
.intro__arrow-icon {
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #EA292C;
  border-bottom: 2px solid #EA292C;
  top: 6rem;
  left: calc(50% + 2px);
  transform: translateX(-50%) rotate(45deg);
}

.voice {
  position: relative;
  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%;
}
@media screen and (min-width: 1024px) {
  .voice__inner {
    text-align: right;
  }
}
.voice__title {
  position: absolute;
  font-family: "Syncopate", sans-serif;
  font-size: clamp(2.4rem, 15vw, 15rem);
  font-weight: bold;
  color: #fff;
  left: 2vw;
  bottom: 0;
}
@media screen and (min-width: 1280px) {
  .voice__title {
    left: 2vw;
    bottom: 0;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.3s ease;
  }
  .voice__title.is-active {
    position: absolute;
    opacity: 1;
    transform: translate3d(0, var(--title-shift-y, 0px), 0);
  }
  .voice__title.is-leaving {
    position: absolute;
    opacity: 0;
    transform: translate3d(0, var(--title-shift-y, 0px), 0);
  }
}
@media screen and (max-width: 1023px) {
  .voice__title {
    top: 0;
    z-index: 2;
    height: max-content;
  }
}
@media screen and (max-width: 1023px) {
  .voice__header {
    height: 55vh;
    overflow: hidden;
    padding: 28vh 6vw 2rem;
    margin-bottom: 0;
    background-image: url("../img/tec/voice_bk.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .voice__header {
    height: 70vh;
  }
}

.support {
  position: relative;
  padding-top: 0;
}
.support__bg {
  position: relative;
}
.support__bg::before {
  content: "";
  position: absolute;
  background-color: rgb(243.1578947368, 249.0789473684, 254.3421052632);
  top: 0;
  left: 0;
  mask-image: linear-gradient(25deg, #000 30%, transparent 100%);
  mask-size: 100% 100%;
  width: 100%;
  height: 100%;
}
.support__title {
  position: absolute;
  font-family: "Syncopate", sans-serif;
  font-size: clamp(2.4rem, 15vw, 15rem);
  font-weight: bold;
  color: #fff;
  right: 2vw;
  bottom: 0;
}
@media screen and (min-width: 1280px) {
  .support__title {
    right: 2vw;
    bottom: 0;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.3s ease;
  }
  .support__title.is-active {
    position: absolute;
    opacity: 1;
    transform: translate3d(0, var(--title-shift-y, 0px), 0);
  }
  .support__title.is-leaving {
    position: absolute;
    opacity: 0;
    transform: translate3d(0, var(--title-shift-y, 0px), 0);
  }
}
@media screen and (max-width: 1023px) {
  .support__title {
    top: 0;
    z-index: 2;
    height: max-content;
  }
}
@media screen and (max-width: 1023px) {
  .support__header {
    height: 55vh;
    overflow: hidden;
    padding: 28vh 6vw 2rem;
    margin-bottom: 0;
    background-image: url("../img/tec/support_bk.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) {
  .support__header {
    height: 70vh;
  }
}

.bottom {
  position: relative;
}
.bottom__group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 540px) {
  .bottom__group {
    flex-wrap: nowrap;
  }
}
.bottom__group img {
  border-radius: 5px;
  aspect-ratio: 16/9;
  width: 25%;
}
@media screen and (max-width: 1023px) {
  .bottom__group img {
    width: calc(50% - 6px);
  }
}
.bottom__group + .bottom__group {
  margin-top: 12px;
}
.bottom__label {
  position: absolute;
  background-color: #EA292C;
  color: #fff;
  text-align: center;
  padding: 8rem 8rem 6rem;
  top: 50%;
  left: 50%;
  width: max-content;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1023px) {
  .bottom__label {
    left: auto;
    width: 100%;
    background-color: rgba(234, 41, 44, 0.8);
    padding: 4rem 4rem 6rem;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .bottom__label {
    padding: 2rem 2rem 4rem;
  }
}
.bottom__sub {
  position: absolute;
  font-family: "Antro Vectra", sans-serif;
  font-size: 6rem;
  width: max-content;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 1600px) {
  .bottom__sub {
    font-size: 7rem;
  }
}
@media screen and (max-width: 1023px) {
  .bottom__sub {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .bottom__sub {
    font-size: 3rem;
  }
}
.bottom__title {
  margin-bottom: 4rem;
  padding-top: 8rem;
  font-size: 5rem;
  font-weight: bold;
}
@media screen and (min-width: 1600px) {
  .bottom__title {
    font-size: 7rem;
  }
}
@media screen and (max-width: 1023px) {
  .bottom__title {
    padding-top: 6rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .bottom__title {
    padding-top: 4rem;
    font-size: 2.6rem;
  }
}
.bottom__lead {
  font-weight: bold;
  line-height: 3;
}
@media screen and (min-width: 1600px) {
  .bottom__lead {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .bottom__lead {
    line-height: 2.5;
  }
}
.bottom__end {
  font-weight: bold;
  font-size: 3rem;
  font-style: italic;
  margin-top: 4.5rem;
  line-height: 1.8;
}
@media screen and (min-width: 1600px) {
  .bottom__end {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .bottom__end {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */
