﻿@charset "utf-8";
/**********************************************

	basic_style_forPC.css

**********************************************/
/* 文字折り返し設定 */
* {
	word-wrap: break-word !important;
}
::selection {
	background: #e0f6fd;
}
::-moz-selection {
	background: #e0f6fd;
}

/*--------------------------------------------

	デフォルト設定

---------------------------------------------*/
/* html */
html {
	width: 100%;
	height: 100%;
}
/* body */
body {
	position: relative;
	width: 100%;
	font-family: "黑体";
	font-size: 14px;
	color: #000000;
	-webkit-text-size-adjust: 100% !important;
	overflow-x: hidden;
}
input {
	font-family: "黑体";
}
/* form関連 */
input[type="text"],input[type="password"],textarea,select {
	padding-left: 10px;
	padding-right: 10px;
	font-family: "黑体";
	font-size: 14px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
input[type="submit"]:hover,
input[type="reset"]:hover {
	opacity: 0.7;
}

input::-webkit-input-placeholder {
	color: #bfbfbf;
	font-weight: normal;
}
input:-ms-input-placeholder {
	color: #bfbfbf;
	font-weight: normal;
}
input::-moz-placeholder {
	color: #bfbfbf;
	font-weight: normal;
}
p,
table tr td {
	line-height: 1.8em;
	position: relative;
}
p,dl,h1,h2,h3,h4 {
	margin: 0;
}
h1,h2,h3,h4 {
	/*line-height: 1.75em;*/
}
small {
	font-size: 12px;
}
/* imgタグレスポンシブ対応 */
img {
	max-width: 100%;
	height: auto;
	width/***/ :auto;
}
/* .device02 spレイアウトは非表示 */
.device02 {
	display: none !important;
}
/* リンク */
a {
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	color: #333333;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 0.7;
}
a:hover img {
	text-decoration: none;
}
a img {
	transition: all 0.25s;
}
a:hover img {
	transition: all 0.25s;
}
img.scale {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
img.scale:hover {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
/* フォントOpenSans */
/*opensans*/
.ff-sans {
	font-family: "黑体";
}
/*明朝体*/
.ff-min {
	font-family: "黑体";
}

/*--------------------------------------------

	レイアウト

---------------------------------------------*/
/* 内 960px固定値 */
.inner-frame {
	width: 960px;
	margin: 0 auto;
}
/* pcのみ */
.inner-frame-pc {
	width: 960px;
	margin: 0 auto;
}
/*--------------------------------------------

	基本構成パーツ

---------------------------------------------*/
/*--------------------------------------------
	ヘッダー
---------------------------------------------*/
#header_all {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 200;
	left: 0px;
}
#header {
	height: 80px;
	background: #ffffff;
	border-bottom: 1px solid #d9d9d9;
}
/* ロゴ配置 */
#header > .inner-frame {
	position: relative;
	height: 80px;
}
#header > .inner-frame > h1 {
	position: absolute;
	width: 292px;
	height: 55px;
	top: 15px;
	left: 0;
}
/*#header > .inner-frame > h1 > a::after,
#header > .inner-frame > h1 > a:hover::after {
	display: none;
}*/
/* メニューナビゲーション */
ul#menunavigation {
	position: absolute;
	width: 624px;
	height: 80px;
	left: 400px;
}
ul#menunavigation > li {
	display: inline-block;
	height: 61px;
	line-height: 80px;
	margin-left: 25px;
}
ul#menunavigation > li:first-child {
	margin-left: 0;
}
/* サービスとＩＲのみアイコン付与 */
ul#menunavigation > li.menu-service > span:after,
ul#menunavigation > li.menu-ir > span:after {
	content: url("../img/icon_menu_after.png");
}
/* サービスとＩＲのみアイコン付与 active*/
ul#menunavigation > li.menu-service.active > span:after,
ul#menunavigation > li.menu-ir.active > span:after {
	content: url("../img/icon_menu_after_active.png");
}
ul#menunavigation > li.menu-service > span,
ul#menunavigation > li.menu-ir > span {
	cursor: pointer;
}
/* 共通フォントサイズ */
ul#menunavigation > li > a,
ul#menunavigation > li > span,
ul#menunavigation > li.active > a,
ul#menunavigation > li.active > span,
ul#menunavigation > li.stay > a,
ul#menunavigation > li.stay > span {
	font-size: 17px;
}
ul#menunavigation > li.active > a,
ul#menunavigation > li.stay > a {
	color: #00b3ec;
}
/* アクティブ時にアンダーライン */
ul#menunavigation > li.active,
ul#menunavigation > li.stay {
	border-bottom: 4px solid #00b3ec;
	border-radius: 1px;
	font-weight: bold;
	color: #333333;
	position: relative;
	height: 61px;
}
ul#menunavigation > li.menu-service.active span,
ul#menunavigation > li.menu-ir.active span {
	font-weight: bold;
	position: relative;
	padding-bottom: 13px;
	color: #00b3ec;
}
ul#menunavigation > li.menu-service.stay span,
ul#menunavigation > li.menu-ir.stay span {
	font-weight: bold;
	position: relative;
	padding-bottom: 13px;
	color: #00b3ec;
}
ul#menunavigation > li:hover {
	border-bottom: 4px solid #00b3ec;
	border-radius: 1px;
	opacity: 1;
	height: 61px;
}
ul#menunavigation > li:hover span,
ul#menunavigation > li:hover a {
	opacity: 0.7;
}
/* アクティブ時のカラー */
ul#menunavigation > li.active a,
ul#menunavigation > li.active:hover a {
	color: #00b3ec;
}
/* ステイ時のカラー */
ul#menunavigation > li.stay a,
ul#menunavigation > li.stay:hover a {
	color: #00b3ec;
}

/*ul#menunavigation > li > a::after,
ul#menunavigation > li > a:hover::after {
	display: none;
}*/
/* 機能ナビゲーション */
ul#menuinfolinks {
	position: absolute;
	right: 0;
	bottom: 28px;
	height: 22px;
	line-height: 22px;
}
ul#menuinfolinks > li {
	display: inline-block;
	margin-left: 20px;
	position: relative;
}
ul#menuinfolinks > li a {
	color: #00b3ec;
	font-size: 15px;
}
ul#menuinfolinks > li:first-child {
	margin-left: 0;
}
ul#menuinfolinks > li a {
	display: block;
}
ul#menuinfolinks > li img {
	cursor: pointer;
}

/*--------------------------------------------
	メガメニュー内コンテンツリンク
---------------------------------------------*/
#menu_service,
#menu_ir,
#window_search {
	position: fixed;
	width: 100%;
	background: #f7f8f8;
	display: none;
	z-index: 99;
}
#menu_service .fw-bold.link-arrow-right,
#menu_ir .fw-bold.link-arrow-right {
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 12px;
	color: #333333;
	font-size: 16px;
}
.fw-bold.link-arrow-right {
	display: block!important;
}
.menu-contents {
	padding-bottom: 30px;
}
/* コンテンツリンクレイアウト（3clm） */
.menu-contents ul.clm3 > li {
	float: left;
	width: 292px;
	margin-left: 40px;
}
/* コンテンツリンクレイアウト（4clm） */
.menu-contents ul.clm4 > li {
	float: left;
	width: 210px;
	margin-left: 40px;
}
.menu-contents ul > li:first-child {
	margin-left: 0;
}
/* リンクリスト */
.menu-contents dl.link-list-menulinks {
	margin-top: 32px;
}
.menu-contents dl.link-list-menulinks dt {
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 12px;
	color: #333333;
	font-size: 16px;
	font-weight: bold;
}
.menu-contents dl.link-list-menulinks dd {
	margin-top: 15px;
}
.menu-contents dl.link-list-menulinks dd > ul.list-megacontents-links > li:nth-child(odd) {
	float: left;
	margin-right: 20px;
}
.menu-contents dl.link-list-menulinks dd > ul.list-megacontents-links > li:nth-child(even){
	float: right;
}
.menu-contents dl.link-list-menulinks dd > ul.list-megacontents-links > li {
	width: 136px;
	margin-bottom: 20px;
	margin-left: 0;
}
.menu-contents dl.link-list-menulinks dd > ul.list-megacontents-links > li p {
	margin-top: 7px;
}
.menu-contents dl.link-list-menulinks.left {
	float: left;
	width: 136px;
	padding-right: 15px;
}
.menu-contents dl.link-list-menulinks.left dt {
	padding-bottom: 30px;
}
.menu-contents dl.link-list-menulinks.right {
	float: left;
	width: 141px;
}
/* サーチエリア */
.searcharea {
	background: #f7f8f8;
	height: 120px;
	line-height: 120px;
}
/* サーチフォーム */
.searchform {
	width: 800px;
	margin: 0 auto;
	position: relative;
	top: 30px;
}
.searcharea input[type="text"] {
	width: 800px;
}
.searcharea .button-search {
	position: absolute;
	top: 5px;
	right: 20px;
}
.button-search input[type="image"] {
	border: none;
}
.cse .gsc-search-button input.gsc-search-button-v2, input.gsc-search-button-v2 {
	width: 21px!important;
	height: 21px!important;
	margin-top: 6px!important;
}
input.gsc-search-button, input.gsc-search-button:hover, input.gsc-search-button:focus {
	border-color: #cccccc!important;
}
.gsst_a {
	padding-top: 8px!important;
}
/*--------------------------------------------
	モーダル
---------------------------------------------*/
/* 背景 */
#modal_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(34,34,34,0.5);
	z-index: 160;
}

/*--------------------------------------------
	サイト内検索
---------------------------------------------*/
#menu_search {
	display: none;
	background: #000000;
	padding: 20px 0;
}
#common_searchform {
	float: right;
	width: 480px;
	height: 40px;
}
#common_searchform input[type="text"] {
	float: left;
	width: 440px;
	height: 40px;
}
/* 検索ボタン */
#common_searchform .button-sitesearch {
	float: right;
	width: 40px;
	height: 40px;
	background: url("../../ja/_error/404.html") no-repeat center center #d01126;
	border: none;
	text-indent: -9999px;
	cursor: pointer;
}


/*--------------------------------------------
	コンテンツ
---------------------------------------------*/
#contents {
	padding-top: 80px;
}
/* 下層 */
#contents.second {
	padding-top: 0;
}

