@charset "utf-8";

html,body{
    width: 100%;
}
body {
	width: 100%;
	font-size: 16px;
	line-height: 1.8em;
	color: #333;
	font-family: 'ゴシックMB101 R', 'Gothic MB101 Regular', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
	-webkit-text-size-adjust: 100%;
	position: relative;
}
b {
	font-family: 'ゴシックMB101 B', 'Gothic MB101 Bold', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
}
em {
	font-family: 'ゴシックMB101 DB', 'Gothic MB101 DemiBold', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
}
/*全体*/
#container {
	padding: 0px;
	margin: 0px;
	width: 100%;
	overflow: hidden;
}
.pc_only {
	display: none;
}
.sp_only {
}
 /*======================
header
=====================*/
#header {
	display: none;
}
#header_SP {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 99999;
}
#header_SP .wrap {
	overflow: hidden;
	padding-top: 5px;
	border-bottom: 1px solid #666;
	width: 100%;
	height: 45px;
	background-color: #FFF;
	display: block;
	-webkit-box-shadow: 3px 3px 3px #6A6A6A;
	box-shadow: 3px 3px 3px #6A6A6A;
}
#header_SP .wrap .logo {
	width: 13%;
	height: 30px;
	float: left;
	text-align: left;
	margin: 0;
	padding: 0;
	padding-top: 5px;
	padding-left: 2%;
	padding-bottom: 10px;
}
#header_SP .wrap .logo img  {
	padding-left: 2%;
	padding-top: 1%;
	width: auto;
	height: 100%;
	vertical-align: bottom;
}
/*======================
アンカーズレ対策
=======================*/
:target:before {
   content:"";
   display:block;
   height:50px;/* ヘッダの高さ*/
   margin-top:-50px;
}
#QA {
    display: block;
   margin: -50px;
   padding: 50px;
}
/*======================
contents共通
=====================*/
.contents {
	width: 100%;
	padding-top: 50px;
}
.inner {
	margin-left: 3%;
	margin-right: 3%;
}
#top {
}
#page section:last-child {
	padding-bottom: 20px;
}
/*======================
下層共通
=====================*/
.box_wh {
	background-color: #FFF;
	padding: 15px 5%;
}
/*見出し・吹き出し*/
.fukidashi_wrap {
	padding: 20px 0px;
}
.fukidashi {
	position: relative;
	display: block;
	margin: 0px auto 15px auto;
	padding: 10px 0px;
	width: 96%;
	color: #333;
	font-size: 20px;
	background: #FFF;
	border: solid 3px #333;
	box-sizing: border-box;
	text-align: center;
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
	letter-spacing: 1px;
}
#page .fukidashi_wrap {
	padding: 0px 0px 15px 0px !important;
}
.fukidashi:before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-top: 12px solid #FFF;
	z-index: 2;
}
.fukidashi:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #333;
	z-index: 1;
}
.fukidashi p {
	margin: 0;
	padding: 0;
}
/*センター見出し*/
.cap_center {
	text-align: center;
	font-size: 20px;
	line-height: 120%;
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
}
/*======================
ぱんくず
=====================*/
.breadcrumb-list {
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #FFF;
	margin-top: 10px;
	margin-bottom: 5px;
	margin: 10px auto 5px auto;
}
.breadcrumb-list ul {
	overflow: hidden;
	position: relative;
	padding-top: 5px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 5px;
	margin-left: 3%;
	margin-right: 3%;
}
.breadcrumb-list li {
	display: inline;
	float: left;
	color: #333;
	line-height: 140%;
	margin-right: 5px;
}
.breadcrumb-list a {
	color: #0B68B2;
	padding-right: 5px;
	line-height: 160%;
}
.breadcrumb-list a:hover {
	color: #000;
	text-decoration: underline;
}
/*======================
ボタン
=====================*/
.bt {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}
/*リンク用ボタン　赤*/
.css_btn_class {
	width: 100%;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	background-color: #CB0918;
	color: #fff;
	display: inline-block;
	line-height: 160%;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 5px;
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
	letter-spacing: 3px;
	transition: 0.5s;
	-webkit-box-shadow: 4px 4px 4px 0px #666666;
	box-shadow: 4px 4px 4px 0px #666666;
}
.css_btn_class:hover {
	background-color: #888;
	color: #FFF;
}
/*リンク用ボタン　白*/
.css_btn_class_wh {
	width: 100%;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	background-color: #fff;
	color: #CB0918;
	display: inline-block;
	line-height: 160%;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 5px;
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
	letter-spacing: 3px;
	transition: 0.5s;
	-webkit-box-shadow: 4px 4px 4px 0px #666666;
	box-shadow: 4px 4px 4px 0px #666666;
}
.css_btn_class_wh:hover {
	background-color: #FCD535;
	color: #CB0918;
}
/*リンク用ボタン　青*/
.css_btn_class_b {
	width: 100%;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	background-color: #0B68B2;
	color: #fff;
	display: inline-block;
	line-height: 160%;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 5px;
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
	letter-spacing: 3px;
	transition: 0.5s;
	-webkit-box-shadow: 4px 4px 4px 0px #666666;
	box-shadow: 4px 4px 4px 0px #666666;
}
.css_btn_class_b:hover {
	background-color: #FCD535;
	color: #333;
}
/*リンク用ボタン　黄*/
.css_btn_class_y {
	width: 100%;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	background-color: #FCD535;
	color: #333;
	display: inline-block;
	line-height: 160%;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 5px;
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
	letter-spacing: 3px;
	transition: 0.5s;
	-webkit-box-shadow: 4px 4px 4px 0px #666666;
	box-shadow: 4px 4px 4px 0px #666666;
}
.css_btn_class_y:hover {
	background-color: #0B68B2;
	color: #fff;
}
/*リンク用ボタン　グレー*/
.css_btn_class_g {
	width: 100%;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	background-color: #888;
	color: #FFF;
	display: inline-block;
	line-height: 160%;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 5px;
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
	letter-spacing: 3px;
	transition: 0.5s;
	-webkit-box-shadow: 4px 4px 4px 0px #666666;
	box-shadow: 4px 4px 4px 0px #666666;
}
.css_btn_class_g:hover {
	background-color: #CCC;
	color: #fff;
}
/*リンク用ボタン罫線　赤*/
.css_btn_class_kei {
	width: 100%;
	text-align: center;
	font-size: 16px;
	text-decoration: none;
	background-color: #FFF;
	color: #CB0918;
	display: inline-block;
	line-height: 160%;
	padding-top: 15px;
	padding-bottom: 15px;
	border: 2px solid #CB0918;
	border-radius: 5px;
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
	letter-spacing: 3px;
	transition: 0.5s;
}
.css_btn_class_kei:hover {
	background-color: #888;
	color: #FFF;
	border: 2px solid #888;
}
/*======================
LINK&CONTACT
======================*/
#link_box {
}
#link_box li {
	font-weight: bold;
	font-family: 'A1ゴシック B', 'A1 Gothic B', sans-serif;
	position: relative;
	padding: 15px;
}
#link_box li:after {
	position: absolute;
	right: 2%;
	top: 30%;
	content: "";
	display: inline-block;
	width: 4em;
	height: 3em;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../images/arrow_btm_yellow.png);
	background-size: auto 20px;
	background-repeat: no-repeat;
	background-position: center center;
	transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
