/* 
---------------------------------------------
                Sub 0103
--------------------------------------------- 
*/
body {
    background: var(--black-100);
}

/* cont1 */
.cont1 .container {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.cont1 .visual {
    width: 100%;
    aspect-ratio: 1705 / 530;
    border-radius: 20px;
    overflow: hidden;
}

.cont1 .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cont1 .copy {
    display: flex;
    flex-direction: column;
    gap: 45px;
    text-align: center;
}

.cont1 .headline {
    font-size: var(--font-headline46);
    font-weight: 700;
    line-height: 1.5;
    white-space: pre-line;
    word-break: keep-all;
}

.cont1 .desc {
    color: var(--black-900);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 1.6;
    white-space: pre-line;
    word-break: keep-all;
}

@media (max-width: 1440px) {
    .cont1 .container {
        gap: 60px;
    }

    .cont1 .copy {
        gap: 20px;
    }
}

@media (max-width: 1280px) {
    .cont1 .container {
        gap: 45px;
    }

    .cont1 .headline {
        font-size: var(--font-headline36);
    }
}

@media (max-width: 1024px) {
    .cont1 .container {
        gap: 30px;
    }

    .cont1 .copy {
        max-width: 100%;
        gap: 15px;
    }

    .cont1 .headline {
        font-size: var(--font-headline32);
    }

    .cont1 .desc {
        font-size: var(--font-md);
    }
}

@media (max-width: 768px) {
    .cont1 .container {
        gap: 25px;
    }

    .cont1 .visual {
        border-radius: 16px;
    }

    .cont1 .copy {
        gap: 8px;
    }

    .cont1 .headline {
        font-size: var(--font-4xl);
        line-height: 1.4;
    }

    .cont1 .desc {
        font-size: var(--font-base);
    }

    .cont1 .visual {
        aspect-ratio: 1000 / 530;
    }
}

@media (max-width: 480px) {
    .cont1 .visual {
        border-radius: 12px;
    }

    .cont1 .headline {
        font-size: var(--font-3xl);
    }

    .cont1 .desc {
        white-space: normal;
    }
}

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

.cont2 .panel {
    position: sticky;
    top: 0;
    min-height: 100vh;
    background: var(--black-100);
    display: flex;
    align-items: center;
}

.cont2 .panel:nth-child(1) {
    z-index: 1;
}

.cont2 .panel:nth-child(2) {
    z-index: 2;
}

.cont2 .panel:nth-child(3) {
    z-index: 3;
}

.cont2 .panel .container {
    width: 100%;
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
}

.cont2 .layout {
    display: flex;
    align-items: center;
    gap: 165px;
}

.cont2 .visual {
    position: relative;
    width: min(948px, 52vw);
    aspect-ratio: 948 / 1000;
    overflow: hidden;
    display: grid;
    min-height: 100vh;
    flex-shrink: 0;
}

.cont2 .visual img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 1 / 1;
    z-index: 0;
}

.cont2 .cover {
    grid-area: 1 / 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    justify-items: center;
    width: 100%;
    height: 100%;
    padding: 80px 0;
    row-gap: 12px;
    z-index: 2;
}

.cont2 .cover span {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 124px;
    line-height: 1.2;
    color: var(--white);
}

.cont2 .cover span:first-child {
    grid-row: 1;
}

.cont2 .cover span:last-child {
    grid-row: 3;
}

.cont2 .cover::before {
    content: "";
    grid-row: 2;
    width: 2px;
    height: 100%;
    background: var(--white);
}

.cont2 .content {
    display: flex;
    flex-direction: column;
    gap: 39px;
    color: var(--black-900);
}

.cont2 .block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cont2 .year {
    color: var(--black);
    font-size: var(--font-4xl);
    font-weight: 600;
    line-height: 1.6;
}

.cont2 .list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cont2 .item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cont2 .month {
    width: 32px;
    text-align: center;
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 1.6;
    flex-shrink: 0;
}

.cont2 .item p {
    color: var(--black-900);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 1.6;
    word-break: keep-all;
    margin: 0;
}

@media (max-width: 1440px) {
    .cont2 .layout {
        gap: 80px;
    }

    .cont2 .visual {
        width: min(700px, 48vw);
    }

    .cont2 .content {
        max-width: 520px;
        gap: 32px;
    }
}

@media (max-width: 1280px) {
    .cont2 .layout {
        gap: 60px;
    }

    .cont2 .visual {
        width: min(620px, 46vw);
        border-radius: 18px;
    }

    .cont2 .content {
        max-width: 480px;
        gap: 28px;
    }
}

