@charset "UTF-8";
:root {
    --color1: #9536B7;
    --color2: #297ABC;
    --color3: #EB8500;
    --color4: #18BE7E;
    --color1_1: #F2DEF9;
    --color2_1: #DFF0FE;
    --color3_1: #FFECCB;
    --color4_1: #D3F8E3;
}

/* COMMON
----------------------------------------- */
.container {
    font-family: Roboto,"Helvetica Neue",Arial,"Century Gothic","Hiragino Sans","Hiragino Kaku Gothic ProN","BIZ UDPGothic",Meiryo,sans-serif;
    font-size: 14px;
    line-height: 1.2;
}
.container *,
.container *::before,
.container *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container a {
    outline: none;
    color:#333;
    text-decoration: none;
}
.container em {
    font-weight: bold;
}
.container img {
    max-width: 100%;
    height: auto;
}
.container .note {
    margin-top: 8px;
    padding-left:1em;
    text-indent:-1em;
    font-size: 12px;
}

/* BTN
----------------------------------------- */
/* 見積りボタン */
.estimate_btn {
    margin: 20px auto;
    padding: 0 14px;
    text-align: center;
}
.estimate_btn a {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 345px;
    padding: 16px 30px;
    border: 2px solid #FFF;
    border-radius: 100px;
    background: linear-gradient(to bottom, #43c0ed 0%, #43c0ed 50%, #29a3cf 51%, #29a3cf 100%);
    box-shadow: 0px 0px 10px rgb(255 255 255);
    color: #FFF;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}
.estimate_btn a::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    transform: translateY(-50%) rotate(45deg);
}

/* あなたにぴったりの保険を見つけましょう！ */
.find_btn {
    margin: 40px auto;
    padding: initial;
}
.find_btn .btn_txt1 span {
    position: relative;
    font-size: 18px;
}
.find_btn .btn_txt1 span::after,
.find_btn .btn_txt1 span::before {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: #0B9C7D;
}
.find_btn .btn_txt1 span::before {
    left: -10px;
    transform: rotate(345deg);
}
.find_btn .btn_txt1 span::after {
    right: -10px;
    transform: rotate(20deg);
}
.find_btn .btn_txt2 {
    line-height: 1.6;
    color: #FD5925;
    font-size: 32px;
    font-size: min(9.8vw, 32px);
}

/* TITLE
----------------------------------------- */
/* H2 */
.container h2 {
    position: relative;
    margin-bottom: 16px;
    text-align: center;
}
.container h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #055241;
}
.container h2 > span {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    background: #FFF;
    color: #055241;
    font-weight: bold;
    font-size: 24px;
    z-index: 1;
}
/* H2-吹き出し */
.container h2 .repletion {
    position: relative;
    display: table;
    margin: 0 auto 16px;
    padding: 10px 16px;
    border-radius: 50px;
    background: #055241;
    color: #FFF;
    font-size: 18px;
}
.container h2 .repletion::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(5,82,65) 51%,rgba(5,82,65) 100%);
    transform: translateX(-50%) rotate(135deg);
}
/* TIT */
.container .mini_tit {
    line-height: 1.5;
    padding: 16px 0 12px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

/* MV FORM
----------------------------------------- */
.prepare_form .inr {
    background: #F1F1F1;
}
.prepare_form #insurance_type {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 20px;
}
.prepare_form #insurance_type li {
    width: calc((100% - 12px) / 2);
}
.prepare_form #insurance_type label {
    position: relative;
    display: block;
    padding: 8px 4px 8px 32px;
    border: 1px solid #D1D1D1;
    font-weight: bold;
    font-size: min(4.28vw, 16px);
}
.prepare_form #insurance_type .select_life label {
    border-color: var(--color1);
    background: var(--color1_1);
}
.prepare_form #insurance_type .select_medical label {
    border-color: var(--color2);
    background: var(--color2_1);
}
.prepare_form #insurance_type .select_cancer label {
    border-color: var(--color3);
    background: var(--color3_1);
}
.prepare_form #insurance_type .select_palliative label {
    border-color: var(--color4);
    background: var(--color4_1);
}
.prepare_form #insurance_type label::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid #D1D1D1;
    border-radius: 100%;
    background: #FFF;
    transform: translateY(-50%);
}
.prepare_form #insurance_type label:has(>input:checked)::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    transform: translateY(-50%);
}
.prepare_form #insurance_type .select_life label:has(>input:checked)::after {
    background: var(--color1);
}
.prepare_form #insurance_type .select_medical label:has(>input:checked)::after {
    background: var(--color2);
}
.prepare_form #insurance_type .select_cancer label:has(>input:checked)::after {
    background: var(--color3);
}
.prepare_form #insurance_type .select_palliative label:has(>input:checked)::after {
    background: var(--color4);
}
.prepare_form #insurance_type input {
    display: none;
}
.prepare_form #insurance_type span {
    display: block;
    margin-bottom: 2px;
    font-weight: normal;
    font-size: 10px;
}
/* 性別 */
.mv_wrap .prepare_form dl dd label::before {
    width: 16px;
    height: 16px;
}

