@charset "utf-8";
/* CSS Document */

:root {
  --text-color: #1c1c1c;
  --text-highlight-color: #053c8f;
  --line-color: #e1e1e6;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: var(--text-color);
  font-family: "Noto Sans JP", Arial, sans-serif;
  background: #fff;
  letter-spacing: 0.11rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 6px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  width: min(calc(100% - 16px), 1400px);
  min-height: 84px;
  padding: 16px 30px;
  border: 1px solid #e4e9ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgb(12 30 54 / 12%);
  opacity: 0;
  transform: translate(-50%, -12px);
  will-change: opacity, transform;
}

.site-header__logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: #12a7dd;
  text-decoration: none;
}

.site-header__mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #12c7da 0%, #0064bb 58%, #053082 100%);
}

.site-header__mark::before,
.site-header__mark::after,
.site-header__mark span {
  content: "";
  position: absolute;
  width: 29px;
  height: 8px;
  border: 3px solid #fff;
  border-right: 0;
  border-bottom: 0;
  border-radius: 9px 0 0;
  transform: rotate(48deg);
}

.site-header__mark::before {
  top: 9px;
  left: 11px;
}

.site-header__mark span {
  top: 17px;
  left: 8px;
}

.site-header__mark::after {
  top: 25px;
  left: 5px;
}

.site-header__brand {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.site-header__nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.5vw, 54px);
  min-width: 0;
}

.site-header__nav a {
  color: #053c8f;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-header__nav a:hover,
.site-header__button:hover,
.site-header__logo:hover {
  opacity: 0.75;
}

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.site-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 6px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-header__button--movie {
  background: #004a9b;
}

.site-header__button--contact {
  background: #d80b0b;
}

/* Common */
.l-container {
  width: min(100% - 48px, 1400px);
  margin-inline: auto;
}

.c-overlay {
  position: fixed;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  pointer-events: none;
}

.p-top__inner {
  opacity: 0;
  transform: translateY(100px);
}

/* MV */
.c-mv {
  position: relative;
  min-height: 100svh;
  padding: 145px 0 180px;
  overflow: hidden;
}

.c-mv__wrapper {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  align-items: unset;
  justify-content: center;
  gap: 50px;
  min-height: calc(100svh - 325px);
}

.c-mv__desc {
  max-width: 660px;
  margin: 0;
  font-size: clamp(1.8rem, 1.2vw + 1.2rem, 3.2rem);
  font-weight: 900;
  line-height: 1.8;
  opacity: 0;
  will-change: opacity, transform;
}

.c-mv__highlight {
  display: inline;
  color: var(--text-highlight-color);
  background-image: linear-gradient(90deg, var(--text-highlight-color), var(--text-highlight-color));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 4px;
  padding-bottom: 3px;
}

.c-mv__title {
  display: block;
  margin: 0;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(4.8rem, 10vw, 13rem);
  font-weight: 900;
  line-height: 1.2;
  opacity: 0;
  white-space: nowrap;
  will-change: color, opacity, transform;
}

.c-mv__title span {
  font-size: clamp(4.8rem, 10.8vw, 14rem);
}

.c-scroll {
  position: absolute;
  bottom: 0;
  left: max(50% - 820px, 20px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  writing-mode: vertical-rl;
  opacity: 0;
}

.c-scroll span {
  position: relative;
  display: block;
  width: 3px;
  height: 38px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--line-color);
}

.c-scroll span::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: #096dd9;
  animation: scrollLine 1.3s linear infinite;
}

/* View More Button */
.c-view-more {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  overflow: hidden;
  background: #fbf7f8;
  color: #080808;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.28s ease;
}

.c-view-more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #080808;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(.39,.575,.565,1);
}

.c-view-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 58px;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #080808;
  transform: translateY(-50%);
  transition: background 0.3s, transform 0.3s;
}

.c-view-more span {
  position: relative;
  z-index: 2;
  padding-right: 48px;
}

.c-view-more span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s, transform 0.3s;
}

.c-view-more:hover {
  color: #fff;
}

.c-view-more:hover::before {
  transform: scaleX(1);
}

.c-view-more:hover::after {
  background: #fff;
  transform: translate(6px, -50%);
}

.c-view-more:hover span::after {
  border-color: #080808;
  transform: translate(6px, -50%) rotate(45deg);
}

/* Sales */
.p-sales {
  background: #0f4f99;
  color: #fff;
  overflow: hidden;
}

