@charset "UTF-8";


/* ------------------------------------------------------------
 * Index

01 Reset
02 Base
03 Layout
04 Common Style
05 Page Style
06 Utility

 * ------------------------------------------------------------ */

/* ------------------------------------------------------------
 * 01 Reset
 * ------------------------------------------------------------ */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ------------------------------------------------------------
 * 02 Base
 * ------------------------------------------------------------ */
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	min-width: 980px;
	color: #000000;
	font-size: 12px;
	line-height: 1.5;
	font-family: helvetica, ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
	-webkit-text-size-adjust: 100%;
}
img {
	vertical-align: top;
}
@media screen and (max-width: 767px) {
	body {
		min-width: 100%;
	}
}

/* ------------------------------------------------------------
 * Link */
a:link,
a:visited {
	color: #004ea2;
	text-decoration: none;
}
a:hover,
a:active {
	color:#7fa6d0;
	text-decoration: underline;
}

/* ------------------------------------------------------------
 * 03 Layout
 * ------------------------------------------------------------ */
/* ------------------------------------------------------------
 * structure */
.structure {
	width: 100%;
	background-color: #ffffff;
}
/* pagetop */
.pagetop {
	position: fixed;
	left: 50%;
	bottom: 50px;
	display: none;
	width: 31px;
	margin-left: 508px;
}
.pagetop img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 767px) {
	.pagetop {
		right: 10px;
		left: auto;
		bottom: 30px;
		margin-left: 0;
	}
}

/* ------------------------------------------------------------
 * header */
.header {}
.header__inner {
	width: 980px;
	margin: 0 auto;
	padding: 11px 0 10px;
}
/* header__logo */
.header__logo {
	float: left;
	width: 296px;
}
.header__logo > img,
.header__logo > a > img {
	width: 100%;
	height: auto;
}
/* header__utility */
.header__utility {
	float: right;
	margin: 17px 0 21px;
}
.header__utility > li {
	float: left;
	font-size: 11px;
	line-height: 21px;
}
.header__utility > li > a {
	display: inline-block;
	margin-left: 32px;
	color: #000000;
	text-decoration: none;
}
.header__utility > li > a:hover {
	color: #999999;
	text-decoration: underline;
}
.header__utility > .is-sitemap a {
	padding-left: 30px;
	background: url(../img/icn_sitemap_01.png) no-repeat 0 0;
}
.header__utility > .is-privacy a {
	padding-left: 28px;
	background: url(../img/icn_privacy_01.png) no-repeat 0 0;
}
/* header__nav */
.header__nav {
	position: relative;
	border-top: 1px solid #dcdcdc;
	background: #f4f4f4 url(../img/brd_solid_gray.png) repeat-x 0 100%;
	background-size: 1px;
}
.ie8 .header__nav {
	background-image: url(../img/brd_solid_gray_ie.png);
}
.header__nav__list {
	overflow: hidden;
	width: 980px;
	margin: -1px auto 0;
}
.header__nav__list > li {
	box-sizing: border-box;
	float: left;
	width: 246px;
	margin-left: -1px;
	border: 1px solid #dcdcdc;
	text-align: center;
	font-size: 15px;
}
.header__nav__list > li:first-child {
	width: 245px;
	margin-left: 0;
}
.header__nav__list > li > a {
	display: block;
	height: 59px;
	background-color: #f4f4f4;
	color: #000;
	line-height: 59px;
}
.header__nav__list > li > a:hover {
	background-color: #f9f9f9;
	color: #808080;
	text-decoration: none;
}
.header__nav__list > li.is-current {
	border-color: #004ea2;
}
.header__nav__list > li.is-current > a {
	position: relative;
	background-color: #004ea2;
	color: #fff;
	font-weight: bold;
}
.header__nav__menu--childe {
	display: none;
}
.header__nav__menu--childe.is-current {
	display: block;
	width: 100%;
	background-color: #004ea2;
}
.header__nav__list--childe {
	width: 980px;
	margin: 0 auto;
}
.header__nav__list--childe > li {
	position: relative;
	float: left;
	margin: 12px 0;
	border-left: 1px solid #3371b5;
	text-align: left;
	font-size: 13px;
}
.header__nav__list--childe > li > a {
	display: block;
	height: 16px;
	padding: 0 34px;
	background: url(../img/arw_gray_01.png) no-repeat 20px 50%;
	background-size: 7px 11px;
	color: #fff;
	line-height: 16px;
}
.ie8 .header__nav__list--childe > li > a {
	background-image: url(../img/arw_gray_01_ie.png);
}

