.text-image-section {
    background-color: #fafaf8;
    padding: 100px 20px;
    overflow: hidden;
}

.text-image-section__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.text-image-section__text {
    flex: 1;
    max-width: 600px;
}

.text-image-section__title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.text-image-section__description {
    font-size: 18px;
    line-height: 2;
    color: #333;
    margin-bottom: 25px;
}

.text-image-section__image-wrapper {
    flex: 1;
    position: relative;
    margin-right: -100px;
}

.text-image-section__image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .text-image-section {
        padding: 100px 20px;
    }

    .text-image-section__inner {
        gap: 60px;
    }

    .text-image-section__title {
        font-size: 36px;
    }

    .text-image-section__description {
        font-size: 16px;
    }

    .text-image-section__image-wrapper {
        margin-right: -50px;
    }
}

@media (max-width: 768px) {
    .text-image-section {
        padding: 80px 20px;
    }

    .text-image-section__inner {
        flex-direction: column;
        gap: 40px;
    }

    .text-image-section__text {
        max-width: 100%;
    }

    .text-image-section__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .text-image-section__description {
        font-size: 15px;
        line-height: 1.9;
    }

    .text-image-section__image-wrapper {
        margin-right: 0;
        width: 100%;
    }
}

.voice-section {
    background: url('../img/member/bg_voice.jpg') center center/cover no-repeat;
    padding: 100px 20px 180px;
    position: relative;
    overflow: hidden;
}

.voice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: rotate(-15deg);
    transform-origin: center;
    pointer-events: none;
}

.voice-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.voice-section__header {
    text-align: center;
    margin-bottom: 80px;
}

.voice-section__subtitle {
    font-size: 18px;
    color: #e85d3c;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.voice-section__title {
    font-size: 60px;
    font-weight: 900;
    color: #1a1a1a;
}

