@charset "utf-8";
/* CSS Document */

/********** リセットcss ここから **********/

/* 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;
}

a { text-decoration: none; }

img{
	display: block;
	margin: 0 auto;
	padding: 0;
}

/********** リセットcss ここまで **********/


/********** 基本css ここから **********/
body, html {
    height: 100%;
	width: 100%;
	min-width: 300px;
}

body{
	background: #ffffff;
	color: #444444;
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , "Helvetica" , "Arial" , "Verdana" , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ","Meiryo" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5em;
	letter-spacing: 0.1em;
}

/* フォントサイズ PC用 */
@media screen and (min-width: 768px) {
	body{ font-size: 14px; }
}

/* フォントサイズ スマホ用 */
@media screen and (max-width: 767px) {
	body{ font-size: 16px; }
}

/*@media screen and (max-width: 1020px) and (min-width: 768px) {タブレット用テスト
	body{ background: #000000; }
}*/

img {
	max-width: 100%;
}
table {
	width: 100%;
}
.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.both {
	clear: both;
}
.inline_block {  
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}
* {  
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

a{ color: #444444; }
a:hover{
	color: #0361a7;
	font-weight: bold;
	/*padding-left: 0.2em;*/
}

sup { /* 上付き文字 */
	font-size: 75.5%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
sub { /* 下付き文字 */
	font-size: 75.5%;
	vertical-align: bottom;
	position: relative;
	top: 0.1em;
}

#wrapper{
		width: 960px;
		margin: auto;
}

#sidebar { /* サイドメニュー */
	float: right;
	width: 220px;
}

#content { /* コンテンツ */
	float: left;
	width: 700px;
}

/* スマホ閲覧時横幅マックス */
@media screen and (max-width: 767px){
	#wrapper{ width: 100%; }
	#content{
		width: 100%;
		float: none;
	}
}


/* ぱんくず */
.breadcrumb{ max-width: 960px; margin: 20px auto 5px auto; }
.breadcrumb ol li {
        /* liを横並び＆ブレットを消す */
        display: inline;
        list-style-type: none;
}
.breadcrumb ol li:before {
        /* liの前に記号追加 */
        content: " > ";
}
.breadcrumb ol li:first-child:before {
        /* 最初のliだけcontentを消す */
        content:"";
}
.breadcrumb ol li a{
	text-decoration: underline;
	color:#0361a7;
}
.breadcrumb ol li a:hover{
	text-decoration: none;
}

/* リストタグ ナカグロ */
ul.list_disc{
	list-style-type: disc;
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
	margin: 10px 1.0em 10px 1.0em;
}

/* リストタグ 黒丸 */
ul.list_black_circle{ margin-bottom: 10px; }
ul.list_black_circle li{
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
}
ul.list_black_circle li:before{	content: '●'; }


/* リストタグ 数字 */
ol.list_number{
	list-style: decimal;
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
	margin: 0 1em 1em 1em;
}
ol.list_number li{
	margin: 0 0 0.5em 0;
}

/* リストタグ かっこ数字 */
ol.list_sub{
	padding-left: 3em;
	text-indent: -3em;
	list-style-position: inside;
}
/* リストタグ 数字なし */
ol.list_number_none{
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
}


/* リード文 */
.content_lead{
	font-weight: bold;
	padding: 0 1.0em;
}

/* ページトップへ */
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    padding: 80px 10px;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding:80px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
/********** 基本css ここまで **********/


/********** レイアウト用css ここから **********/

/* 表示切替用 */
@media screen and (max-width: 767px){ /* スマホ閲覧時非表示 */
	.sp_none{ display: none !important; }
}
@media screen and (min-width: 768px) { /* PC閲覧時非表示 */
	.pc_none{ display: none !important; }
}

.height_fix{ /* 横並びの箱の高さを揃える */
    display:-webkit-box;
    display:-moz-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

.box1 { width: 100%; }

.box2_1 {
	width: 48%;
	float: left;
}
.box2_2 {
	width: 48%;
	float: right;
}
.box3_1, .box3_2, .box3_3 {
	width: 32%;
	float: left;
}
.box3_2 {
	margin-right: 2%;
	margin-left: 2%;
}

.float_L{ float: left; }
.float_R { float: right; }

/* スマホ フロート解除 */
@media screen and (max-width: 767px){
.box2_1, .box2_2, .box3_1, .box3_2, .box3_3, .float_L, .float_R{ float:none !important; width: 100%; }
.box3_2{ margin: 0; }
}

.boxs img{ margin-bottom: 10px; }

/* ボタン基本設定 色とサイズは個別に指定 */
a.btn{
	font-weight: bold;
	padding: 1.0em 0.8em 0.8em 0.8em;
	text-align: center;
	margin: auto;
	display: block;
	border: solid 2px;
	border-radius: 3px 3px 3px 3px; /* CSS3草案 */
	-webkit-border-radius: 3px 3px 3px 3px; /* Safari,Google Chrome用 */
	-moz-border-radius: 3px 3px 3px 3px; /* Firefox用 */
}

/* 調整用 css */
.txt_R { text-align: right; }
.txt_B { font-weight: bold; }
.txt_C { text-align: center; }

/* 文字の大きさ */
.txt_size02 { font-size: 2.0em; }
.txt_size03 { font-size: 3.0em; }
.txt_size04 { font-size: 4.0em; }
.txt_size05 { font-size: 5.0em; }
.txt_size06 { font-size: 6.0em; }

/* 余白 */
.m00 { margin: 0 !important; }
.mb20{ margin-bottom: 20px; }
.mt20{ margin-top: 20px; }
.mt3em { margin-top: 3em; }

/********** レイアウト用css ここまで **********/


/********** 見出し用css ここから **********/

/* 見出し */
h1 a span { display: none; }

/* 各ページ h2 見出し */
#h2_business{ background:url(img/img_main_business_introduction.png) no-repeat center; }
#h2_office{ background:url(img/img_main_office.png) no-repeat center; }
#h2_product_type{ background:url(img/img_main_products_type.png) no-repeat center; }
#h2_product_eng{ background:url(img/img_main_products_eng.png) no-repeat center; }
#h2_policy{ background:url(img/img_main_policy.png) no-repeat center; }
#h2_company{ background:url(img/img_main_company.png) no-repeat center; }
#h2_info-index{ background:url(img/img_main_company.png) no-repeat center; }/*会社情報ページ見出し画像共有*/
#h2_info{ background:url(img/img_main_company.png) no-repeat center; }/*会社情報ページ見出し画像共有*/
#h2_inquiry{ background:url(img/img_main_inquiry.png) no-repeat center; }


#h2_news{ background:url(img/news_main.png) no-repeat center; }

#h2_business,
#h2_office,
#h2_product_type,
#h2_product_eng,
#h2_policy,
#h2_company,
#h2_info-index,
#h2_info,
#h2_inquiry
{
	width: 100%;
	height: 166px;
	padding-top: 50px;
	background-size: cover;
	margin-bottom: 30px;
}
#h2_box{
	padding: 20px;
	max-width: 1000px;
	margin: auto;
	color: #ffffff;
}
#h2_box h2{ letter-spacing: 0.2em; }
#h2_box h2 span{
	display: block;
	font-size: 1.4em;
	letter-spacing: 0.5em;
	font-weight: bold;
	padding-bottom: 0.2em;
}
@media screen and (max-width: 767px){ /* スマホ */
#h2_business,
#h2_office,
#h2_product_type,
#h2_product_eng,
#h2_policy,
#h2_company,
#h2_info-index,
#h2_info,
#h2_inquiry
{
	padding-top: 40px;
}
}
h3 {
	line-height: 1.2em;
	font-weight: bold;
	font-size: 1.5em;
	text-align: center;
	padding: 0.5em;
	border-bottom: solid 2px #0361a7;
	border-top: solid 2px #0361a7;
	margin-bottom: 20px;
}
h4 {
	margin: 10px 0 10px 0;
	text-align: left;
	font-size: 1.0em;
	font-weight: bold;
	padding: 0.5em 0.5em 0.5em 1em;
	border-bottom: dotted 1px #0361a7;
}
h5{
	margin: 10px 0 10px 0;
	text-align: left;
	font-size: 1.0em;
	font-weight: bold;
}

