@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');
/* 自動車保険LP */
/* 共通
------------------------------------------- */
.carlp {
    max-width: 1040px;
    margin: auto;
    font-family: "Noto Sans JP", Avenir, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", ヒラギノ角ゴシック, メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.carlp img {
    width: 100%;
    height: auto;
}
.carlp a {
    text-decoration: none;
    transition: all 0.3s ease;
}
.carlp a:hover {
    opacity: 0.8;
}
.carlp em {
    font-weight: bold;
}
.carlp sub {
    line-height: 1;
    font-size: 10px;
}
.carlp sup {
    font-size: 12px;
    font-weight: normal;
}
.carlp .note {
    font-size: 12px;
}
.carlp .att {
	color: #e96297;
    font-weight: bold;
}
.carlp .rounder {
    margin: 20px auto;
    padding: 15px 20px;
    border: 2px solid #77c6b9;
    border-radius: 25px;
    background: #fff;
}
/* TITLE */
.carlp .sec_tit2 {
    line-height: 1.4;
    padding: 10px;
    background: #006c60;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
.carlp .sec_tit2 em {
    color: #ff0;
    font-size: 16px;
}
.carlp .sub_tit {
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: min(4.78vw, 18px);
}

/* 開閉
------------------------------------------- */
.fold_wrap {
    padding: 10px 15px;
    border-top: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
}
.fold_wrap .fold_tit {
    position: relative;
    font-size: 14px;
    cursor: pointer;
}
.fold_wrap .fold_tit::before,
.fold_wrap .fold_tit::after {
    content: '';
    position: absolute;
    top:calc(50% - 1px);
    right: 0;
    display: block;
    width: 18px;
    height: 2px;
    background: #006c60;
}
.fold_wrap .fold_tit::after {
    transform: rotate(90deg);
}
.fold_wrap .fold_tit.open::after {
    content: none;
}
.fold_wrap .fold_content {
    display: none;
    margin: 10px 0 0;
}
.fold_wrap ul.note li:not(:last-child) {
    margin-bottom: 10px;
}

/* BTN
------------------------------------------- */
.carlp .btn_wrap {
	margin: 20px auto;
}
.carlp .btn_wrap a {
    line-height: 1.3;
    display: block;
    padding: 10px;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    font-size: min(4.78vw, 18px);
    text-align: center;
}
.carlp .btn_wrap a.btn_online {
    background: #f1337d;
    box-shadow: 0 4px #ae0044;
}
.carlp .btn_wrap a.btn_online span{
    font-weight: normal;
}

.carlp .btn_wrap .note {
    margin: 5px auto 15px;
    text-align: center;
}

/* 見積りボタン */
.estimate_btn_wrap {
    position: relative;
    max-width: 640px;
}
:not(.btn_wrap) > .estimate_btn_wrap {
    margin: 45px auto 20px;
}

.btn_wrap .estimate_btn_wrap {
    margin-top: 34px;
}

.estimate_btn_wrap .btn_estimate {
    line-height: 1;
    display: block;
    padding: 13px 10px;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    font-size: min(4.78vw, 18px);
    text-align: center;
    background: #fd5925;
    box-shadow: 0 4px #db3107;
}

.estimate_btn_wrap .btn_estimate:hover {
    background: rgba(253,89,37,80%);
    box-shadow: 0 4px rgba(219,49,7,80%);
    opacity: inherit;
}

.estimate_btn_wrap p {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    color: #fd5925;
    text-align: center;
    white-space: nowrap;
    width: fit-content;
    padding: 5px 15px;
    background: #fff;
    border: 2px solid #fd5925;
    border-radius: 100px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}
.estimate_btn_wrap p::before {
    border: solid transparent;
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-color: rgba(0, 0, 255, 0);
    border-top-width: 6px;
    border-left-width: 5px;
    border-right-width: 5px;
    border-top-color: #fff;
    z-index: 1;
}
.estimate_btn_wrap.no1item .btn_estimate{
    background: #ce0000;
    box-shadow: 0 4px #a90000;
    line-height: 1.3;
    font-size: min(4vw, 18px);
    padding: 10px;
}
.estimate_btn_wrap.no1item .btn_estimate span:first-child{
    font-weight: normal;
    font-size: .9em;
}
.estimate_btn_wrap.no1item .btn_estimate span{
    display: inline-block;
}
.estimate_btn_wrap.no1item p {
    border-color: #ce0000;
    color: #ce0000;
}

/* speech */
.carlp .speech {
    text-align: center;
}
.carlp .speech span {
    position: relative;
    padding: 0 15px;
    font-weight: bold;
    word-break: break-all;
    color: #e96297;
    font-size: min(6vw, 26px);
}
.carlp .speech span::before,
.carlp .speech span::after {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    bottom: 0;
    background-color: #e96297;
}
.carlp .speech span::before {
    left: 0;
    transform: rotate(-20deg);
}
.carlp .speech span::after {
    right: 0;
    transform: rotate(20deg);
}
.carlp .speech.ttl {
    margin-bottom: 16px;
}

/* MV
------------------------------------------- */
.mv_wrap .mv_info {
    position: relative;
    line-height: 1.3;
    padding: 5px 10px;
    background: #333;
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.mv_wrap .mv_info::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-top: 12px solid #333;
    transform: translate(-50%, 100%);
    z-index: 2;
}
.mv_wrap .mv_info span {
    font-weight: bold;
    font-size: min(4.78vw, 18px);
}
.mv_wrap .mv {
    position: relative;
}
.mv_wrap .mv .note {
    position: absolute;
    right: 0;
    top: 0;
    padding: 5px;
    font-size: 10px;
}

/* 今、注目を集めている自動車保険を徹底解説
------------------------------------------- */
.rank_wrap {
    padding: 15px 0;
    background: #f1f1f1;
    text-align: center;
}
.rank_wrap .ranking_list_box a:hover {
    opacity: 1;
}
.rank_wrap .sec_tit1 {
    position: relative;
    margin: 0 auto 5px;
    text-align: center;
    letter-spacing: .08em;
}
.rank_wrap .sec_tit1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #d1d1d1;
}
.rank_wrap .sec_tit1 span {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    background: #f1f1f1;
    font-weight: bold;
    font-size: 20px;
    z-index: 1;
}
.rank_wrap .ranking_list_box {
    display: flex;
    margin: auto 15px;
    gap: 15px;
    justify-content: center;
}
.rank_wrap .ranking_list_box li {
    border: 1px solid #aaa;
    border-radius: 4px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .2) 0px 2px 0px;
}
.rank_wrap .ranking_list_box li.no1 {
    width: 36%;
    padding: 0 0 18px;
}
.rank_wrap .ranking_list_box li.no2 {
    max-width: 20%;
    padding: 8px 19px 14px;
}
.rank_wrap .ranking_list_box li.no3 {
    max-width: 20%;
    padding: 8px 19px 14px;
}
.rank_wrap .rank_icon {
    margin: 0 auto 11px;
    max-width: 40px;
}
.rank_wrap .no1 .rank_icon {
    max-width: 115px;
    margin: -3px auto 0;
}