/*--------------------------------------------
	フッター前バナー配置エリア
---------------------------------------------*/
/* 標準 */
.relationlinks.top{
	border-top: 1px solid #c9c9c9;
	padding-top: 70px;
	margin-top: 40px;
}
/* 下層余白パターン2　下層その他リンク */
.relationlinks.second {
	margin-top: 110px;
}
/* 下層余白パターン３ */
.relationlinks.third {
	margin-top: 70px;
}
/* テキストつき画像バナー */
ul.list-half-textbnr li {
	display: inline-block;
	margin-left: 30px;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
}
ul.list-half-textbnr li:first-child {
	margin-left: 0;
}
ul.list-half-textbnr li a {
	display: block;
	color: #00b3ec;
	font-size: 19px;
	height: 90px;
	width: 461px;
	position: relative;
}
ul.list-half-textbnr li img {
	display: block;
}
ul.list-half-textbnr li span {
	position: absolute;
	left: 30px;
	top: 38px;
}
/* 2clmリンクボックス */
ul.listlayout-2clm-roundlinks {
	margin: 40px auto 0;
}
ul.listlayout-2clm-roundlinks > li {
	float: left;
	width: 462px;
}
/* 偶数アイテム */
ul.listlayout-2clm-roundlinks > li:nth-child(even) {
	margin-left: 35px;
}

ul.listlayout-2clm-roundlinks.items > li:first-child {
	margin-left: 0;
}
ul.listlayout-2clm-roundlinks.items > li:nth-child(n+3) {
	margin-top: 35px;
}


/* 3clmリンクボックス */
ul.listlayout-3clm-roundlinks {
	margin: 70px auto 0;
	width: 960px;
}
ul.listlayout-3clm-roundlinks.incontents {
	margin: 30px auto 0;
}
ul.listlayout-3clm-roundlinks > li {
	float: left;
	width: 300px;
	min-height: 380px;
}
/* 奇数アイテム */
ul.listlayout-3clm-roundlinks > li:nth-child(odd) {
	margin-left: 30px;
}
/* 偶数アイテム */
ul.listlayout-3clm-roundlinks > li:nth-child(even) {

}

ul.listlayout-3clm-roundlinks > li > a {
	font-weight: bold;
	font-size: 16px;
	width: 100%;
	float: left;
	min-height: 260px;
	overflow: hidden;
}
ul.listlayout-3clm-roundlinks > li:first-child {
	margin-left: 0;
	margin-right: 30px;
}
ul.listlayout-3clm-roundlinks > li:nth-child(n+4) {
	margin-top: 30px;
}
/* wrapperitemsを囲う場合のみ */
ul.listlayout-3clm-roundlinks.items > li {
	width: 296px;
}
ul.listlayout-3clm-roundlinks.items > li:first-child {
	margin-left: 0;
	margin-right: 42px;
}
ul.listlayout-3clm-roundlinks.items > li:nth-child(n+4) {
	margin-top: 42px;
}
/* 2カラムの場合のみ */
ul.listlayout-3clm-roundlinks.clm2 {
	margin: 70px auto 0;
	width: 630px;
}
/* 1カラムの場合のみ */
ul.listlayout-3clm-roundlinks.clm1 li {
	float: none;
	margin: 0 auto;
}
#common_footer {
	background: #00b3ec;
	padding: 33px 0 23px;
	position: relative;
	z-index: 9;
}
#common_footer .inner-frame {
	position: relative;
}
#common_footer ul {
	text-align: center;
}
#common_footer ul li {
	display: inline-block;
	border-left: 1px solid #ffffff;
	padding: 0 10px;
}
#common_footer ul li:first-child {
	border-left: 0;
}
#common_footer ul li a {
	color: #ffffff;
}
/* コピーライト */
#common_copyright {
	text-align: center;
	color: #ffffff;
	margin-top: 22px;
	opacity: 0.7;
}
/* youtubeなどリンク */
#other_links_footer {
	position: absolute;
	right: 0;
	top: 0;
}
#other_links_footer a img.youtube {
}
#other_links_footer a img {
	width: 54px;
}
#other_links_footer img.direct {
}
/*--------------------------------------------
	フッター
---------------------------------------------*/
#footer {
	margin-top: 67px;
	color: #ffffff;
	position: relative;
}
/* ニュース配下のみ調整 */
#footer.ver2 {
	margin-top: 165px;
	color: #ffffff;
	position: relative;
}
/* ページトップ */
#pagetop {
	background: url("../img/pagetop_img.png")no-repeat center bottom;
	height: 31px;
	width: 177px;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
	z-index: 10
}
#pagetop p {
	opacity: 0;
	color: #ffffff;
	font-size: 12px;
	text-align: center;
	padding-top: 24px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
#pagetop img{
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
#pagetop:hover img,
#pagetop:focus img {
	bottom: 15px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
#pagetop:hover p,
#pagetop:focus p {
	opacity: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
/*------------------------------------------

	TOP

---------------------------------------------*/
#mainvisual {
	position: relative;
	z-index: 50;
	min-height: 420px;
	background: #000000;
	margin: 0 auto;
	text-align: center;
}
.moviewrap {
	background-image: url("../img/bg_pettern_movie.png");
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}
#mainvisual video {
	display:block;
	left: 0;
	top: 0;
	min-width:100%;
	min-height:420px;
	z-index:-100;
	margin: 0 auto;
	text-align: center;
}
.main-catchcopy h1 {
	color: #ffffff;
	font-size: 32px;
	font-weight: bold;
	/*text-shadow: 1px 1px 10px #000000;*/
}
.main-catchcopy h1 span {
	font-size: 13px;
	font-weight: bold;
	margin-top: 10px;
	display: block;
}
.main-catchcopy {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 100;
}
.layout-mvbutton {
	margin: 30px auto 0!important;
}

/* 一行ニュース */
#news_emergency {
	background: #e5f7fd;
	padding: 10px 0;
}
#news_emergency dl dt {
	display: inline-block;
	border-right: 1px solid #cad0d1;
	padding: 0 20px 0 10px;
	color: #00b3ec;
	font-weight: bold;
}
#news_emergency dl dd {
	display: inline-block;
	padding-left: 20px;
}
#news_emergency dl dd a {
	color: #00b3ec;
}

ul.list-tabs-2clm {
	width: 100%;
	margin-top: 40px;
	margin: 40px auto 0;
	text-align: center;
}
/* 青タブ */
ul.list-tabs-2clm.blue {
	border-bottom: 1px solid #00b3ec;
}
/* グレータブ */
ul.list-tabs-2clm.gray {
	border-bottom: 1px solid #cccccc;
}

ul.list-tabs-2clm li {
	height: 40px;
	line-height: 40px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: inline-block;
	border-left: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	width: 180px;
	text-align: center;
	margin-left: 10px;
	position: relative;
	z-index: 1;
}
ul.list-tabs-2clm.large li {
	width: 220px;
}
/* 青タブ */
ul.list-tabs-2clm.blue li {
	background: #fdfeff;
}
/* グレータブ */
ul.list-tabs-2clm.gray li {
	background: #f7f7f8;
}
ul.list-tabs-2clm li:hover {
	cursor: pointer;
}
ul.list-tabs-2clm li:first-child {
	margin-left: 0;
}
ul.list-tabs-2clm li.active {
	position: relative;
	z-index: 2;
}
/* 青タブ */
ul.list-tabs-2clm.blue li.active {
	background: #f0f9fe;
	border-bottom: transparent 1px solid;
	margin-bottom: -1px;
	border-left: 1px solid #00b3ec;
	border-top: 1px solid #00b3ec;
	border-right: 1px solid #00b3ec;
}
/* グレータブ */
ul.list-tabs-2clm.gray li.active {
	background: #ffffff;
	border-bottom: 1px solid rgba(255,255,255,1.0);
	margin-bottom: -1px;
	border-left: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
}
ul.list-tabs-2clm li.active span {
	color: #00b3ec;
	font-weight: bold;
}
ul.list-tabs-2clm li span {
	font-size: 14px;
	font-weight: normal;
	color: #333333;
	display: block;
}

/* ニュース出力タブ装飾 */
.tab-block01 .tabs ul {
	width: 100%;
	border-bottom: 1px solid #cccccc;
	padding-left: 0;
	position: relative;
	z-index: 1;
	margin: 40px auto 0!important;
	text-align: center;
	background: none!important;
}
.tab-block01 .tabs li {
	float: none!important;
}
.tab-block01 .tabs ul li {
	height: 40px;
	line-height: 40px;
	border-left: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: inline-block;
	width: 180px;
	text-align: center;
	background: #f7f7f8;
	margin-left: 10px;
}
.tab-block01 .tabs ul li.stay .label {
	box-shadow: none!important;
	display: inline-block;
	margin-right: 0!important;
	padding: 0!important;
	font-size: 14px!important;
	color: #00b3ec!important;
	font-weight: bold;
	background: #ffffff;
	margin-bottom: -1px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom: 1px solid #ffffff;
}
.tab-block01 .tabs ul li a {
	display: block;
	height: 40px;
	line-height: 40px;
	width: 180px;
}
.tab-block01 .tabs .label:hover {
	color: #333333;
}
.tab-block01 .tabs ul li a {
	opacity: 1.0;
}
.tab-block01 .tabs li .label {
	padding: 0!important;
}

.tab-block01 .tabs li.stay .label:hover {
	background: #ffffff!important;
	cursor: pointer;
	border-bottom: 1px solid #ffffff;
}
/* 青色背景サブコンテンツエリア包括 */
.wrapper-subcontentslink {
	padding: 40px 0;
}
.wrapper-tabs-incontents#tabcontents_02,
.wrapper-tabs-incontents#tabcontents_03
 {
	display: none;
}
.wrapper-tabs-incontents#tabcontents_02 .wrapper-tabcontents.english dd {
	padding-left: 80px;
}

.wrapper-tabs-incontents#tabcontents_01.top,
.wrapper-tabs-incontents#tabcontents_02.top {
	height: 360px;
}
ul.listlayout-2clm-manytiles.incontents.mt0 {
	margin-top: 0!important;
}
ul.listlayout-2clm-manytiles.incontents {
	margin-top: 30px;
}
ul.listlayout-2clm-manytiles.incontents li {
	width: 465px;
	margin-left: 30px;
	height: auto;
	margin-bottom: 0;
}
ul.listlayout-2clm-manytiles.incontents li:first-child {
	margin-left: 0;
}

/*セクション パターン１*/
.section-patter01 {
	padding: 70px 0 0px;
}
/*セクション サービス*/
.section.bg-service {
	padding: 60px 0;
}
/*セクション お知らせ*/

/* セクションタイトル */
h2.title-section-large {
	font-size: 30px;
	color: #333333;
	margin-bottom: 10px;
	text-align: center;
	font-weight: normal;
}
h2.title-section-large span {
	font-size: 12px;
	color: #00b3ec;
	display: block;
	line-height: 1.0em;
	padding-top: 5px;
	font-weight: bold;
}
h2.title-section-large p {
	margin-top: 25px;
	font-size: 14px;
}

