@charset "utf-8";

:root {
    --primary: #d87631;
    --accent: #d18d4e;
    --text: #4a3d33;
    --subtext: #726f63;
    --bg: #fdfcf2;
    --white: #FFFFFF;
}

.fv {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fv-collage {
    display: flex;
    gap: 10px;
    padding: 0px 20px;
    height: 60vh;
}

.collage-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.col-1,
.col-4 {
    flex: 1.2;
}

.col-2 {
    flex: 1.5;
}

.col-3 {
    flex: 1;
}

.fv-main-area {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background-color: var(--white);
    background-image:
        linear-gradient(rgba(209, 141, 78, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(209, 141, 78, 0.12) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px;
    z-index: 5;
    clip-path: ellipse(130% 100% at 50% 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0px;
    overflow: hidden;
}

.fv-main-area::after {
    content: "SCROLL";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.3em;
    color: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    padding-bottom: 30px;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-repeat: no-repeat;
    background-size: 1px 40px;
    background-position: center top 25px;
    animation: scroll-line-move 2.5s ease-in-out infinite;
}

@keyframes scroll-line-move {
    0% {
        background-size: 1px 0;
        background-position: center top 25px;
    }

    40% {
        background-size: 1px 40px;
        background-position: center top 25px;
    }

    60% {
        background-size: 1px 40px;
        background-position: center top 25px;
    }

    100% {
        background-size: 1px 0;
        background-position: center top 65px;
    }
}

.fv-content {
    text-align: center;
    color: var(--text);
    z-index: 10;
    margin-top: 45px;
    position: relative;
}

.fv-content::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 140%;
    background-color: rgba(250, 228, 192, 0.3);
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 70%;
    z-index: -1;
    filter: blur(20px);
}

.fv-copy {
    font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.8;
}

.fv-copy-highlight {
    background-color: transparent;
    color: var(--primary);
    padding: 0;
    margin: 0 5px;
    font-size: 1.2em;
}

.fv-lead {
    margin-top: 25px;
    font-size: clamp(18px, 1.4vw, 26px);
    line-height: 1.8;
    color: #6d4c41;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.sp-br {
    display: none;
}

@media (max-width: 768px) {
    .fv-collage {
        height: 60vh;
        flex-wrap: wrap;
    }

    .col-3,
    .col-4 {
        display: none;
    }

    .fv-main-area {
        height: 50%;
    }

    .fv-content {
        margin-top: 60px;
    }

    .fv-content::before {
        width: 140%;
    }

    .fv-lead {
        margin-top: 15px;
        font-size: clamp(13px, 1.1vw, 20px);
        line-height: 1.5;
        font-weight: 400;
        letter-spacing: 0em;
    }

    .fv-main-area {
        height: 50%;
        background-size: 20px 20px;
    }

    .fv-main-area::after {
        padding-bottom: 30px;
        background-size: 1px 90px;
        animation: scroll-line-move-sp 2.5s ease-in-out infinite;
    }

    @keyframes scroll-line-move-sp {
        0% {
            background-size: 1px 0;
            background-position: center top 25px;
        }

        40% {
            background-size: 1px 90px;
            background-position: center top 25px;
        }

        60% {
            background-size: 1px 90px;
            background-position: center top 25px;
        }

        100% {
            background-size: 1px 0;
            background-position: center top 115px;
        }
    }

    .sp-br {
        display: block;
        /* blockにすることで改行として機能します */
    }
}

.home-intro {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.intro-bg-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 160%;
    height: 70%;
    background-color: #f3b55c;
    z-index: 1;
    clip-path: ellipse(60% 40% at 50% 50%);
    opacity: 0.5;
}

.home-intro__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
}

.intro-card {
    background-color: transparent;
    padding: 40px 60px;
    position: relative;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.intro-headline {
    font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
    font-size: clamp(20px, 2.3vw, 30px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.intro-body {
    font-size: clamp(18px, 1.1vw, 22px);
    line-height: 2.2;
    color: var(--text);
    margin: 0;
}

.deco-tree {
    bottom: -20px;
    right: -20px;
    width: 100px;
}

.btn-wrap {
    margin-top: 40px;
    text-align: right;
}

.btn-more-orange {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-more-orange:hover {
    background-color: var(--white);
    color: var(--primary) !important;
}


@media (max-width: 768px) {
    .home-intro {
        padding: 10px 0;
    }

    .intro-bg-wave {
        width: 200%;
        height: 80%;
    }

    .intro-card {
        padding: 40px 30px;
        border-radius: 40px !important;
    }

    .intro-headline {
        font-size: clamp(17px, 1.1vw, 25px);
    }

    .intro-body {
        font-size: clamp(13px, 1.1vw, 20px);
        line-height: 2.2;
        color: var(--text);
        margin: 0;
    }

    .home-intro__inner {
        gap: 0px;
    }
}

.reason-section {
    padding: 80px 0;
    background-color: var(--bg);
    position: relative;
    overflow: hidden;
}

.reason-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.reason-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.reason-ja {
    display: inline-block;
    font-family: "Hiragino Maru Gothic ProN", sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    color: var(--text);
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 2;

}

.reason-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.reason-row:nth-of-type(even) {
    flex-direction: row-reverse;
}

.reason-image {
    flex: 1;
    position: relative;
}

.image-mask {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    overflow: hidden;
    border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.image-mask::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary);
    border-radius: 50% 70% 40% 60% / 60% 40% 70% 50%;
    z-index: 1;
    opacity: 0.5;
    transform: rotate(-1.5deg);
    pointer-events: none;
}

.image-mask::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--accent);
    border-radius: 70% 40% 60% 50% / 40% 70% 50% 60%;
    z-index: 1;
    opacity: 0.3;
    transform: rotate(2deg);
    pointer-events: none;
}

.reason-text-content {
    flex: 1.2;
    padding: 0;
    border: none;
    text-align: left;
}

.reason-h {
    font-size: clamp(20px, 1.5vw, 26px);
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 800;
    position: relative;
    padding-bottom: 10px;
    width: fit-content;
}

.reason-h::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110%;
    height: 1px;
    background-color: var(--accent);
    border-radius: 10px;
}

.reason-p {
    font-size: clamp(15px, 1vw + 12px, 17px);
    line-height: 2;
    color: var(--text);
    opacity: 0.95;
    margin: 0;
}

@media (max-width: 850px) {
    .reason-row {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 80px;
    }

    .reason-text-content {
        display: flex;
        flex-direction: column;
    }

    .reason-h::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .image-mask {
        width: 90%;
        margin: 0 auto;
    }

    .image-mask::before {
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        border: 1px solid var(--primary);
    }

    .image-mask::after {
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        border: 0.5px solid var(--accent);
    }
}

.service-section {
    background-color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.deco-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.dot-1 {
    width: 350px;
    height: 350px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    opacity: 0.08;
}

.dot-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -100px;
    right: -150px;
    opacity: 0.06;
}

.dot-3 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    top: 15%;
    right: 10%;
    opacity: 0.1;
}

.dot-4 {
    width: 100px;
    height: 100px;
    background: var(--accent);
    bottom: 20%;
    left: 5%;
    opacity: 0.12;
}

.service-inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.service-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-ja {
    font-family: "Hiragino Maru Gothic ProN", sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text);
    font-weight: 800;
}

