.kv-area {
    margin-top: var(--header_vh);
    position: relative;
    text-align: center;
    height: calc(100svh - var(--header_vh));
    min-height: 550px;
}

.kv-img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.kv-content {
    position: absolute;
    top: 18%;
    left: 50%;
    translate: -50% 0;
    width: 25.25vw;
    min-width: 470px;
}

@media screen and (max-height:750px) {
    .kv-area {
        min-height: 650px;
    }
}

h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
}

.sp {
    display: none;
}

.section-wrap {
    width: 90vw;
    max-width: 1280px;
    margin: 0 auto;
}

article {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#card-category {
    position: relative;
}

.bg-card-category {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

/*--------------------------------------------------
campaign-section
--------------------------------------------------*/
#campaign {
    overflow: visible;
    position: relative;
}

.top-page #campaign {
    color: #202F55;
}

.campaign-section h2 {
    text-align: center;
}

.campaign-content {
    display: flex;
    column-gap: 26px;
    row-gap: 50px;
    flex-wrap: wrap;
}

.top-page #campaign .campaign-content {
    justify-content: center;
}

.campaign-content li {
    width: calc((100% - 52px) / 3);
}

.campaign-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.campaign-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px);
}

.campaign-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    transition: all .3s;
}

.campaign-info-wrap {
    padding: 20px 0;
    font-size: 18px;
    transition: all .3s;
    color: #202F55;
}

.campaign-date {
    margin-bottom: 10px;
    font-weight: 600;
}

.campaign-section .btn-blue {
    margin: 40px auto 0;
}

