@charset "UTF-8";

sup {
    font-weight: normal;
    top: -0.3em;
}

img {
    max-width: none;
}

a {
    color: var(--primary);
    font-weight: bold;
}

@media (hover: hover) {
    a:hover {
        color: var(--black);
    }
}

main {
    font-size: 16px;
}

@media (max-width: 768px) {
    main {
        font-size: 14px;
    }
}

.ttl--h1 {
    font-size: 32px;
    line-height: 1.3;
}

.ttl--h2 {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 32px;
}

.ttl--h3 {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
}

.ttl--subtitle {
    font-size: 18px;
    display: block;
    font-weight: normal;
    margin: 0 0 4px;
}

@media (max-width: 767px) {
    .ttl--h1 {
        font-size: 28px;
    }

    .ttl--h2 {
        font-size: 28px;
    }
}

.section {
    padding: 80px 32px;
    width: 100%;
}

.section__inner {
    width: 100%;
    max-width: 672px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .section {
        padding: 40px 16px;
    }

    .section__inner {
        max-width: 496px;
    }
}

.card {
    width: 100%;
    padding: 32px;
    border-radius: 16px;
    background: var(--background-gray);
    display: flex;
    flex-direction: column;
}

.card--blue {
    background: var(--background-blue);
}

.card__inner {
    width: 100%;
    max-width: 496px;
    margin: auto;
}

@media (max-width: 768px) {
    .card {
        padding: 16px;
    }
}

/* FV
--------------------------------*/
.point-fv {
    background: var(--background-yellow);
    width: 100%;
    padding: 32px;
}

.point-fv__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    gap: 32px;
}

.point-fv__brand-or {
    font-size: 32px;
    font-weight: bold;
}

/* ポイントの特長
--------------------------------*/
.point-feature .section__inner {
    max-width: 1024px;
}

.point-feature .point-card__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.point-feature .point-card__icon img {
    max-width: none;
}

.point-feature .point-card__body h3 {
    font-size: 24px;
    margin: 0 0 8px;
    line-height: 1.3;
}

.point-feature .point-card__body h3 span {
    display: block;
    font-size: 16px;
}

.point-feature .point-card.card {
    padding: 24px;
    gap: 16px;
}

@media (max-width: 768px) {
    .point-feature .section__inner {
        max-width: 496px;
    }

    .point-feature .point-card__list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .point-feature .point-card.card {
        flex-direction: row;
        padding: 32px 24px;
    }
}

/* ポイントの主な違い
--------------------------------*/
.point-diff {
    background: var(--background-blue);
}

.point-diff .section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.point-diff .ttl--h2 {
    margin: 0;
}

.point-diff__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.point-diff .point-info {
    background: var(--white);
    box-shadow: 0 0 24px 0 rgba(1, 153, 245, 0.1);
}

.point-diff .point-info__inner {
    width: 100%;
    max-width: 496px;
    margin: auto;
}

.point-diff .point-info h3 {
    font-size: 24px;
    margin: 0 0 24px;
    text-align: center;
    width: 100%;
}

.point-diff .point-info__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point-diff .point-info__list-item {
    list-style: disc;
    margin-left: 20px;
}

.point-diff .point-info__row {
    flex: 1;
    display: flex;
    padding-bottom: 16px;
    align-items: center;
    row-gap: 0;
    -moz-column-gap: 16px;
    column-gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
}

.point-diff .point-info__row:nth-of-type(1) {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--neutral-100);
}

.point-diff .point-info__link {
    display: flex;
    gap: 12px;
    align-items: center;
}

.point-diff .point-info .cvButton-tertiary {
    width: 100%;
}

.point-diff .point-info img {
    max-width: none;
}

@media (max-width: 768px) {
    .point-diff .point-info {
        padding: 24px 56px 8px;
    }

    .point-diff .point-info__list {
        gap: 16px;
    }

    .point-diff .point-info__list-item {
        list-style: disc;
        margin-left: 20px;
    }

    .point-diff .point-info h3 {
        font-size: 20px;
    }

    .point-diff .point-info__row {
        row-gap: 8px;
    }
}

