@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500");

/* base----------------------------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; outline: 0;}

html, body {
	width: 100%;
	height: 100%;
}
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
body {
	font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	font-weight: normal;
	letter-spacing: normal;
	background: #fff;
	color: #333;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	-webkit-text-size-adjust: nones;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}


/* link----------------------------------------------------- */
@-webkit-keyframes flash {
	0% {opacity: .4;}
	100% {opacity: 1;}
}
@keyframes flash {
	0% {opacity: .4;}
	100% {opacity: 1;}
}
a:link,a:visited,a:active {
/*	color: #000;*/
	text-decoration: none;
}
a:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
:focus {
	outline: none;
}


/* clearings----------------------------------------------------- */
.clearfix:before,
.clearfix:after,
.contents:before,
.contents:after {
	content: "";
	display: table;
	clear: both;
}
.clearfix:after,
.contents:after {
	clear: both;
}
.clearfix {
	*zoom: 1;
}


/* layout----------------------------------------------------- */
#wrapper {
	min-height: 100vh;
	display: -webkit-flex;
	display: flex;
	flex-flow: column nowrap;
}
header {
	position: fixed; 
	width: 100%;
	height: 60px;
	background: #222;
	box-shadow: 0 2px 4px 0 rgba(50, 50, 50, 0.06);
	z-index:998;
}
section {
	padding-top: 60px;
	padding-bottom: 10px;
}
footer {
	margin-top: auto;
	background-color: #222;
}

.pc {
	display: inherit;
}
.sp {
	display: none;
}

@media (max-width: 767px) {
	html {
		font-size: 56.25%;
	}
	.pc {
		display:none !important;
	}
	.sp {
		display:inherit !important;
	}
}


/* @font-face----------------------------------------------------- */
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}


/* header----------------------------------------------------- */
header {
	display: table;
	font-size: 0;
	line-height: 0;
}
header p, nav {
	display: table-cell;
}
header p img {
	margin: 15px 0 0 20px;
}
header nav {
	text-align: right;
	vertical-align: top;
}
header ul {
	margin: 30px 22px 0 0;
}
header ul, header ul a {
	color: #fff;
	font-family: "Quicksand", sans-serif;
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 0.2em;
}
header ul li {
	margin-left: 20px;
	display: inline-block;
	color: #999;
	font-family: "Quicksand", sans-serif;
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 0.2em;
}

#navToggle {
	display: none;
	position: absolute;
	right: 20px;
	top: 19px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
#navToggle div {
	position: relative;
}
#navToggle span {
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	border-bottom: solid 2px #fff;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#navToggle span:nth-child(1) {
	top: 0;
}
#navToggle span:nth-child(2) {
	top: 11px
}
#navToggle span:nth-child(3) {
	top: 22px;
}

@media screen and (max-width: 767px) {
	header .nav-bg {
		position: relative;
		width: 100%;
		height: 60px;
		background: #222;
		z-index: 999;
	}
	header nav {
		position: absolute;
		top: -300px;
		background: rgba(0,0,0,.8);
		width: 100%;
		padding: 20px 0;
		text-align: center;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	header ul {
		margin: 0;
	}
	header ul li {
		display: block;
		margin: 0;
		line-height: 4;
	}
	header ul li a {
		display: block;
		color: #fff !important;
	}
	#navToggle {
		display: block;
	}
	
	.openNav #navToggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.openNav #navToggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.openNav #navToggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	.openNav nav {
		-moz-transform: translateY(359px);
		-webkit-transform: translateY(359px);
		transform: translateY(359px);
	}
}


/* footer----------------------------------------------------- */
footer {
	padding: 10px;
}
footer .copyright {
	text-align: center;
	color: #fff;
	font-family: "Quicksand", sans-serif;
	font-size: 90%;
	font-weight: 500;
	letter-spacing: 0.2em;
}


/* pagetop----------------------------------------------------- */
.pagetop {
	position: fixed;
	bottom: 10px;
	right: 20px;
}
.pagetop img {
	position: relative;
	bottom: 0;
	-webkit-transition: all .2s;
	transition: all .2s;
}	
.pagetop a:hover img {
	opacity: 1;
	bottom: 4px;
}


/* contents----------------------------------------------------- */
.topimg {
	width: 100%;
	margin: 0 auto;
}
.topimg img {
	width: 100%;
	height: auto;
}

.contents {
	max-width: 1020px;
	margin: 40px auto;
	text-align: center;
}
.profile {
	text-align: center;
	font-family: "Quicksand", sans-serif;
	font-weight: bold;
	letter-spacing: 0.2em;
}
