@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  #0c3f97 */
/* sub color  #f19ca6 */


/* === basic === */

html {
	height: 100%;
	font-size: 62.5%; /* 10px */
	overflow-y: scroll;
}
body {
	width: 100%;
	height: 100%;
	background: url(../img/gradation.png) no-repeat top center;
	background-size: cover;
	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%;
	background: url(../img/bg.svg) no-repeat top 40px center;
	background-attachment: fixed;
	position: relative;
}
.scroll_prevent {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
}

@media only screen and (max-width: 767px) {
	body {
		font-size: 1.4em; /* 14px */
		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: 30px 30px 0;
}

@media only screen and (max-width: 767px) {
	header {
		padding: 20px;
		text-align: center;
	}
}


/* === footer === */

footer {
	padding: 15px 0;
	font-size: 1.3rem;
	text-align: center;
}

@media only screen and (max-width: 767px) {
}