.is-user .header__nav__list--childe > li > a {
	padding-right: 24px;
	padding-left: 29px;
	background-position: 15px 50%;
}
.header__nav__list--childe > li > a:hover {
	opacity: 0.5;
	text-decoration: none;
}
.header__nav__list--childe > li.is-current > a {
	opacity: 0.5;
}
.header__nav__list--childe > li.is-current:after {
	content: "";
	position: absolute;
	bottom: -22px;
	left: 50%;
	display: block;
	width: 24px;
	height: 10px;
	background: url(../img/arw_blue_01.png) no-repeat 0 0;
	margin-left: -12px;
}
@media screen and (max-width: 767px) {
	.header {
		padding: 0;
	}
	.header__inner {
		position: relative;
		width: auto;
		margin: 0;
		padding: 9px 20px 8px;
	}
	.header__logo {
		float: none;
		width: 211px;
	}
	.header__utility {
		display: none;
	}
	/* header__nav */
	.header__nav {
		border: none;
		background-image: none;
	}
	.header__nav__list {
		box-sizing: border-box;
		display: table;
		border-collapse: collapse;
		width: 100%;
		margin: 0;
	}
	.header__nav__list > li {
		float: none;
		display: table-cell;
		width: 33.33%;
		margin: 0;
		border-top: none;
		border-right: 1px solid #dcdcdc;
		border-bottom: none;
		border-left: 1px solid #dcdcdc;
		background: url(../img/brd_solid_gray.png) repeat-x 0 0;
		background-size: 1px;
		font-size: 12px;
	}
	.header__nav__list > li:first-child {
		display: none;
		margin: 0;
	}
	.header__nav__list > li > a {
		display: block;
		height: auto;
		padding: 10px;
		background: url(../img/brd_solid_gray.png) repeat-x 0 100%;
		background-size: 1px;
		line-height: 1.5;
	}
	.header__nav__list > li > a:hover {
		background-color: inherit;
		color: #fff;
	}
	.header__nav__list > li.is-current {
		border-color: #999;
		background-image: none;
	}
	.header__nav__list > li.is-current > a {
		background-color: #999;
		background-image: none;
	}
	.header__nav__menu--childe.is-current {
		display: none;
		width: 100%;
		background-color: #999;
	}
	.header__nav__list--childe {
		width: 100%;
		margin: 0;
		padding: 6px 0;
	}
	.header__nav__list--childe > li {
		width: 33.33%;
		margin: 0;
		border-left: none;
		font-size: 10px;
	}
	.header__nav__list--childe > li > a {
		height: auto;
		padding: 6px 20px;
		line-height: 1.5;
		background-position: 10px 0.8em;
	}
	.header__nav__list--childe > li > a:hover {
		opacity: 1;
	}
	.header__nav__list--childe > li.is-current:after {
		display: none;
	}
	.header__nav__list--childe > li.is-current > a:hover {
		opacity: 0.5;
	}
}

/* ------------------------------------------------------------
 * contents */
.contents {}
.contents__inner {
	width: 980px;
	margin: 0 auto 80px;
	padding-top: 10px;
}

/* breadcrumb */
.breadcrumb {
	width: 980px;
	margin: 0 auto;
}
.breadcrumb__inner {
	padding: 20px 0;
}
.breadcrumb__inner > li {
	float: left;
	font-size: 11px;
}
.breadcrumb__inner > li:before {
	content: ">";
	margin: 0 5px;
}
.breadcrumb__inner > li:first-child:before {
	display: none;
}

/* mv */
.mv {
	width: 100%;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
	background-color: #f4f4f4;
}
.mv__inner {
	position: relative;
	width: 978px;
	margin: 0 auto;
	border-right: 1px solid #e2e2e2;
	border-left: 1px solid #e2e2e2;
}
.mv__title {
	position: absolute;
	top: 50%;
	left: -1px;
	display: inline-block;
	height: 40px;
	margin-top: -20px;
	padding: 0 20px;
	background-color: #004ea2;
	color: #fff;
	font-size: 16px;
	line-height: 40px;
	font-weight: bold;
}
.mv__img {
	overflow: hidden;
	width: 978px;
	height: 198px;
}
.mv__img.is-large {
	height: 298px;
}
.mv__img > img {
	display: block;
	margin-top: -50px;
}
.mv__img.is-large > img,
.mv__img.is-small > img {
	margin-top: 0;
}
@media screen and (max-width: 767px) {
	.contents__inner {
		width: 100%;
		margin: 0 0 50px;
		padding-top: 0;
	}
	/* breadcrumb */
	.breadcrumb {
		width: 100%;
		margin: 0;
	}
	.breadcrumb__inner {
		padding: 10px 20px;
	}
	/* mv */
	.mv {
		border-top: none;
	}
	.mv__inner {
		box-sizing: border-box;
		width: 100%;
		margin: 0;
		border-right: none;
		border-left: none;
	}
	.mv__title {
		position: static;
		display: block;
		height: auto;
		margin-top: 0;
		padding: 8px 20px;
		background-color: #004ea2;
		font-size: 15px;
		line-height: 1.5;
	}
	.mv__img,
	.mv__img.is-large {
		overflow: hidden;
		width: 100%;
		height: auto;
	}
	.mv__img > img {
		margin-top: 0;
		width: 100%;
		height: auto;
	}
}
/* ------------------------------------------------------------
 * footer */
