@charset "UTF-8";
/* CSS Document */

body{
	-webkit-text-size-adjust: 100%;
}

header,
footer,
nav,
section,
figure{display:block;}

strong {
	color:#FFC559;
}

.clear{
clear:both;
}

.clearfix:after{
	clear:both;
	display:block;
	visibility:hidden;
	content:" ";
	height:0;
}

img {
	max-width:100%;
	height:auto;
}

.wideFrame {
	width:1200px;
	margin-left:auto;
	margin-right:auto;
}

input,
select,
textarea {
	width:100%;
	box-sizing:border-box;
	padding:5px 10px;
	border:solid 1px #ccc;
	background:#fff;
	border-radius: 10px;        /* CSS3草案 */  
	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 10px;   /* Firefox用 */
	-webkit-appearance: none;
}
input,
select{
	height:2.3em;
	line-height:2.3em;
}
input.check,
select.check,
textarea.check {
	padding-left:35px;
	position:relative;
	background:url(css_img/iconCheckErr.svg) no-repeat 10px center;
	background-size:15px;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"]{
	color:#fff;
	border:none;
	background:#ccc;
	cursor:pointer;
	height:45px;
	line-height:45px;
	padding:0 3px;
	transition-property:background-color;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover{
	color:#fff;
	background:#46B2FF;
}

/*ボタン表示のパターン*/
.btm {
	display:block;
	padding:15px 20px;
	text-align:center;
}
.btm.p01 {
	color:#333;
	border:solid 1px #eee;
	position:relative;
	overflow:hidden;
	z-index:2;
	transition-property:color, border-color;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
.btm.p01::before {
	position:absolute;
	display:block;
	content:"";
	left:0;
	top:0;
	width:1px;
	height:100%;
	z-index:-2;
	opacity:0;
	background:#0E78C3;
	transition-property:width, opacity;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
.btm.p01:hover {
	color:#fff;
	border:solid 1px #eee;
}
.btm.p01:hover::before {
	opacity:1;
	width:100%;
}

@media screen and ( max-width:1200px )
{
	.wideFrame {
		width:auto;
		padding:0 10px;
	}
}

/**************************************************************************
#header
**************************************************************************/

#header{
	height:80px;
	position:relative;
	z-index:20;
}
#header .wideFrame{
	position:relative;
}

h1 {
	position:absolute;
	font-size:1.98em;
	font-weight:bold;
	left:3px;
	top:19px;
}
#header.close h1 {
	opacity:0.3;
}

h1, h1 a {
	color:#0E78C3;
}

#header #btmMenuView {
	width:40px;
	height:40px;
	position:absolute;
	right:15px;
	top:22px;
	display:none;
	cursor:pointer;
	background:#fff;
	border-radius: 40px;        /* CSS3草案 */  
	-webkit-border-radius: 40px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 40px;   /* Firefox用 */

}
#header #btmMenuView li {
	width:30px;
	height:0;
	position:absolute;
	overflow:hidden;
	padding-top:2px;
	background:#999;
	left:50%;
	margin-left:-15px;
	transition-property:-moz-transform,-webkit-transform,-o-transform,-ms-transform,transform,top;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
#header #btmMenuView li.p01 {
	top:10px;
}
#header #btmMenuView li.p02 {
	top:26px;
}

#header.close #btmMenuView li.p01 {
	top:20px;
	-moz-transform:    rotate( 45deg );  /* Firefox用 */
	-webkit-transform: rotate( 45deg );  /* Chrome,Safari,新しいOpera用 */
	-o-transform:      rotate( 45deg );  /* 古いOpera用 */
	-ms-transform:     rotate( 45deg );  /* IE9用 */
	transform:         rotate( 45deg );  /* CSS3の書き方 */
}
#header.close #btmMenuView li.p02 {
	top:20px;
	-moz-transform:    rotate( -45deg );  /* Firefox用 */
	-webkit-transform: rotate( -45deg );  /* Chrome,Safari,新しいOpera用 */
	-o-transform:      rotate( -45deg );  /* 古いOpera用 */
	-ms-transform:     rotate( -45deg );  /* IE9用 */
	transform:         rotate( -45deg );  /* CSS3の書き方 */
}

@media screen and ( max-width:992px )
{
	#header{
		border-bottom:solid 3px #2BA5FB;
	}
	#header.close{
		border-bottom:solid 3px #2BA5FB33;
	}
	#header #btmMenuView {
		display:block;
	}
}

@media screen and ( max-width:768px ){
	#header{
		height:55px;
	}
	
	h1 {
		font-size:1.13em;
		font-weight:bold;
		left:9px;
		top:17px;
	}
}
/**************************************************************************
#glNav
**************************************************************************/

#glNav {
	border-bottom:solid 3px #2BA5FB;
}
#glNav,
#glNav li a{
	height:45px;
}

#glNav li {
	float:left;
	overflow:hidden;
	position:relative;
}
#glNav li::before {
	position:absolute;
	left:0;
	top:0;
	content:"";
	width:1px;
	height:100%;
	background:#46B2FF;
	opacity:0;
	z-index:-5;
	transition-property:width,opacity;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
#glNav li:hover::before {
	width:100%;
	opacity:1;
}

#glNav li a {
	display:block;
	padding:0 35px;
	border-right:solid 1px #eee;
	color:#666;
	line-height:45px;
	transition-property:color;
	transition-duration:0.3s;
	transition-timing-function:ease-in-out;
	transition-delay:0s;
}
#glNav li a:hover {
	color:#fff;
}

@media screen and ( max-width:992px )
{
	#glNav{
		position:fixed;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background:#ffffffee;
		z-index:15;
		box-sizing:border-box;
		padding:135px 5px 5px 5px;
		display:none;
	}
	#glNav.show {
		display:block;
	}
	#glNav ul {
		overflow-y:scroll;
	}
	#glNav li {
		float:none;
		text-align:center;
		font-size:1.1em;
	}
}



@media screen and ( max-width:768px ){
	#header #btmMenuView {
		width:40px;
		height:40px;
		right:15px;
		top:11px;
		border-radius: 40px;        /* CSS3草案 */  
		-webkit-border-radius: 40px;    /* Safari,Google Chrome用 */
		-moz-border-radius: 40px;   /* Firefox用 */
	
	}
}

/**************************************************************************
#contents
**************************************************************************/

#contents {
	padding:60px 0;
}

#contents h2 {
	text-align:center;
	margin-bottom:55px;
	background:#1693EB;
	color:#fff;
	font-size:1.3em;
	padding:15px 5px;
}

#contents p {
	margin-bottom:15px;
}



/**************************************************************************
#footer
**************************************************************************/

#footer {
}

#footer .copy {
	text-align:center;
	font-size:0.89em;
	color:#999;
}

