@charset "utf-8";

/*
 *
 *	common style
 *
 */

/*======================================
	common
======================================*/
*, *:before, *:after {
		-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-size: .938rem;
	font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meryo, "メイリオ", Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	font-weight: 100;
	color: #232323;
		-webkit-text-size-adjust: 100%;
}


/****** selection ******/
::selection {
	background: #E0E0E0;
	text-shadow: #fff 1px 1px 0;
	color: #232323;
}
::-moz-selection {
	background: #E0E0E0;
	text-shadow: #fff 1px 1px 0;
	color: #232323;
}


/****** a Link ******/
a, a:visited, a img {
	text-decoration: none;
	color: #232323;
		-moz-transition: all .4s ease;
		-webkit-transition: all .4s ease;
		-ms-transition: all .4s ease;
    transition: all .4s ease;
}
a:hover,
.hoverBtn:hover {
	text-decoration: none;
	opacity: .6;
}


/****** images ******/
img,
object,
svg,
img[src$=".svg"] {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}


/****** wrapper ******/
.wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
}



/*======================================
	gHeader
======================================*/
.gHeader {
		display: -webkit-flex;
	display: flex;
		-webkit-justify-content: center;
	justify-content: center;
	margin-bottom: 5%;
	padding: 2em 10px;
	border-bottom: #232323 solid 1px;
}

.gHeader h1 {
	width: 25%;
	max-width: 120px;
	margin-right: auto;
}


/****** navToggle ******/
.gHeader .navToggle {
	display: none;
}


/****** navigation ******/
.navigation {
	width: 75%;
		display: -webkit-flex;
	display: flex;
		-webkit-align-items: right;
	align-items: right;
	margin-top: 1em;
}

/* main */
.navigation ul {
	margin-left: auto;
	text-align: right;
	letter-spacing: -.5em;
}
.navigation ul li {
	display: inline-block;
	line-height: 1.4;
	margin-left: 1.5em;
	vertical-align: middle;
	letter-spacing: normal;
    font-size: 110%;
}
.navigation ul li:first-child{margin-left: 0;}
.navigation ul li a {
	display: block;
	text-align: center;
}
.navigation ul li.current a {
	opacity: .5;
}

.navigation ul.sns {
	margin-left: 0;
	margin-bottom: 0.1em;
}
.navigation ul.sns li {
	width: 20px;
	margin-left: 1.5em;
}


/*======================================
	mainContents
======================================*/
.mainContents {
	margin-bottom: 8%;
}


/****** commonBox ******/
.mainContents .commonBox dl dt,
.mainContents .commonBox dl dd {
	line-height: 1.6;
	margin-bottom: 2em;
}

.mainContents .commonBox .list li {
	line-height: 1.6;
	text-indent: -1em;
	margin-left: 1em;
	margin-bottom: .5em;
}
.mainContents .commonBox .list li:before {
	content: '- ';
	color: #999;
}



/*======================================
	gFooter
======================================*/
.gFooter {
	padding: 2em 10px;
	border-top: #e8e8e8 solid 1px;
}


/****** copy ******/
.gFooter .copy {
	line-height: 1.2;
	text-align: center;
	font-size: .75em;
}



/*======================================
	common
======================================*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
br.sp {
	display: none;
}
.alC {
	text-align: center;
}





/*============================================================================

	responsive

============================================================================*/
@media screen and (max-width:768px) {
	body {
		font-size: .8rem;
	}



	/*======================================
		gHeader
	======================================*/
	.gHeader {
		display: block;
		padding: 1em 10px;
	}
	.gHeader h1 {
		float: left;
	}


	/****** navToggle ******/
	.gHeader .navToggle {
		position: relative;
		display: block;
		float: right;
		width: 30px;
		height: 30px;
		z-index: 920;
	}
	.gHeader .navToggle:before,
	.gHeader .navToggle:after {
		content: '';
		display: block;
		position: absolute;
		width: 30px;
		height: 2px;
		top: 50%;
		left: 0;
		margin-top: -1px;
		background: #000;
			-moz-transition: transform .4s ease;
			-webkit-transition: transform .4s ease;
			-ms-transition: transform .4s ease;
		transition: transform .4s ease;
	}
	.gHeader .navToggle:before {
		box-shadow: #000 0 -7px 0, #000 0 7px 0;
	}
	.gHeader .navToggle.close:before {
		box-shadow: none;
			-moz-transform: rotate(45deg);
			-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.gHeader .navToggle.close:after {
			-moz-transform: rotate(-45deg);
			-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}


	/****** navigation ******/
	.navigation {
		display: none;
		clear: both;
		float: none;
		width: 100%;
		padding-top: 1em;
		padding-left: 0;
		text-align: center;
	}

	/* main */
	.navigation ul li {
		display: block;
		margin: 0;
		border-top: #ddd solid 1px;
	}
	.navigation ul li a {
		padding: .5em .2em;
	}
	
	.navigation ul.sns {
		margin: 0;
		border-top: #ddd solid 1px;
		text-align: center;
	}
	.navigation ul.sns li {
		display: inline-block;
		margin: 0 1em;
		border-top: none;
	}



	/*======================================
		mainContents
	======================================*/
	/****** commonBox ******/
	.mainContents .commonBox dl dt,
	.mainContents .commonBox dl dd {
		margin-bottom: 1.5em;
	}



	/*======================================
		gFooter
	======================================*/
	.gFooter {
		padding: 1em 10px;
	}



	/*======================================
		common
	======================================*/
	br.sp {
		display: block;
	}

}