@media (max-width: 460px) {
    .point-diff .point-info {
        padding: 24px 16px 8px;
    }
}

/* 注意事項
--------------------------------*/
.point-notice {
    padding-bottom: 0;
}

.point-notice .section__inner {
    padding: 40px 32px;
    border-radius: 16px;
    background-color: var(--background-red);
}

.point-notice .ttl--h2 {
    color: var(--secondary);
    word-break: keep-all;
}

.point-notice__box {
    width: 100%;
    max-width: 496px;
    margin: auto;
}

.point-notice__list {
    list-style: disc;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .point-notice .section__inner {
        padding: 40px 16px;
    }
}

/* ポイントの詳細
--------------------------------*/
.point-detail .point-tab {
    display: flex;
    gap: 40px;
    justify-content: center;
    font-size: 24px;
}

.point-detail .point-tab__button {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    border: 3px solid var(--neutral-200);
    border-bottom: none;
    width: 100%;
    max-width: 200px;
    color: var(--neutral-400);
    transition: 0.3s;
}

.point-detail .point-tab__button--active {
    background: var(--background-blue);
    color: var(--primary);
    border: transparent solid 3px;
    border-bottom: none;
    position: relative;
}

@media (hover: hover) {
    .point-detail .point-tab__button:hover {
        color: var(--primary);
    }

    .point-detail .point-tab__button--active:hover {
        color: var(--neutral-400);
    }
}

.point-detail__alert {
    background: var(--background-red);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    color: var(--secondary);
    font-weight: bold;
    gap: 8px;
}

.point-detail__content {
    background: var(--background-blue);
    border-radius: 32px;
    padding: 48px 32px;
    display: none;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.point-detail__content.is-active {
    display: flex;
}

.point-detail__item {
    width: 100%;
    align-items: center;
}

.point-detail__item>* {
    width: 100%;
}

.point-detail__item h4 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.point-detail .card {
    margin-top: 24px;
    background: var(--white);
}

.point-detail .point-apply__text {
    margin-bottom: 16px;
}

.point-detail .point-flow .card__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point-detail .point-flow .point-step {
    display: flex;
    counter-reset: step-counter;
}

.point-detail .point-flow .point-step__item {
    text-align: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    counter-increment: step-counter;
    border-right: 1px solid #E7E7E7;
    padding: 0 8px;
}

.point-detail .point-flow .point-step__item:nth-last-of-type(1) {
    border: none;
}

.point-detail .point-flow .point-step__text {
    margin-top: 32px;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
    line-height: 1.3;
}

.point-detail .point-flow .point-step__text::before {
    content: counter(step-counter);
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
    width: 24px;
    height: 24px;
    line-height: 1;
    border-radius: calc(infinity * 1px);
    border: 2.5px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    margin: auto;
}

.point-detail .point-flow .point-step__text span {
    font-size: 12px;
    display: block;
    font-weight: normal;
}

.point-detail .point-flow .point-step__text-link {
    display: block;
}

.point-detail .point-flow__link-list {
    list-style: disc;
    margin-left: 24px;
}

.point-detail .point-flow__card {
    background: var(--background-gray);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
}

.point-detail .point-flow__card h5 {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--neutral-100);
}

.point-detail .point-notice {
    width: 100%;
}

.point-detail .point-notice .section__inner {
    background: var(--white);
}

.point-detail .point-notice .ttl--h2 {
    font-size: 24px;
}

