/* 
---------------------------------------------
                  Sub0101
--------------------------------------------- 
*/

/* cont1 */
.cont1 {
    background: url('../../img/about/overview-cont-bg01.jpg') center/cover no-repeat
}

.cont1 .cont-header {
    align-items: flex-end;
    text-align: right;
    color: #333;
}

.cont1 .headline {
    font-size: 50px;
}

.cont1 .headline span {
    color: var(--primary);
}

.cont1 .desc {
    color: #AEAEAE;
    font-size: var(--font-base);
    font-weight: 300;
}

@media (max-width:1280px) {
    .cont1 .cont-header {
        align-items: flex-start;
        text-align: left;
    }

    .cont1 .headline {
        font-size: 46px;
        line-height: 1.25;
        word-break: keep-all;
    }
}

@media (max-width:1024px) {
    .cont1 .headline {
        font-size: 36px;
        line-height: 1.3;
    }

    .cont1 .desc {
        line-height: 1.5;
    }
}

@media (max-width:768px) {
    .cont1 .headline {
        font-size: 28px;
        line-height: 1.35;
    }

    .cont1 .desc {
        font-size: var(--font-sm);
        line-height: 1.5;
    }
}

@media (max-width:480px) {
    .cont1 .headline {
        font-size: var(--font-2xl);
        line-height: 1.4;
    }

    .cont1 .desc {
        font-size: var(--font-xs);
        line-height: 1.45;
    }
}

/* cont2 */
.cont2 {
    position: relative;
}

.cont2 .hero-img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.cont2 .hero-img img {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    object-fit: cover;
    display: block;
    will-change: width, height, border-radius, box-shadow, transform, left, top;
    z-index: 1;
}

.cont2 .container {
    position: relative;
    z-index: 2;
    padding-top: 500px;
}