/* CAROUSEL
----------------------------------------- */
.carousel_area {
    margin-bottom: 8px;
    padding: 10px 0;
    background: #F1F1F1;
}
.carousel_area .slick-track {
    display: flex;
    gap: 10px;
    margin: auto;
}
.carousel_area p {
    display: flex;
    justify-content: center;
    padding: 16px 0 0;
    color: #555;
    font-size: 13px;
}
.carousel_area .carouselItem {
    width: 125px;
    padding: 10px 0;
    border-radius: 10px;
    background: #FFF;
}
.carousel_area .carouselItem img {
    width: 100px;
    height: auto;
    margin: 0 auto;
}
.slick-slide {
    outline: none;
}

/* あなたに必要な保険は？
----------------------------------------- */
/* CONTENTS */
.need_area {
    line-height: 1.6;
    font-size: 16px;
}
.need_area .slide_life {
    background: var(--color1_1);
}
.need_area .slide_medical {
    background: var(--color2_1);
}
.need_area .slide_cancer {
    background: var(--color3_1);
}
.need_area .slide_palliative {
    background: var(--color4_1);
}
.need_area .slideblk dt {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1.3;
    padding: 10px;
    color: #FFF;
    font-weight: bold;
    font-size: 20px;
    overflow: hidden;
}
.need_area .slide_life dt {
    background: var(--color1);
}
.need_area .slide_medical dt {
    background: var(--color2);
}
.need_area .slide_cancer dt {
    background: var(--color3);
}
.need_area .slide_palliative dt {
    background: var(--color4);
}
.need_area .slideblk dt span {
    font-weight: normal;
    font-size: 14px;
}
.need_area .slideblk dd {
    padding: 20px;
}
.need_area .slideblk dd img {
    width: 100%;
    max-width: 400px;
    margin: auto;
}
.need_area .slideblk dd .box1 {
    margin-top: 16px;
}
.need_area .slideblk dd .box1 .box_tit {
    padding: 8px;
    color: #FFF;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}
.need_area .slideblk dd .box1 .box_cont {
    background: #FFF;
    padding: 16px 20px;
}
.need_area .slideblk dd .box2 {
    margin-top: 16px;
    padding: 20px;
    background: #FFF;
}
.need_area .slideblk dd .box2 p {
    margin-bottom: 16px;
}

/* 死亡保険 */
.need_area .slide_life dd .box1 .box_tit {
    background: var(--color1);
}
.need_area .slide_life dd .box1 ul.box_cont {
    display: flex;
}
.need_area .slide_life dd .box1 ul li {
    width: 50%;
}
.need_area .slide_life dd .box1 ul li:first-child {
    padding-right: 14px;
    border-right: 3px solid var(--color1_1);
}
.need_area .slide_life dd .box1 ul li:last-child {
    padding-left: 14px;
}
.need_area .slide_life dd .box1 ul .list_tit {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    font-weight: bold;
    font-size: min(4.4vw, 16px);
}
.need_area .slide_life dd .box1 ul .list_tit::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: min(13vw, 48px);
    height: min(13vw, 48px);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}
.need_area .slide_life dd .box1 ul li:first-child .list_tit::after {
    background-image: url(images/ico_money.webp);
}
.need_area .slide_life dd .box1 ul li:last-child .list_tit::after {
    background-image: url(images/ico_schedule.webp);
}
.need_area .slide_life dd .box1 ul .list_txt {
    font-size: 14px;
}

/* 緩和型医療保険 */
.need_area .slide_palliative dd .box1 .box_tit {
    background: var(--color4);
}
.need_area .slide_palliative dd .box1 .box_cont .example {
    text-align: center;
    font-size: 14px;
}
.need_area .slide_palliative dd .box1 .box_cont ol {
    counter-reset: cnt 0;
}
.need_area .slide_palliative dd .box1 .box_cont ol li {
    position: relative;
    padding: 8px 8px 8px 42px;
    font-size: 14px;
}
.need_area .slide_palliative dd .box1 .box_cont ol li:nth-child(odd) {
    background: #D3F8E3;
}
.need_area .slide_palliative dd .box1 .box_cont ol li::before,
.need_area .slide_palliative dd .box1 .box_cont ol li::after {
    position: absolute;
    left: 24px;
    top: 18px;
    transform: translate(-50%, -50%);
}
.need_area .slide_palliative dd .box1 .box_cont ol li::before {
    content: "";
    background: #18BE7E;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.need_area .slide_palliative dd .box1 .box_cont ol li::after {
    counter-increment: cnt 1;
    content: counter(cnt) " ";
    color: #fff;
    font-size: 14px;
}
.need_area .slide_palliative dd .box1 .note {
    font-size: 10px;
}