/********** 見出し用css ここまで **********/


/********** グローバルナビ ここから **********/

.fixed { /* グローバルナビ 上部固定用 */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

#global_navi_menu {
	width: 100%;
	background-color: rgba(255,255,255,0.8);
	color: #ffffff;
	border-bottom: 1px solid rgba(204,204,204,0.6);
}


@media screen and (min-width: 768px){ /*** グローバルナビ PC用ここから ***/

body{ padding-top: 60px; } /* 上部固定用 */

#global_navi_menu_box{
		max-width: 960px;
		margin: auto;
	}

/* ロゴ */
#global_navi_menu_box h1#img_logo{
	float: left;
	color: #ffffff;
	display: block;
	width: 30%;
	height: 60px;
    background: url('img/img_logo.png') 0 0 no-repeat;
	background-position: 20px center;
	background-size: 75% auto;
}
#global_navi_menu_box h1#img_logo a{
	display: block;
	width: 100%;
	height: 100%;
}
/* ★調整
#global_navi_menu_box h1#img_logo a:hover{
	display: block;
	width: 30%;
	height: 60px;
    background: url('img/img_logo.png') 0 0 no-repeat;
	background-position: 20px center;
	background-size: 75% auto;
}
 */
/* 他 */
#global_navi_menu_pc ul{
	float: left;
	width: 70%;
}
#global_navi_menu_pc ul li{
	float: left;
	width: 20%;
	line-height: 1.2em !important;
}

#global_navi_menu_pc ul li span{
	display: block;
	font-size: 0.8em;
}
#global_navi_menu_pc ul li span.navi_font{
	padding-top: 0.9em;
	font-weight: bold;
	font-size: 1.15em;
}
#global_navi_menu_pc ul li a{
	color: #444444;
	display:block;
	height: 60px;
	width: 100%;
	text-align: center;
}
#global_navi_menu_pc ul li a:hover{
	color: #ffffff;
	background: #0361a7;
}
	
} /*** グローバルナビ PC用ここまで ***/



@media screen and (max-width: 767px){ /*** グローバルナビ スマホ用ここから ***/
body{ padding-top: 64px; } /* 上部固定用 */

#global_navi_menu_box{
		width: 100%;
		margin: auto;
		height: 60px;
	}
/* ロゴ */
#global_navi_menu_box h1#img_logo{
	float: left;
	color: #ffffff;
	display: block;
	width: 100%;
	height: 64px;
    background: url('img/img_logo.png') 0 0 no-repeat;
	background-position: 20px center;
	background-size: 200px auto;
}
/* ★調整 */
#global_navi_menu_box h1#img_logo a:hover{
	display: block;
	width: 100%;
	height: 64px;
    background: url('img/img_logo.png') 0 0 no-repeat;
	background-position: 20px center;
	background-size: 200px auto;
}

#global_navi_menu_box{ position: relative; }

#global_navi_menu_sp {
    position: absolute;
    top: 0;
	right: 0;
	min-width: 300px;
}

#global_navi_menu_sp div#open {	background-color: #444444; }
#global_navi_menu_sp div#close { background-color: #444444; }

#global_navi_menu_sp input#menuButton { display: none; }

/* アイコン画像切り替え */
#global_navi_menu_sp input[type="checkbox"]:checked + label div#open{ display: none; }
#global_navi_menu_sp input[type="checkbox"] + label div#close { display: none; }
#global_navi_menu_sp input[type="checkbox"]:checked + label div#close { display: block; }

#global_navi_menu_sp label{
    cursor: pointer;
    display: block;
    margin: 0;
    text-decoration: none ;
}
#global_navi_menu_sp label div{ float: right; }

/* スマホ用リスト */
ul#global_navi_menu_sp_box {
	width: 100%;
    opacity: 0.9;
    margin: 0;
    padding: 0;
	border: solid 1px #000;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

ul#global_navi_menu_sp_box li{
    background: rgba(68,68,68,0.9);
    list-style: none;
    border-bottom: solid 1px #000;
	}

ul#global_navi_menu_sp_box li:last-child{ border:0; }

ul#global_navi_menu_sp_box li a{
    padding: 15px;
    text-decoration: none;
    color: #ffffff;
    display: block;
	text-align: center;
	font-weight: normal;
}
ul#global_navi_menu_sp_box li a:hover{
	background: #ffffff;
	color: #333333;
	font-weight: bold;
}
ul#global_navi_menu_sp_box li span{
	font-size: 0.7em;
}
ul#global_navi_menu_sp_box li span.navi_font{
	padding: 0.9em 0.5em 0 0;
	font-size: 1.0em;
}

#global_navi_menu_sp input[type="checkbox"] + label + ul#global_navi_menu_sp_box { display: none; }
#global_navi_menu_sp input[type="checkbox"]:checked + label + ul#global_navi_menu_sp_box { display: block; }

}/*** グローバルナビ スマホ用ここまで ***/