.service-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-visual {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.circle-img-wrap {
    width: clamp(250px, 35vw, 550px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 10;
    position: relative;
}

.circle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.service-text-area {
    width: 100%;
    max-width: 450px;
    z-index: 15;
}

.service-item-title {
    font-size: clamp(20px, 1.5vw, 26px);
    color: var(--text);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-item-text {
    font-size: clamp(15px, 1vw + 12px, 17px);
    line-height: 2;
    color: var(--text);
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: left;
}

.service-btn-wrap {
    display: flex;
    justify-content: flex-end;
}

.btn-more-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-weight: bold;
    transition: 0.3s;
}

.btn-more-link span {
    border-bottom: 1.5px solid var(--text);
    padding-bottom: 2px;
}

.btn-more-link:hover {
    color: var(--primary);
}

.btn-more-link:hover .arrow-circle {
    background-color: var(--primary);
    transform: translateX(5px);
}


@media (max-width: 768px) {
    .service-grid {
        flex-direction: column;
        gap: 80px;
    }

    .circle-img-wrap {
        width: 80vw;
        max-width: 400px;
    }

    .deco-dot {
        opacity: 0.08;
    }

    .service-text-area {
        max-width: 100%;
    }

    .service-visual {
        margin-bottom: 20px;
    }
}

.customer-section {
    padding: 100px 20px;
    background-color: var(--white);
    overflow: hidden;
}

.customer-inner {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}

.customer-header {
    text-align: center;
    margin-bottom: 60px;
}

.customer-ja {
    font-family: "Hiragino Maru Gothic ProN", sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text);
    font-weight: 800;
}


.customer-group {
    margin-bottom: 80px;
}

.customer-category-name {
    font-size: clamp(20px, 1.5vw, 26px);
    color: var(--text);
    font-weight: bold;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-category-name::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.customer-item {
    display: flex;
    flex-direction: column;
}

.customer-bubble {
    position: relative;
    background-color: rgba(243, 181, 92, 0.5);

    padding: 25px;
    border-radius: 20px;
    flex-grow: 1;
    border: 1px solid #efeae0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
}

.customer-bubble::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 30px;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-color: rgba(243, 181, 92, 0.5) transparent transparent transparent;
}

.customer-info {
    display: block;
    font-size: clamp(15px, 1vw + 12px, 17px);
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(74, 61, 51, 0.2);
}

.customer-text {
    font-size: clamp(14px, 1vw, 15px);
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

/* --- レスポンシブ --- */
@media (max-width: 900px) {
    .customer-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

@media (max-width: 768px) {
    .customer-group {
        margin-bottom: 0px;
    }
}

.faq-section {
    padding: 100px 20px;
    background-color: var(--bg);
}

.faq-inner {
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-main-title {
    font-family: "Hiragino Maru Gothic ProN", sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text);
    font-weight: 800;
    margin-bottom: 10px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.is-open {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(243, 129, 46, 0.1);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    color: var(--text);
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s;
}

.q-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 900;
    margin-right: 15px;
    flex-shrink: 0;
}

.q-text {
    font-size: clamp(15px, 1vw + 12px, 17px);
    font-weight: 800;
    line-height: 1.4;
    flex: 1;
}

.faq-arrow {
    width: 35px;
    height: 35px;
    background-color: #f0f0f0;
    border-radius: 50%;
    position: relative;
    margin-left: 15px;
    transition: transform 0.3s, background-color 0.3s;
}

.faq-arrow::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-arrow {
    background-color: var(--primary);
}

.faq-item.is-open .faq-arrow::after {
    border-color: var(--white);
    transform: translate(-50%, -20%) rotate(-135deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    background-color: #fffaf0;
}

.faq-answer-inner {
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.a-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    font-weight: 900;
    flex-shrink: 0;
}

.faq-answer-content {
    line-height: 1.8;
    font-size: clamp(15px, 1vw + 12px, 17px);
    color: var(--text);
}

/* スマホ対応 */
@media (max-width: 600px) {

    .faq-question,
    .faq-answer-inner {
        padding: 20px 15px;
    }
}


@media (max-width: 850px) {
    .reason-header {
        margin-bottom: 20px;
    }

    .reason-row,
    .reason-row:nth-of-type(even) {
        flex-direction: column-reverse;
        gap: 30px;
        margin-bottom: 70px;
    }

    .reason-image {
        width: 100%;
        height: 100%;
        flex: none;
        overflow: hidden;
    }

    .reason-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .reason-text-content {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .reason-badge {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .reason-h {
        font-size: 20px;
    }

    .home-intro__inner {
        flex-direction: column;
        padding: 0;
    }

    .home-intro__main-visual {
        width: 60%;
        margin-bottom: 0;
        z-index: 2;
    }

    .home-intro__main-visual .img-wrapper img {
        height: 250px;
    }

    .home-intro__content {
        width: 75%;
        margin-left: auto;
        margin-right: 0;
        margin-top: -80px;
        padding: 100px 20px 60px 30px;
        z-index: 1;
    }

    .home-intro__sub-visual {
        width: 60%;
        align-self: flex-end;
        margin-top: -210px;
        position: relative;
        z-index: 3;
    }

    .home-intro__sub-visual .img-wrapper img {
        height: 250px;
    }

    .deco-group {
        right: 3%;
    }

    .customer-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-main-title {
        margin-bottom: 20px;
    }
}



@media (max-width: 600px) {

    .fv-copy {
        margin-bottom: 10px;
    }

    .fv-lead {
        font-size: 13px;
    }

    .home-intro {
        padding: 10px 0;
    }

    .home-intro__main-visual {
        width: 70%;
    }

    .home-intro__main-visual .img-wrapper img {
        height: 150px;
    }

    .home-intro__content {
        padding: 80px 20px 60px 20px;
    }

    .deco-group {
        right: 2px;
        top: -67px;
    }

    .deco-tree-large {
        width: 45px;
    }

    .deco-tree-small {
        top: 0;
        width: 40px;
        margin-left: -10px;
    }

    .intro-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .intro-text {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .btn-more {
        font-size: 13px;
    }

    .btn-more .icon-arrow {
        width: 25px;
        height: 25px;
        margin-left: 10px;
    }

    .btn-more .icon-arrow::after {
        top: 45%;
    }

    .home-intro__sub-visual .img-wrapper img {
        height: 130px;
    }

    .home-intro__sub-visual {
        margin-top: -220px;
    }

    .reason-header {
        margin-bottom: 20px;
    }

    .reason-section {
        padding: 50px 0px 5px 0px;
    }

    .reason-ja {
        font-size: 20px;
        margin-bottom: 0;
    }

    .reason-row,
    .reason-row:nth-of-type(even) {
        gap: 10px;
        margin-bottom: 40px;
    }

    .reason-badge {
        width: 50px;
        height: 50px;
        margin-bottom: 0px;
    }

    .reason-badge span {
        font-size: 9px;
        margin-bottom: 0px;
    }

    .reason-badge strong {
        font-size: 20px;
    }

    .reason-text-content {
        padding: 8px;
    }

    .reason-h {
        font-size: 17px;
    }

    .reason-p {
        font-size: 13px;
    }

    .service-ja {
        font-size: 20px;
        margin-bottom: 0;
    }

    .service-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .service-item {
        width: 95%;
        margin: 0 auto;
    }

    .service-section {
        padding: 20px 0;
    }

    .service-header {
        margin-bottom: 20px;
    }

    .service-item-title {
        font-size: 17px;
        padding-bottom: 5px;
    }

    .service-item-body {
        padding: 0 10px 15px 10px;
    }

    .service-item-text {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .cta-home-margin {
        margin-top: 15px;
    }

    .customer-section {
        padding: 30px 20px 80px 20px;
    }

    .customer-ja {
        font-size: 20px;
        margin-bottom: 0;
    }

    .customer-header {
        margin-bottom: 10px;
    }

    .customer-category-title {
        font-size: 16px;
        margin-top: 15px;
    }

    .customer-list {
        gap: 8px;
    }

    .customer-item {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 8px;
    }

    .customer-icon {
        flex: 0 0 35px;
        width: 40px;
        height: 40px;
    }

    .construction-section {
        padding: 20px 0 30px 0;
    }

    .construction-header {
        margin-bottom: 0px;
    }

    .construction-ja {
        font-size: 20px;
    }

    .construction-line {
        margin: 18px 0;
    }

    .customer-info {
        font-size: 15px;
    }

    .customer-text {
        font-size: 13px;
    }

    .btn-more-text {
        font-size: 13px;
        margin-right: 10px;
    }

    .btn-more-circle {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }

    .faq-section {
        padding: 30px 10px 60px 10px;
    }

    .faq-main-title {
        margin-bottom: 10px;
        font-size: 19px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-question {
        padding: 10px 20px;
    }

    .q-prefix {
        font-size: 15px;
    }

    .q-text {
        font-size: 13px;
    }

    .arrow {
        width: 10px;
        height: 10px;
    }

    .faq-answer-content {
        padding: 15px;
        font-size: 13px;
    }

    .site-margin {
        margin-top: 30px;
    }
}