@charset "UTF-8";
/****************************************
       CSS レイアウト (共有)
*****************************************/

/*Safari のフォーカス時のハイライトを無効*/
	:focus
	{
		outline: 0;
	}


/*Wrapper*/
.contents_all{
width:100%;
min-height: 100vh;
background:#fff;
position: relative;/*相対位置*/
padding-bottom: 100px;/*footerの高さ*/
box-sizing: border-box;/*全て含めてmin-height:100vhに*/
}

/****************************************
       ヘッダー
*****************************************/
#header{
z-index:100;
width:100%;
height:48px;
background:#f5f5f5;
position: fixed;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
animation: HeaderSlideIn 0.8s/*アニメーション*/
}

@keyframes HeaderSlideIn {
  0% {
    opacity: 0;/*初期状態では透明に*/
    transform: translateY(-64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#inner-header{
width:80%;
height:45px;
background:#f5f5f5;
margin:0 auto;
}

/*ヘッダーロゴ*/
#header .logo h1{
width: 160px;
height:45px;
display: block;
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
background: url(../images/logo.png) center center no-repeat;
background-size: 160px auto;
float:left;
}



/*モバイルメニューの非表示*/
.mobile-menu{
display:none;

}

#menu{
/*配置*/
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index:101;
}

#trigger {
display: none;
}

/****メニュー開閉ボタン****/
#menu #menu_ui_btn{
	/*デザイン*/
	width: 48px;
	height: 48px;
	background: #000;
	/*配置*/
	overflow: hidden;
	position: absolute;
}
#menu .menu_ui_btn{
	display:block;
	width: 48px;
	height: 48px;
	color:#fff;
	text-align:center;
	font-size:24px;
	padding-top:10px;
}

/****メニュー開閉ボタンロールオーバー****/
#menu #menu_ui_btn:hover{
	cursor:pointer;
}

.menu_contents{
	margin-top:48px;
	background: #000;
	position: absolute;
	top:-64px;
	width: 100%;
	height: 100vh;
	visibility:hidden;
	opacity: 0;
}
/****メニュー表示アニメーション(id:triggerの直後のid:menu_contentsに適用)****/
#trigger:checked + #menu_contents {
	visibility:visible;
	transition-duration:0.5s;
	transition-timing-function:ease-out;
	transform: translateY(64px);
	opacity: 1;
}
/****メニュー非表示アニメーション****/
#trigger:not(:checked) + #menu_contents {
	transition-duration:0.5s;
	transition-timing-function:ease-in;
	transform: translateY(-64px);
	opacity: 0;
	visibility:hidden;
}


/****メニュー一覧****/
#menu ul{
	/*デザイン*/
	background: #000;
	width: 100%;
	/*配置*/
	position: absolute;
	top: 0;/*#menu divの高さ*/
	left: 0;
}

#menu li{
	/*デザイン*/
	padding: 16px 0;
	color: #fff;
	border-top: 1px #3a3a3c solid;
	/*配置*/
	pointer-events: auto;
}

#menu li:last-child{
	border-bottom: 1px #3a3a3c solid;
}

#menu li a{
text-decoration:none;
color: #fff;
padding:16px;
width:100%;
display:block;
}

#menu li a:hover{
cursor:pointer;
}

#header .navi {
float: right;
}

#header .navi ul li a {
margin-top:8px;
padding-left: 10px;
display: block;
color: #1d1d1d;
font-size: 12px;
font-weight: 400;
line-height: 1.1;
text-decoration: none;
box-sizing: border-box;
position: relative;
}

#header .navi ul li {
margin-right: 20px;
display: inline-block;
text-align: center;
vertical-align: middle;
position: relative;
}

#header .navi ul li a span{
margin-top: 8px;
display: block;
color: #515154;
font-family: 'Open Sans', sans-serif;
font-size: 9px;
font-weight: 200;
line-height: 1.1;
text-decoration: none;
}

#inner-header::after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

/****************************************
       ボディ
*****************************************/
#body{
	width:100%;
	height:100%;
	background:#f5f5f5;
}