/********** グローバルナビここまで **********/

/********** サイドメニュー ここから **********/
#sidebar p.sidebar_btn{
	cursor: pointer;
	line-height: 50px;
	padding-left: 44px; /* アイコン左の余白 */
	height: 50px;
	position: relative;
	color: #ffffff;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#444444+1,303030+100 */
	background: #444444; /* Old browsers */
	background: -moz-linear-gradient(top, #444444 1%, #303030 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #444444 1%,#303030 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #444444 1%,#303030 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#303030',GradientType=0 ); /* IE6-9 */
	border: 1px solid #333333;
	
}
#sidebar .sidebar_box ul { display: none; }
#sidebar .sidebar_box { margin-bottom: 1px; }
#sidebar .sidebar_box a{
	display: block;
	height: 40px;
	line-height: 40px;
	padding-left: 10px;
	text-decoration: underline;
	background-color: #efefef;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #333333;
	border-right: 1px solid #333333;
}
#sidebar .sidebar_box a:hover{
	color: #333333;
	text-decoration: none;
	font-weight: normal;
}

#sidebar p.sidebar_btn span.sidebar_icon{
  	position: absolute;
	top: 35%;
	left: 10px;
	display: block;
	width: 21px;
	height: 14px;
	background: url('img/icon_img_sidebar.png') no-repeat;
}

#sidebar p.sidebar_btn span.open_close {
  	position: absolute;
	top: 20%;
	right: 20px;
	display: block;
	width: 14px;
	height: 14px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(135deg) translateY(-50%);
	transform: rotate(135deg) translateY(-50%);
}
#sidebar p.open span.open_close { /* jsでclassにopenを追加、矢印切替用 */
  	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	width: 14px;
	height: 14px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(-45deg) translateY(-50%);
}
/********** サイドメニュー ここまで **********/


/********** フッターナビ ここから **********/

#footer_box_back{
	border-top: solid 1px #cccccc;
	margin-top: 2.0em;
}

#footer_box h2{ letter-spacing: 0.2em; }
#footer_box h2 span{
	display: block;
	font-size: 1.4em;
	letter-spacing: 0.5em;
	font-weight: bold;
	padding-bottom: 0.2em;
}

#footer_box{
	max-width: 960px;
	margin: auto;
	padding-top: 2.0em;
}
#footer_box .box2_1{
	width: 50%;
	padding-right: 2.0em;
	border-right: solid 1px #cccccc;
}
#footer_box a.btn{
	padding-left: 2.6em;
	font-size: 1.2em;
	color: #ffffff;
	width: 100%;
	border-color: #444444;
	background: #444444 url('img/icon_img_mail.png') no-repeat;
	background-position: 10px center;
	background-size: auto 70%;
}
#footer_box a.btn:hover{
	border-color: #0361a7;
	background: #0361a7 url('img/icon_img_mail.png') no-repeat;
	background-position: 10px center;
	background-size: auto 70%;
}
/* 電話番号 */
#footer_contact_phone{ margin: 1.0em 0; }
.contact_phone_txt{
	padding-left: 1em;
	text-indent: -1em;
	margin: 1.0em auto;
}
#footer_contact_phone img{ width: 40px; padding-top: 2px; }
#footer_contact_phone img, #footer_contact_phone div{
	float: left;
}
.phone_number{ font-size: 1.5em; }

/* 会社住所 */
#footer_contact_address{ margin-top: 9.0em; }
.footer_company_name{
	font-size: 1.4em;
	letter-spacing: 0.2em;
	font-weight: bold;
}
.footer_company_address{ font-size: 1.15em; margin-top: 0.2em; }
.footer_copyright{ font-size: 0.8em; margin-top: 1.0em; }

ul.footer_menu li a:before {
	content: "＞";
}

/* スマホ用 */
@media screen and (max-width: 767px){
#footer_box{ text-align: center !important; }
.contact_phone_txt{
	text-align: center;
	width: 90%;
	margin: 1.0em auto;
}
#footer_box .box2_1{
	width: 100%;
	padding-right: 0;
	border-right: none;
}
#footer_box a.btn{
	font-size: 0.875em;
	width: 90%;
}
/* 電話番号 */
#footer_contact_phone{ width: 360px; margin: 1.0em auto; }
#footer_contact_phone img, #footer_contact_phone div{
	text-align: left;
	font-size: 0.875em;
}

/* 会社住所 */
#footer_contact_address{ margin-top: 1.5em; }
.footer_company_address{ font-size: 0.875em; margin-top: 0.2em; }
.footer_copyright{ font-size: 0.625em; margin-top: 1.0em; }

ul.footer_menu { width: 90%; margin:auto; margin-top: 1.5em; }
ul.footer_menu li{ display: inline; padding-right: 1.0em; }
}
/********** フッターナビ ここまで **********/


/********** インデックスページ ここから **********/

#index h2{ letter-spacing: 0.2em; }
#index h2 span{
	display: block;
	font-size: 1.4em;
	letter-spacing: 0.5em;
	font-weight: bold;
	padding-bottom: 0.2em;
}

#top_box03_back, #top_box04_back, #top_box05_back
{ margin-top: 2.0em; }

/* インデックスページ メイン画像 */
#top_box01_back{
	height: 680px;
	background-image: url('img/top_img_main01.png');
	background-position: center;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	background-size: cover;
	position:relative;
}
#top_box01{
	max-width: 960px;
	margin: auto;
}
#top_box01 img:hover{
	padding-top: 5px;
}
.vertical{ /* 縦書き文字 */
	position:absolute;
	top: 35%;
	left: 50%;
	display: inline;
	transform: translate(-50%, -50%);
	color: #fff100;
	font-size: 4.0em;
	line-height: 1.5em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	/* background: #ffffff; */
	height: 70%;
	/* width: 62%; */
	padding-top: 0.5em;
}
.lead{
	padding-top: 450px;
	color: #ffffff;
	font-size: 1.8em;
	text-align: center;
	line-height: 1.6em;
	padding-bottom: 1.0em; /* ↓上の余白、後で調整を入れる */
}
/* スマホ用 */
@media screen and (max-width: 767px){
	#top_box01_back{ height: 560px; }
	.vertical{ font-size: 2.3em; top: 30%; height: 58%; }
	.lead{ font-size: 1.2em; padding-top: 330px; }
}


