@charset "UTF-8";
/* ====================================================
common layout style
==================================================== */
/* ====================================================
base
==================================================== */
/*--------------------------------------------
inner
--------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .p-inner--pcl {
    width: calc(100vw - (50px * 2));
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (max-width: 1200px) {
  .p-inner--pcl {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .p-side--sp {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
/*--------------------------------------------
display
--------------------------------------------*/
.device_pc {
  display: inline-block !important;
}
@media print, screen and (max-width: 768px) {
  .device_pc {
    display: none !important;
  }
}

.device_sp {
  display: none !important;
}
@media print, screen and (max-width: 768px) {
  .device_sp {
    display: inline-block !important;
  }
}

.device_pc-bl {
  display: block !important;
}
@media print, screen and (max-width: 768px) {
  .device_pc-bl {
    display: none !important;
  }
}

.device_sp-bl {
  display: none !important;
}
@media print, screen and (max-width: 768px) {
  .device_sp-bl {
    display: block !important;
  }
}

/* ====================================================
base style
==================================================== */
.home a:hover {
  text-decoration: none;
}

.home header {
  position: absolute;
  width: 100%;
}

.home footer {
  padding-top: 0;
  z-index: 6;
}

html {
  font-size: 62.5%;
  font-size: 0.588vw;
}
@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.7vw;
  }
}
@media print, screen and (max-width: 768px) {
  html {
    font-size: 2.325vw;
  }
}

.home header .nav_main {
  margin-top: 2rem;
}
.home header .nav_main > ul > li > a {
  color: #fff;
}
.home header .nav_main > ul > li:not(:first-child) > a:before {
  background-color: #fff;
}
.home p {
  line-height: 2;
}

body {
  font-family: "Noto Sans JP";
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  overflow: auto;
  font-weight: 500;
  color: #000000;
  vertical-align: middle;
  font-size: 19px;
}
@media print, screen and (max-width: 768px) {
  body {
    font-size: 1.8rem;
    font-weight: 400;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: 0;
}

figure {
  width: 100%;
}

/* ====================================================
anime
==================================================== */
/*--------------------------------------------
sticky
--------------------------------------------*/
.sticky-wrapper {
  position: relative;
  height: 300vh;
  /* step数 × 100vh が目安 */
  z-index: 4;
  top: 0;
  opacity: 1;
}
@media print, screen and (max-width: 768px) {
  .sticky-wrapper {
    height: auto;
  }
}

.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
}
@media print, screen and (max-width: 768px) {
  .sticky {
    position: relative;
    height: auto;
  }
}

.step {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media print, screen and (max-width: 768px) {
  .step {
    position: relative;
  }
}

.step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}

.step.is-next {
  opacity: 1;
  transform: translateY(60px);
  z-index: 1;
}

/* 中身だけ遅れてふわっと */
.js-step-content {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.step.is-active .js-step-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.home-race {
  z-index: 2;
}

.home-info {
  z-index: 3;
}

.home-partner {
  z-index: 4;
}

.home-recruit {
  z-index: 5;
}

/*--------------------------------------------
fade
--------------------------------------------*/
.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease, transform 1.8s ease;
}

.js-fade.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------
タイトルアニメーション　背景から表示
--------------------------------------------*/
.title {
  display: inline-block;
  overflow: hidden;
}

.title .line {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 0.3em;
}

.title .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 1.5s ease;
  z-index: 1;
}

.title .line span {
  position: relative;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  z-index: 2;
}

.title.is-inview .line::after {
  transform: scaleX(0);
}

.title.is-inview .line span {
  transform: translateY(0);
  opacity: 1;
}

.title.is-inview .line:nth-child(1) span {
  transition-delay: 0.3s;
}

.title.is-inview .line:nth-child(2) span {
  transition-delay: 0.6s;
}

/*--------------------------------------------
common
--------------------------------------------*/
.linelink {
  display: block;
  position: relative;
  border-bottom: #c4c4c4 1px solid;
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
  font-size: 20px;
  padding: min(4rem, 40px) min(2rem, 20px) min(4rem, 40px) 0;
}
@media print, screen and (max-width: 768px) {
  .linelink {
    padding: 2rem 2rem 2rem 0;
    font-size: 1.7rem;
  }
}
.linelink::before {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../images/home/icon-arrow-gr.svg);
  width: 14px;
  height: 11px;
  background-size: cover;
  transition: all 0.3s;
  transform: translate(-5px, 0%);
}
@media print, screen and (max-width: 768px) {
  .linelink::before {
    width: 1.4rem;
    height: 1.1rem;
    transform: translate(0, 0%);
  }
}
.linelink:hover {
  opacity: 1;
  background-position: bottom left;
  background-size: 100% 1px;
}
.linelink:hover::before {
  transform: translate(0, 0%);
}

