@charset "UTF-8";


/*-------------------------------------------

    0. anker--reset
    1. anker--title
    2. anker--type01
    3. anker--type02
    4. anker--type03

    -------------------------------------------*/


/* anker--reset
----------------------------------------------------------------*/


/* anker--type02
----------------------------------------------------------------*/

.edit-area.type02 {
    /* padding: 100px 0 120px; */
    padding-bottom: 120px;
}

.edit-area.type02 .inner {}

.edit-area.type02 table {
    width: 100%;
}

.edit-area.type02 table tr {
    border-bottom: solid 1px #D8D8D8;
}

.edit-area.type02 table tr th {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-align: left;
    padding: 20px 0;
    width: 200px;
    vertical-align: top;
}

.edit-area.type02 table tr td {
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.08em;
    padding: 20px 0;
}

/* hover */
@media screen and (min-width: 1024px) {}

/* ~ipad pro */
@media screen and (max-width: 1024px) {}

/* ~sp */
@media screen and (max-width: 767px) {
    .edit-area.type02 {
        /* padding: 70px 0; */
        padding-bottom: 70px;
    }

    .edit-area.type02 .inner {}

    .edit-area.type02 table {}

    .edit-area.type02 table tr {}

    .edit-area.type02 table tr th {
        display: block;
        width: 100%;
        padding-bottom: 10px;
    }

    .edit-area.type02 table tr td {
        display: block;
        padding-top: 0;
    }
}




.filter {
    display: flex;
    gap: 100px;

    @media screen and (max-width: 767px) {
        gap: 20px;
    }

    .type {
        cursor: pointer;
        font-family: 'Noto Sans JP';
        font-weight: 500;
        font-size: 24px;
        line-height: 1;
        color: #000000;
        padding: 10px;
        border-bottom: 3px solid transparent;

        @media screen and (max-width: 767px) {
            font-size: 20px;
            padding: 7px;
        }
    }

    .type.active {
        border-bottom: 3px solid #c12b2b;
    }
}

.accordion-field {
    margin-top: 70px;

    @media screen and (max-width: 767px) {
        margin-top: 40px;
    }

    .accordion-title {
        cursor: pointer;
        position: relative;
        padding: 20px 0;
        border-bottom: 1px solid #000;
        font-family: 'Noto Sans JP';
        font-weight: 700;
        font-size: 22px;
        line-height: 1;
        color: #000000;

        @media screen and (max-width: 767px) {
            padding: 12px 0;
            font-size: 18px;
        }

        & span {
            position: relative;
            width: 28px;
            height: 28px;
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);

            &::before {
                content: "";
                width: 28px;
                height: 5px;
                background-color: #b20000;
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                margin: auto;
            }

            &::after {
                content: "";
                width: 5px;
                height: 28px;
                background-color: #b20000;
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                margin: auto;
                transition: ease 0.3s transform;
            }

            @media screen and (max-width: 767px) {
                width: 20px;
                height: 20px;
                right: 25px;

                &::before {
                    width: 20px;
                    height: 4px;
                }

                &::after {
                    width: 4px;
                    height: 20px;
                }
            }
        }
    }

    .accordion-content {
        display: none;

    }

    .close-btn {
        display: none;
    }
}

.accordion-field.opened {
    .accordion-title {
        & span {
            &::after {
                transform: rotate(90deg);
            }
        }
    }

    .accordion-content {
        display: block;
        margin-top: 20px;

        @media screen and (max-width: 767px) {
            margin-top: 10px;
        }

        & p {
            font-family: 'Noto Sans JP';
            font-weight: 400;
            font-size: 18px;
            line-height: 1;
            color: #000000;

            @media screen and (max-width: 767px) {
                font-size: 16px;
            }
        }
    }

    .close-btn {
        display: block;
        cursor: pointer;
        border: none;
        background: none;
        margin: 30px auto 0;
        width: fit-content;
        font-family: 'Noto Sans JP';
        font-weight: 400;
        font-size: 18px;
        line-height: 2;
        text-align: center;
        text-decoration-line: underline;
        text-underline-offset: 3px;
        color: #B20000;

        @media screen and (max-width: 767px) {
            margin: 20px auto 0;
            font-size: 16px;
        }
    }

}