/* インデックスページ サイニチはアクティオグループの一員です */
#top_box02_back{
	text-align: center;
	width: 100%;
	border-bottom: solid 1px #cccccc;
}
#top_box02{
	max-width: 960px;
	margin: auto;
	padding: 1em;
/* padding: 0.5em; */
}
#top_box02 img{
	float: left;
	padding-left: 23%;
}
#top_box02 p{
	float: right;
	line-height: 46px;
	font-size: 1.15em;
	font-weight: bold;
	padding-right: 16%;
}
/* タブレット　スマホ用 */
@media screen and (max-width: 1020px){
	#top_box02 img, #top_box02 p{ float:none !important; text-align:center; padding:0; }
	#top_box02 p{ font-size: 0.875em; line-height: 1.5em; }
}


/* インデックスページ Check it out！ */
#top_box03 h2 { text-align: center; margin-bottom: 2.0em; }
#top_box03 ul li p{ width: 98%; margin: auto; }
#top_box03 ul li img{ width: 98%; }

/* スマホ用 */
@media screen and (max-width: 767px){
	#top_box03 ul li{ font-size: 0.875em; margin-bottom: 1.5em; }
}



/* インデックスページ 商品情報、事業所一覧、事業紹介、会社情報 */
#top_box04_back{
	height: 540px;
	background-image: url('img/top_img_main02.png');
	background-position: center;
	background-repeat: no-repeat;
	-moz-background-size: cover;
	background-size: cover;
}
#top_box04{
	max-width: 960px;
	margin: auto;
	padding-top: 2.0em;
	color: #ffffff;
}

#top_box04 .box1 h2{ font-size: 110%; }

#top_box04 p{ margin: 1.0em 0 1.5em 0; }

#top_box04 .box1,
#top_box04 .box3_1, #top_box04 .box3_2, #top_box04 .box3_3 {
	padding: 1.8em;
	border: solid 2px #ffffff;
	border-radius: 3px 3px 3px 3px; /* CSS3草案 */
	-webkit-border-radius: 3px 3px 3px 3px; /* Safari,Google Chrome用 */
	-moz-border-radius: 3px 3px 3px 3px; /* Firefox用 */
}

#top_box04 .box1{ margin-bottom: 1.42em; }/* 20px */
#top_box04 .box1 a.btn{ margin: 0; }

#top_box04 a.btn{
	color: #ffffff;
	max-width: 200px;
	border-color: #ffffff;
}
#top_box04 a.btn:hover{
	background: #f5a738;
	border-color: #f5a738;
}
/* スマホ */
@media screen and (max-width: 767px){
	#top_box04{ text-align: center; padding: 0.5em; }
	#top_box04 .box1 a.btn{ margin: auto; }
	#top_box04 .box1{ border: none; }
	#top_box04 .box3_1, #top_box04 .box3_2, #top_box04 .box3_3 {
	width: 90%;
	margin: 0 auto 0.5em auto;
}
#top_box04 .box3_1, #top_box04 .box3_2, #top_box04 .box3_3 {font-size: 0.875em; }
#top_box04_back{ height: auto; }

}



/* インデックスページ お知らせ */
#top_box05_back{
	background-color: #efefef;
}
#top_box05{
	max-width: 960px;
	margin: auto;
	/* padding-top: 2.0em; */
	border-bottom: solid 3px #a3a3a3;
	border-top: solid 3px #a3a3a3;
	padding: 2.0em 0;
}
#top_box05 h2{ text-align: center; }

#in_top_box05{
	width: 90%;
	margin: auto;
}
#top_box05 dl{
	border-top: solid 2px #bfbfbf;
	border-bottom: solid 1px #bfbfbf;
	background-color: #efefef;
	margin: 2.0em 0;
}
#top_box05 dt, #top_box05 dd{
	float: left;
	margin: 1px 0 0 0;
}
#top_box05 dt{
	clear: both;
	width: 120px;
	padding: 1.0em;
}
#top_box05 dd{
	/* background-color: #efefef; */
	border-bottom: solid 1px #bfbfbf;
	width: 100%;
	margin-left: -120px;
	padding: 1.0em 1.0em 1.0em 120px;
}
#top_box05 a.btn{
	color: #444444;
	max-width: 200px;
	border-color: #757575;
}
#top_box05 a.btn:hover{
	color: #ffffff;
	background: #0361a7;
	border-color: #0361a7;
}


/********** 赤十字バナー ここから 設置場所：おしらせ一覧の下**********/

.bnr_wasurenai{margin-top: 30px;}


/********** 赤十字バナー ここまで **********/

/********** インデックスページ ここまで **********/


/********** 商品一覧ここから **********/

#product_type p.ql_link, #product_eng p.ql_link{
	margin: 30px;
}
#product_type p.ql_link a.btn, #product_eng p.ql_link a.btn{
	text-decoration: none;
	color: #ffffff;
	background: #0361a7;
	border-color: #0361a7;
}
#product_type p.ql_link a.btn:hover, #product_eng p.ql_link a.btn:hover{
	color: #444444;
	background: #ffffff;
	border-color: #757575;
}

#product_eng h2{ /* 工種別用 */
	font-weight: bold;
	font-size: 1.5em;
	text-align: center;
	padding: 0.5em;
	border-bottom: solid 2px #0361a7;
	border-top: solid 2px #0361a7;
	margin-bottom: 20px;
}

/* h3 商品カテゴリ */
.product_box h3{ margin-bottom: 0; }

.product_box h3.product_btn {
	text-align: left;
	background-color: #0361a7;
	color: #ffffff;
	font-size: 1.4em;
	font-weight: bold;
	padding: 0 !important;
	cursor: pointer;
}
.product_box h3.product_btn span.h3_line {
	position: relative;
	min-height: 48px;
	line-height: 48px;
	padding-left: 30px;
	display: block;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}
/*IE10以降に適用されるCSSハック（余白調整）*/
@media all and (-ms-high-contrast:none){
.product_box h3.product_btn span.h3_line {
    padding-top: 4px;
  }
}

.product_box h3.product_btn span.h3_deco { /* 縦 */
	position:absolute;
	top: 46%;
	left: 5px;
	height: 4px;
	width: 24px;
	background-color: #ffffff;
	margin: auto;
	border-radius: 2px;
	-webkit-transform: rotate(90deg) translateY(-50%);
	transform: rotate(90deg) translateY(-50%);
}
.product_box h3.product_btn span.open_close {
  	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	width: 18px;
	height: 18px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(-45deg) translateY(-50%);
}
.product_box h3.close span.open_close { /* jsでclassにcloseを追加、矢印切替用 */
  	position: absolute;
	top: 0;
	right: 22px;
	display: block;
	width: 18px;
	height: 18px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(135deg) translateY(-50%);
	transform: rotate(135deg) translateY(-50%);
}

