@charset "UTF-8";
.content_wrapper {
    max-width: 1280px;
    margin: auto;
}

.content_wrapper * {
    box-sizing: border-box;
}

.content_wrapper img {
    max-width: 100%;
    height: auto;
}

.content_wrapper a {
    transition: .25s;
}

.content_wrapper a:hover {
    opacity: 0.7;
}

.content_wrapper .pc_br {
    display: none;
}

.content_wrapper .mv_wrap {
    background: #FCF6E0;
}

.content_wrapper .mv_wrap .note {
    text-align: right;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px 6px;
    font-size: 10px;
    text-align: right;
    color: #888;
}

/* ランキング */
.onlinerank_list {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin: auto;
    padding: 30px 8px 0;
    background: rgba(201, 165, 20, .18);
}

.onlinerank_list li {
    position: relative;
    width: calc((100% - 12px) / 3);
    max-width: 176px;
    border: 3px solid;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    background: #fff;
    padding: 20px min(1.3vw, 20px) 12px;
}

.onlinerank_list li.onlinerank_1 {
    order: 1;
    border-color: #c9a514;
}

.onlinerank_list li.onlinerank_2 {
    order: 0;
    border-color: #999;
}

.onlinerank_list li.onlinerank_3 {
    order: 2;
    border-color: #89584e;
}

.onlinerank_list li::before {
    position: absolute;
    left: 50%;
    top: -30px;
    content: '';
    width: 46px;
    height: 38px;
    background: #ccc;
    transform: translateX(-50%);
}

.onlinerank_list li.onlinerank_1::before {
    background: url(images/onlinerank01.webp) no-repeat center top/contain;
}

.onlinerank_list li.onlinerank_2::before {
    background: url(images/onlinerank02.webp) no-repeat center top/contain;
}

.onlinerank_list li.onlinerank_3::before {
    background: url(images/onlinerank03.webp) no-repeat center top/contain;
}

.onlinerank_list li figure figcaption {
    padding: 10px 0;
    font-size: min(3.2vw, 16px);
    line-height: 1.2;
    text-align: center;
}

.onlinerank_list li.on figcaption {
    color: #DD1D0E;
    font-weight: bold;
}

.onlinerank_list li:not(.on) {
    border-width: 2px;
    bottom: -12px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.onlinerank_list li:not(.on):hover {
    transition: transform .4s ease;
    transform: translatey(-12px);
}

.onlinerank_list li:not(.on):hover::after,
.onlinerank_list li.on::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 12px 0 12px;
    border-color: #fff transparent transparent transparent;
    transform: translatex(-50%);
    z-index: 2;
}

/* 保険会社ごとの説明箇所 */
.company_info {
    margin: 0 auto 30px;
}

.company_info h2 {
    position: relative;
    padding: 20px 10px 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
}

.company_info h2 span {
    display: inline-block;
    background: #fff;
    color: #DD1D0E;
    border-radius: 2px;
    padding: 5px 15px;
    margin-right: 10px;
    font-size: .818em;
}

.company_info.pc_info h2 {
    background: #C9A514;
}

.company_info.ln_info h2 {
    background: #93A7A7;
}

.company_info.ha_info h2 {
    background: #AD796E;
}

.company_info .product_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: auto;
}

.company_info .product_wrap .category_box {
    border-radius: 8px;
    background: #e6e5e1;
    overflow: hidden;
    padding: 0 16px 24px;
}

.company_info .product_wrap .cat_ttl {
    background: #827D69;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    margin: 0 -16px 16px;
}

.company_info .product_wrap .product_box {
    border-radius: 8px;
    background: #fff;
    padding: 16px;
}

.company_info .product_wrap .product_logo_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.company_info .product_wrap .product_logo_link div {
    width: 90px;
}

.company_info .product_wrap .product_logo_link p {
    width: calc(100% - 100px);
    font-weight: bold;
}

.company_info .product_wrap .product_logo_link p span {
    font-size: 12px;
    display: block;
    font-weight: normal;
}

.company_info .product_wrap .ranking_bnr {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 6px;
    margin: 20px auto 6px;
    max-width: 500px;
}

.company_info .product_wrap .ranking_bnr .bnr_box:only-child {
    width: 100%;
}

.company_info .product_wrap .ranking_bnr .ttl {
    font-size: 14px;
    font-weight: bold;
    background: #F6AC00;
    text-align: center;
    color: #fff;
    padding: 3px 6px;
    margin: 0 0 6px;
}

.company_info .product_wrap .ranking_bnr .no2 .ttl {
    background: #8197BB;
}

.company_info .product_wrap .ranking_bnr .bnr{
    width: calc(100% - 12px);
    max-width: 400px;
}

.company_info .product_wrap .ranking_bnr + .note {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    max-width: 500px;
    margin: auto;
}

.company_info .product_wrap .point_list {
    margin: 16px 0;
    padding-top: 16px;
    border-top: 2px dotted #d6d6d6;
}

.company_info .product_wrap .point_list li {
    font-size: 13px;
    background: url(images/icon_check.svg) no-repeat left 3px;
    padding-left: 20px;
    margin-bottom: 3px;
}

