@charset "UTF-8";
@font-face {
  font-family: "DINPro-Light";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/DINPro-Light.woff2") format("woff2"), url("../fonts/DINPro-Light.woff") format("woff");
}
@font-face {
  font-family: "DINPro-Regular";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/DINPro-Regular.woff2") format("woff2"), url("../fonts/DINPro-Regular.woff") format("woff");
}
@font-face {
  font-family: "DINPro-Medium";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/DINPro-Medium.woff2") format("woff2"), url("../fonts/DINPro-Medium.woff") format("woff");
}
@font-face {
  font-family: "DINPro-Bold";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/DINPro-Bold.woff2") format("woff2"), url("../fonts/DINPro-Bold.woff") format("woff");
}
html {
  font-size: 100%;
}
@media (max-width: 1074px) {
  html {
    font-size: 1.4897579143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100svh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1074px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 20px;
  }
}

.header__logo {
  width: 80px;
  aspect-ratio: 104/67;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 64px;
  }
}

.header__logo-link {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (hover: hover) {
  .header__logo-link:hover {
    opacity: 0.7;
  }
}
.hero {
  width: 100%;
  height: 100svh;
  z-index: 0;
  position: relative;
  min-height: 640px;
}
@media screen and (max-width: 767px) {
  .hero {
    min-height: 0;
    min-height: initial;
  }
}

.hero__contents {
  color: #fff;
  mix-blend-mode: difference;
  position: absolute;
  top: 48%;
  left: 50%;
  width: 100%;
  translate: -50% -50%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .hero__contents {
    top: 50%;
    translate: -50% -28px;
  }
}

.hero__title {
  font-size: 80px;
  font-weight: 700;
  font-family: "DINPro-Bold", sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: min(44px, 11.7vw);
  }
}

