@charset "UTF-8";
/* CSS Document */

/* ----------------------------------------------------------------------------------------------------
  settings
* --------------------------------------------------------------------------------------------------*/
body {
	background: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif !important;
	color: #231815;
	font-size: 14px;
	line-height: 1.71;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	opacity: 0.75;
}
img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width:768px) {
	body {
		font-size: 13px;
	}
}


/* ----------------------------------------------------------------------------------------------------
  common layout
* --------------------------------------------------------------------------------------------------*/
.headerIn,
.footerIn,
.contentIn {
	padding-left: 30px;
	padding-right: 30px;
	margin: 0 auto;
	position: relative;
}
.clearfix:after,
.headerIn:after,
.footerIn:after,
.contentIn:after {
	content: "";
	display: block;
	clear: both;
}

.mw965 {
	max-width: 1025px;
}
.mw1000 {
	max-width: 1060px;
}
.mw1115 {
	max-width: 1175px;
}
.mw1250 {
	max-width: 1310px;
}
.mw1300 {
	max-width: 1360px;
}

@media screen and (max-width:768px) {
	.headerIn,
	.footerIn{
		padding: 0 2.66%;
	}
	.contentIn {
		padding: 0 5.333%;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  header
* --------------------------------------------------------------------------------------------------*/
#header {
	padding: 39px 0 0;
	text-align: center;
}
#hLogo a:hover {
	opacity: 1.0;
}

@media screen and (max-width:768px) {
	#header {
		height: 90px;
		padding: 5px 0;
	}
	#hLogo img {
		width: 172px;
	}
	.btnMenu{
		width: 35px;
		height: 26px;
		position: absolute;
		bottom: 2px;
		right: 2.66%;
		z-index: 9999;
	}
	.btnMenu span {
		display: inline-block;
		width: 100%;
		height: 4px;
		background: #e83e0b;
		position: absolute;
		left: 0;
		transition: all 0.4s;
	}
	.btnMenu.open span {
		background: #fff;
	}
	.btnMenu span:nth-of-type(1) {
		top: 0;
	}
	.btnMenu span:nth-of-type(2) {
		top: 11px;
	}
	.btnMenu span:nth-of-type(3) {
		bottom: 0;
	}
	.btnMenu.open span:nth-of-type(1) {
		-webkit-transform: translateY(11px) rotate(-35deg);
		transform: translateY(11px) rotate(-35deg);
	}
	.btnMenu.open span:nth-of-type(2) {
		opacity: 0;
	}
	.btnMenu.open span:nth-of-type(3) {
		-webkit-transform: translateY(-10px) rotate(35deg);
		transform: translateY(-10px) rotate(35deg);
	}
}


/* ----------------------------------------------------------------------------------------------------
*  gNavi
* --------------------------------------------------------------------------------------------------*/
#gNavi {
	padding: 37px 30px 40px;
}
#gNavi ul {
	text-align: center;
}
#gNavi li {
	display: inline-block;
	margin: 0 2.4em;
}
#gNavi #overlay {
	display: none;
}

@media screen and (max-width:768px) {
	#gNavi {
		width: 100%;
		height: 100%;
		padding: 90px 2.66% 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9000;
	}
	#gNavi.open {
		visibility: visible;
	}
	#gNavi ul {
		background: #fff;
		opacity: 0;
		overflow: hidden;
		backface-visibility: hidden;
		position: relative;
		z-index: 1000;
		transition: opacity 0.4s 0s ease,-webkit-transform 1s 0s cubic-bezier(0.19, 1, 0.22, 1);
		transition: transform 1s 0s cubic-bezier(0.19, 1, 0.22, 1),opacity 0.4s 0s ease;
		transition: transform 1s 0s cubic-bezier(0.19, 1, 0.22, 1),opacity 0.4s 0s ease,
		-webkit-transform 1s 0s cubic-bezier(0.19, 1, 0.22, 1);
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
	}
	#gNavi.open ul {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	#gNavi li {
		display: block;
		width: 50%;
		border-bottom: 1px solid #d9d9d9;
		margin: 0;
		float: left;
	}
	#gNavi li:nth-child(odd) {
		border-right: 1px solid #d9d9d9;
	}
	#gNavi li:nth-child(odd):nth-last-child(2),
	#gNavi li:nth-child(odd):last-child,
	#gNavi li:last-child {
		border-bottom: none;
	}
	#gNavi a {
		display: block;
		padding: 12px 0 10px 1em;
		text-align: left;
		position: relative;
	}
	#gNavi a:after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		right: 20px;
		margin: auto;
		display: block;
		width: 12px;
		height: 12px;
		border-top: 1px solid #999;
		border-right: 1px solid #999;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#gNavi #overlay {
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.8);
		opacity: 0;
		position: fixed;
		top: 0;
		left: 0;
		transition: all 0.4s 0s ease;
	}
	#gNavi.open #overlay {
		opacity: 1;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/
#footer {
	padding: 18px 0 19px;
	text-align: center;
	clear: both;
}
#fLogo {
	margin: 35px 0 25px;
}
#fLogo a:hover{
	opacity: 1.0;
}
#fCopy {
	font-size: 10px;
}

#blog_single_box {
	width: 1200px;
	margin: 0px auto;
}

@media screen and (max-width:768px) {
	#footer {
		padding: 25px 0 10px;
	}
	.btnPagetop img {
		max-width: 112px;
	}
	#fLogo {
		margin: 47px 0 17px;
	}
	#fLogo img{
		max-width: 150px;
	}
	#fCopy {
		font-size: 9px;
	}
	
	#blog_single_box {
	width: 100%;
	margin: 0px auto;
		font-size: 13px;
}
}

