@charset "utf-8";
/*
Site Name: 
Description: gloval style
*/

/* universal reset
----------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}

*{
    box-sizing: border-box;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

q{
	quotes: none;
}

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

ins {
	background-color: #FF9;
	color: #000;
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

em, address{
	font-style: normal;
}

a img{
	text-decoration: none;
}

.offscreen{
	position: absolute;
	top: -9999px;
}

/* body and base setting
----------------------------------------- */
body {
	padding: 0px;
	margin: 0px;
	font-family: "Hiragino Kaku Gothic Pro", 'ＭＳ Ｐゴシック', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
	color: #333333;
	/*background-color: #F6F9FC;*/
	text-align: center;
	font-size: 88%;
	line-height: 1.6;
	letter-spacing: 0.05em;
	background-image: url(../img/bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-attachment: fixed;

}


/* font style
----------------------------------------- */
@font-face{
	font-family: "mamelon";
	src: url("../font/mamelon.woff2")
		 format("woff2");
}


/* animatuon style
----------------------------------------- */
@keyframes fadein{
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes slideInDown{
	0% {
	  -webkit-transform: translateY(-100%);
	  transform: translateY(-100%);
	  visibility: visible;
	}
	100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
}


/* general style
----------------------------------------- */
html{  
	overflow-y: scroll!important;
	overflow-x: auto;
}
/*html.nav-open,
html.nav-open body,
html.nav-open #container{
	height: 100%!important;
	overflow: hidden;
}*/
p {
}
img {
	max-width: 100%;
	height: auto;
	width /***/:auto;　
	vertical-align: bottom;
}
strong{
	font-weight: bold;
}
span{
	font-weight: bold;
}
span.required{
	float: right;
	clear: right;
	color: #FFFFFF;
	font-size: 75%;
	font-weight: normal;
    margin-right: 5px;
    padding: 1px 2px;
	background-color: #CC3333;
    border: #CC3333 solid 1px;	
}
form label.error{
	font-size: 80%;
	color: #FFF;
	padding: 2px 5px;
	background-color: #FF0000;
	display: block;
}

#gmap{
	height: 0;
	padding-bottom: 75%;
	overflow: hidden;
	position: relative;
    border-radius: 10px;
}
#gmap iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

#menu-trigger,
#menu-trigger div,
#menu-trigger span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
#menu-trigger{
	width: 40px;
	height: 40px;
	background-color: #002F7B;
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 9999;
	display: none;
	cursor: pointer;
}
#menu-trigger div{
	width: 20px;
	height: 17px;
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
}
#menu-trigger span{
	width: 100%;
	height: 1px;
	background-color: #FFF;
	position: absolute;
	left: 0;
}
#menu-trigger span:nth-of-type(1) {
	top: 0;
}
#menu-trigger span:nth-of-type(2) {
	top: 8px;
}
#menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
#menu-trigger.open span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
#menu-trigger.open span:nth-of-type(2) {
	opacity: 0;
}
#menu-trigger.open span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}

@media all and (max-width: 1230px){
#menu-trigger{
	display: block;
}
}
@media all and (max-width: 640px){
#gmap{
	height: 0;
	padding-bottom: 133.333%;
	overflow: hidden;
	position: relative;
}
}


/* link style
----------------------------------------- */
a{
	color: #009DB7;
	text-decoration: underline;
	transition: .2s;
}
a:hover{
	color: #666666;
	text-decoration: none;
}
a.btn{
	color: #005BAC;
	margin: 5px 0px;
	padding: 10px 30px;
	background-color: #FFF;
	border: #005BAC solid 1px;
	border-radius: 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}
a.btn:hover{
	color: #FFF;
	background-color: #005BAC;
}





@media all and (min-width: 641px){
a[href^="tel:"] {
	color: #333;
	text-decoration: none;
    pointer-events: none;
}
}

/* layout parts
----------------------------------------- */
.display-pc{
	display: inherit;
}
.display-sp{
	display: none;
}
.clear {
	overflow: hidden;
	clear: both;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.left {
	text-align: left;
}
img.left,
img.alignleft,
figure.left{
	float: left;
	clear: both;
	margin-right: 15px;
	padding-bottom: 15px;
}
img.center,
img.aligncenter,
figure.center{
	clear: both;
	padding-bottom: 15px;
	display: block;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
img.right,
img.alignright,
figure.right{
	float: right;
	clear: both;
	margin-left: 15px;
	padding-bottom: 15px;
}

@media all and (min-width: 769px){
}
@media all and (max-width: 768px){
}
@media all and (max-width: 640px){
.display-pc{
	display: none;
}
.display-sp{
	display: inherit;
}
}
