@charset "utf-8";
/*************************************************************
 全体
*************************************************************/
body{
	font-family: 'BIZ UDPゴシック';
	color:#434343;
}
body *{
	box-sizing: border-box;
}

a{
	text-decoration: none;
}

section{
	padding: 100px 0!important;
}

img{
	height: auto;
}

/*************************************************************
 汎用クラス
*************************************************************/
.content-w{
	width: 1200px;
	margin:0 auto;
}
.section_title{
	color:#3D6D90;
	text-align: center;
	font-size: 60px;
	margin-bottom: 50px;
}

/*************************************************************
 header
*************************************************************/
header{
	box-shadow: 0px 3px 10px #0000001A;
	background: #fff;
	position: fixed;
	top:-100px;
	left:0;
	width: 100%;
	height: 80px;
	transition: .5s;
}
header.fixed{
	top:0;
	z-index: 111111;
}
header .header_inner{
	padding: 10px 0;
	display: flex;
	align-items: center;
}
header .header_inner h1{
	font-size: 28px;
	color:#3D6D90;
	margin-left: 10px;
}
header .header_inner span{
	font-size: 20px;
}
header .header_inner .anchor_btn{
	width: 280px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent linear-gradient(90deg, #348AAD 0%, #206E9E 100%) 0% 0% no-repeat padding-box;
	color:#fff;
	font-size: 24px;
	font-weight: bold;
	position: relative;
	border: 3px solid transparent;
	transition:.5s;
	margin-left: auto;
	border-radius: 10px;
}
header .header_inner .anchor_btn:after{
	content:"";
	width: 16px;
	height: 16px;
	border:solid #fff;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
	position: absolute;
	top:0;
	bottom:0;
	right:22.34px;
	margin: auto;
	transition:.5s;
}
header .header_inner .anchor_btn:hover{
	border: 3px solid #206E9E;
	background: #fff;
	color: #206E9E;
}
header .header_inner .anchor_btn:hover:after{
	border:solid #206E9E;
	border-width: 2px 2px 0 0;
}

/*************************************************************
 main_visual
*************************************************************/
.main_visual{
	width: 100%;
	height: 1126px;
	/* background: url(../image/bg_key.jpg) no-repeat; */
	background-size: cover;
	background-position: center bottom;
	position: relative;
	padding-top: 30px;
}
.main_visual .logo{
	margin: 0 auto 105px;
	width: 275px;
}
.main_visual .text_img{
	width: 676px;
	margin: 0 auto 100px;
	z-index: 1;
}
.main_visual .bg_img{
	width: 100%;
	height: 1126px;
	position: absolute;
	top:0;
	right:0;
	left:0;
	bottom:0;
	margin:auto;
	z-index: -1;
}
.main_visual .bg_img img{
	object-fit: cover;
	width: 100%;
    height: 100%;
}
.main_visual .text_box{
	width: fit-content;
	margin: 0 auto 100px;
	text-align: center;
	color:#fff;
	line-height: 1;
}
.main_visual .text_box .text_01{
	display: inline-block;
	padding:10px;
	background: #fff;
	color:#112E54;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}
.main_visual .text_box .text_02{
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 30px;
}
.main_visual .text_box .text_02 span{
	font-size: 60px;
}
.main_visual .text_box .text_03{
	font-size: 30px;
	font-weight: bold;
	line-height: 1.5;
}
.main_visual .text_box .text_03 span{
	font-size: 20px;
	font-weight: normal;
}
.main_visual .scrolldown{
	position: relative;
	margin: auto;
	width: 100px;
	height:80px;
	overflow: hidden;
}
.main_visual .scrolldown span{
	display: block;
	text-align: center;
	color: #eee;
	font-size: 14px;
}
.main_visual .scrolldown::after{
	content: "";
	position: absolute;
	top: 70px;
	left:0;
	right:0;
	margin: auto;
	width: 1px;
	height: 60px;
	background: #eee;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:1;
}
/*scroll アニメーション*/
@keyframes pathmove{
	0%{
		height:0;
		top:20px;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:80px;
		opacity: 0;
	}
}
/*************************************************************
 message
*************************************************************/
#message{
	background: #206E9E;
	position: relative;
	z-index: 0;
}
#message .section_title{
	color:#fff;
}
#message:before{
	content:"";
	width: 50%;
	height: 100%;
	position: absolute;
	top:0;
	right:0;
	background: url(../image/message_img.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: -1;
}
#message .text_box{
	position: relative;
	z-index: 2;
}
#message p{
	width: 680px;
	margin:0 auto;
	font-size: 20px;
	color:#fff;
}
/*************************************************************
 overview
*************************************************************/
#overview{
	color:#3D6D90;
}
#overview .flex_container{
	width: 900px;
	margin:0 auto;
}
#overview .flex_row{
	padding:30px 0;
	border-top:1px solid #3D6D90;
	display: flex;
	align-items: flex-start;
}
#overview .flex_row:last-child{
	border-bottom:1px solid #3D6D90;
}
#overview .flex_item:nth-child(1){
	font-weight: bold;
	font-size: 20px;
	width: 160px;
}
#overview .flex_item:nth-child(2){
	font-size: 23px;
	width: 740px;
}
#overview .flex_item a{
	color:#3D6D90;
	text-decoration: underline;
	display: inline-block;
	margin-bottom: 10px;
	transition: .5s;
	position: relative;
}
#overview .flex_item a:after{
	content:"";
	width: 16px;
	height: 16px;
	background-image: url(../image/icon_blank.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	top:0;
	bottom:0;
	right:-30px;
	margin: auto;
	display: block;
}
#overview .flex_item a:hover{
	opacity: .7;
}
#overview .flex_item span{
	display: block;
	font-size: 16px;
}
/*************************************************************
 theme
*************************************************************/
#theme{
	background: transparent linear-gradient(90deg, #348AAD 0%, #206E9E 100%) 0% 0% no-repeat padding-box;
}

