@import url('../root.css');

/* SP用スタイル */
@media screen and (max-width: 1024px) {
    main {
        .recruit-page {
            margin-top: 120px;

            .greeting-area {
                width: 90%;
                margin: 0 auto;
                display: block;

                .greeting-img-area {
                    width: 100%;
                    margin: 0 auto;
                    margin-bottom: 30px;

                    img {
                        width: 100%;
                        margin: 0 auto;
                        height: 40vh;
                        display: block;
                        object-fit: cover;
                    }
                }

                .greeting-text-area {
                    width: 100%;
                    margin: 0 auto;
                    margin-top: 60px;

                    .greeting-text-title {
                        font-size: var(--font-medium);
                        font-weight: 500;
                        color: #454545;
                        text-align: center;

                        h2 {
                            margin: 0;
                        }
                    }

                    .greeting-text {
                        margin-top: 30px;
                        line-height: 2.5;
                        font-size: var(--font-xs);
                        color: #666666;
                        text-align: left;

                        p {
                            margin: 0;
                        }

                        .greeting-representative {
                            margin-top: 20px;
                            text-align: right;

                            p {
                                margin: 0;
                            }
                        }
                    }
                }
            }
        }

        .recruit-area {
            margin-top: 120px;

            .recruit-title-area {
                text-align: center;
                margin-bottom: 30px;

                .recruit-title {
                    font-size: var(--font-medium);
                    font-weight: bold;
                    color: #454545;

                    h3 {
                        margin: 0;
                    }
                }

                .recruit-sub-title {
                    margin-top: 10px;
                    font-size: var(--font-small);
                    color: #666666;

                    p {
                        margin: 0;
                    }
                }
            }

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

                table {
                    width: 100%;
                    margin: 0 auto;
                    tr{
                        display: flex;
                        flex-direction: column;
                        th,
                        td {
                            padding: 12px;
                            font-size: var(--font-xs);
                            line-height: 1.6;
                            color: #333;
                        }
    
                        th {
                            width: 20%;
                            font-weight: bold;
                        }
    
                        td {
                            width: 70%;
                            margin: 0 auto;
                                                    }
    
                        ul {
                            padding-left: 0;
                            margin: 0;
    
                            li {
                                margin-bottom: 8px;
                                position: relative;
                                padding-left: 0;
    
                                &.recruit-message {
                                    margin-top: 16px;
                                    font-weight: bold;
                                    font-size: var(--font-small);
                                }
                            }
                        }

                    }

                }
            }
        }
    }
}