.en {
  font-family: "Figtree";
}

.wide-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.wide-slide .slick-list {
  height: 100%;
}
.wide-slide .slick-list .slick-track {
  height: 100%;
}
.wide-slide .slick-slide {
  width: 100%;
  height: 100%;
}
.wide-slide .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (max-width: 768px) {
  .wide-slide .slick-slide img.mv_img02 {
    object-fit: cover;
    object-position: 65% 50%;
  }
}

/*--------------------------------------------
英数字タイトル文字
--------------------------------------------*/
.js-flowin .en span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.en {
  text-transform: uppercase;
}

.ja {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease-out, transform 0.8s ease-out;
}

/* ====================================================
home
==================================================== */
/*--------------------------------------------
mv
--------------------------------------------*/
.home-title span {
  display: block;
  line-height: 1.2;
}
.home-title span.ja {
  font-size: 18px;
  margin-bottom: min(3rem, 30px);
}
@media print, screen and (max-width: 768px) {
  .home-title span.ja {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.home-title span.en {
  font-size: min(7rem, 70px);
  font-weight: 400;
}
@media print, screen and (max-width: 768px) {
  .home-title span.en {
    font-size: 5rem;
  }
}
.home-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  min-height: min(83rem, 830px);
}
@media print, screen and (max-width: 768px) {
  .home-mv {
    min-height: 65rem;
    height: 100%;
  }
}
.home-mv__title {
  padding: 0 min(5rem, 50px);
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  top: 32vh;
  color: #fff;
  line-height: 1.3;
  height: fit-content;
  z-index: 2;
}
@media print, screen and (max-width: 768px) {
  .home-mv__title {
    padding: 0 2rem;
    top: auto;
    bottom: 5rem;
  }
}
.home-mv__title p {
  line-height: 1.2;
}
.home-mv__title span {
  display: block;
}
.home-mv__title span.en {
  font-weight: 400;
  font-size: 74px;
}
@media print, screen and (max-width: 1200px) {
  .home-mv__title span.en {
    font-size: 6rem;
  }
}
@media print, screen and (max-width: 768px) {
  .home-mv__title span.en {
    font-size: 5.2rem;
  }
}
.home-mv__title span.ja {
  margin-top: min(6rem, 60px);
  transition: opacity 2s ease-out, transform 0.9s ease-out;
}
@media print, screen and (max-width: 768px) {
  .home-mv__title span.ja {
    font-size: 2.2rem;
    margin-top: 2rem;
  }
}
.home-phil {
  position: relative;
  padding: min(28rem, 280px) 0 min(28rem, 280px);
}
@media print, screen and (max-width: 768px) {
  .home-phil {
    padding: min(9.5rem, 95px) 0;
  }
}
.home-phil::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  top: 0;
  bottom: auto;
  margin: auto;
  background-image: url(../images/home/mv_mark.png);
  width: min(66.5rem, 665px);
  height: min(67.1rem, 671px);
  background-size: cover;
  z-index: 2;
  top: max(-35rem, -350px);
}
@media print, screen and (max-width: 768px) {
  .home-phil::after {
    display: none;
  }
}
.home-phil__body {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: min(2rem, 20px);
  margin-top: min(23rem, 230px);
}
@media print, screen and (max-width: 768px) {
  .home-phil__body {
    flex-direction: column-reverse;
    margin-top: 3rem;
  }
}
.home-phil__body > figure {
  flex: 1;
}
.home-phil__body > figcaption {
  flex: 1;
}
.home-phil__body > figcaption > .title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  padding-bottom: min(6rem, 60px);
  position: relative;
  margin-bottom: min(7rem, 70px);
}
@media print, screen and (max-width: 768px) {
  .home-phil__body > figcaption > .title {
    font-size: 3rem;
    line-height: 1.5;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
  }
}
.home-phil__body > figcaption > .title::after {
  position: absolute;
  content: "";
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  margin: auto;
  width: 72px;
  height: 4px;
  background-color: #e4e4e4;
}
.home-phil__body > figcaption > .txt01 {
  font-size: 24px;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .home-phil__body > figcaption > .txt01 {
    font-size: 2.2rem;
    font-weight: 600;
  }
}
.home-phil__body > figcaption > .txt02 {
  font-size: 18px;
  margin-top: min(2rem, 20px);
  line-height: 2;
}
@media print, screen and (max-width: 768px) {
  .home-phil__body > figcaption > .txt02 {
    font-size: 1.6rem;
  }
}
.home-phil__body > figcaption > .list {
  margin-top: min(8rem, 80px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 min(4rem, 40px);
}
@media print, screen and (max-width: 768px) {
  .home-phil__body > figcaption > .list {
    gap: 0 2rem;
    margin-top: 3rem;
  }
}
.home-phil__body > figcaption > .list > li {
  width: calc(50% - min(2rem, 20px));
}
@media print, screen and (max-width: 768px) {
  .home-phil__body > figcaption > .list > li {
    width: calc(50% - 2rem);
  }
}
.home-phil__body > figcaption > .list > li .linelink > span {
  display: inline-block;
  font-weight: 400;
  color: #00408e;
  margin-right: min(1.8rem, 18px);
}
@media print, screen and (max-width: 768px) {
  .home-phil__body > figcaption > .list > li .linelink > span {
    margin-right: 1rem;
  }
}
.home-prod {
  background-color: #000000;
  color: #fff;
  padding: min(9.5rem, 95px) 0 min(15rem, 150px);
}
@media print, screen and (max-width: 768px) {
  .home-prod {
    padding: min(9.5rem, 95px) 0;
  }
}
.home-prod__head > p {
  margin-top: min(5rem, 50px);
}
@media print, screen and (max-width: 768px) {
  .home-prod__head > p {
    margin-top: min(3rem, 30px);
  }
}
.home-prod__body {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.home-prod__body > .list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  padding: min(4rem, 40px) min(5rem, 50px);
  border-top: #fff 1px dashed;
  border-bottom: #fff 1px dashed;
  margin-top: max(-5rem, -50px);
}
@media print, screen and (max-width: 1200px) {
  .home-prod__body > .list {
    padding: min(4rem, 40px) 0;
  }
}
@media print, screen and (max-width: 768px) {
  .home-prod__body > .list {
    margin-top: 0;
    padding: 0 2rem;
  }
}
.home-prod__body > .list > li {
  width: 33.3%;
  gap: min(1.5rem, 15px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.5;
  border-right: #fff 1px dashed;
  padding: 0 min(2rem, 20px);
}
@media print, screen and (max-width: 768px) {
  .home-prod__body > .list > li {
    padding: 2rem 0;
    width: 100%;
    border-bottom: #fff 1px dashed;
    border-right: none;
  }
}
.home-prod__body > .list > li:last-child {
  border: none;
}
.home-prod__body > .list > li > figure {
  flex: 1;
}
.home-prod__body > .list > li > figcaption {
  flex: 2;
  font-size: 20px;
}
@media print, screen and (max-width: 1200px) {
  .home-prod__body > .list > li > figcaption {
    font-size: 16px;
  }
}
@media print, screen and (max-width: 768px) {
  .home-prod__body > .list > li > figcaption {
    flex: 3;
    font-size: 1.8rem;
  }
}
.home-prod__body > .list > li > figcaption > .en {
  letter-spacing: 10%;
  font-size: 0.8em;
  color: #3a80d4;
  margin-bottom: min(0.7rem, 7px);
}
@media print, screen and (max-width: 768px) {
  .home-prod__body > .list > li > figcaption > .en {
    margin-bottom: 0.5rem;
  }
}
.home-prod__body > .linelink {
  width: 380px;
  margin: min(9rem, 90px) auto;
  font-size: 24px;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .home-prod__body > .linelink {
    font-size: 2rem;
    width: 80%;
    margin: 3rem auto;
  }
}
.home-prod__body > .linelink > .en {
  display: block;
  font-size: 0.8em;
  color: #c4c4c4;
}
.home-race {
  background-color: #000000;
  width: 100%;
  padding-top: min(13rem, 130px);
  top: 0;
  padding-bottom: min(14rem, 140px);
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .home-race {
    padding: min(9.5rem, 95px) 0;
    height: auto;
    min-height: auto;
    position: relative;
  }
}
.home-race__cont {
  color: #fff;
  position: relative;
  z-index: 2;
}
.home-race__body {
  width: 45%;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .home-race__body {
    width: 90%;
    margin-top: 5rem;
  }
}
.home-race__body > .title {
  font-size: min(4.8rem, 48px);
  font-weight: 700;
  margin-bottom: min(4rem, 40px);
}
@media print, screen and (max-width: 768px) {
  .home-race__body > .title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}
.home-race__body .linelink {
  margin-top: min(1rem, 10px);
}
.home-info {
  background-color: #f5f5f5;
  padding: min(12rem, 120px) 0 min(10rem, 100px);
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .home-info {
    padding: min(9.5rem, 95px) 0;
  }
}
.home-info__head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
}
.home-info__head > .linelink {
  display: block;
  margin-left: auto;
  width: 200px;
}
@media print, screen and (max-width: 768px) {
  .home-info__head > .linelink {
    width: 20rem;
    margin-left: 0;
  }
}
.home-info__body {
  margin-top: min(6rem, 60px);
}
@media print, screen and (max-width: 768px) {
  .home-info__body {
    margin-top: 5rem;
  }
}
.home-info__list {
  background-color: #fff;
}
.home-info__list > li {
  padding: min(4rem, 40px);
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2%;
  border-bottom: 1px solid #e6e6e6;
}
@media print, screen and (max-width: 768px) {
  .home-info__list > li {
    padding: 3rem 2rem;
  }
}
.home-info__list > li .date {
  color: #3a80d4;
  font-family: "Figtree";
  font-weight: 500;
  font-size: 0.9em;
  width: 10%;
}
@media print, screen and (max-width: 768px) {
  .home-info__list > li .date {
    width: 100%;
  }
}
.home-info__list > li > a {
  display: block;
  padding: min(1rem, 10px) min(6rem, 60px) min(1rem, 10px) 0;
  position: relative;
  width: 88%;
}
@media print, screen and (max-width: 768px) {
  .home-info__list > li > a {
    padding-right: 0;
    width: 100%;
  }
}
.home-info__list > li > a:hover {
  color: #3a80d4;
  transition: all 0.3s;
}
.home-info__list > li > a::before {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../images/home/icon-arrow-gr.svg);
  width: min(1.4rem, 14px);
  height: min(1.1rem, 11px);
  background-size: cover;
  transition: all 0.3s;
  transform: translate(-5px, 0%);
}
@media print, screen and (max-width: 768px) {
  .home-info__list > li > a::before {
    display: none;
  }
}
.home-info__list > li > a:hover {
  opacity: 1;
  background-position: bottom left;
  background-size: 100% 1px;
}
.home-info__list > li > a:hover::before {
  transform: translate(0, 0%);
}
.home-partner, .home-recruit {
  background-color: #fff;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: min(6.8rem, 68px);
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .home-partner, .home-recruit {
    padding: min(9.5rem, 95px) 0 0;
    position: relative;
  }
}
.home-partner__body, .home-recruit__body {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .home-partner__body, .home-recruit__body {
    margin-top: min(4rem, 40px);
  }
}
.home-partner__body > figcaption, .home-recruit__body > figcaption {
  width: 60%;
}
@media print, screen and (max-width: 768px) {
  .home-partner__body > figcaption, .home-recruit__body > figcaption {
    width: 100%;
  }
}
.home-partner__body > figcaption .title, .home-recruit__body > figcaption .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: min(4.5rem, 45px);
}
@media print, screen and (max-width: 768px) {
  .home-partner__body > figcaption .title, .home-recruit__body > figcaption .title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}
