@charset "utf-8";
/* CSS Document */
/*フォントスタイルここから*/
.gothic{font-family: heisei-kaku-gothic-std, sans-serif;}
.mincho{font-family: font-family: heisei-mincho-std, serif;}
.museo{font-family: museo-sans, sans-serif;}
/*フォントスタイルここまで*/

/*ADOBEフォントちらつき対策ここから*/
body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*ADOBEフォントちらつき対策ここまで*/

*, *::before, *::after{box-sizing: border-box;}

html{
	font-size: 62.5%;
	height: 100%;
	position: relative;
}

body{
	font-family: heisei-kaku-gothic-std,游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	color:#191919;
	margin: 0 auto; 
	line-height: 1.4;
	position:relative;
	min-width: 1280px;
}

/*------------------------------------------------------------
タブレット時PC表示 start
------------------------------------------------------------*/
body {
	min-width: 1280px;
}
@media screen and (max-width: 600px) {
	body {
			min-width: unset;
	}
}
/*------------------------------------------------------------
タブレット時PC表示 end
------------------------------------------------------------*/

main{
	overflow: hidden;
	padding-top: 150px;
}
@media screen and (max-width:600px) {
	main{
		padding-top:60px;
	}
}

img,iframe {max-width: 100%;width: 100%;}