.company_info .product_wrap .point_list li sup {
    font-size: 11px;
    line-height: 1;
}

.company_info .product_wrap .point_list li span,
.company_info .product_wrap .point_list li small {
    display: block;
    font-size: 12px;
    color: #888;
}

.company_info .product_wrap .point_list li em {
    color: #DD1D0E;
    font-weight: bold;
}

.company_info .product_wrap .txt_link {
    text-align: right;
}

.company_info .product_wrap .fp_comment {
    background: #F6F6F4;
    border-radius: 4px;
    padding: 16px 0;
    margin: 24px 0 16px;
}

.company_info .product_wrap .fp_comment dt {
    position: relative;
    border-bottom: 1px solid #D1D1D1;
    padding: 0 60px 0 16px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.8;
}

.company_info .product_wrap .fp_comment dt span {
    display: inline-block;
    background: #AAA696;
    padding: 5px 10px;
    line-height: 1;
    color: #fff;
    font-weight: normal;
    font-size: 12px;
}

.company_info .product_wrap .fp_comment dt::before {
    content: "";
    width: 69px;
    height: 69px;
    background: url(images/img_fp.webp) no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 0;
}

.company_info .product_wrap .fp_comment dd {
    font-size: 13px;
    line-height: 1.3;
    padding: 0 16px;
}

.company_info .product_wrap .fp_comment dd strong {
    color: #DD1D0E;
    font-weight: bold;
}

.company_info .product_wrap .fp_comment dd sup {
    font-size: 12px;
}

.company_info .product_wrap .btn_wrap {
    margin-top: 16px;
    text-align: center;
}

/* 見積り・シミュレーションボタン */
.company_info .estimation_btn {
    text-align: center;
    max-width: 500px;
    width: calc(100% - 48px);
    margin: 0 auto 16px;
}

.company_info .product_wrap .estimation_btn {
    width: 100%;
}

.company_info .estimation_btn a {
    display: block;
    background-color: #F3483A;
    padding: 16px;
    border-radius: 100px;
    box-shadow: 0px 5px 5px #00000033;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.company_info .product_wrap .item_att_block {
    margin-top: 20px;
}

.company_info .product_wrap .item_att_block li {
    text-indent: -2em;
    padding-left: 2em;
    margin-bottom: 0.5em;
    font-size: 12px;
    color: #888;
}

/* 保険相談 */
.soudan_wrap {
    padding: 50px 15px 30px;
    background: #EEEEEB;
}

.soudan_wrap .soudan_area {
    max-width: 410px;
    margin: 0 auto 15px;
}

