@charset "UTF-8";
/* CSS Document */

.background {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 99999;
  background-image: url(../images/top/sec2/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: 1.5s top linear both;
  animation-delay: 2.5s;
  opacity: 1;
}

@keyframes top {
  0% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

.background div {
  color: #FFFFFF;
  animation: toptext 1.5s linear both;
  animation-delay: 0.5s;
}

@keyframes toptext {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.background div strong {
  display: block;
  font-size: 3.2vw;
  font-family: var(--en);
  font-weight: 800;
  letter-spacing: 1rem;
  margin-bottom: 25px;
}

.background div p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .background div strong {
    letter-spacing: 6px;
    font-size: 2.8rem;
  }

  .background div p {
    font-size: 1.4rem;
  }

}





.sec1 {
  margin-top: 100px;
  position: relative;
  z-index: 10;
  display: flex;
  margin-left: 5%;
}

.sec1__left {
  width: 100%;
  position: relative;
  z-index: 100;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sec1__left__title {
  margin-top: 80px;
  z-index: 1000;
}

.sec1__left__title strong {
  display: block;
  font-size: 3.2vw;
  font-family: var(--en);
  font-weight: 800;
  letter-spacing: 2.6rem;
  margin-bottom: 25px;
}

.sec1__left__title h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
}

.sec1__left__scroll {
  width: fit-content;
  font-family: var(--en);
  font-weight: 800;
  font-size: 1.5rem;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 7px;
  color: #FFFFFF;
}

.sec1__left__scroll span {
  display: block;
  width: 2px;
  height: 30px;
  background: #FFFFFF;
  animation: scrollLine 1.6s ease-in-out infinite;
}


@keyframes scrollLine {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  40% {
    clip-path: inset(0 0 0 0);
  }

  60% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(100% 0 0 0);
  }
}

.sec1__right {
  position: relative;
  overflow: hidden;
  border-radius: 40px 0 0 40px;
  width: 60%;
  margin-left: -60% !important;
}

.sec1__right::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5CD6FF;
  opacity: 0.12;
  z-index: 1;
}