.rank_wrap .no1 .rank_icon img:last-child {
    max-width: 50px;
    margin: -10px auto 0;
}
.rank_wrap figcaption {
    padding: 5px 0 2px;
    font-weight: bold;
    text-decoration: underline;
}
/* mv見積りボタン */
.carlp .rank_wrap .estimate_btn_wrap {
    margin: 45px 15px 4px;
}

/* 保険料を賢く節約するなら一括見積りがおすすめ
------------------------------------------- */
.estimate_wrap .inner {
    padding: 0 15px;
}
.estimate_wrap .intro {
    padding: 20px 0 20px 95px;
    background: url("images/ico_fp.webp") 0 center no-repeat;
	background-size: 80px auto;
}
.estimate_wrap .company_list_wrap {
    margin-bottom: 15px;
}
.estimate_wrap .company_list_wrap .ttl {
    margin-bottom: 5px;
    font-size: 12px;
    text-align: center;
}
.estimate_wrap .company_list {
    display: flex;
    flex-wrap: wrap;
}
.estimate_wrap .company_list li {
    width: calc((100% - 30px) / 4);
    margin: 0 10px 10px 0;
    border: 1px solid #d1d1d1;
    padding: 10px;
    background: #fff;
}
.estimate_wrap .company_list li:nth-child(4n) {
	margin-right: 0;
}
.estimate_wrap .trial_calculation {
    margin: 20px auto;
    padding: 12px 15px 0 15px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
}
.estimate_wrap .trial_calculation .ttl_btn {
    position: relative;
    padding: 0 0 12px 30px;
    font-size: 14px;
    cursor: pointer;
}
.estimate_wrap .trial_calculation .ttl_btn::before {
    content: "＋";
    position: absolute;
    left: 0;
    line-height: 1;
    color: #888;
    font-size: 21px;
}
.estimate_wrap .trial_calculation .ttl_btn.open {
    border-bottom: 1px dashed #ccc;
}
.estimate_wrap .trial_calculation .ttl_btn.open::before {
    content: "－";
}
.estimate_wrap .trial_calculation .notes {
    display: none;
    margin-top: 15px;
    padding-bottom: 15px;
}

