button {
    padding: 0.75em 1.1em;
}

p.sub-text {
    color: var(--black-a80);
}

article .title {
    font-size: 2.3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-transform: none;
}

article .wrapper,
article.wrapper {
    padding: 3rem 2rem 1rem;
}

.accent-keyword {
    color: var(--azure);
}

.inline-link {
    text-decoration: underline;
    color: var(--polynesian-blue);
    cursor: pointer;
}

.inline-link:hover,
.inline-link:active {
    color: var(--bleu-de-france);
}

.faq-contents-container .faq-header {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    cursor: pointer;
    user-select: none;
}

.faq-contents-container .faq-title {
    flex-grow: 1;
}

.faq-contents-container .faq-toggle {
    width: 36px;
    height: 36px;
}

.faq-contents-container .faq-item .faq-toggle.plus,
.faq-contents-container .faq-item.show .faq-toggle.minus {
    display: block;
}

.faq-contents-container .faq-content {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.475rem;
    color: var(--black-a80);
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    overflow: hidden;
}

.faq-contents-container .faq-item.show .faq-toggle.plus,
.faq-contents-container .faq-item .faq-toggle.minus {
    display: none;
}

#faqs-container {
    background: linear-gradient(to bottom, #FCFDFF 25%, rgba(211, 232, 255, 0.51));
    position: relative;
}

.gradient-grid {
    background: radial-gradient(circle 400px at 20% 25%, #FFF1E9, transparent 70%),
        radial-gradient(circle 400px at 80% 25%, rgba(167, 151, 242, 0.3), transparent 70%),
        radial-gradient(circle 400px at 20% 75%, rgb(187, 85, 255, 0.19), transparent 70%),
        radial-gradient(circle 400px at 80% 75%, rgba(11, 194, 161, 0.22), transparent 70%);
    filter: blur(80px);
    width: 100%;
    height: 100%;
    position: absolute;
}

#faqs-container>.wrapper {
    position: relative;
}

#faqs-container .title {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

#faqs-container .sub-text {
    text-align: center;
}

#faqs-container .faq-contents-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0 80px;
}

.faq-contents-container .faq-item {
    background-color: var(--white);
    margin-bottom: 20px;
    border: 1px solid #D0E7FF;
    border-radius: 8px;
}

.faq-contents-container .faq-header {
    padding: 0.7rem 1rem;
}

.faq-contents-container .faq-content {
    color: var(--black-a70);
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: 1px solid transparent;
}

.faq-contents-container .faq-content>p {
    margin: 0;
}

.faq-contents-container .faq-content>p:not(:last-of-type) {
    margin-bottom: 12px;
}

.faq-contents-container .faq-item.show .faq-content {
    padding-top: calc(0.3rem + 1em);
    padding-bottom: calc(0.7rem + 1em);
    border-color: #EAEAEA;
}

#faqs-container {
    padding-bottom: 6rem;
}

#faqs-container+footer {
    margin-top: 0;
}

@media (min-width: 1360px) {
    article .title {
        font-size: calc(2.3rem * 1.15);
    }

    p.sub-text,
    .faq-contents-container .faq-content {
        font-size: 1.05rem;
        line-height: 1.7rem;
    }

    .faq-contents-container .faq-title {
        font-size: calc(1.15rem * 1.15);
    }
}

@media (max-width: 1080px) {
    article .title {
        font-size: 2.1rem;
    }

    .faq-contents-container .faq-title {
        font-size: 1.1rem;
    }

    .faq-contents-container .faq-toggle {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 800px) {
    #faqs-container .faq-contents-container {
        padding: 30px 0 40px;
    }
}

@media (min-width: 501px) and (max-width: 640px) {
    article .title {
        font-size: 1.9rem;
    }

    article .wrapper,
    article.wrapper {
        padding: 2rem 1.5rem 1rem;
    }

    .faq-contents-container .faq-title {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    article .title {
        font-size: 1.7rem;
    }

    article .wrapper,
    article.wrapper {
        padding: 1.5rem 1rem 1rem;
    }

    .faq-contents-container .faq-title {
        font-size: 0.9rem;
    }
}