#link_box li .wh_box {
	margin: 0px auto;
	padding: 15px 5%;
	background-color: rgba(255,255,255,0.80);
	display: block;
	text-decoration: none;
	color: #333;
}
#link_box li .wh_box b {
	display: block;
	font-size: 20px;
	padding-bottom: 5px;
	padding-left: 60px;
}
#link_box li .wh_box small {
	display: block;
	font-size: 13px;
	line-height: 140%;
	padding-left: 60px;
}
#link_box li.icon_case {
	background-image: url(../images/ft_case_bg.jpg);
	background-size: cover;
}
#link_box li.icon_case a {
	background-image: url(../images/ft_case.png);
	background-size: auto 40px;
	background-position: 25px center;
}
#link_box li.icon_price {
	background-image: url(../images/ft_price_bg.jpg);
	background-size: cover;
}
#link_box li.icon_price a {
	background-image: url(../images/ft_price.png);
	background-size: auto 40px;
	background-position: 25px center;
}
#link_box li.icon_QA {
	background-image: url(../images/ft_QA_bg.jpg);
	background-size: cover;
}
#link_box li.icon_QA a {
	background-image: url(../images/ft_QA.png);
	background-size: auto 35px;
	background-position: 15px center;
}
#contact_box {
}
#contact_box li {
	text-align: center;
	padding: 20px 0px 15px 0px;
}
#contact_box li a {
	text-decoration: none;
	color: #FFF;
}
#contact_box li b {
	font-size: 16px;
	line-height: 160%;
	display: block;
}
#contact_box li small {
	font-size: 14px;
	line-height: 250%;
}
#contact_box li.mail .bt {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
#contact_box li.mail .bt .css_btn_class_wh {
	line-height: 140%;
	background-image: url(../images/icon_mail.png);
	background-size: auto 25px;
	background-position: 20px center;
	-webkit-box-shadow: none;
	box-shadow: none;
	letter-spacing: 1px;
}
#contact_box li.mail .bt .css_btn_class_wh b {
	text-align: left;
	padding-left: 80px;
	font-size: 16px;
}
#contact_box li.tel .tel_img {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #FFFFFF;
	padding-top: 15px;
	margin-top: 5px;
	padding-bottom: 10px;
}