/* SLYDE */
.point_slide {
    margin: auto;
}
.point_slide .slick-track {
    display: flex;
}
.point_slide .slick-slide {
    height: auto !important;
}
.point_slide .slick-prev,
.point_slide .slick-next {
    width: 32px;
    height: 62px;
    text-indent: -99999px;
    z-index: 10;
}
.point_slide .slick-prev {
    left: 0;
}
.point_slide .slick-next {
    right: 0;
}
.point_slide .slick-prev::before,
.point_slide .slick-next::before {
    display: block;
    width: 100%;
    height: 100%;
    background-size: 100% !important;
}
.point_slide .slick-prev::before {
    background: url(images/left.webp) no-repeat;
}
.point_slide .slick-next::before {
    background: url(images/right.webp) no-repeat;
}
.point_slide .slick-dots {
    bottom: -30px;
}
.point_slide .slick-dots li button::before {
    background: #999;
}
.point_slide .slick-dots .slick-active button:before {
    background: var(--color4);
}

/* COMPARISON
----------------------------------------- */
.comparison_area {
    margin: 60px 20px 20px;
}

/*PC用スタイル*/
@media screen and (min-width: 768px) {
    /* COMMON
    ----------------------------------------- */
    .br {
        display: block;
    }
    .pc_regulation {
        max-width: 750px;
        margin: auto;
    }

    /* BTN
    ----------------------------------------- */
    /* 見積りボタン */
    .estimate_btn {
        margin: 20px 0 50px;
        text-align: center;
    }
    .estimate_btn a {
        width: 540px;
        max-width: inherit;
        padding: 14px 30px;
        transition: all .4s ease;
        font-size: 40px;
    }
    .estimate_btn a::after {
        right: 35px;
        width: 16px;
        height: 16px;
        border-width: 4px;
    }
    .estimate_btn a:hover {
        transform: translateY(10px);
    }
    /* あなたにぴったりの保険を見つけましょう！ */
    .find_btn {
        margin: 50px auto;
    }
    .find_btn p {
        text-align: center;
    }

    /* TITLE
    ----------------------------------------- */
    /* H2 */
    .container h2 {
        max-width: 950px;
        margin: 0 auto 20px;
    }
    .container h2::before {
        height: 2px;
    }
    .container h2 > span {
        font-size: 40px;
    }
    /* H2-吹き出し */
    .container h2 .repletion {
        font-size: 24px;
    }
    .container h2 .repletion::after {
        width: 20px;
        height: 20px;
        bottom: -6px;
        background: linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 50%,rgba(5,82,65,1) 51%,rgba(5,82,65,1) 100%);
    }
    /* TIT */
    .container .mini_tit {
        padding: 24px 0 16px;
        font-size: 32px;
    }

    /* MV FORM
    ----------------------------------------- */
    .prepare_form #insurance_type {
        max-width: 540px;
        margin: auto;
    }
    .prepare_form #insurance_type label {
        font-size: 20px;
        cursor: pointer;
    }
    .prepare_form #insurance_type span {
        font-size: 16px;
    }

    /* CAROUSEL
    ----------------------------------------- */
    .carousel_area {
        width: 100%;
        max-width: 950px;
        margin: 0 auto 60px;
        padding: 20px 0;
        overflow: hidden;
    }
    .carousel_area .carouselItem img {
        width:165px;
    }
    /* スライダー静止状態 */
    .slide_item {
        margin: 0 3px;
        width: 300px;
    }

    /* あなたに必要な保険は？
    ----------------------------------------- */
    .need_area .slideblk dt {
        line-height: 1.4;
        font-size: 26px;
    }
    .need_area .slideblk dt span {
        font-size: 18px;
    }
    .need_area .slideblk dd {
        padding: 20px 100px;
    }
    .need_area .slideblk dd .box1 .box_cont {
        padding: 20px;
    }
    .need_area .slide_life dd .box1 .box_tit {
        font-size: 16px;
    }
    /* 緩和型医療保険 */
    .need_area .slide_palliative dd .box1 .box_tit {
        font-size: 16px;
    }
    .need_area .slide_palliative dd .box1 .box_cont .example {
        font-size: 16px;
    }
    .need_area .slide_palliative dd .box1 .box_cont ol {
        margin-top: 10px;
    }
    .need_area .slide_palliative dd .box1 .box_cont ol li {
        padding: 12px 12px 12px 42px;
        font-size: 16px;
    }
    .need_area .slide_palliative dd .box1 .box_cont ol li::before,
    .need_area .slide_palliative dd .box1 .box_cont ol li::after {
        top: 24px;
    }

    /* COMPARISON
    ----------------------------------------- */
    .comparison_area .comparison_img {
        text-align: center;
    }
    .comparison_area .comparison_img img {
        max-width: 500px;
    }
}