.footer {
	width: 100%;
	background-color: #065bb8;
}
.footer__inner {
	width: 980px;
	margin: 0 auto;
	padding: 40px 0;
}
.footer__bottom {
	background-color: #065bb8;
}
.footer__bottom__inner {
	width: 980px;
	margin: 0 auto;
	padding: 27px 0;
}
.footer__unit {
	float: left;
	width: 312px;
	margin-left: 22px;
}
.footer__unit:first-child {
	margin-left: 0;
}
/* footer__nav */
.footer__nav {}
.footer__nav__list {}
.footer__nav__list > li {
	padding: 10px 0;
	border-bottom: 1px solid #6e95bf;
	font-size: 16px;
	font-weight: bold;
}
.footer__nav__list a {
	display: block;
	margin: 2px 0;
	padding: 5px 0 5px 15px;
	color: #ffffff;
	background: url(../img/arw_gray_01.png) no-repeat 0 0.6em;
	background-size: 7px 11px;
}
.ie8 .footer__nav__list a {
	background-image: url(../img/arw_gray_01_ie.png);
}
.footer__nav__list > .is-sitemap,
.footer__nav__list > .is-privacy {
	font-size: 13px;
	font-weight: normal;
}
.footer__nav__list > .is-sitemap {
	border-bottom: none;
	padding-bottom: 0;
}
.footer__nav__list > .is-privacy {
	padding-top: 0;
}
.footer__nav__list--childe {}
.footer__nav__list--childe > li {
	margin-left: 15px;
	font-size: 13px;
	font-weight: normal;
}
/* footer__bnr */
.footer__bnr {
	float: left;
}
.footer__bnr > li {
	float: left;
	margin-right: 20px;
}
.footer__bnr > .is-jqa {
	width: 60px;
}
.footer__bnr > .is-jrc {
	width: 142px;
}
.footer__bnr > li img {
	width: 100%;
	height: auto;
}
/* footer__copyright */
.footer__copyright {
	float: right;
	display: block;
	padding: 9px 100px 9px 0;
	background: url(../img/logo_02.png) no-repeat 100% 50%;
	color: #ffffff;
	font-size: 11px;
	line-height: 57px;
}

@media screen and (max-width: 767px) {
	.footer__inner {
		width: auto;
		margin: 0 20px;
		padding: 20px 0 40px;
	}
	.footer__bottom__inner {
		width: auto;
		padding: 27px 20px 20px;
	}
	.footer__unit {
		float: none;
		width: auto;
		margin-left: 0;
	}
	/* footer__bnr */
	.footer__bnr {
		overflow: hidden;
		float: none;
	}
	.footer__bnr > li {
		margin-right: 18px;
	}
	.footer__bnr > .is-jqa {
		width: 65px;
	}
	.footer__bnr > .is-jrc {
		width: 142px;
		margin-top: 2px;
	}
	/* footer__copyright */
	.footer__copyright {
		float: none;
		margin-top: 25px;
		padding: 0;
		background: none;
		line-height: 1.5;
	}
}
/* ------------------------------------------------------------
 * 04 Common Style
 * ------------------------------------------------------------ */
/* ------------------------------------------------------------
 * Column */
/* clm2 */
.clm2 > .clm {
	width: 470px;
}
.clm2 > .clm.is-left {
	float: left;
}
.clm2 > .clm.is-right {
	float: right;
}
@media screen and (max-width: 767px) {
	.clm2 > .clm {
		width: 100%;
	}
	.clm2 > .clm.is-left,
	.clm2 > .clm.is-right {
		float: none;
	}
}
/* clm2--img */
.clm2--img > .clm.is-left {
	float: left;
	width: 312px;
}
.clm2--img > .clm.is-left img {
	width: 100%;
	height: auto;
}
.clm2--img > .clm.is-right {
	float: right;
	width: 646px;
}
.clm2--img.is-rimg > .clm.is-left {
	float: left;
	width: 646px;
}
.clm2--img.is-rimg > .clm.is-left img {
	width: inherit;
}
.clm2--img.is-rimg > .clm.is-right {
	float: right;
	width: 312px;
}
.clm2--img.is-rimg > .clm.is-right img {
	width: 100%;
	height: auto;
}
.clm2--img > h2 + .clm.is-left,
.clm2--img > h2 + .clm.is-left + .clm.is-right {
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	.clm2--img > .clm.is-left,
	.clm2--img > .clm.is-right,
	.clm2--img.is-rimg > .clm.is-left,
	.clm2--img.is-rimg > .clm.is-right {
		float: none;
		width: 100%;
	}
	.clm2--img > .clm.is-right {
		margin-top: 20px;
	}
}
/* clm3 */
.clm3 {
	margin: -20px 0 0 -22px;
}
.ttl--01 + .clm3 {
	margin-top: 0;
}
.clm3 > .clm {
	box-sizing: border-box;
	width: 312px;
	float: left;
	margin: 20px 0 0 22px;
}
@media screen and (max-width: 767px) {
	.clm3 {
		margin: 0;
	}
	.clm3 > .clm {
		float: none;
		width: 100%;
		margin-left: 0;
	}
	.clm3 > .clm:first-child {
		margin-top: 0;
	}
	.ttl--01 + .clm3 > .clm:first-child {
		margin-top: 20px;
	}
}

/* ------------------------------------------------------------
 * Section */
.section {
	margin-top: 35px;
	font-size: 13px;
}
@media screen and (max-width: 767px) {
	.section {
		margin-right: 20px;
		margin-left: 20px;
	}
	.section .section {
		margin-right: 0;
		margin-left: 0;
	}
	.contents__inner .section:first-child {
		margin-top: 20px;
	}
}

