@charset "utf-8";
.vis_inner {
  position: absolute;
  bottom: 30px;
  left: 60px;
  color: #fff;
  font-size: var(--fs-40);
  letter-spacing: var(--ls);
  line-height: 1.5;
  filter: drop-shadow(0 0 10px #014099);
}
.vis_head {
  filter: drop-shadow(0 0 10px #014099);
}
.intro{
  .mega_inner{
    padding-top: 0;
  }
  .mega_link{
    box-shadow: 10px 10px 30px #217FC440;
    position: relative;
    &::before {
      content: "";
      background: url(../../common/img/mba_01.svg) no-repeat center / cover;
      width: 34px;
      height: 34px;
      position: absolute;
      bottom: 15px;
      right: 15px;
    }
  }
  .mega_link_top {
    &::before {
      display: none;
    }
  }
  .mlt_txt {
    font-size: var(--fs-20);
    line-height: 1.5;
  }
}
.art_head.art_head--logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  &::before {
    top: 0;
    height: 2em;
  }
}
.pro_head{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
  justify-content: space-between;
}
.pro_left{
  max-width: 550px;
  width: 100%;
}
.pro_img{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 470px;
  width: 100%;
}
.pro_list {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  &.pro_list--center{
    justify-content: center;
    gap:30px;
  }
}
.pro_card{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 170px;
  width: 100%;
}
.pro_thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 170px;
}
.pro_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  background: #fff;
  border: 1px solid var(--deep-blue);
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  min-height: 70px;
  color: var(--txt-color);
  margin-top: 10px;
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow_btn.svg) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
  }
}
.pro_bot{
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.bot_btn{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  background: var(--deep-blue);
  font-size: var(--fs-24);
  border-radius: 10px;
  padding: 10px 15px;
  min-height: 60px;
  color: #fff;
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow_rev.svg) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-left: 15px;
  }
}

.rev{
  background: #F4F4F4;
  margin-top: 60px;
  padding-bottom: 60px;
  .pro_card{
    max-width: 227px;
  }
}

.other{
  display: flex;
  gap:60px 90px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.other_card{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(50% - 45px);
  .pro_btn {
    max-width: none;
    width: auto;
    min-width: 220px;
    &.mt_20{
      margin-top: 20px;
    }
    &::after{
      margin-left: 15px;
    }
  }
}
.other_head--main {
  font-size: var(--fs-24);
  font-weight: bold;
  position: relative;
  &::after{
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--deep-blue);
    position: absolute;
  }
}
.other_head--sub{
  color: var(--main-blue);
  margin-top: 5px;
}
.other_img {
  margin-top: 20px;
}
@media screen and (max-width: 767px){
.vis_inner {
  font-size: var(--fs-32);
  left: 5%;
  bottom: 20px;
}
.pro_list {
  justify-content:flex-start;
  gap:20px 10px;
  flex-wrap: wrap;
  &.pro_list--center{
    justify-content:flex-start;
    gap:20px 10px;
  }
}
.pro_card{
  width: calc(50% - 5px);
  .pro_btn{
    font-size: 1.2rem;
  }
}
.other_card{
  width: 100%;
}
.bot_btn{
  font-size: var(--fs-20);
}
}