/*--- TOP-PAGE ---*/

/* メインビジュアル */
#main_view{
	height: calc(100vh - 100px);
	background: #F9FAFC url(../images/mv.jpg) no-repeat center / cover;
	position: relative;
}
#main_view > .inner{
	height: 100%;
	position: relative;
}

#mv_copy{
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 1.25;
	position: relative;
	top: 50%;
	transform: translateY(-70%);
}
#mv_copy h1{
	color: #285C9A;
	font-size: 1.25em;
}
#mv_copy h1 em{
	font-size: 1.3em;
	font-style: normal;
}
#mv_copy .ul_txt{
	position: relative;
	z-index: 0;
}
#mv_copy .ul_txt::before{
	content: "";
	width: 100%;
	height: 0.5em;
	background: #FFDD00;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}

/* TOP共通 */
.top_content{
	padding: 100px 0;
}

.sec_title{
	margin-bottom: 40px;
	color: #4C4C4C;
	font-size: 3.2rem;
	text-align: center;
}
.sec_title .en_txt{
	color: #285C9A;
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 0.2em;
}
.sec_title:not(:first-child){
	margin-top: 100px;
}

.sec_subtitle{
	margin: 100px 0 40px;
	font-size: 2.8rem;
	border-bottom: 2px solid #285C9A;
	text-align: center;
}
.sec_title + .sec_subtitle{
	margin-top: 0;
}

/* コンセプト */
#concept{
	background: url(../images/concept_bg.jpg) no-repeat center / cover;
}
#concept .concept_content{
	margin: 0 auto;
	padding: 60px;
	width: 920px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.5);
}
#concept h2{
	margin-bottom: 0.5em;
	color: #285C9A;
	font-size: 3.6rem;
	text-align: center;
}

/* 保険の案内 */
#ins_navi{
	background: #D3E7EB;
}
#ins_navi .ins_type{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -40px;
}
#ins_navi .ins_type a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
	padding: 20px;
	width: calc((100% - 40px) / 2);
	height: 240px;
	border-radius: 10px;
	background: #FFF;
	text-decoration: none;
}
#ins_navi .ins_type a:hover{
	background: #FFFCCC;
}
#ins_navi .ins_type h3{
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 200px;
	border-radius: 6px;
	background: #285C9A;
	color: #FFF;
	font-size: 3.2rem;
	position: relative;
}
#ins_navi .ins_type h3::after{
	content: "";
	width: 30px;
	height: 30px;
	background: url(../images/arrow_wh.svg) no-repeat 55% center / auto 12px;
	border: 1px solid #FFF;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
}
#ins_navi .ins_type .type_img{
	margin-right: 20px;
	width: 100%;
	text-align: center;
}
#ins_navi .ins_type .type_img img{
	max-width: 100%;
	max-height: 180px;
}

/* お問い合わせ */
#contact{
	background: #285C9A;
	color: #FFF;
}
#contact > .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#contact .sec_title{
	margin: 0;
	color: #FFF;
	text-align: left;
}
#contact .sec_title .en_txt{
	color: #DAE3E5;
}
#contact .contact_mail a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 480px;
	height: 120px;
	border-radius: 10px;
	background: #FFF;
	color: #285C9A;
	font-size: 2rem;
	font-weight: bold;
	text-decoration: none;
	position: relative;
}
#contact .contact_mail a::after{
	content: "";
	width: 18px;
	height: 18px;
	background: url(../images/arrow.svg) no-repeat center / contain;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transition: 0.2s;
}
#contact .contact_mail a:hover{
	background: #F2D200;
}
#contact .contact_mail a:hover::after{
	right: 17px;
}
#contact .contact_line{
	background: #FFF;
	color: #00C300;
}
#contact .contact_line::before{
	content: "";
	display: block;
	margin-right: 10px;
	width: 32px;
	height: 32px;
	background: url(../images/ico_line.png) no-repeat center / contain;
}
#contact .contact_line:hover{
	background: #FFFF80;
}
