@charset "UTF-8";
/* reset */
* {
    box-sizing: border-box;
}

html, body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, p, figure, dl, dt, dd {
    margin: 0;
    padding: 0;
}

ul li,
ol li {
    list-style-type: none;
}

/* common */
body {
    background-color: #009C84;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}
body img {
    width: 100%;
    height: auto;
    vertical-align: top;
}
body a {
    color: #0010EE;
}
@media screen and (min-width: 768px) {
    body {
        background-image: url(images/bg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
    }
}
body .contents {
    background: #fff;
    margin: auto;
    box-shadow: 0px 0px 30px #006556;
}
body .contents em {
    font-style: normal;
}
@media screen and (min-width: 860px) {
    body .contents {
        width: 370px;
    }
}

/* mv */
.mv_wrap {
    margin-bottom: 20px;
}
.mv_wrap ul {
    padding: 10px 20px;
    display: flex;
    align-items: center;
}
.mv_wrap ul li.company {
    margin-right: auto;
}
.mv_wrap ul li.company img {
    width: 40vw;
    max-width: 130px;
}
.mv_wrap ul li.series01 img {
    width: 60px;
}
.mv_wrap + div.btn_wrap {
    padding: 0 20px;
}

/* ボタン */
.btn_wrap {
    text-align: center;
}
.btn_wrap a.btn_link {
    display: block;
    border-radius: 100px;
    box-shadow: 0px 6px 0px #9E0000;
    padding: 15px;
    font-size: 22px;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
}
.btn_wrap a.btn_link:hover {
    opacity: 0.8;
}
.btn_wrap .btn {
    margin: 20px auto;
    background: #C92128;
    color: #fff;
}
.btn_wrap .btn02 {
    margin: 30px auto;
    border: 2px solid #C92128;
    color: #C92128;
}

/* コンテンツ */
.contents_box {
    padding: 0 20px;
    margin: 30px 0;
}
.contents_box.color {
    background-color: #E0F2F0;
}
.contents_box .waku {
    border: 4px solid #E0F2F0;
    border-radius: 10px;
    padding: 30px 20px;
}
.contents_box .waku.mb40 {
    margin-bottom: 40px;
}
.contents_box figure {
    display: block;
}
.contents_box figure figcaption {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    color: #009C84;
    font-size: 22px;
    line-height: 1.5;
}
.contents_box figure + p {
    margin-top: 20px;
    font-size: 12px;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.5;
}
.contents_box figure + ol {
    margin-top: 20px;
    font-size: 12px;
    color: #585858;
}
.contents_box figure + ol li {
    text-indent: -2em;
    padding-left: 2em;
    line-height: 1.5;
}

.features {
    margin: 40px 0;
}
.features .features_list {
    margin-bottom: 70px;
    padding-bottom: 90px;
    position: relative;
}
.features .features_list .ttl {
    text-align: center;
    color: #009C84;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
}
.features .features_list .ttl em {
    font-size: 28px;
}
.features .features_list ul li {
    position: relative;
    margin: 16px 0;
    padding-left: 15px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}
.features .features_list ul li::before {
    display: block;
    content: "";
    position: absolute;
    top: 0.4em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #009C84;
}
.features .features_list::after {
    display: block;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 110px;
    height: 110px;
    background: url(images/fuku_1.png) no-repeat;
    background-size: contain;
}
.features .point p {
    margin-bottom: 20px;
}
.features .point p em {
    font-weight: bold;
    color: #C92128;
}

.item {
    padding-top: 40px;
}
.item .btn_wrap {
    margin: 20px auto;
}

/* 3つのポイント */
.three_point {
    padding-bottom: 50px;
}
.three_point h2 {
    font-size: 36px;
    color: #009C84;
    text-align: center;
}

.accordion__list .accordion__item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 40px;
}
.accordion__list .accordion__item:last-child {
    margin-bottom: 0;
}
.accordion__list .accordion__head {
    position: relative;
    width: 100%;
    padding: 25px 80px 25px 30px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.5;
}
.accordion__list .accordion__head::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    display: block;
    width: 30px;
    height: 30px;
    background: url(images/ico_open.png) no-repeat;
    background-size: contain;
}
.accordion__list .accordion__head .point_no {
    display: inline-block;
    margin-bottom: 10px;
    background: #E0F2F0;
    border-radius: 10px;
    padding: 10px 14px;
    color: #009C84;
    font-size: 14px;
    line-height: 1;
}
.accordion__list em {
    color: #C92128;
    font-weight: bold;
}
.accordion__list .accordion__body {
    overflow: hidden;
    width: 100%;
    height: 0;
    padding: 0 25px;
}
.accordion__list .accordion__body sup {
    font-size: 12px;
}
.accordion__list .accordion__body .note {
    text-indent: -2em;
    padding-left: 2em;
    margin: 20px 0;
    font-size: 12px;
    line-height: 1.5;
}
.accordion__list .accordion__body .note02 {
    text-indent: -1em;
    padding-left: 1em;
    font-size: 12px;
    line-height: 1.5;
}
.accordion__list .accordion__body p.note02 {
    margin: 20px 0;
}
.accordion__list .accordion__body li.note02 {
    margin-bottom: 8px;
}
.accordion__list .accordion__body figure figcaption {
    background: #E0F2F0;
    padding: 10px;
    border-radius: 30px;
    font-size: 12px;
    color: #333;
    font-weight: normal;
}
.accordion__list .accordion__body dl {
    padding: 25px;
    margin: 20px 0;
    background: #E0F2F0;
}
.accordion__list .accordion__body dl dt {
    font-size: 22px;
    font-weight: bold;
    color: #009C84;
    text-align: center;
}
.accordion__list .accordion__body dl.insurance dt {
    border-bottom: 2px solid #009C84;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: normal;
    color: #333;
}
.accordion__list .accordion__body dl.insurance dt span {
    font-size: 12px;
}
.accordion__list .accordion__body dl.insurance dd {
    font-size: 12px;
}
.accordion__list .accordion__body .comment {
    position: relative;
    margin: 130px 0 20px;
    background: #E0F2F0;
    border-radius: 10px;
    padding: 25px;
    font-size: 14px;
}
.accordion__list .accordion__body .comment::before {
    content: "";
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: url(images/fuku_3.png) no-repeat;
    background-size: contain;
}

