/* Faq */

.faq-wrapper {
    background: #f0f0f8;
    padding: 60px 0;
    overflow: hidden;
}

.faq_left {
    width: 100%;
}

.faq-question {
    padding: unset;
    transition: 0.3s;
    background: #ffffff;
    border-radius: 10px;
    position: relative;
    border: 1px solid #E9E9E9;
    box-shadow: 0px 0px 10px 0px #0000000D;
}

.q {
    cursor: pointer;
}

.q p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    transition: 0.3s;
}

.a {
    display: none;
    margin: unset;
    border-top: 1px solid #DCDCDC;
    color: var(--kiroe-text-dark);
    padding: 16px 24px 24px 24px;
    line-height: 1.4;
}

.a>* {
    max-width: 720px;
}

.faq-question:not(:last-child) {
    margin-bottom: 24px;
}

.open_it-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.faq-questions_block_2 {
    display: none;
}

/* Faq */

/* News */

.kiroe_news_wrapper {
    padding: 80px 0;
}

.kiroe_news_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.kiroe_main_ttl {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    color: #121318;
    margin-bottom: 32px;
}

.news_bottom {
    margin-top: 56px;
}

/* News */

/* Main Links */

.kiroe_main_links_wrapper {
    position: relative;
}

.kiroe_main_links_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: -167px 0 0;
    transition: .5s;
}

.kiroe_main_links_grid.scrolled {
    margin: -370px 0 0;
}

.kiroe_main_link_item {
    padding: 24px;
    gap: 16px;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.13px;
    background-color: #fff;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px #0000001A;
    cursor: pointer;
    transition: .5s;
}

.kiroe_main_link_item_main {
    background-color: #FFE125;
    border: 1px solid #D6B902
}

.kiroe_main_link_item span {
    flex: 1;
}

/* Main Links */

/* Kiroe Banner */

.kiroe_main_banner_bg {
    height: calc(100vh - 114px);
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-size: auto 100%;
    transition: 1s;
    background-color: var(--kiroe-light-gray);
}

.kiroe_main_banner_bg.loaded {
    animation: fadeIn 1s ease forwards;
    background-size: auto 110%;
}

.kiroe_main_banner_bg .container {
    height: calc(100% - 167px);
    transition: .5s;
}

.kiroe_main_banner_bg .container.scrolled {
    height: calc(100% - 370px)
}

.kiroe_main_banner_inner {
    position: relative;
    height: 100%;
    gap: 40px;
    color: #fff;
}

.kiroe_main_banner_ttl {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 4px;
    position: relative;
}

.kiroe_main_banner_ttl:after {
    content: '';
    position: absolute;
    width: 1000px;
    height: 300px;
    max-width: calc(100vw - 100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background: #000;
    opacity: 0.7;
    border-radius: 50%;
    filter: blur(90px);
}

.kiroe_main_banner_desc {
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    text-align: center;
    max-width: 518px;
}

.kiroe_main_banner_arrow {
    position: absolute;
    bottom: 10%;
}

.kiroe_main_banner_arrow svg {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Kiroe Banner */