@charset "utf-8";
/******************************** common ********************************/
.title_box {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .title_box h1{
    text-align: center;
    font-size: 30px;
    font-family: 'KOTRAHOPE';
    color: #f3787e;
    padding: 0 15px;
    position: relative;
  }
  .title_box img{
    display: block;
    margin: 0 auto;
  }
  .title_box h1::before{
    content: "";
    width: 5px;
    height: 22px;
    background-color: #f3787e;
    position: absolute;
    left: 0;
    bottom: 7px;
    border-radius: 5px;
  }
  .title_box h1::after{
    content: "";
    width: 5px;
    height: 22px;
    background-color: #f3787e;
    position: absolute;
    right: 0;
    bottom: 7px;
    border-radius: 5px;
  }
  .title_box.b h1{
    color: #ffbb1a;
  }
  .title_box.b h1::before,.title_box.b h1::after{
    background-color: #ffbb1a;
  }
  .title_box.c h1{
    color: #6292e0;
  }
  .title_box.c h1::before,.title_box.c h1::after{
    background-color: #6292e0;
  }
  .title_box.d h1{
    color: #ff8400;
  }
  .title_box.d h1::before,.title_box.d h1::after{
    background-color: #ff8400;
  }
  .title_box.e h1{
    color: #5db389;
  }
  .title_box.e h1::before,.title_box.e h1::after{
    background-color: #5db389;
  }
/******************************** common ********************************/

/******************************** main ********************************/
.main{
    margin-top: 101px;
    position: relative;
}
.main_wrap img{
    display: block;
    width: 100%;
}
.main .title_wrap{
    width: fit-content;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);

}
.vol{
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
    width: 100%;
    margin: 0 auto;
}
.vol .wrap-1200{
    position: relative;
}
.vol_box{
    text-align: right;
}
.vol_box::after{
    content: "webzine";
    font-weight: 500;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 18px;
    right: 74px;
}
.vol_box,.vol_box *{
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}
.vol_box .num{
    font-size: 60px;
}
.main .title_wrap img{
    display: block;
    animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
    animation-delay: 0.3s;
}
@keyframes puff-in-center {
    0% {
        transform: scale(2);
        filter: blur(4px);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        filter: blur(0px);
        opacity: 1;
    }
  }
  @media(max-width:1210px){
    .main{
        margin-top: 100px;
    }
    .vol_box{
        margin-right:30px;
    }
    .vol_box::after {
        right: 104px;
    }
  }
  @media(max-width:759px){
    .vol{
        top: 0;
    }
    .vol_box {
        margin-right: 20px;
    }
    .vol_box::after {
        right: 94px;
    }
    .main .title_wrap{
        top: 50%;
    }
  }
  /******************************** main ********************************/

  /******************************** content1 ********************************/
    .content1{
        padding:80px 0;
    }
    .content1 li{
        width: calc(33.3333% - 15px);
        background-color: #fff;
        box-shadow: 0px 6px 29px 0px rgba(174, 177, 185, 0.08);
        border-bottom: 1px solid #f3787e;
        transition: .3s;
    }
    .content1 li img{
        display: block;
        width: 100%;
    }
    .content1 li:hover{
        transform: translateY(-10px);
    }
   .content1 .box{
        padding: 30px;
    }
    .content1 .box .label{
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        color: #fff;
        background-color: #f3787e;
        font-size: 15px;
        padding: 1px 15px;
        border-radius: 25px;
        margin-bottom: 20px;
    }
    .content1 .box p{
        text-align: center;
        font-size: 20px;
        font-weight: 300;
    }
    @media(max-width:1210px){
        .content1 {
            padding: 70px 30px;
        }
        .content1 li {
         width: 100%;
         margin-bottom: 50px;
        }
        .content1 li:last-child{
            margin-bottom: 0;
        }
    }
    @media(max-width:759px){
        .content1 {
            padding: 70px 20px;
        }
        .content1 .box {
            padding: 20px;
        }
        .content1 .box p{
            font-size: 18px;
        }
    }
  /******************************** content1 ********************************/

  /******************************** content2 ********************************/
  .content2{
    padding-bottom: 80px;
  }
  .content2 li{
    width: calc(50% - 20px);
    overflow: hidden;
  }
  .content2 li>a{
    position: relative;
  }
  .content2 li img{
    display: block;
    transition: .3s;
  }
  .content2 li:hover img{
    transform: scale(1.05);
  }
  .content2 .box{
    position: absolute !important;
    bottom: 40px;
    left: 40px;
    width: 100% !important;
     min-width: 500px !important;
  }
  .content2 .box *{
    color: #fff;
  }
  .content2 .box h6{
    font-size: 22px;
    font-weight: 600;
  }
  .content2 .box p{
    padding-top: 15px;
    font-size: 20px;
  }
  .content2 li>a::after{
    content: "";
    background: url(../images/index/content2_arrow.png) no-repeat;
    position: absolute;
    right: 30px;
    bottom: 40px;
    width: 44px;
    height: 44px
  }
  @media(max-width:1210px){
    .content2{
        padding: 0 30px;
        padding-bottom: 70px;
      }
      .content2 li{
        width: 100%;
        margin-bottom: 50px;
      }
      .content2 li:last-child{
        margin-bottom: 0;
      }
      .content2 li img{
        width: 100%;
      }
  }
  @media(max-width:759px){
    .content2{
        padding: 0 20px;
        padding-bottom: 70px;
      }
      .content2 .box {
        bottom: 20px;
        left: 20px;
    }
    .content2 .box h6{
        font-size: 20px;
    }
    .content2 .box p {
        padding-top: 10px;
        font-size: 16px;
    }
    .content2 li>a::after {
        right: 20px;
        bottom: 20px;
    }
    .content2 .box{
        width: 100% !important;
         min-width: 360px !important;
      }
  }
  /******************************** content2 ********************************/

  /******************************** content3 ********************************/
    .content3{
        padding-bottom: 80px;
    }
    .content3 .slide_box{
        overflow: hidden;
        padding-top: 10px;
    }
    .content3_slide{
        position: relative;
    }
    .content3_slide .swiper-slide{
        border: 1px solid #e1e1e1;
        box-shadow: 0px 6px 29px 0px rgba(174, 177, 185, 0.08);
        transition: .3s;
        padding-bottom: 40px;
        max-height: 383.5px;
    }
    .content3_slide .swiper-slide:hover{
        transform: translateY(-10px);
    }
    .content3 .box .label{
        display: block;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        margin-top: 25px;
        color: #fff;
        background-color: #6292e0;
        font-size: 15px;
        padding: 1px 15px;
        border-radius: 25px;
        margin-bottom: 15px;
    }
    .content3 .box p{
        text-align: center;
        font-weight: 300;
        font-size: 16px;
    }
    .content3 .box span{
        display: block;
        font-size: 20px;
        color: #6292e0;
        padding-bottom: 15px;
    }
    .pagin {
        width: fit-content;
        margin: 0 auto;
        margin-top: 20px;
    }
    .pagin .swiper-pagination-bullet{
        margin: 0 10px;
        width: 12px;
        height: 12px;
        background-color: #fff;
        border: 1px solid #dbdbdb;
        opacity: 1;
    }
    .pagin .swiper-pagination-bullet.swiper-pagination-bullet-active{
        background-color: #b3cefb;
        border-color: #b3cefb;
    }
    @media(max-width:1210px){
        .content3{
            padding: 0 30px;
            padding-bottom: 70px;
        }
        .content3_slide .swiper-slide{
            max-height: none;
        }
        .content3_slide .swiper-slide a img{
            display: block;
            width: 100%;
        }
    }
    @media(max-width:759px){
        .content3{
            padding: 0 20px;
            padding-bottom: 70px;
        }
        .content3 .box span{
            font-size: 18px;
        }
    }
  /******************************** content3 ********************************/

  /******************************** content4 ********************************/
  .content4{
    padding-bottom: 80px;
  }
  .content4 li{
    width: calc(50% - 20px);
    overflow: hidden;
  }
  .content4 li>a{
    display: block;
    position: relative;
  }
  .content4 li .img-box img{
    display: block;
    transition: .3s;
  }
  .content4 li:hover .img-box img{
    transform: scale(1.05);
  }
  .content4 .box{
    position: absolute;
    bottom: 30px;
    left: 30px;
  }
  .content4 .box *{
    color: #fff;
  }
  .content4 .box h6{
    font-size: 22px;
    font-weight: 600;
  }
  .content4 .box p{
    padding-top: 15px;
    font-size: 20px;
  }
  .content4 li>a::after{
    content: "";
    background: url(../images/index/content2_arrow.png) no-repeat;
    position: absolute;
    right: 30px;
    bottom: 40px;
    width: 44px;
    height: 44px
  }
  @media(max-width:1210px){
    .content4{
        padding: 0 30px;
        padding-bottom: 70px;
    }
    .content4 li{
        width: 100%;
        margin-bottom: 50px;
      }
      .content4 li:last-child{
        margin-bottom: 0;
      }
      .content4 li .img-box img{
        width: 100%;
      }
    }
  @media(max-width:759px){
    .content4{
        padding: 0 20px;
        padding-bottom: 70px;
    }
    .content4 .box {
        bottom: 20px;
        left: 20px;
    }
    .content4 .box p {
        padding-top: 10px;
        font-size: 16px;
    }
    .content4 li>a::after {
        right: 20px;
        bottom: 20px;
    }
    }
  /******************************** content4 ********************************/

  /******************************** content5 ********************************/
    .content5{
        padding-bottom: 100px;
    }
    @media(max-width:1210px){
        .content5{
            padding: 0 30px;
            padding-bottom: 100px;
        }
        .content5 .banner img{
            display: block;
            width: 100%;
        }
    }
    @media(max-width:759px){
        .content5{
            padding: 0 20px;
            padding-bottom: 100px;
        }

    }
  /******************************** content5 ********************************/

