@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; }


/* === basic === */

html {
	height: 100%;
	font-size: 62.5%; /* 10px */
	overflow-y: scroll;
}

body {
	width: 100%;
	height: 100%;
	background: #C8EBF4;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4em; /* 14px */
	font-weight: 300;
	line-height: 2.15;
	text-align: left;
	-webkit-text-size-adjust: 100%;
}

@media only screen and (max-width: 1023px) {
	body {
		font-size: 1.4em; /* 13px */
		line-height: 1.75;
		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: #333;
	text-decoration: none;
	transition: all .5s;
}
a:hover {
}
a:link, a:visited, a:active, a:hover {
	outline: none;
}

a[href^="tel:"] {
}

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


/* === break === */

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

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


/* === footer === */

footer {
	width: 100%;
}
.copyright {
	font-size: 1.2rem;
	line-height: 1;
	position: fixed;
	left: 40px;
	bottom: 30px;
}

@media only screen and (max-width: 1023px) {
	.copyright {
		width: 100%;
		height: 20px;
		text-align: center;
		left: 0;
		bottom: 0;
	}
}

/* -- sns -- */

.sns {
	position: fixed;
	right: 40px;
	bottom: 30px;
}
.sns ul li {
	margin-left: 3px;
	display: inline-block;
}
.sns ul li a:hover {
	opacity: .5;
}

@media only screen and (max-width: 1023px) {
	.sns {
		width: 100%;
		height: 60px;
		text-align: center;
		right: 0;
		bottom: 20px;
	}
	.sns ul li {
		margin: 0 3px;
	}
	.sns ul li img {
		width: 42px;
	}
}