@media (max-width: 768px) {
    .point-detail {
        padding: 40px 0 0;
    }

    .point-detail .point-tab {
        gap: 16px;
        font-size: 20px;
        padding: 0 24px;
        box-shadow: 0 3px 0 0 var(--black);
    }

    .point-detail .point-tab__button {
        padding: 8px 16px;
        background: var(--background-gray);
        border: transparent solid 3px;
    }

    .point-detail .point-tab__button--active {
        background: var(--white);
        border: 3px solid var(--black);
        background: var(--white);
    }

    .point-detail .point-tab__button--active::after {
        content: "";
        position: absolute;
        z-index: 10;
        border-bottom: 8px solid var(--white);
        width: 100%;
        bottom: -6px;
    }
}

@media (max-width: 768px) and (hover: hover) {
    .point-detail .point-tab__button:hover {
        color: var(--primary);
    }

    .point-detail .point-tab__button--active:hover {
        color: var(--neutral-400);
    }
}

@media (max-width: 768px) {
    .point-detail__content {
        background: transparent;
        padding: 48px 16px;
    }

    .point-detail__item .card {
        background: var(--background-blue);
    }

    .point-detail__alert {
        background: var(--white);
    }

    .point-detail .card {
        padding: 32px 16px;
    }

    .point-detail .point-flow__card {
        padding: 20px 16px;
        background: var(--white);
    }

    .point-detail .point-flow .point-step__text {
        font-size: 14px;
    }

    .point-detail .point-flow .point-step__text span {
        font-size: 10px;
    }

    .point-detail .point-flow .point-step__item {
        flex: auto;
    }

    .point-detail .point-notice .section__inner {
        background: var(--background-red);
    }

    .point-detail .point-notice .ttl--h2 {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .point-detail #dpointShow .point-flow .point-step__item:nth-of-type(1), .point-detail #dpointShow .point-flow .point-step__item:nth-last-of-type(1) {
        padding: 0;
    }

    .point-detail #dpointShow .point-flow .point-step__item:nth-of-type(2) {
        max-width: 118px;
    }
}

/* ポイント表
--------------------------------*/
.point__wrap {
    width: 100%;
    height: 720px;
    overflow: auto;
    border: 3px solid var(--neutral-500);
    margin: 24px 0;
    background: var(--white);
}

.point__table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
}

.point__table th,
.point__table td {
    text-align: center;
    vertical-align: middle;
    padding: 12px 16px;
}

.point__table th {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--neutral-200);
    font-weight: bold;
    border-bottom: 3px solid var(--neutral-500);
    font-size: 20px;
}

.point__purpose th:nth-last-of-type(1) {
    border-left: var(--neutral-300) solid 3px;
}

.point__catettl th {
    top: 54px;
    border-top: 3px solid var(--neutral-500);
}

.point__name td {
    font-size: 16px;
    line-height: 1.3;
    background: var(--background-gray);
}

.point__name td span, #vpointAccordion .point__judge td span {
    font-size: 12px;
}

.point__judge td {
    padding: 16px;
    font-size: 40px;
    line-height: 1;
}

.point__judge td:nth-last-of-type(1) {
    border-left: 3px solid var(--neutral-100);
}

#vpointAccordion .point__catettl th {
    top: -2px;
}

#vpointAccordion .point__judge td {
    border-bottom: 3px solid var(--neutral-100);
}

#vpointAccordion .point__judge td:nth-of-type(1) {
    font-size: 16px;
    background-color: var(--background-gray);
}

#vpointAccordion .point__judge td:nth-last-of-type(2) {
    text-align: left;
    line-height: 1.3;
}

#vpointAccordion .point__judge td:nth-last-of-type(1) {
    border-left: 3px solid var(--background-gray);
    width: 30%;
}

@media (max-width: 768px) {
    .point__table th {
        font-size: 16px;
        padding: 4px 16px;
    }

    .point__catettl th {
        top: 32px;
    }

    .point__name td {
        font-size: 14px;
        padding: 8px 16px;
    }

    .point__judge td {
        padding: 8px 16px;
        font-size: 28px;
    }

    #vpointAccordion .point__judge td:nth-of-type(1) {
        font-size: 14px;
    }
}