#inner-body{
	padding-top:60px;
	padding-bottom:48px;
	width:80%;
	height:100%;
	background:#f5f5f5;
	margin:0 auto;
}


/*アニメーション*/
#slide_up{
/*z-index:-2;*/
}

/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}


/****************************************
       パンくずリスト
*****************************************/
.breadcrumbs-layout{
padding:8px;
border: 1px solid #c5c5c5;
border-radius: 5px;
width:95%;
margin:35px auto 15px  ;
}

#breadcrumbs{
	background: #f5f5f5;
	overflow: hidden;
	width: 100%;
}

#breadcrumbs a{
	padding:4px;
	float: left;
	text-decoration: none;
	color: #444;
	position: relative;
	background-color: #f5f5f5;
}

#breadcrumbs li:last-child a::before{
	content: ">";
}

 #breadcrumbs a::before{
	padding:0 .5em;
}



/****************************************
       フッタ
*****************************************/
/*footer*/
#footer{
	width: 100%;
	background-color: #f5f5f5;
	color: #fff;
	text-align: center;
	bottom: 0; /*下に固定*/
	min-height:100px;
	position: fixed;
}

#inner-footer{
	width:80%;
	min-height:100px;
	background:#f5f5f5;
	margin:0 auto;
	color: #333;
}

.footer_section{
	margin-bottom: 7px;
	padding-bottom: 8px;
	border-bottom: 1px solid #d2d2d7;
}


.footer_copyright{
	color: #515154;
	margin-right: 30px;
	float: left;
}


.footer_contents{
	float: left;
}

.footer_contents::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.footer_ui a {
	border-right: 1px solid #d2d2d7;
	color: #1d1d1d;
	text-decoration: none;
	margin-right: 7px;
	padding-right: 10px;
	display: inline-block;
}

.footer_ui a:last-child{
	border: none;
}

.footer_ui a:hover {
	text-decoration: underline;
}
	
.permission_number{
	font-size:0.8em;
}
	
	

/****************************************
       CSS レイアウト (PC)
*****************************************/
/*PCのみの表示*/

@media (max-width: 741px) {
	

	/*Wrapper*/
	.contents_all{
		padding-bottom: 0px;
	}
	
	#header{
		background:#000;
	}
	#inner-header{
		background:#000;
	}
	
	/*ヘッダーロゴ*/
	#header .logo h1{
		width: 160px;
		height:45px;
		display: block;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
		background: url(../images/logo_w.png) center center no-repeat;
		background-size: 160px auto;
		float:none;
	}

	#header .logo{
		width: 160px;
		display: block;
		margin:0 auto;
		cursor:pointer;
	}
	
	/*PC用のヘッダーメニューを非表示にする*/
	#header .navi {
		display:none;
	}
	/*モバイル用のヘッダーメニューを表示にする*/
	#header .mobile-menu{
		display:block;

	}
	/*ボディ*/
	#inner-body{
		width:100%;
	}
	#inner-body{
		width:auto;
		padding-top:60px;
		padding-bottom:12px;
		padding-left: 10px;
		padding-right: 10px;
	}



	/*フッタ*/
	#footer{
		width: 100%;
		background-color: #f3f3f6;
		color: #000;
		text-align: left;
		bottom: auto;
		position: static;
	}

	#inner-footer{
		width:auto;
		min-height:80px;
		background:#f3f3f6;
		margin:0 auto;
		color: #333;
		padding:10px !important;
	}

	.footer_section{
		margin-bottom: 10px;
		padding-bottom: 0px;
	}

	.footer_copyright{
		color: #515154;
		margin-right: 10px;
		float: none;
		line-height:1.447;
	}

		.footer_contents{
			margin-top:0.8em;
		float: none;
		line-height:1.447;
	}

	.permission_number{
			margin-top:1.2em;
			text-align:center;
			font-size:0.8em;
	}
}



/****************************************
       CSS レイアウト (モバイル)
*****************************************/
/*モバイルのみの表示*/
@media (max-width: 481px) {

}

@media (max-width: 321px) {


}


