/* =============================================
  media query
============================================= */
/* =============================================
  px vw
============================================= */
/* =============================================
  default settings
============================================= */
:root {
  --color-primary: #FFDB00;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #707070;
  font-feature-settings: "palt";
}
body.is-active {
  overflow: hidden;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #707070;
}

ul, ol {
  list-style: none;
}

main {
  overflow-x: hidden;
}

section {
  background: #fff;
}
section:nth-of-type(even) {
  background: var(--color-primary);
}

.inner {
  max-width: calc(1000px + 8rem);
  padding: 0 4rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 3rem;
  }
}

.fadeIn {
  transition: filter ease 1s, opacity ease 1s, transform ease 1s;
  opacity: 0;
  filter: blur(3px);
  transform: scale(1.03);
  transform-origin: center center;
}
.fadeIn.is-active {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

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

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

/* =============================================
  loader
============================================= */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 1003;
  background: var(--color-primary);
  animation: loaderAnim 1s ease 3.5s forwards;
  display: none;
}
.loading.is-active {
  display: block;
}
.loading__logo {
  position: absolute;
  top: 50%;
  right: calc(50% - 5rem);
  transform: translateY(-50%);
  animation: logoAnim 4s ease 0.5s forwards;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .loading__logo {
    right: calc(50% - 3.5rem);
    top: auto;
    bottom: 50%;
    transform: translateY(0);
    animation: spLogoAnim 4s ease 0.5s forwards;
  }
}
@media screen and (max-width: 768px) {
  .loading__logo svg {
    width: 7rem;
  }
}
.loading__logo svg .a {
  animation: logoColorAnim 4s ease 0.5s forwards;
}

