@charset "utf-8";
body {
	font-family: YakuHanJP, "Noto Sans Japanese", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 12px;
	line-height: 1.5;
	background: #F9F2E2;
	color: #000;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
}
p {
	color: rgba(0,0,0,.54);
}
p.white-p {
	color: rgba(255.255.255, .7);
}
a {
	color: inherit;
}
a:hover {
	color: inherit;
}
a:visited {
	color: inherit;
}
a:active {
	color: inherit;
}
img {
	height: auto;
}
i {
	vertical-align: middle;
	line-height: 1;
}
.left {
	float: left;
}
.right {
	float: right;
}
.center {
	text-align: center;
}
.caution {
	color: #D50000;
}
/*----- STANDARD -----*/
main, section {
	position: relative;
}
.standard-h2 {
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 16px;
}
.standard-h2:after {
	content: '';
	display: block;
	width: 43px;
	height: 9px;
	margin: 8px auto 0;
	background: url(../img/ico-wave.png) no-repeat center center;
	background-size: cover;
	visibility: visible;
}
/*------HEADER------*/
#main-header {
	height: 50px;
	line-height: 50px;
	background: #E99F56;
	padding: 0 2%;
	box-sizing: border-box;
	position: relative;
}
#main-header h1 {
	width: 240px;
	float: left;
	line-height: inherit;
}
#menu {
	height: 50px;
	float: right;
	cursor: pointer;
	position: relative;
	z-index: 10;
	display: block;
}
#menu span {
	height: 2px;
	width: 26px;
	background: #FFF;
	display: block;
	margin: 0 auto;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .5s;
	transition: all .5s;
}
#menu span:before, #menu span:after {
	content: '';
	height: 2px;
	width: 26px;
	background: #FFF;
	display: block;
	position: absolute;
	-webkit-transition: all .5s;
	transition: all .5s;
}
#menu span:before {
	top: -8px;
}
#menu span:after {
	top: 8px;
}
#menu.active span {
	background: transparent;
}
#menu.active span:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0;
	background: #E99F56;
}
#menu.active span:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 0;
	background: #E99F56;
}
#obfuscator {
	background-color: rgba(255,255,255,.7);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9;
	visibility: hidden;
	-webkit-transition-property: background-color;
	transition-property: background-color;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	cursor: pointer;
}
#global-navi.is-visible~#obfuscator {
	visibility: visible;
}
#global-navi {
	width: 240px;
	height: 100%;
	max-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
	box-sizing: border-box;
	background: #E99F56;
	-webkit-transform: translateX(-250px);
	transform: translateX(-250px);
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	overflow: hidden;
	overflow-y: auto;
	z-index: 10;
}
#global-navi.is-visible {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
#global-navi li {
	border-bottom: 1px solid rgba(255, 255, 255, .3);
}
#global-navi a {
	color: #FFF;
	display: block;
	padding: 16px 2%;
	line-height: initial;
}
/*----- BANNER SECTION -----*/
#banner-section a {
	display: block;
	box-sizing: border-box;
	height: 110px;
	padding: 10px 2%;
	position: relative;
}
.banner-half {
	background: #e99f56;
	background: -moz-linear-gradient(top, #e99f56 0%, #b86c20 100%);
	background: -webkit-linear-gradient(top, #e99f56 0%, #b86c20 100%);
	background: linear-gradient(to bottom, #e99f56 0%, #b86c20 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e99f56', endColorstr='#b86c20', GradientType=0 );
	width: 49%;
	width: calc(50% - 2px);
	float: left;
	text-align: center;
	margin: 0 4px 0 0;
}
.banner-half+.banner-half {
	background: #f1a1b3;
	background: -moz-linear-gradient(top, #f1a1b3 0%, #c14f68 100%);
	background: -webkit-linear-gradient(top, #f1a1b3 0%, #c14f68 100%);
	background: linear-gradient(to bottom, #f1a1b3 0%, #c14f68 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1a1b3', endColorstr='#c14f68', GradientType=0 );
	margin: 0 0 4px 0;
}
.banner-half p {
	color: #FFF;
}
.banner-half p span {
	display: block;
	font-size: 20px;
	font-weight: 200;
	opacity: .7;
}
.banner-half i {
	color: #a56220;
	background: #FFF;
	width: 14px;
	height: 14px;
	border-radius: 100px;
	font-size: 12px;
	line-height: 14px;
	position: absolute;
	left: 50%;
	bottom: 10px;
	margin-left: -7px;
}
.banner-full {
	clear: both;
	flaot: none;
}
.banner-full a {
	background: url(../img/bnr-offical-webiste.png) no-repeat #131512 left center;
	background-size: contain;
}
.banner-full i {
	color: #FFF;
	font-size: 16px;
	position: absolute;
	right: 2%;
	top: 50%;
	margin-top: -8px;
}
/*----- FOOTER -----*/
#main-footer {
	background: #E7DBC0;
	padding: 32px 2% 16px;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}
#main-footer #page-top i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 100px;
	color: #FFF;
	font-size: 18px;
	background: #2B1804;
	cursor: pointer;
}
#main-footer #page-top p {
	font-weight: 500;
	color: #2B1804;
	margin: 4px 0 0;
}
#main-footer>p {
	margin-top: 16px;
}
#main-footer>p span {
	display: block;
	font-weight: bold;
	color: #2B1804;
}
#main-footer .link-block {
	margin-top: 16px;
}
#main-footer .link-block p {
	color: #2B1804;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 4px;
}
#main-footer .link-block li {
	text-align: left;
	background: #FFF;
	border-radius: 4px;
	height: 40px;
	line-height: 40px;
	margin: 2px 0;
	position: relative;
}
#main-footer .link-block li a {
	display: block;
	padding: 0 30px 0 8px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: rgba(0, 0, 0, .54);
}
#main-footer .link-block li i {
	font-size: 18px;
	position: absolute;
	right: 2%;
	top: 50%;
	margin-top: -9px;
}