.top-page .campaign-info-wrap .campaign-title .window-link::after {
    background: url(../img/common/link/window-navy.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.top-page .campaign-info-wrap .campaign-title .pdf-link::after {
    background: url(../img/common/link/pdf-navy.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

@media (any-hover: hover) {
    .campaign-content li a:hover .campaign-img {
        transform: scale(1.1);
    }

    .campaign-content li a:hover .campaign-info-wrap {
        opacity: 0.6;
    }
}

/*--------------------------------------------------
radio-section
--------------------------------------------------*/
.top-page #card-category {
    padding-top: 0;
}

.top-page #card-category .category-top {
    background: #202F55;
    padding: 50px 0 80px;
}

.top-page #card-category h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.category-title {
    color: #06458c;
    padding: 16px 26px;
    background: #bfd3f7;
    border-radius: 10px 10px 0 0;
    width: fit-content;
    font-weight: bold;
}

.radio-section-inner {
    background: #fff;
    border-radius: 0 10px 10px 10px;
    border: 1px solid #f2f2f2;
    filter: drop-shadow(6px 7px 5px #00000018);
    will-change: filter;
    padding: 40px 100px;
    font-weight: 600;
    font-size: 18px;
}

.radio-wrap {
    display: flex;
}

.radio-wrap ul {
    display: flex;
    margin-left: 5em;
}

.radio-wrap h3 {
    width: 10em;
    min-width: 7em;
    padding: 2em 0;
    border-right: 1px solid #B3B3B3;
}

.radio-wrap ul li {
    width: fit-content;
    min-width: 10em;
    padding-right: 1em;
    display: flex;
    align-items: center;
}

/* ラジオボタン仕様 */
.radio-section .radio-wrap input[type="checkbox"] {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid #B3B3B3;
    border-radius: 5px;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-right: 10px
}

.radio-section .radio-wrap input[type="checkbox"]:checked {
    border: 1px solid #202f55;
    background: #202f55;
}

.business-top-page .radio-section .radio-wrap input[type="checkbox"]:checked {
    border: 1px solid #6e2b2f;
    background: #6e2b2f;
}

.radio-section .radio-wrap input[type="checkbox"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    content: '';
    width: 14px;
    height: 6px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.hit-card {
    text-align: center;
    font-weight: 600;
    margin: 65px 0;
}

.hit-card span {
    font-size: 30px;
    margin: 0 8px;
}

/*--------------------------------------------------
card-info-section
--------------------------------------------------*/
.card-info {
    background: #ffffff;
    border-radius: 10px;
    filter: drop-shadow(6px 7px 5px #00000018);
    will-change: filter;
    padding: 60px 60px 30px;
}

.top-page .card-info {
    border: 1px solid #f2f2f2;
    background: #f2f2f2;
}

.card-info:nth-of-type(n+2) {
    margin-top: 40px;
}

.card-info-top {
    display: flex;
    gap: 50px;
}

.card-img {
    width: 28.5%;
    height: 100%;
    object-fit: contain;
}

.card-info-right {
    width: 71.5%;
}

.card-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.card-info dl {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.card-detail {
    border: 1px solid #C69C6D;
    border-radius: 9999px;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 50%;
    background: #ffffff;
}

.card-detail dt {
    color: #fff;
    background: #C69C6D;
    padding: 1em 0;
    width: 32%;
    min-width: 6em;
    text-align: center;
    align-content: center;
}

.card-detail dd {
    width: 68%;
    min-width: 10em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: pre-line;
}

.card-detail dd ul {
    display: flex;
    justify-content: center;
}

.card-detail dd ul li:nth-child(n+2) {
    margin-left: 0.5em;
    position: relative;
}

.card-detail dd ul li:nth-child(n+2)::before {
    content: "/";
    padding-right: 0.6em;
}

.card-detail_2 {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.card-key-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    gap: 6px;
}

.card-key {
    color: #C69C6D;
    padding: 0 0.5em;
    border-radius: 3px;
    border: 1px solid #C69C6D;
    width: fit-content;
    height: fit-content;
    text-wrap: nowrap;
    background: #ffffff;
}

.card-detail_2 .btn-blue {
    text-wrap: nowrap;
    font-size: 20px;
}

.card-info-open,
.card-info-close {
    cursor: pointer;
    text-align: center;
    color: #C69C6D;
    font-size: 14px;
    transition: opacity .3s;
    padding-top: 20px;
}

.arrow {
    position: relative;
    display: inline-block;
    width: 62px;
    height: 16px;
    margin-bottom: 5px;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 2px);
    width: 1.5px;
    height: 25px;
    border-radius: 9999px;
    background-color: #C69C6D;
    transform-origin: 50% 100%;
}

.arrow::before {
    transform: rotate(55deg);
}

.arrow::after {
    transform: rotate(-55deg);
}

.card-info-main.open .card-info-open {
    display: none;
}

.card-info-bottom {
    display: none;
    padding-top: 50px;
}

.top-page table.hyakugo-table {
    border-bottom: 1px solid #a0a0a0;
}

.top-page table.hyakugo-table th.table-gray {
    background: #cfcfcf;
    border-top: 1px solid #a0a0a0;
}

.top-page table.hyakugo-table td {
    border-top: 1px solid #a0a0a0;
    background: #ffffff;
}

.card-info-close .arrow {
    transform: rotate(180deg);
}

.top-table-list {
    font-weight: 600;
}

.top-table-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.8;
}

.top-table-list li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 10px;
    translate: -50% 0.7em;
    background: #0069B1;
}

.top-table-list li:nth-child(n+2) {
    margin-top: 10px;
}

.top-table-list a {
    text-decoration: underline;
    text-underline-offset: 4px;
    -webkit-text-decoration: underline;
    -webkit-text-underline-offset: 4px;
    transition: all .3s;
    font-weight: normal;
}

.top-table-list a.link {
    margin-right: 1.5em;
}

.top-table-list p {
    font-weight: 400;
}

.top-table-list.table-insurance p:nth-of-type(n+2) {
    margin-top: 20px;
}

.top-table-list.table-insurance a {
    position: relative;
    color: #06458c;
    background: #fff;
    border: 2px solid #06458c;
    font-size: 18px;
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.4em 2.5em;
    transition: all .3s;
    margin-top: 10px;
    text-decoration: none;
}

.top-table-list.table-insurance a::after {
    content: url(../img/common/btn/btn-arrow-blue.svg);
    position: absolute;
    top: 50%;
    right: 14px;
    translate: 0 -50%;
    transition: all .3s;
}

.business-top-page .top-table-list.table-insurance a {
    color: #DA423E;
    background: #fff;
    border: 2px solid #DA423E;
}

.business-top-page .top-table-list.table-insurance a::after {
    content: url(../img/common/btn/btn-arrow-red.svg);
}

@media (any-hover: hover) {
    .top-table-list a:hover {
        color: #DA423E;
    }

    .top-table-list.table-insurance a:hover {
        opacity: 1;
        color: #fff;
        background: #06458c;
    }

    .business-top-page .top-table-list.table-insurance a:hover {
        color: #fff;
        background: #DA423E;
    }

    .top-table-list.table-insurance a:hover::after,
    .business-top-page .top-table-list.table-insurance a:hover::after {
        content: url(../img/common/btn/btn-arrow-white.svg);
    }
}

.card-info .hyakugo-table .comments::before {
    display: none;
}

.card-info .table-info {
    margin-top: 20px;
    font-size: 14px;
}

/*--------------------------------------------------
service-section
--------------------------------------------------*/
#service {
    background: #202F55;
    padding: 50px 0;
}

.service-section h2 {
    text-align: left;
    color: #fff;
}

.service-section h2 .blue-text {
    color: #BFD3F7;
}

.service-content {
    display: flex;
    align-items: flex-start;
    margin-top: -6%;
}

.service-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
    row-gap: 34px;
    width: 55%;
    padding-top: 8%;
}

