.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #020928;
  position: relative;
}

.body_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
}

.body_fv {
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
}
@media screen and (max-width: 600px) {
  .body_fv {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
  }
}

@media screen and (max-width: 600px) {
  .body_fv img:nth-child(1) {
    display: none;
  }
}
.body_fv img:nth-child(2) {
  display: none;
}
@media screen and (max-width: 600px) {
  .body_fv img:nth-child(2) {
    display: block;
  }
}

.body_bottom {
  width: 100%;
  height: 100lvh;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-image: url(../img/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex: 1;
}
@media screen and (max-width: 600px) {
  .body_bottom {
    background-image: url(../img/bg-sp.webp);
  }
}

.main {
  position: relative;
  z-index: 2;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

.wrap {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.section-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.section-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: url(../img/section_line.webp);
  background-size: 100% 100%;
  top: 0;
  left: 0;
}
.section-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: url(../img/section_line.webp);
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
}

.txt-shadow {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.68;
  color: #fff;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4), -3px -3px 8px rgba(0, 0, 0, 0.4);
}
.txt-shadow span {
  color: #FFF986;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/*--------------- fv ---------------*/
.fv {
  padding: 8vw 0 2vw;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 1200px) {
  .fv {
    padding: 12vw 0 2vw;
  }
}
@media screen and (max-width: 1000px) {
  .fv {
    padding: 16vw 0 2vw;
  }
}
@media screen and (max-width: 800px) {
  .fv {
    padding: 18vw 0 60px;
  }
}
@media screen and (max-width: 600px) {
  .fv {
    padding: calc(38vw + 68px) 0 50px;
  }
}

.fv_logo {
  width: max(12vw, 174px);
  position: absolute;
  top: 1.6vw;
  left: 2vw;
}
@media screen and (max-width: 600px) {
  .fv_logo {
    top: 24px;
  }
}

.fv_top {
  width: 78%;
  position: absolute;
  top: 1vw;
  left: 0;
  opacity: 0;
  transform: translateX(-6vw);
  transition: all 0.6s;
}
@media screen and (max-width: 1200px) {
  .fv_top {
    top: 3vw;
  }
}
@media screen and (max-width: 1000px) {
  .fv_top {
    top: 6vw;
  }
}
@media screen and (max-width: 800px) {
  .fv_top {
    width: 100%;
    top: 68px;
  }
}

.fv_top.move {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 600px) {
  .fv_top_pc {
    display: none;
  }
}

.fv_top_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_top_sp {
    display: block;
  }
}

.fv_main {
  width: 88%;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s 0.3s;
}
@media screen and (max-width: 800px) {
  .fv_main {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .fv_main {
    margin: 0 auto 24px;
  }
}

.fv_main.move {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 600px) {
  .fv_main_pc {
    display: none;
  }
}

.fv_main_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_main_sp {
    display: block;
  }
}

.fv_video {
  padding: max(1.2vw, 16px) max(1vw, 12px);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid #FDEA37;
  position: relative;
  transform: translateY(min(-4.8vw, -40px));
}
@media screen and (max-width: 800px) {
  .fv_video {
    transform: none;
  }
}
@media screen and (max-width: 600px) {
  .fv_video {
    max-width: 90%;
  }
}

.fv_video_inner {
  aspect-ratio: 25/38;
  background-color: #D9D9D9;
  width: 18vw;
  min-width: 250px;
}
@media screen and (max-width: 600px) {
  .fv_video_inner {
    min-width: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.fv_video_inner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv_video_effect span {
  display: block;
  background-color: #FDEA37;
  width: max(1.2vw, 16px);
  height: max(1.2vw, 16px);
  position: absolute;
}
.fv_video_effect span:nth-child(1) {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.fv_video_effect span:nth-child(2) {
  top: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.fv_video_effect span:nth-child(3) {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.fv_video_effect span:nth-child(4) {
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/*--------------- about ---------------*/
.about {
  margin-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .about {
    margin-bottom: 40px;
  }
}

.about_wrap {
  padding: 86px 100px;
  background-image: url(../img/about_bg.webp);
}
@media screen and (max-width: 1200px) {
  .about_wrap {
    padding: 86px 60px;
  }
}
@media screen and (max-width: 800px) {
  .about_wrap {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 600px) {
  .about_wrap {
    padding: 50px 20px;
  }
}

.about_heading {
  max-width: 480px;
  width: 80%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1000px) {
  .about_heading {
    width: 380px;
    margin: 0 auto 48px;
  }
}
@media screen and (max-width: 600px) {
  .about_heading {
    max-width: 280px;
    width: 100%;
    margin: 0 auto 32px;
  }
}

.about_top {
  margin-bottom: 40px;
}

.about_top_txt {
  color: #fff;
  font-size: 20px;
  line-height: 1.68;
  font-weight: 700;
  margin-bottom: 18px;
}
@media screen and (max-width: 600px) {
  .about_top_txt {
    font-size: 16px;
    text-align: center;
  }
}
.about_top_txt span {
  color: #FFF986;
}

.about_top_content {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .about_top_content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    max-width: 480px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 600px) {
  .about_top_content {
    gap: 12px;
  }
}

.about_top_img {
  width: calc(100% - 618px);
  top: -76px;
  right: 0;
  position: absolute;
}
@media screen and (max-width: 1000px) {
  .about_top_img {
    position: static;
    width: 100%;
  }
}

.about_top_card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 590px;
}
@media screen and (max-width: 1000px) {
  .about_top_card {
    grid-template-columns: 1fr 1fr;
  }
}

.about_top_card li {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s;
}

.about_top_card.move li {
  opacity: 1;
  transform: scale(1);
}

.about_detail {
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .about_detail {
    margin-bottom: 32px;
  }
}

.about_detail_item:not(:last-child) {
  margin-bottom: 30px;
}
.about_detail_item img {
  width: 272px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .about_detail_item img {
    width: 100%;
    max-width: 272px;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 600px) {
  .about_detail_item .txt-shadow {
    text-align: center;
  }
}

.about_step {
  display: grid;
  grid-template-columns: repeat(3, 214px);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .about_step {
    grid-template-columns: repeat(3, 184px);
    gap: 12px;
  }
}
@media screen and (max-width: 800px) {
  .about_step {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

.about_step_item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.2s;
}
.about_step_item:nth-child(2) {
  transition: all 0.6s 0.4s;
}
.about_step_item:nth-child(3) {
  transition: all 0.6s 0.6s;
}
@media screen and (max-width: 600px) {
  .about_step_item {
    height: 26vw;
  }
}

.about_step.move .about_step_item {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 800px) {
  .about_step_pc {
    display: none;
  }
}

.about_step_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .about_step_sp {
    display: block;
  }
}

/*--------------- cta ---------------*/
.cta.cta-bottom {
  margin-bottom: 120px;
}
@media screen and (max-width: 800px) {
  .cta.cta-bottom {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 600px) {
  .cta.cta-bottom {
    margin-bottom: 50px;
  }
}

.cta_wrap {
  background-image: url(../img/cta_bg.webp);
  background-size: 100% 100%;
  display: grid;
  grid-template-columns: 24fr 78fr;
  padding: 40px;
  border-radius: 12px;
}
@media screen and (max-width: 800px) {
  .cta_wrap {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .cta_wrap {
    background-image: url(../img/cta_bg-sp.webp);
    padding: 40px 20px;
  }
}
@media screen and (max-width: 600px) {
  .cta_wrap {
    padding: 28px 20px;
  }
}

.cta_img {
  position: relative;
}

.cta_img img {
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(-15deg);
  position: absolute;
  width: 82%;
}
@media screen and (max-width: 800px) {
  .cta_img img {
    width: 24%;
    transform: rotate(15deg);
    top: -50px;
  }
}
@media screen and (max-width: 600px) {
  .cta_img img {
    top: 0;
    width: 18%;
    left: 0;
  }
}

.cta_heading {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s 0.2s;
}
@media screen and (max-width: 800px) {
  .cta_heading {
    width: 64%;
    margin-left: auto;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading {
    width: 76%;
    margin-bottom: 40px;
  }
}

.cta_heading.move {
  transform: none;
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .cta_heading_pc {
    display: none;
  }
}

.cta_heading_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .cta_heading_sp {
    display: block;
  }
}

.cta_btn {
  display: block;
  width: 460px;
  margin: 0 auto;
  position: relative;
  animation: cta_btn 1300ms ease infinite;
}
@media screen and (max-width: 1000px) {
  .cta_btn {
    width: 400px;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn {
    width: 100%;
  }
}

@keyframes cta_btn {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.cta_bubble {
  font-weight: 700;
  font-size: 20px;
  background-color: #FFF986;
  padding: 12px;
  width: 300px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  top: -32px;
}
@media screen and (max-width: 1000px) {
  .cta_bubble {
    top: -28px;
    padding: 10px;
    width: 260px;
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .cta_bubble {
    font-size: 16px;
    width: 194px;
    padding: 6px;
    top: -24px;
  }
}
.cta_bubble::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 8px;
  background-color: #FFF986;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

/*--------------- flow ---------------*/
.flow {
  padding: 112px 0;
}
@media screen and (max-width: 600px) {
  .flow {
    padding: 40px 0;
  }
}

@media screen and (max-width: 800px) {
  .flow_list {
    max-width: 500px;
    margin: 0 auto;
  }
}

.flow_item {
  position: relative;
  height: 290px;
  display: flex;
  align-items: center;
  padding: 0 64px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1200px) {
  .flow_item {
    padding: 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .flow_item {
    padding: 0 16px;
    max-height: 200px;
    height: 50vw;
  }
}
.flow_item:not(:last-child) {
  margin-bottom: 108px;
}
@media screen and (max-width: 800px) {
  .flow_item:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 600px) {
  .flow_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.flow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 84px;
  background-image: url(../img/flow_arrow.webp);
  background-size: 100% 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -96px;
}
@media screen and (max-width: 1200px) {
  .flow_item:not(:last-child)::after {
    width: 100px;
    height: 64px;
    bottom: -84px;
  }
}
@media screen and (max-width: 800px) {
  .flow_item:not(:last-child)::after {
    width: 80px;
    height: 48px;
    bottom: -64px;
  }
}
@media screen and (max-width: 600px) {
  .flow_item:not(:last-child)::after {
    width: 60px;
    height: 34px;
    bottom: -38px;
  }
}

.flow_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.flow_bg img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .flow_bg_pc {
    display: none;
  }
}

.flow_bg_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .flow_bg_sp {
    display: block;
  }
}

.flow_ttl {
  width: 668px;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 1200px) {
  .flow_ttl {
    width: 540px;
  }
}
@media screen and (max-width: 1000px) {
  .flow_ttl {
    width: 400px;
  }
}
@media screen and (max-width: 800px) {
  .flow_ttl {
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .flow_ttl {
    max-width: 188px;
    width: 47vw;
  }
}

@media screen and (max-width: 800px) {
  .flow_ttl_pc {
    display: none;
  }
}

.flow_ttl_sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .flow_ttl_sp {
    display: block;
  }
}

.flow_img {
  width: 228px;
  position: absolute;
  z-index: 4;
  bottom: 0;
  right: 85px;
}
@media screen and (max-width: 1200px) {
  .flow_img {
    width: 200px;
    right: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .flow_img {
    width: 160px;
    right: 60px;
  }
}
@media screen and (max-width: 800px) {
  .flow_img {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .flow_img {
    max-width: 118px;
    right: 16px;
    width: 28vw;
  }
}

/*--------------- card ---------------*/
.card {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .card {
    margin-bottom: 40px;
  }
}

.card_wrap {
  padding: 86px 0 86px;
  background-image: url(../img/card_bg.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 1000px) {
  .card_wrap {
    background-size: cover;
  }
}
@media screen and (max-width: 600px) {
  .card_wrap {
    background-image: url(../img/card_bg-sp.webp);
    background-size: 100% 100%;
    padding: 54px 0 40px;
  }
}

.card_heading {
  width: 370px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 600px) {
  .card_heading {
    width: 64%;
    margin: 0 auto 40px;
  }
}

.card_content {
  padding: 28px 0 0 70px;
  display: grid;
  grid-template-columns: 20fr 52fr;
  gap: 55px;
  position: relative;
  max-width: 840px;
}
@media screen and (max-width: 1400px) {
  .card_content {
    max-width: 800px;
  }
}
@media screen and (max-width: 1000px) {
  .card_content {
    display: block;
    padding: 28px 40px 0;
  }
}
@media screen and (max-width: 600px) {
  .card_content {
    padding: 24px 20px 0;
  }
}

.card_item {
  position: relative;
}
.card_item:not(:last-child) {
  margin-bottom: 54px;
}
@media screen and (max-width: 600px) {
  .card_item:not(:last-child) {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 1000px) {
  .card_ttl {
    max-width: 600px;
  }
}

@media screen and (max-width: 1000px) {
  .card_ttl_pc {
    display: none;
  }
}

.card_ttl_sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .card_ttl_sp {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .card_img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 480px;
    align-items: flex-end;
    margin: 0 auto 40px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 600px) {
  .card_img {
    gap: 16px;
    max-width: 230px;
    margin: 0 auto 24px;
  }
}

.card_img img:nth-child(1) {
  transform: rotate(-15deg) translateY(20px);
}
@media screen and (max-width: 1000px) {
  .card_img img:nth-child(1) {
    transform: rotate(-8deg) translateY(-10px);
  }
}

.card_img_pc {
  width: 192px;
  top: -40px;
  right: 40px;
  position: absolute;
}
@media screen and (max-width: 1000px) {
  .card_img_pc {
    display: none;
  }
}

.card_img_sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .card_img_sp {
    display: block;
  }
}

.card_txt h3 {
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  background: linear-gradient(135deg, #CF9807 0%, #FDF7C7 50%, #CF9807 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .card_txt h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .card_txt h3 {
    font-size: 20px;
    line-height: 1.6;
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 24px;
  }
}
.card_txt h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  bottom: 0;
  left: 0;
  box-shadow: 2px 2px 4px rgb(207, 152, 7), -2px -2px 4px rgb(207, 152, 7);
}

.card_txt .txt-shadow {
  font-weight: 500;
  line-height: 1.8;
  font-size: 20px;
}
@media screen and (max-width: 1400px) {
  .card_txt .txt-shadow {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .card_txt .txt-shadow {
    font-size: 16px;
  }
}
.card_txt .txt-shadow span {
  color: #FFF986;
}

/*--------------- fusion ---------------*/
.fusion {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .fusion {
    margin-bottom: 40px;
  }
}

.fusion_wrap {
  padding: 86px 0 86px;
  background-image: url(../img/fusion_bg.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 600px) {
  .fusion_wrap {
    padding: 54px 0 40px;
    background-image: url(../img/fusion_bg-sp.webp);
  }
}

.fusion_heading {
  width: 184px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 600px) {
  .fusion_heading {
    width: 34%;
    margin: 0 auto 24px;
  }
}

.fusion_content {
  padding: 0 100px;
}
@media screen and (max-width: 1200px) {
  .fusion_content {
    padding: 0 60px;
  }
}
@media screen and (max-width: 1000px) {
  .fusion_content {
    padding: 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .fusion_content {
    padding: 0 20px;
  }
}

.fusion_top.txt-shadow {
  font-size: 20px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 54px;
}
@media screen and (max-width: 800px) {
  .fusion_top.txt-shadow {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .fusion_top.txt-shadow {
    font-size: 16px;
    margin: 0 auto 20px;
  }
}

.fusion_img {
  display: grid;
  grid-template-columns: 29fr 18fr 32fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1000px) {
  .fusion_img {
    gap: 24px;
  }
}
@media screen and (max-width: 800px) {
  .fusion_img {
    gap: 8px;
    margin-bottom: 16px;
  }
}

.fusion_img img {
  opacity: 0;
  transform: translateY(20px);
}
.fusion_img img:nth-child(1) {
  transition: all 0.6s 0.2s;
}
.fusion_img img:nth-child(2) {
  transition: all 0.6s 0.4s;
}
.fusion_img img:nth-child(3) {
  transition: all 0.6s 0.6s;
}

.fusion_img.move img {
  opacity: 1;
  transform: translateY(0);
}

.fusion_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .fusion_list {
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  .fusion_list {
    gap: 8px;
    margin-bottom: 24px;
  }
}

.fusion_bottom.txt-shadow {
  text-align: center;
  font-size: 28px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .fusion_bottom.txt-shadow {
    font-size: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .fusion_bottom.txt-shadow {
    font-size: 22px;
  }
}
@media screen and (max-width: 800px) {
  .fusion_bottom.txt-shadow {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .fusion_bottom.txt-shadow {
    font-size: 16px;
  }
}

/*--------------- voice ---------------*/
.voice {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .voice {
    margin-bottom: 32px;
  }
}

.voice_wrap .swiper {
  padding-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .voice_wrap .swiper {
    padding-bottom: 40px;
  }
}
.voice_wrap .swiper .swiper-pagination-bullet-active {
  background-color: #E50012;
}

.voice_item {
  height: 560px;
  background: linear-gradient(120deg, #CF9807 0%, #FDF7C7 50%, #CF9807 100%);
  padding: 6px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .voice_item {
    height: 410px;
    padding: 3px;
  }
}

.voice_inner {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 32px 0;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .voice_inner {
    padding: 18px 20px;
  }
}

.voice_txt {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .voice_txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .voice_txt {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.voice_txt span {
  color: #32ADE6;
}

/*--------------- footer ---------------*/
.footer {
  position: relative;
  z-index: 5;
}

.footer_top {
  display: block;
  padding: 14px 52px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  background-color: #020928;
}
@media screen and (max-width: 600px) {
  .footer_top {
    font-size: 18px;
    padding: 12px 40px;
  }
}

.footer_wrap {
  background-color: #020928;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .footer_wrap {
    padding: 24px 0 60px;
  }
}
.footer_wrap a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 600px) {
  .footer_wrap a {
    font-size: 14px;
  }
}
.footer_wrap a:hover {
  opacity: 0.7;
}

/*---------------  ---------------*/
/*---------------  ---------------*/
/*---------------  ---------------*//*# sourceMappingURL=index.css.map */