/* ------------------------------------------------------------
 * Title */
/* ttl--01 */
.ttl--01 {
	border-top: 2px solid #004ea2;
	background-color: #f4f4f4;
}
.ttl--01 > span {
	display: block;
	padding: 8px 19px;
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	border-left: 1px solid #dcdcdc;
	font-size: 15px;
	font-weight: bold;
}
.ttl--01 > span.is-search {
	padding-left: 49px;
	background: url(../img/icn_search_01.png) no-repeat 18px 50%;
	background-size: 20px;
}
.ie8 .ttl--01 > span.is-search {
	background-image: url(../img/icn_search_01_ie.png);
}
.ttl--01 span.is-icon {
	overflow: hidden;
	padding: 4px 19px 4px 4px;
}
.ttl--01 span.is-icon .ttl__icn {
	display: block;
	float: left;
	width: 3em;
	padding: 3px 0;
	border-radius: 4px;
	background-color: #004ea2;
	text-align: center;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
}
.ttl--01 span.is-icon .ttl__txt {
	display: block;
	margin-left: 3.3em;
	padding: 3px 0;
	line-height: 1.5;
}

/* ------------------------------------------------------------
 * Text */
/* txt--01 */
.txt--01 {
	margin-top: 15px;
}
/* notes--01 */
.notes--01 > li {
	margin-top: 20px;
	color: #999;
}
/* notes--02 */
.notes--02 {
	margin-top: 15px;
	color: #999;
	font-size: 11px;
}
.notes--02 > li {
	margin-left: 1.5em;
	text-indent: -1.5em;
}

/* ------------------------------------------------------------
 * List */