.service-btn-wrap .btn-red,
.service-btn-wrap .btn-blue {
    font-size: 20px;
    width: 300px;
    justify-content: flex-start;
    padding: 0.6em 2em;
    text-align: left;
    height: 64px;
}

.service-btn-wrap .btn-blue:nth-child(3) {
    padding: 0 36px 0 34px;
    line-height: 1.2;
}

.service-img {
    width: 45%;
    text-align: center;
}

.service-img img {
    width: 76%;
}

/*--------------------------------------------------
news-section
--------------------------------------------------*/
.news-section h2 {
    text-align: center;
}

.tab-menu-wrap {
    display: flex;
    gap: 6px;
    padding: 0 6px;
}

/*タブのスタイル*/
.tab_item {
    width: 24%;
    margin-left: 0.8%;
    background-color: #F2F2F2;
    border-radius: 10px 10px 0 0;
    padding: 17px 0;
    font-size: 20px;
    text-align: center;
    color: #808080;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
    display: none;
    padding: 20px 0 40px;
    clear: both;
    overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
body.top-page #all:checked~#news_content,
body.top-page #personal:checked~#personal_content,
body.top-page #business:checked~#business_content,
body.top-page #merchant:checked~#merchant_content {
    display: block;
}

#news-page .tab_content,
#news-merchant-page .tab_content,
#news-personal-page .tab_content,
#news-business-page .tab_content {
    display: block;
}

.tabs input#all:checked+.tab_item {
    background-color: #C69C6D;
    color: #fff;
}

.tabs input#personal:checked+.tab_item {
    background-color: #202f55;
    color: #fff;
}

.tabs input#business:checked+.tab_item {
    background-color: #6e2b2f;
    color: #fff;
}

.tabs input#merchant:checked+.tab_item {
    background-color: #15422e;
    color: #fff;
}

@media (any-hover: hover) {
    .tab_item.all-news:hover {
        background-color: #C69C6D;
        color: #fff;
    }

    .tab_item.personal-news:hover {
        background-color: #202f55;
        color: #fff;
    }

    .tab_item.business-news:hover {
        background-color: #6e2b2f;
        color: #fff;
    }

    .tab_item.merchant-news:hover {
        background-color: #15422e;
        color: #fff;
    }
}