#contact_box li.tel a:hover {
	opacity: 1.00; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=100); /* IE lt 8 */
	-ms-filter: "alpha(opacity=100)"; /* IE 8 */
	-khtml-opacity: 1.00; /* Safari 1.x */
	-moz-opacity: 1.00; /* FF lt 1.5, Netscape */
}
/*======================
footer
======================*/
.pagetop {
	text-align: center;
	bottom: 80px;
	right: 20px;
	position: fixed;
	z-index: 99;
}
.pagetop img {
	width: 40px;
}
footer {
	padding-bottom: 70px;
}
footer a {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
footer .wrap {
	margin-left: 3%;
	margin-right: 3%;
	padding-top: 20px;
	padding-bottom: 15px;
}
footer .wrap .logo {
	width: 30%;
	margin-left: auto;
	margin-right: auto;
}
footer .wrap ul {
	overflow: hidden;
	padding-top: 20px;
}
footer .wrap ul li {
	float: left;
	width: 50%;
	font-weight: bold;
	font-size: 14px;
}
footer .wrap ul li:before {
	content: ' ►';
	float: left;
	margin: 0 5px 0 0;
	-moz-transition: 0.5s all;
	-webkit-transition: 0.5s all;
	font-size: 12px;
	color: #CCC;
}
footer .wrap ul li a {
	text-decoration: none;
	color: #333;
}
footer .wrap ul li a:hover {
	text-decoration: underline;
	color: #CB0817;
}
footer .group {
	background-color: #F1F1F1;
	padding-top: 20px;
	padding-bottom: 5px;
}
footer .group dl {
	margin-bottom: 10px;
}
footer .group dl a {
	color: #333;
}
footer .group dt {
	font-weight: bold;
	color: #888;
	border: 1px solid #888;
	font-size: 14px;
	line-height: 100%;
	padding: 7px 10px 5px 10px;
	text-align: center;
	display: block;
	margin-bottom: 5px;
}
footer .group dd {
	position: relative;
	font-size: 13px;
	text-indent: 2em;
}
footer .group dd.no_blank {
	text-indent: 0em !important;
}
footer .group dd a {
}
footer .group dd a:after {
	position: absolute;
	left: 0%;
	content: "";
	display: inline-block;
	width: 2em;
	height: 2em;
	background-image: url(../images/icon_blank.png);
	background-size: auto 15px;
	background-repeat: no-repeat;
	background-position: left center;
}
footer .group .links dd {
	font-size: 12px;
}
footer .group .links dd a {
	padding-right: 30px;
}
footer .group .links dd a:after {
	position: absolute;
	left: 0%;
	content: "";
	display: inline-block;
	width: 2em;
	height: 2em;
	background-image: url(../images/icon_blank.png);
	background-size: auto 15px;
	background-repeat: no-repeat;
	background-position: left center;
}
footer .wrap2 {
	margin-left: 3%;
	margin-right: 3%;
	padding-top: 10px;
	padding-bottom: 10px;
}
footer .wrap2 .left {
}
footer .wrap2 .left ul {
	overflow: hidden;
}
footer .wrap2 .left li {
	float: left;
	margin-right: 5%;
	font-size: 12px;
}
footer .wrap2 .left li a {
	color: #333;
}
#copyright {
	text-align: left;
	font-size: 10px;
	color: #888;
}
footer .wrap2 .right {
}
footer .wrap2 .right .kome {
	font-size: 12px;
	line-height: 160%;
}
/*PCでのみtelリンクイベントを無効にする*/
.tel a {
	cursor: default;
	pointer-events: none;
}
/*PCでのみtelリンクイベントを無効にする*/

/*下部固定ボタン*/
#ft_bt_box {
	width: 100%;
	position: fixed;
	left: 0px;
	bottom: 0px;
	z-index: 99999999;
}
#ft_bt_box li.mail {
	width: 100%;
}
#ft_bt_box li.mail a {
	width: 100%;
    background-color: rgba(203,9,24,0.8);
    display: block;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    padding: 3% 0 0 0;
}
#ft_bt_box li.mail a:hover {
	background-color: rgba(252,213,53,0.8);
	color: #CB0918;
}
#ft_bt_box li.mail a b {
	position: relative;
    line-height: 1.8em;
    padding: 0 0 0 2em;
    font-size: 24px;
}
#ft_bt_box li.mail a b:before {
	position: absolute;
    left: 0%;
    content: "";
    display: inline-block;
    width: 3em;
    height: 2.0em;
    background-image: url(../images/icon_mail_wh.png);
    background-size: auto 20px;
    background-repeat: no-repeat;
    background-position: left center;
}
#ft_bt_box li.mail a:hover b:before {
	background-image: url(../images/icon_mail.png);
}
#ft_bt_box li.mail a span{
	font-size: 12px;
	padding: 0 0 10px 10px;
    display: inline-block;
}
