@charset "utf-8";
/**
 * base.css
 */

/* import
--------------------------------------------------*/
@import "init.css";


/* html, body
--------------------------------------------------*/
body {
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}


/* siteCommonStyle
--------------------------------------------------*/
/* selection */
::-moz-selection {
	background: #b2d7fe;
}
/*::selection {
	background: #b2d7fe;
}*/

/* a */
a {
	color: #6666ff;
	text-decoration: underline;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.noT a:hover {
	text-decoration: none;
}

/* cap */
.caption,
.cap {
	color: #999999;
	font-size: 83.4%;
}
.cap {
	padding-top: 5px;
}

/* formText */
.formText {
	padding: 3px 2px;
	border: #ccc solid 1px;
}

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

/* sp pc */
.sp,
.sp_cont {
	display: none !important;
}
@media only screen and (max-width:767px) {
	.sp {
		display: block !important;
	}
	.sp_cont {
		display: inline-block !important;
	}
	.pc {
		display: none !important;
	}
}

/* fade */
@media only screen and (min-width:768px) {
	.fade:hover,
	.fadeArea a:hover {
		opacity: 0.7;
	}
}

/* mintyo */
.mintyo {
	font-family: 'Hannari', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', '游明朝', YuMincho, serif;
}

.gothic {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'ＭＳ Ｐゴシック', sans-serif;
}

/*.shadow {
	text-shadow:0px 0px 1px #fff,0 0 5px #fff,0 0 10px #fff,0 0 15px #fff,0 0 20px #fff,0 0 30px #fff,0 0 40px #fff;
}*/

/*#spMenu.on:before {
	margin-top: 0;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
}
#spMenu.on:after {
	margin-top: 0;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}*/


/*--------------------------------------------------
 wrapper
--------------------------------------------------*/
#wrapper {
	position: relative;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	color: #231815;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	text-align: left;
}
.wrap {
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}
@media only screen and (max-width:767px) {
	#wrapper {
		font-size: 14px;
	}
}



/*--------------------------------------------------
 header
--------------------------------------------------*/
#header {
	position: absolute;
	top: 30px;
	right: 0;
	z-index: 10;
}
#header a {
	display: block;
	color: #fff;
	text-align: center;
	text-decoration: none;
}
#header .logo {
	margin-bottom: 8px;
}
#header .logo a {
	text-align: left;
}

/*--------------------------------------------------
 gNav
--------------------------------------------------*/
#gNav li + li {
	margin-top: 2px;
}
#gNav li a {
	width: 125px;
	font-size: 13px;
	border-top-left-radius: 10px;
	background-color: #003e82;
}


/*--------------------------------------------------
 spMenu
--------------------------------------------------*/
#spMenu {
	display: none;
}
@media only screen and (max-width:991px) {
	#spMenu {
		position: absolute;
		top: 20px;
		right: 0;
		display: block;
		width: 70px;
		height: 50px;
		cursor: pointer;
		z-index: 5;
	}
	#spMenu span,
	#spMenu:before,
	#spMenu:after {
		position: absolute;
		top: 50%;
		left: 50%;
		display: block;
		content: '';
		width: 30px;
		height: 4px;
		margin-left: -15px;
		background-color: #23255a;
	}
	#spMenu span {
		margin-top: -2px;
		transition: 0.3s;
		-webkit-transition: 0.3s;
	}
	#spMenu:before {
		margin-top: -11px;
	}
	#spMenu:after {
		margin-top: 7px;
	}

	.open #spMenu:before {
		animation: menuAnime01 .4s forwards;
	}
	.open #spMenu:after {
		animation: menuAnime02 .4s forwards;
	}
	.open #spMenu span {
		opacity: 0;
	}
	.close #spMenu:before {
		animation: menuAnime01_close .4s forwards;
	}
	.close #spMenu:after {
		animation: menuAnime02_close .4s forwards;
	}
}
@media only screen and (max-width:767px) {
	#spMenu {
		width: 50px;
	}
}

@keyframes menuAnime01 {
	50% {
		margin-top: -2px;
		transform: rotate(0deg);
	}
	100% {
		margin-top: -2px;
		transform: rotate(45deg);
	}
}
@keyframes menuAnime01_close {
	0% {
		margin-top: -2px;
		transform: rotate(45deg);
	}
	50% {
		margin-top: -2px;
		transform: rotate(0deg);
	}
	100% {
		margin-top: -11px;
		transform: rotate(0deg);
	}
}
@keyframes menuAnime02 {
	50% {
		margin-top: -2px;
		transform: rotate(0deg);
	}
	100% {
		margin-top: -2px;
		transform: rotate(-45deg);
	}
}
@keyframes menuAnime02_close {
	0% {
		margin-top: -2px;
		transform: rotate(-45deg);
	}
	50% {
		margin-top: -2px;
		transform: rotate(0deg);
	}
	100% {
		margin-top: 7px;
	}
}



/*--------------------------------------------------
 container
--------------------------------------------------*/
#container {
	position: relative;
	z-index: 1;
}
#container .label {
	position: absolute;
	top: 50%;
	left: 0;
	height: 340px;
	width: 230px;
	margin-top: -170px;
}
#container .label span {
	position: absolute;
	top: 50%;
	right: 70px;
	display: block;
	font-size: 18px;
	color: #fff;
	transform: translateY(-50%);
	z-index: 3;
	line-height: 1;
	text-align: center;
}
#container .label.long span{
	right: 30px;
}
#container .label small {
	display: block;
	margin-top: 7px;
	color: #fff9b1;
	font-size: 16px;
}
#container .label:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	border-left: transparent solid 230px;
	border-top: transparent solid 170px;
	border-bottom: transparent solid 170px;
}





/*--------------------------------------------------
 footer
--------------------------------------------------*/







/*--------------------------------------------------
 colors
--------------------------------------------------*/
/*#gNav li:nth-child(1) a,#navs li:nth-child(1) a { background-color: #a51d3c; }
#gNav li:nth-child(2) a,#navs li:nth-child(2) a { background-color: #0b7b85; }
#gNav li:nth-child(3) a,#navs li:nth-child(3) a { background-color: #003e82; }
#gNav li:nth-child(4) a,#navs li:nth-child(4) a { background-color: #003e82; }
#gNav li:nth-child(5) a,#navs li:nth-child(5) a { background-color: #003e82; }
#gNav li:nth-child(6) a,#navs li:nth-child(6) a { background-color: #749828; }
#gNav li:nth-child(7) a,#navs li:nth-child(7) a { background-color: #ab833c; }
#gNav li:nth-child(8) a,#navs li:nth-child(8) a { background-color: #af6591; }*/


#container .label.turquoise:before { border-left-color: #0b7b85; }
#container .label.blue:before { border-left-color: #003e82; }
#container .label.green:before { border-left-color: #749828; }
#container .label.yellow:before { border-left-color: #ab833c; }
#container .label.pink:before { border-left-color: #af6591; }




/*--------------------------------------------------
 pager
--------------------------------------------------*/
.pager {
	position: absolute;
	bottom: 25px;
	left: 510px;
	width: 180px;
}
.pager li {
	float: left;
	width: 85px;
}
.pager li + li {
	float: right;
}
.pager li a {
	display: block;
	width: 100%;
	height: 20px;
}