/* 2clm 大小タイルリスト */
ul.listlayout-2clm-manytiles {
	margin-top: 40px;
}
ul.listlayout-2clm-manytiles li {
	float: left;
	height: 210px;
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	z-index: 1;
}
ul.listlayout-2clm-manytiles li.parttern01 {
	margin-right: 30px;
	width: 310px;
}
ul.listlayout-2clm-manytiles li.parttern01 > a > img {
	width: 310px;
	height: 210px;
}
ul.listlayout-2clm-manytiles li.parttern02 {
	width: 620px;
}
ul.listlayout-2clm-manytiles li.parttern02 > a > img {
	width: 620px;
	height: 210px;
}
ul.listlayout-2clm-manytiles li.parttern03 {
	margin-right: 30px;
	width: 620px;
}
ul.listlayout-2clm-manytiles li.parttern03 > a > img {
	width: 620px;
	height: 210px;
}
ul.listlayout-2clm-manytiles li.parttern04 {
	width: 310px;
}
ul.listlayout-2clm-manytiles li.parttern04 > a > img {
	width: 310px;
	height: 210px;
}
ul.listlayout-2clm-manytiles li a {
	display: block;
}
ul.listlayout-2clm-manytiles li p.text {
	position: absolute;
	left: 10px;
	bottom: 4px;
	color: #ffffff;
	font-weight: bold;
	font-size: 16px;
	z-index: 1;
	line-height: 1.5em;
}

ul.listlayout-2clm-manytiles.products li p.text,
ul.listlayout-2clm-manytiles li p.black.text {
	color: #333333;
}

ul.listlayout-2clm-manytiles li p.white.text {
	color: #ffffff;
}
ul.listlayout-2clm-manytiles li span {
	display: block;
	font-size: 12px;
	font-weight: normal;
}
ul.listlayout-2clm-manytiles li > a > img {
	display: block;
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	z-index: -1;
}
ul.listlayout-2clm-manytiles li:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
/* 3clm 大小タイルリスト */
ul.listlayout-3clm-manytiles {
	margin-top: 30px;
	margin-bottom: 27px;
}
ul.listlayout-3clm-manytiles li {
	float: left;
	height: auto;
	width: 300px;
	margin-left: 30px;
}


/* ４番目のみ余白削除 */
ul.listlayout-3clm-manytiles li:nth-child(4){
	margin-left: 0;
	float: left;
}
ul.ajsba li:nth-child(4){
	float: right;
}

ul.abjkan1 li{
	margin-left: 0px !important;
	margin-right: 30px !important;
	overflow: hidden;

}
ul.abjkan1 li:nth-child(3n){
	margin-right: 0px !important;
}

/* ４番目以降に上余白付与 */
ul.listlayout-3clm-manytiles li:first-child {
	margin-left: 0;
}
ul.listlayout-3clm-manytiles li a {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	z-index: 1;
}
ul.listlayout-3clm-manytiles li p.text {
	position: absolute;
	left: 10px;
	bottom: 3px;
	color: #ffffff;
	font-weight: bold;
	font-size: 16px;
	z-index: 1;
	color: #333333;
	line-height: 1.5em;
}
ul.listlayout-3clm-manytiles li p.text.white {
	color: #ffffff!important;
}
ul.listlayout-3clm-manytiles.products li p.text {
	color: #333333;
}

ul.listlayout-3clm-manytiles li span {
	display: block;
	padding-top: 2px;
	font-size: 12px;
	font-weight: normal;
}
ul.listlayout-3clm-manytiles li > a > img {
	display: block;
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	z-index: -1;
}
ul.listlayout-3clm-manytiles li > a:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
ul.listlayout-3clm-manytiles li p.subtext {
	margin-top: 12px;
	font-size: 12px;
}
/* サービスの背景に画像 */
.bg-pic {
	background: url("../img/bg_service.png") no-repeat left top;
	background-size: cover;
	height: 572px;
	padding-bottom: 30px;
}
.bg-rightwhite {
	background: #fff;
}
.bg-rightwhite-pc {
	background: #fbfdff;
}
.bg-rightblue {
	background: #f7f8f8;
}
.bg-rightblue-v2 {
	background: #f8fcfe;
}
.bg-rightblue-v3 {
	background: #f3f9fe;
}
/*セクション お知らせの場合のみ一覧リンクの配置位置*/
.section.news .f-right {
	float: right;
	font-size: 14px;
	top: -50px;
	position: relative;
	padding-right: 20px;
}
/* お知らせリスト 外部CSS上書き */
#eir_corporate_top {
	margin-top: 20px;
}
table.announce_table {
	border-top: 1px solid #c9c9c9!important;
}
table.announce_table tr {
	padding: 22px 20px 22px 0!important;
	cursor: pointer;
}
div#eir_corporate_top {
	width: 100%!important;
	height: auto!important;
	overflow: visible!important;
}
div#ir_library {
	padding-top: 0!important;
}
div#announcement {
	margin-top: 0!important;
}
table.announce_table {
	width: 100%!important;
	margin-left: 0!important;
}
table.announce_table th {
	padding: 0!important;
	width: 95px!important;
	font-size: 14px!important;
	vertical-align: middle!important;
}
div#ir_library div#announcement div#divtxt {
	padding-right: 15px!important;
	font-size: 13px;
	color: #737373;
}
span.label-news_attr01 {
	margin-right: 0!important;
}
table.announce_table td.ann_title {
	vertical-align: middle!important;
	padding-bottom: 13!important;
	padding-left: 28px!important;
	padding-right: 20px!important;
	width: 335px!important;
	font-size: 14px!important;
	background: url("../img/ico_link_arrow_news.png")no-repeat right center;
	font-size: 14px!important;
	color: #333333!important;
	padding-top: 13!important;
	height: 50px;
}
table.announce_table td.ann_title img {
	display: none;
}
/* 11/8更新分 */
table.announce_table td.ann_icon {
	vertical-align: middle!important;
	display: none!important;
}
div#ir_library div#announcement div#divtxt {
	float: none;
	margin-bottom: 5px;
	padding-top: 4px;
}
div#ir_library div#announcement_all div#divtxt {
	margin-left: 0!important;
}
/*--------------------------------------------

	ビジョン

---------------------------------------------*/
#header.vision > .inner-frame {
	left: -8px;
}
#wrapper_all {
	width: 100%;
	position: relative;
	height:auto !important;
	height: 100%;
	min-height: 100%;
}
#contents.vision {
	padding-bottom: 144px;
	padding-top: 0!important;
}

