@charset "utf-8";
/* 共通 */
*, *:before, *:after {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
 	word-break: break-all;
 	word-wrap: break-word;
    overflow-wrap: break-word;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html{
	background:#fff;
	color:#333;
	overflow-y: scroll;
	font-size:10px;
}
body{
	background:#000;
	color:#333;
	color:#383635;
	width: 100%;
	min-height: 100vh !important;
	font-family: 'Noto Sans JP', sans-serif;
	font-size:10px;
	line-height: 1.6;
	letter-spacing:0;
	-webkit-text-size-adjust: 100%;
}
blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}
ol, ul{
	list-style:none;
}
table{
	border-collapse: collapse; 
	border-spacing:0;
}
caption, th{
	text-align: left;
}

/* custom */
a {
	display:inline-block;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:focus {
    outline:none;
}

a:link{
    color:#2969b7;
    text-decoration:underline;
}

a:visited{
    color: #2969b7;
    text-decoration:underline;
}

a:hover{
    color:#348EFB;
    text-decoration:underline;
}

a:active{
    color:#2969b7;
    text-decoration:underline;
}

a img, img {
    border: 0;
    vertical-align:bottom;
    line-height:0;
}

img {
	width:100%;
	max-width:none;
	vertical-align:bottom;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
table {
	width:100%;
}
.button ,
.button:hover,
.button:active {
	transition: 0.3s;
}
.button:hover,
.button:active  {
	opacity:0.6;
}
.button-switch .on {
	transition: 0.3s;
	display:none;
	opacity:0;
}
.button-switch .off {
	transition: 0.3s;
	display:inline;
	opacity:1;
}
.button-switch:hover .on ,
.button-switch:active .on {
	display:inline;
	opacity:1;
}
.button-switch:hover .off ,
.button-switch:active .off {
	display:none;
	opacity:0;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	visibility: hidden;
}
.clearfix { 
	min-height: 1px;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.cleartxt {
    text-indent: -99999%;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
}
.clr{
    clear:both;
}
@media print, screen and (min-width: 768px) {
	body {
		font-size:16px;
	}
	img {
		width:auto;
		max-width: 100%;
	}
}
/* layout */
.header ,
.main ,
.footer {
	width:100%;
	padding:0;
	margin:0;
	position:relative;
	background:#fff;
}
.container {
	width:auto;
	margin:0 auto;
	position:relative;
	padding:0 2%;
	overflow: hidden;
}
@media print, screen and (min-width: 768px){
	.header ,
	.main ,
	.footer {
		min-width:1000px;
	}
	.container {
		width:1000px;
		padding:0 20px;
	}
}
/* s.header */
.header {
	position: fixed;
	background:#008000;
	padding:0;
	height:30px;
	top:0;
	left:0;
	z-index:1;
}
@media print, screen and (min-width: 768px){
	.header {
		height:60px;
	}
}
.main {
	z-index:0;
	min-height:100vh;
	padding:40px 0;
}

.main .container > .title {
	position:relative;
	text-align:center;
	font-size:2.4rem;
	font-weight:700;
	line-height:1.2;
	padding:30px 0 24px;
	border-bottom:4px solid #008000;
}
.main .container > .address {
	position: relative;
	font-size:1.6rem;
	margin:20px auto 0;
}
.main .container > .address li {
	font-size:1.6rem;
	font-weight:500;
	line-height:1.4;
	padding:4px 0 0;
	text-align:center;
}
.main .container > .address .map {
	margin-top:16px;
	display:block;
	position: relative;
	width:100%;
}
.main .container > .address .map:before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.main .container > .address .map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media print, screen and (min-width: 400px) {
	.main .container > .title {
		padding-top:40px;
		font-size:3rem;
	}
	.main .container > .address li {
		font-size:2rem;
	}
}
@media print, screen and (min-width: 768px){
	.main { 
		padding:80px 0;
	}
	.main .container > .title {
		padding-top:60px;
		font-size:4.8rem;
	}
	.main .container > .address {
		width:430px;
		margin-top:16px;
	}
	.main .container > .address li {
		font-size:2.4rem;
		padding:8px 0 0;
		text-align:center;
	}
	
}
.footer {
	position: fixed;
	background:#008000;
	height:30px;
	bottom:0;
	left:0;
	z-index:1;
}
.footer .copyright {
	margin:0;
	padding:0;
	text-align: center;
	font-size:1.4rem;
	color:#fff;
	line-height:1;
	padding:8px 0;
}
@media print, screen and (min-width: 768px){ 
	.footer {
		height:60px;
	}
	.footer .copyright {
		padding:23px 0;
	}
	.footer .copyright .pc {
		display:inline !important;
	}
}
.pc {
	display:none !important;
}
.sp {
	display:block !important;
}
br.pc {
	line-height:0 !important;
}
br.sp {
	line-height:0 !important;
}
@media print, screen and (min-width: 768px){
	.pc {
		display:block !important;
	}
	.sp {
		display:none !important;
	}
}
/* print */
@media print {
	html{ 
		background:#fff !important;
	 }
	body{
		background:#fff !important;
		-webkit-print-color-adjust: exact;
	}
}
@page {
	size: A4 portrait;  
	margin-left:   10mm;
 	margin-right:  10mm;
 	margin-top:    10mm;
 	margin-bottom: 10mm;
}