.accordion__item.active .accordion__head::after {
    background-image: url(images/ico_close.png);
}
.accordion__item.active .accordion__body {
    height: auto;
}

/* シミュレーション */
p.simulation_txt {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #009C84;
}
p.simulation_txt em {
    color: #C92128;
}

p.simulation_img {
    margin: 15px auto;
}

.simulation {
    padding: 40px 20px;
}

.simulation_ttl {
    position: relative;
    margin-bottom: 20px;
    background: #009C84;
    padding: 10px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.simulation_ttl::after {
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 12.5px 0px 12.5px;
    border-color: #009C84 transparent transparent transparent;
}
.simulation_ttl + p {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.contents_box figure.simulation_capture {
    margin: 0 -5px 20px;
}
.contents_box figure.simulation_capture figcaption {
    margin: -5px 10px 0;
    color: #333;
    text-align: left;
    font-size: 12px;
    font-weight: normal;
}

/* 相談 */
.sodan_ttl {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
}
.sodan_ttl em {
    color: #009C84;
}

/* FAQ */
.contents_box.faq h2 {
    font-size: 28px;
    text-align: center;
}
.contents_box.faq dl {
    margin-bottom: 40px;
}
.contents_box.faq dl div {
    border: 1px solid #E2D1A6;
    border-radius: 10px;
    margin: 30px 0;
}
.contents_box.faq dl dt, .contents_box.faq dl dd {
    padding: 25px;
}
.contents_box.faq dl dt span, .contents_box.faq dl dd span {
    display: block;
    font-weight: bold;
    font-size: 22px;
}
.contents_box.faq dl dt {
    background: #E2D1A6;
    border-radius: 10px 10px 0 0;
    padding: 25px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
}
.contents_box.faq dl dd span {
    color: #E2D1A6;
}

/* フッター */
footer {
    margin-top: 50px;
    font-size: 12px;
}
footer ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 1em;
}
footer ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #333333;
}
footer .company {
    width: 237px;
    margin: auto;
}
footer p.txt_link {
    margin: 20px auto;
    text-align: center;
}
footer .copylight {
    background: #585858;
    padding: 10px 15px;
    color: #fff;
    line-height: 1.3;
}