/* footer調整 */
.vision #footer {
	position: absolute;
	width: 100%;
	bottom: 0;
}
/* セクションナビリンク */
#fp-nav ul li a span, .fp-slidesNav ul li a span {
	background: #cccccc;
	width: 8px;
	height: 8px;
}
#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li:hover a.active span {
	width: 8px;
	height: 8px;
	margin: 0;
	left: 0px;
	top: 0px;
	border: 2px solid #1791cf;
	border-radius: 5px;
	background: none;
}
#fp-nav ul li, .fp-slidesNav ul li {
	margin: 19px;
	width: 8px;
	height: 8px;
}
#fp-nav ul li:hover a span, .fp-slidesNav ul li:hover a span {
	margin: -3px 0px 0px -3px;
	width: 11px;
	height: 11px;
}
/*--------------------------------------------
	セクション1
---------------------------------------------*/
/* ムービー設置 */
#heromovie {
	position: relative;
	z-index: 50;
	height: 100%;
	background: #000000;
	margin: 0 auto;
	text-align: center;
	margin-top: 0;
}
#heromovie video {
	display:block;
	left: 0;
	top: 0;
	min-width:100%;
	min-height:700px;
	z-index:-100;
	margin: 0 auto;
	text-align: center;
}
.vision .section-01 {
	position: relative;
}
.vision .section-01 .scroll {
	position: absolute;
	bottom: 80px;
	text-align: center;
	cursor: pointer;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.vision .section-01 .scroll p {
	font-size: 32px;
	color: #ffffff;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	margin-bottom: -20px;
}
.vision .section-01 .scroll:hover p {
	opacity: 1;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	margin-bottom: 10px;
}
.vision .section-01 .scroll img {
	margin-bottom: 20px;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.vision .section-01 .scroll:hover img {
	margin-bottom: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
/*--------------------------------------------
	セクション2
---------------------------------------------*/
.vision .section-02 {
	text-align: center;
	padding-top: 70px;
	position: relative;
}
.vision .section-02 .main-message {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
}
.vision .section-02 ul {
	margin-top: 90px;
}
.vision .section-02 ul li {
	position: relative;
}
.vision .section-02 ul li img {
	display: block;
}
/* サービスとプロダクト */
.vision .section-visual {
	position: relative;
	overflow: hidden;
}
/* マウスオーバーで黒レイヤー */
.vision .section-visual .bg-black {
	transition: all 0.4s;
	-webkit-transition:all 0.4s;
	background: rgba(0,0,0,.0);
}
.vision .section-visual:focus .bg-black,
.vision .section-visual:hover .bg-black {
	background: rgba(0,0,0,.4);
	position: absolute;
	left: 0;
	z-index: 200;
	height: 100%;
	width: 100%;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.vision .section-visual.left {
	float: left;
	width: 50%;
}
.vision .section-visual.right {
	float: right;
	width: 50%;
}
.vision .section-visual.left img,
.vision .section-visual.right img {
	width: 100%;
	display: block;
}
/* 共通タイトル */
.vision .section-visual h2 {
	color: #ffffff;
	font-size: 70px;
}
.vision .section-visual.scale {
	transform: scaleX(0) scaleY(0) scaleZ(0);
	-webkit-transform: scaleX(0) scaleY(0) scaleZ(0);
	-moz-transform: scaleX(0) scaleY(0) scaleZ(0);
	-o-transform: scaleX(0) scaleY(0) scaleZ(0);
	-ms-transform: scaleX(0) scaleY(0) scaleZ(0);
}
.vision .section-visual.scale.on {
	transform: scaleX(1) scaleY(1) scaleZ(1);
	transform: scaleX(1) scaleY(1) scaleZ(1);
	-webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
	-moz-transform: scaleX(1) scaleY(1) scaleZ(1);
	-o-transform: scaleX(1) scaleY(1) scaleZ(1);
	-ms-transform: scaleX(1) scaleY(1) scaleZ(1);
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}
/*--------------------------------------------
	セクション3-SOLUTION
---------------------------------------------*/
/*--------------------------------------------
	セクション3-PRODUCTS
---------------------------------------------*/
/* 内要素を中央に */
.vision .section-visual .wrapper-products {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	z-index: 500;
}
/* タイトル */
.vision .section-visual h2 {
	margin-bottom: 40px;
	text-align: center;
}
.vision .section-visual p {
	line-height: 1.78em;
	color: #ffffff;
	margin-bottom: 40px;
}
/*--------------------------------------------
	セクション4
---------------------------------------------*/
/* 背景 */
.section-04 {
	background: url("../img/sec04_bg.png")no-repeat center;
	background-size: contain;
	height: 100%;
	text-align: center;
}
/* タイトル */
.section-04 h2{
	font-size: 30px;
	font-weight: bold;
	line-height: 1.67em;
	color: #333333;
	margin-bottom: 60px;
}
.section-04 p {
	line-height: 2em;
	color: #333333;
	margin-bottom: 55px;
}
/*--------------------------------------------
	セクション5
---------------------------------------------*/
.section-05 {
	padding-top: 0!important;
}
.section-05 .section-visual {
	background: url("../img/sec05_bg.png")no-repeat center;
	background-size: cover;
	height: 350px;
	margin-top: 50px;
	position: relative;
}
.section-05 .section-visual .items {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%); /* Safari用 */
	transform: translate(-50%,-50%);
}
/*セクション５のみフッターとの余白調整*/
#contents.vision .relationlinks {
}
/*セクション５のみボタン調整*/
.section-05 .relationlinks {
	/*padding-top: 182px;*/
}
/*--------------------------------------------

	会社情報

---------------------------------------------*/
/*--------------------------------------------
	index
---------------------------------------------*/
#maintitle.aboutindex {
	background: url("../img/mv_about.png")no-repeat left top;
	background-size: contain;
}
/*--------------------------------------------
	社長メッセージ
---------------------------------------------*/
#maintitle_second.aboutmessage {
	background: url("../img/mv_message.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
#maintitle.aboutmessage h1 {
	color: #333333!important;
}
#message_area.textarea .ta-right span {
	padding-right: 25px;
	font-weight: bold;
	padding-top: 20px;
	display: inline-block;
}
/*--------------------------------------------
	企業概要
---------------------------------------------*/
#maintitle_second.outline {
	background: url("../img/mv_outline.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
.detail .detailmap {
	padding-top: 20px;
}
.detail .detailmap .left {
	width: 290px;
	height: auto;
	float: left;
	margin-right: 30px;
}
.detail .detailmap .right {
	width: 370px;
	float: left;
}
.detail .detailmap .left,
.detail .detailmap .right {
	margin-bottom: 30px;
}

/* googleマップ制御 */
.detailmap iframe {
	display: block;
	width: 100%;
	height: 230px;
	max-height: 230px;
}
.detailmap .map-block {
	height: 230px;
	border: 1px solid #d9d9d9;
}
/*--------------------------------------------
	企業理念
---------------------------------------------*/
#maintitle_second.identity {
	background: url("../img/mv_identity.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
/*--------------------------------------------
	沿革
---------------------------------------------*/
#maintitle_second.history {
	background: url("../img/mv_history.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
/*--------------------------------------------

	お知らせ

---------------------------------------------*/
/*--------------------------------------------
	index
---------------------------------------------*/
#maintitle.news {
	background: url("../img/mv_news.png")no-repeat left top;
	background-size: contain;
}
.content-header {
	display: none;
}
/*--------------------------------------------

	IR情報

---------------------------------------------*/
/*--------------------------------------------
	INDEX
---------------------------------------------*/
#maintitle.irindex {
	background: url("../img/mv_ir.png")no-repeat left top;
	background-size: contain;
}
/* IRニュースカスタマイズ */
div#ir_library dd {
	padding: 20px 0 20px 255px!important;
	/*float: left;*/
	font-size: 14px !important;
	color: #333333 !important;
	border-top: none!important;
	border-bottom: 1px dotted #c9c9c9 !important;
}
div#ir_library dt {
	position: auto;
	float: left;
	padding: 20px 10px 8px 0!important;
}
div#ir_library div#announcement dd a.pdf {
	background: none!important;
	background: url("../img/ico_link_arrow_news.png")no-repeat right center!important;
}
div#ir_library div#announcement .note {
	padding-left: 8px;
}
div#ir_library .note::before {
	content: url("../img/ico_pdf.png");
	padding-right: 10px;
}
/* IRのみ角丸リンクリスト */
dl.list-3clm-wrapperlistitems {
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	padding: 0 20px;
}
dl.list-3clm-wrapperlistitems dt {
	font-size: 22px;
	font-weight: bold;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
dl.list-3clm-wrapperlistitems.ir-first {
	background: url("../img/ir_item_01.png")no-repeat left top;
	height: 200px;
	padding: 100px 20px 0;
}
dl.list-3clm-wrapperlistitems.ir-second {
	background: url("../img/ir_item_02.png")no-repeat left top;
	height: 200px;
	padding: 100px 20px 0;
}
dl.list-3clm-wrapperlistitems.ir-third {
	background: url("../img/ir_item_03.png")no-repeat left top;
	height: 200px;
	padding: 100px 20px 0;
}
dl.list-3clm-wrapperlistitems dd a {
	font-size: 16px;
	font-weight: bold;
}
dl.list-3clm-wrapperlistitems dd > ul > li {
	margin-bottom: 15px;
}
/* タイトル内レイアウト */
.title-2-grayborder.ir .f-right a {
	color: #00b3ec;
	font-size: 14px;
}
.title-2-grayborder.ir p.f-left {
	position: relative;
	bottom: -10px;
}
/*--------------------------------------------
	IRカレンダー
---------------------------------------------*/
.heading01 {
	border-left: none!important;
	font-size: 16px!important;
	font-weight: bold;
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 15px;
	margin: 0 0 15px 0!important;
}
div#ir_library dl {
	border-bottom: none!important;
}
ul.list-layout-left li {
	float: left;
	width: auto;
}
/*--------------------------------------------
	株主総会
---------------------------------------------*/
.heading01#ir1,
.heading01#ir2,
.heading01#ir3 {
	padding-top: 30px;
}

/*--------------------------------------------
	有価証券報告書
---------------------------------------------*/
/*div#ir_library dd a.pdf::after {
	content: url("../img/ico_pdf.png");
	padding-right: 10px;
	padding-top: 5px;
}*/

div#yuhoTable td.yuhotitle {
	padding: 3px 0!important;
}
div#yuhoTable td.yuhotitle img {
	display: none!important;
}
div#yuhoTable hr {
	display: none;
}
/*--------------------------------------------
	社長メッセージ
---------------------------------------------*/
#maintitle_second.ir-message {
	background: url("../img/mv_ir_message.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}

.message-area h1 {
	font-size: 34px;
	font-weight: bold;
	margin-bottom: 65px;
}
.message-area p {
	line-height: 1.78em;
	font-size: 16px;
}
.message-area .ta-right span {
	padding-right: 25px;
	font-weight: bold;
	padding-top: 20px;
	display: inline-block;
}
/*--------------------------------------------
	Balance sheets
---------------------------------------------*/
div#zaimu {
	width: 960px!important;
}

/*--------------------------------------------

	製品・サービス

---------------------------------------------*/
/*--------------------------------------------
	index
---------------------------------------------*/
#maintitle.productsindex {
	background: url("../img/mv_products.png")no-repeat left top;
	background-size: contain;
}
dl.list-2clm-wrapperlistitems {
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	padding: 0 20px;
}
dl.list-2clm-wrapperlistitems dt {
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
dl.list-2clm-wrapperlistitems dt span {
	font-size: 12px;
	padding-top: 10px;
	font-weight: normal;
	display: block;
}
dl.list-2clm-wrapperlistitems.product-first {
	background: url("../img/products_item_01.png")no-repeat left top;
	height: 220px;
	padding: 120px 20px 0;
}
dl.list-2clm-wrapperlistitems.product-second {
	background: url("../img/products_item_02.png")no-repeat left top;
	height: 220px;
	padding: 120px 20px 0;
}
dl.list-2clm-wrapperlistitems.product-third {
	background: url("../img/products_item_03.png")no-repeat left top;
	height: 200px;
	padding: 120px 20px 0;
}
dl.list-2clm-wrapperlistitems.product-four {
	background: url("../img/products_item_04.png")no-repeat left top;
	height: 200px;
	padding: 120px 20px 0;
}
dl.list-2clm-wrapperlistitems dd a {
	font-size: 14px;
	font-weight: normal;
}
dl.list-2clm-wrapperlistitems dd > ul > li {
	margin-bottom: 18px;
	display: inline-block;
	margin-right: 30px;
}
/*--------------------------------------------
	シリーズ
---------------------------------------------*/
/* 各シリーズの色分け */
/*
.wrapper-title-1-green {
	background: url("../img/title_under_green.png") no-repeat left bottom!important;
}*/

.wrapper-title-1-blue {
	background: url("../img/title_under_blue.png") no-repeat left bottom!important;
}

.wrapper-title-1-pink {
	background: url("../img/title_under_pink.png") no-repeat left bottom!important;
}

.wrapper-title-1-orange {
	background: url("../img/title_under_orange.png") no-repeat left bottom!important;
}

.wrapper-title-1-red {
	background: url("../img/title_under_red.png") no-repeat left bottom!important;
}


/* ASBシリーズ */
#maintitle_second.product-series {
	background: url("../img/mv_product.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
#maintitle_second.product-series.asb {
	background: url("../img/mv_product_asb.png")no-repeat right top #f7f8f8;
}
#maintitle_second.product-series.cf {
	background: url("../img/mv_product_cf.png")no-repeat right top #f7f8f8;
}
#maintitle_second.product-series.pf {
	background: url("../img/mv_product_pf.png")no-repeat right top #f7f8f8;
}
#maintitle_second.product-series.hsb {
	background: url("../img/mv_product_hsb.png")no-repeat right top #f7f8f8;
}
#maintitle_second.product-series.pm {
	background: url("../img/mv_product_pm.png")no-repeat right top #f7f8f8;
}
#maintitle_second.product-series.cm {
	background: url("../img/mv_product_cm.png")no-repeat right top #f7f8f8;
}
/*
#maintitle_second.border .inner-frame > div {
	background: url("../img/title_under_green.png")no-repeat left bottom;
}*/

