@charset "utf-8";

.report__item {
    margin-top: 32px;
}
.report__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
@media screen and (min-width: 768px) {
    .report__media {
        flex-direction: row;
        align-items: flex-start;
        column-gap: 30px;
        margin-top: 0;
    }
}
.report__mediaImg {
    flex-shrink: 0;
    padding: 14px 25px;
    width: 100%;
    text-align: center;
    background-color: var(--color_secondary_white);
}
.report__mediaImg.report__mediaImg--noBg {
    padding: 0;
    width: auto;
    background-color: transparent;
}
@media screen and (min-width: 768px) {
    .report__mediaImg {
        padding: 14px 12px;
        max-width: 325px;
        width: 100%;
    }
    .report__mediaImg.report__mediaImg--noBg {
        max-width: none;
    }
}
.report__mediaImg img {
    max-width: 130px;
    width: 100%;
}
.report__mediaImg.report__mediaImg--large img {
    max-width: 100%;
    width: auto;
}
.report__mediaContents {
    margin-top: 20px;
}
@media screen and (min-width: 768px) {
    .report__mediaContents {
        flex-grow: 1;
        margin-top: 0;
        width: calc(67% - 30px);
    }
}
.report__btnArea {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 20px;
    margin-inline: auto;
    max-width: 307px;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .report__btnArea {
        margin-top: 30px;
        margin-inline: 0;
    }
}
.report__table {
    margin-top: 16px;
    border: 1px solid var(--color_primary_gray);
    border-right: none;
}
.report__table .report__tableTitle {
    padding-inline: 14px 17px;
    border: none;
    width: calc(145 / 350 * 100%);
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color_primary_white);
    vertical-align: middle;
    background-color: var(--color_primary_gray);
}
.report__tableItem:not(:last-child) .report__tableTitle {
    border-bottom: 1px solid var(--color_primary_white);
}
@media screen and (min-width: 1024px) {
    .report__table .report__tableTitle {
        padding-inline: 19px;
        width: 200px;
    }
}
.report__table .report__tableText {
    padding-block: 11px;
    padding-inline: 16px 11px;
    border: none;
    line-height: 1.4;
    font-size: 1.6rem;
}
.report__tableItem:not(:last-child) .report__tableText {
    border-bottom: 1px solid var(--color_primary_gray);
}
@media screen and (min-width: 1024px) {
    .report__table .report__tableText {
        padding-block: 19px;
        padding-inline: 16px 13px;
        width: calc(900 / 1100 * 100%);
    }
}
.report__list {
    margin-top: 8px;
}
.report__listItem {
    line-height: 1.8;
}
.report__listItem span {
    font-weight: bold;
}
.report__listItem li {
    position: relative;
    padding-left: 1em;
}
.report__listItem li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
.report__listText {
    line-height: 1.8;
}
a.report__link {
    position: relative;
    margin-top: 8px;
    font-size: 1.4rem;
    text-decoration: underline;
    color: var(--color_secondary_red);
}
a.report__link span {
    display: inline-block;
    margin-left: 7px;
}
@media screen and (min-width: 768px) {
    a.report__link {
        font-size: 1.6rem;
    }
}
@media (hover: hover) and (pointer: fine) {
    a.report__link {
        transition: text-decoration 0.3s;
    }
    a.report__link:hover {
        text-decoration: none;
    }
}
.report__note {
    margin-top: 50px;
}
@media screen and (min-width: 1024px) {
    .report__note {
        display: flex;
        align-items: center;
        column-gap: 20px;
        margin-top: 40px;
    }
}
.report__noteImg {
    text-align: center;
}
@media screen and (min-width: 1024px) {
    .report__noteImg {
        flex-shrink: 0;
    }
}
.report__noteText {
    margin-top: 13px;
    line-height: 1.6;
    font-size: 1.6rem;
}
@media screen and (min-width: 1024px) {
    .report__noteText {
        margin-top: 0;
    }
}
.report__noteText a {
    display: inline-block;
    text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
    .report__noteText a {
        transition: text-decoration 0.3s;
    }
    .report__noteText a:hover {
        text-decoration: none;
    }
}