@charset "UTF-8";

.banner-item__image {
    position: relative;
}

.banner-item__image img {
    -webkit-transition: -webkit-transform 9s linear;
    transition: -webkit-transform 9s linear;
    transition: transform 9s linear;
    transition: transform 9s linear, -webkit-transform 9s linear;
    -webkit-transform: scale(1);
    transform: scale(1);
    height: 100vh;
}

.banner-item.swiper-slide-active .banner-item__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.banner-item__image:before {
    content: "";
    position: absolute;
    width: 100%;
    background: url(../images/banner_mask.webp) no-repeat center bottom / 100% 100%;
    bottom: 0;
    z-index: 2;
    aspect-ratio: 2276 / 228;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

.banner-item.swiper-slide-active .banner-item__image:before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.banner-item__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-item__title {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 900;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.7;
    margin-bottom: 0;
}

.banner-item__subtitle {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-color);
    letter-spacing: 1.1px;
    margin: 15px 0 0;
}

/* About us */

.intro-box {
    width: 700px;
    margin: 0 auto 50px;
    padding: 10px;
    font-size: 13px;
    line-height: 2.3;
    text-align: center;
    border: 1px solid #000;
}

.box-intro .sec-head-title .title {
    text-align: center;
    letter-spacing: 3.78px;
}

.box-intro .sec-head .sec-descript p {
    font-size: 13px;
    line-height: 2.3;
    text-align: center;
}

/* Our Business */

.box-business {
    margin-top: 160px;
    margin-bottom: 40px;
}

.business-list.row {
    --bic-grid-gap: 10px;
    row-gap: 10px;
}

.business-item .card-item__inner {
    display: block;
    border-top-left-radius: 70px;
    overflow: hidden;
}

.business-item-head .card-item__inner {
    background: #e2eef5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}

.business-item-head .card-item__title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2.52px;
    margin: 0;
}

.business-item-head .card-item__title span {
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: var(--bic-secondary-font);
}

.business-item .card-item__count {
    position: absolute;
    bottom: 0;
    color: #fff;
    font-family: var(--bic-secondary-font);
    font-weight: bold;
    letter-spacing: 2.2px;
    font-size: 44px;
    left: 13.2px;
    line-height: 1.3;
}

.business-text {
    font-size: 15px;
    letter-spacing: 0.9px;
    line-height: 1.86;
    font-weight: bold;
    margin: 60px 0px 40px;
}

.business-text h2, .business-text h3, .business-text h4{
    color: var(--bic-heading-color);
    font-size: 24px;
    font-weight: 700;
    text-transform: none;
    line-height: 1.4;
}

ul.business-list {
    list-style: none;
    padding: 0;
}

.business-item-link a {
    font-size: 17px;
    font-weight: 900;
    position: relative;
    padding-right: 30px;
}

.business-item-link a span {
    font-family: var(--bic-secondary-font);
    font-size: 20px;
    font-weight: bold;
    margin-right: 20px;
}

.business-item-link a:hover {
    opacity: .7;
}

.business-item-link a::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 14px;
    height: 100%;
    margin-left: 12px;
    background: url(../images/icons/icon_btn_arrow01.svg) 50% center / contain no-repeat;
}

/* News */

.box-news {
    position: relative;
    padding: 140px 0px 80px;
    background: rgb(227, 239, 246);
}

.box-news:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/bgnews_mask02.png) no-repeat center top / 100% auto;
    bottom: 0;
}

.box-news .sec-head {
    margin-bottom: 50px;
}

.box-news .sec-head-title .title {
    display: inline-block;
    font-family: var(--bic-secondary-font);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.news-list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
}

.news-item:not(:last-child) {
    margin-bottom: 10px;
}

.news-item a {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    font-weight: bold;
}

.news-item a:hover {
    opacity: .7;
}

.news-item span.day {
    font-family: var(--bic-secondary-font);
    font-weight: 700;
    margin-top: 3px;
    margin-right: 20px;
    white-space: nowrap;
}

.news-item span.tag {
    width: 60px;
    margin-right: 20px;
    text-align: center;
    white-space: nowrap;
    color: rgb(85, 102, 135);
    border: 1px solid rgb(85, 102, 135);
}

.news-item span.title {
    line-height: 1.5;
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .box-news .sec-btn {
        margin-top: 90px;
    }
}

/* Topics */

.box-topic {
    padding: 40px 0 40px;
    background-color: #d9dada;
}

.box-topic .sec-head {
    margin-bottom: 20px;
}

.box-topic .sec-head-title .title {
    font-family: var(--bic-secondary-font);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.38px;
}

/* Archive */

.box-archive-business {
    --bic-grid-gap: 25px;
    background: #F7F7F7;
}

.box-archive-business .container {
    max-width: calc(1000px + var(--bic-grid-gap) * 2);
}

.content-archive {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}

.archive-title {
    position: relative;
    color: #231815;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding: 0 0 16px;
    margin: 0 0 70px;
}

.archive-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #231815;
    width: 50px;
}

.archive-content {
    font-size: 13px;
    font-weight: 500;
}

.archive-content h2,
.archive-content h3,
.archive-content h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.box-archive-business .card-list-wrap {
    row-gap: 60px;
}

.business-item__thumbnail {
    padding-top: 70%
}

.business-item__thumbnail a:before,
.business-item__thumbnail a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.business-item__thumbnail a:before {
    background: url(../images/low_mask_top.png) no-repeat center bottom / cover;
    inset: 0 auto auto 0;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.business-item__thumbnail a:after {
    background: url(../images/low_mask_btm.png) no-repeat center bottom / cover;
    inset: auto auto 0 0;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

section.show .business-item__thumbnail a::before,
section.show .business-item__thumbnail a::after {
    -webkit-transition: -webkit-transform 1s 0.5s;
    transition: -webkit-transform 1s 0.5s;
    transition: transform 1s 0.5s;
    transition: transform 1s 0.5s, -webkit-transform 1s 0.5s;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.business-item__content {
    margin: 32px 0 0;
}

.business-item__title {
    color: #231815;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2.52px;
}

.business-item__title a {
    color: currentColor;
}

.business-item__excerpt {
    margin: 10px 0 30px;
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
}