/* CSS Document */
.spmask {
  display: inline-block;
}

.spmask-inline {
  display: inline;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .spmask-inline {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
:root {
  --blue: #2693e1;
  --gray: #e1e1e1;
}

/*------------------------------*/
.mv {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.mv .image-wrap {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .mv .image-wrap {
    height: 100lvh;
    width: 100%;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
  }
}
.mv .image-wrap .image {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv .image-wrap .image:nth-child(3) img, .mv .image-wrap .image:nth-child(4) img {
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 767px) {
  .mv .image-wrap .image {
    position: relative;
  }
  .mv .image-wrap .image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.mv .title {
  position: absolute;
  z-index: 1;
  right: 4rem;
  bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .mv .title {
    inset: 0;
    bottom: 10%;
    display: grid;
    place-content: center;
  }
}
.mv .title p.en {
  font-size: 4rem;
  color: var(--blue);
  font-family: "Jost";
  text-align: right;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mv .title p.en {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
}
.mv .title .wrap {
  color: #fff;
  background-color: rgba(12, 44, 66, 0.7019607843);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding: 4.5rem 3rem;
  row-gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .mv .title .wrap {
    padding: 2.5rem 2rem;
    row-gap: 1.6rem;
  }
}
.mv .title .wrap h2 {
  font-size: 4.8rem;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv .title .wrap h2 {
    font-size: 2.6rem;
  }
}
.mv .title .wrap p.sub {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .mv .title .wrap p.sub {
    font-size: 1.6rem;
  }
}

/*------------------------------*/
.overview {
  position: relative;
  z-index: 1;
  padding-block: 6rem 0;
  background: url(../../images/project/project_overview_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .overview {
    padding-block: 6rem 20rem;
    background-blend-mode: multiply;
    background-color: rgba(35, 35, 35, 0.8);
  }
}
.overview .title {
  padding-left: 2rem;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .overview .title {
    margin-bottom: 6rem;
  }
}
.overview .title p.en {
  font-family: "Jost";
  font-size: 12.6rem;
  font-weight: 300;
  display: inline-block;
  background-image: linear-gradient(to top, transparent 10%, rgba(38, 147, 225, 0.4) 10% 40%, transparent 40% 100%);
}
@media screen and (max-width: 767px) {
  .overview .title p.en {
    font-size: 7.2rem;
  }
}
.overview .title h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .overview .title h3 {
    font-size: 1.8rem;
  }
}
.overview .inner {
  position: relative;
  z-index: 1;
  padding-bottom: 24rem;
}
@media screen and (max-width: 767px) {
  .overview .inner {
    padding-bottom: 6rem;
  }
}
.overview .inner .js-inner p.readText {
  width: 50%;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.5;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 767px) {
  .overview .inner .js-inner p.readText {
    width: 100%;
    font-size: 1.6rem;
    text-align: left;
    line-height: 2.2;
  }
}
.overview .inner .js-inner p.readText + p.readText {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .overview .inner .js-inner p.readText + p.readText {
    margin-top: 4rem;
  }
}
.overview .inner .js-inner .blockBtn {
  -moz-column-gap: 0;
       column-gap: 0;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 10rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 767px) {
  .overview .inner .js-inner .blockBtn {
    margin-top: 4rem;
  }
}
.overview .bg-wrap {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .overview .bg-wrap:has(.history) {
    overflow: hidden;
  }
  .overview .bg-wrap:has(.history) .image-wrap {
    position: static;
  }
  .overview .bg-wrap:last-child {
    position: static;
    height: auto;
  }
  .overview .bg-wrap:last-child .image-wrap {
    position: static;
    height: auto;
    width: 100%;
  }
}
.overview .bg-wrap .image-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100lvh;
  display: grid;
  place-content: center;
}
.overview .bg-wrap .image-wrap .image {
  padding-inline: 6rem;
  opacity: 0;
  scale: 0.9;
}
.overview .bg-wrap .image-wrap .image.view {
  -webkit-animation: popUp 0.8s ease-in-out both;
          animation: popUp 0.8s ease-in-out both;
}
.overview .bg-wrap .image-wrap .image img {
  box-shadow: 0 0 20px -5px #fff;
}
@media screen and (max-width: 767px) {
  .overview .bg-wrap .image-wrap .image {
    padding-inline: 2rem;
  }
}
.overview .bg-wrap .image-wrap .history {
  --h: 0;
  position: absolute;
  z-index: -1;
  height: 250%;
  top: 6rem;
  right: -5%;
  perspective: 160vw;
  translate: 0 var(--h);
}
@media screen and (max-width: 767px) {
  .overview .bg-wrap .image-wrap .history {
    height: 100%;
    perspective: 100vw;
  }
}
.overview .bg-wrap .image-wrap .history img {
  transform: rotateY(-25deg);
  opacity: 0.3;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .overview .bg-wrap .image-wrap .history img {
    transform: rotateY(-10deg);
    opacity: 0.15;
  }
}
.overview .bg-wrap .num-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  max-height: 100%;
}
.overview .bg-wrap .num-wrap p.num {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 46rem;
  margin-bottom: -0.19lh;
  letter-spacing: -0.075em;
}
@media screen and (max-width: 767px) {
  .overview .bg-wrap .num-wrap p.num {
    font-size: 46vw;
  }
}
.overview .bg-wrap .num-wrap p.num .countUp {
  font-family: "Jost";
  color: #fff;
  position: relative;
  z-index: 0;
  display: inline-block;
  opacity: 0.2;
}
.overview .bg-wrap .num-wrap p.num .countUp.shine {
  opacity: 0.3;
}

@-webkit-keyframes popUp {
  0% {
    scale: 0.9;
    opacity: 0;
  }
  75% {
    scale: 1.01;
    opacity: 1;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}

@keyframes popUp {
  0% {
    scale: 0.9;
    opacity: 0;
  }
  75% {
    scale: 1.01;
    opacity: 1;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
/*------------------------------*/
.introduction {
  position: relative;
  z-index: 2;
  background-color: var(--gray);
  padding-block: 10rem 12rem;
}
@media screen and (max-width: 767px) {
  .introduction {
    padding-block: 6rem;
  }
}
.introduction .title {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .introduction .title {
    margin-bottom: 5rem;
  }
}
.introduction .title p.en {
  font-size: 8rem;
  color: var(--blue);
  margin-bottom: 4rem;
  font-family: "Jost";
}
@media screen and (max-width: 767px) {
  .introduction .title p.en {
    font-size: 4.2rem;
    margin-bottom: 2rem;
  }
}
.introduction .profile .profile-hd {
  text-align: center;
  margin-bottom: 4rem;
}
.introduction .profile .profile-hd p.en {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 5.4rem;
  font-weight: 300;
  font-family: "Jost";
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .introduction .profile .profile-hd p.en {
    font-size: 2.8rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.introduction .profile .profile-hd p.en::before, .introduction .profile .profile-hd p.en::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.2rem;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .introduction .profile .profile-hd p.en::before, .introduction .profile .profile-hd p.en::after {
    height: 0.1rem;
    width: 1rem;
  }
}
.introduction .profile .profile-hd p.ja {
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .introduction .profile .profile-hd p.ja {
    font-size: 1.4rem;
  }
}
.introduction .profile .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 7rem 8rem;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container {
    grid-template-columns: 1fr;
    gap: 6rem 0;
  }
}
.introduction .profile .container li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container li {
    gap: 2rem 0;
  }
}
.introduction .profile .container li .icon-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container li .icon-wrap {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    padding-bottom: 1.5rem;
  }
}
.introduction .profile .container li .icon-wrap .icon {
  width: 16rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container li .icon-wrap .icon {
    width: 9.5rem;
  }
}
.introduction .profile .container li .icon-wrap .name-wrap p.job {
  padding: 0.7rem 0.9rem;
  background-color: #232323;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container li .icon-wrap .name-wrap p.job {
    padding: 0.5rem;
    font-size: 1.2rem;
  }
}
.introduction .profile .container li .icon-wrap .name-wrap .name {
  margin-block: 1.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container li .icon-wrap .name-wrap .name {
    margin-block: 1.2rem 0.6rem;
  }
}
.introduction .profile .container li .icon-wrap .name-wrap .name span.ja {
  font-weight: 600;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container li .icon-wrap .name-wrap .name span.ja {
    font-size: 2.1rem;
  }
}
.introduction .profile .container li .icon-wrap .name-wrap .name span.en {
  font-size: 2.1rem;
  font-weight: 300;
  font-family: "Jost";
  display: inline-block;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container li .icon-wrap .name-wrap .name span.en {
    font-size: 1.4rem;
  }
}
.introduction .profile .container li .icon-wrap .name-wrap .name span.en:last-child {
  margin-left: 0.3em;
}
.introduction .profile .container li .icon-wrap .name-wrap .name span.en::first-letter {
  font-weight: 400;
  color: var(--blue);
}
.introduction .profile .container li .icon-wrap .name-wrap p.group {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .introduction .profile .container li .icon-wrap .name-wrap p.group {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
.introduction .profile .container li > p.readText {
  font-size: 1.4rem;
  margin-block: var(--leading-trim);
}

/*------------------------------*/
.story {
  position: relative;
  z-index: 2;
}
.story .story01, .story .story02, .story .story03 {
  position: relative;
  padding-block: 8rem 10rem;
}
@media screen and (max-width: 767px) {
  .story .story01, .story .story02, .story .story03 {
    padding-block: 4rem 6rem;
  }
  .story .story01 p.readText, .story .story02 p.readText, .story .story03 p.readText {
    text-align: left;
  }
}
.story .story01 p.num, .story .story02 p.num, .story .story03 p.num {
  font-size: 42rem;
  font-weight: 300;
  font-family: "Jost";
  letter-spacing: -0.05em;
  position: absolute;
  z-index: 0;
  top: 0;
  margin-top: -0.16lh;
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  .story .story01 p.num, .story .story02 p.num, .story .story03 p.num {
    font-size: 20rem;
  }
}
.story .story01 .inner, .story .story02 .inner, .story .story03 .inner {
  position: relative;
  z-index: 1;
}
.story .story01 .inner p.readText, .story .story02 .inner p.readText, .story .story03 .inner p.readText {
  margin-block: var(--leading-trim);
}
.story .story01 .title, .story .story02 .title, .story .story03 .title {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .story .story01 .title, .story .story02 .title, .story .story03 .title {
    margin-bottom: 5rem;
  }
}
.story .story01 .title p.en, .story .story02 .title p.en, .story .story03 .title p.en {
  font-size: 14rem;
  font-family: "Jost";
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .story .story01 .title p.en, .story .story02 .title p.en, .story .story03 .title p.en {
    font-size: 6rem;
  }
}
.story .story01 .title p.en span, .story .story02 .title p.en span, .story .story03 .title p.en span {
  display: inline-block;
}
.story .story01 .title p.en span::first-letter, .story .story02 .title p.en span::first-letter, .story .story03 .title p.en span::first-letter {
  color: var(--blue);
}
.story .story01 .title h3, .story .story02 .title h3, .story .story03 .title h3 {
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .story .story01 .title h3, .story .story02 .title h3, .story .story03 .title h3 {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
}
.story .story01 .wrap, .story .story02 .wrap, .story .story03 .wrap {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  margin-block: 6rem;
}
@media screen and (max-width: 767px) {
  .story .story01 .wrap, .story .story02 .wrap, .story .story03 .wrap {
    display: block;
    margin-block: 4.5rem;
  }
}
.story .story01 .wrap .image, .story .story02 .wrap .image, .story .story03 .wrap .image {
  flex-shrink: 0;
  width: calc(50% - 6rem);
}
@media screen and (max-width: 767px) {
  .story .story01 .wrap .image, .story .story02 .wrap .image, .story .story03 .wrap .image {
    width: 100%;
    margin-block: 4rem;
  }
}
.story .story01 p.num {
  color: var(--blue);
}
.story .story02 {
  background-color: var(--gray);
}
.story .story02 p.num {
  color: #fff;
  opacity: 0.3;
  right: 0;
}
.story .story02 .title {
  text-align: right;
}
.story .story02 .image-wrap {
  display: flex;
  margin-block: 8rem;
}
.story .story02 .image-wrap .image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .story .story02 .image-wrap {
    margin-block: 4rem;
  }
}
.story .story02 .figure-wrap {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .story .story02 .figure-wrap {
    margin-top: 4rem;
  }
}
.story .story02 .figure-wrap .figure-title {
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .story .story02 .figure-wrap .figure-title {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
}
.story .story02 .figure-wrap .figure-title::before, .story .story02 .figure-wrap .figure-title::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.2rem;
  background-color: currentColor;
}
.story .story03 p.num {
  color: var(--blue);
}
.story .story03 .image-wide {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .story .story03 {
    padding-bottom: 0;
  }
}

/*------------------------------*/
/*------------------------------*/
/*# sourceMappingURL=style.css.map */