a{text-decoration: none;color: #3b3b3b;}
/*a:hover{opacity: 0.7;}*/

.bold{font-weight: bold !important;}

figure{
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: rgb(4,34,90);
    background: linear-gradient(90deg, rgba(4,34,90,1) 0%, rgba(37,97,157,1) 100%);
    overflow: hidden;
}
figure.sweep_img.active:before{
    width:0 ;
}
figure.sweep_img:before{
    content: "";
    background: rgb(4,34,90);
    background: linear-gradient(90deg, rgba(4,34,90,1) 0%, rgba(37,97,157,1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transition: 1s cubic-bezier(0.5, 0, 0.175, 1);
}
/*ショートコードここから*/
.clear{clear: both;}
.marker_bl{background:linear-gradient(#fff 70%, #5abfff 0%);}
.bold{font-weight: bold;}
.border{border:1px solid #ccc;}
.red{color: #ad0000;}
.navy{color:#184468;}
.blue{color:#4694d1;}
.green{color:#93593c;}
.wht{color:#ffffff;}
.grey{color:#ececeb;}
.btn{
	position: relative;
    border: 2px solid #3b3b3b;
    background: #fff;
    text-align: center;
    width: 300px;
    display: block;
    padding: 15px 0;
    font-weight: bold;
}
.btn:after{
	content: "";
    position: absolute;
    top:40%;
    right: 15px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #3b3b3b;
    border-right: 2px solid #3b3b3b;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn:hover{
    background: #ececeb;
    transition: all 0.5s ease 0.2s;
}

@media screen and (max-width:600px) {
	.btn{
		width: 80%;
		padding: 5% 0;
	    margin: 0;
	}
}
.btn_wrap{
	display: flex;
    justify-content: space-around;
    width: 800px;
    margin:0px auto;
}
@media screen and (max-width: 600px) {
	.btn_wrap{
		display:block;
	    width:auto;
	    margin:0 auto 10%;
	}
}
/*ショートコードここまで*/

/* 点滅ここから*/
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
/* 点滅ここまで*/

/*デバイス切り替えここから*/
@media screen and (max-width: 600px) {
	.pc {display:none !important;}
}
@media print,screen and (min-width: 601px) {
	.sp {display:none !important;}
}
/*デバイス切り替えここまで*/

/*レイアウト共通ここから*/
.sec1,.sec2,.sec3,.sec4,.sec5,.sec6{
	padding:50px 0 80px;
}
.sec_inner{
	max-width: 1200px;
	margin:0 auto 80px;
}

@media screen and (max-width: 600px) {
	.sec1,.sec2,.sec3,.sec4,.sec5,.sec6{
		padding:8% 0;
	}
	.lastsec{
		padding-bottom: 16%;
	}
}
/*レイアウト共通ここまで*/

/*タイトル共通スタイルここから*/
h2.heading{
	font-family: futura-pt, sans-serif;
    font-size: 6rem;
    font-weight: 500;
    color: #c31b23;
    display: flex;
    align-items: center;
}
h2.heading span{
	color: #191919;
    font-size: 2.4rem;
    font-weight: bold;
    margin-left: 30px;
}
h3.mid_heading{
	font-family: museo-sans, sans-serif;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: #011b52;
}
h3.mid_heading span{
	font-size: 1.4rem;
    display: block;
    font-style: italic;
    color: #191919;
}
@media screen and (max-width: 600px) {
	h2.heading{
		font-size: 4rem;
		display: block;
		line-height: 1.2;
	}
	h2.heading span{
		font-size:1.8rem;
		margin-left:0;
		display: block;
	}
	h3.mid_heading{
		font-size: 2.4rem;
		margin-bottom:8%;
	}
	h3.mid_heading span{
		font-size: 1.2rem;
	}
}
/*タイトル共通スタイルここまで*/

@media screen and (max-width: 600px) {
	body{font-size: 1.3rem;}
	.sec_inner{
		width: 96%;
		margin:0 auto;
	}
}
@media screen and (min-width: 960px){
	a[href^="tel:"] {
    	pointer-events: none;
	}
}
/*タイトル共通タイトルスタイルここまで*/

/* ローディング画面ここから */
#loading {
	width: 100vw;
	height: 100vh;
	transition: all 2s;
	background-color:#4b6ea2;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.spinner {
	position:relative;
	width: 100vw;
	height: 100vh;
}
.spinner img{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 10%;
	height: auto;
	animation: sk-scaleout 2.0s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
	0% {transform: scale(0);opacity:0.8;}
	100% {transform: scale(1.0);opacity: 0;}
}
.loaded {
	opacity: 0;
	visibility: hidden;
}
/* ローディング画面ここまで */


/*ヘッダーここから*/
header {
    position: fixed;
	z-index: 9999;
	background: #fff;
    width: 100%;
}
header .header_top {
	display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #191919;
    height: 100px;
    align-items: center;
}
header .logo_area{
	margin-left: 10px;
}
header .logo_area h1{
	font-size: 1rem;
    margin-bottom: 5px;
}
header .logo_area h2{
	width: 300px;
}
header .btn_area{
	position: relative;
	display: flex;
	align-items: center;
}
/* header .btn_area a:nth-of-type(1){ */
/* 	position: relative; */
/* 	font-size: 1.6rem; */
/*     color: #150762; */
/*     font-weight: bold; */
/*     border: 2px solid #150762; */
/*     margin-right: 20px; */
/*     padding: 8px 40px; */
/*     border-radius: 50px; */
/* } */
/* header .btn_area a:nth-of-type(1)::after{ */
/* 	content: ""; */
/*     position: absolute; */
/*     top: 35%; */
/*     right: 15px; */
/*     width: 8px; */
/*     height: 8px; */
/*     border-bottom: 2px solid #150762; */
/*     border-left: 2px solid #150762; */
/*     -webkit-transform: rotate(45deg); */
/*     transform: rotate(-45deg); */
/*     z-index: 2; */
/* } */
header .btn_area a:nth-of-type(1),
header .btn_area a:nth-of-type(2){
	font-weight: bold;
    padding: 18px 0;
    width: 100px;
    text-align: center;
}
header .btn_area a:nth-of-type(1) img,
header .btn_area a:nth-of-type(2) img{
	height: 40px;
    width: auto;
    display: block;
    margin: 0 auto 5px;
}
header .btn_area a:nth-of-type(1){
	background: rgb(4,34,90);
	background: linear-gradient(90deg, rgba(4,34,90,1) 0%, rgba(37,97,157,1) 100%);
	color: #fff;
}
header .btn_area a:nth-of-type(2){
	background: #d8f0fd;
}
/* header .btn_area p{
	position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
    padding: 30px 0;
} */
/*PC用メニューここから*/
nav.main_nav{
	border-bottom: 1px solid #ccc;
}
nav.main_nav ul{
	display: flex;
	max-width: 1200px;
	margin:0 auto;
}
nav.main_nav ul li{
	position: relative;
	width:20%;
	padding: 10px 0;
}
nav.main_nav ul li a{
	display: block;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    border-right: 1px solid #ccc;
	color:#011b53;
}
nav.main_nav ul li:first-child a{
	border-left: 1px solid #ccc;
}
nav.main_nav ul li a span{
	font-size: 1.2rem;
    font-weight: 700;
	color:#011b53;
	font-family: museo-sans, sans-serif;
}
nav.main_nav ul li a:hover{
	font-weight: bold;
}
nav.main_nav ul li a img{
	width: 30px;
}
/*PC用メニューここまで*/
@media screen and (max-width: 600px) {
	header{
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    header h1{
		width: 50%;
	}
	header button:nth-of-type(2){
		width: 60px;
		height: 60px;
		border: 0;
		padding: 3%;
		background: rgb(216 240 253);
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header button:nth-of-type(2) a{
		display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	}
	header button:nth-of-type(2) a img{
		width: 80%;
	}
	header button:nth-of-type(2) a span{
		font-size: 1.2rem;
    font-weight: bold;
    margin-top: 3px;
	}
	header h2{
		color: #fff;
		font-size: 1.1rem;
		padding-top: 6%;
		margin: 0 2%;
	}
	header ul.menu{
		margin: 6% 2%;
	}
	header ul.menu li{
		padding: 4%;
		margin-bottom: 4%;
    	border: 1px solid #fff;
	}
	header ul.menu li:last-of-type{
		border:0;
		background:#d8f0fd;
		margin-bottom: 0;
		position: relative;
		overflow: hidden;
	}
	header ul.menu li:last-of-type p{
		top: 0;
		position: absolute;
		background: rgba(0, 0, 0, 0.5);
		width: 100%;
		left: 0;
		padding: 6%;
		color: #fff;
		text-align: center;
		font-size: 1.6rem;
		font-weight: bold;
		height: 100%;
	}
	header ul.menu li:last-of-type img{
		width: 70%;
	}
	header ul.menu li a{
		position: relative;
		color: #fff;
    	display: flex;
    	align-items: center;
    	font-weight: bold;
    	font-size: 1.4rem;
	}
	header ul.menu li a::after{
		content: "";
		position: absolute;
		top: 40%;
		right: 0;
		width: 8px;
		height: 8px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	header ul.menu li:last-of-type a::after{
		border-top: 2px solid #011b53;
		border-right: 2px solid #011b53;
	}
	header ul.menu li a span{
		font-size: 1.2rem;
    	margin-left: 2%;
	}
	header a.banner{
		display:block
	}
	header a.banner img{
		width: 90%;
		margin: 6% auto;
		display: block;
	}
	header .sns_area{
		display: flex;
		width: 50%;
		justify-content: space-around;
		margin: 0 auto;
	}
	header .sns_area img{
		width:100%;
		display: block;
		margin: 0 auto;
	}
	header .copy{
		color: #fff;
		font-size: 1rem;
		text-align: center;
		position: fixed;
		bottom: 0;
		padding: 1%;
		right: 0;
		left: 0;
		margin: auto;
	}
}

/*下層メインビジュアルここから*/
.under_mv_area{
	position: relative;
    background: url(/img/common/main_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    padding: 2vw 0;
    margin-top: 30px;
}
.under_mv_area:after{
	content: '';
    background: #eef7f5;
    position: absolute;
    top: -30px;
    width: 100%;
    height: 80%;
    z-index: -1;
}
.under_mv_area .inner{
	margin: 0;
    position: relative;
    width: 50vw;
	padding: 60px 0px;
	background: url(/img/common/main_bg.png) no-repeat, linear-gradient(90deg, rgba(4,34,90,1) 0%, rgba(37,97,157,1) 100%);
    border-radius: 0 20px 20px 0;
    background-position: right center;
    background-size: contain;
}
.under_mv_area .inner:afetr{
	content: '';
}
.under_mv_area .inner h2{
	font-family: museo-sans, sans-serif;
	color: #fff;
    width: 26vw;
    font-size: 6rem;
    font-weight: 600;
    line-height: 1;
    margin-left: auto;
}
.under_mv_area .inner h2 span{
	display: block;
    font-size: 2rem;
    margin: 5px 0 0 10px;
    font-weight: bold;
}
@media screen and (max-width: 600px) {
	.under_mv_area{
	    background-size: 90%;
	    background-position: right top 8vw;
	    padding: 1vh 0;
	    margin-top: 0;
	}
	.under_mv_area .inner{
		margin-top: 14vw;
    	padding: 7% 0;
    	width: 80%;
	}
	.under_mv_area .inner h2{
		width: auto;
	    margin: 0 0 0 4%;
	    font-size: 3.5rem;
	}
	.under_mv_area .inner h2 span{
	    font-size: 1.5rem;
	    margin: 1% 0 0 2%;
	}
}
/*下層メインビジュアルここまで*/

/*パンくずリストここから*/
.bread_wrap{
	padding-top: 10px;
    padding-bottom: 10px;
    border-bottom:1px solid #fff;
    background: #011b52;
}
.under{
	background: transparent;
	padding:20px 0 0;
}
.bread_wrap a,.bread_wrap a:visited{
	color:#fff;
	display:inline;
}
.under a,.under a:visited{
	color:#191919;
}
.bread_wrap ol{
	font-size: 1.2rem;
	max-width: 1200px;
	margin: 0 auto;
}
.bread_wrap ol li:first-child{
	background: url(/img/common/icon_bread.svg) no-repeat;
	background-position: left center;
	background-size: 15px;
	padding-left: 20px;
	margin-left: 10px;
	list-style: none;
}
.under ol li:first-child{
	background: url(/img/common/icon_bread2.svg) no-repeat;
	background-position: left center;
	background-size: 15px;
	padding-left: 20px;
	margin-left: 10px;
	list-style: none;
}
.bread_wrap ol li{
	display: inline-block;
	color:#fff;
}
.bread_wrap ol li:after{
	content: ">";
	color:#fff;
}
.under ol li:after{
	color:#333;
}
.bread_wrap ol li:last-child:after{
	content:"";
}
/* フッターここから */
footer{
	background: #011b53;
	color: #fff;
}
footer .inner{
	width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding:30px 0;
}
footer .inner .logo_area{
	display: flex;
    align-items: center;
}
footer .inner .logo_area h2{
	width: 360px;
    margin-right: 30px;
}
footer .inner .logo_area .txt_area{}
footer .inner .logo_area .txt_area p{}
footer .inner .logo_area .txt_area address{
	font-style: normal;
}
footer .inner .sns_area{
	display: flex;
    justify-content: space-between;
}
footer .inner .sns_area a:first-of-type{
	margin-right: 10px;
}
footer .inner .sns_area a img{
	width: 45px;
}
footer .inner .banner_area{
	display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 40px 0 0;
}
footer .inner .banner_area a{
	width: 22%;
}
footer p.copy{
	text-align: center;
	font-size: 1rem;
	padding-bottom: 20px;
}
@media screen and (max-width: 600px) {
	footer .inner{
		width: auto;
		margin: 0 2%;
		display: block;
		padding: 8% 0;
	}
	footer .inner .logo_area{
		display:block;
	}
	footer .inner .logo_area h2{
		width: 70%;
		margin-right: 0;
		margin: 0 auto 6%;
	}
	footer .inner .logo_area .txt_area{
		text-align: center;
		margin-bottom: 6%;
	}
	footer .inner .sns_area{
		width: 30%;
		margin: 0 auto;
	}
	footer .inner .sns_area a:first-of-type{
		margin-right: 0x;
	}
	footer .inner .sns_area a img{
		width:100%;
	}
	footer .inner .banner_area{
		margin: 4% 0 0;
		flex-wrap: wrap;
	}
	footer .inner .banner_area a{
		width:48%;
		margin-top: 2%;
	}
}
/* フッターここまで */

/*トップに戻るボタンここから*/
p.gotop{
	position: fixed;right: 0;bottom: -50px;
}
p.gotop a{
	padding: 0;
    display: block;
    background-color:rgba(1, 26, 81, 0.7);
    position: relative;
    width: 44px;
    height: 44px;
}
p.gotop a:before{
	position: absolute;
    top: 8px;
    bottom: 0;
    left: 0px;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/*トップに戻るボタンここまで*/