/* numlist--01 */
.numlist--01 {
	list-style: inside decimal;
	margin-top: 20px;
	padding-left: 3px;
}
.numlist--01 > li {
	margin: 10px 0 0 1em;
	text-indent: -1em;
	color: #004ea2;
	font-weight: bold;
}
.numlist--01 > li > span {
	color: #000;
	font-weight: normal;
}
/* indentlist--01 */
.indentlist--01 {
	margin-top: 12px;
}
.indentlist--01 > dt {
	clear: both;
	float: left;
	width: 8em;
	font-weight: bold;
}
.indentlist--01 > dd {
	margin-left: 6em;
}
@media screen and (max-width: 767px) {
	.indentlist--01 > dt {
		float: none;
		width: auto;
		margin-top: 6px;
	}
	.indentlist--01 > dd {
		margin-left: 0;
	}
}
/* topics__list */
.topics__list {
	padding-top: 5px;
	font-size: 13px;
}
.topics__list > li {
	overflow: hidden;
	padding-top: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #dcdcdc;
}
.topics__list > li:first-child {
	padding-top: 0;
}
.topics__list__date {
	clear: both;
	float: left;
	display: block;
	width: 8em;
}
.topics__list__ttl {
	display: block;
	margin-left: 9em;
	font-weight: bold;
}
.topics__list__txt {
	display: block;
	margin-left: 9em;
}
@media screen and (max-width: 767px) {
	.topics__list > li {
		overflow: hidden;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.topics__list__date {
		clear: none;
		float: none;
		width: auto;
	}
	.topics__list__ttl {
		margin: 10px 0 0;
	}
	.topics__list__txt {
		margin-left: 0;
	}
}

/* ------------------------------------------------------------
 * Link */
.pdflink {
	display: block;
	padding: 5px 0 5px 38px;
	background: url(../img/icn_pdf_01.png) no-repeat 0 0;
	background-size: 28px;
}
.ie8 .pdflink {
	background-image: url(../img/icn_pdf_01_ie.png);
}
.sitelink {
	display: block;
	padding: 3px 0 3px 38px;
	background: url(../img/icn_website_01.png) no-repeat 0 0;
	background-size: 25px;
}
.ie8 .sitelink {
	background-image: url(../img/icn_website_01_ie.png);
}
/* linkbox */
.linkbox {
	margin-top: 15px;
	border-top: 1px solid #dcdcdc;
}
.linkbox > p {
	margin-top: 12px;
}
.linkbox a {
	text-decoration: underline;
}
/* linkbox__search */
.linkbox__search {
	margin-top: 20px;
	padding: 19px;
	border: 1px solid #dcdcdc;
	background-color: #f6f6f6;
}
.linkbox__search__ttl {
	padding-left: 30px;
	background: url(../img/icn_search_01.png) no-repeat 0 50%;
	background-size: 20px;
	font-size: 15px;
	font-weight: bold;
}
.ie8 .linkbox__search__ttl {
	background-image: url(../img/icn_search_01_ie.png);
}
/* indexlink */
.indexlink > li {
	padding: 9px 9px 15px;
	border: 1px solid #dcdcdc;
	background-color: #f4f4f4;
}
.indexlink > li > a {
	display: block;
}
.indexlink > li > a:hover {
	opacity: 0.8;
}
.indexlink__img {
	position: relative;
	border: 1px solid #dcdcdc;
	background-color: #ffffff;
}
.indexlink__img > img {
	display: block;
	width: 100%;
	height: auto;
}
.indexlink__img.is-logo:after {
	content: '';
	position: absolute;
	top: 15px;
	left: 15px;
	display: block;
	width: 53px;
	height: 41px;
	background: url(../img/logo_03.png) no-repeat 0 0;
	background-size: 53px 41px;
}
.indexlink__img.is-fiximage {
	overflow: hidden;
	width: 290px;
	height: 198px;
}
.indexlink__img.is-fiximage > span {
	display: table-cell;
	width: 290px;
	height: 198px;
	text-align: center;
	vertical-align: middle;
}
.indexlink__ttl {
	display: block;
	margin-top: 12px;
	font-size: 14px;
	font-weight: bold;
}
.indexlink a > .indexlink__ttl {
	padding-bottom: 0;
	padding-left: 14px;
	border-bottom: none;
	background: url(../img/arw_blue_02.png) no-repeat 0 0.25em;
	background-size: 7px 10px;
}
.ie8 .indexlink a > .indexlink__ttl {
	background-image: url(../img/arw_blue_02_ie.png);
}
.indexlink__txt {
	margin-top: 8px;
	color: #666;
}
.indexlink__menu {
	margin-top: 10px;
	border-top: 1px solid #dcdcdc;
}
.indexlink__menu > li {
	padding-top: 10px;
}
.indexlink__menu > li:first-child {
	border-top: 1px solid #fff;
}
.indexlink__menu > li a {
	text-decoration: underline;
}
.indexlink__link {
	margin-top: 10px;
	border-top: 1px solid #dcdcdc;
}
.indexlink__link > a {
	display: block;
	margin-bottom: -12px;
	padding: 12px 0 12px 14px;
	border-top: 1px solid #fff;
	background: url(../img/arw_gray_01.png) no-repeat 0 50%;
	background-size: 7px 11px;
	text-decoration: underline;
}
@media screen and (max-width: 767px) {
	.indexlink > li > a:hover {
		opacity: 1;
	}
	.indexlink__img.is-fiximage {
		width: 100%;
		height: auto;
	}
}
/* wordlink--01 */
.wordlink--01 {
	margin-top: 10px;
	margin-left: 1px;
}
.wordlink--01 > li {
	float: left;
	box-sizing: border-box;
	margin-top: 10px;
	margin-left: -1px;
	border-left: 1px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
	font-size: 15px;
	font-weight: bold;
}
.wordlink--01 > li > a {
	display: block;
	padding: 0 20px;
	text-decoration: underline;
}
.wordlink--01 > li > span {
	display: block;
	padding: 0 20px;
}
@media screen and (max-width: 767px) {
	.wordlink--01.is-col2 > li {
		width: 50%;
		text-align: center;
	}
	.wordlink--01.is-col5 > li {
		width: 20%;
		text-align: center;
	}
	.wordlink--01 > li > a,
	.wordlink--01 > li > span {
		padding: 0;
		text-align: center;
	}
}
/* iconlink--01 */
.iconlink--01 {
	margin: -10px 0 0 -20px;
}
.iconlink--01 > li {
	overflow: hidden;
	float: left;
	width: 480px;
	margin: 10px 0 0 20px;
}
.iconlink--01 > li:nth-child(odd) {
	clear: both;
}
.iconlink--01 .iconlink__icn {
	display: block;
	float: left;
	width: 3em;
	padding: 3px 0;
	border-radius: 4px;
	background-color: #004ea2;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
.iconlink--01 .iconlink__txt {
	display: block;
	margin-left: 4em;
	padding: 3px 0;
}
@media screen and (max-width: 767px) {
	.iconlink--01 {
		margin-left: 0;
	}
	.iconlink--01 > li {
		float: none;
		width: 100%;
		margin-left: 0;
	}
}

/* ------------------------------------------------------------
 * Button */
/* btn--01 */
.btn--01 {
	-webkit-appearance: none;
	display: block;
	box-sizing: border-box;
	padding: 10px 30px;
	border: 2px solid #dcdcdc;
	border-radius: 4px;
	background-color: #f4f4f4;
	text-align: center;
	color: #000;
	cursor: pointer;
}
.btn--01:hover {
	border-color: #ededed;
	background-color: #f9f9f9;
	color: #666;
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	.btn--01 {
		margin: 0 20px;
		padding: 10px 10px;
	}
}
/* btn--02 */
.btn--02 {
	-webkit-appearance: none;
	display: block;
	box-sizing: border-box;
	padding: 15px 110px;
	border: none;
	border-radius: 4px;
	background: #004ea2 no-repeat 20px 50%;
	background-size: 7px 11px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}
.btn--02:hover {
	background-color: #769dc7;
	color: #fff;
	text-decoration: none;
}
@media screen and (max-width: 767px) {
	.btn--02 {
		width: 100%;
		padding: 15px;
	}
}
/* btnlist */
.btnlist {
	overflow: hidden;
	position: relative;
	margin-top: 40px;
}
.btnlist__menu {
	position: relative;
	left: 50%;
	float: left;
}
.btnlist__menu > li {
	position: relative;
	left: -50%;
	float: right;
	margin: 0 10px;
}
@media screen and (max-width: 767px) {
	.btnlist {
		margin-top: 0;
	}
	.btnlist__menu,
	.btnlist__menu > li {
		position: static;
		float: none;
	}
	.btnlist__menu > li {
		margin-top: 20px;
	}
}

/* ------------------------------------------------------------
 * Table */
.tbl--01 {
	width: 100%;
	margin-top: 20px;
}
.tbl--01 th,
.tbl--01 td {
	padding: 14px 19px;
	border: 1px solid #dcdcdc;
	text-align: left;
	vertical-align: top;
}
.tbl--01 th {
	/*background-color: #dbe8f9;*/
	font-weight: bold;
}
.tbl--01 td {
	background-color: #ffffff;
}
.tbl--01 .thsub {
	background-color: #edf3fc;
	font-weight: bold;
}
.tbl--01 .even th {
	/*background-color: #cbdcf2;*/
	background-color: #f6f6f6;
}
.tbl--01 .even td {
	background-color: #f6f6f6;
}
.tbl--01 .even .thsub {
	background-color: #e0e9f4;
}
.tbl--01.is-th100 tbody th {
	width: 100px;
}
.tbl--01.is-th120 tbody th {
	width: 130px;
}
.tbl--01.is-th180 tbody th {
	width: 180px;
}
.tbl--01.is-th230 tbody th {
	width: 230px;
}
.tbl--01.is-thsub50 tbody .thsub {
	width: 50px;
	text-align: center;
}
.tbl--01.is-thsub100 tbody .thsub {
	width: 100px;
}
.tbl--01.is-thsub150 tbody .thsub {
	width: 150px;
}
.tbl--01 thead th {
	width: auto;
	padding: 9px 19px;
	background-color: #004ea2;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.tbl--01 {
		border-bottom: 1px solid #dcdcdc;
	}
	.tbl--01 th,
	.tbl--01 td {
		display: block;
		padding: 9px 14px;
		border-bottom: none;
	}
	.tbl--01.is-th100 tbody th,
	.tbl--01.is-th120 tbody th,
	.tbl--01.is-th230 tbody th,
	.tbl--01.is-thsub50 tbody .thsub,
	.tbl--01.is-thsub100 tbody .thsub,
	.tbl--01.is-thsub150 tbody .thsub {
		width: auto;
		text-align: left;
	}
}

/* ------------------------------------------------------------
 * Form */
.input__text--01,
.input__text--02,
.input__text--03,
.textarea--01 {
	box-sizing: border-box;
	padding: 5px;
	border: 1px solid #dcdcdc;
	font-size: 13px;
	line-height: 1.5;
}
.input__text--01 {
	width: 100%;
}
.input__text--02 {
	width: 50%;
}
.input__text--03 {
	width: 4em;
}
.textarea--01 {
	width: 100%;
	height: 12em;
}
.select--01 {
	font-size: 13px;
	line-height: 1.5;
}
.icn__required {
	display: inline-block;
	margin-left: 5px;
	padding: 2px 5px;
	border-radius: 4px;
	background-color: #f00;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.input__text--02 {
		width: 100%;
	}
}