@keyframes loaderAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes logoAnim {
  0% {
    opacity: 0;
    right: calc(50% - 5rem);
  }
  25% {
    opacity: 1;
    right: calc(50% - 5rem);
  }
  50% {
    opacity: 1;
    right: calc(50% - 5rem);
  }
  100% {
    opacity: 1;
    right: 4.5rem;
  }
}
@keyframes spLogoAnim {
  0% {
    opacity: 0;
    bottom: calc(50% - 5rem);
  }
  25% {
    opacity: 1;
    bottom: calc(50% - 5rem);
  }
  50% {
    opacity: 1;
    bottom: calc(50% - 5rem);
  }
  100% {
    opacity: 1;
    bottom: 4rem;
  }
}
@keyframes logoColorAnim {
  0% {
    fill: #fff;
  }
  80% {
    fill: #fff;
  }
  100% {
    fill: #707070;
  }
}
/* =============================================
  section
============================================= */
.section__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 6.1rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .section__wrap {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.section__wrap--right {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .section__wrap--right {
    width: auto;
    margin-left: none;
  }
}
.section__text {
  padding-top: 1rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .section__text {
    height: 3rem;
    width: auto;
    margin: 0 auto;
    padding-top: 0;
  }
}
.section__subtitle {
  font-size: 2.4rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .section__subtitle {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.05em;
  }
}
.section__subtitle02 {
  text-align: center;
  margin-top: 4.2rem;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section__subtitle02 {
    padding-bottom: 1.5rem;
    margin-top: 4rem;
  }
}
.section__subtitle02::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 11rem;
  background: #707070;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section__title {
  margin: 4.5rem 0;
}
@media screen and (max-width: 768px) {
  .section__title {
    text-align: center;
    margin: 3.5rem 0 8rem;
  }
}
.section__title02 {
  text-align: center;
}
.section__title02:nth-child(n+2) {
  margin-top: 30rem;
}
@media screen and (max-width: 768px) {
  .section__title02:nth-child(n+2) {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .section__title02 img {
    height: 2rem;
    width: auto;
  }
}
.section__sentence {
  font-size: 1.8rem;
  margin-bottom: 3.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .section__sentence {
    margin-bottom: 4.5rem;
  }
}
.section__sentence:last-child {
  margin-bottom: 0;
}
.section__sentence02 {
  text-align: center;
  margin-top: 8.5rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .section__sentence02 {
    text-align: left;
    margin-top: 3rem;
  }
}
.section__list {
  margin-top: 7rem;
}
.section__list dt {
  font-size: 2.4rem;
  margin-bottom: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .section__list dt {
    text-align: center;
    font-size: 2.2rem;
    flex-direction: column;
  }
}
.section__list dt .number {
  background: #fff;
  color: var(--color-primary);
  width: 3.8rem;
  height: 3.8rem;
  line-height: 3.8rem;
  display: inline-block;
  text-align: center;
  font-weight: 300;
  font-size: 3.2rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .section__list dt .number {
    display: block;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .section__list dt .text {
    transform: translateX(5px);
  }
}
@media screen and (max-width: 768px) {
  .section__list dt .text-adjust {
    padding-left: 15px;
  }
}
.section__list dd {
  font-size: 1.8rem;
  line-height: 2;
  padding-left: 6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .section__list dd {
    padding-left: 0;
  }
}
.section__listItem {
  margin-bottom: 12.5rem;
}
.section__listItem:nth-of-type(3) dt .number {
  position: relative;
}
.section__listItem:nth-of-type(3) dt .number::after {
  content: "";
  position: absolute;
  top: -4.5rem;
  right: -96.5rem;
  background: no-repeat url(../img/value-acce01.png) center center/contain;
  width: 47rem;
  height: 47rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section__listItem:nth-of-type(3) dt .number::after {
    top: -3.5rem;
    right: -18.5rem;
    width: 21rem;
    height: 21rem;
  }
}
.section__listItem:last-child {
  margin-bottom: 0;
}
.section__copy {
  margin-top: 8.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section__copy {
    margin-top: 3.5rem;
  }
}
.section__img02 {
  margin-top: 8.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section__img02 {
    width: 20rem;
    margin: 4rem auto 0;
  }
}

/* =============================================
  header
============================================= */
.header {
  position: fixed;
  right: 4.5rem;
  bottom: 5.5rem;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header {
    display: none;
  }
}
.header__nav ul li {
  margin-bottom: 1.5rem;
}
.header__nav ul li:last-child {
  margin-bottom: 0;
}
.header__nav ul li a {
  text-align: right;
  display: block;
  font-size: 1.3rem;
  line-height: 1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.header__nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #707070;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform ease 0.3s;
}
.header__nav ul li a:hover {
  font-weight: 600;
}
.header__nav ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.header__nav ul li a.is-active {
  font-weight: 600;
}

/* =============================================
  hamburger
============================================= */
.hamburger__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger__btn {
    display: block;
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 1002;
    width: 2.6rem;
    height: 1rem;
  }
}
.hamburger__btn span {
  width: 100%;
  height: 2px;
  background: #707070;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform ease 0.3s;
}
.hamburger__btn span.is-active {
  background: #fff;
}
.hamburger__btn span:first-child {
  top: 0;
}
.hamburger__btn span:first-child.is-active {
  top: 50%;
  transform: translateX(-50%) rotate(-30deg);
}
.hamburger__btn span:last-child {
  top: 100%;
}
.hamburger__btn span:last-child.is-active {
  top: 50%;
  transform: translateX(-50%) rotate(30deg);
}
.hamburger__menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger__menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: #939392;
    width: 100%;
    height: 100%;
    z-index: 1001;
    padding: 15rem 5rem 12rem;
    overflow: scroll;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease 0.3s;
  }
}
.hamburger__menu.is-active {
  opacity: 1;
  visibility: visible;
}
.hamburger__menuText {
  margin-top: 9rem;
  color: #fff;
  padding-top: 3rem;
  text-align: center;
  border-top: 1px solid #fff;
}
.hamburger__navItem {
  margin-bottom: 4rem;
}
.hamburger__navItem:last-child {
  margin-bottom: 0;
}
.hamburger__navItem:nth-child(1) a.is-active {
  animation: navLinkAnim 0.5s ease forwards;
}
.hamburger__navItem:nth-child(2) a.is-active {
  animation: navLinkAnim 0.5s ease 0.1s forwards;
}
.hamburger__navItem:nth-child(3) a.is-active {
  animation: navLinkAnim 0.5s ease 0.2s forwards;
}
.hamburger__navItem:nth-child(4) a.is-active {
  animation: navLinkAnim 0.5s ease 0.3s forwards;
}
.hamburger__navItem:nth-child(5) a.is-active {
  animation: navLinkAnim 0.5s ease 0.4s forwards;
}
.hamburger__navLink {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.15em;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.hamburger__navLink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform ease 0.3s;
}
.hamburger__navLink:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