dl.list-item-text dt img {
	display: block;
	margin-bottom: 25px;
}
dl.list-item-text dt {
	font-size: 19px;
	color: #333333;
	margin-bottom: 15px;
	font-weight: bold;
	margin-top: 18px;
}
dl.list-item-text dd {
	line-height: 1.5em;
	font-size: 16px;
}
dl.list-item-text dd span {
	padding-top: 2px;
	display: block;
}
dl.list-item-text dd span {
	color: #999999;
	font-size: 14px;
}

/* タイトル内レイアウト */
.title-2-grayborder.ir .f-right a {
	color: #00b3ec;
	font-size: 14px;
	position: relative;
	bottom: -10px;
}
/*--------------------------------------------
	製品詳細
---------------------------------------------*/
.wrapper-tags {
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	height: 100%;
	width: 100%;
	display: table;
}
.wrapper-tags h3 {
	background: #f7f8f8;
	width: 140px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}
.wrapper-tags .tagbox {
	width: 821px;
	padding: 20px 0 5px 0;
	margin: 0 auto;
	display: table-cell;
	vertical-align: middle;
	padding-left: 25px;
}
ul.listlayout-3clm-inline-roundbox li {
	width: 381px;
	min-height: 65px;
	float: left;
	text-align: center;
	border: 1px solid #00b3ec;
	border-radius: 40px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	-o-border-radius: 40px;
	-ms-border-radius: 40px;
	margin: 0 14px 15px 0;
	position: relative;

}
/*ul.listlayout-3clm-inline-roundbox li:nth-child(n+4) {
	margin-top: 15px;
}
ul.listlayout-3clm-inline-roundbox li:nth-child(4) {
	margin-left: 0;
}*/
ul.listlayout-3clm-inline-roundbox li span {
	vertical-align: middle;
	display: inline-block;
	font-weight: bold;
	color: #00b3ec;
	font-size: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%); /* Safari用 */
	transform: translate(-50%,-50%);
	width: 340px;
}
ul.listlayout-3clm-inline-roundbox li:after {
	content: "";
	vertical-align: middle;
	display: inline-block;
	height: 100%;
	width: 0px;
}
/* ほか製品リンク（角丸リスト） */
ul.list-round-smalllinks {

}
ul.list-round-smalllinks li {
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	display: inline-block;
	margin-left: 20px;
	vertical-align: top;
}
ul.list-round-smalllinks.green li.stay {
	border: 2px solid #65ac7c;
}
ul.list-round-smalllinks.blue li.stay {
	border: 2px solid #4d88c4;
}
ul.list-round-smalllinks.pink li.stay {
	border: 2px solid #b8597c;
}
ul.list-round-smalllinks.orange li.stay {
	border: 2px solid #dba035;
}
ul.list-round-smalllinks.red li.stay {
	border: 2px solid #b85959;
}

ul.list-round-smalllinks li.stay a {
	font-weight: bold;
}
ul.list-round-smalllinks li:first-child {
	margin-left: 0;
}
ul.list-round-smalllinks li a {
	display: block;
	width: 170px;
	height: 66px;
	line-height: 66px;
	text-align: center;
	font-size: 16px;
	color: #333333;
}
ul.list-round-smalllinks li.multiline a {
	line-height: 33px;
}

/*--------------------------------------------
	サービス
---------------------------------------------*/
#maintitle_second.service {
	background: url("../img/mv_service.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
#contents.service {
	padding-top: 0;
	/*margin-top: -80px;*/
}
.servicesection-01,
.servicesection-02,
.servicesection-03,
.servicesection-04,
.servicesection-05 {
	margin-bottom: 120px;
}
.servicesection-02 .section-visual {
	background: url("../img/service_sec02.png")no-repeat left top;
	background-size: cover;
	margin-bottom: 25px;
	padding-top: 33.6%;
}
.servicesection-03 .section-visual {
	background: url("../img/service_sec03.png")no-repeat left top;
	background-size: cover;
	margin-bottom: 25px;
	padding-top: 33.6%;
}
.servicesection-04 .section-visual {
	background: url("../img/service_sec04.png")no-repeat left top;
	background-size: cover;
	margin-bottom: 25px;
	padding-top: 33.6%;
}
.servicesection-05 .section-visual {
	background: url("../img/service_sec05.png")no-repeat left top;
	background-size: cover;
	margin-bottom: 25px;
	padding-top: 33.6%;
}
/*--------------------------------------------
	サポート
---------------------------------------------*/
#maintitle_second.support {
	background: url("../img/mv_support.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
#contents.support {
	padding-top: 0;
	/*margin-top: -80px;*/
}
.supportsection-01,
.supportsection-02,
.supportsection-03,
.supportsection-04,
.supportsection-05 {
	margin-bottom: 120px;
}
.supportsection-01 .section-visual {
	background: url("../img/support_sec01.png")no-repeat left top;
	background-size: cover;
	margin-bottom: 25px;
	padding-top: 33.6%;
}
.supportsection-02 .section-visual {
	background: url("../img/support_sec02.png")no-repeat left top;
	background-size: cover;
	margin-bottom: 25px;
	padding-top: 33.6%;
}
.supportsection-03 .section-visual {
	background: url("../img/support_sec03.png")no-repeat left top;
	background-size: cover;
	margin-bottom: 25px;
	padding-top: 33.6%;
}
/*--------------------------------------------
	付属機器
---------------------------------------------*/
#maintitle_second.option {
	background: url("../img/mv_option.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
/*--------------------------------------------

	ソリューション

---------------------------------------------*/
/*--------------------------------------------
	INDEX
---------------------------------------------*/
#maintitle.solutions {
	background: url("../img/mv_solutions.png")no-repeat left top;
	background-size: contain;
}
/* 3カラムタイルの白文字＋罫線付き */
ul.listlayout-3clm-manytiles.black li a {
	border: 1px solid #e5e5e5;
}
ul.listlayout-3clm-manytiles.black li p.text {
	color: #333333;
	font-weight: bold;
	font-size: 16px;
	/*text-shadow: 1px 1px 8px #000;*/
	z-index: 1;
}
/*--------------------------------------------
	ステップページ
---------------------------------------------*/
.list-bg-steppicture > li {
	background: url("../img/steparrow.png") no-repeat center 20px;
	padding-top: 70px;
}
.list-bg-steppicture > li:first-child {
	background: none;
}
/* 各ステップボックス */
dl.list-stepcard.first {
	background: url("../img/step1subpic.png") no-repeat -5px bottom;
}
dl.list-stepcard.second {
	background: url("../img/step2subpic.png") no-repeat -5px bottom;
}
dl.list-stepcard.third {
	background: url("../img/step3subpic.png") no-repeat -5px bottom;
}
dl.list-stepcard.four {
	background: url("../img/step4subpic.png") no-repeat -5px bottom;
}

/* 1.5ステップボックス */
dl.list-stepcard.step15-first {
	background: url("../img/step1subpic.png") no-repeat -5px bottom;
}
dl.list-stepcard.step15-second {
	background: url("../img/step1.5_2subpic.png") no-repeat -5px bottom;
}
dl.list-stepcard.step15-third {
	background: url("../img/step1.5_3subpic.png") no-repeat -5px bottom;
}
dl.list-stepcard.step15-four {
	background: url("../img/step1.5_4subpic.png") no-repeat -2px bottom;
}
dl.list-stepcard.step15-fifth {
	background: url("../img/step1.5_5subpic.png") no-repeat -5px bottom;
}
dl.list-stepcard.step15-sixth {
	background: url("../img/step1.5_6subpic.png") no-repeat left bottom;
}
dl.list-stepcard.step15-seven {
	background: url("../img/step1.5_7subpic.png") no-repeat left bottom;
}
dl.list-stepcard.step15-first dt .ff-sans,
dl.list-stepcard.step15-second dt .ff-sans,
dl.list-stepcard.step15-third dt .ff-sans,
dl.list-stepcard.step15-four dt .ff-sans,
dl.list-stepcard.step15-fifth dt .ff-sans,
dl.list-stepcard.step15-sixth dt .ff-sans,
dl.list-stepcard.step15-seven dt .ff-sans {
	color: #4d88c4;
}
dl.list-stepcard.step3 dt .ff-sans {
	color: #b8597c;
}
dl.list-stepcard > dt {
	float: left;
	width: 337px;
	/*text-align: center;*/
}
dl.list-stepcard > dt img {
	display: inline-block;
	padding-left: 53px;
}
dl.list-stepcard > dt .ff-sans {
	color: #65ac7c;
	font-size: 64px;
	position: relative;
	left: 7px;
}
dl.list-stepcard > dd {
	float: right;
	width: 520px;
	margin-left: 35px;
}
/* ステップリスト　arrow画像つき、レイアウト変更 */
ul.list-stepcard-child li {
	background: url("../img/steparrow_top.png")no-repeat top right!important;
	margin-top: 25px;
	padding-top: 55px;
}
dl.list-stepcard-child {
	margin-left: 100px;
}
dl.list-stepcard-child dt {
	width: 518px;
	float: left;
	margin-left: 40px;
}
dl.list-stepcard-child dt span.ff-sans {
	display: inline-block;
	padding-bottom: 25px;
	color: #b8597c;
	font-size: 40px;
}
dl.list-stepcard-child dd {
	width: 240px;
	float: left;
}
dl.list-stepcard-child.step3 dt {
	margin-left: 0;
	width: 240px;
}
dl.list-stepcard-child.step3 dd .ff-sans {
	font-size: 40px;
	color: #b8597c;
	display: block;
	padding-bottom: 27px;
}
dl.list-stepcard-child.step3 dd {
	margin-left: 40px;
	width: 518px;
}
/*--------------------------------------------
	特殊成形技術
---------------------------------------------*/
#maintitle_second.specialimold {
	background: url("../img/mv_solutions_dt.jpg")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
#contents.molding .layout-2clm {
	position: relative;
}
#contents.molding .ta-right {
	position: absolute;
	bottom: -20px;
	right: 0;
}
/*--------------------------------------------

	採用

---------------------------------------------*/
/*--------------------------------------------
	index
---------------------------------------------*/
.slides li img {
	width: 100%;
	display: block;
}

