@charset "UTF-8";

.p-tab{
    padding-top: calc(30 * var(--px));
    border-bottom: calc(4 * var(--px)) solid var(--main-color);
    background: var(--background-light);
}
.p-tab__list{
    display: flex;
}
.p-tab .swiper-slide{
    width: calc((100% / 4) - (15 * var(--px)));
    margin-right: calc((((15 * 4) / 3) * var(--px)));
}
.p-tab .swiper-slide:last-child{
    margin-right: 0;
}
.p-tab__link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(50 * var(--px));
    background: #fff;
    padding: calc(10 * var(--px));
    font-size: var(--fs-base);
    font-weight: bold;
    text-align: center;
    border: 1px solid var(--main-color);
    border-bottom: none;
    border-radius: var(--radius-base) var(--radius-base) 0 0;
}
.p-tab__link.is-active{
    background: var(--main-color);
    color: #fff;
}
.p-tab .swiper-button-prev,
.p-tab .swiper-button-next{
    display: none;
}
@media screen and (max-width: 767px) {
    .p-tab{
        position: relative;
        display: flex;
        padding-top: calc(15 * var(--px));
        overflow: hidden;
    }
    .p-tab .swiper-slide{
        border-right: calc(5 * var(--px)) solid transparent;
    }
    .p-tab .swiper-slide:first-child{
        border-left: calc(5 * var(--px)) solid transparent;
    }
    .p-tab__link{
        box-shadow: none;
        color: var(--text-color);
        padding: calc(10 * var(--px)) calc(20 * var(--px));
    }
    .p-tab .swiper{
        width: calc(100% - (64 * var(--px)));
        margin: 0 auto;
        overflow: visible;
    }
    .p-tab .swiper-slide {
        width: auto;
        margin-right: 0;
    }
    .p-tab .swiper-button-prev,
    .p-tab .swiper-button-next{
        display: flex;
        position: absolute;
        flex-shrink: 0;
        width: calc(32 * var(--px));
        height: calc(100% - calc(15 * var(--px)));
        background: var(--main-color);
        color: #fff;
        font-size: calc(12 * var(--px));
        overflow: hidden;
        margin: 0;
        top: auto;
        bottom: 0;
    }
    .p-tab .swiper-button-prev.swiper-button-disabled,
    .p-tab .swiper-button-next.swiper-button-disabled{
        opacity: 1;
        background: var(--gray-color);
    }
    .p-tab .swiper-button-prev{
        left: 0;
        border-radius: 0 var(--radius-base) 0 0;
    }
    .p-tab .swiper-button-next{
        right: 0;
        border-radius: var(--radius-base) 0 0 0;
    }
    .p-tab .swiper-button-prev::after,
    .p-tab .swiper-button-next::after {
        transform: scale(0.35);
    }
}

.p-faq{
    padding: var(--section-padding-small);
    background: var(--background-light);
}
.p-faq + .p-faq{
    padding-top: 0;
}
.p-faq__list:nth-child(n+2){
    display: none;
}
.p-faq__item{
    background: #fff;
    box-shadow: var(--shadow-base);
    border-radius: var(--radius-base);
    padding: calc(50 * var(--px));
    position: relative;
    overflow: hidden;
}
.p-faq__item:nth-child(n+2){
    margin-top: calc(40 * var(--px));
}
.p-faq__question,
.p-faq__answer{
    display: flex;
}
.p-faq__answer{
    margin-top: calc(20 * var(--px));
}
.p-faq__q,
.p-faq__a{
    width: calc(50 * var(--px));
    height: calc(50 * var(--px));
    border-radius: calc(25 * var(--px));
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-title-small);
    font-weight: bold;
    margin-right: calc(25 * var(--px));
    flex-shrink: 0;
    font-family: var(--english-font-family);
}
.p-faq__a{
    background: var(--background-gradient-cta);
}
.p-faq__wrapper{
    min-height: calc(50 * var(--px));
    display: flex;
    align-items: center;
}
.p-faq__category{
    background: var(--main-color);
    color: #fff;
    font-size: var(--fs-base);
    width: calc(200 * var(--px));
    height: calc(35 * var(--px));
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 0 0 var(--radius-base);
}
.p-faq__title{
    font-size: var(--fs-base-large);
    line-height: var(--lh-tight);
    font-weight: bold;
}
.p-faq__text{
    font-size: var(--fs-base);
    line-height: var(--lh-base);
}
.p-faq__empty{
    font-size: var(--fs-base);
    line-height: var(--lh-base);
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-faq__item{
        padding: calc(40 * var(--px)) calc(20 * var(--px)) calc(20 * var(--px));
    }
    .p-faq__item:nth-child(n+2){
        margin-top: calc(30 * var(--px));
    }
    .p-faq__answer{
        margin-top: calc(15 * var(--px));
    }
    .p-faq__category{
        font-size: var(--fs-base-mini);
        width: calc(150 * var(--px));
        height: calc(30 * var(--px));
    }
    .p-faq__q,
    .p-faq__a{
        width: calc(40 * var(--px));
        height: calc(40 * var(--px));
        border-radius: calc(20 * var(--px));
        margin-right: calc(15 * var(--px));
    }
    .p-faq__wrapper{
        min-height: calc(40 * var(--px));
    }
}