#theme .section_title{
	color:#fff;
}
#theme .flex_container{
	display: flex;
	justify-content: space-between;
}
#theme .flex_item{
	width: 280px;
	padding: 30px;
	background: #fff;
	text-align: center;
	color: #3D6D90;
	line-height: 1;
}
#theme .text_01{
	background: #3D6D90;
	color:#fff;
	padding:10px 0;
	font-size: 23px;
	margin-bottom: 20px;
	font-weight: bold;
}
#theme .text_02{
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 10px;
}
#theme .text_03{
	font-size: 16px;
	margin-bottom: 20px;
}
#theme .text_04{
	font-size: 19px;
	line-height: 1.5;
	text-align: left;
}
/*************************************************************
 無料相談
*************************************************************/
#consultation{
	background: #F6F6F6;
}
#consultation .section_title{
	color:#3D6D90;
}
#consultation .text{
	width: 680px;
    margin: 0 auto;
    font-size: 20px;
}
/*************************************************************
 パンフレット
*************************************************************/
#pamphlet{
}
#pamphlet picture{
	width: fit-content;
	margin:0 auto;
	transition: .3s;
}
#pamphlet picture:hover{
	opacity: .7;
}
#pamphlet picture img{
	margin:0 auto;
	height: auto;
}
#pamphlet .pamphlet_text{
	color:#2F4CB2;
	font-size: 16px;
	text-align: center;
	margin-bottom: 20px;
}
#pamphlet .entry_btn{
	margin:60px auto 0;
	width: 350px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent linear-gradient(90deg, #348AAD 0%, #206E9E 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    border: 3px solid transparent;
    transition: .5s;
    margin-left: auto;
    border-radius: 10px;
}
#pamphlet .entry_btn:before{
	content: "";
    width: 16px;
    height: 16px;
    border: solid #fff;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 22.34px;
    margin: auto;
    transition: .5s;
}
#pamphlet .entry_btn:hover{
	border: 3px solid #206E9E;
    background: #fff;
    color: #206E9E;
}
/*************************************************************
 お問い合わせ
*************************************************************/
#contact{
	color:#3D6D90;
	text-align: center;
}
#contact p{
	color:#3D6D90;
	text-align: center;
	font-weight: bold;
	line-height: 1;
}
#contact .text_01{
	font-size: 24px;
	margin-bottom: 20px;
}
#contact .text_02{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
#contact .text_02 span{
	font-size: 40px;
}
#contact .text_03{
	font-size: 24px;
}
/*************************************************************
 footer
*************************************************************/
footer{
	padding:50px 0;
	background: #242424;
}
footer ul{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
footer ul li{
	margin:0 25px;
	list-style: none;
}
footer ul li a{
	color:#fff;
	text-decoration: underline;
	font-size: 14px;
	transition: .3s;
}
footer ul li a:hover{
	opacity: .7;
}
footer .copyright{
	text-align: center;
	font-size: 10px;
	color:#fff;
	text-align: center;
}
