@charset "utf-8";

/* === normalize === */

html, body, section, article, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset, input, textarea, select, option, address, blockquote, del, noscript, img, hr { margin: 0; padding: 0; font-size: 100.01%; font: inherit; vertical-align: baseline; } html { overflow-y: scroll; } ul { list-style: none; } table { border-collapse: collapse; border-spacing: 0; border: 0; } img { border: 0; line-height: 0; vertical-align: middle; } address { font-style: normal; } hr { 	clear: both; visibility: hidden; } sub, sup { font-size: 75%; line-height: 0; vertical-align: baseline; position: relative; } sup { top: -0.5em; } sub { bottom: -0.25em; }

/* font color #333 */
/* key color  # */
/* sub color  # */


/* === basic === */

html {
	height: 100%;
	font-size: 62.5%; /* 10px */
	overflow-y: scroll;
}
body {
	width: 100%;
	height: 100%;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.5em; /* 15px */
	font-weight: 400;
	line-height: 1.75;
	text-align: left;
	-webkit-text-size-adjust: 100%;
}
#wrap {
	width: 100%;
	min-height: 100%;
	position: relative;
}
.scroll_prevent {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
}

@media only screen and (max-width: 767px) {
	body {
		font-size: 1.3em; /* 13px */
		position: relative;
		right: 0;
	}
}
@media print {
	body {
		width: 1280px;
		transform: scale(0.8);
		-moz-transform: scale(0.8);
		-webkit-transform: scale(0.8);
		transform-origin: 0 0;
	}
}


/* === anchor === */

a {
	color: #03f;
	transition: all .5s;
}
a:hover {
	color: #333;
	text-decoration: none;
}
a:link, a:visited, a:active, a:hover {
	outline: none;
}
a[href^="tel:"] {
	color: #333;
}

@media only screen and (min-width: 1025px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}


/* === clearfix === */

.cf {
	zoom: 1;
}
.cf:after {
	content:"";
	display: block;
	clear: both;
}


/* === break === */

br.pc { display: inline; }
br.sp { display: none; }

@media only screen and (max-width: 767px) {
	br.pc { display: none; }
	br.sp { display: inline; }
}


/* === header === */

header {
	padding: 500px 0 0;
	background: url(../img/bg_header.png) top center no-repeat;
	text-align: center;
}

.sns_note {
	position: fixed;
	top: 25px;
	right: 25px;
}
.sns_note a {
	width: 200px;
	height: 40px;
	background: #000;
	border-radius: 20px;
	color: #fff;
	font-size: 1.3rem;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	display: block;
}
.sns_note a img {
	width: 75px;
	margin: 0 0 0 5px;
}

@media only screen and (min-width: 1367px) {
	header {
		background-size: cover;
	}
}

@media only screen and (max-width: 975px) {
	header img {
		width: 95%;
	}
}

@media only screen and (max-width: 767px) {
	header {
		padding: 150px 0 0;
		background-size: contain;
		text-align: center;
	}

	.sns_note {
		width: 100%;
		top: auto;
		bottom: 0;
		right: auto;
		left: 0;
	}
	.sns_note a {
		width: 100%;
		border-radius: 0;
	}
}


/* === footer === */

footer {
	max-width: 960px;
	margin: 0 auto;
	padding: 45px 0 30px;
	font-size: 1.2rem;
	text-align: center;
}
.deadline {
	margin: 0 0 45px;
	text-align: center;
}
.organizer {
	float: left;
}
.secretariat {
	float: right;
}

@media only screen and (max-width: 975px) {
	.organizer,
	.secretariat {
		text-align: center;
		float: none;
	}
}

@media only screen and (max-width: 767px) {
	footer {
		padding: 30px 20px 60px;
		text-align: justify;
	}
	.deadline {
		margin: 0 0 30px;
		text-align: justify;
	}
	.organizer,
	.secretariat {
		text-align: justify;
	}
}