/* ------------------------------------------------------------
 * 05 page Style
 * ------------------------------------------------------------ */
/* ------------------------------------------------------------
 * .is-home </> */
/* header__nav */
.is-home .header__nav {
	display: none;
}
/* contents */
.is-home .contents {
	background-color: #f2f2f2;
}
.is-home .contents__inner {
	padding-top: 0;
	background-color: #ffffff;
}
.is-home .contents__bottom {
	padding: 50px 0;
	background-color: #ffffff;
}
.is-home .contents__bottom__inner {
	width: 980px;
	margin: 0 auto;
}
/* mv */
.is-home .mv {
	overflow: hidden;
	max-width: 1600px;
	height: 400px;
	margin: 0 auto;
	border: none;
}
.is-home .mv__slide {
	position: relative;
	padding-bottom: 16px;
}
.is-home .mv__slide > li {
	position: relative;
	left: 50%;
	margin-left: -800px;
}
.is-home .bx-controls {
	position: relative;
	left: 50%;
	float: left;
	padding: 16px 0;
}
.is-home .bx-pager-item {
	position: relative;
	left: -50%;
	overflow: hidden;
	float: left;
	width: 16px;
	height: 16px;
	padding: 0 7px;
}
.is-home .bx-pager-item a {
	overflow: hidden;
	text-indent: -9999px;
	display: block;
	width: 16px;
	height: 16px;
	background: url(../../img/mv_nav_index_off.png) no-repeat 0 0;
	background-size: 16px;
}
.is-home .bx-pager-item .active {
	background-image: url(../../img/mv_nav_index_current.png);
}
.ie8 .is-home .bx-pager-item a {
	background-image: url(../../img/mv_nav_index_off_ie.png);
}
.ie8 .is-home .bx-pager-item .active {
	background-image: url(../../img/mv_nav_index_current_ie.png);
}
/* indexnav */
.is-home .indexnav__unit {
	float: left;
	width: 286px;
	padding: 0 20px;
	border-left: 1px solid #f2f2f2;
}
.is-home .indexnav__unit:first-child {
	border-left: none;
}
.is-home .indexnav__unit__img {
	margin: 0 -20px 0 -21px;
}
.is-home .indexnav__unit__img img {
	width: 100%;
	height: auto;
}
.is-home .indexnav__unit:first-child .indexnav__unit__img {
	margin-left: -20px;
}
.is-home .indexnav__unit__ttl {
	font-size: 16px;
	font-weight: bold;
}
.is-home .indexnav__unit__ttl a {
	display: block;
	margin-top: 14px;
	padding-left: 33px;
	line-height: 29px;
}
.is-home .is-company .indexnav__unit__ttl a {
	background: url(../img/icn_index_01.png) no-repeat 0 50%;
	background-size: 29px;
}
.is-home .is-job .indexnav__unit__ttl a {
	background: url(../img/icn_index_02.png) no-repeat 0 50%;
	background-size: 29px;
}
.is-home .is-contact .indexnav__unit__ttl a {
	background: url(../img/icn_index_03.png) no-repeat 0 50%;
	background-size: 29px;
}
.ie8 .is-home .is-company .indexnav__unit__ttl a {
	background-image: url(../img/icn_index_01.png);
}
.ie8 .is-home .is-job .indexnav__unit__ttl a {
	background-image: url(../img/icn_index_02.png);
}
.ie8 .is-home .is-contact .indexnav__unit__ttl a {
	background-image: url(../img/icn_index_0.png);
}

