@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

html{
	overflow: auto;
}

body{
	overflow: hidden;
	min-width: 1250px;
}

body,
table,
input,textarea,select,option{
	font-family: "Noto Serif JP", serif;
	color: #ffffff;
}

.sans{
	font-family: "Noto Sans JP", sans-serif;
}

.marcel{
	font-family: "Marcellus", serif;
}

.barlow{
	font-family: "Barlow Condensed", sans-serif;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear{
	clear: both;
}

.clearfix:after{
	content: "";
	clear: both;
	display: block;
}

.f-left{
	float: left;
}

.f-right{
	float: right;
}

a{
	color: #ffffff;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

p{
}

ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.rel{
	position: relative;
}

.v-center {
	display: table;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex.flexstart{
	align-items: flex-start;
}

.flex.flexcenter{
	align-items: center;
}

.flex.flexend{
	align-items: flex-end;
}

.flex.jc-start{
	justify-content: flex-start;
}

.flex.jc-center{
	justify-content: center;
}

.flex.jc-end{
	justify-content: flex-end;
}

.flex.reverse{
	flex-direction: row-reverse;
}

.table-box{
    border-collapse: collapse;
	display: table;
	width: 100%;
}

.table-box .row{
	display: table-row;
}

.table-box .row > div{
	display: table-cell;
}

.trance{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.shadow{
//	-moz-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-ms-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-o-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-webkit-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
	box-shadow: 3px 3px 6px rgba(0,0,0,0.1);
}

.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

.txt-center{
	text-align: center;
}

.txt-right{
	text-align: right;
}

.blo-center{
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.blo-right{
	display: table;
	margin-left: auto;
}

.pc{display:block;}
.sp{display:none;}

.outer{
	margin: 0 auto;
	max-width: 1366px;
}

.c-blue{
	color: #0F32AA;
}

.c-black{
	color: #595757;
}

.c-bold{
	font-weight: 700;
}

.inner{
	margin: 0 auto;
	max-width: 900px;
	width: 90%;
}

.inner2{
	margin: 0 auto;
	max-width: 830px;
	width: 90%;
}

.mini-inner{
	margin: 0 auto;
	max-width: 700px;
	width: 100%;
}

.header{
	height: 172px;
	padding: 0 40px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10;
}

.header::before{
	content: "";
	background: url(../images/common/header-bg.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.header .nav-menu li{
	font-size: 16px;
	letter-spacing: 0.1em;
	position: relative;
}

.header .nav-menu li a{
	background: url(../images/common/menu-hover.png) no-repeat;
	background-size: 0 100%;
	padding: 3px 25px;
}

.header .nav-menu li:not(:last-child){
	margin-right: -12px;
}

.header .nav-menu li:not(:last-child)::after{
	content: "";
	color: #ffffff;
	width: 12px;
	height: 25px;
	transform: translateX(-25%) rotate(45deg);
}

footer .f-logo{
	background: #ffffff;
	padding: 15px 20px;
}

footer .f-logo::after{
	content: "";
	background: -moz-linear-gradient(left, #C81E00, #FF8200, #C81E00);
    background: -webkit-linear-gradient(left, #C81E00, #FF8200, #C81E00);
    background: linear-gradient(to right, #C81E00, #FF8200, #C81E00);
    display: block;
    height: 5px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

footer{
	background: -moz-linear-gradient(left, #012462 50%, #0082E8 100%);
    background: -webkit-linear-gradient(left, #012462 50%, #0082E8 100%);
    background: linear-gradient(to right, #012462 50%, #0082E8 100%);
	padding-top: 20px;
}

footer .footer{
	padding: 30px 0;
}

footer .footer .f-menu li{
	border-left: 1px solid #ffffff;
	font-size: 14px;
	letter-spacing: 0.2em;
	text-align: center;
	width: calc(100% / 5);
}

footer .footer .f-menu li:nth-child(3),
footer .footer .f-menu li:last-child{
	border-right: 1px solid #ffffff;
}

footer .footer .f-menu li a{
	display: block;
	padding: 10px 0;
}

footer .footer .address{
	margin-top: 25px;
}

footer .footer .address p{
	font-size: 17px;
	letter-spacing: 0.1em;
}

footer .footer .address p span{
	margin-right: 1rem;
}

footer .footer .address a{
	font-size: 27px;
	font-style: italic;
	letter-spacing: 0.1em;
}

footer .footer .copy{
	font-size: 10px;
	letter-spacing: 0.2em;
	margin-top: 15px;
}

footer .page-top{
	position: absolute;
	right: 0;
	z-index: 10;
}

footer .page-top .txt{
	background: #000000;
	height: 78px;
	width: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

footer .page-top .txt span{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 13px;
	display: block;
	letter-spacing: 0.1em;
	margin-top: 10px;
}

footer .f-nav > li:nth-child(1),
footer .f-nav > li:nth-child(2),
footer .f-nav > li:nth-child(3),
footer .f-nav > li:nth-child(4),
footer .f-nav > li:nth-child(5){
	border: 1px solid #ffffff;
}

footer .f-nav > li > a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	font-size: 13px;
	letter-spacing: 0.2em;
}

footer .f-nav > li:nth-child(1),
footer .f-nav > li:nth-child(2),
footer .f-nav > li:nth-child(3),
footer .f-nav > li:nth-child(4){
	margin-bottom: 10px;
	width: calc(25% - 5px);
}

footer .f-nav > li:nth-child(5),
footer .f-nav > li:nth-child(6){
	width: calc(50% - 5px);
}

footer .footer .f-nav .f-menu{
	display: grid;
	grid-template-columns: 145px;
}

footer .footer .f-nav .f-menu li{
	font-size: 11px;
	letter-spacing: 0.1em;
	width: auto;
}

footer .footer .f-nav .f-menu li a{
	padding: 1px 0;
}

footer .footer .f-nav .f-menu li:nth-child(1){
	grid-row: 1 / 3;
}

footer .footer .f-nav .f-menu li:nth-child(1) a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

footer .footer .f-nav .f-menu li:nth-child(2),
footer .footer .f-nav .f-menu li:nth-child(3){
	grid-row: 1 / 2;
	margin-bottom: 6px;
}


/*------------------------------------------------------------
	レスポンシブ
------------------------------------------------------------*/
@media all and (min-width: 0) and (max-width: 767px){
	.pc{display:none;}
	.sp{display:block;}

	body{
		min-width: auto;
	}
	
	.sp-mt10{margin-top: 10px;}
	.sp-mt15{margin-top: 15px;}
	.sp-mt20{margin-top: 20px;}
	.sp-mt30{margin-top: 30px;}
	.sp-mt40{margin-top: 40px;}
	.sp-mt50{margin-top: 50px;}
	.sp-mt60{margin-top: 60px;}
	.sp-mt70{margin-top: 70px;}
	.sp-mt80{margin-top: 80px;}
	.sp-mt90{margin-top: 90px;}
	.sp-mt100{margin-top: 100px;}

	.header{
		background: url(../images/common/header-bg_sp.png) no-repeat;
		background-size: 100% 100%;
		height: 75px;
		padding: 0 15px;
	}

	.header .logo{
		width: 85px;
	}
	
	.header .nav-menu li {
		width: 100%;
		text-align: center;
	}
	
	.header .nav-menu li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.header .nav-menu li a {
		background: none;
		font-size: 12px;
		letter-spacing: 0.4em;
		padding: 0;
		height: 70px;
		width: 160px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
	}
	
	.header .nav-menu li a span{
		font-size: 22px;
		letter-spacing: 0.1em;
		margin-bottom: 5px;
	}
	
	.header .nav-menu li a{
		position: relative;
	}

	.header .nav-menu li a::before,
	.header .nav-menu li a::after {
	    content: '';
	    width: 8px;
	    height: 8px;
	    position: absolute;
	}

	.header .nav-menu li a::before{
		border-left: 1px solid #ffffff;
		border-top: 1px solid #ffffff;
		top: 0;
		left: 0;
	}

	.header .nav-menu li a::after{
		border-right: 1px solid #ffffff;
		border-bottom: 1px solid #ffffff;
		bottom: 0;
		right: 0;
	}

	.header #panel{
		display: none;
		position: absolute;
		background: -moz-linear-gradient(left, #012462 70%, #0082E8 100%);
		background: -webkit-linear-gradient(left, #012462 70%, #0082E8 100%);
		background: linear-gradient(to right, #012462 70%, #0082E8 100%);
		left: 0;
		top: 0;
		height: 100vh;
		width: 100%;
		padding: 115px 20px 60px;
		z-index: -2;
	}
	
	.header #panel::before{
		content: "";
		background: url(../images/common/menu-bg.png) no-repeat;
		background-size: cover;
		background-position: center top;
		top: 25px;
		left: 0;
		width: 100%;
		height: 144px;
		position: absolute;
	}
	
	#panel-btn{
		display: block;
		position: relative;
		width: 35px;
		height: 35px;
	}

	#panel-btn-icon{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 24px;
		height: 2px;
		background: #ffffff;
		transition: .2s;
		transform: translate(-50%, -50%);
	}

	#panel-btn-icon:before, #panel-btn-icon:after{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 24px;
		height: 2px;
		background: #ffffff;
		transition: .3s;
	}

	#panel-btn-icon:before{
		margin-top: -8px;
	}

	#panel-btn-icon:after{
		margin-top: 6px;
	}

	#panel-btn .close{
		background: transparent;
	}

	#panel-btn .close:before, #panel-btn .close:after{
		margin-top: 0;
	}

	#panel-btn .close:before{
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	#panel-btn .close:after{
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
	
	footer .f-logo img{
		width: 295px;
	}

	footer .footer .f-menu{
		margin-bottom: -15px;
	}
	
	footer .footer .f-menu li {
		width: 50%;
		margin-bottom: 5px;
	}
	
	footer .footer .f-menu li:nth-child(1){
		border-right: 1px solid #ffffff;
		width: 100%;
	}
	
	footer .footer .address p {
		font-size: 13px;
		text-align: center;
		width: 100%;
	}
	
	footer .footer .address p span {
		display: block;
		margin-right: 0;
	}
	
	footer .footer .address a {
		font-size: 18px;
		margin-top: 5px;
	}
	
	footer .f-nav > li:nth-child(1),
	footer .f-nav > li:nth-child(2),
	footer .f-nav > li:nth-child(3),
	footer .f-nav > li:nth-child(4),
	footer .f-nav > li:nth-child(5){
		margin-bottom: 10px;
		width: 100%;
	}
	
	footer .f-nav > li:nth-child(6){
		width: 100%;
	}
	
	footer .f-nav > li > a {
		font-size: 15px;
		letter-spacing: 0.4em;
	}
	
	footer .footer .f-nav .f-menu li{
		font-size: 13px;
	}
	
	footer .footer .f-nav .f-menu li a {
		padding: 8px 0;
	}
	
	footer .page-top .txt {
		height: 50px;
		width: 20px;
	}
	
	footer .page-top .txt span{
		font-size: 12px;
		letter-spacing: 0;
		margin-top: 1px;
	}
	
	footer .footer .f-nav .f-menu{
		display: flex;
		flex-wrap: wrap;
	}
	
	footer .footer .f-nav .f-menu li:not(:nth-child(1)){
		width: 50%;
	}


}