.sec1__right img {
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.image1 {
  object-position: 60% 50%;
}

.image2 {
  object-position: 60% 50%;
}

.image3 {
  object-position: center;
}

.image4 {
  object-position: center;
}

.sec1__left__scroll.sp {
  display: none;
}

@media (max-width: 1024px) {
  .sec1 {
    display: block;
  }

  .sec1__left__scroll.sp {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 1rem;
  }

  .sec1__left__title {
    margin-top: 0;
  }

  .sec1__left__scroll.pc {
    display: none;
  }

  .sec1__right {
    width: calc(100% - 50px);
    margin: -100px 0 0 auto !important;
  }
}


@media (max-width: 767px) {
  .sec1__left__title strong {
    letter-spacing: 6px;
    font-size: 2.8rem;
  }

  .sec1__left__title h2 {
    font-size: 1.4rem;
  }
}





.sec2 {
  position: relative;
  margin-top: -150px;
  padding-top: 250px;
  background-image: url(../images/top/sec2/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}

.sec2__logo {
  position: absolute;
  top: -20%;
  left: 0;
  width: 50%;
  max-width: 885px;
  mix-blend-mode: multiply;
}

.sec2__wapper {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.sec2__wapper__left {
  width: 50%;
  transform: translateY(50px);
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
}

.sec2__wapper__left img {
  height: calc(100% + 150px);
  object-fit: cover;
}

.sec2__wapper__right {
  text-align: left;
  width: 45%;
  padding-bottom: 50px;
}

.sec2__wapper__right h2 {
  font-size: 4.3rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #FFFFFF;
  line-height: 7rem;
  margin-bottom: 10px;
}

.sec2__wapper__right p {
  line-height: 4rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #FFFFFF;
}

.sec2__wapper__right a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 65px;
  border-radius: 5px;
  background: #FFFFFF;
  letter-spacing: 1px;
  color: #3B8EC0;
  font-weight: 700;
  box-shadow:
    0px 1px 4px 0 rgba(0, 0, 0, 0.25);
}


@media (max-width: 1024px) {
  .sec2__wapper {
    flex-direction: column;
    gap: 50px;
  }

  .sec2__wapper__left {
    width: 100%;
    transform: translateY(0);
  }

  .sec2__wapper__right {
    width: 100%;
  }

  .sec2__logo {
    top: -10%;
    left: -10%;
  }
}

@media (max-width: 767px) {
  .sec2__logo {
    top: -5%;
    left: -15%;
    width: 90%;
  }

  .sec2__wapper__right h2 {
    font-size: 2.4rem;
    line-height: 4rem;
    margin-bottom: 20px;
  }

  .sec2__wapper__right p {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 30px;
  }

  .sec2__wapper__right a {
    margin: 0 auto;
    font-size: 1.4rem;
    height: 55px;
  }
}




.sec3 {
  padding-top: 200px;
}

.sec3__wapper {
  width: 85%;
  max-width: 1440px;
  padding: 50px 5%;
  margin: 0 auto;
  background: url(../images/top/sec3/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.sec3 strong {
  display: block;
  font-size: 4.3rem;
  font-family: var(--en);
  font-weight: 700;
  letter-spacing: 3px;
  color: #FFFFFF;
  margin-bottom: 2px;
  text-shadow: 0px 0px 4.8px rgba(3, 68, 54, 0.48);
  text-align: left;
}

.sec3 h2 {
  font-weight: 700;
  line-height: 4rem;
  color: #FFFFFF;
  text-shadow: 0px 0px 4.8px rgba(3, 68, 54, 0.48);
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-align: left;
}

.sec3__wapper ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.sec3__wapper ul li {
  width: calc(100% / 3);
  min-width: 300px;
}

.sec3__wapper ul li h3 {
  font-size: 2rem;
  color: #3B8EC0;
  font-family: var(--en);
  font-weight: 700;
  text-align: left;
}

.sec3__wapper ul li div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec3__wapper ul li div p {
  width: 100%;
  text-align: left;
  font-family: var(--en);
  font-size: 3.6rem;
  font-weight: 700;
  color: #3B8EC0;
}

.sec3__wapper ul li:last-child div p {
  letter-spacing: -4%;
}

.sec3__wapper ul li div p span {
  font-size: 5rem;
}

.sec3__wapper ul li div img {
  width: 40%;
  margin-left: -40%;
}

.sec3__wapper ul li:first-of-type div img {
  transform: translateY(70px);
  width: 45%;
}

.sec3__wapper ul li:last-of-type div img {
  width: 30%;
}

.sec3__wapper ul li p {
  color: #3B8EC0;
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 20px;
}

.sec3__wapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 65px;
  border-radius: 5px;
  background: #FFFFFF;
  letter-spacing: 1px;
  color: #27A9C7;
  font-weight: 700;
  box-shadow:
    0px 1px 4px 0 rgba(0, 0, 0, 0.25);
  margin-left: auto;
}


@media (max-width: 767px) {

  .sec3 {
    padding-top: 100px;
  }

  .sec3 strong {
    font-size: 3rem;
  }

  .sec3__wapper {
    width: 90%;
  }

  .sec3 h2 {
    font-size: 1.4rem;
  }

  .sec3__wapper a {
    margin: 0 auto;
    font-size: 1.4rem;
    height: 55px;
  }
}



.sec4 {
  padding: 200px 0 0 0;
}

.sec4__wapper {
  position: relative;
  padding-bottom: 80px;
}

.sec4__wapper__image {
  position: absolute;
  top: -10%;
  left: -30%;
  width: 80%;
  z-index: 1;
}

.sec4__wapper::after {
  content: "";
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background-image: url(../images/top/sec4/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px 0 0 30px;
  z-index: -1;
}

.slider-wrapper {
  display: flex;
  overflow: hidden;
  z-index: 10;
  margin-bottom: 50px;
}

.slider {
  animation: scroll-left 20s infinite linear .5s both;
  display: flex;
}

.slide {
  width: calc(100vw / 4);
  margin: 0 20px;
}

.slider .slide:nth-child(even) {
  margin-top: 50px;
}

.slide img {
  display: block;
  width: 100%;
  border-radius: 15px;
}

/* CSSアニメーション */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.sec4__wapper__title {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  transform: translateY(-30px);
  margin-bottom: 30px;
}

.sec4__wapper__title h2 {
  display: block;
  font-size: 4.3rem;
  font-family: var(--en);
  font-weight: 700;
  letter-spacing: 3px;
  color: #3B8EC0;
  margin-bottom: 2px;
  text-align: right;
}

.sec4__wapper__title p {
  font-size: 2rem;
  text-align: right;
  font-weight: 800;
  letter-spacing: 3px;
  color: #3B8EC0;
  transform: translateX(12.5px);
}

.sec4__buttonarea {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.sec4__button {
  position: relative;
  z-index: 20;
  width: 285px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  filter: drop-shadow(0px 1px 4px 0 rgba(0, 0, 0, 0.25));
  font-weight: 700;
  color: #27A9C7;
  margin-left: auto;
  border-radius: 5px;
}

.sec4__sp {
  display: none;
}

@media (max-width: 1024px) {
  .slide {
    width: calc(100vw / 2.5);
    animation: scroll-left 30s infinite linear .5s both;
  }
}


@media (max-width: 767px) {

  .sec4 {
    padding: 100px 0 0 0;
  }

  .sec4__sp {
    display: block;
  }

  .sec4__wapper__image {
    position: absolute;
    top: 20%;
    left: -50%;
    width: 120%;
    z-index: 1;
  }

  .sec4__wapper__title h2 {
    font-size: 3rem;
  }

  .sec4__wapper__title p {
    font-size: 1.4rem;
  }

  .sec4__wapper::after {
    width: 90%;
  }

  .sec4__button {
    height: 55px;
    font-size: 1.4rem;
  }
}


@media (max-width: 600px) {
  .slide {
    width: calc(100vw / 1.5);
    animation: scroll-left 40s infinite linear .5s both;
  }
}




.sec5 {
  position: relative;
  z-index: 1;
  padding-top: 150px;
}

.sec5__wapper {
  max-width: 1440px;
  margin: 0 auto;
}

.sec5__title {
  padding: 25px 5% 30px;
  background: #3B8EC0;
  color: #FFFFFF;
  text-align: left;
  width: fit-content;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0px 1px 4px 0 rgba(0, 0, 0, 0.25));
}

.sec5__title h2 {
  display: block;
  font-size: 4.3rem;
  font-family: var(--en);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 2px;
}

.sec5__title p {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.sec5 ul {
  position: relative;
  display: flex;
  margin-top: -15px;
}


.sec5 ul li {
  position: relative;
  width: 50%;
}

.sec5 ul li a {
  cursor: pointer;
}

.sec5 ul li a img {
  transition: 0.3s;
  transition-timing-function: ease-out;
}

.sec5 ul li a:hover img {
  scale: 1.1;
}

.sec5 ul li a:hover {
  opacity: 1;
}


.sec5 ul li:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.sec5 .parallax {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.sec5 .parallax__image {
  height: calc(100% + 150px);
  object-fit: cover;
}

.sec5__ul__li__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  width: 50%;
  max-width: 360px;
}

.sec5__ul__li__text1 {
  left: 30%;
}

.sec5__ul__li__text3 {
  left: 70%;
}

.sec5 ul li div h3 {
  font-size: 2.8rem;
  font-weight: 700;
}

.sec5 ul li div p {
  font-size: 2rem;
  letter-spacing: 3px;
}

@media (max-width: 767px) {

  .sec5 {
    padding-top: 100px;
  }

  .sec5__title {
    width: 90%;
    max-width: 320px;
    padding: 20px;
  }

  .sec5__title h2 {
    font-size: 3rem;
  }

  .sec5__title p {
    font-size: 1.4rem;
  }

  .sec5 ul {
    flex-direction: column;
  }

  .sec5 ul li:nth-child(2) {
    position: static;
    clip-path: none;
    transform: none;
  }

  .sec5 ul li {
    width: 100%;
    margin-top: -1px;
  }

  .sec5 ul li:nth-child(1) div {
    left: 50%;
  }

  .sec5 ul li:nth-child(3) div {
    left: 50%;
  }

  .sec5 ul li div h3 {
    font-size: 2.2rem;
  }

  .sec5 ul li div p {
    font-size: 1.6rem;
  }

  .sec5__ul__li__text {
    width: 90%;
  }
}