/* --------------------------------------------------- */
/* common */
/* --------------------------------------------------- */
.layout_split {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
}
@media screen and (max-width: 1279px) {
    .layout_split {
        margin-top: 6.25rem;
        margin-bottom: 6.25rem;
    }
}
@media screen and (max-width: 959px) {
    .layout_split {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}
@media screen and (max-width: 767px) {
    .layout_split {
        margin-bottom: 3.5rem;
        gap: 3.5rem;
    }
}

/* --------------------------------------------------- */
/* top_content */
/* --------------------------------------------------- */
.top_content {
    margin-bottom: 7.5rem;
}
.top_content__attention {
    color: var(--attention);
    text-align: center;
    font-weight: 500;
    padding: 1.25rem 0;
    border: 1px solid var(--attention);
    margin-top: 2.375rem;
    border-radius: 0.25rem;
}
@media screen and (max-width: 1279px) {
    .top_content {
        margin-bottom: 6.25rem;
    }
    .top_content .p-225 {
        line-height: 200%;
    }
    .top_content__attention {
        padding: 1rem;
    }
}
@media screen and (max-width: 959px) {
    .top_content {
        margin-bottom: 5rem;
    }
}
@media screen and (max-width: 767px) {
    .top_content {
        margin-bottom: 5rem;
    }
    .top_content .p-225 {
        font-size: 0.9375rem;
    }
    .top_content__attention {
        margin-top: 2rem;
        font-size: 0.9375rem;
        line-height: 175%;
    }
}

/* --------------------------------------------------- */
/* recovery_flow */
/* --------------------------------------------------- */
.files {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.files__link {
    background-color: var(--black);
    display: flex;
    padding: 1.25rem 1.25rem 1.25rem 1.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    border-radius: 100vw;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    line-height: 100%; /* 1rem */
    position: relative;
    z-index: 0;
    transition: background-color 0.3s;
}
.files__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    border-radius: 100vw;
}
.files__link:hover::after {
    opacity: 1;
}
.files__link:hover {
    background-color: transparent;
}
.files__link-svg {
    width: 2rem;
    height: auto;
}
.recovery_flow__caption {
    color: var(--dark_gray);
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 1.78125rem;
    margin-bottom: -0.21875rem;
    line-height: 150%;
}

@media screen and (max-width: 1279px) {
    .files__link {
        font-size: 0.875rem;
        padding: 1rem 1rem 1rem 1.5rem;
    }
    .files__link-svg {
        width: 1.75rem;
    }
}
@media screen and (max-width: 767px) {
    .files {
        flex-direction: column;
        gap: 0.5rem;
    }
    .recovery_flow__caption {
        margin-top: 1.28125rem;
    }
}

/* --------------------------------------------------- */
/* devices_and_fees */
/* --------------------------------------------------- */
.devices_and_fees__content {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}
.devices_and_fees__left {
    width: 28.5rem;
}
.devices_and_fees__left-title {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 100%; /* 1.5rem */
    margin-bottom: 2.25rem;
}
.devices_and_fees__table th {
    border-bottom: unset;
    background-color: var(--base-on_color);
    text-align: center;
    font-weight: 600;
    line-height: 100%; /* 1rem */
    width: 9rem;
    padding: 1rem 1.25rem;
}
.devices_and_fees__table th:first-of-type {
    border-radius: 0.25rem 0 0 0;
    width: 10.5rem;
}
.devices_and_fees__table th:last-of-type {
    border-radius: 0 0.25rem 0 0;
}
.devices_and_fees__table td {
    background-color: var(--white);
    padding: 1rem 1.25rem;
    text-align: center;
    line-height: 1;
}
.devices_and_fees__left-caption {
    margin-top: 1.25rem;
    color: var(--dark_gray);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 175%; /* 1.53125rem */
}
.devices_and_fees__right {
    flex: 1;
}
.devices_and_fees__right-img {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 0.25rem;
}
@media screen and (max-width: 1279px) {
    .devices_and_fees__content {
        flex-direction: column-reverse;
        gap: 2.25rem;
    }
    .devices_and_fees__right {
        width: 100%;
    }
    .devices_and_fees__right-img {
        aspect-ratio: unset;
        height: 15rem;
    }
    .devices_and_fees__left {
        width: 100%;
    }
    .devices_and_fees__table {
        width: 100%;
    }
    .devices_and_fees__table th:first-of-type {
        width: 18.5rem;
    }
}
@media screen and (max-width: 767px) {
    .devices_and_fees__content {
        gap: 1.75rem;
    }
    .devices_and_fees__left-title {
        font-size: 1.25rem;
        margin-bottom: 1.75rem;
    }
    .devices_and_fees__table th,
    .devices_and_fees__table td {
        font-size: 0.875rem;
    }
    .devices_and_fees__table th:first-of-type {
        width: 17rem;
    }
    .devices_and_fees__table td {
        padding: 0.75rem 1rem;
    }
    .devices_and_fees__left-caption {
        font-size: 0.8125rem;
    }
}

/* --------------------------------------------------- */
/* affiliations */
/* --------------------------------------------------- */
.affiliations__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.affiliations__item {
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
}
.affiliations__item {
    border-radius: 0.25rem;
    background-color: var(--base-on_color);
    display: flex;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    color: var(--black, #2b3845);
    text-align: center;
    font-weight: 400;
    line-height: 150%; /* 1.6875rem */
}
@media screen and (max-width: 767px) {
    .affiliations__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
    }
    .affiliations__item {
        font-size: 0.9375rem;
    }
}