.product_box {
	background-color: #dbf0ff;
	margin-bottom: 20px;
}

.product_box ul{
	float: right;
	width: 500px;
	padding: 1em;
}
.product_box a{
	display: block;
	min-height: 40px;
	line-height: 40px;
	padding-left: 10px;
	text-decoration: underline;
	border-bottom: solid 1px #0850a3;
}
.product_box a:hover{
	color: #333333;
	text-decoration: none;
	font-weight: normal;
}

.product_box img{
	float: left;
	border-top: solid 20px #dbf0ff;
	border-left: solid 20px #dbf0ff;
	border-bottom: solid 20px #dbf0ff;
}

/* スマホ用 */
@media screen and (max-width: 767px){
	.product_box img{ display: none; }
	.product_box ul{ float: none; width: 100%; }
}

/********** 商品一覧ここまで **********/


/********** 商品詳細ここから **********/

#product_item p{ line-height: 1.2em; }

/* h2 商品見出し */
#product_item h2 {
	text-align: left;
	background-color: #0361a7;
	color: #ffffff;
	font-size: 1.4em;
	font-weight: bold;
	padding: 2px 0;
	margin-bottom: 20px;
}
#product_item h2 span.h2_line {
	position: relative;
	min-height: 48px;
	line-height: 48px;
	padding-left: 30px;
	display: block;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}
/*IE10以降に適用されるCSSハック（余白調整）*/
@media all and (-ms-high-contrast:none){
#product_item h2 span.h2_line {
    padding-top: 4px;
  }
}
#product_item h2 span.h2_deco { /* 縦 */
	position:absolute;
	top: 46%;
	left: 5px;
	height: 4px;
	width: 24px;
	background-color: #ffffff;
	margin: auto;
	border-radius: 2px;
	-webkit-transform: rotate(90deg) translateY(-50%);
	transform: rotate(90deg) translateY(-50%);
}

/* h3 商品見出し */
#product_item h3 {
	border: none;
	margin: 20px 0 10px 0;
	text-align: left;
	background-color: #dbf0ff;
	color: #0361a7;
	font-size: 1.2em;
	font-weight: bold;
	position: relative;
	min-height: 40px;
	line-height: 40px;
	padding: 0 0 0 30px;
	display: block;
}
/*IE10以降に適用されるCSSハック（余白調整）*/
@media all and (-ms-high-contrast:none){
#product_item h3 {
    padding-top: 4px;
  }
}
#product_item h3 span.h3_deco { /* 縦 */
	position:absolute;
	top: 46%;
	left: 5px;
	height: 4px;
	width: 24px;
	background-color: #0361a7;
	margin: auto;
	border-radius: 2px;
	-webkit-transform: rotate(90deg) translateY(-50%);
	transform: rotate(90deg) translateY(-50%);
}



/* 仕様表 */
#product_item table{ width: 100%; margin: 10px auto; table-layout: fixed; font-size: 0.9em; }
#product_item table th{ background: #f2f2f2; text-align: left; }
#product_item table td{ text-align: center; }
#product_item table th, #product_item table td{
	word-break : break-all;
	border: solid 1px #808080;
	padding: 0.5em;
	vertical-align: middle;
	}
#product_item table tr:first-of-type th{ /* 1行目選択 */
	font-weight: bold;
	text-align: center;
}
#product_item table tr:nth-of-type(1) th:nth-of-type(1){ /* 1セル目選択 */
	width: 30%;
}

/* 運転資格・法定検査等 */
#product_item ul.ql_list { margin: 10px 10px 5px 10px; }
#product_item ul.ql_list li{
	float: left;
	text-align: center;
	min-width: 50px;
	font-weight: bold;
	margin-right: 5px;
	padding: 10px;
	border-radius:12px;
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	/* border:3px solid #eca33a; */
}
#product_item p.ql_link{
	margin: 0 10px 20px 10px;
	padding-left: 1em;
	text-indent: -1em;
}
#product_item p.ql_link a{
	text-decoration: underline;
	color: #0361a7;
}
#product_item p.ql_link a:hover{
	text-decoration: none;
}

#product_item ul.list_disc{	margin: 10px; }
#product_item p{ margin: 10px; }

/* 注意アイコン */
p.caution{
	text-indent: -1.5em;
	padding-left: 1.5em;
}
p.caution:before {
    content: url(img/icon_img_caution.png);
    margin: 2px 2px 2px 0;
    position: relative;
    top: 2px;
}
/********** 商品詳細ここまで **********/



/********** 事業所一覧ここから **********/
.iframe {
	position: absolute;
    top: 0;
    left: 0;
	width: 100%;
	height: 100%;
}
.iframe-wrapper {
	position: relative;
	width: 100%;
	padding: calc(266 / 400 * 100%) 0 0; /* 縦横比 */
}
#office h3{ border: none; margin:0; }
#office .box3_1{ background: #eeeeee; }
#office .hr{
	border-top: dotted 1px #cccccc;
	margin: 30px 0;
}
/* 事業所一覧 PC用 */
@media screen and (min-width: 768px) {
	#office h3 { font-size: 1.0em; }
	#office .box3_1{ width: 19%; padding-top: 55px; }
	#office .box3_2{ width: 45%; padding-top: 40px; }
}
/* 事業所一覧 スマホ用 */
@media screen and (max-width: 767px) {
	#office .box3_2{ margin: 20px 0; }
}
/********** 事業所一覧ここまで **********/


/********** 事業紹介ここから **********/
#sidebar .sidebar_box_business{
	background-color: #efefef;
	border: 1px solid #333333;
}
#business ol.list_number{ margin-bottom: 2.5em; }

#sidebar .sidebar_box_business ul li a{
	display: block;
	padding: 10px;
	text-decoration: underline;
	border-bottom: 1px solid #333333;
}
#sidebar .sidebar_box_business ul li a:hover{
	color: #333333;
	text-decoration: none;
	font-weight: normal;
}
#sidebar .sidebar_box_business_sub {
	padding: 10px 0 0 10px;
}
#sidebar .sidebar_box_business_sub ul li a{
	border: none;
	background: none;
}
#sidebar .sidebar_box_business_sub ul li{
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
}
#sidebar .sidebar_box_business_sub ul li a:before{ content: '＞'; }

