@charset "utf-8";
.tmNd {
    position: relative;
    min-height: 100vh;
}

.tmNd__bg {
    position: absolute;
    inset: 0;
    background-color: #fff;
}

.tmNd__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/news-detail/bg-texture.png");
    background-repeat: repeat;
    background-size: 1024px 1024px;
    opacity: 0.15;
}

.tmNd__container {
    position: relative;
    max-width: 1728px;
    margin: 0 auto;
    padding: 170px 0 0;
}

.tmNd__layout {
    display: grid;
    grid-template-columns: 517px 1px 1fr;
    align-items: start;
    padding-top: 120px;
}

.tmNd__aside {
    padding-left: 80px;
}

.tmNd__kicker {
    margin: 0;
    font-family: "Times New Roman", Times, serif;
    font-size: 22px;
    color: #121212;
    white-space: nowrap;
}

.tmNd__divider {
    display: flex;
    justify-content: center;
}

.tmNd__dividerImg {
    width: 1px;
    height: 1105px;
    display: block;
}

.tmNd__main {
    padding-left: 73px;
    max-width: 913px;
}

.tmNd__date {
    display: block;
    margin: 0 0 18px;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    color: #121212;
}

.tmNd__title {
    margin: 0 0 44px;
    font-family: "Times New Roman", Times, serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    color: #212121;
}

.tmNd__titleJa {
    font-family: "A-OTF Ryumin Pr6N", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.tmNd__hero {
    width: 840px;
    height: 523px;
    overflow: hidden;
    margin: 0 0 30px;
}

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

.tmNd__heading {
    margin: 0 0 18px;
    font-family: "A-OTF Ryumin Pr6N", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    color: #212121;
}

.tmNd__body {
    width: 840px;
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #212121;
}

.tmNd__body p {
    margin: 0 0 16px;
}

.tmNd__link {
    text-decoration: underline;
    color: inherit;
}

.tmNdCtas {
    max-width: 1492px;
    margin: 240px auto 0;
    display: grid;
    grid-template-columns: 746px 746px;
    justify-content: center;
    gap: 28px;
    padding: 0 70px;
}

.tmNdCta {
    position: relative;
    display: block;
    height: 339px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.tmNdCta__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tmNdCta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.tmNdCta__label {
    position: absolute;
    left: 44px;
    bottom: 42px;
    font-family: "Times New Roman", Times, serif;
    font-size: 30px;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .tmNd__container {
        padding: 120px 16px 0;
    }
    .tmNd__layout {
        grid-template-columns: 1fr;
        padding-top: 24px;
        row-gap: 18px;
    }
    .tmNd__aside {
        padding-left: 0;
    }
    .tmNd__divider {
        display: none;
    }
    .tmNd__main {
        padding-left: 0;
        max-width: none;
    }
    .tmNd__hero {
        width: 100%;
        height: auto;
        aspect-ratio: 840 / 523;
    }
    .tmNd__body {
        width: 100%;
        font-size: 16px;
    }
    .tmNdCtas {
        grid-template-columns: 1fr;
        margin-top: 120px;
        padding: 0 16px;
    }
    .tmNdCta {
        height: 220px;
    }
    .tmNdCta__label {
        left: 24px;
        bottom: 24px;
        font-size: 24px;
    }
}