.voice-section__items {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

/* Voice Item */
.voice-item {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.voice-item--reverse {
    flex-direction: row-reverse;
}

.voice-item:nth-of-type(odd) {
    justify-content: flex-end;
}

.voice-item__image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    flex-shrink: 0;
    width: 350px;
    z-index: 1;
}

.voice-item:nth-of-type(odd) .voice-item__image-wrapper {
    right: inherit;
    left: 0;
}

.voice-item__image {
    width: 100%;
    height: auto;
    display: block;
}

.voice-item__profile {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.voice-item__content {
    position: relative;
    display: flex;
    flex-basis: calc(100% - 340px);
    background-color: #fff;
    padding: 60px;
    top: 60px;
}

.voice-item__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, #ddd 1px, transparent 1px),
        linear-gradient(to bottom, #ddd 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.voice-item__message {
    position: relative;
    z-index: 1;
}

.voice-item__headline {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.voice-item__headline-highlight {
    background: linear-gradient(transparent 60%, #fff59d 60%);
    padding: 2px 0;
}

.voice-item__text {
    font-size: 18px;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
    &:last-child {
        margin-bottom: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .voice-section {
        padding: 80px 20px;
    }

    .voice-section__title {
        font-size: 38px;
    }

    .voice-section__items {
        gap: 75px;
    }

    .voice-item {
        gap: 40px;
    }

    .voice-item__image-wrapper {
        width: 280px;
    }

    .voice-item__content {
        flex-basis: calc(100% - 270px);
        padding: 40px;
        top: 20px;
    }

    .voice-item__headline {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .voice-section {
        padding: 80px 20px;
    }

    .voice-section__header {
        margin-bottom: 50px;
    }

    .voice-section__subtitle {
        font-size: 14px;
    }

    .voice-section__title {
        font-size: 32px;
    }

    .voice-section__items {
        gap: 0;
    }

    .voice-item{
        margin-bottom: 60px;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
        &:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
    }

    .voice-item,
    .voice-item--reverse {
        flex-direction: column;
        gap: 20px;
    }

    .voice-item__image-wrapper {
        position: static;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .voice-item__content {
        top: 0;
        padding: 30px 25px;
    }

    .voice-item__headline {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .voice-item__text {
        font-size: 14px;
    }

    .voice-item__profile{
        margin-top: 10px;
    }
}


        /* Workplace Data Section */
.workplace-data-section {
    background: url('../img/member/bg_workplace.jpg') center center/cover no-repeat;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.workplace-data-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1557683316-973673baf926');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
}

.workplace-data-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workplace-data-section__header {
    text-align: center;
    margin-bottom: 70px;
}

.workplace-data-section__subtitle {
    font-size: 18px;
    color: #2980b9;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    font-weight: 600;
}

.workplace-data-section__title {
    font-size: 60px;
    font-weight: 900;
    color: #1a1a1a;
}

.workplace-data-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

/* Data Card */
.data-card {
    background-color: #fff;
    padding: 0 30px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.data-card__label {
    background-color: #177083;
    color: #fff;
    font-size: 29px;
    font-weight: bold;
    padding: 11px 27px 13px;
    display: inline-block;
    margin-bottom: 25px;
    margin-top: -30px;
    line-height: 1;
}

.data-card__icon {
    margin: 0 auto 20px;
}

.data-card__icon img {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
}

.data-card__value {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.data-card__description {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .workplace-data-section {
        padding: 80px 20px;
    }

    .workplace-data-section__title {
        font-size: 36px;
    }

    .workplace-data-section__grid {
        gap: 30px;
    }

    .data-card {
        padding: 40px 30px;
    }

    .data-card__value {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .workplace-data-section {
        padding: 80px 20px;
    }

    .workplace-data-section__header {
        margin-bottom: 50px;
    }

    .workplace-data-section__subtitle {
        font-size: 14px;
    }

    .workplace-data-section__title {
        word-break: keep-all;
        font-size: 28px;
        line-height: 1.4;
    }

    .workplace-data-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .data-card {
        padding: 0 15px 40px;
    }

    .data-card__label {
        font-size: 26px;
        padding: 10px 25px;
        margin-bottom: 30px;
    }

    .data-card__value {
        font-size: 27px;
    }

    .data-card__description {
        font-size: 14px;
    }
}


.schedule-section {
    background-color: #F2F5E5;
    padding: 100px 20px;
}

.schedule-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.schedule-section__subtitle {
    font-size: 18px;
    color: #8b9a3c;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    font-weight: 600;
}

.schedule-section__title {
    font-size: 60px;
    font-weight: 900;
    color: #1a1a1a;
}

.schedule-section__note {
    font-size: 40px;
    color: #1a1a1a;
}

.schedule-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

/* Schedule Card */
.schedule-card {
    background-color: #fff;
    padding: 35px;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.schedule-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.schedule-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.schedule-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-card__name {
    font-size: 34px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.3;
}

.schedule-card__time {
    font-size: 23px;
}

.schedule-card__timeline {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Timeline Item */
.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: -10px;
    width: 2px;
    background-color: #d0d0d0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item__marker {
    width: 14px;
    height: 14px;
    background-color: #8b9a3c;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.timeline-item__content {
    flex: 1;
    display: flex;
    gap: 20px;
}

.timeline-item__time {
    font-size: 18px;
    min-width: 120px;
    flex-shrink: 0;
}

.timeline-item__description {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

/* Compact spacing for cards with more items */
.schedule-card--compact .timeline-item {
    padding-bottom: 22px;
}

/* Responsive */
@media (max-width: 1024px) {
    .schedule-section {
        padding: 80px 20px;
    }

    .schedule-section__grid{
        gap: 30px;
    }

    .schedule-section__title {
        font-size: 36px;
    }

    .schedule-section__note{
        font-size: 30px;
    }

    .schedule-card {
        padding: 30px 20px;
    }

    .schedule-card__name {
        margin-bottom: 5px;
        font-size: 26px;
    }

    .schedule-card__time{
        min-width: 110px;
        font-size: 18px;
    }

    .schedule-card__avatar{
        width: 80px;
        height: 80px;
    }

    .timeline-item__content{
        gap: 5px;
    }

    .timeline-item__time{
        font-size: 16px;
    }

    .item__description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 60px 20px;
    }

    .schedule-section__header {
        margin-bottom: 40px;
    }

    .schedule-section__subtitle {
        font-size: 14px;
    }

    .schedule-section__title {
        font-size: 28px;
    }

    .schedule-section__note {
        font-size: 16px;
    }

    .schedule-section__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-card {
        padding: 35px 20px;
    }

    .schedule-card__header {
        gap: 8px;
        margin-bottom: 30px;
    }

    .schedule-card__avatar {
        width: 80px;
        height: 80px;
    }

    .schedule-card__name {
        font-size: 22px;
    }

    .schedule-card__time {
        font-size: 16px;
    }

    .timeline-item {
        gap: 15px;
        padding-bottom: 25px;
    }

    .timeline-item__content {
        flex-direction: column;
        gap: 0;
    }

    .timeline-item__time {
        color: #8b9a3c;
        font-weight: bold;
        font-size: 16px;
        min-width: auto;
    }

    .timeline-item__description {
        font-size: 18px;
    }

    .schedule-card--compact .timeline-item {
        padding-bottom: 25px;
    }
}

/* Factory Overview Section */
.factory-section {
    background-color: #fff;
    padding: 100px 20px;
}

.factory-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.factory-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.factory-section__subtitle {
    font-size: 18px;
    color: #8b9a3c;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    font-weight: 600;
}

.factory-section__title {
    font-size: 60px;
    font-weight: 900;
    color: #1a1a1a;
}

/* Slideshow */
.slideshow {
    margin-bottom: 60px;
}

.slideshow__main {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 20px;
}

.swiper-slide {
    position: relative;
}

.slideshow__image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.slideshow__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 40px 30px 20px;
    font-size: 20px;
    font-weight: bold;
    z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 50%;
    color: #333;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 28px !important;
    font-weight: bold;
    color: rgba(255, 255, 255, .6);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(0, 0, 0, .6);
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: rgba(255, 255, 255, .8);
}

/* Thumbnails */
.slideshow__thumbnails {
    height: auto;
}

.slideshow__thumbnails .swiper-slide {
    width: 120px;
    height: 120px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 3px solid transparent;
}

.slideshow__thumbnails .swiper-slide:hover {
    opacity: 1;
}

.slideshow__thumbnails .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #8b9a3c;
}

.slideshow__thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.factory-section__cta {
    text-align: center;
}

.factory-section__button {
    display: inline-block;
    padding: 25px 60px;
    border: 2px solid #e85d3c;
    color: #e85d3c;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.factory-section__button:hover {
    background-color: #e85d3c;
    color: #fff;
}

.factory-section__button::after {
    content: '→';
    margin-left: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .factory-section {
        padding: 80px 20px;
    }

    .factory-section__title {
        font-size: 36px;
    }

    .slideshow__main {
        height: 500px;
    }

    .slideshow__image {
        height: 500px;
    }

    .slideshow__caption {
        font-size: 18px;
    }

    .slideshow__thumbnails .swiper-slide {
        width: 100px;
        height: 75px;
    }
}

@media (max-width: 768px) {
    .factory-section {
        padding: 60px 20px;
    }

    .factory-section__header {
        margin-bottom: 40px;
    }

    .factory-section__subtitle {
        font-size: 14px;
    }

    .factory-section__title {
        font-size: 28px;
    }

    .slideshow {
        margin-bottom: 50px;
    }

    .slideshow__main {
        height: 300px;
    }

    .slideshow__image {
        height: 300px;
    }

    .slideshow__caption {
        font-size: 16px;
        padding: 30px 20px 15px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 20px;
    }

    .slideshow__thumbnails .swiper-slide {
        width: 80px;
        height: 60px;
    }

    .factory-section__button {
        padding: 20px 40px;
        font-size: 18px;
    }
        
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 22px !important;
    }

}