#business h4{ margin-top: 2.0em; }
#business h5{ margin-top: 2.0em !important; }

#business p{ padding: 0.5em 1em; }
#business p.comment{ padding:  0.5em 1em 0.5em 2em !important; }

/* 表 */
#business table{ width: 100%; margin: 10px auto; table-layout: fixed; font-size: 0.9em; }
#business table th{ background: #f2f2f2; text-align: left; }
#business table td{ text-align: left; }
#business table th, #business table td{
	border: solid 1px #808080;
	padding: 0.5em;
	vertical-align: middle;
}

.guide a{
	text-decoration: underline;
	color: #0361a7;
}
.guide a:hover{
	text-decoration: none;
}

.insurance table tr:first-of-type th{ /* 1行目選択 */
	font-weight: bold;
	text-align: center !important;
}
.insurance table tr:nth-of-type(1) th:nth-of-type(1){ /* 1セル目選択 */
	width: 12%;
}
.insurance table tr:nth-of-type(1) th:nth-of-type(3){ /* 3セル目選択 */
	width: 35%;
}
.insurance table tr:nth-of-type(1) th:nth-of-type(4){ /* 4セル目選択 */
	width: 12%;
}


.support table tr:first-of-type th{ /* 1行目選択 */
	font-weight: bold;
	text-align: center !important;
}
.support table tr:nth-of-type(2) th{ /* 2行目選択 */
	font-weight: bold;
	text-align: center !important;
}
.support table tr:nth-of-type(1) td:nth-of-type(1) {
	width: 30%;
	border-top: solid 1px #ffffff !important;
	border-left: solid 1px #ffffff !important;
	border-right: solid 1px #ffffff !important;
}
.support table tr:nth-of-type(1) td:nth-of-type(2) {
	border-top: solid 1px #ffffff !important;
	border-left: solid 1px #ffffff !important;
}

.page_feed a:nth-of-type(1){ float: left; }
.page_feed a:nth-of-type(2){ float: right; }

.page_feed a.btn{
	text-decoration: none;
	margin-top: 30px;
	width: 300px;
	color: #ffffff;
	background: #0361a7;
	border-color: #0361a7;
}
.page_feed a.btn:hover{
	color: #444444;
	background: #ffffff;
	border-color: #757575;
}
/* 事業所一覧 スマホ用 */
@media screen and (max-width: 767px) {
.page_feed a:nth-of-type(1){ float:none; }
.page_feed a:nth-of-type(2){ float:none; }
}
/********** 事業紹介ここまで **********/

/********** 個人情報 ※個別編集 ここから **********/
#policy p.representative{
	font-weight: bold;
	text-align: right;
	margin-bottom: 20px;
}
#policy p{
	padding: 0 1.0em;
}
#policy ul{
	list-style-type: disc;
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
	margin-left: 1.0em;
}
#policy ol li span{ font-weight: bold; }
#policy ol{
	list-style: decimal;
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
	margin: 0 0.5em 2.0em 0.5em;
}
#policy ol li{
	margin: 2.0em 0 0 0;
}
#policy ol li ol{ margin-bottom: 1.0em; }
#policy ol li ol li{ margin: 0.5em 0 0 0.5em; }

#policy ol li p{
	padding: 0 0 0 0.5em;
	text-indent: 0;
}
#policy ol li .comment{
	padding-left: 1.5em !important;
	text-indent: -1em;
}
/* 表 */
#policy table{
	padding-left: 0em;
	text-indent: 0em;
	width: 100%;
	margin: 10px auto;
}
#policy table th{ background: #f2f2f2; text-align: left; }
#policy table th, #policy table td{
	border: solid 1px #808080;
	padding: 0.5em;
	vertical-align: middle;
}
/********** 個人情報 ※個別編集 ここまで **********/

/********** お知らせページ ※個別編集 ここから **********/
#info p.representative{
	font-weight: bold;
	text-align: right;
	margin-bottom: 20px;
}
#info p{
	padding: 1.0em;
}
#info ul{
	list-style-type: disc;
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
	margin-left: 1.0em;
}
#info ol li span{ font-weight: bold; }
#info ol{
	list-style: decimal;
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
	margin: 0 0.5em 2.0em 0.5em;
}
#info ol li{
	margin: 2.0em 0 0 0;
}
#info ol li ol{ margin-bottom: 1.0em; }
#info ol li ol li{ margin: 0.5em 0 0 0.5em; }

#info ol li p{
	padding: 0 0 0 0.5em;
	text-indent: 0;
}
#info ol li .comment{
	padding-left: 1.5em !important;
	text-indent: -1em;
}
/* 表 */
#info table{
	padding-left: 0em;
	text-indent: 0em;
	width: 100%;
	margin: 10px auto;
}
#info table th{ background: #f2f2f2; text-align: left; }
#info table th, #info table td{
	border: solid 1px #808080;
	padding: 0.5em;
	vertical-align: middle;
}
#info a.btn{
	color: #444444;
	max-width: 200px;
	border-color: #757575;
}
#info a.btn:hover{
	color: #ffffff;
	background: #0361a7;
	border-color: #0361a7;
}

/********** お知らせページ ※個別編集 ここまで **********/
/*  お知らせ一覧 */

#in_info-index{
	width: 90%;
	margin: auto;
}
#in_info-index dl{
	background-color: #efefef;
	margin: 2.0em 0;
}
#in_info-index dt, #in_info-index dd{
	float: left;
	margin: 1px 0 0 0;
}
#in_info-index dt{
	clear: both;
	width: 120px;
	padding: 1.0em;
}
#in_info-index dd{
	/* background-color: #efefef; */
	width: 100%;
	margin-left: -120px;
	padding: 1.0em 1.0em 1.0em 120px;
}


/********** お知らせ一覧 ここまで **********/

/********** 参考資料 ここから **********/

/* h2 見出し */
#products_reference h2 {
	text-align: left;
	background-color: #0361a7;
	color: #ffffff;
	font-size: 1.4em;
	font-weight: bold;
	padding: 2px 0;
	margin-bottom: 20px;
}
#products_reference h2 span.h2_line {
	position: relative;
	min-height: 48px;
	line-height: 48px;
	padding-left: 30px;
	display: block;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}
/*IE10以降に適用されるCSSハック（余白調整）*/
@media all and (-ms-high-contrast:none){
#products_reference h2 span.h2_line {
    padding-top: 4px;
  }
}
#products_reference h2 span.h2_deco { /* 縦 */
	position:absolute;
	top: 46%;
	left: 5px;
	height: 4px;
	width: 24px;
	background-color: #ffffff;
	margin: auto;
	border-radius: 2px;
	-webkit-transform: rotate(90deg) translateY(-50%);
	transform: rotate(90deg) translateY(-50%);
}