.hero__lead {
  font-size: 16px;
  font-family: "DINPro-Regular", sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.hero__links {
  position: absolute;
  top: 70%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3svh;
}
@media screen and (max-width: 767px) {
  .hero__links {
    top: 78%;
  }
}

.hero__link {
  font-size: 14px;
  line-height: 1;
  font-family: "DINPro-Regular", sans-serif;
  text-transform: uppercase;
  text-decoration: underline;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .hero__link {
    font-size: 13px;
  }
}

@media (hover: hover) {
  .hero__link:hover {
    color: #EAEE6A;
    opacity: 1;
    font-weight: 500;
    font-family: "DINPro-Medium", sans-serif;
  }
}
.hero__credit {
  font-size: 11px;
  font-family: "DINPro-Regular", sans-serif;
  line-height: 1;
  color: #fff;
  position: absolute;
  bottom: 16px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .hero__credit {
    font-size: 10px;
    bottom: 12px;
  }
}

.hero__bg-video,
.hero__bg-images {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .hero__bg-video,
  .hero__bg-images {
    width: 100%;
    height: 50%;
  }
}

.hero__bg-video {
  left: 0;
}

.hero__bg-video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__bg-images {
  right: 0;
}
@media screen and (max-width: 767px) {
  .hero__bg-images {
    top: 50%;
  }
}

.images__item {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.images__item picture,
.images__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.images__item:nth-child(1) {
  -webkit-animation: changeImage 9.6s infinite;
          animation: changeImage 9.6s infinite;
}

.images__item:nth-child(2) {
  -webkit-animation: changeImage 9.6s infinite;
          animation: changeImage 9.6s infinite;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.images__item:nth-child(3) {
  -webkit-animation: changeImage 9.6s infinite;
          animation: changeImage 9.6s infinite;
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.images__item:nth-child(4) {
  -webkit-animation: changeImage 9.6s infinite;
          animation: changeImage 9.6s infinite;
  -webkit-animation-delay: 7.2s;
          animation-delay: 7.2s;
}

@-webkit-keyframes changeImage {
  0% {
    z-index: 2;
  }
  25% {
    z-index: 2;
  }
  26% {
    z-index: 0;
  }
  100% {
    z-index: 0;
  }
}

@keyframes changeImage {
  0% {
    z-index: 2;
  }
  25% {
    z-index: 2;
  }
  26% {
    z-index: 0;
  }
  100% {
    z-index: 0;
  }
}
.lower__scroll-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.lower__scroll-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}

.lower__scroll-node {
  width: 79.8148148148vh;
  aspect-ratio: 431/540;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.lower__scroll-node picture,
.lower__scroll-node img,
.lower__scroll-node video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scale: 1.01;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: scale;
  transition-property: scale;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.lower__scroll-node button {
  position: relative;
}

@media screen and (max-width: 767px) {
  .lower__scroll-node button::after {
    content: "Detail";
    position: absolute;
    top: 50%;
    left: 12px;
    translate: 0 -50%;
    font-size: 13px;
    font-family: "DINPro-Light", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    text-decoration: underline;
  }
}

@media (hover: hover) {
  .lower__scroll-node button:hover {
    opacity: 1;
  }
  .lower__scroll-node button:hover img {
    scale: 1.05;
  }
  .lower__scroll-node button:hover::after {
    color: #EAEE6A;
    font-weight: 500;
    font-family: "DINPro-Medium", sans-serif;
  }
}
.lower__float-nav {
  position: fixed;
  top: 50%;
  left: 32px;
  translate: 0 -50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .lower__float-nav {
    top: 80px;
    left: 12px;
    translate: initial;
  }
}

.lower__nav-link {
  display: inline-block;
  font-size: 14px;
  font-family: "DINPro-Light", sans-serif;
  font-weight: 300;
  padding: 3px 0;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .lower__nav-link {
    padding: 2px 0;
    font-size: 13px;
  }
}

a.lower__nav-link {
  text-decoration: underline;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

@media (hover: hover) {
  a.lower__nav-link:hover {
    color: #EAEE6A;
    font-family: "DINPro-Medium", sans-serif;
    font-weight: 500;
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 20;
}

.modal.is-open {
  display: block;
}

.modal[aria-hidden=false] {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden=true] {
  -webkit-animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal__overlay {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  cursor: pointer;
}

.modal__container {
  height: 100%;
  position: relative;
  cursor: default;
  overflow-y: auto;
}

.modal__inner {
  padding: 40px;
  max-width: 500px;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .modal__inner {
    padding: 24px;
    height: 100%;
    max-width: 375px;
    display: block;
    padding-top: 16vh;
  }
}

@media screen and (max-width: 767px) {
  .modal--lifa .modal__inner {
    display: block;
    padding-top: 24vh;
  }
}

.modal__close {
  position: absolute;
  top: 32px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: none;
}
@media screen and (max-width: 767px) {
  .modal__close {
    display: block;
  }
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 1px;
  background: #fff;
}

.modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-modal-contents__ja {
  font-size: 13px;
  line-height: 2;
  font-family: "Akshar", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-modal-contents__ja {
    padding-right: 12px;
  }
}

.c-modal-contents__ja .c-modal-contents__text {
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .c-modal-contents__slider {
    margin-right: 16px;
  }
}

.c-modal-contents__links {
  margin-top: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-modal-contents__links {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .modal--lifa .c-modal-contents__links {
    margin-top: 10vh;
  }
}

@media screen and (max-width: 767px) {
  .modal--products .c-modal-contents__links {
    margin-top: 12vh;
  }
}

.c-modal-contents__links a {
  font-size: 14px;
  font-family: "DINPro-Regular", sans-serif;
  line-height: 1.5;
  text-decoration: underline;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-modal-contents__links a {
    font-size: 13px;
  }
}

@media (hover: hover) {
  .c-modal-contents__links a:hover {
    font-weight: 500;
    font-family: "DINPro-Medium", sans-serif;
    color: #EAEE6A;
  }
}
.c-modal-contents--lifa .c-modal-contents__en {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--lifa .c-modal-contents__en {
    grid-template-columns: 30px 1fr;
    padding-right: 4px;
  }
}
.c-modal-contents--lifa .c-modal-contents__en .c-modal-contents__logo {
  aspect-ratio: 25/72;
}
.c-modal-contents--lifa .c-modal-contents__en .c-modal-contents__text {
  margin-top: -4px;
  font-size: 16px;
  font-family: "DINPro-Regular", sans-serif;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--lifa .c-modal-contents__en .c-modal-contents__text {
    font-size: 15px;
  }
}
.c-modal-contents--lifa .c-modal-contents__ja {
  margin-top: 10vh;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--lifa .c-modal-contents__ja {
    margin-top: 0;
  }
}

.c-modal-contents--products .c-modal-contents__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .c-modal-contents__titles {
    margin-bottom: 8vh;
  }
}
.c-modal-contents--products .c-modal-contents__title {
  font-size: 36px;
  line-height: 1.25;
  font-family: "DINPro-Medium", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .c-modal-contents__title {
    font-size: 32px;
  }
}
.c-modal-contents--products .c-modal-contents__serial {
  font-size: 20px;
  line-height: 1.25;
  font-family: "DINPro-Medium", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .c-modal-contents__serial {
    font-size: 18px;
  }
}
.c-modal-contents--products .c-modal-contents__info {
  margin-top: 5vh;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .c-modal-contents__info {
    margin-top: 0;
  }
}
.c-modal-contents--products .info {
  font-size: 17px;
  line-height: 1.25;
  font-family: "DINPro-Light", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .info {
    font-size: 14px;
  }
}
.c-modal-contents--products .info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .info__list {
    gap: 12px;
  }
}
.c-modal-contents--products .info__node {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .info__node {
    grid-template-columns: 80px 1fr;
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .info__node--materials,
  .c-modal-contents--products .info__node--function {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .info__node--function {
    margin-top: 4px;
  }
}
.c-modal-contents--products .info__title {
  font-weight: 300;
  font-family: "DINPro-Light", sans-serif;
}
.c-modal-contents--products .info__node--materials .info__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .info__node--materials .info__contents {
    padding-left: 5px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    max-width: 320px;
  }
}
.c-modal-contents--products .info__node--function .info__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .info__node--function .info__contents {
    padding-left: 5px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    max-width: 320px;
  }
}
.c-modal-contents--products .c-modal-contents__ja {
  margin-top: 8vh;
}
@media screen and (max-width: 767px) {
  .c-modal-contents--products .c-modal-contents__ja {
    margin-top: 0;
  }
}

.splide__arrows--ttb {
  position: absolute;
  top: 0;
  right: -24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.splide__arrow,
.splide__arrow svg {
  width: 16px;
  height: 16px;
}

.splide__arrow path {
  stroke: #fff;
  stroke-width: 2.5;
}

.splide__arrow--prev {
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