.soudan_wrap .soudan_area dl {
    background: #fff;
    border-radius: 10px;
    padding: 10px 10px 0;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

.soudan_wrap .soudan_area dl dt {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
    margin: 0 0 10px;
}

.soudan_wrap .soudan_area dl dd {
    margin: 0 15px;
    padding: 0 0 10px 30px;
    background: url(images/check_ico.webp) no-repeat left top;
    background-size: 21px;
    font-size: 16px;
}

.soudan_wrap .soudan_area .arrow {
    margin: 0 auto 5px;
    width: 140px;
}

.soudan_wrap .soudan_area .soudan_txt {
    margin: 0 0 10px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.soudan_wrap .soudan_area p:not([class]) {
    margin: 0 0 20px;
}

/* キャンペーン導線
------------------------------------------- */
.cp_container {
    margin: -8px auto 0;
    padding: 0 16px 32px;
}

.cp_container .cp_wrap {
    border: 4px solid #28A1CC;
    border-radius: 30px;
    background: #FFF;
    overflow: hidden;
    font-size: min(4.6vw, 16px);
    text-align: center;
}

.cp_container .cp_wrap .cp_mv {
    margin-bottom: 12px;
}

.cp_container .cp_wrap p {
    margin: 0 6px 12px;
}

.cp_container .cp_wrap em {
    font-weight: bold;
}

.cp_container .cp_wrap .marker {
    line-height: 1.3;
    background: linear-gradient(transparent 35%, #FFFF99 35%);
    font-weight: bold;
    font-size: min(5.5vw, 20px);
}

.cp_container .cp_wrap .cp_btn {
    margin: 10px 15px 20px;
}

.cp_container .cp_wrap .cp_btn .cp_btn_tit {
    margin-bottom: 6px;
}

.cp_container .cp_wrap .cp_btn .cp_btn_tit span {
    display: inline-block;
    line-height: 1;
    padding: 8px 30px 0 0;
    background: url(images/ico_gift.webp) no-repeat right bottom;
    background-size: 22px;
}

.cp_container .cp_wrap .cp_btn a {
    display: block;
    max-width: 500px;
    line-height: 1.3;
    margin: auto;
    padding: 8px;
    border-radius: 100px;
    background: #FD5925;
    box-shadow: 0px 4px 6px #3542474D;
    color: #FFF;
    font-weight: bold;
    font-size: 17px;
    text-decoration: none;
}

.cp_container .cp_wrap .cp_btn a span {
    display: block;
    font-weight: normal;
    font-size: 13px;
}

/* 相談エリア - ボタン */
.soudan_wrap ul {
    max-width: 720px;
    margin: 0 auto;
}

.soudan_wrap ul li:first-child {
    margin: 0 0 25px;
}

.soudan_wrap ul li p {
    margin: 0 0 5px;
    padding: 0 10px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
}

/* 吹き出し */
.soudan_wrap ul li p.speech span {
    position: relative;
    padding: 0 10px;
}

.soudan_wrap ul li p.speech span::before,
.soudan_wrap ul li p.speech span::after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: #333;
}

.soudan_wrap ul li p.speech span::before {
    left: 0;
    transform: rotate(-20deg);
}

.soudan_wrap ul li p.speech span::after {
    right: 0;
    transform: rotate(20deg);
}

.soudan_wrap ul li a {
    display: block;
    padding: 10px 25px;
    border-radius: 100px;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    text-align: center;
}

.soudan_wrap ul li:nth-child(1) a {
    box-shadow: 0 4px 0 #061a5b;
    background: #295aaa;
}

.lp_att {
    max-width: 730px;
    margin: 0 auto;
    padding: 15px;
    font-size: 12px;
    line-height: 1.8;
}

/* フッター */
.company-box {
    padding: 15px;
    border-top: 1px solid #ccc;
    font-size: 12px;
}

.document-number {
    font-size: 12px;
    text-align: right;
}

.company-box dl dt {
    font-weight: bold;
}

.company-box dl dd {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .content_wrapper {
        font-size: 16px;
    }

    .content_wrapper .pc_br {
        display: block;
    }

    .content_wrapper .mv_wrap h1 {
        width: 600px;
        margin: auto;
    }

    .content_wrapper .mv_wrap .note {
        font-size: 12px;
    }

    /* ランキング */
    .onlinerank_list {
        gap: 20px;
    }

    .onlinerank_list li {
        width: calc((100% - 40px) / 3);
    }

    /* 保険会社ごとの説明箇所 */
    .company_info h2 {
        margin: 0 auto 28px;
        padding-bottom: 16px;
        font-size: 28px;
    }

    .company_info h2 span {
        margin-right: 16px;
    }

    .company_info .product_wrap .cat_ttl {
        font-size: 26px;
        margin: 0 -40px 32px;
    }

    .company_info .product_wrap .category_box {
        padding: 0 40px 40px;
    }

    .company_info .product_wrap .product_box {
        padding: 24px 40px;
    }

    .company_info .product_wrap .product_logo_link {
        justify-content: center;
    }

    .company_info .product_wrap .product_logo_link div {
        width: 122px;
    }

    .company_info .product_wrap .product_logo_link p {
        width: auto;
        font-size: 22px;
        margin-left: 10px;
        line-height: 1.6;
    }

    .company_info .product_wrap .product_logo_link p span {
        font-size: 14px;
    }

    .company_info .product_wrap .point_list li {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .company_info .product_wrap .ranking_bnr {
        max-width: 500px;
        margin-bottom: 10px;
    }

    .company_info .product_wrap .ranking_bnr .bnr_box:only-child {
        display: flex;
        gap: 16px;
    }

    .company_info .product_wrap .ranking_bnr .bnr_box:only-child .ttl {
        display: flex;
        align-items: center;
        width: 40%;
        justify-content: center;
        margin: 0;
    }

    .company_info .product_wrap .ranking_bnr .bnr_box:only-child .bnr {
        width: 60%;
    }

    .company_info .product_wrap .ranking_bnr .bnr_box:not(:only-child) .bnr {
        width: calc(100% - 80px);
    }

    .company_info .product_wrap .fp_comment {
        width: 640px;
        margin: 24px auto;
    }

    .company_info .product_wrap .fp_comment dt {
        padding: 0 64px;
        line-height: 2;
    }

    .company_info .product_wrap .fp_comment dt span {
        font-size: 14px;
    }

    .company_info .product_wrap .fp_comment dt::before {
        width: 80px;
        height: 80px;
        right: 64px;
    }

    .company_info .product_wrap .fp_comment dd {
        padding: 0 64px;
        font-size: 14px;
    }

    .company_info .product_wrap .btn_wrap {
        width: 500px;
        margin: 16px auto;
    }

    .company_info .estimation_btn {
        margin-bottom: 32px;
    }

    .company_info .estimation_btn a {
        padding: 24px;
        font-size: 22px;
    }

    /* キャンペーン導線 */
    .cp_container {
        max-width: 750px;
        margin: auto;
    }

    .cp_container .cp_wrap {
        font-size: 18px;
    }

    .cp_container .cp_wrap .cp_btn {
        margin-bottom: 30px;
    }

    .cp_container .cp_wrap .cp_btn a {
        padding: 14px 0;
        font-size: 26px;
    }

    .cp_container .cp_wrap .cp_btn a span {
        font-size: 14px;
    }

    /* フッター */
    .company-box {
        display: flex;
        flex-wrap: wrap;
        max-width: 1040px;
        margin: 30px auto;
    }

    .document-number {
        width: 100%;
    }

    .company-box dl {
        width: 50%;
    }
}