@charset "UTF-8";

body {
  font-family: 'Noto Sans CJK JP', "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.sp {
  display: none;
}

.sec_wrap {
  padding: 100px 20px !important;
}

.sec_inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.sec01 {
  color: #fff;
  background: #000;
}
.mv_wrap {
  margin-bottom: 100px;
}
.page_ttl {
  max-width: 617px;
  width: 100%;
  margin: 0 auto 30px;
}
.sub_ttl {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.66;
  text-align: center;
  margin-bottom: 100px;
}
.mv {
  margin-bottom: 100px;
}
.mv_catch {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.48;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.flex_box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 100px;
}
.flex_box._reverse {
  flex-direction: row-reverse;
  margin-bottom: 0;
}
.flex_box .txt_wrap {
  max-width: 580px;
  width: 100%;
}
.flex_box .txt_wrap .box_label {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #F0552E;
  margin-bottom: 20px;
}
.flex_box._reverse .txt_wrap .box_label {
  color: #4849d4;
}
.flex_box .txt_wrap .box_ttl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.56;
  color: #fff;
  margin-bottom: 20px;
}
.flex_box .txt_wrap .txt {
  font-size: 16px;
  line-height: 1.75;
}
.flex_box .img_wrap {
  max-width: 575px;
  width: 100%;
}

.sec02 {
  color: #fff;
  background: #282a30;
}
.sec02 .flex_box {
  margin-bottom: 0;
}
.sec02 .flex_box .txt_wrap {
  max-width: 411px;
}
.sec02 .flex_box .img_wrap {
  max-width: 769px;
}

.sec03 {
  color: #000;
  background: #fff;
}
.sec03 .sec_ttl {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.7;
  color: #010000;
  margin-bottom: 30px;
  text-align: center;
}
.sec03 .txt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #010000;
  margin-bottom: 50px;
}
.cta_list {
  display: flex;
  gap: 4%;
  max-width: 940px;
  width: 100%;
  margin: 0 auto !important;
}
.cta_list .cta {
  max-width: 450px;
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  background: #e6e6e6;
  border-radius: 6px;
}
.cta_ttl {
  font-size: 24px;
  font-weight: bold;
  color: #010000;
  margin-bottom: 10px;
}
.cta_txt {
  font-size: 14px;
  color: #010000;
  margin-bottom: 10px;
}
.cta_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  width: 100%;
  height: 40px;
  background: #4849d4;
  margin: 0 auto;
  border-radius: 20px;
}
.cta_btn span {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
.cta_btn:hover span {
  color: #fff;
}

@media screen and (max-width:767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sec_wrap {
    padding: 50px 20px !important;
  }
  .mv_wrap {
    margin-bottom: 50px;
  }
  .page_ttl {
    width: 80%;
    margin-bottom: 40px !important;
  }
  .sub_ttl {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .mv {
    margin-bottom: 40px;
  }
  .mv_catch {
    font-size: 24px;
  }
  .flex_box {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .flex_box._reverse {
    flex-direction: column;
  }
  .flex_box .txt_wrap {
    max-width: 100%;
  }
  .flex_box .txt_wrap .box_label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .flex_box .txt_wrap .box_ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .flex_box .txt_wrap .txt {
    font-size: 14px;
  }
  .sec03 .sec_ttl {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .sec03 .txt {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 30px;
  }
  .cta_list {
    flex-direction: column;
  }
  .cta_list .cta:first-child {
    margin-bottom: 20px;
  }

}

/* ----------------------------
アニメーション
------------------------------- */
.fadeIn {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .4s ease, transform .4s ease;
  will-change: opacity, transform;
}

.fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn01,
.fadeIn04.fadeIn_ttl,
.fadeIn_second.fadeIn_ttl,
.fadeIn_third.fadeIn_ttl {
  opacity: 0;
}

.fadeIn01.fadeIn_active,
.fadeIn04.fadeIn_ttl.fadeIn_active,
.fadeIn_second.fadeIn_ttl.fadeIn_active,
.fadeIn_third.fadeIn_ttl.fadeIn_active {
  opacity: 1;
}

.initial_anim {
  opacity: 0;
}

@keyframes fadeIn01 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

.fadeIn02,
.fadeIn02_2.fadeIn_second,
.fadeIn02_2.fadeIn_third {
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}

.fadeIn02.fadeIn_active02 {
  animation: fadeIn02 .6s ease forwards;
}

.fadeIn02_2.fadeIn_second.fadeIn_active,
.fadeIn02_2.fadeIn_third.fadeIn_active {
  animation: fadeIn02 .4s ease forwards;
}

@keyframes fadeIn02 {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fadeIn02.trans_half {
  transform: translateY(40%);
}

@media screen and (max-width: 768px) {
  .fadeIn02.trans_half.trans_min_sp {
    transform: translateY(30%);
  }
}

.fadeIn02.trans_half.fadeIn_active02 {
  animation: fadeIn02_half .4s ease forwards;
}

@keyframes fadeIn02_half {
  0% {
    transform: translateY(40%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