.p-sales__inner {
  display: flex;
  flex-direction: column;
  width: min(100% - 80px, 1180px);
  margin-inline: auto;
  padding: 52px 0 70px;
}

.p-sales__catch {
  width: 100%;
  margin: 0;
  font-size: clamp(4rem, 4.2vw, 5.4rem);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0.3rem;
  padding-bottom: 1rem;
}

.p-sales__bottom {
  display: grid;
  grid-template-columns: minmax(278px, 0.42fr) minmax(360px, 0.58fr);
  gap: clamp(52px, 12vw, 152px);
  align-items: center;
  width: 100%;
  margin-top: 2rem;
}

.p-sales__button {
  width: min(100%, 278px);
}
.p-sales__button span::after {
  right: 17px;
}
.p-sales__copy {
  padding-bottom: 2px;
}

.p-sales__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.p-sales__copy p {
  margin: 0;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}

/* Business */
.p-business {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #050505;
}

.p-business::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(255 255 255 / 20%), rgb(0 0 0 / 42%)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=80") center / cover;
  filter: grayscale(1);
  transform: scale(1.04);
}

.p-business__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1360px);
  margin-inline: auto;
  padding: 108px 0 40px;
}

.p-business__tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  min-height: 284px;
}

.p-business__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 284px;
  padding: 30px 14px;
  color: #050505;
  text-align: center;
  text-decoration: none;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.p-business__tile:hover {
  filter: brightness(1.08);
  transform: translateY(-6px);
}

.p-business__tile--ec {
  background: #ff610f;
}

.p-business__tile--marketing {
  background: #ffba1a;
}

.p-business__tile--retail {
  background: #e5e5e5;
}

.p-business__tile--store {
  background: #ff1114;
}

.p-business__tile--stay {
  background: #f94178;
}

.p-business__tile--school {
  background: #159fc0;
}

.p-business__tile-en {
  min-height: 44px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
}

.p-business__tile-ja {
  display: block;
  margin-top: 52px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.7;
}

.p-business__button {
  display: flex;
  width: min(100%, 338px);
  min-height: 92px;
  margin: 74px auto 0;
}

/* Animation */
.js-clip-animation {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.72s cubic-bezier(.39,.575,.565,1);
}

.js-clip-animation.is-active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@keyframes scrollLine {
  to {
    top: 100%;
  }
}

.p-strength {
  background: #fff;
  color: #080808;
  overflow: hidden;
}

.p-strength__inner {
  width: min(100% - 64px, 980px);
  margin-inline: auto;
  padding: 84px 0 96px;
}

.p-strength__heading {
  text-align: center;
}

.p-strength__heading-en {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.p-strength__heading h2 {
  margin: 14px 0 0;
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.p-strength__line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 294px;
  height: 4px;
  margin: 46px auto 0;
}

.p-strength__line::before,
.p-strength__line::after,
.p-strength__line {
  background:
    linear-gradient(
      90deg,
      #f8ad22 0 33.333%,
      #2a7dab 33.333% 66.666%,
      #df6267 66.666% 100%
    );
}

.p-strength__body {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(70px, 10vw, 112px);
  margin-top: 38px;
}

.p-strength__arrow {
  position: absolute;
  top: 118px;
  z-index: 0;
  height: 52px;
  opacity: 0.62;
  pointer-events: none;
}

.p-strength__arrow::before,
.p-strength__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 58%;
  height: 100%;
  background: currentColor;
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 50%, calc(100% - 44px) 100%, 0 100%, 44px 50%);
}

.p-strength__arrow::before {
  left: 0;
}

.p-strength__arrow::after {
  right: 0;
}

.p-strength__arrow--yellow {
  left: -70px;
  width: 360px;
  color: #f8ad22;
}

.p-strength__arrow--blue {
  left: 50%;
  width: 360px;
  color: #2a7dab;
  transform: translateX(-50%);
}

.p-strength__arrow--red {
  right: -70px;
  width: 360px;
  color: #df6267;
}

.p-strength-card {
  position: relative;
  z-index: 1;
  min-height: 302px;
  padding: 18px 20px 26px;
  border: 4px solid currentColor;
  border-radius: 8px;
  background: linear-gradient(rgb(255 255 255 / 88%) 0 100%);
  text-align: center;
}

.p-strength-card--yellow {
  color: #f8ad22;
}

.p-strength-card--blue {
  color: #2a7dab;
}

.p-strength-card--red {
  color: #df6267;
}