/* h3 見出し */
#products_reference h3 {
	border: none;
	margin: 20px 0 10px 0;
	text-align: left;
	background-color: #dbf0ff;
	color: #0361a7;
	font-size: 1.2em;
	font-weight: bold;
	position: relative;
	min-height: 40px;
	line-height: 40px;
	padding: 0 0 0 30px;
	display: block;
}
/*IE10以降に適用されるCSSハック（余白調整）*/
@media all and (-ms-high-contrast:none){
#products_reference h3 {
    padding-top: 4px;
  }
}
#products_reference h3 span.h3_deco { /* 縦 */
	position:absolute;
	top: 46%;
	left: 5px;
	height: 4px;
	width: 24px;
	background-color: #0361a7;
	margin: auto;
	border-radius: 2px;
	-webkit-transform: rotate(90deg) translateY(-50%);
	transform: rotate(90deg) translateY(-50%);
}

/* 表 */
#products_reference table{ width: 100%; margin: 10px auto; font-size: 0.9em; }
#products_reference table th{ background: #f2f2f2; text-align: left; }
#products_reference table td{ text-align: left; }
#products_reference table th, #products_reference table td{
	border: solid 1px #808080;
	padding: 0.5em;
	vertical-align: middle;
	}
#products_reference table tr:first-of-type th{ /* 1行目選択 */
	font-weight: bold;
	text-align: center;
}
#products_reference .ins_tokukyo,
#products_reference .ins_waza,
#products_reference .ins_men,
#products_reference .ins_tokuji,
#products_reference .ins_shya,
#products_reference .ins_teiji
{
	text-align: center;
	width: 80px;
	font-weight: bold;
	margin: auto;
	padding: 10px;
	border-radius:12px;
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
}
.ins_tokukyo{ color: #ffffff; background-color: #008b72; border:2px solid #333333; }
.ins_waza{ color: #333333; background-color: #fff100; border:2px solid #333333; }
.ins_men{ color: #333333; background-color: #9fd8f7; border:2px solid #333333; }
.ins_tokuji{ color: #333333; background-color: #ffffff; border:2px solid #333333; }
.ins_shya{ color: #333333; background-color: #ffffff; border:2px solid #333333; }
.ins_teiji{ color: #333333; background-color: #ffffff; border:2px solid #333333; }

#products_reference .boxs{ text-align: center; }
#products_reference p{ margin: 0.5em 1em 1em 1em; }

/* ※ */
.comment{
	padding: 0 1em 0 2em !important;
	text-indent: -1em;
}
/********** 参考資料 ここまで **********/

/********** 会社情報 ここから **********/
/* 表 */
#company table{ width: 100%; margin: 10px auto; font-size: 0.9em; }
#company table th{ background: #f2f2f2; text-align: left; width: 20%; }
#company table td{ text-align: left; }
#company table th, #company table td{
	border: solid 1px #808080;
	padding: 0.5em;
	vertical-align: middle;
	}
/* h3 */
#company h3{ margin-bottom: 0; }
#company h3 {
	text-align: left;
	background-color: #0361a7;
	color: #ffffff;
	font-size: 1.4em;
	font-weight: bold;
	padding: 0 !important;
}
#company h3 span.h3_line {
	position: relative;
	min-height: 48px;
	line-height: 48px;
	padding-left: 30px;
	display: block;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}
/*IE10以降に適用されるCSSハック（余白調整）*/
@media all and (-ms-high-contrast:none){
#company h3 span.h3_line {
    padding-top: 4px;
  }
}
#company h3 span.h3_deco { /* 縦 */
	position:absolute;
	top: 46%;
	left: 5px;
	height: 4px;
	width: 24px;
	background-color: #ffffff;
	margin: auto;
	border-radius: 2px;
	-webkit-transform: rotate(90deg) translateY(-50%);
	transform: rotate(90deg) translateY(-50%);
}
#company p{ padding: 0.5em 1em; }
/* リード文 */
#company p.content_lead{
	font-weight: bold;
	padding: 2.0em 1.0em;
}
#company ol{
	list-style: decimal;
	padding-left: 1em;
	text-indent: -1em;
	list-style-position: inside;
}

/********** 会社情報 ここまで **********/

/********** お問い合わせフォーム ここから **********/

#inquiry h4{ margin-top: 3.0em; }

/* リード文 */
#inquiry p.content_lead{
	font-weight: bold;
	padding: 2.0em 1.0em 1.0em 1.0em;
}

#inquiry input, #inquiry textarea, #inquiry select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#inquiry input, #inquiry button, #inquiry textarea{
	display: block;
	width: 90%;
	margin: auto;
}
#inquiry input[type="text"],
#inquiry textarea {
  height: 2.0em;
  outline: none;
  border: 1px solid #aaa;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#inquiry input[type="text"]:focus,
#inquiry textarea:focus {
  box-shadow: 0 0 7px #1abc9c;
  border: 1px solid #1abc9c;
}
#inquiry textarea.textarea{ height: 10em; }

/* css checkbox01 */
#inquiry label{
  display: block;
  margin: 1.0em;
}
.checkbox01_input{
  display: none;
}
.checkbox01_parts{
  padding-left: 2.5em;
  position:relative;
  margin-right: 20px;
  vertical-align: text-bottom;
}
.checkbox01_parts::before{
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  left: 0;
  width: 2.0em;
  height: 2.0em;
  border: 1px solid #999;
  border-radius: 4px;
}
.checkbox01_input:checked + .checkbox01_parts{
  color: #009a9a;
}
.checkbox01_input:checked + .checkbox01_parts::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #009a9a;
  border-right: 3px solid #009a9a;
}

#inquiry_btn{ margin-top: 4.0em; }

#inquiry #inquiry_btn input.btn01 {
	font-size: 1.1em;
	width: 80%;
	color: #ffffff;
	background: #0361a7;
	border-color: #0361a7;
	font-weight: bold;
	padding: 1.0em 0.8em 0.8em 0.8em;
	text-align: center;
	margin: 2.0em auto;
	display: block;
	border-style: solid;
	border-radius: 3px 3px 3px 3px; /* CSS3草案 */
	-webkit-border-radius: 3px 3px 3px 3px; /* Safari,Google Chrome用 */
	-moz-border-radius: 3px 3px 3px 3px; /* Firefox用 */
}
#inquiry #inquiry_btn input.btn01:hover{
	color: #444444;
	background: #ffffff;
	border-color: #cccccc;
	border-style: solid;
	cursor: pointer;
}