@media (max-width: 1024px) {
    .cont2 .panel {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .cont2 .panel+.panel {
        margin-top: 120px;
    }

    .cont2 .panel .container {
        min-height: auto;
    }

    .cont2 .panel .container.end-spacer {
        padding-bottom: 180px;
    }

    .cont2 .layout {
        gap: 40px;
    }

    .cont2 .visual {
        min-height: auto;
    }

    .cont2 .cover {
        padding: 60px 0;
        row-gap: 14px;
    }

    .cont2 .cover span {
        font-size: 60px;
    }

    .cont2 .year {
        font-size: var(--font-3xl);
    }

    .cont2 .month,
    .cont2 .item p {
        font-size: var(--font-md);
    }
}

@media (max-width: 768px) {
    .cont2 .panel+.panel {
        margin-top: 80px;
    }

    .cont2 .panel .container.end-spacer {
        padding-bottom: 160px;
    }

    .cont2 .layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .cont2 .visual {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        aspect-ratio: 948 / 1000;
    }

    .cont2 .content {
        max-width: 100%;
        gap: 24px;
    }

    .cont2 .year {
        font-size: var(--font-2xl);
    }
}

@media (max-width: 480px) {
    .cont2 .panel .container.end-spacer {
        padding-bottom: 140px;
    }

    .cont2 .layout {
        gap: 24px;
    }

    .cont2 .panel+.panel {
        margin-top: 60px;
    }

    .cont2 .visual {
        border-radius: 12px;
        aspect-ratio: 948 / 1000;
    }

    .cont2 .cover {
        padding: 40px 0;
        row-gap: 10px;
        grid-template-rows: auto 180px auto;
    }

    .cont2 .cover::before {
        height: 160px;
    }

    .cont2 .cover span {
        font-size: var(--font-headline46);
        line-height: 1.1;
    }

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

    .cont2 .item {
        gap: 12px;
    }

    .cont2 .month,
    .cont2 .item p {
        font-size: var(--font-base);
    }

    .cont2 .cover {
        padding: 20px 0;
        row-gap: 6px;
    }
}

/* cont3 */
.cont3 .visual img {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    object-fit: cover;
    display: block;
}

.cont3 .text {
    margin: 90px auto 0;
    color: var(--black-900);
    text-align: center;
}

.cont3 .subtitle {
    font-size: var(--font-lg);
    font-weight: 600;
    line-height: 32px;
    word-break: keep-all;
}

.cont3 .subtitle strong {
    font-size: var(--font-3xl);
    font-weight: 600;
    line-height: 39px;
}

.cont3 .emphasis {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: var(--font-3xl);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.cont3 .para {
    font-size: var(--font-lg);
    font-weight: 400;
    line-height: 32px;
    word-break: keep-all;
}

.cont3 .lead {
    font-size: var(--font-2xl);
    line-height: 36px;
    font-weight: 500;
}

@media (max-width: 1440px) {
    .cont3 .visual img {
        height: 470px;
    }

    .cont3 .text {
        margin-top: 80px;
    }
}

@media (max-width: 1280px) {
    .cont3 .visual img {
        height: 440px;
    }

    .cont3 .text {
        margin-top: 70px;
    }
}

@media (max-width: 1024px) {
    .cont3 .visual img {
        height: 380px;
        border-radius: 24px;
    }

    .cont3 .text {
        margin-top: 50px;
    }

    .cont3 .emphasis,
    .cont3 .subtitle strong,
    .cont3 .lead {
        font-size: var(--font-2xl);
    }

    .cont3 .subtitle strong,
    .cont3 .lead {
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .cont3 .visual img {
        height: 320px;
        border-radius: 20px;
    }

    .cont3 .text {
        margin-top: 30px;
    }

    .cont3 .subtitle,
    .cont3 .para {
        font-size: var(--font-md);
        line-height: 1.5;
    }

    .cont3 .emphasis,
    .cont3 .subtitle strong,
    .cont3 .lead {
        font-size: var(--font-xl);
    }
}

@media (max-width: 480px) {
    .cont3 .visual img {
        height: 260px;
        border-radius: 16px;
    }

    .cont3 .text {
        margin-top: 20px;
    }

    .cont3 .subtitle,
    .cont3 .para {
        font-size: var(--font-base);
    }

    .cont3 .emphasis,
    .cont3 .subtitle strong,
    .cont3 .lead {
        font-size: var(--font-lg);
    }
}
