@charset "UTF-8";
/* voice-introduction */
.voice-introduction {
    position: relative;
}
.voice-introduction__image {
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}
.voice-introduction-title {
    position: absolute;
    right: 48px;
    bottom: 48px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    min-width: 280px;
    border-radius: 16px 16px 0 16px;
    overflow: hidden;
    z-index: 2;
}
.voice-introduction-title__office {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    grid-column: span 2;
    padding: 12px;
    background: var(--color-navy-primary);
    color: var(--color-white-primary);
}
.voice-introduction-title__year {
    padding: 6px;
    text-align: center;
    background: var(--color-lightgray-primary);
}
.voice-introduction-title__career {
    padding: 6px;
    font-weight: 700;
    text-align: center;
    color: var(--color-white-primary);
    background: var(--color-turquoise-primary);
}
.voice-introduction-title__career.bg_orange {
  background: var(--color-orange-primary);
}
@media screen and (max-width:800px) {
    .voice-introduction {
        display: grid;
        gap: 20px;
    }
    .voice-introduction__image img {
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 0 0 16px 16px;
    }
    .voice-introduction-title {
        position: static;
    }  
}
.voice-excerpt {
    font-size: 3.0rem;
    font-weight: 500;
}
@media screen and (max-width:800px) {
    .voice-excerpt {
        font-size: 2.4rem;
    }
}
/* voice-content　社員の声のコンテンツ部分 */
.voice-content {
    line-height: 2;
}
.voice-content .heading {
    margin: 0 0 32px;
}
.voice-content .heading h3 {
    position: relative;
    font-size: 2.0rem;
    line-height: 1.5;
    margin: 0 0 20px;
    color: var(--color-turquoise-primary);
    font-weight: 700;
}
.voice-content .heading h3::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 80px;
    height: 4px;
    margin: 0 0 20px;
    background: var(--color-turquoise-primary);
}
.voice-content .heading p {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
}
.voice-content p:not(:last-child) {
    margin-bottom: 32px;
}
.voice-content img {
    overflow: hidden;
    border-radius: 16px;
}
@media screen and (max-width:800px) {
    .voice-content .heading h3 {
        font-size: 1.8rem;
    }
    .voice-content .heading p {
        font-size: 2.0rem;
    }
}

/* career-voice-slider */
.career-voice-slider__slider {
    align-items: stretch;
    margin: 0 0 40px;
}
.career-voice-item {
    width: 480px;
    height: auto;
}
.career-voice-slider__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.career-voice-slider__button {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-family: "Urbanist", sans-serif;
    cursor: pointer;
}
.career-voice-slider__button--prev::before,
.career-voice-slider__button--next::after {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    background: center/contain no-repeat;
}
.career-voice-slider__button--prev::before {
    background-image: url("../images/arrow-left-secondary.svg");
}
.career-voice-slider__button--next::after {
    background-image: url("../images/arrow-right-secondary.svg");
}
@media screen and (max-width:800px) {
    .career-voice-slider {
        display: grid;
        gap: 20px;
    }
    .career-voice-slider__slider {
        display: contents;
    }
    .career-voice-item {
        width: 100%;
    }
}