#inquiry #inquiry_btn input.btn02 {
	font-size: 1.1em;
	width: 80%;
	color: #444444;
	background: #ffffff;
	border-color: #cccccc;
	font-weight: bold;
	padding: 1.0em 0.8em 0.8em 0.8em;
	text-align: center;
	margin: 2.0em auto;
	display: block;
	border-style: solid;
	border-radius: 3px 3px 3px 3px; /* CSS3草案 */
	-webkit-border-radius: 3px 3px 3px 3px; /* Safari,Google Chrome用 */
	-moz-border-radius: 3px 3px 3px 3px; /* Firefox用 */
}
#inquiry #inquiry_btn input.btn02:hover{
	color: #ffffff;
	background: #0361a7;
	border-color: #0361a7;
	border-style: solid;
	cursor: pointer;
}



/* h3 */
#inquiry h3{ margin-bottom: 0; }
#inquiry h3 {
	text-align: left;
	background-color: #0361a7;
	color: #ffffff;
	font-size: 1.4em;
	font-weight: bold;
	padding: 0 !important;
}
#inquiry h3 span.h3_line {
	position: relative;
	min-height: 48px;
	line-height: 48px;
	padding-left: 30px;
	display: block;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}
/*IE10以降に適用されるCSSハック（余白調整）*/
@media all and (-ms-high-contrast:none){
#inquiry h3 span.h3_line {
    padding-top: 4px;
  }
}
#inquiry h3 span.h3_deco { /* 縦 */
	position:absolute;
	top: 46%;
	left: 5px;
	height: 4px;
	width: 24px;
	background-color: #ffffff;
	margin: auto;
	border-radius: 2px;
	-webkit-transform: rotate(90deg) translateY(-50%);
	transform: rotate(90deg) translateY(-50%);
}
#inquiry h4 { border: none; }
#inquiry h4.top {
	margin: 20px 0 10px 0;
	text-align: left;
	font-size: 1.0em;
	font-weight: bold;
	padding: 0.5em 0.5em 0.5em 1em;
	border-bottom: dotted 1px #0361a7;
}

/* 表 */
#inquiry table{ width: 100%; margin: 10px auto; font-size: 0.9em; }
#inquiry table th{ background: #f2f2f2; font-weight: bold; text-align: center; }
#inquiry table td{ text-align: left; }
#inquiry table th, #inquiry table td{
	border: solid 1px #808080;
	padding: 0.5em;
	vertical-align: middle;
}

/* 入力エラー */
#inquiry .error_box{ margin-bottom: 20px; margin-top: 20px; color:#ff0000; font-weight: bold; }


/********** お問い合わせフォーム ここまで **********/

#sitemap { line-height: 2.0em; }

#sitemap ul { margin-left: 2.0em; }
#sitemap ul li ul{ margin-left: 3.0em; }

#sitemap ul li { position: relative; }

#sitemap ul li::after,
#sitemap ul li::before {
 display: block;
 content: '';
 position: absolute;
}
#sitemap ul li::after {
	top: .35em;
	left: -1.2em;
	width: 14px;
	height: 14px;
	background-color: #0850a3;
	border-radius: 100%;
}
#sitemap ul li::before {
	z-index: 2;
	top: .650em;
	left: -.975em;
	width: 4px;
	height: 4px;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
/*
	content: '▲';
	font-size: 0.4em;
	top: -.2em;
	left: -1.8em;
	color: #ffffff;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
*/
}
#sitemap ul li a{
	text-decoration: underline;
	color:#0361a7;
}
#sitemap ul li a:hover{
	text-decoration: none;
}

/*関連商品*/
#kanren ul li a {
  float: left;
  margin-right: 2em;
  margin-bottom: 1em;
}
/*--------------------------------------------------------------
-カタログDBの商品ページとアイコンエリアとabout-iconページ資格アイコン-
--------------------------------------------------------------*/

.badge-cert{
    padding-left: .5rem!important;
    padding-right: .5rem!important;
    margin-right: .25rem!important;
    vertical-align: middle!important;
	  border-radius: .25rem!important;
}
.badge-tokukyou {
    color: #212529;
    background-color: #ffc107;
}
.badge-men {
    color: #fff;
    background-color: #007bff;
}
.badge-teiji {
    color: #fff;
    background-color: #6c757d;
}
.badge-dennbou {
    color: #fff;
    background-color: #28a745;
}
.badge-syaken {
    color: #fff;
    background-color: #dc3545;
}
.badge-gi {
    color: #fff;
    background-color: #17a2b8;
}
.badge-tokujiken {
    color: #fff;
    background-color: #343a40;
}
.badge-youken {
    color: #fff;
    background-color:#999;
}

.badge-netis {
    color: #fff;
    background-color:#007bff;
	 padding-left: .5rem!important;
    padding-right: .5rem!important;
    margin-right: .25rem!important;
    vertical-align: middle!important;
/*	  border-radius: .25rem!important;*/
}


.icon-area {display:inline-block; float:right;
padding-top: 5px;}
.icon-txt {text-align: right;
padding-top: 0.5em;}
.appeal_icons { display:inline-block;
padding-top: 5px;}

/*--------------------------------------------------------------
ドキュメント　アイコンについて-テーブル-
--------------------------------------------------------------*/


.about-icon_table {
	max-width: 700px;
	border-collapse: collapse;
/*	margin: 0 1%;*/
}

@media only screen and (min-width: 768px) {
	.about-icon_table {
		max-width: auto;
		border-collapse: collapse;
		margin: 0 auto 30px auto;
	}
}
.about-icon_table th {
	/*width: 157px;*/
	font-size: 1.16em;
	font-weight: bold;
/*	background-color:#ecd9a7;*/
	vertical-align: top;
	text-align: left;
	border-bottom: solid 1px #a29061;
	padding: 10px;
}
.about-icon_table td {
	/*width: 531px;*/
	font-size: 1.08em;
	text-align: left;
border-bottom: solid 1px #a29061;
	padding: 10px;
}

.about-icon_ttl {
	/*width: 531px;*/
	font-size: 1.08em;
	text-align: left;
	padding: 10px 0;
}

.about-icon_btn{
  border-radius: 5px;
  background-color:beige;
  padding: 20px;
  text-align: center;
  color: white;
  height: 20px;
  margin: 20px;
}