@charset "utf-8";

.flow {
    .w1152 {
        padding: 80px 0 120px;

        .p-title {
            margin-bottom: 40px;
        }

        .flowlist {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 44px;

            @media(max-width:1150px) {
                grid-template-columns: repeat(2, 45%);
                grid-template-rows: auto;
                justify-content: center;
            }

            @media(max-width:767px) {
                display: flex;
                flex-direction: column;
            }

            .item {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;

                .num {
                    .top {
                        text-align: center;
                        font-family: var(--fmain);
                        font-weight: 500;
                        font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
                        color: #1e4d3e;
                    }

                    .bottom {
                        margin-top: -20px;
                        font-family: var(--fmain);
                        font-weight: 500;
                        font-size: clamp(3.75rem, 3.689rem + 0.26vw, 4rem);
                        line-height: 92px;
                        color: #1e4d3e;
                    }
                }

                .item-ttl {
                    font-family: var(--fmain);
                    font-weight: 500;
                    font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
                    text-align: center;
                    color: #1e4d3e;
                    margin-bottom: 16px;
                }

                .desc {
                    font-family: var(--fmain);
                    font-weight: 500;
                    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
                    text-align: left;
                    color: #000;
                    margin-bottom: 10px;

                    @media(max-width:1150px) {
                        margin-right: auto;
                    }

                    @media(max-width:1023px) {
                        margin-right: auto;
                        margin-left: auto;
                    }

                    @media(max-width:767px) {
                        width: 88%;
                    }
                }
            }

            .item::after {
                content: "";
                position: absolute;
                background: url(/system_panel/uploads/images/20251203195905234880.svg) no-repeat left/100% auto;
                width: 100%;
                height: 20px;
                bottom: 0;
                left: 0;

                @media(max-width:900px) {
                    content: none;
                }
            }
        }
    }
}

.faq {
    .w1152 {
        padding-bottom: 160px;

        @media(max-width:767px) {
            width: 93%;
        }

        .p-title {
            margin-bottom: 34px;
        }

        .itemlist {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 66px;

            @media(max-width:900px) {
                flex-direction: column;
                gap: 36px;
            }

            .link {
                display: flex;
                align-items: center;
                gap: 10px;
                font-family: var(--fmain);
                font-weight: bold;
                font-size: clamp(0.938rem, 0.862rem + 0.32vw, 1.25rem);
                text-align: left;
                color: #1e4d3e;
                padding: 14px 20px;
                border-radius: 28.5px;
                background: #fff;
                border: 3px solid #1e4d3e;

                img {
                    width: 20px;
                    height: auto;


                }
            }
        }

        .question {
            margin-bottom: 81px;

            .title {
                font-family: var(--fmain);
                font-weight: 600;
                font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
                text-align: left;
                color: #1e4d3e;
                margin-bottom: 40px;
            }

            .item {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin-bottom: 67px;
            }

            .column {
                display: grid;
                grid-template-columns: 41px auto;
                gap: 20px;
                align-items: center;

                @media(max-width:767px) {
                    gap: 8px;
                    grid-template-columns: 28px auto;
                }

                .qttl {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 1/1;
                    border-radius: 3px;
                    background: #1e4d3e;
                    font-family: var(--fmain);
                    font-weight: 600;
                    font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
                    text-align: left;
                    color: #fff;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                .attl {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 1/1;
                    border-radius: 3px;
                    background: transparent;
                    border: 3px solid #1e4d3e;
                    font-family: var(--fmain);
                    font-weight: 600;
                    font-size: clamp(0.875rem, 0.784rem + 0.39vw, 1.25rem);
                    text-align: left;
                    color: #1e4d3e;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                p {
                    font-family: var(--fmain);
                    font-weight: 600;
                    font-size: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem);
                    text-align: left;
                    color: #1e4d3e;

                    @media(max-width:900px) {
                        line-height: calc(20/14);
                    }
                }

            }

            .item:last-child {
                margin-bottom: 0;
            }


        }

        .question:last-child {
            margin-bottom: 0;
        }
    }
}