@charset "UTF-8";

main {
    counter-reset: section;
}

@media only screen and (max-width: 420px) {
    .c-heading-accent {
        font-size: 15px;
    }
}

.empowerment {
    padding-block: 100px 120px;
}

@media only screen and (max-width: 768px) {
    .empowerment {
        padding-block: 80px;
    }
}

.empowerment__heading {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;

    &::before {
        counter-increment: section;
        content: counter(section) ".";
    }
}

.empowerment__subheading {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.8;
}

.empowerment__body {
    margin-bottom: 30px;
}

.empowerment__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.empowerment__description {
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.empowerment__list--disc {
    margin-bottom: 10px;

    .empowerment__item {
        display: flex;
        align-items: flex-start;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.8;

        &::before {
            content: "・";
            flex-shrink: 0;
        }
    }
}

.empowerment__tables {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .empowerment__tables {
        flex-direction: column;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.empowerment__table {
    border-collapse: collapse;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .empowerment__table {
        min-width: 800px;
white-space: nowrap;
    }
}

.empowerment__table-left {
    flex: 1 1 436px;
    max-width: 436px;
}

.empowerment__table-right {
    flex: 1 1 294px;
    max-width: 294px;
}

@media only screen and (max-width: 768px) {
  .empowerment__table-left,
  .empowerment__table-right {
    flex: none;
    max-width: none;
  }
}

.empowerment__th {
    background: var(--color-black-10);
    height: 45px;
}

.empowerment__th,
.empowerment__td {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    border: 1px solid var(--color-black-10);
    vertical-align: middle;
}

.empowerment__td {
    padding: 16px 5px;
}

.empowerment__meta {
    margin-block: 65px 70px;
    text-align: right;
}

.empowerment__meta-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.empowerment__action {
    text-align: center;
}