.pc-invisible {
    display: none!important;
}
.mv__wrapper {
    box-sizing: border-box;
    display: grid;
    grid-template: 100% 100% / 600px 44%;
    grid-template-areas: "text-area mv";
    align-items: center;
    padding: 190px 32px 20px;
    /* padding: 104px 32px 0; */
    overflow: hidden;
    height: auto;
    width: 100%;
	max-width: 1200px;
	margin: auto;
}

.mv {
    aspect-ratio: 0.864;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: mv;
    overflow: hidden;
    margin: auto;
    width: 100%;
    height: auto;
}
.mv video {
    height: 101%;
    width: auto;
    object-fit: cover;
}

.mv__text-area {
    grid-area: text-area;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 600px;
}
.mv__text {
    color: var(--sumi);
    font-size:var(--font-size-xxxl);
    text-align: left;
	padding-left: 6px;
}
.mv__text span {
    color: var(--relief-blue);
    font-size: 1.52em;
}
.mv__text-area h2 {
    font-size: var(--font-size-xl);
    color: var(--relief-blue);
    padding-left: 3px;
}
.mv__link-contact {
    width: min(100%, 352px);
    margin-top: 16px;
}
.mv__link-contact a {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--relief-blue);
    color: var(--white);
    font-size: var(--font-size-l);
	font-weight: bold;
    border-radius: 6px;
    gap: 4px;
    justify-content: center;
    overflow: hidden;
    padding: 21px 24px;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 64px;
    width: 100%;
}
.mv__link-contact a:after {
    content: "";
    display: block;
    background-color: var(--white);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: top left;
    transition: all .3s ease;
}
.mv__link-contact a:hover {
    background-color: var(--navy);
}
.mv__link-contact a svg {
	position: absolute;
	right: 16px
}

@media screen and (min-width: 1441px) {
    .mv__wrapper {
        max-width: 1332px;
    }
}
@media screen and (max-width: 1180px) {
    .mv__text-area {
        min-width: 468px;
    }
    .mv__text-area h3 {
        font-size: clamp(var(--font-size-l), 6.4vw, var(--font-size-xxxl));
    }
}
@media screen and (max-width: 960px) {
    .mv {
        width: min(80%, 536px);
    }
    .mv__wrapper {
        grid-template: 1fr / 100%;
        grid-template-areas: "mv" "text-area";
    }
    .mv__text-area {
        min-width: 100%;
    }
    .mv__text-area h3 {
        text-align: center;
    }
}
@media screen and (max-width: 640px) {
    .mv__wrapper {
        padding: 221px 16px;
        /* padding: 98px 16px; */

    }
}

/*---  TOPICS ----*/
.topics {
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}
.topics__wrapper {
    background-color: rgba(255, 255, 255, 0.700);
    border-radius: 8px;
    border: 1px solid var(--mist-gray);
    box-sizing: border-box;
    display: grid;
	grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 8px 16px;
    align-items: center;
    height: auto;

}
.topics__header {
    display: flex;
}
.topics__header h2 {
    font-size: var(--font-size-xl);
    font-weight: bold;
    margin-right: 16px;
}

.topics__item {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}
.topics__item__content {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.topics__item .date {
    color: var(--storm-gray);
    padding-right: 16px;
}
.topics__item .title {
    flex-grow: 1;
    text-align: left;
}
.topics__item .title a {
    color: var(--sumi);
    font-size: var(--font-size-m);
}
.topics__item .title a:hover {
    color: var(--storm-gray);
}
@media screen and (max-width: 960px) {
    .pc-invisible {
        display: flex!important;
    }
    .topics {
        transform: translateY(0);
        padding: 16px;
        box-sizing: border-box;
		width: 98%;
    }
    .topics__wrapper {
		display: flex;
        flex-direction: column;
        border: none;
        background-color: transparent;
        height: 100%;
    }
    .topics__header {
        display: grid;
        grid-template: auto 1fr / 120px auto 96px;
        grid-template-areas:
        "titleEn . ."
        "h2 . link";
        width: 100%;
    }
    .topics__header .title--en {
        grid-area: titleEn;
    }
    .topics__header h2 {
        grid-area: h2;
    }
    .topics__header .link {
        grid-area: link;
    }
    .topics__item {
        align-items: center;
        border-top: 1px solid var(--baby-blue);
        border-bottom: 1px solid var(--baby-blue);
        margin-left: 0;
        padding: 24px 0;
        width: 100%
    }
    .topics__item__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
    .topics__item::after {
        content: "";
        background-image: url(img/material-symbols_arrow-forward-ios.svg);
        display: inline-block;
        width: 16px;
        height: 16px;
    }
}