.cont2 .left {
    max-width: 810px;
    flex: 4;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.cont2 .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cont2 .headline {
    font-family: 'Outfit', sans-serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 1.1;
    transition: color .5s ease;
}

.cont2 .lead {
    color: #444;
    font-size: 36px;
    font-weight: 500;
    line-height: 54px;
    white-space: pre-line;
    transition: color .5s ease;
}

.cont2 .lead strong {
    font-weight: 700;
    transition: color .5s ease;
}

.cont2 .headline.blend,
.cont2 .lead.blend,
.cont2 .lead.blend strong,
.cont2 .lead.blend strong span {
    color: white;
    mix-blend-mode: difference;
}

.cont2 .lead.blend strong span {
    color: var(--primary);
}

.cont2 .greet-body {
    color: #777;
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 32px;
}

.cont2 .greet-body p {
    margin: 0 0 32px;
    white-space: pre-line;
}

.cont2 .greet-body p:last-child {
    margin-bottom: 0;
}

.cont2 .greet-body strong {
    font-weight: 700;
    color: #4990E1;
}

.cont2 .greet-body span {
    font-weight: 600;
}

.cont2 .ceo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cont2 .ceo img {
    width: 379px;
    height: 505px;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.cont2 .caption {
    margin-top: 34px;
    line-height: 1.2;
    display: flex;
    gap: 20px;
}

.cont2 .caption .role {
    color: #767676;
    font-size: var(--font-lg);
    font-weight: 700;
    line-height: 20px;
}

.cont2 .caption .name {
    font-size: var(--font-2xl);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 8.64px;
}

[lang="en"] .cont2 .caption .name {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

@media (max-width:1280px) {
    .cont2 .container {
        padding-top: 520px;
    }

    .cont2 .left {
        max-width: 760px;
        gap: 50px;
    }

    .cont2 .headline {
        font-size: 68px;
        line-height: 1.15;
    }

    .cont2 .lead {
        font-size: 30px;
        line-height: 1.4;
    }

    .cont2 .ceo img {
        width: 320px;
        height: 430px;
    }

    .cont2 .caption {
        margin-top: 24px;
        gap: 12px;
    }

    .cont2 .caption .name {
        letter-spacing: 4px;
    }
}

@media (max-width:1024px) {
    .cont2 .container {
        padding-top: 360px;
    }

    .cont2 .left {
        max-width: 100%;
        gap: 40px;
    }

    .cont2 .headline {
        font-size: 48px;
        line-height: 1.2;
    }

    .cont2 .lead {
        font-size: var(--font-3xl);
        line-height: 1.4;
        text-align: left;
    }

    .cont2 .greet-body p {
        font-size: var(--font-md);
    }

    .cont2 .ceo img {
        width: 300px;
        height: 420px;
    }

    .cont2 .caption {
        margin-top: 24px;
        gap: 12px;
    }
}

@media (max-width:820px) {
    .cont2 .cont-layout {
        flex-direction: column;
    }

    .cont2 .right {
        justify-content: center;
    }

    .cont2 .ceo {
        align-items: center;
    }
}

@media (max-width:768px) {
    .cont2 .container {
        padding-top: 195px;
    }

    .cont2 .cont-layout {
        gap: 30px;
    }

    .cont2 .left {
        gap: 30px;
    }

    .cont2 .headline {
        font-size: 36px;
        line-height: 1.25;
    }

    .cont2 .lead {
        font-size: var(--font-xl);
        line-height: 1.45;
    }

    .cont2 .ceo img {
        width: 260px;
        height: auto;
    }

    .cont2 .caption {
        margin-top: 16px;
        gap: 10px;
    }

    .cont2 .caption .role {
        font-size: var(--font-md);
    }

    .cont2 .caption .name {
        font-size: var(--font-lg);
    }
}

@media (max-width:480px) {
    .cont2 .container {
        padding-top: 200px;
    }

    .cont2 .left {
        gap: 25px;
    }

    .cont2 .greet-body p {
        margin-bottom: 20px;
    }

    .cont2 .headline {
        font-size: 30px;
        line-height: 1.3;
    }

    .cont2 .lead {
        font-size: var(--font-lg);
        line-height: 1.4;
    }

    [lang="en"] .cont2 .lead {
        white-space: normal;
    }

    .cont2 .greet-body p {
        font-size: var(--font-base);
        line-height: 1.6;
    }

    .cont2 .ceo img {
        width: 220px;
        height: auto;
    }

    .cont2 .caption .role {
        font-size: var(--font-base);
    }

    .cont2 .caption .name {
        font-size: var(--font-md);
    }
}

/* cont3 */
.cont3 .headline {
    margin-bottom: 40px;
    color: #0C2133;
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.cont3 .cards {
    display: grid;
    grid-template-columns: 348px 348px 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    color: white;
}

.cont3 .card {
    position: relative;
    display: flex;
    overflow: hidden;
    isolation: isolate;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cont3 .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    background-image: inherit;
    transform: scale(1);
    transition: transform 0.9s ease;
    z-index: -1;
    will-change: transform;
}

.cont3 .card:hover::before {
    transform: scale(1.1);
}

.cont3 .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.5s ease;
    will-change: transform;
}

.cont3 .meta {
    display: inline-block;
    position: absolute;
    color: #BCBCBC;
    font-size: var(--font-md);
    font-weight: 400;
    line-height: 27px;
}

.cont3 .text {
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
    text-align: left;
}

.cont3 .card.vert {
    min-height: 680px;
}

.cont3 .card:nth-of-type(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    background-image: url('../../img/about/visual-bg01.png');
}

.cont3 .card:nth-of-type(1) .meta {
    left: 32px;
    top: 40px;
}

.cont3 .card:nth-of-type(1) .text {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.5;
    white-space: pre-line;
}

.cont3 .card:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
    background-image: url('../../img/about/visual-bg02.png');
}

.cont3 .card:nth-of-type(2) .meta {
    right: 32px;
    top: 40px;
}

.cont3 .card:nth-of-type(2) .text {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.2;
}

.cont3 .card.horiz {
    min-height: 330px;
}

.cont3 .card.horiz .text {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
}

.cont3 .card:nth-of-type(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    background-image: url('../../img/about/visual-bg03.png');
}

.cont3 .card:nth-of-type(3) .meta {
    left: 32px;
    top: 40px;
    color: white;
    font-weight: 300;
    text-align: left;
}

.cont3 .card:nth-of-type(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    background-image: url('../../img/about/visual-bg04.png');
}

.cont3 .card:nth-of-type(4) .meta {
    left: 32px;
    bottom: 40px;
    text-align: left;
}

.cont3 .card:nth-of-type(4) .text {
    margin-bottom: 60px;
}

@media (max-width:1280px) {
    .cont3 .cards {
        grid-template-columns: 320px 320px 1fr;
        gap: 20px;
    }

    .cont3 .card.vert {
        min-height: 600px;
    }

    .cont3 .card.horiz {
        min-height: 250px;
    }

    .cont3 .card-inner {
        padding: 32px 28px;
    }

    .cont3 .card:nth-of-type(1) {
        border-top-right-radius: 60px;
        border-bottom-left-radius: 60px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont3 .card:nth-of-type(2) {
        border-top-left-radius: 60px;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 60px;
        border-top-right-radius: 0;
    }

    .cont3 .card:nth-of-type(3) {
        border-top-right-radius: 60px;
        border-bottom-left-radius: 60px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont3 .card:nth-of-type(4) {
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 0;
    }

    .cont3 .card:nth-of-type(1) .text {
        font-size: 40px;
        line-height: 1.45;
    }

    .cont3 .card:nth-of-type(2) .text {
        font-size: 64px;
        line-height: 1.2;
    }

    .cont3 .card.horiz .text {
        font-size: 30px;
        line-height: 1.4;
    }

    .cont3 .card:nth-of-type(4) .text {
        margin-bottom: 40px;
    }
}

@media (max-width:1024px) {
    .cont3 .headline {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .cont3 .cards {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px;
    }

    .cont3 .card.vert {
        min-height: 380px;
    }

    .cont3 .card.horiz {
        min-height: 200px;
    }

    .cont3 .card:nth-of-type(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .cont3 .card:nth-of-type(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    .cont3 .card:nth-of-type(3) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .cont3 .card:nth-of-type(4) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .cont3 .card:nth-of-type(1) {
        border-top-right-radius: 48px;
        border-bottom-left-radius: 48px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont3 .card:nth-of-type(2) {
        border-top-left-radius: 48px;
        border-bottom-right-radius: 48px;
        border-bottom-left-radius: 48px;
        border-top-right-radius: 0;
    }

    .cont3 .card:nth-of-type(3) {
        border-top-right-radius: 32px;
        border-bottom-left-radius: 32px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont3 .card:nth-of-type(4) {
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
        border-bottom-right-radius: 32px;
        border-bottom-left-radius: 0;
    }

    .cont3 .card-inner {
        padding: 24px 20px;
    }

    .cont3 .meta {
        font-size: var(--font-base);
        line-height: 1.4;
    }

    .cont3 .card:nth-of-type(1) .text {
        font-size: 30px;
        line-height: 1.4;
    }

    .cont3 .card:nth-of-type(2) .text {
        font-size: 44px;
        line-height: 1.2;
    }

    .cont3 .card.horiz .text {
        font-size: 24px;
        line-height: 1.4;
    }

    .cont3 .card:nth-of-type(4) .text {
        margin-bottom: 0;
    }

    .cont3 .card:nth-of-type(1) .meta,
    .cont3 .card:nth-of-type(2) .meta,
    .cont3 .card:nth-of-type(3) .meta {
        top: 30px;
    }

    .cont3 .card:nth-of-type(4) .meta {
        bottom: 30px;
    }
}

@media (max-width:768px) {
    .cont3 .cards {
        gap: 15px;
    }

    .cont3 .card.vert {
        min-height: 250px;
    }

    .cont3 .card.horiz {
        min-height: 250px;
    }

    .cont3 .card:nth-of-type(1) {
        border-top-right-radius: 30px;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont3 .card:nth-of-type(2) {
        border-top-left-radius: 30px;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
        border-top-right-radius: 0;
    }

    .cont3 .card:nth-of-type(3) {
        border-top-right-radius: 30px;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont3 .card:nth-of-type(4) {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 0;
    }

    .cont3 .card:nth-of-type(1) .text {
        font-size: 24px;
        line-height: 1.4;
    }

    .cont3 .card:nth-of-type(2) .text {
        font-size: 32px;
        line-height: 1.2;
    }

    .cont3 .card.horiz .text {
        font-size: var(--font-xl);
        line-height: 1.4;
    }

    .cont3 .card:nth-of-type(1) .meta {
        left: 20px;
        top: 20px;
    }

    .cont3 .card:nth-of-type(2) .meta {
        right: 20px;
        top: 20px;
    }

    .cont3 .card:nth-of-type(3) .meta {
        left: 20px;
        top: 20px;
    }

    .cont3 .card:nth-of-type(4) .meta {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width:480px) {
    .cont3 .cards {
        gap: 10px;
    }

    .cont3 .card.vert {
        min-height: 250px;
    }

    .cont3 .card.horiz {
        min-height: 250px;
    }

    .cont3 .card:nth-of-type(1) {
        border-top-right-radius: 25px;
        border-bottom-left-radius: 25px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont3 .card:nth-of-type(2) {
        border-top-left-radius: 25px;
        border-bottom-right-radius: 25px;
        border-bottom-left-radius: 25px;
        border-top-right-radius: 0;
    }

    .cont3 .card:nth-of-type(3) {
        border-top-right-radius: 25px;
        border-bottom-left-radius: 25px;
        border-top-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .cont3 .card:nth-of-type(4) {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        border-bottom-left-radius: 0;
    }

    .cont3 .meta {
        font-size: var(--font-sm);
        line-height: 1.4;
    }

    .cont3 .card:nth-of-type(1) .text {
        font-size: var(--font-xl);
        line-height: 1.4;
    }

    .cont3 .card:nth-of-type(2) .text {
        font-size: var(--font-3xl);
        line-height: 1.2;
    }

    .cont3 .card.horiz .text {
        font-size: var(--font-lg);
        line-height: 1.4;
    }
}

/* cont4 */
.cont4 {
    background: url('../../img/about/overview-cont-bg03.jpg') center/cover no-repeat
}

.cont4 .cont-header {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
}

.cont4 img {
    width: 51px;
    height: 56px;
}

.cont4 .headline {
    font-size: 40px;
    font-weight: 200;
    text-align: center;
}

@media (max-width:1280px) {
    .cont4 .cont-header {
        gap: 28px;
    }

    .cont4 img {
        width: 44px;
        height: 48px;
    }

    .cont4 .headline {
        font-size: 32px;
        line-height: 1.4;
        font-weight: 200;
        word-break: keep-all;
    }
}

@media (max-width:1024px) {
    .cont4 img {
        width: 40px;
        height: 44px;
    }

    .cont4 .headline {
        font-size: 28px;
        line-height: 1.45;
        font-weight: 300;
    }
}

@media (max-width:768px) {
    .cont4 img {
        width: 38px;
        height: 42px;
    }

    .cont4 .headline {
        font-size: var(--font-2xl);
    }
}

@media (max-width:480px) {
    .cont4 .cont-header {
        gap: 14px;
    }

    .cont4 img {
        width: 32px;
        height: 35px;
    }

    .cont4 .headline {
        font-size: var(--font-lg);
    }
}