.is-home .indexnav__unit__txt {
	margin-top: 14px;
}
.is-home .indexnav__unit__menu {
	margin-top: 14px;
	padding-bottom: 20px;
}
.is-home .indexnav__unit__menu > li {
	font-size: 13px;
}
.is-home .indexnav__unit__menu > li a {
	display: block;
	margin: 2px 0;
	padding: 5px 0 5px 14px;
	background: url(../img/arw_gray_01.png) no-repeat 0 0.6em;
	background-size: 7px 11px;
}
.ie8 .is-home .indexnav__unit__menu > li a {
	background-image: url(../img/arw_gray_01_ie.png);
}
.is-home .is-recruit .indexnav__unit__menu > li {
	float: left;
	width: 50%;
}
/* topics */
.is-home .topics {
	float: left;
	width: 646px;
}
.is-home .topics__ttl {
	float: left;
	padding-left: 33px;
	background: url(../img/icn_index_04.png) no-repeat 0 50%;
	background-size: 29px;
	color: #004ea2;
	font-size: 16px;
	line-height: 29px;
	font-weight: bold;
}
.ie8 .is-home .topics__ttl {
	background-image: url(../img/icn_index_04_ie.png);
}
.is-home .topics__link {
	float: left;
	margin-left: 20px;
	font-size: 11px;
	line-height: 29px;
}
.is-home .topics__link a {
	padding-left: 12px;
	background: url(../img/arw_gray_01.png) no-repeat 0 50%;
	background-size: 7px 11px;
	color: #666666;
}
.ie8 .is-home .topics__link a {
	background-image: url(../img/arw_gray_01_ie.png);
}
.is-home .topics__list__ttl {
	font-weight: normal;
}
.is-home .topics__list > li {
	padding-top: 12px;
	padding-bottom: 0;
	border-bottom: none;
}
/* bnr */
.is-home .bnr {
	float: right;
	width: 312px;
}
.is-home .bnr__img {
	width: 312px;
}
.is-home .bnr__img img {
	width: 100%;
	height: auto;
}
.is-home .bnr__txt {
	margin-top: 5px;
	font-size: 11px;
}
@media screen and (max-width: 767px) {
	/* contents */
	.is-home .contents {
		background-color: #f2f2f2;
	}
	.is-home .contents__inner {
		width: auto;
		margin: 0 20px 20px;
		background-color: #ffffff;
	}
	.is-home .contents__bottom {
		padding: 20px 0 30px;
	}
	.is-home .contents__bottom__inner {
		width: auto;
		margin: 0 20px;
	}
	/* mv */
	.is-home .mv {
		position: relative;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}
	.is-home .mv__slide > li {
		width: 100%;
		left: 0;
		margin-left: 0;
	}
	.is-home .mv__slide > li > img {
		width: 100%;
		height: auto;
	}
	.is-home .bx-controls {
		padding: 10px 0;
	}
	.is-home .bx-pager-item {
		width: 12px;
		height: 12px;
		padding: 0 5px;
	}
	.is-home .bx-pager-item a {
		width: 12px;
		height: 12px;
		background-size: 12px;
	}
	/* indexnav */
	.is-home .indexnav__unit {
		float: none;
		width: auto;
		border-right: none;
	}
	.is-home .indexnav__unit__img {
		margin-right: -20px;
	}
	.is-home .indexnav__unit__img img {
		width: 100%;
		height: auto;
	}
	.is-home .indexnav__unit__ttl a {
		display: block;
	}
	/* topics */
	.is-home .topics {
		float: none;
		width: auto;
	}
	/* bnr */
	.is-home .bnr {
		float: none;
		width: auto;
		margin-top: 35px;
	}
	.is-home .bnr__img {
		width: auto;
	}
}
/* ------------------------------------------------------------
 
/* ------------------------------------------------------------
 * 06 Utility
 * ------------------------------------------------------------ */
/* ------------------------------------------------------------
 * Text */
.bold {
	font-weight: bold;
}

/* ------------------------------------------------------------
 * img hover */