@keyframes navLinkAnim {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
/* =============================================
  bg
============================================= */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: hidden;
  z-index: -1;
}
.bg video {
  width: 1366px;
  pointer-events: none;
  cursor: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .bg video {
    width: 1000px;
    height: 562px;
    margin-left: -275px;
  }
}

/* =============================================
  mv & scroll
============================================= */
.mv {
  background: transparent;
  position: relative;
  width: 100%;
  height: 100svh;
  background: #fff;
}
.mv__inner {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.mv__movie {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .mv__movie {
    width: 266.6666666667vw;
    height: 149.8666666667vw;
    max-height: none;
    margin-left: -73.8666666667vw;
  }
}
.mv__logo {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity ease 0.3s;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    top: auto;
    right: calc(50% - 3.5rem);
    bottom: 4rem;
    width: 7rem;
  }
}
.mv__logo:hover {
  opacity: 0.7;
}
.mv__logo svg {
  fill: #707070;
}

.scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.5rem;
  z-index: 2;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  z-index: 1;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .scroll {
    display: none;
  }
}
.scroll:hover span {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}
.scroll::before, .scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: #707070;
}
.scroll::before {
  top: -4rem;
  animation: scrollAnim01 1.6s linear infinite normal;
}
.scroll::after {
  top: 3.5rem;
  animation: scrollAnim02 1.6s linear 0.2s infinite;
}
.scroll span {
  display: block;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #707070, 0 0 0 #707070;
  transition: text-shadow ease 0.4s;
}

@keyframes scrollAnim01 {
  0% {
    height: 0;
  }
  30% {
    height: 3rem;
  }
  100% {
    height: 3rem;
  }
}
@keyframes scrollAnim02 {
  0% {
    height: 0;
  }
  20% {
    height: 0;
  }
  45% {
    height: 3rem;
  }
  90% {
    height: 3rem;
  }
  91% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
/* =============================================
  about
============================================= */
.about {
  padding: 23rem 0;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 6rem 0 15rem;
  }
}
.about__text {
  font-size: 2rem;
  text-align: center;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 1.8rem;
    text-align: left;
    line-height: 2;
  }
}

/* =============================================
  vision
============================================= */
.vision {
  padding: 23rem 0;
}
@media screen and (max-width: 768px) {
  .vision {
    padding: 15rem 0 25rem;
  }
}
.vision__acce01 {
  position: absolute;
  top: 400px;
  right: 80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .vision__acce01 {
    width: 120px;
    top: auto;
    right: 35px;
    bottom: -170px;
  }
}
.vision__acce02 {
  position: absolute;
  top: 470px;
  right: -45px;
}
@media screen and (max-width: 768px) {
  .vision__acce02 {
    width: 337px;
    top: auto;
    bottom: -455px;
    right: -140px;
  }
}

/* =============================================
  mission
============================================= */
.mission {
  padding: 23rem 0 33rem;
}
@media screen and (max-width: 768px) {
  .mission {
    padding: 25rem 0;
  }
}
.mission__acce01 {
  position: absolute;
  bottom: -450px;
  left: -80px;
}
@media screen and (max-width: 768px) {
  .mission__acce01 {
    width: 190px;
    bottom: -330px;
    left: -30px;
  }
}

/* =============================================
  value
============================================= */
.value {
  padding: 24rem 0 22rem;
}
@media screen and (max-width: 768px) {
  .value {
    padding: 25rem 0 15rem;
  }
}

/* =============================================
  philosophy
============================================= */
.philosophy {
  position: relative;
  padding: 23rem 0;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .philosophy {
    padding: 58rem 0 15rem;
  }
}

/* =============================================
  footer
============================================= */
.footer {
  background: #939392;
  padding: 5rem 0;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 3.5rem 0 3rem;
  }
}
.footer__inner {
  max-width: calc(825px + 8rem);
}
.footer__text {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .footer__text {
    font-size: 1.8rem;
  }
}
.footer__links {
  margin: 5.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__links {
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
    margin: 3.5rem 0 5.5rem;
  }
}
.footer__links a {
  background: #fff;
  display: block;
  width: 21rem;
  height: 12rem;
  line-height: 12rem;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  border-radius: 5px;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__links a {
    width: 16rem;
    height: 8rem;
    line-height: 8rem;
  }
}
.footer__links a:hover {
  opacity: 0.7;
}
.footer__copy {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 1rem;
  }
}