.p-strength-card__icon {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 0 auto 24px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.p-strength-card__tools,
.p-strength-card__cycle,
.p-strength-card__chart {
  position: relative;
  display: block;
  color: currentColor;
}

.p-strength-card__tools::before,
.p-strength-card__tools::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 8px;
  border-radius: 8px;
  background: currentColor;
  transform-origin: center;
}

.p-strength-card__tools::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-strength-card__tools::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-strength-card__cycle {
  width: 30px;
  height: 30px;
  border: 5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.p-strength-card__cycle::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  transform: rotate(32deg);
}

.p-strength-card__chart {
  width: 36px;
  height: 28px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}

.p-strength-card__chart::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 7px;
  width: 5px;
  height: 14px;
  background: currentColor;
  box-shadow: 9px -7px 0 currentColor, 18px -2px 0 currentColor;
}

.p-strength-card h3 {
  margin: 0 -20px 0;
  padding: 13px 12px;
  background: rgb(255 255 255 / 62%);
  color: #080808;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.p-strength-card p {
  margin: 28px 0 0;
  color: #080808;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0;
}


/* Tablet */
@media (max-width: 1024px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
    min-height: 0;
    padding: 14px 16px;
  }

  .site-header__brand {
    font-size: 2.6rem;
  }

  .site-header__nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding-top: 8px;
    scrollbar-width: none;
  }

  .site-header__nav::-webkit-scrollbar {
    display: none;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .site-header__button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 1.4rem;
  }

  .c-mv {
    padding: 50px 0 45px;
  }

  .c-mv__wrapper {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: calc(100svh - 95px);
  }

  .p-sales__inner {
    width: min(100% - 48px, 920px);
    padding: 52px 0 60px;
  }

  .p-sales__bottom {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 44px;
  }

  .p-sales__catch {
    font-size: 3.4rem;
  }

  .p-sales__button {
    width: min(278px, 100%);
    min-height: 64px;
  }

  .p-business__inner {
    width: min(100% - 48px, 920px);
    padding: 76px 0 40px;
  }

  .p-business__tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .p-business__tile,
  .p-business__tiles {
    min-height: 220px;
  }

  .p-business__tile-ja {
    margin-top: 34px;
    font-size: 1.8rem;
  }
  .p-strength__inner {
    width: min(100% - 48px, 920px);
  }

  .p-strength__body {
    gap: 28px;
  }

  .p-strength__arrow {
    display: none;
  }

  .p-strength-card {
    min-height: 286px;
    padding-inline: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-header {
    top: 6px;
    width: calc(100% - 12px);
    padding: 12px;
    border-radius: 10px;
  }

  .site-header__mark {
    width: 38px;
    height: 38px;
  }

  .site-header__mark::before,
  .site-header__mark::after,
  .site-header__mark span {
    width: 23px;
    height: 7px;
    border-width: 2px;
  }

  .site-header__mark::before {
    top: 8px;
    left: 10px;
  }

  .site-header__mark span {
    top: 15px;
    left: 7px;
  }

  .site-header__mark::after {
    top: 22px;
    left: 4px;
  }

  .site-header__brand {
    font-size: 2.2rem;
  }

  .site-header__actions {
    display: none;
  }

  .site-header__nav {
    gap: 18px;
  }

  .site-header__nav a {
    font-size: 1.4rem;
  }

  .l-container {
    width: min(100% - 32px, 1200px);
  }


  .c-mv {
    padding: 30px 0 20px;
  }

  .c-mv__wrapper {
    gap: 12px;
    min-height: calc(100svh - 50px);
  }

  .hide-on-sp {
    display: none;
  }

  .pc-only {
    display: none;
  }

  .c-scroll {
    display: none;
  }

  .p-sales__inner {
    width: min(100% - 32px, 920px);
    padding: 44px 0 48px;
  }

  .p-sales__button {
    width: 100%;
  }

  .p-business__inner {
    width: min(100% - 32px, 920px);
    padding: 56px 0 32px;
  }

  .p-business__tiles {
    grid-template-columns: 1fr;
  }

  .p-business__tile {
    min-height: 170px;
  }

  .p-business__tile-en {
    min-height: 0;
  }

  .p-business__tile-ja {
    margin-top: 22px;
    font-size: 1.8rem;
  }

  .p-business__button {
    min-height: 72px;
    margin-top: 44px;
  }
  .p-strength__inner {
    width: min(100% - 32px, 920px);
    padding: 64px 0 72px;
  }

  .p-strength__line {
    width: min(100%, 260px);
    margin-top: 32px;
  }

  .p-strength__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .p-strength-card {
    min-height: 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
