@charset "UTF-8";
/*=== slider ===*/
.swiper {
    margin-bottom: 33px;
}
.swiper-slide {
    width: 1100px!important;
}
.swiper__frame {
    position: absolute;
    width: 1100px!important;
    height: 511px;
    inset: 0;
    margin: auto;
}
.slide__item a img {
    width: 100%;
}
.swiper-button-prev {
    left: 1.86vw;
}
.swiper-button-next {
    right: 1.86vw;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 31px;
  width: 20px;
  margin: auto;
}
.swiper-button-prev::after {
  background-image: url(../images/arrow_left.svg);
}
.swiper-button-next::after {
  background-image: url(../images/arrow_right.svg);
}
.swiper-link {
    position: absolute;
    bottom: 8%;
    right: 5%;
    z-index: 10;
    font-size: 16px;
    letter-spacing: 0.08em;
}
.swiper-link::after {
    content: '';
    display: inline-block;
    background: url(../images/arrow_black.svg) center no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    margin-left: 8px;
    vertical-align: middle;
}

/*=== info ===*/
.info {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 36px;
    display: flex;
    justify-content: space-between;
}
.info__container {
    margin-right: 30px;
    width: 67%;
}
.info__name {
    font-family: var(--en-font);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 29px;
}
.info__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #EAEAEA;
}
.info__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.info__item a {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-decoration: underline;
}
.info__item span {
    min-width: 77px;
    color: #fff;
    padding: 6px 8px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 10px;
    margin-right: 12px;
}
.green {
    background: #007067;
}
.black {
    background: #000;
}
.banner {
    padding-top: 12px;
}
.banner__item {
    max-width: 332px;
    margin-bottom: 10px;
}
.banner__item:last-child {
    margin-bottom: 0;
}


@media(min-width:769px) and ( max-width:1140px) {
    .swiper-slide {
        width: 100%!important;
    }
    .swiper__frame {
        display: contents;
    }
    .swiper-button-prev {
        left: 2.361vw;
    }
    .swiper-button-next {
        right: 2.361vw;
    }
    .info {
        flex-direction: column;
    }
    .info__container {
        width: 80%;
        margin: 0 auto;
    }
    .banner__list {
        padding-inline: 20px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
    .banner__item {
        width: calc(100% / 3);
        margin-bottom: 0;
    }
}

/*=== media query ===*/
@media(max-width: 768px) {
    /*=== swiper ===*/
    .swiper {
        margin-bottom: 17px;
        padding: 0 20px;
    }
    .swiper-wrapper,
    .swiper-slide {
        height: 100%;
    }
    .swiper-slide {
        width: 100%!important;
    }
    .swiper-button-prev {
        left: 10.333vw;
    }
    .swiper-button-next {
        right: 10.333vw;
    }
    .swiper-link {
        right: 8.5%;
        bottom: 5%;
    }
    .swiper-link::after {
        background: url(../images/arrow_white.svg) center no-repeat;
    }
    .swiper__frame {
        display: contents;
    }

    /*=== info ===*/
    .info {
        flex-direction: column;
        padding: 0 20px;
    }
    .info__container {
        width: 100%;
    }
    .info__name {
        font-size: 24px;
        margin-bottom: 14px;
    }
    .info__item:last-child {
        padding-bottom: 0;
    }
    .info__item {
        align-items: flex-start;
    }
    .info__item a {
        font-size: 12px;
    }
    .info__item span {
        width: 50%;
        font-size: 12px;
        margin-right: 14px;
        max-width: 77px;
        width: 100%;
    }
    .banner {
        padding: 24px 0 48px;
    }
    .banner__item {
        max-width: none;
        width: 100%;
    }
}

