@charset "UTF-8";

.recruit-details {

    .content-box {
        display: flex;
        flex-direction: column;
        gap: 7rem;

        @media screen and (max-width: 767px) {
          gap: 4rem;
        }

        .recruit-item {

            & h3 {
                margin-top: 0;
            }

            & .common-elip-button {
                margin-top: 4rem;

                @media screen and (max-width: 767px) {
                  margin-top: 2rem;
                }
            }

            .item-table-type {
                display: flex;
                flex-direction: column;
                gap: 5rem;

                @media screen and (max-width: 767px) {
                  gap: 3rem;
                }

                .type-name {
                    margin-bottom: 3rem;
                }

                .description {
                    margin-bottom: 2rem;
                    font-size: 2rem;
                    color: var(--primary-color);
                    font-weight: bold;
                    line-height: 1;
                }

            }

        }
    }

    /* 募集要項 */

    /* 応募方法 */
    .sec-apply {

        .detail-table {

            & td {

                & ol {
                    padding-left: 2rem;

                    & li {
                        list-style: decimal;

                        &::marker {
                            color: var(--primary-color);

                        }
                    }
                }

                & a {
                    text-decoration: underline;
                    color: var(--primary-color);
                }
            }

        }
    }

}