#working-style {
    margin: 0 calc(50% - 50vw);
    padding: 90px calc(50vw - 50%);
    /* background-color: #e0edff; */
    background: linear-gradient(180deg, #e0edff 0%, #ffffff 100%);
}

/* .working-style-content {
    margin: 0 calc(50% - 50vw);
    padding: 2rem calc(50vw - 50%);
    background-color: #e0edff;
} */

.working-style-voice {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.working-style-voice-item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 30%;
    padding: 1em;
    gap: 1em;
    background-color: #ffffff;

    & img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

.balloon2-left {
    position: relative;
    display: inline-block;
    margin: 1.5em 0 1.5em 15px;
    padding: 7px 15px;
    min-width: 300px;
    height: fit-content;
    color: #555;
    background: #ffffff;
    box-sizing: border-box;
    border-radius: 15px;
    flex: 1;
}

.balloon2-left:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 12px solid #ffffff;
    z-index: 2;
}

.balloon2-left:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -14px;
    border: 15px solid transparent;
    border-right: 15px solid #e0edff;
    z-index: 1;
}

/* .working-style-data h4 {
    font-size: 1.75rem;
    color: #217AC5;
    margin: 1em 0;
    text-align: center;
} */

.working-style-data-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 1em;

    & img {
        width: 100px;
        height: auto;
    }
}

.working-style-data-item-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transform: translateY(-5px);
    /* gap: 1em; */

    & img {
        filter: brightness(0) saturate(100%) invert(32%) sepia(89%) saturate(888%) hue-rotate(178deg) brightness(101%) contrast(86%);
        padding: 1em;
        margin: 0;
    }

    /* & p{
        font-size: 2rem;
        font-weight: bold;
        color: #217AC5;
        margin: 0;
        padding: 0;
    } */
}

.working-style-data-item-content-text {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5em;
}

.working-style-data-item-content-text .number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #217AC5;
}

.working-style-data-item-content-text .unit {
    font-size: 1.5rem;
    font-weight: bold;
    color: #217AC5;
    transform: translateY(-35%);
}

.working-style-data-item-year {
    font-size: 1rem;
    color: grey;
    margin-top: -20px;
    margin-bottom: -4px;
}

.voice-container {
    position: relative;
    margin-bottom: 30px;
}

.click-image {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 100px;
    height: 50px;
    /* margin: 0 auto; */
}

.voice-modal-checkbox {
    display: none;
}

.voice-modal-open-button {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 30%;
    padding: 1rem;
    gap: 1em;
    background-color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    border-radius: 15px;
    /* border: 1px solid #217AC5; */
    box-shadow: 10px 5px 5px gray;

    & img {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }
}

.voice-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 60%);
}

.voice-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    transform: translate(50%, -50%);
}

.voice-modal-wrapper {
    position: relative;
    width: 80%;
    max-width: 800px;
    max-height: 70%;
    padding: 30px 20px;
    margin: auto;
    overflow: scroll;
    background-color: #FEFEFE;
    border-radius: 5px;
}

.interview-content {
    padding: 0 0.5rem;
    margin-top: 80px;
}

.voice-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;

    & img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }
}

.voice-modal-checkbox:checked+.voice-modal {
    display: flex;
}

.working-style-voice-item-text {
    /* margin: 20px 0; */

    & p {
        /* font-weight: bold; */
        line-height: 1.75;
        /* text-align: center; */
    }
}

.voice-item-img {
    & img {
        border-radius: 15px;
    }
}

.voice-title {
    font-size: 1.5rem;
    /* font-weight: bold; */
    /* color: #217AC5; */
    /* margin: 0;
    padding: 0; */
}

.voice-message-container {
    margin-top: 100px;

    & h1 {
        color: #217AC5;
        text-align: left;
    }
}

.voice-message-item {
    height: 200px;
}

.voice-message-item-name {
    font-size: 1.25rem;
    text-align: right;
}

.voice-item-name-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
    margin-top: 1em;
}

.working-style-voice-item-name {
    font-size: 1rem;
}

.working-style-voice-item-name-sub {
    font-size: 1rem;
}

.working-style-voice-item-name-sub::after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 1rem;
    margin-left: 0.5em;
}

.interview-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: -100px auto -20px auto;
}

.interview-container::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 0 0 15px 15px #ffffff;
}

.interview-image {
    width: 100%;
    height: 100%;
}

.recruitment-year {
    display: block;
    width: 100%;
    text-align: right;
    margin-top: -30px;
}

@media screen and (max-width: 1024px) {
    .voice-modal-open-button {
        width: 45%;
    }
}

@media screen and (max-width: 820px) {
    .working-style-voice-item {
        flex-direction: column;
        text-align: center;
    }

    .balloon2-left {
        min-width: 250px;
        margin: 1em 0;
    }

    .balloon2-left:before,
    .balloon2-left:after {
        display: none;
    }

    .working-style-data-item {
        gap: 1.5em;
    }

    .working-style-data-item-content {
        flex-direction: column;
        gap: 0.5em;
    }

    .recruitment-year {
        margin-top: -24px;
    }

}

@media screen and (max-width: 480px) {
    .balloon2-left {
        min-width: 200px;
        padding: 5px 10px;
    }

    .working-style-data-item-content {
        flex-direction: row;
    }

    .voice-modal-open-button {
        width: 100%;
    }

    .working-style-voice-item-text {
        & p {
            font-size: 1.125rem;
        }
    }

    .interview-container {
        width: 300px;
        height: 300px;
        margin: -1rem auto 1rem auto;
    }

    .recruitment-year {
        margin-top: -20px;
    }

}