/* 人気上昇ランキング1位の商品を徹底解説【PR】
------------------------------------------- */
.pr_wrap .item_wrap {
    padding: 30px 15px 0;
}
.pr_wrap .item {
    position: relative;
    padding: 30px 15px 15px;
    border-radius: 4px;
    background: #f1f1f1;
}
.pr_wrap .rank {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 40px;
    transform: translate(-50%, -50%);
}
.pr_wrap .catch_txt {
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}
.pr_wrap .logo_wrap {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 400px;
    margin: 0 auto 10px;
}
.pr_wrap .logo_wrap figure {
    width: calc(100% / 2);
    padding: 9px;
    border: 1px solid #d1d1d1;
    background: #fff;
}
.pr_wrap .name {
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
}
.pr_wrap .name span {
    display: block;
    font-weight: bold;
    font-size: 18px;
}
.pr_wrap .detail_btn {
    display: block;
    max-width: 400px;
    margin: auto;
    padding: 5px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 3px #d1d1d1;
    font-size: 14px;
    text-align: center;
}
.pr_wrap .btn_wrap {
    margin: 20px 15px;
}

/* 専用ドライブレコーダーをお届け！
------------------------------------------- */
.recorder_wrap {
    background: #edf9f7;
}
.recorder_wrap .inner {
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}
.recorder_wrap .sub_tit {
    padding-left: 80px;
    background: url(images/deco_car.webp) no-repeat left 0 top 50%;
    background-size: 68px auto;
}
.recorder_wrap .txt {
    font-weight: bold;
    font-size: min(6.78vw, 24px);
    text-align: center;
}
.recorder_wrap .txt .att {
    font-size: 36px;
}
.recorder_wrap figure {
    margin-bottom: 60px;
    text-align: center;
}
.recorder_wrap figure img {
    max-width: 328px;
}
.recorder_wrap .rounder {
    position: relative;
}
.recorder_wrap .rounder::before {
    content: "";
    position: absolute;
    left: 0;
    top: -35px;
    width: 90px;
    height: 90px;
    background: url(images/deco_recorder.webp);
    background-size: contain;
}
.recorder_wrap .rounder .ttl {
    margin: 0 0 20px;
}
.recorder_wrap .rounder .ttl p {
    font-weight: bold;
}
.recorder_wrap .rounder .ttl p:first-child {
    margin-left: 80px;
    font-size: 20px;
}
.recorder_wrap .rounder .ttl p:last-child {
    font-size: min(7.5vw, 26px);
}
.recorder_wrap .rounder .ttl .txt_m {
    font-size: 34px;
}
.rounder .users_voice li {
    display: flex;
    gap:16px;
    margin: 0 0 10px;
}
.rounder .users_voice li figure{
    width: 72px;
    margin: 0;
}
.rounder .users_voice li figcaption{
    font-size: 12px;
    color: #666;
}
.rounder .users_voice li p{
    width: calc(100% - 88px);
    position: relative;
    font-size: 14px;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 10px;
}
.rounder .users_voice li p::after{
    border: solid transparent;
    content: '';
    position: absolute;
    top: 33px;
    left: 0;
    transform: translateX(-100%);
    border-color: rgba(0, 0, 255, 0);
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-right-color: #f2f2f2;
}
.rounder .users_voice .att{
    position: relative;
    text-align: center;
    font-size: min(8vw, 28px);
    color: #ce0000;
    padding-top: 30px;
}
.rounder .users_voice .att::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 0;
    border: 40px solid transparent;
    border-top: 25px solid #f7b4cf;
    transform: translateX(-50%);
    z-index: 1;
}