.flexslider {
	overflow: hidden;
}
#mainvisual.recruitIndex {
	position: relative;
	min-height: 100%;
	background: none;

}
.section.ver1 {
	padding: 70px 0;
}
.section.ver2 {
	padding: 60px 0;
}
/*セクション 社員紹介の場合のみ一覧リンクの配置位置*/
.section.recruit .f-right {
	float: right;
	font-size: 14px;
	top: -50px;
	position: relative;
	padding-right: 20px;
}
.sub-catchcopy {
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
}
.sub-catchcopy span {
	display: inline-block;
}
.sub-catchcopy span.left {
	font-size: 17px;
}
.sub-catchcopy span.left::after {
	content: "｜";
	padding-left: 5px;
	margin-right: 5px;
}
.f-blue {
	color: #00b3ec;
}
/* カルーセル */
ul.list-card-staff {
	margin-top: 30px;
}
ul.list-card-staff li {
	width: 300px;
	position: relative;
}
ul.list-card-staff li a:hover img {
	opacity: 0.7;
}
ul.list-card-staff li .data {
	position: absolute;
	left: 15px;
	bottom: 10px;
	font-weight: bold;
	font-size: 19px;
}
ul.list-card-staff li .data span {
	display: block;
	padding-top: 10px;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.67em;
}
.slick-prev {
	position: absolute !important;
	left: -38px !important;
	width: 15px !important;
	height: 21px !important;
	background: url("../img/navi_prev.png") no-repeat left top !important;
}
.slick-next {
	position: absolute !important;
	right: -23px !important;
	width: 15px !important;
	height: 21px !important;
	background: url("../img/navi_next.png") no-repeat left top !important;
}
.slick-dots {
	bottom: -28px!important;
}
.slick-dots li {
	width: 0!important;
	height: 0!important;
	margin: 0 17px !important;
}
.slick-dots li button {
	width: 8px!important;
	height: 8px!important;
	background: #cccccc!important;
	border-radius: 50%;
	padding: 4px!important;
}
.slick-dots li button:before {
	display: none;
}
.slick-dots li button:hover {
	background: none!important;
	border: 2px solid #1791cf;
	padding: 4px!important;

}
.slick-dots li.slick-active button {
	background: none!important;
	border: 2px solid #1791cf;
	padding: 4px!important;

}
.slick-prev:before, .slick-next:before {
	display: none;
}
/* 採用担当者よりメッセージ */
.section.pic-personnel {
	position: relative;
	overflow: hidden;
/*	background: url("../img/employment_pic_personnel.png")no-repeat right center;*/
}
.section.pic-personnel img.message-img {
	position: relative;
	left: 50%;
	display: block;
	margin-left: -520px;
}
@media screen and ( min-width: 1220px ) {
.section.pic-personnel img.message-img {
	left: 0;
	width: 100%;
	margin: 0;
	}
}
.section.pic-personnel .layout-2clm {
}
.section.pic-personnel .layout-2clm .left {
	position: absolute;
	top: 50%;
	margin-top: -110px;
	width: 420px;
	text-align: left;
	left: 50%;
	margin-left: -480px;
}
/* ASBの歴史 */
.section.pic-history {
	background: url("../img/agehistory_bg.png")no-repeat center;
	height: 450px;
	background-size: cover;
	margin-bottom: 70px;
}
.section.pic-history h2 {
	color: #ffffff;
}
ul.list-agelist {
	margin-top: 18px;
}
ul.list-agelist li {
	padding-top: 20px;
	background: url("../img/agelist_bg.png")no-repeat 30px top;
}
ul.list-agelist li:first-child {
	padding-top: 0;
	background: none;
}
dl.list-agedetail {
	height: 60px;
	width: 100%;
	margin-right: 40px;
}
dl.list-agedetail dt {
	width: 60px;
	height: 60px;
	-webkit-border-radius: 30px;/* width,heightの半分 */
	-moz-border-radius: 30px;
	border-radius: 30px;
	background-color: #00b3ec;/* 円の色 */
	position: relative;
	vertical-align: middle;
	float: left;
}
dl.list-agedetail dt span {
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%); /* Safari用 */
	transform: translate(-50%,-50%);
	position: absolute;
	width: 100%;
	text-align: center;
}
dl.list-agedetail dd {
	color: #ffffff;
	width: 800px;
	float: left;
	position: relative;
	height: 60px;
}
dl.list-agedetail dd p {
	margin-left: 41px;
	-webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.4);
	-moz-box-shadow: 0 1px 0 rgba(255,255,255,0.4);
	padding-bottom: 18px;
	position: absolute;
	bottom: 1px;
	width: 100%;
}
.wrapper-thanks-message > p {
	margin: 30px 0;
}
.wrapper-thanks-message > .box-border-gray {
	border: 2px solid #e6e6e6;
	margin-bottom: 50px;
}
.wrapper-thanks-message > .box-border-gray > ul {
	padding: 10px;
}
.wrapper-thanks-message > .box-border-gray > ul > li {
	margin-bottom: 10px;
}
#wrapper_scroll_y {
	overflow: hidden;
	height: 398px;
}
/*--------------------------------------------
	社員紹介
---------------------------------------------*/
#maintitle_second.interview {
	background: url("../img/mv_interview.png")no-repeat right top #f7f8f8;;
	background-size: auto;
	height: 160px;
	padding-top: 0;
	margin-bottom: 0;
	border-bottom: 1px solid #ffffff;
}
.bg-rightblue-v2.interview {
	padding: 70px 0 40px;
}
ul.list-card-staff.no-carousel li {
	float: left;
	margin-bottom: 30px;
}
ul.list-card-staff.no-carousel li:nth-child(3n-1) {
	margin: 0 29px;
}

/* 各社員詳細ページ */
/* メインビジュアル */
#staff_message_area {
	position: relative;
	border-bottom: 2px solid #ffffff;
	background: #f9f0e3;
	min-height: 420px;
	width: 100%;
	text-align: right;
}
#staff_message_area .inner-frame-pc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}
#staff_message_area .inner-frame-pc > div {
	position: relative;
	width: 960px;
	height: 100%;
	margin: 0 auto;
}
#staff_message_area .inner-frame-pc > div > .wrapper-text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
}
#staff_message_area h1 {
	font-size: 32px;
	line-height: 1.3em;
}
dl.list-layout-staffname {
	border-top: 1px solid #c9c9c9;
	padding-top: 25px;
	margin-top: 25px;
	width: 400px;
}
dl.list-layout-staffname dt {
	font-size: 22px;
	font-weight: bold;
	line-height: 22px;
	height: 22px;
}
dl.list-layout-staffname dt span {
	display: inline-block;
	padding-left: 18px;
	color: #00b3ec;
	font-size: 14px;
}
dl.list-layout-staffname dd {
	margin-top: 15px;
}
/*--------------------------------------------

	問い合わせ系

---------------------------------------------*/
.wrapper-thanks-message {
	margin: 50px 80px 70px 80px;
}
.wrapper-thanks-message > p {
	margin: 30px 0;
}
.wrapper-thanks-message > .box-border-gray {
	border: 2px solid #e6e6e6;
	margin-bottom: 50px;
}
.wrapper-thanks-message > .box-border-gray > ul {
	padding: 10px;
}
.wrapper-thanks-message > .box-border-gray > ul > li {
	margin-bottom: 10px;
}
.wrapper-thanks-message > .box-border-gray > ul > li:last-child {
	margin-bottom: 0;
}
/*--------------------------------------------

	サイトマップ

---------------------------------------------*/
.border-link a.link-arrow-right {
	border-bottom: 1px solid #d9d9d9;
	padding-bottom: 12px;
	color: #333333;
	font-size: 22px;
	position: relative;
}
.border-link a.link-arrow-right::after {
	top: 0;
	position: absolute;
	margin-top: -2px;
}
.title-2-border {
	font-size: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 30px;
	font-weight: bold;
}

/*--------------------------------------------

	FAQ

---------------------------------------------*/
dl.list-faq-accordion {
	display: table;
	width: 100%;
	border-bottom: 1px dotted #c9c9c9;
	padding-bottom: 30px;
	padding-top: 25px;
}
dl.list-faq-accordion dt {
	font-weight: bold;
	font-size: 16px;
	line-height: 25px;
	padding-left: 60px;
	padding-right: 110px;
	cursor: pointer;
	background: url("../img/icon_minus_accordion.png") no-repeat 98% 48%;
}
dl.list-faq-accordion dt.close {
	background: url("../img/icon_plus_accordion.png") no-repeat 98% 48%;
}

dl.list-faq-accordion dt:before {
	content: url("../img/icon_faq_question.png");
	margin-left: -60px;
	padding: 0 22px 0 10px;
	vertical-align: text-top;
}

dl.list-faq-accordion dd {
	margin-top: 15px;
	padding: 0 150px 0 60px;
	line-height: 25px;
}
dl.list-faq-accordion dd a {
	display: inline-block;
	margin-top: 13px;
}

dl.list-faq-accordion dd p {
	line-height: 25px;
}
dl.list-faq-accordion dd ul {
	margin: 15px 0;
}


/*--------------------------------------------

	ニュース

---------------------------------------------*/
.wrapper-news-date {
	margin-bottom: 25px;
}
.wrapper-news-date > p {
	float: left;
	margin-right: 30px;
}
.wrapper-news-date > p:last-child {
	margin-right: 0;
}
.wrapper-news-text {
	margin-bottom: 50px;
}
.wrapper-news-table > dl > dd {
	line-height: 25px;
}
.wrapper-news-table a {
	color: #00b3ec;
}
.wrapper-news-table a[target="_blank"]:after {
	content: url("../img/icon_outer_link.png");
	margin-left: 10px;
	margin-right: 5px;
}
.wrapper-news-table > .list-tablelayout > dd > dl > dt {
	display: block;
	width: 100%;
	font-weight: normal;
	margin-bottom: 20px;
}
.wrapper-news-table > .list-tablelayout > dd > dl > dd {
	display: block;
	padding-left: 0;
}
h3.title-3-grayborder {
	font-size: 22px;
	font-weight: bold;
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 16px;
	margin-bottom: 18px;
	line-height: 1.45em;
}
ul.list-link-arrow-right {
	margin-bottom: 30px;
}

