@charset "UTF-8";
/* CSS Document */


*{
	box-sizing:border-box;
}

/*PC・SP表示非表示*/
.pc{display:none;}
@media screen and (min-width:640px){
	.pc{display:inline-block;}
	.sp{display:none;}
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{
	background:transparent;
	border:0;
	font-size:100%;
	font-style:normal;
	font-weight:500;
	line-height:100%;
	list-style:none;
	margin:0;
	padding:0;
	outline:0;
	text-align:left;
	vertical-align:baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display:block;
}


/*全体*/
html{
	font-size:62.5%;
}
body{
	background:#fff;
	color:#111;
	font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",YuGothic,"ヒラギノ角ゴ ProN W3",Hiragino Kaku Gothic ProN,Arial, "メイリオ",Meiryo,sans-serif;
	font-weight:500;
	margin:0;
	padding:0;
	-webkit-text-size-adjust:100%;
}
video {
    width: 100%;
	height: auto;
}


/*共通*/
a{
	color:#0005dc;
	text-decoration:underline;
}
img{
	display:block;
	width:100%;
	height:auto;
}
input{
	background-color: #fff;
}


/*figure.figure*/
.figure{
	margin:20px 12px 0;
}
.figure.full{
	margin-left:0;
	margin-right:0;
}
.figure.mt0{
	margin-top:0;
}
.figure.mt50{
	margin-top:50px;
}
.top_30{
	padding-top: 30px;
}


/*レイアウト*/
.header,
.article,
.footer{
	margin:0 auto;
	width:100%;
	max-width:640px;
}

.article{
	background:#fff;
	padding:0;
}
.section{
	margin:50px 0 0;
	padding:0;
}
@media screen and (min-width:640px) {
	.section{
		margin:70px 0 0;
	}
}


/*header.header*/
.header{
	background: #ff6099;
	position:relative;
}
p.pr{
	color:#000000;
	font-size:10px;
	font-weight:bold;
	line-height:1;
	margin:0;
    text-align:right;
	position:absolute;
	top:10px;
	left:18px;
}
@media screen and (min-width:640px) {
	p.pr{
		font-size:14px;
	}
}
@media screen and (max-width:375px) {
	p.pr{
		font-size:11px;
	}
}
.green{
	color: #06c755;
	font-weight: bold;
	background: #fff000;
}
.din{
	font-family: din-condensed, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 40px;
}


/*article.article*/
article{
	background:#fff;
	margin:0 auto;
	padding:0 0 50px;
	width:100%;
	max-width:640px;
}


/*section.select*/
.select{
	border: solid 2.5vw #677bcb;
	background: #677bcb;
}
.select__title {
	text-align: center;
	font-size: 17px;
	font-weight: bold;
	line-height: 1.5;
	background-color: #fff;
	padding-top: 50px;
}
.h2{
	text-align: center;
	font-size: 35px;
	letter-spacing: 5px;
	font-weight: bold;
	color: #677bcb;
	background-color: #fff;
	padding: 30px 0 0;
	margin-bottom: -20px;
}

.card{
	padding: 10px;
	max-width: 750px;
	width: 100%;
	background: #fff;
	padding: 20px 2.5vw 0;
}
.card_q5{
	padding: 0 20px 0;
}
.card .title{
	font-size: 4.6vw;
	font-weight: 500;
	margin: 10px 0 -15px 0;
	font-weight: bold;
	line-height: 1.2;
}
label.box{
	padding: 20px 10px 20px 60px;
	display: flex;
	border-radius: 5px;
	border: 3px solid #ccc;
	cursor: pointer;
	transition: all 0.25s ease;
	font-size: 4.8vw;
	margin-bottom: -25px;
}
.card_q1 label.box:last-child,
.card_q2 label.box:last-child,
.card_q3 label.box:last-child,
.card_q4 label.box:last-child,
.card_q5 label.box:last-child{
	margin-bottom: 0;
}

.que_num{
	margin: 30px 10px 0 10px;
	width: 15%;
	display: inline-block;
	vertical-align: top;
}
@media screen and (max-width: 30em){
	.que_num{
		width: 20%;
	}
}

input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="radio"] {
	position: relative;
	width: 30px;
	height: 30px;
	border: 4px solid #a9e1f7;
	border-radius: 50%;
	vertical-align: -2px;
	top: 48px;
	left: 10px;
}
input[type="radio"]:checked{
	border: 4px solid #4dc4f3;
}
input[type="radio"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #4dc4f3;
	border: 2px solid #4dc4f3;
	content: '';
}
input[type="radio"]:checked + label.box{
	border: 3px solid #4dc4f3;
}
input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="checkbox"] {
	position: relative;
	width: 30px;
	height: 30px;
	border: 4px solid #a9e1f7;
	border-radius: 50%;
	vertical-align: -2px;
	top: 50px;
	left: 10px;
}
input[type="checkbox"]:checked{
	border: 4px solid #4dc4f3;
}
input[type="checkbox"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #4dc4f3;
	border: 2px solid #4dc4f3;
	content: '';
}
input[type="checkbox"]:checked + label.box{
	border: 3px solid #4dc4f3;
}
.card__p{
	text-align: right;
	font-size: 15px;
	padding-top: 20px;
}
.sp_block{
	display: block;
}
@media screen and (min-width:640px) {
	.select{
		border: solid 20px #677bcb;
	}
	.card{
		padding: 20px 20px 0;
	}
	.sp_block{
		display: none;
	}
}
@media screen and (min-width:520px) {
	.card .title{
		font-size: 21px;
	}
	label.box{
		font-size: 20px;
	}
	label.box:hover{
		border: 3px solid #a9e1f7;
	}
}


