/* TOP  */
/* ======================================================== */
/* MAIN VISUAL */
.c-mainvisual {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
}
.c-mainvisual-text {
  flex: 1;
  padding: 180px 0 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 20;
  color: #fff;
}
.c-mainvisual-text .text-list {
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0;
  line-height: 54px;
  color: #191970;
  text-align: left;
  position: absolute;
  top: 64px;
  left: 66px;
}
.c-mainvisual-text .title {
  font-weight: 700;
  font-size: 94px;
  line-height: 116px;
  letter-spacing: 0;
  margin-bottom: 44px;
}
.c-mainvisual-text .title span {
  -webkit-text-stroke-width: 2px; /* Adjust the border thickness */
  -webkit-text-stroke-color: #fff; /* Set the border color */
  -webkit-text-fill-color: transparent; /* Make the text fill transparent */
  color: #fff; /* Fallback for browsers that don't support -webkit-text-fill-color */
}
.c-mainvisual-text .sub-title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 58px;
  margin-bottom: 12px;
}
.c-mainvisual-text .sub-title .c-text-dot::before {
  width: 6px;
  height: 6px;
  top: -10px;
}
.c-mainvisual-text .small-text {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 36px;
  margin-bottom: 42px;
}
.c-mainvisual-text .c-text-bg {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  padding: 12px 37px;
}
.c-mainvisual-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.c-mainvisual-img::before {
  content: "";
  background-image: linear-gradient(
    to bottom,
    rgba(113, 113, 135, 0) 0%,
    rgba(113, 113, 135, 0) 20%,
    rgba(25, 25, 112, 0.9) 90%,
    rgba(25, 25, 112, 0.9)
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  left: 0;
}
.c-mainvisual-img .c-mainvisual__slider {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 1px;
  min-height: 1px;
  width: 100%;
  height: 100%;
}
.c-mainvisual-img .mv1 {
  background-image: url(./../images/top/mv1.jpg);
}
.c-mainvisual-img .mv2 {
  background-image: url(./../images/top/mv2.jpg);
}
.c-mainvisual-img .mv3 {
  background-image: url(./../images/top/mv3.jpg);
}
.c-mainvisual-img .mv4 {
  background-image: url(./../images/top/mv4.jpg);
}
.c-mainvisual-img .mv5 {
  background-image: url(./../images/top/mv5.jpg);
}
@media screen and (max-width: 1300px) {
  .c-mainvisual-text .text-list {
    font-size: 32px;
    line-height: 45px;
    top: 30px;
    left: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .c-mainvisual-text .text-list {
    display: none;
  }
  .c-mainvisual-text .title {
    font-size: 70px;
    line-height: 90px;
  }
  .c-mainvisual-text .title span {
    -webkit-text-stroke-width: 1px;
  }
  .c-mainvisual-text .sub-title {
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 12px;
  }
  .c-mainvisual-text .small-text {
    font-size: 20px;
  }
  .c-mainvisual-img .mv1 {
    background-position: center;
  }
  .c-mainvisual-img .mv2 {
    background-position: 30% 50%;
  }
}
@media screen and (max-width: 767px) {
  .c-mainvisual-text {
    padding: 40px 20px;
    justify-content: center;
  }

  .c-mainvisual-text .title {
    font-size: 32px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .c-mainvisual-text .c-text-bg {
    font-size: 13px;
    padding: 10px 15px;
  }
  .c-mainvisual-text .sub-title {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .c-mainvisual-text .sub-title .c-text-dot::before {
    width: 4px;
    height: 4px;
    top: -8px;
  }
  .c-mainvisual-text .small-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
}
/* SCROLLDOWN */
.c-scrolldown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 100;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.c-scrolldown:hover {
  color: #fff;
}
.c-scrolldown-bar {
  width: 1px;
  height: 48px;
  position: relative;
  background-color: rgba(245, 245, 245, 0.41);
  margin-top: 15px;
}
.c-scrolldown-bar::after {
  content: "";
  width: 100%;
  background-color: #f5f5f5;
  position: absolute;
  left: 0;
  -webkit-animation: scrolldown 3s infinite ease-in-out;
  animation: scrolldown 3s infinite ease-in-out;
}
@-webkit-keyframes scrolldown {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    bottom: 0;
    height: 100%;
  }
  100% {
    bottom: 0;
    height: 0;
  }
}
@keyframes scrolldown {
  0% {
    top: 0;
    height: 0;
  }
  50% {
    bottom: 0;
    height: 100%;
  }
  100% {
    bottom: 0;
    height: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-scrolldown {
    display: none;
  }
}
/* END SCROLLDOWN */
/* =========================================== */
/* BLOCK 1 */
.p-top .block1 {
  padding-top: 156px;
}
.p-top .block1::after {
  background-image: url(./../images/top/bg1.png);
  width: 1920px;
  height: 740px;
  top: 0;
}
.p-top .block1 .c-title1 {
  margin-bottom: 28px;
}
.p-top .block1__title {
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.p-top .block1 .c-subtitle {
  margin-bottom: 62px;
}
.p-top .block1 .swiper-slide {
  transition: 0.4s ease-in-out;
}
.p-top .block1 .swiper-slide {
  transform: scale(0.7913) translateZ(0);
}
.p-top .block1 .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1 !important;
}
.p-top .block1 .c-marquee {
  margin-top: -145px;
}
@media screen and (max-width: 1024px) {
  .p-top .block1::after {
    content: unset;
  }
  .p-top .block1 .c-marquee {
    margin-top: -50px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .block1 {
    padding-top: 60px;
  }
  .p-top .block1 .c-title1 {
    margin-bottom: 20px;
  }
  .p-top .block1__title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .p-top .block1 .c-subtitle {
    margin-bottom: 40px;
  }
}
/* END BLOCK 1 */
/* =========================================== */
/* BLOCK 2 */
.p-top .block2::after {
  background-image: url(./../images/top/bg2.png);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 1300px;
  top: 485px;
}
.p-top .block2 .c-heading__bg {
  height: 584px;
}
.p-top .block2 .c-heading__wrapper {
  overflow: hidden;
}
.p-top .block2 .c-heading__wrapper::after {
  background-image: url(./../images/top/bg2.png);
  width: 1920px;
  height: 1300px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -110px;
}
.p-top .block2 .c-card1__list {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 65px;
}
@media screen and (max-width: 1024px) {
  .p-top .block2 .c-heading__wrapper::after,
  .p-top .block2::after {
    content: unset;
  }
  .p-top .block2 .c-heading__bg {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top .block2 .c-card1__list {
    margin-top: 30px;
  }
}
/* END BLOCK 2 */
/* =========================================== */
/* BLOCK 3 */
.p-top .block3 {
  position: relative;
  overflow: hidden;
}
.p-top .block3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #191970;
  background-image: url(./../images/top/bg3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 547px;
  z-index: -1;
}
.p-top .block3 .c-section1 {
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
}
.p-top .block3 .c-section1__text {
  background-color: #fff;
  margin-right: -130px;
  padding: 50px 180px 42px 50px;
}
.p-top .block3 .c-title1 {
  margin-bottom: 24px;
}
.p-top .block3 .c-text-bg {
  display: inline-block;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0;
  padding: 12px 23px;
  margin-bottom: 23px;
}
.p-top .block3 .c-section1__img {
  width: 45.5%;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.p-top .block3 .c-section1__img img {
  width: calc((100% - 30px) / 2);
}
.p-top .block3 .c-section1__img img.img2 {
  align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  .p-top .block3 .c-section1 {
    flex-wrap: wrap-reverse;
  }
  .p-top .block3 .c-section1__text {
    padding-right: 50px;
    margin-right: 0;
  }
  .p-top .block3 .c-section1__img img.img2 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .block3 .c-section1__img {
    gap: 10px;
  }
  .p-top .block3 .c-section1__img img {
    width: calc((100% - 10px) / 2);
  }
  .p-top .block3 .c-section1__img img.img2 {
    margin-top: 30px;
  }
  .p-top .block3 .c-section1__text {
    padding: 30px 20px;
  }
  .p-top .block3 .c-title1 {
    margin-bottom: 14px;
  }
  .p-top .block3 .c-text-bg {
    font-size: 14px;
    padding: 10px 15px;
    margin-bottom: 15px;
  }
}
/* END BLOCK 3 */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* END TOP  */