/* ドラレコ付き自動車保険の中でもダントツの安さ
------------------------------------------- */
.best_wrap {
    padding: 20px 0;
    background: #edf9f7;
}
.best_wrap .speech_wrap {
    position: relative;
    padding-top: 28px;
}
.best_wrap .speech_wrap .speech {
    position: absolute;
    left: 50%;
    top: -15px;
    padding: 3px 18px;
    border: 2px solid #006c60;
    border-radius: 50px;
    background: #fff;
    color: #006c60;
    font-size: 18px;
    transform: translateX(-50%);
}
.best_wrap .speech_wrap em {
    font-size: 20px;
}
.best_wrap .inner {
    margin: 20px 20px 0;
    overflow: hidden;
}
.best_wrap .table_wrap table {
    font-size: 14px;
}
.best_wrap .table_wrap #table_header {
    width: 115px;
    float: left;
}
.best_wrap .table_wrap #table_data {
    overflow-x: auto;
    white-space: nowrap;
}
.best_wrap .table_wrap .item_data {
    width: 100%;
}
.best_wrap .table_wrap th,
.best_wrap .table_wrap td {
    height: 55px;
    line-height: 1.3;
    padding: 5px;
    border: 1px solid #77c6b9;
    text-align: center;
}
.best_wrap .table_wrap #table_header td {
    border-right: none;
}
.best_wrap .table_wrap .ta_tit {
    height: 70px;
}
.best_wrap .table_wrap .ta_bg1 {
    background: #ffeff5;
}
.best_wrap .table_wrap .ta_bg2 {
    background: #fff;
}
.best_wrap .table_wrap .price {
    font-size: 18px;
}
.best_wrap .table_wrap .ta_bg1 td:first-child {
    font-weight: bold;
}
.best_wrap .table_wrap #table_data .type {
    padding: 5px 25px;
}
.best_wrap .table_wrap .note {
    margin: 5px auto 20px;
    clear: both;
}
.best_wrap .rounder .txt {
    color: #006c60;
}
.best_wrap .btn_wrap {
    position: relative;
    margin-top: 80px;
}
.best_wrap .btn_wrap::before {
    content: "";
    position: absolute;
    left: 45%;
    bottom: 100%;
    width: 112px;
    height: 91px;
    background: url(images/deco_staff.webp);
    background-size: contain;
    transform: translateX(-45%);
}

/* 募文
------------------------------------------- */
.document-box {
    max-width: 1040px;
    margin: auto;
    padding: 7px 15px 4px;
}
.document-box .document-number {
    font-size: 12px;
    text-align: right;
    margin: 0 0 3px;
}