.tab_content {
    border-top: 1px solid #808080;
    font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
}

.news-list {
    padding: 10px 0;
    border-bottom: 1px dashed #808080;
}

.news-list-inner {
    padding: 20px 100px 20px 30px;
    width: 100%;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
    position: relative;
    cursor: pointer;
    background: #fff;
    transition: all .3s;
}

.news-list-link {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    z-index: 1;
}

.news-date {
    width: fit-content;
    display: inline;
    font-weight: bold;
}

.news-category-wrap {
    margin-left: 40px;
    display: inline-flex;
    gap: 10px;
}

.news-category {
    display: inline-block;
    width: 7em;
    padding: 2px 0;
    background: #fff;
    border: 1px solid #C6915D;
    color: #C6915D;
    border-radius: 9999px;
    text-align: center;
    transition: all .3s;
    z-index: 2;
    cursor: pointer;
}

.arrow-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #4D4D4D;
    position: absolute;
    top: 50%;
    right: 31px;
    translate: 0 -50%;
}

.news-list .arrow {
    position: relative;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    display: inline-block;
    width: 60%;
    height: 60%;
    margin: auto;
    background: url(../img/common/btn/news-arrow-gray.svg) no-repeat;
    background-size: contain;
    background-position: center;
    transition: all .3s;
}

.news-list .arrow::before,
.news-list .arrow::after {
    display: none;
}

.news-list .news-title {
    margin-top: 14px;
}

@media (any-hover: hover) {
    #news_content .news-list:hover .news-list-inner {
        background: #F4EEE9;
    }

    #personal_content .news-list:hover .news-list-inner {
        background: #E8EFF9;
    }

    #business_content .news-list:hover .news-list-inner {
        background: #f9e8e8;
    }

    #merchant_content .news-list:hover .news-list-inner {
        background: #e8f9ea;
    }

    .news-list:hover .arrow-wrap {
        background: #4D4D4D;
    }

    .news-list:hover .arrow {
        background: url(../img/common/btn/news-arrow-white.svg) no-repeat;
        background-size: contain;
        background-position: center;
    }

    .news-list:hover .arrow::before,
    .news-list:hover .arrow::after {
        background-color: #fff;
    }

    .news-category:hover {
        background: #C6915D;
        border: 1px solid #C6915D;
        color: #ffffff;
    }
}

.news-section .btn-blue {
    margin: 0 auto;
}

.banner {
    width: 78.2%;
}

@media screen and (max-width:1300px) {
    .card-info {
        padding: 50px 30px 20px;
    }

    .card-info-top {
        gap: 30px;
    }
}

@media screen and (max-width:1024px) {
    .radio-section-inner {
        padding: 20px;
    }

    .radio-wrap h3 {
        width: 8em;
        padding: 1em 0;
    }

    .radio-wrap ul {
        margin-left: 1em;
    }

    .card-info-top {
        flex-direction: column;
        gap: 30px;
    }

    .card-img {
        width: 70%;
        max-width: 300px;
        margin: 0 auto;
    }

    .card-info-right {
        width: 100%;
    }

    .card-detail_2 {
        gap: 30px;
        flex-direction: column;
        margin-top: 20px;
    }

    .card-key-wrap {
        width: 100%;
    }

    .card-detail_2 .btn-red {
        max-width: 300px;
        width: 100%;
    }

    .card-info h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card-info-bottom {
        padding-top: 30px;
    }

    .card-info-open,
    .card-info-close {
        padding: 20px 0 20px;
    }

    .service-btn-wrap {
        row-gap: 14px;
        padding-top: 30px;
    }

    .campaign-content li {
        width: calc((100% - 26px) / 2);
    }
}