@charset "utf-8";

/* ---------- 
section
----------*/
section {
    margin-bottom: 80px;
}
.sec-text {
    margin-bottom: 80px;
    font-size: clamp(16px, 1.14vw, calc(16px * var(--ratio)));
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2.125;
}
@media screen and (max-width: 700px) {
    section {
        margin-bottom: 60px;
    }
    .sec-text {
        margin-bottom: 60px;
        font-size: calc(15px / var(--fs-base) * 1rem);
        line-height: 2;
    }
}


/* ---------- 
transition
----------*/
@media screen and (max-width: 700px) {
    .transition-img {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .transition-img::-webkit-scrollbar {
        height: 10px;
    }
    .transition-img::-webkit-scrollbar-thumb {
        background-color: var(--color-707070);
        border-radius: 8px;
    }
    .transition-img img {
        max-width: none;
    }
}

/* ---------- 
timeline
----------*/
.timeline .timeline-list {
    position: relative;
    padding-bottom: 20px;
}
.timeline .timeline-list::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 100%;
    background: linear-gradient(180deg, #88DDFF 0%, #1D3C87 100%);
    top: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(
        0 0, /* x y*/
        100% 0,
        100% calc(100% - 35px),
        50% 100%,
        0 calc(100% - 35px)
    );
}
.timeline .timeline-list li {
    margin-bottom: 20px;
}
.timeline .timeline-list li h3 {
    position: relative;
    margin-bottom: 10px;
    padding-left: 100px;
    font-size: clamp(44px, 3.14vw, calc(44px * var(--ratio)));
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}
.timeline .timeline-list li h3:before {
    position: absolute;
    content: "";
    width: 66px;
    height: 13px;
    background: url(../../../images/company/history/timeline-line.png) no-repeat;
    background-size: contain;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
}
.timeline .timeline-list li dl {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    padding-left: 100px;
    font-size: clamp(16px, 1.14vw, calc(16px * var(--ratio)));
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 2.125;
}
.timeline .timeline-list li dl dt {
    width: 5.3%;
}
.timeline .timeline-list li dl dd {
    width: 94.6%;
}
.en .timeline .timeline-list li dl dt {
    width: 13%;
    padding-right: 10px;
    overflow-wrap: break-word;
}
.en .timeline .timeline-list li dl dd {
    width: 87%;
}
@media screen and (max-width: 700px) {
    .timeline {
        margin-bottom: 30px;
    }
    .timeline .timeline-list {
        padding-bottom: 0;
    }
    .timeline .timeline-list li h3 {
        font-size: calc(44px / var(--fs-base) * 1rem);
    }
    .timeline .timeline-list li dl {
        font-size: calc(15px / var(--fs-base) * 1rem);
        line-height: 2;
    }
    .timeline .timeline-list li dl dt {
        width: 20.5%;
    }
    .timeline .timeline-list li dl dd {
        width: 79.5%;
    }
    .en .timeline .timeline-list li dl dt {
        width: 100%;
    }
    .en .timeline .timeline-list li dl dd {
        width: 100%;
    }
}


/* ---------- 
btn-wrap
----------*/
.btn-wrap {
    margin-bottom: 80px;
}
@media screen and (max-width: 700px) {
    .btn-wrap {
        margin-bottom: 60px;
    }
}