@charset "utf-8";



/*==================================================

outline
==================================================*/

* {
	transition: all .3s cubic-bezier( .4, 0, .2, 1 );
		-webkit-transition: all .3s cubic-bezier( .4, 0, .2, 1 );
		-moz-transition: all .3s cubic-bezier( .4, 0, .2, 1 );
		-ms-transition: all .3s cubic-bezier( .4, 0, .2, 1 );
}
body,
html {
	width: 100%;
	height: 100%;
}
body {
	background: rgba( 249,248,253,1.00 );
	color: rgba( 22,16,33,0.86 );
	min-width: 1200px;
}
body p {
	line-height: 180%;
}
a,
a:hover {
	text-decoration: none;
	transition: all .3s cubic-bezier( .4, 0, .2, 1 );
		-webkit-transition: all .3s cubic-bezier( .4, 0, .2, 1 );
		-moz-transition: all .3s cubic-bezier( .4, 0, .2, 1 );
		-ms-transition: all .3s cubic-bezier( .4, 0, .2, 1 );
}
a:hover {
	opacity: .75;
		filter: alpha( opacity=75 );
		-ms-filter: "alpha( opacity=75 )";
		-khtml-opacity: .75;
		-moz-opacity: .75;
}
img {
	max-width: 100%;
	max-height: 100%;
}
.wrap-l,
.wrap-m {
	box-sizing: border-box;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0 40px;
	zoom:1;
}
.wrap-l:after,
.wrap-m:after {
	clear: both;
	display: block;
	content: '';
	height: 0;
}
.wrap-l {
	width: 1200px;
}
.wrap-m {
	width: 960px;
}



/*==================================================

header
==================================================*/

#header {
	background: rgba( 255,255,255,1.00 );
	box-sizing: border-box;
	position: fixed;
		left: 0;
		top: 0;
	padding: 24px 40px;
	width: 100%;
	height: 72px;
	z-index: 100;
}
#header h1 {
	float: left;
	height: 100%;
}

#header #menu {
	height: 18px;
	float: right;
	cursor: pointer;
	position: relative;
	z-index: 10;
	display: none;
}
#header #menu span {
	height: 2px;
	width: 26px;
	background: #333;
	display: block;
	margin: 0 auto;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .5s;
	transition: all .5s;
}
#header #menu span:before, #header #menu span:after {
	content: '';
	height: 2px;
	width: 26px;
	background: #333;
	display: block;
	position: absolute;
	-webkit-transition: all .5s;
	transition: all .5s;
}
#header #menu span:before {
	top: -8px;
}
#header #menu span:after {
	top: 8px;
}
#header #menu.active span {
	background: transparent;
}
#header #menu.active span:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0;
}
#header #menu.active span:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 0;
}
#header #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;
}
#header #global-navi.is-visible~#obfuscator {
	visibility: visible;
}
#header #global-navi{
	
float: right;
}
#header #global-navi li{
	float: left;
	margin-left: 26px;
	color: #3d2f5b;
	font-weight: bold;
	font-size: 14px;
}

/*==================================================

contents
==================================================*/

#contents {
	margin-top: 80px;
}



/*==================================================

title
==================================================*/

#title .wrap-m,
#title:before {
	background: rgba( 61,47,91,1 );
}
#title {
	position: relative;
	margin-top: 160px;
}
#title .wrap-m {
	padding: 80px 0;
}
#title:before,
#title:after {
	position: absolute;
	left: 0;
	content: '';
	display: block;
}
#title:before {
	top: 0;
	height: 100%;
	width: 50%;
}
#title:after {
	display: block;
	height: 1px;
	width: 8%;
	background: rgba( 255,255,255,1 );
	top: 50%;
	transform: translateY( -50% );
		-webkit-transform: translateY( -50% );
		-moz-transform: translateY( -50% );
		-ms-transform: translateY( -50% );
}
#title h1 {
	color: rgba( 255,255,255,1 );
	letter-spacing: 4px;
	font-size: 307%;
	font-family:
		Georgia,游明朝,
		"Yu Mincho",
		YuMincho,
		"Hiragino Mincho ProN",
		HGS明朝E,
		メイリオ,
		Meiryo,
		serif;
}
#title h2 {
	color: rgba( 255,255,255,0.7 );
	font-size: 123%;
	margin-top: 8px;
}



/*==================================================

footer
==================================================*/

#footer {
	margin-top: 120px;
	background: rgba( 69,69,69,1.00 );
	color: rgba( 255,255,255,0.5 );
	padding: 40px 0 80px;
	text-align: center;
}

/*PageTop*/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
	z-index: 999;
}
#page-top a {
    background: #3D2F5B;
    color: #fff;
    width: 50px;
	padding: 11px 0 9px;
    text-align: center;
    display: block;
    border-radius: 25px;
}