ul.list-link-arrow-right li {
	display: inline-block;
	margin-left: 30px
}
ul.list-link-arrow-right li:first-child {
	margin-left: 0;
}
ul.list-link-arrow-right li a {
	color: #333333;
}
ul.list-link-arrow-right li a:after{
	content: url("../img/ico_link_arrow_text.png");
	padding-left: 10px;
}
.list-3clm-news-report {
	margin-top: 30px;
}
.list-3clm-news-report > li {
	width: 297px;
	display: inline-block;
	vertical-align: top;
	margin-right: 30px;
}
.list-3clm-news-report.thin > li,
.list-3clm-news-report > li.thin {
	width: 200px;
}
.list-3clm-news-report > li:last-child {
	margin-right: 0;
}
.list-3clm-news-report > li > dl > dt {
	margin-top: 10px;
	color: #999999;
}
.content-aside {
		visibility: inherit!important;
}
.tab-content {
	margin-bottom: 70px;
}
#press_link ul.sub li {
	display: inline-block;
	margin-left: 30px;
}
#press_link ul.sub li:first-child {
	margin-left: 0;
}
#press_link ul.sub li a::after{
	content: url("../img/ico_link_arrow_text.png");
	padding-left: 10px;
}
ul.list-link-arrow-right li a {
	color: #333333;
}
.selected {
	background: none!important;
	cursor: pointer!important;
	display: inline-block!important;
	font-size: 14px!important;
	font-weight: bold;
	height: auto!important;
	padding: 0!important;
	transition: none!important;
}
.selected a {
	color: #333333!important;
}
.selected a:hover {
	color: #333333!important;
	text-decoration: none;
	cursor: pointer!important;
}
div#ir_library div#announcement_all dd {
	padding: 10px 15px 15px 130px!important;
}
/*--------------------------------------------

	目的別で探す

---------------------------------------------*/
#maintitle_second.product-custom-molding {
	background: url("../img/mv_custom_molding.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}

#maintitle_second.product-small-scale {
	background: url("../img/mv_small_scale.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}

#maintitle_second.product-meduim-scale {
	background: url("../img/mv_meduim_scale.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}

#maintitle_second.product-preform {
	background: url("../img/mv_preform.png")no-repeat right top #f7f8f8;
	background-size: auto;
	height: 160px;
	padding-top: 0;
}
/*--------------------------------------------

	拠点一覧

---------------------------------------------*/
.wrapper-location-map {
	text-align: center;
	margin-bottom: 60px;
}

.wrapper-area-location {
	margin-top: 70px;
}
.list-flag-company li {
	display: inline-block;
}
.list-flag-company li:first-child {
	line-height: 1.7em;
	margin-right: 10px;
	vertical-align: top;
}
.list-flag-company li:last-child {
	margin-top: 2px;
	line-height: 1.5em;
}

dl.list-inner-contact dt,
dl.list-inner-contact dd {
	line-height: 1.5em;
	display: inline-block;
}

dl.list-inner-contact dt {
	font-size: 14px;
	width: auto!important;
	font-weight: bold;
	padding-right: 0!important;
}
.list-inner-contact dt:after {
	font-weight: normal;
	content: ":";
	margin: 0 10px 0 8px;
}
/*--------------------------------------------

	汎用パーツ

---------------------------------------------*/
/*--------------------------------------------
	パンくず
---------------------------------------------*/
/* パンくず */
#breadclumb ul {
	padding: 15px 0;
	margin-top: 81px;
}
#breadclumb ul li {
	display: inline;
	width: auto;
	height: 40px;
	text-align: center;
	font-size: 11px;
	padding-left: 5px;
}
#breadclumb ul li:after {
	content: ">";
	padding-left: 10px;
}
#breadclumb ul li.display-page:after {
	content: "";
}
#breadclumb ul li a {
	color: #333333;
}
#breadclumb ul li a:hover {
	color: #333333;
}
/*--------------------------------------------
	擬似テーブルレイアウト
---------------------------------------------*/
dl.list-tablelayout {
	display: table;
	width: 100%;
	border-bottom: 1px dotted #c9c9c9;
	padding-bottom: 30px;
	padding-top: 25px;
}
dl.list-tablelayout.company-name {
	padding-top: 60px;
}

dl.list-tablelayout dt {
	display: table-cell;
	font-weight: bold;
	vertical-align: top;
	width: 160px;
	padding-right: 30px;
	font-size: 16px;
	line-height: 1.8em;
}
dl.list-tablelayout.shareinfo dt {
	width: 320px;
}
dl.list-tablelayout dt span {
	width: 146px;
	display: table-cell;
}
dl.list-tablelayout dt span.flag {
	display: table-cell;
	width: 44px;
}
dl.list-tablelayout dd {
	display: table-cell;
	vertical-align: top;
}
/*--------------------------------------------
	テーブル
---------------------------------------------*/
.table-clm3-border {
	width: 100%;
}
.table-clm3-border tr {
}
.table-clm3-border th {
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px solid #c9c9c9;
	padding: 30px 0;
	vertical-align: top;
}
.table-clm3-border th.first,
.table-clm3-border td.first {
	width: 480px;
}
.table-clm3-border td {
	padding: 30px 0;
	vertical-align: top;
	border-bottom: 1px dotted #c9c9c9;
}

.table-clm4-border {
	width: 100%;
}
.table-clm4-border tr {
}
.table-clm4-border th {
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px solid #c9c9c9;
	padding: 30px 0;
	vertical-align: top;
}
.table-clm4-border th.first,
.table-clm4-border td.first {
	width: 240px;
}
.table-clm4-border td {
	padding: 30px 0;
	vertical-align: top;
	border-bottom: 1px dotted #c9c9c9;
}
/*--------------------------------------------
	レイアウト
---------------------------------------------*/
/* 右寄せ、左寄せ */
.f-left { float: left; }
.f-right { float: right; }
/* 下層メインタイトル index*/
#maintitle {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 20.31%;
	margin-bottom: 67px;
}
#maintitle > .inner-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}
#maintitle > .inner-frame > div {
	position: relative;
	width: 960px;
	height: 100%;
	margin: 0 auto;
}
#maintitle .inner-frame h1 {
	font-size: 34px;
	color: #ffffff;
	/*text-shadow: 1px 1px 10px #000000;*/
	font-weight: bold;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
#maintitle .inner-frame h1 span.subtext {
	color: #ffffff;
	font-size: 12px;
	opacity: 0.7;
	display: block;
	margin-top: 5px;
}
/* 下層メインタイトル second*/
#maintitle_second {
	position: relative;
	width: 100%;
	height: 100%;
	margin-bottom: 70px;
}
#maintitle_second > .inner-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}
#maintitle_second > .inner-frame > div {
	position: relative;
	width: 960px;
	height: 100%;
	margin: 0 auto;
}
#maintitle_second .inner-frame h1 {
	font-size: 34px;
	color: #333333;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-weight: bold;
	line-height: 0.8em;
}
#maintitle_second .inner-frame h1 p {
	margin-top: 10px;
	color: #ffffff;
	font-size: 12px;
}

#maintitle_second.third {
	background: #f7f8f8;
	line-height: 90px;
}
#maintitle_second.third h1 {
	font-size: 32px;
	font-weight: bold;
}
#maintitle_second.third h1 span{
	font-size: 16px;
	color: #999;
	font-weight: normal;
}
/* relationlinkのレイアウト */
.listlayout-4clm-borderlinks {
	padding-top: 20px;
	padding-bottom: 10px;
}
.listlayout-4clm-borderlinks li {
	float: left;
	width: 239px;
	border-left: 1px dotted #d2d2d2;
	text-align: center;
}
.listlayout-4clm-borderlinks li:first-child {
	border-left: none;
}
.listlayout-4clm-borderlinks li a {
	text-align: center;
}
.listlayout-4clm-borderlinks li p {
	margin-top: 15px;
}
/* 汎用２カラム（コンテンツ内） */
.layout-2clm {

}
.layout-2clm .left {
	float: left;
	text-align: center;
	width: 480px;
}
.layout-2clm .right {
	float: right;
	width: 440px;
}
.layout-2clm.no-center .left {
	text-align: left;
}
/*--------------------------------------------
	タイトル
---------------------------------------------*/
h2.title-2-grayborder {
	font-weight: bold;
	font-size: 24px;
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 13px;
	margin-bottom: 20px;
}
h2.title-2-bold {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 15px;
}
h2.title-2-blueborder {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	background: url("../img/title_border_blue.png")no-repeat center bottom;
	padding-bottom: 15px;
	margin-bottom: 30px;
	display: inline-block;
}
/* 質問アイコン付き */
h2.title-2-icon-question {
	font-size: 19px;
	font-weight: bold;
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 15px;
	margin-bottom: 20px;
	display: inline-block;
	background: url("../img/icon_faq_question.png")no-repeat left top;
	padding-left: 50px;
	width: 100%;
}
h3.title-3-bold {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 18px;
	line-height: 1.45em;
}
h3.title-3-bold-text {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 18px;
	line-height: 1.45em;
	color: #333333;
}

h4.title-4-text {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}
/*--------------------------------------------
	テキスト包括
---------------------------------------------*/
.wrapper-contents {
	margin-bottom: 110px;
}
.wrapper-text-40 {
	margin-bottom: 40px;
}
.wrapper-text-65 {
	margin-bottom: 65px;
	font-size: 16px;
}
.wrapper-text-60 {
	margin-bottom: 60px;
}
.wrapper-text-50 {
	margin-bottom: 50px;
}
.wrapper-text-70 {
	margin-bottom: 40px!important;
}
.wrapper-tabcontents {
	margin-top: 50px;
}
/* 罫線付与 */
.wrapper-border-sectionarea {
	border-top: 1px solid #c9c9c9;
	margin-top: 70px;
}
.box-border-gray {
	border: 1px solid #c9c9c9;
	padding: 20px;
}
.box-border-gray hr {
	margin: 15px 0;
	border: none;
	border-top: 1px solid #cccccc;
	background: none;
}
.box-border-gray .adbicon {
	margin-right: 20px;
}
hr.border-top {
	border-top: 1px solid #cccccc;
}
/* 内余白30px */
.box-border-large {
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	padding: 30px;
}
/* 四角ボックス */
.box-bordergray-square {
	border: 2px solid #e6e6e6;
	padding: 18px 30px;
}
ul.listlayout-4clm {

}
ul.listlayout-4clm li {
	width: 220px;
	float: left;
	margin-left: 25px;
}
ul.listlayout-4clm li:first-child {
	margin-left: 0;
}
ul.listlayout-4clm li .box-image p {
	margin-top: 10px;
	font-weight: bold;
}
/*--------------------------------------------
	アコーディオン
---------------------------------------------*/
.accordion.detail {
	display: block;
}
.accordion .on,.off { cursor: pointer; display: inline-block;}
.accordion .on:after {	content: url("../img/ac_open.png"); padding-left: 5px;}
.accordion .off:after { content: url("../img/ac_close.png"); padding-left: 5px;}
/*--------------------------------------------
	リンク
---------------------------------------------*/
/* >アイコンつきラウンドボックス */
.box-link-round {
	text-align: center;
	border: solid 2px #ffffff;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-o-border-radius: 30px;
	-ms-border-radius: 30px;
	height: 45px;
	line-height: 45px;
	width: 240px;
	margin: 0 auto;
	background: url("../img/arrow_right_white.png") no-repeat right center;
}
.box-link-round a {
	display: block;
	color: #ffffff;
}
.box-link-round:hover,
.box-link-round:hover a {
	color: #ffffff;
	opacity: 0.7;
}
/* ↓アイコンつきラウンドボックス */
.box-link-round-under {
	text-align: center;
	border: solid 2px #ffffff;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-o-border-radius: 30px;
	-ms-border-radius: 30px;
	height: 45px;
	line-height: 45px;
	width: 240px;
	margin: 0 auto;
}
.box-link-round-under a {
	display: block;
	color: #ffffff;
}
.box-link-round-under a::after {
	content: url("../img/arrow_right_white_under.png");
	padding-left: 10px;
}
.box-link-round-under:hover,
.box-link-round-under:hover a {
	color: #ffffff;
	opacity: 0.7;
}
/* >アイコンつきラウンドボックス（青） */
.box-link-round.blue {
	text-align: center;
	border: solid 2px #00b3ec;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-o-border-radius: 30px;
	-ms-border-radius: 30px;
	height: 48px;
	line-height: 48px;
	width: 240px;
	margin: 0 auto;
	background: none;
}
.box-link-round.blue a {
	color: #00b3ec;
	font-size: 16px;
}
.box-link-round.blue a::after {
	content: url("../img/icon_blueround_link.png");
	padding-left: 12px;
}
.box-link-round.blue:hover,
.box-link-round.blue:hover a {
	color: #00b3ec;
	opacity: 0.7;
}
/* >アイコン（青）つきボーダーグレーボックス */
.box-link-round-fontblue {
	text-align: center;
	border: solid 2px #e5e5e5;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-o-border-radius: 30px;
	-ms-border-radius: 30px;
	height: 48px;
	line-height: 48px;
	width: 300px;
	margin: 0 auto;
	background: none;
}
.box-link-round-fontblue a {
	color: #00b3ec;
	font-size: 16px;
	display: block;
	font-weight: bold;
}
.box-link-round-fontblue a::after {
	content: url("../img/icon_blueround_link.png");
	padding-left: 12px;
}
.box-link-round-fontblue:hover,
.box-link-round-fontblue:hover a {
	color: #00b3ec;
	opacity: 0.7;
}

