/* ----------------------------------------------
    loading
---------------------------------------------- */
/* js */
.loading.js-fadeout {
  -webkit-animation: fadeout 0.5s both ease;
          animation: fadeout 0.5s both ease;
  pointer-events: none;
}

.loading.js-hide {
  display: none;
}

.loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: linear-gradient(5deg, rgb(7, 181, 255), rgb(0, 88, 203));
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-size: 2rem;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
}
.loading #loading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 5px;
  width: auto;
  height: 100px;
  margin: auto;
}
.loading .text-item {
  opacity: 0;
  text-transform: uppercase;
  position: relative;
  top: 50%;
}
.loading .L {
  -webkit-animation: L 2s infinite;
          animation: L 2s infinite;
}
.loading .O {
  -webkit-animation: O 2s infinite;
          animation: O 2s infinite;
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}
.loading .A {
  -webkit-animation: A 2s infinite;
          animation: A 2s infinite;
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.loading .D {
  -webkit-animation: D 2s infinite;
          animation: D 2s infinite;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.loading .I {
  -webkit-animation: I 2s infinite;
          animation: I 2s infinite;
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.loading .N {
  -webkit-animation: N 2s infinite;
          animation: N 2s infinite;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}
.loading .G {
  -webkit-animation: G 2s infinite;
          animation: G 2s infinite;
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
.loading .text-item.js-stop-animation {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes L {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes L {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes O {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes O {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes A {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes A {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes D {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes D {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes I {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes I {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes N {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes N {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@-webkit-keyframes G {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
@keyframes G {
  0% {
    top: 0px;
    opacity: 0;
  }
  50% {
    top: 50px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 0;
  }
}
/* ----------------------------------------------
    FLOW
---------------------------------------------- */
.flow::before {
  content: "";
  display: block;
  background: url(../img/common/flow-bg.svg) no-repeat center/contain;
  aspect-ratio: 322/432;
  width: 75vw;
  height: auto;
  opacity: 0.1;
  position: absolute;
  right: 0;
  bottom: -10vw;
}

.flow {
  overflow: hidden;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#eef2f4), to(#fcfdfe));
  background-image: linear-gradient(to top, #eef2f4, #fcfdfe);
  position: relative;
  padding: 220px 0 270px;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 0 120px;
  }
}
.flow .inner {
  position: relative;
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px 60px;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .flow__list {
    gap: 60px;
  }
}

.flow__item {
  background-color: #fff;
  -webkit-box-shadow: 4px 5px 16px rgba(42, 97, 124, 0.06);
          box-shadow: 4px 5px 16px rgba(42, 97, 124, 0.06);
  max-width: 350px;
  width: 100%;
  border-radius: 37px;
  position: relative;
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
    max-width: none;
    border-radius: 18px;
    padding: 30px 20px 20px;
  }
}

.flow__item::before {
  content: "";
  display: block;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-size: 8.5rem;
  font-weight: 300;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  background: linear-gradient(125deg, #00bfff, #0246b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(255, 255, 255, 0);
  line-height: 1;
  position: absolute;
  top: -0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow__item::before {
    font-size: 6rem;
    left: 20px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.flow__img {
  width: 110px;
  height: auto;
  position: relative;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .flow__img {
    width: 70px;
  }
}

@media screen and (max-width: 767px) {
  .flow__item-text-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.flow__item-title-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .flow__item-title-wrap {
    text-align: left;
    margin-bottom: 10px;
  }
}

.flow__item-subtitle {
  font-size: 1.2rem;
  font-family: "Figtree", "Noto Sans JP", sans-serif;
  color: #0246b8;
  letter-spacing: 0.02em;
}
.flow__item-title {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1.8rem;
    font-weight: 700;
  }
}

.flow__item-text .text-small {
  font-size: 0.9em;
}
/* ----------------------------------------------
    FV
---------------------------------------------- */
#top-fv {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  #top-fv {
    height: 100svh;
  }
}
#top-fv canvas {
  width: 100%;
  height: 100%;
}
#top-fv .main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(5rem, 4.86vw, 7rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 6px rgba(3, 57, 163, 0.5);
  width: 90%;
  height: 100%;
  margin: -1em auto 0;
}
@media screen and (max-width: 767px) {
  #top-fv .main-title {
    font-size: clamp(3rem, 7.3vw, 5rem);
    margin: 0 auto 0;
  }
}

#top-fv.js-wave::after {
  content: "";
  display: block;
  background: url(../img/top/fv-wave-mask.svg) no-repeat bottom/contain;
  aspect-ratio: 90/4;
  width: 300vw;
  height: auto;
  position: absolute;
  bottom: -5px;
  right: 0;
  -webkit-animation: fv-wave 8s infinite linear;
          animation: fv-wave 8s infinite linear;
}
@media screen and (max-width: 767px) {
  #top-fv.js-wave::after {
    background: url(../img/top/fv-wave-mask-sp.svg) no-repeat bottom/contain;
    aspect-ratio: 9/8;
    -webkit-animation-duration: 6.5s;
            animation-duration: 6.5s;
  }
}

@-webkit-keyframes fv-wave {
  0% {
    right: 0;
  }
  100% {
    right: -200vw;
  }
}

@keyframes fv-wave {
  0% {
    right: 0;
  }
  100% {
    right: -200vw;
  }
}
/* ----------------------------------------------
    NEWS
---------------------------------------------- */
.top-news {
  padding: 60px 0;
}
.top-news .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 80px;
}
.top-news .title-wrap {
  margin-bottom: 60px;
}
.news-box {
  max-width: 700px;
  width: 100%;
  padding-top: 130px;
}
@media screen and (max-width: 767px) {
  .news-box {
    padding-top: 20px;
  }
}

.news__list {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .news__list {
    margin-bottom: 50px;
  }
}

.news__item:nth-of-type(1) a {
  border-top: 1px solid #d2d2d2;
}
.news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid #d2d2d2;
  position: relative;
  padding: 35px 60px 35px 0;
}
@media screen and (max-width: 767px) {
  .news__item a {
    padding: 15px 50px 15px 0;
  }
}
.news__item a::after {
  content: "";
  display: block;
  background: url(../img/common/arrow.svg) no-repeat center/contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.news__item-date {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .news__item-date time {
    color: #a7afb2;
  }
}

.news__item-cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  width: 100px;
}
.news__item-cate-item {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0082ff), to(#00a8ff));
  background-image: linear-gradient(#0082ff, #00a8ff);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  padding: 2px 10px;
}
.news__item-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  white-space: nowrap;
  width: auto;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}

.news__no-news {
  margin: 2em 0;
}

/* ----------------------------------------------
    OUR VISION
---------------------------------------------- */
.vision::before {
  content: "";
  display: block;
  background: url(../img/top/our-vision-water.png) no-repeat center/contain;
  aspect-ratio: 1920/510;
  width: 120%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  mix-blend-mode: soft-light;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .vision::before {
    background: url(../img/top/our-vision-water-sp.png) no-repeat center/contain;
    aspect-ratio: 410/266;
  }
}

.vision::after {
  content: "";
  display: block;
  background: url(../img/top/our-vision-wave-mask2.svg) no-repeat center/contain;
  aspect-ratio: 900/18;
  width: 300vw;
  height: auto;
  position: absolute;
  top: -5px;
  right: 0;
  -webkit-animation: our-vision-wave 8s infinite linear;
          animation: our-vision-wave 8s infinite linear;
}
@media screen and (max-width: 767px) {
  .vision::after {
    background: url(../img/top/our-vision-wave-mask.svg) no-repeat center/contain;
    aspect-ratio: 900/28;
    -webkit-animation-duration: 6.5s;
            animation-duration: 6.5s;
  }
}

@-webkit-keyframes our-vision-wave {
  0% {
    right: 0;
  }
  100% {
    right: -200vw;
  }
}

@keyframes our-vision-wave {
  0% {
    right: 0;
  }
  100% {
    right: -200vw;
  }
}
.vision {
  overflow: hidden;
  background-image: linear-gradient(to top, #0057cb, #07b4ff calc(100% - 5px), #fbfbfb calc(100% - 5px));
  position: relative;
  padding: 300px 0 400px;
}
@media screen and (max-width: 767px) {
  .vision {
    padding: 160px 0 200px;
  }
}
.vision .vision__bg-earth {
  background: url(../img/top/our-vision-earth.svg) no-repeat bottom right/contain;
  aspect-ratio: 1184/710;
  width: 61%;
  height: auto;
  mix-blend-mode: color-dodge;
  opacity: 0.9;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .vision .vision__bg-earth {
    width: 90%;
  }
}
.vision .vision__bg-diver {
  background: url(../img/top/our-vision-diver.svg) no-repeat center/contain;
  aspect-ratio: 572/533;
  width: 30%;
  height: auto;
  mix-blend-mode: overlay;
  opacity: 0.6;
  position: absolute;
  right: 50%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .vision .vision__bg-diver {
    width: 43%;
    right: 57%;
    bottom: 63px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.vision .title-wrap {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .vision .title-wrap {
    margin-bottom: 40px;
  }
}
.vision .title {
  color: #fff;
  text-shadow: 0 0 8px rgba(1, 65, 161, 0.43);
}
.vision .vision__sub-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 6px rgba(1, 65, 161, 0.43);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .vision .vision__sub-title {
    font-size: 2.2rem;
  }
}
.vision .vision__text {
  color: #fff;
  line-height: 2.2;
  text-shadow: 0 3px 6px rgba(1, 65, 161, 0.48);
  position: relative;
  max-width: 702px;
  width: 100%;
}
/* ----------------------------------------------
    SERVICE
---------------------------------------------- */
.top-service::before {
  content: "";
  display: block;
  background: url(../img/top/top-service-bg.svg) no-repeat center/contain;
  aspect-ratio: 1477/788;
  width: 77vw;
  height: auto;
  opacity: 0.35;
  position: absolute;
  top: 120px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top-service::before {
    width: 120vw;
    top: 20px;
  }
}

.top-service {
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding: 60px 0;
  }
}
.top-service .inner {
  max-width: 1000px;
  position: relative;
}
.top-service__intro {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .top-service__intro {
    margin-bottom: 100px;
  }
}

.top-service__intro-text {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top-service__intro-text {
    margin-bottom: 50px;
  }
}

.top-service__img {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: auto;
}

.top-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top-service__list {
    margin-bottom: 60px;
  }
}

.top-service__item {
  background-color: #fff;
  -webkit-box-shadow: 4px 5px 16px rgba(42, 97, 124, 0.08);
          box-shadow: 4px 5px 16px rgba(42, 97, 124, 0.08);
  width: 40vw;
  max-width: 430px;
}
@media screen and (max-width: 767px) {
  .top-service__item {
    width: 100%;
  }
}

.top-service__img-box {
  aspect-ratio: 450/278;
}
.top-service__img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-service__text-box {
  padding: 20px 30px 30px;
}
@media screen and (max-width: 767px) {
  .top-service__text-box {
    padding: 20px;
  }
}

.top-service__item-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .top-service__item-title {
    font-weight: 700;
  }
}/*# sourceMappingURL=top.css.map */