@charset "UTF-8";

.TopContentsLayout {
    position: relative;
    padding: 64px 0;
    overflow-x: clip;
}
.TopContentsLayout::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    width: 2012px;
    aspect-ratio: 1 / 1;
    opacity: 0.1;
    border-radius: 50%;
}
.TopContentsLayout.type_1::before {
    background-color: var(--mainColor_2);
}
.TopContentsLayout.type_2::before {
    background-color: var(--mainColor_1);
}

.TopContentsLayout-inner {
    position: relative;
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 15px;
}

/* セクションリスト */
.TopContentsLayout-inner .section-list-container {
    position: absolute;
    top: 100%;
    left: -72px;
    transform: translateY(-97px);
    width: fit-content;
    height: fit-content;
    background-color: var(--baseColor);
    z-index: 1;
    padding: 30px 80px;
    border-radius: var(--standardRoundedValue);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 1300px) {
    .TopContentsLayout-inner .section-list-container {
        width: 340px;
        left: 15px;
        padding: 20px 30px;
        transform: translateY(-50px);
    }
}
.TopContentsLayout-inner .section-list-item a {
    display: flex;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--mainTextColor_1);
    letter-spacing: 0.05em;
}
.TopContentsLayout-inner .section-list-item:not(:last-child) {
    margin-bottom: 26.5px;
}
.TopContentsLayout-inner .section-list-container .section-number {
    margin-right: 34px;
}
.TopContentsLayout-inner .section-list-container .section-title {
    position: relative;
    display: block;
    width: 195px;
    overflow-y: clip;
    transition: all 0.3s ease-out;
}
.TopContentsLayout-inner .section-list-container .section-title::before,
.TopContentsLayout-inner .section-list-container .section-title::after {
    content: "↓";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 1em;
    height: 1em;
    font-size: 18px;
    font-weight: 400;
    line-height: 1em;
    color: var(--mainColor_1);
    transition: all 0.3s ease-out;
}
.TopContentsLayout-inner .section-list-container .section-title::before {
    color: var(--mainTextColor_1);
}
.TopContentsLayout-inner .section-list-container .section-title::after {
    top: -150%;
}
.TopContentsLayout-inner .section-list-item:hover .section-title::before {
    top: 150%;
}
.TopContentsLayout-inner .section-list-item:hover .section-title::after {
    top: 50%;
}
/* セクションリスト */

.PageTitle-wrapper {
    display: inline-block;
    margin-bottom: 50px;
}
@media screen and (max-width: 1300px) {
    .PageTitle-wrapper {
        margin-bottom: -10px;
    }
}
.PageTitle-en {
    font-size: 122.25px;
    font-weight: 900;
    padding-bottom: 40px;
    letter-spacing: 0.05em;
    -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1300px) {
    .PageTitle-en {
        font-size: 10vw;
        padding-bottom: 20px;
    }
}
.PageTitle-wrapper .PageTitle-en {
    background: linear-gradient(#823C96 63%, #E2E061 37%);
    -webkit-background-clip: text;
}
.PageTitle-ja {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    padding-left: calc(49px + 8px);
    line-height: 1em;
    letter-spacing: 0.05em;
}

.PageTitle-ja::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 49px;
    height: 1px;
    background-color: var(--mainTextColor_1);
}

.TopContentsLayout-explain {
    font-size: 24px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.05em;
    color: var(--mainTextColor_1);
    text-align: center;
    margin-bottom: 56px;
}
@media screen and (max-width: 1300px) {
    .TopContentsLayout-explain {
        font-size: 16px;
        line-height: 1.5em;
        margin-top: 50px;
    }
}

.TopContentsLayout-image-cover {
    width: 100%;
    aspect-ratio: 1100 / 450;
    object-fit: cover;
    object-position: center;
    border-radius: var(--standardRoundedValue);
    overflow: hidden;
}
.TopContentsLayout-image-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .TopContentsLayout-image-cover {
        margin-top: -40px;
    }
}