/* >アイコンリンク（矢印右） */
a.link-arrow-right:after,
p.link-arrow-right:after {
	content: url("../img/ico_link_arrow_text.png");
	padding-left: 10px;
	color: #333333;
}
/* >アイコンリンク（矢印左） */
a.link-arrow-left:before,
p.link-arrow-left:before {
	content: url("../img/icon_blueround_link_left.png");
	padding-left: 10px;
	color: #333333;
}
/* pdfアイコンつきリンク */
span.link-ico-pdf-right:after,
a.link-ico-pdf-right:after {
	content: url("../img/ico_pdf.png");
	padding-left: 10px;
	position: relative;
	top: 4px;
}
/* >アイコンリンク（矢印上） */
a.link-arrow-top:after,
p.link-arrow-top:after {
	content: url("../img/ico_arrow_top.png");
	color: #333333;
	padding-left: 10px;
}
/* ダウンロードアイコンつきリンク */
a.link-download-right:after {
	content: url("../img/ico_link_download.png");
	padding-left: 10px;
	position: relative;
	top: 4px;
}
/* 汎用リストリンク（矢印アイコンつき） */
ul.list-link-arrow li {
	padding-bottom: 18px;
	margin-left: 0;
}
ul.list-link-arrow li a::after {
	content: url("../img/ico_link_arrow_text.png");
	padding-left: 10px;
}
/* 横並びリンク */
ul.list-link-arrow-listleft li {
	padding-bottom: 18px;
	margin-left: 0;
	display: inline-block;
	margin-right: 28px;
}
ul.list-link-arrow-listleft li a::after {
	content: url("../img/ico_link_arrow_text.png");
	padding-left: 10px;
}
/* 既存アイコン削除 */
div#ir_library dd a {
	background: url("../img/ico_link_arrow_news.png")no-repeat right center!important;
	display: block;
}
div#ir_library dd a.pdf {
	padding-left: 0!important;
	display: block!important;
}
/* 関連商品など、横並びリンクリスト */
ul.list-link-firstborder li {
	display: inline-block;
	margin-left: 40px;
}
ul.list-link-firstborder li:first-child {
	border-right: 1px solid #c9c9c9;
	margin-left: 0;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 40px 10px 0;
}
/* ページ内リンク */
ul.list-inpagelink li {
	display: inline-block;
	padding-right: 30px;
	padding-bottom: 18px;
}
ul.list-inpagelink li a::after {
	content: url("../img/ico_arrow_down.png");
	padding-left: 10px;
}
ul.list-inpagelink.large li {
	float: left;
	width: 210px;
	padding-right: 30px;
	padding-bottom: 18px;
	min-height: 25px;
	font-size: 16px;
}

/* メールアイコン */
.mailto {
	color: #00b3ec;
}
a.mailto:after {
	content: url("../img/ico_mailto.png");
	position: relative;
	top: 2px;
}
.f-left-catalogs {
	float: left;
	width: 220px;
}
.f-right-catalogs {
	float: left;
	width: 180px;
	padding-left: 20px;
}
/*--------------------------------------------
	フォーム
---------------------------------------------*/
input[type="text"].form-text {
	border: 1px solid #d9d9d9;
	padding: 10px 8px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	width: 532px;
}
textarea.form-textarea {
	border: 1px solid #d9d9d9;
	padding: 10px 8px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	width: 512px;
	height: 156px;
}
input[type="submit"].button-positive,
input[type="reset"].button-positive {
	text-align: center;
	border: solid 2px #f39a21;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-o-border-radius: 30px;
	-ms-border-radius: 30px;
	height: 48px;
	width: 300px;
	margin: 0 auto;
	color: #f39a21;
	background: none;
	background: url("../img/arrow_orange.png")no-repeat 180px center;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
}
input[type="submit"].button-positive-blue,
input[type="reset"].button-positive-blue {
	text-align: center;
	border: solid 2px #00b3ec;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-o-border-radius: 30px;
	-ms-border-radius: 30px;
	height: 48px;
	width: 300px;
	margin: 0 auto;
	color: #00b3ec;
	background: none;
	background: url("../img/icon_blueround_link.png")no-repeat 180px center;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
}
input[type="submit"].button-negative,
input[type="reset"].button-negative {
	text-align: center;
	border: 1px solid #e5e5e5;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	-o-border-radius: 30px;
	-ms-border-radius: 30px;
	height: 48px;
	width: 300px;
	margin: 0 auto;
	background: none;
	background: url("../img/arrow_gray.png")no-repeat 180px center;
	cursor: pointer;
	font-size: 16px;
}
/* フォームレイアウト */
dl.list-tablelayout-form3clm {
	display: table;
	width: auto;
	border-bottom: 1px dotted #c9c9c9;
	padding-bottom: 26px;
	padding-top: 27px;
	margin: 0 80px;
}
dl.list-tablelayout-form3clm dt {
	width: 220px;
	display: table-cell;
	vertical-align: top;
	font-size: 16px;
	font-weight: bold;
	padding-top: 8px;
}
dl.list-tablelayout-form3clm dd {
	width: 532px;
	display: table-cell;
	vertical-align: top;
	padding-left: 49px;
}
/* 必須 */
span.attention {
	display: inline-block;
	float: right;
	color: #ee3d23;
	font-size: 11px;
	text-align: center;
	border: 1px solid #ee3d23;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 8px;
	padding: 3px 4px;
	margin-top: -4px;
	width: 50px;
}
select.form-select {
	height: 33px;
	line-height: 33px;
	color: #333333;
	border: 1px solid #c9c9c9;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	width: 194px;
	padding: 3px 4px;
}
/*--------------------------------------------
	リスト
---------------------------------------------*/
/* 黒丸リスト */
ul.list-circle li {
	list-style: disc;
	margin-top: 15px;
	margin-left: 15px;
}
ul.list-circle li:first-child {
	margin-top: 0;
}
/* ナンバーリスト */
ul.list-number li {
	list-style-type: decimal;
	margin-top: 15px;
	margin-left: 15px;
}
ul.list-circle li:first-child {
	margin-top: 0;
}
/* ボーダードットつきリスト */
ul.list-border-dots li {
	border-top: 1px dotted #c9c9c9;
	padding-top: 28px;
}
ul.list-border-dots li:first-child {
	border-top: 0;
	padding-top: 0;
}
/* 横幅コンテンツの半分の定義リスト */
dl.list-small-detail {
	width: 100%;
	padding-bottom: 30px;
}
dl.list-small-detail dt {
	width: 30%;
	float: left;
	font-weight: bold;
}
dl.list-small-detail dd {
	width: 70%;
	float: left;
}
/*--------------------------------------------
	ラベル
---------------------------------------------*/
span.label-orange {
	text-align: center;
	border: solid 1px #f39a21;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	-o-border-radius: 15px;
	-ms-border-radius: 15px;
	height: 15px;
	line-height: 15px;
	background: none;
	font-size: 13px;
	color: #f39a21;
	padding: 3px 5px;
	width: 49px;
	font-weight: bold;
	margin-right: 10px;
}
/*--------------------------------------------
	余白
---------------------------------------------*/
.pd-left-20 {
	padding-left: 20px;
}
.mg-top-30 {
	margin-top: 30px;
}
.mg-top-20 {
	margin-top: 20px;
}
.mg-bottom-20 {
	margin-bottom: 20px;
}
.mg-bottom-30 {
	margin-bottom: 30px;
}
.mg-bottom-80 {
	margin-bottom: 80px;
}
.mg-left-20 {
	margin-left: 20px;
}
.pd-40 {
	padding: 40px 0;
}
ul.pd-40 li:nth-child(4n){
	margin-left: 0px;
}
/*--------------------------------------------
	文字調整
---------------------------------------------*/
.ta-right {
	text-align: right;
}
.fw-bold {
	font-weight: bold;
}
.ta-center {
	text-align: center;
}

.annotation-text {
	font-size: 12px;
	color: #999999;
}
.f-gray {
	color: #999999;
}
.f-black {
	color: #000000;
}
.ff-bold {
	font-weight: bold;
}
.f-small {
	font-size: 12px;
}
.gsc-input-box {
	height: 35px!important;
}


ul.qbiquw > li:nth-child(2n){
	float: right !important;
	margin-right: 0px !important;
}

ul.kabskja10 li:nth-child(3n){
	margin-right: 30px !important;
}
ul.kabskja10 li:nth-child(2n){
	margin-right: 0px !important;
}



ul.heigyjt li{
	height: 120px;
	overflow: hidden;
}