@charset "utf-8";

/* PC：style_pc.css
 * **************************************************
 * Site Width
 * Header
 * Global Navigation
 * Content
 * Common Elements
 * Footer
 * **************************************************
 */

/*  Site Width
------------------------------------------------------------------- */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	min-width: 320px;
}
.inner {
	margin: 0 auto;
	padding: 0;
	max-width: 1000px;
}
	@media only screen and (max-width: 1024px) {
		.inner {
		     margin: 0 1.9%;
		}
	}


/*  Header
------------------------------------------------------------------- */
#header {
	margin: 20px 0 0 0;
}


/* Global Navigation
------------------------------------------------------------------ */


/* Content
------------------------------------------------------------------ */
#content {
	overflow: hidden;
}
#content .main:after {
	clear: both;
	content: ".";
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}
#content .inner:after {
	clear: both;
	content: ".";
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}


/* Common Elements
------------------------------------------------------------------ */
/* img */
img {
	vertical-align: bottom;
}
/* リンク */
a {
	color: #333333;
	text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
}
a:hover {
	color: #e95383;
	text-decoration: none;
}
a:hover img {
	opacity: 0.8;
}


/* Topic Path
------------------------------------------------------------------ */


/* Content Bottom
------------------------------------------------------------------ */


/* PageTop
------------------------------------------------------------------ */


/* Footer
------------------------------------------------------------------ */
/* copyRight */
#footer .copyRight {
	font-size: 1.0rem;
	padding: 30px 0;
	margin: 30px auto 0;
	text-align: right;
	width: 1000px;
}
