main {
    .recruit-page {
        width: 100%;
        margin-top: 100px;

        .greeting-area {
            width: 80%;
            margin: 0 auto;
            display: flex;


            .greeting-img-area {
                width: 45%;
                margin: 0 auto;

                img {
                    width: 70%;
                    margin: 0 auto;
                    display: block;
                    object-fit: cover;
                }
            }

            .greeting-text-area {
                width: 45%;
                margin: 0 auto;

                .greeting-text-title {
                    font-size: 18px;
                    font-weight: 500;
                    color: #454545;

                    h2 {}
                }

                .greeting-text {
                    margin-top: 60px;
                    line-height: 3;
                    font-size: 14px;
                    color: #666666;

                    p {}

                    .greeting-representative {
                        margin-top: 30px;
                        text-align: right;
                        font-weight: 700;

                        p {
                            font-weight: 700;
                        }
                    }
                }
            }
        }
    }

    .recruit-area {
        width: 100%;
        margin: 0 auto;
        margin-top: 80px;

        .recruit-title-area {
            text-align: center;

            .recruit-title {
                font-size: 18px;
                font-weight: bold;
                color: #454545;


                h3 {}
            }

            .recruit-sub-title {
                margin-top: 10px;
                font-size: 14px;
                color: #666666;

                p {}

            }
        }

        .recruit-detail-area {
            width: 60%;
            margin: 0 auto;
            margin-top: 60px;

            table {
                width: 100%;
                margin: 0 auto;

                th,
                td {
                    padding: 16px;
                    font-size: 14px;
                    line-height: 1.6;
                    color: #333;
                }

                th {
                    width: 40%;
                    font-weight: bold;
                }

                td {
                    width: 60%;
                }

                ul {
                    padding-left: 1.2em;

                    li {
                        margin-bottom: 8px;
                        position: relative;
                        padding-left: 1em;

                        &.recruit-message {
                            margin-top: 16px;
                            font-weight: bold;
                            font-size: 15px;
                        }
                    }
                }
            }
        }

    }
}