.rollover:hover {
	opacity: 0.5;
}
@media screen and (max-width: 767px) {
	.rollover:hover {
		opacity: 1;
	}
}

/* ------------------------------------------------------------
 * PC / SP visible */
.pc_visible {
	display: inherit;
}
.sp_visible {
	display: none;
}
@media screen and (max-width: 767px) {
	.pc_visible {
		display: none;
	}
	.sp_visible {
		display: inherit;
	}
}

/* ------------------------------------------------------------
 * max_image */
@media screen and (max-width: 767px) {
	.max_image {
		width: 100%;
		height: auto;
	}
}

/* ------------------------------------------------------------
 * Float and Clear */
.fl {
	float: left;
}
.fr {
	float: right;
}
.cb {
	clear:both;
}
/* ClearFix */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}
.cf {
	*zoom: 1;
}

/* ------------------------------------------------------------
 * Margin and Padding Set */
.mb_0{margin-bottom: 0 !important;}
.mb_5{margin-bottom: 5px !important;}
.mb_10{margin-bottom: 10px !important;}
.mb_15{margin-bottom: 15px !important;}
.mb_16{margin-bottom: 16px !important;}
.mb_20{margin-bottom: 20px !important;}
.mb_21{margin-bottom: 21px !important;}
.mb_22{margin-bottom: 22px !important;}
.mb_25{margin-bottom: 25px !important;}
.mb_30{margin-bottom: 30px !important;}
.mb_35{margin-bottom: 35px !important;}
.mb_40{margin-bottom: 40px !important;}
.mb_45{margin-bottom: 45px !important;}
.mb_50{margin-bottom: 50px !important;}

.mt_0{margin-top: 0 !important;}
.mt_5{margin-top: 5px !important;}
.mt_10{margin-top: 10px !important;}
.mt_15{margin-top: 15px !important;}
.mt_20{margin-top: 20px !important;}
.mt_25{margin-top: 25px !important;}
.mt_30{margin-top: 30px !important;}
.mt_35{margin-top: 35px !important;}
.mt_40{margin-top: 40px !important;}
.mt_50{margin-top: 50px !important;}
.mt_60{margin-top: 60px !important;}

.ml_0{margin-left: 0 !important;}
.ml_5{margin-left: 5px !important;}
.ml_10{margin-left: 10px !important;}
.ml_15{margin-left: 15px !important;}
.ml_20{margin-left: 20px !important;}
.ml_25{margin-left: 25px !important;}
.ml_30{margin-left: 30px !important;}
.ml_35{margin-left: 35px !important;}
.ml_40{margin-left: 40px !important;}
.ml_45{margin-left: 45px !important;}
.ml_50{margin-left: 50px !important;}

.mr_0{margin-right: 0 !important;}
.mr_5{margin-right: 5px !important;}
.mr_10{margin-right: 10px !important;}
.mr_15{margin-right: 15px !important;}
.mr_20{margin-right: 20px !important;}
.mr_25{margin-right: 25px !important;}
.mr_30{margin-right: 30px !important;}
.mr_35{margin-right: 35px !important;}
.mr_40{margin-right: 40px !important;}
.mr_50{margin-right: 50px !important;}

.pb_0{padding-bottom: 0 !important;}
.pb_1{padding-bottom: 1px !important;}
.pb_5{padding-bottom: 5px !important;}
.pb_10{padding-bottom: 10px !important;}
.pb_15{padding-bottom: 15px !important;}
.pb_20{padding-bottom: 20px !important;}
.pb_25{padding-bottom: 25px !important;}
.pb_29{padding-bottom: 29px !important;}
.pb_30{padding-bottom: 30px !important;}
.pb_35{padding-bottom: 35px !important;}
.pb_40{padding-bottom: 40px !important;}
.pb_45{padding-bottom: 45px !important;}
.pb_50{padding-bottom: 50px !important;}

.pt_0{padding-top: 0 !important;}
.pt_5{padding-top: 5px !important;}
.pt_10{padding-top: 10px !important;}
.pt_15{padding-top: 15px !important;}
.pt_20{padding-top: 20px !important;}
.pt_25{padding-top: 25px !important;}
.pt_30{padding-top: 30px !important;}
.pt_35{padding-top: 35px !important;}
.pt_40{padding-top: 40px !important;}

.pl_0{padding-left: 0 !important;}
.pl_5{padding-left: 5px !important;}
.pl_10{padding-left: 10px !important;}
.pl_15{padding-left: 15px !important;}
.pl_20{padding-left: 20px !important;}
.pl_25{padding-left: 25px !important;}
.pl_30{padding-left: 30px !important;}
.pl_35{padding-left: 35px !important;}
.pl_40{padding-left: 40px !important;}

.pr_0{padding-right: 0 !important;}
.pr_5{padding-right: 5px !important;}
.pr_10{padding-right: 10px !important;}
.pr_15{padding-right: 15px !important;}
.pr_20{padding-right: 20px !important;}
.pr_25{padding-right: 25px !important;}
.pr_30{padding-right: 30px !important;}
.pr_35{padding-right: 35px !important;}
.pr_40{padding-right: 40px !important;}
.pr_50{padding-right: 50px !important;}


/* End */