@charset "utf-8";

/* -----------------------------------------------------------
CSS Information

 File name:      common.css
 Update:         2017.2.10
 Style Info:     共通CSSファイル
----------------------------------------------------------- */
/**********************************************************
全ページ共通設定（デフォルト）モバイルファースト
**********************************************************/
/*@font-face {
    font-family: 'NotoSansJP';
    src: url("../fonts/NotoSansJP-VariableFont_wght.woff") format('woff');
}
@font-face {
    font-family: 'NotoSerifJP';
    src: url("../fonts/NotoSerifJP-VariableFont_wght.woff") format('woff');
}*/
@font-face {
    font-family: 'TwCenMT';
    src: url("../fonts/tw-cen-mt-condensed-extra-bold.woff") format('woff');
}

body{
	font-size: 100%;
	font-size: 14px !important;
	font-weight: normal;
	line-height:1.4;
	font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust:none;
	background:#292f60;
	text-align:left;
	position:relative;
	word-wrap: break-word;
}

/*float解除*/
.clearfix:after{
    content: "."; 
    display: block; 
    height: 0; 
    font-size:0;	
    clear: both; 
	visibility:hidden;
}
.clearfix {	display: inline-block; } 
* html .clearfix{ height: 1%; }
.clearfix{ display:block; }
* html .clearfix { zoom: 1;}
*:first-child+html .clearfix { zoom: 1;}

a {
	text-decoration:none;
}

img {
	max-width: 100%;
}

#page_wrap {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
/*#contents {
	flex: 1;
}*/

/********************************************
モバイルファースト
*********************************************/
/*****ヘッダー*****/
#head {
	position:fixed;
	top:0;
	left:0;
	background:#000;
	width:100%;
	height:45px;
	z-index:11;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
#head_wrap {
	position: relative;
}
#head_wrap h1 {
	margin-top:5px;
	margin-left: 5px;
	float:left;
}
#head_wrap h1 img {
	height:35px;
}

#head_wrap p.menu-trigger {
	margin-top: 15px;
	margin-right: 5px;
	float: right;
}

/*ハンバーガーメニュー*/
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 30px;
	height: 18px;
	border: none;
	appearance: none;
	cursor: pointer;
	z-index: 10;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
 	background-color: #fff;
 	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
 	top: 8px;
}
.menu-trigger span:nth-of-type(3) {
 	bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	left: -50%;
	opacity: 0;
	animation: active-menu-bar02 .8s forwards;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}

#head_wrap #nav {
	display: none;
}
#head_wrap #nav.active {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 9;
	height: 100vh;
	background: #000000;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	animation: nav-show .5s forwards;
}
#head_wrap #nav #nav-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@keyframes nav-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#head_wrap #nav ul li {
	text-align: center;
	position: relative;
}
#head_wrap #nav ul li a {
	color: #FFF;
	display: block;
	font-size: 20px;
	font-weight: bold;
	padding: 10px 0;
	text-align: center;
	transition: color 0.5s;
}
#head_wrap #nav ul li a:hover {
	color: #d7000f;
}

/*****フッター*****/
#foot {
	width: 100%;
	background: #000;
	padding: 10px 10px 5px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
}
#foot_wrap #foot_logo {
	width: 120px;
	height: auto;
}
#foot_wrap #foot_nav {
	margin: 10px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#foot_wrap #foot_nav li {
	margin: 0 5px;
}
#foot_wrap #foot_nav li a {
	color: #FFF;
    font-size: 12px;
	transition: color 0.5s;
}
#foot_wrap #foot_nav li a:hover {
	color: #0430c4;
}
#foot_wrap #copyright {
	color: #FFF;
	text-align: center;
	font-size: 10px;
}

/********************************************
ランドスケープ
*********************************************/
@media screen and (min-width:480px){
	
}


/********************************************
ランドスケープ
*********************************************/
@media screen and (min-width:640px){
	
}

/********************************************
タブレット
*********************************************/
@media screen and (min-width:768px){
	/*JFAロゴ*/
	#jfa_logo p {
		width: 140px;
	}
	
	/*****フッター*****/
	#foot_wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content:space-between;
        align-items: center;
	}
	#foot_wrap #foot_logo {
		width: 180px;
	}
	#foot_wrap #foot_nav {
		margin: 10px 0 0;
	}
	#foot_wrap #foot_nav li {
		margin: 0 10px;
	}
	#foot_wrap #copyright {
		width: 100%;
		margin-top: 20px;
		text-align: center;
	}
}

/********************************************
タブレット　ランドスケープ
*********************************************/
@media only screen and (min-width: 980px) {
	#head_wrap {
		width: 980px;
		margin: 0 auto;
	}
	.menu-trigger {
		display: none;
	}
	#head_wrap #nav {
		display: block;
	}
	#head_wrap #nav #nav-list {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		gap: 10px;
		margin-right: 25px;
	}
	#head_wrap #nav ul li {
		text-align: center;
		position: relative;
		margin-left: 25px;
	}
	#head_wrap #nav ul li a {
		color: #FFF;
		display: block;
		font-size: 16px;
		font-weight: bold;
		padding: 12px 10px 12px 0;
		text-align: center;
		position: relative;
		transition: color 0.5s;
	}
	#head_wrap #nav ul li a:hover:after {
		background: #d7000f;
	}
	
	/*****フッター*****/
	#foot {
		padding: 15px 0 5px;
	}
	#foot_wrap {
		width: 980px;
		margin: 0 auto;
	}

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1280px) {

}

