@charset "UTF-8";

.areas {
    padding-top: 7.8rem;

    @media screen and (max-width: 767px) {
        padding-top: 4rem;
    }

    .area {
        margin-top: 7rem;
        margin-top: 4rem;

        .positions {
            padding: 0 12rem;

            @media screen and (max-width: 767px) {
                padding: 0;
            }

            .position {
                margin-bottom: 3rem;
                border: 0.2rem solid var(--blue);
                padding: 1.8rem 2.4rem;
                display: flex;
                justify-content: space-between;
                align-items: center;

                @media screen and (max-width: 767px) {
                    flex-direction: column;
                    gap: 1rem;
                    margin-bottom: 2rem;
                    padding: 2rem;
                }

                .name {
                    font-family: 'Noto Sans JP';
                    font-weight: 700;
                    font-size: 3rem;
                    line-height: 1;
                    letter-spacing: 0.05em;
                    color: var(--blue);

                    @media screen and (max-width: 767px) {
                        font-size: 2rem;
                    }
                }

                .view-more {
                    width: 27rem;
                    height: 5.8rem;
                    border-radius: 2.9rem;
                    background-color: var(--blue);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 1.4rem;

                    @media screen and (max-width: 767px) {
                        width: 20rem;
                        height: 4rem;
                        border-radius: 2rem;
                        gap: 1.2rem;
                    }

                    & p {
                        font-weight: 700;
                        color: #FFFFFF;

                        @media screen and (max-width: 767px) {
                            font-size: 1.5rem;
                        }
                    }

                    & img {
                        width: 9rem;

                        @media screen and (max-width: 767px) {
                            width: 6rem;
                        }
                    }
                }
            }
        }
    }
}