@charset "utf-8";

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

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

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

            @media(max-width:900px) {
                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: 24rem;
                        color: #1e4d3e;
                    }

                    .bottom {
                        margin-top: -20rem;
                        font-family: var(--fmain);
                        font-weight: 500;
                        font-size: 64rem;
                        line-height: 92rem;
                        color: #1e4d3e;
                    }
                }

                .item-ttl {
                    font-family: var(--fmain);
                    font-weight: 500;
                    font-size: 18px;
                    text-align: center;
                    color: #1e4d3e;
                    margin-bottom: 16rem;
                }

                .desc {
                    font-family: var(--fmain);
                    font-weight: 500;
                    font-size: 16px;
                    text-align: left;
                    color: #000;
                    margin-bottom: 10rem;
                }
            }

            .item::after {
                content: "";
                position: absolute;
                background: url(/system_panel/uploads/images/20251203195905234880.png) no-repeat left/contain;
                width: 100%;
                height: 7rem;
                bottom: 0;
                left: 0;

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

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

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

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

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

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

                img {
                    width: 20rem;
                    height: auto;


                }
            }
        }

        .question {
            margin-bottom: 81rem;

            .title {
                font-family: var(--fmain);
                font-weight: 600;
                font-size: 24px;
                text-align: left;
                color: #1e4d3e;
                margin-bottom: 40rem;

                @media(max-width:900px) {
                    font-size: 18px;
                }
            }

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

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


                .qttl {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 1/1;
                    border-radius: 3px;
                    background: #1e4d3e;
                    font-family: var(--fmain);
                    font-weight: 600;
                    font-size: 20px;
                    text-align: left;
                    color: #fff;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    @media(max-width:900px) {
                        font-size: 14px;
                    }
                }

                .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: 20px;
                    text-align: left;
                    color: #1e4d3e;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    @media(max-width:900px) {
                        font-size: 14px;
                    }
                }

                p {
                    font-family: var(--fmain);
                    font-weight: 600;
                    font-size: 20px;
                    text-align: left;
                    color: #1e4d3e;

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

            }

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


        }

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