/* 画面サイズ別調整
------------------------------------------- */
@media screen and (min-width:768px) {
    /* 共通
    ------------------------------------------- */
    .carlp .pcn {
        display: none;
    }
    .carlp .rounder {
        margin: 30px auto;
    }
    .carlp .note {
        font-size: 14px;
    }
    .recorder_wrap .inner,
    .best_wrap .inner {
        max-width: 650px;
    }
    .recorder_wrap .inner{
        padding: 30px 0 0;
    }
    .best_wrap .inner {
        margin: 30px auto 0;
    }
    /* TITLE */
    .carlp .sec_tit2 {
        padding: 13px;
        font-size: 24px;
    }
    .carlp .sec_tit2 em {
        font-size: 18px;
    }
    .carlp .sub_tit {
        font-size: 20px;
    }

    /* 見積りボタン */
    .estimate_btn_wrap p {
        font-size: 16px;
        width: 350px;
        top: -28px;
    }

    /* BTN
    ------------------------------------------- */
    .carlp .btn_wrap {
        max-width: 640px;
        margin: 30px auto;
    }
    .carlp .btn_wrap a {
        font-size: 20px;
    }
    .carlp .btn_wrap .note {
        margin-bottom: 20px;
    }

    /* MV
    ------------------------------------------- */
    .mv_wrap .mv_info sub {
        position: relative;
        bottom: 0.3em;
        padding-right: 10px;
    }
    .mv_wrap .mv .note {
        font-size: 12px;
    }

    /* 今、注目を集めている自動車保険を徹底解説
    ------------------------------------------- */
    .rank_wrap .sec_tit1 span {
        font-size: 24px;
    }
    .rank_wrap .ranking_list_box {
        justify-content: center;
        margin: 40px auto 5px;
    }
    .rank_wrap .ranking_list_box li:hover {
        opacity: 0.8;
    }
    .rank_wrap .rank_icon {
        max-width: 56px;
        margin-top: 5px;
    }
   .rank_wrap .ranking_list_box li.no1 {
        max-width: 240px;
    }
    .rank_wrap .no1 .rank_icon {
        max-width: 210px;
    }
    .rank_wrap .no1 .rank_icon img:last-child {
        max-width: 73px;
        margin-top: -20px;
    }
    .rank_wrap .product_logo img {
        max-width: 160px;
    }
    .rank_wrap figcaption {
        font-size: 16px;
    }

    /* mv見積りボタン */
    .carlp .rank_wrap .estimate_btn_wrap {
        margin: 45px auto 4px;
    }

    /* 保険料を賢く節約するなら一括見積りがおすすめ
    ------------------------------------------- */
    .estimate_wrap .inner {
        padding: 30px 20px 0;
    }
    .estimate_wrap .intro {
        min-height: 90px;
        margin-bottom: 40px;
        padding: 0 0 0 calc(25% + 20px);
        background-size: 25% auto;
        font-size: 18px;
    }
    .estimate_wrap .company_list_wrap .ttl {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .estimate_wrap .box_wrap {
        display: flex;
        justify-content: space-between;
    }
    .estimate_wrap .box_wrap > * {
        width: calc(50% - 20px);
    }

    /* 人気上昇ランキング1位の商品を徹底解説【PR】
    ------------------------------------------- */
    .pr_wrap .item_wrap {
        padding: 40px 20px 0;
    }
    .pr_wrap .item {
        padding: 40px 30px 30px;
    }
    .pr_wrap .rank {
        top: -10px;
        width: 75px;
    }
    .pr_wrap .catch_txt {
        font-size: 20px;
    }
    .pr_wrap .logo_wrap {
        margin: 20px auto;
    }
    .pr_wrap .logo_wrap figure {
        padding: 11px;
    }
    .pr_wrap .name {
        font-size: 16px;
    }
    .pr_wrap .name span {
        font-size: 20px;
    }
    .pr_wrap .detail_btn {
        font-size: 16px;
    }

    /* 専用ドライブレコーダーをお届け！
    ------------------------------------------- */
    .recorder_wrap .sub_tit {
        max-width: 410px;
    }
    .recorder_wrap figure img {
        max-width: 410px;
    }
    .recorder_wrap .rounder::before {
        left: 23%;
    }
    .recorder_wrap .rounder .ttl p {
        text-align: center;
    }
    .recorder_wrap .rounder .ttl p:first-child {
        font-size: 22px;
    }
    .recorder_wrap .rounder .ttl p:last-child {
        font-size: 32px;
    }
    .rounder .users_voice li p{
        font-size: inherit;
        padding: 16px;
    }
    .rounder .users_voice .att {
        margin-bottom: 16px;
    }

    /* ドライブレコーダー付き自動車保険の中でもダントツの安さ
    ------------------------------------------- */
    .best_wrap .speech_wrap {
        padding-top: 25px;
    }
    .best_wrap .speech_wrap em {
        font-size: 25px;
    }
    .best_wrap .table_wrap th,
    .best_wrap .table_wrap td {
        height: 72px;
    }
    .best_wrap .table_wrap .ta_tit {
        height: 88px;
    }
    .best_wrap .table_wrap tr[class^="ta_bg"] td:not(.type) {
        font-size: 18px;
    }
    .best_wrap .table_wrap #table_header {
        width: 200px;
        font-size: 18px;
    }
    .best_wrap .table_wrap .item_data tr:first-child th:first-child {
        width: 180px;
    }
    .best_wrap .table_wrap .ta_tit {
        font-size: 18px;
    }
    .best_wrap .table_wrap .ta_tit .note {
        display: inline-block;
        margin-bottom: 0;
        font-size: 12px;
    }
    .best_wrap .table_wrap .price {
        font-size: 23px;
    }
    .best_wrap .rounder .txt {
        font-size: 18px;
    }
    .best_wrap .btn_wrap {
        margin-top: 80px;
    }

    /* 募文
    ------------------------------------------- */
    .document-box {
        padding: 10px 15px;
        text-align: right;
    }
    .document-box .document-number {
        display: inline-block;
        margin: 0 0 0 15px;
    }
}

/* 画面サイズ別調整
------------------------------------------- */
@media screen and (max-width:768px) {
    /* 今、注目を集めている自動車保険を徹底解説
    ------------------------------------------- */
    .rank_wrap .ranking_list_box li.no1 {
        width: 38%;
        padding: 0 0 13px;
    }
    .rank_wrap .ranking_list_box li.no2,
    .rank_wrap .ranking_list_box li.no3 {
        max-width: calc((63% - 30px) / 2);
        padding: 8px 6px 18px;
    }
    .rank_wrap .product_logo img {
        max-width: 80px;
    }
    .rank_wrap figcaption {
        font-size: 10px;
    }

}

