.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
}

.section__title {
    position: relative;
    display: inline-block;
    font-family: var(--en-font);
    font-weight: 400;
}

.section__title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: .7px;
    background-color: rgba(243, 243, 243, .6);
}

.section__heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.section__heading__link .link-arrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    column-gap: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--main-text-color);
}

.section__heading__link .link-arrow .icon {
    width: 20px;
}

.section__heading__link .link-arrow .text {
    font-family: var(--en-font);
}

.en-font {
    font-family: var(--en-font);
}

.contact__module {
    display: flex;
    justify-content: center;
    column-gap: 16px;
}

.contact__module__link {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--main-text-color);
    border-radius: 50%;
}

.contact__module__link .icon {
    width: 18px;
}

.contact__module__link:nth-of-type(2) .icon {
    width: 16px;
}

.link-button {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--en-font);
    margin-top: 40px;
}

.link-button__image,
.link-button__image-navy {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.link-button__image-navy {
    border: 1px solid var(--main-text-color);
}

.link-button__image .icon,
.link-button__image-navy .icon {
    width: 12px;
    object-fit: contain;
}

.link-button .text {
    margin-left: 16px;
    font-size: .875rem;
    font-family: var(--jp-font);
}

.link-button .text-sm {
    font-size: .5rem;
}

.dli-chevron-round-right {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    width: .5rem;
    height: .5rem;
    margin-left: 20px;
    transform: translateX(-25%) rotate(45deg);
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 0.1em;
}

.dli-chevron-round-right::before {
    top: 0;
    left: 0;
    right: 0;
    height: 0.1em;
}

.dli-chevron-round-right::after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.1em;
}

@media screen and (min-width: 768px) {
    .section__title .en {
        font-size: calc(60 / var(--root-font-size) * 1rem);
    }
}

/*—————————————————————————————————
animation
—————————————————————————————————*/
.fadeIn {
    opacity: 0;
}

.fadeIn.active {
    opacity: 1;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(100px);
        transition-duration: 1s;
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
        transition-duration: 1s;
    }
}

.is-slideshow {
    display: flex;
    opacity: 1 !important;
    transition: 1s ease-in-out;
    animation: loop-slide 2000s infinite linear .1s both;
}

@keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}