.thanks{
	background-color: #fff;
	padding: 40px 0 50px;
}
.thanks__txt{
	font-size:20px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
}
@media screen and (min-width:640px){
.thanks__txt{
font-size:24px;
}
}
.thanks__plus .marker_y{
	font-weight:bold;
	padding:0 3px 3px;
}
.thanks__plus .red{
	color:#f00000;
}
.thanks__plus .green{
	color:#06c755;
}
.thanks__plus .blue{
	color:#32b9d7;
}
.marker_y{
	background:linear-gradient(transparent 50%, #ffff66 0%);
}
.thanks__plus{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    margin: 15px 0 0;
    text-align: center;
}
@media screen and (min-width: 640px){
.thanks__plus{
font-size:21px;
margin:20px 0 0;
}
}


/*plus*/
.plus{
	background:#1e1e1e;
}


/*section.btn*/
section.btn{
	background: #c2d7f8;
	padding:10px 0 0;
	font-family: "Sawarabi Mincho";
	letter-spacing: 0.3rem;
}
.btn_img{
	width:96%;
	margin:15px auto 0;
}
p.btn_aft{
	font-size:18px;
	font-weight:bold;
	margin:15px 0 0;
	text-align:center;
	line-height: 1.6;
}
@media screen and (min-width:640px){
section.btn{
padding:10px 0 0;
}
.btn_img{
width:90%;
margin:20px auto 0;
}
p.btn_aft{
font-size:25px;
margin:30px 0 0;
}
}


/*主なリスクについて*/
.line_dtl {
	background: #c2d7f8;
	margin:0;
	padding: 40px 0 30px;
	font-family: "Sawarabi Mincho";
	letter-spacing: 0.3rem;
}
.line_dtl_ttl{
    text-align: center;
    font-size: 16px;
	font-weight: bold;
}
.line_dtl_txt {
    padding: 20px;
    text-align: center;
	font-size: 12px;
	line-height: 1.4;
}


/*footer.footer*/
.footer{
	background:#202020;
	display:flex;
    justify-content:center;
	padding:20px 12px 30px;
	font-family: "Sawarabi Mincho";
	letter-spacing: 0.3rem;
}
.footer p{
    display:inline-block;
    margin:0;
	padding:0 10px;
}
.footer p.b_left{
	border-left:1px solid #fff;
}
.footer a{
	color:#fff;
	font-size:14px;
    font-weight:normal;
	line-height:1;
	text-decoration:none;
}
@media screen and (min-width:640px) {
.footer a{
font-size:16px;
}
}
@media screen and (max-width:375px) {
.footer a{
font-size:12px;
}
}

.pb40{padding-bottom: 40px;}
.section_slide-bg{
	background-color: #c2d8f9;
}
.slide-title {
	width: 100%;
	margin: 0 auto;
  }
  .slider-wrapper {
	  padding: 0 20px;
	overflow-x: hidden;
  }
  .slider-wrapper ul{
	  margin: 0 auto;
  }
  .slider-wrapper ul li img{
	  width: 100%;
  }
  .slick-next:before{
	  background: url(../img/lr_right.png)!important;
	  background-size: contain!important;
	  content:""!important;
	  width: 30px !important;
	  height: 30px !important;
	  position: absolute;
	  top: 20px;
	  left: 0;
	  opacity: 1;
  }
  .slick-prev:before{
	  background: url(../img/lr_left.png)!important;
	  background-size: contain!important;
	  content:""!important;
	  width: 30px !important;
	  height: 30px !important;
	  position: absolute;
	  top: 20px;
	  left: 0;
	  opacity: 1;
  }
  .slick-prev {
	  left: -20px;
  }
  .slick-next {
	  right: -40px;
  }
  .slick-prev, .slick-next {
	  top: 40%;
	  width: 50px;
	  height: 50px;
	  z-index: 10;
  }
  