.home-partner__body > figcaption .linelink, .home-recruit__body > figcaption .linelink {
  width: 360px;
  margin-top: min(1rem, 10px);
}
@media print, screen and (max-width: 768px) {
  .home-partner__body > figcaption .linelink, .home-recruit__body > figcaption .linelink {
    width: 34rem;
  }
}
.home-partner__body > figure, .home-recruit__body > figure {
  width: 40%;
}
@media print, screen and (max-width: 768px) {
  .home-partner__body > figure, .home-recruit__body > figure {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
    margin-top: 6rem;
    height: 20rem;
  }
}
.home-partner__body > figure img, .home-recruit__body > figure img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}
@media print, screen and (max-width: 768px) {
  .home-partner__body > figure img, .home-recruit__body > figure img {
    height: 20rem;
  }
}
.home-foot {
  position: relative;
  z-index: 6;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  background: linear-gradient(to bottom, #4980c2, #6da6ed);
  padding: min(15rem, 150px) 0 min(13rem, 130px);
}
@media print, screen and (max-width: 768px) {
  .home-foot {
    padding: 4rem 0;
  }
}
.home-foot p {
  font-size: 46px;
  line-height: 1.4;
  font-weight: 400;
}
@media print, screen and (max-width: 768px) {
  .home-foot p {
    font-size: 3rem;
  }
}
