@charset "utf-8";
/****** 2: module setting *********************/
/* wrap
--------------------*/
.wrap {
	width: auto;
	max-width: 980px;
	margin: 0 auto;
}
/* font style of eo
--------------------*/
.eo {
	font-size: 140%;
}
/* magnification fo img
--------------------*/
.fit_img {
	width: 100%;
	height: auto;
}
/* font style of notes
--------------------*/
.notes {
	padding: 0 0 0 1em;
	font-size: 85.714286%;
	line-height: 1.5em;
	text-indent: -1em;
}
/* style of btn
--------------------*/
.btn {
	position: relative;
	display: table;
	width: 100%;
	border: 0px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	background-color: #fff;
	line-height: 1.3em;
}
.btn_02 {
	position: relative;
	display: table;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	background-color: #fff;
	line-height: 1.3em;
}
.btn:link, .btn:visited, .btn_02:link {
	color: #000;
	text-decoration: none;
}
.btn strong:hover {
	text-decoration: none;
}
.btn:hover, .btn_02:hover {
	background-color: #f3f3f3;
	text-decoration: none;
}
.btn:hover img {
	opacity: 1.0;
	-ms-filter: "alpha(opacity=100)";
}
.btn .btn_txt, .btn .btn_icon, .btn_02 .btn_txt, .btn_02 .btn_icon {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}
.btn_txt {
	text-align: left;
	line-height: 1.3em;
}
.btn_txt span, .btn_txt strong {
	color: #000;
	text-decoration: none;
}
.btn_icon {
	text-align: right;
}
.media_sp .btn:hover {
	background-color: #fff;
	color: #000;
	text-decoration: none;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.btn .btn_txt {
		font-size: 100%;
	}
}
/* style of large size btn
--------------------*/
.l_btn {
	display: block;
	width: 460px;
}
.l_btn .btn {
	width: 100%;
	height: 80px;
}
.l_btn .btn_02 {
	border: 1px solid #e64c22;
	background-color: #e64c22;
	font-weight: bold;
	height: 80px;
	font-size: 127%;
}
.l_btn .btn_txt {
	padding: 0 0 0 20px;
	font-size: 2.0rem;
}
.l_btn .btn_02 .btn_txt {
	color: #fff;
}
.l_btn .btn_02 .sub_txt {
	font-size: 74%;
	color: #fff;
	font-weight: normal;
}
.l_btn .btn_02 .eo {
	color: #fff;
}
.l_btn .btn_icon {
	padding: 0 20px 0 0;
}
.l_btn .btn_02.top_color_red {
	margin-top: 15px;
	border-color: #e64c22;
	background-color: #e64c22;
}
.l_btn .btn_02.top_color_orange {
	border-color: #ff9900;
	background-color: #ff9900;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.l_btn {
		width: auto;
	}
	.l_btn .btn {
		height: 59px;
	}
	.l_btn .btn_02 {
		height: 75px;
		font-size: 96%;
	}
	.l_btn .btn_txt {
		padding-left: 15px;
		font-size: 1.6rem;
	}
	.l_btn .btn_icon {
		padding-right: 15px;
	}
	.l_btn .btn_icon img {
		width: 20px;
		height: 20px;
	}
	.l_btn .btn:hover {
		color: #000;
	}
}
/* style of medium size btn
--------------------*/
.m_btn {
	display: block;
}
.m_btn .btn {
	display: table;
	line-height: 1.3em;
}
.m_btn .btn_icon {
	padding-right: 14px;
}
.m_btn .btn_icon img {
	width: auto;
	height: 18px;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.m_btn .btn:hover {
		color: #000;
	}
	.m_btn .btn_icon {
		width: 7px;
	}
	.m_btn .btn_icon img {
		width: 100%;
		height: auto;
	}
}
/* style of text link icon
--------------------*/
.txt_link01,
.txt_link02,
.txt_link03,
.txt_link04,
.txt_link05 {
	background-repeat: no-repeat;
	background-position: left center;
}
.txt_link01:link,
.txt_link02:link,
.txt_link03:link,
.txt_link04:link,
.txt_link05:link,
.txt_link01:visited,
.txt_link02:visited,
.txt_link03:visited,
.txt_link04:visited,
.txt_link05:visited {
	color: #000;
}
.txt_link01,
.txt_link04 {
	padding: 0 0 0 20px;
}
.txt_link02,
.txt_link03,
.txt_link05 {
	padding: 0 0 0 12px;
}
/* style of nav accordion
--------------------*/
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	li[data-nav-open-id] {
		display: none;
	}
}
/* style of table layout
--------------------*/
.is_table {
	display: table;
	border-collapse: collapse;
	border-spacing: 0;
}
.is_table_thead {
	display: table-header-group;
}
.is_table_tbody {
	display: table-row-group;
}
.is_table_tfoot {
	display: table-footer-group;
}
.is_table_tr {
	display: table-row;
}
.is_table_th, .is_table_td {
	display: table-cell;
}
.is_table_th {
	vertical-align: inherit;
}
.is_table_colgroup {
	display: table-column-group;
}
.is_table_col {
	display: table-column;
}
.is_table_caption {
	display: table-caption;
}
/*
  Description: denki common style
*/
/****** CONTENTS ***************************************

1: denki common
2: lower common
3: nav accordion
4: win close
5: modal

*******************************************************/
/****** 1:denki common *************************************/
#denki a {
	text-decoration: none;
}
#denki a:hover {
	text-decoration: underline;
}
sup {
	font-size: 11px;
	font-weight: normal;
	line-height: 1;
	vertical-align: top;
	position: relative;
	top: 0.2em;
}
.sup__txt10 {
	font-size: 50%;
	font-weight: normal;
	line-height: 1;
	vertical-align: top;
	position: relative;
	top: 0.2em;
}
.txtlink, a.txtlink {
	color: #0033AA !important;
}
/*-----------------------------------------------------------------------

注釈

-----------------------------------------------------------------------*/
.txt__notes {
	padding-top: 20px;
	font-size: 1.4rem;
}
.txt__notes a {
	color: #0033AA;
}

.txt__notes02 {
	padding-top: 10px;
	font-size: 1.4rem;
}
.notes__v1 {
	text-indent: -1.9em;
	padding-left: 1.9em;
}
.notes__v2 {
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.notes__v3 {
	text-indent: -1em;
	padding-left: 1em;
}
.notes__v4 {
	text-indent: -1em;
	margin-left: 1em;
	padding-left: 1em;
}
.notes__v5 {
	text-indent: -1em;
	padding-left: 1em;
	margin-left: 50px;
}
.txt__tax {
	font-size: 1.4rem;
	padding-top: 10px;
	text-align: right;
}
.txt__tac {
	text-align: center;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.txt__notes {
		padding-top: 20px;
		font-size: 1.2rem;
	}
	.txt__notes02 {
		padding-top: 5px;
		font-size: 1.2rem;
	}
	.notes__v5 {
		margin-left: 0px;
	}
	.txt__tax {
		font-size: 1.2rem;
	}
	.txt__tac {
		text-align: left;
	}
}
/*-----------------------------------------------------------------------

TEXT

-----------------------------------------------------------------------*/
.txt__nml {
	font-size: 1.8rem;
}
.txt__red {
	color: #FF0004;
}
.txt__bold {
	font-weight: bold;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.txt__nml {
		font-size: 1rem;
	}
}
/*-----------------------------------------------------------------------

BUTTON

-----------------------------------------------------------------------*/
.btn__application--tll {
	font-size: 3.2rem;
	text-align: center;
	margin-top: 50px;
}
.btn__box,
.btn__box--single {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 50px;
	margin-right: 30px;
	margin-left: 30px;
}
.btn__box--single {
	width: 460px;
	margin-right: auto;
	margin-left: auto;
}
.btn__box--mtless {
	margin-top: 10px;
}
.btn__box--btn01,
.btn__box--btn02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 48%;
	border-radius: 5px;
	margin-right: 1%;
	margin-left: 1%;
}
.btn__box--btn02 {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.btn__box--btn03 {
	width: 48%;
	border-radius: 5px;
	margin-right: auto;
	margin-left: auto;
}
.btn__box--btn01 p,
.btn__box--btn02 p,
.btn__box--btn03 p {
	width: 100%;
	display: table;
}
.btn__box--btn01 p span,
.btn__box--btn02 p span,
.btn__box--btn03 p span {
	font-size: 80%;
}
.btn__box--btn01 a,
.btn__box--btn02 a,
.btn__box--btn03 a {
	padding-left: 4%;
	color: #FFFFFF;
	font-size: 2.2rem;
	display: table-cell;
	vertical-align: middle;
	background-image: url("../../../common/img/btn_arrow.png");
	background-position: 96% 50%;
	background-repeat: no-repeat;
	background-size: 30px;
	line-height: 1.4;
	text-decoration: none !important;
}
#denki .btn__box--btn01 a,
#denki .btn__box--btn02 a,
#denki .btn__box--btn03 a {
	color: #FFFFFF;
	font-size: 2.0rem;
}
.icon__calc {
	background-image: url("../../../common/img/icon_calc.png");
	background-position: 20px 48%;
	background-repeat: no-repeat;
	background-size: 20px auto;
}
.icon__calc a {
	padding-left: 50px;
}
.btn__denki {
	background-color: #39b382;
}
.btn__charge {
	background-color: #0095a1;
}
.btn__red {
	background-color: #e74c22;
}
.btn__orange {
	background-color: #ff9a00;
}
.btn__denki a,
.btn__charge a {
	padding-top: 25px;
	padding-bottom: 25px;
}
.btn__red a,
.btn__orange a {
	padding-top: 25px;
	padding-bottom: 25px;
}
.btn__box--btn01:hover,
.btn__box--btn02:hover,
.btn__box--btn03:hover{
	transition: all 0.2s ease-out;
	text-decoration: none;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}
.btn__box--btn01 span {
	font-size: 80%;
}
.btn__box--btn01 .eo {
	font-size: 125%;
}
.btn__box--txt01 {
	margin-top: 30px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.5;
}
.btn__box--txt01 a {
	color: #0033AA;
	text-decoration: none;
}
.btn__box--txt03 {
	margin-top: 50px;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.5;
}
.btn__box--txt05 {
	font-size: 1.8rem;
	text-align: center;
	margin-top: 20px;
}
.btn__box--txt06 {
	margin-top: 50px;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.5;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.btn__application--tll {
		font-size: 2.4rem;
		margin-top: 50px;
	}
	.btn__box, .media_sp .btn__box--single {
		display: block;
		width: 100%;
		margin-top: 30px;
		margin-right: 0px;
		margin-left: 0px;
	}
	.btn__box--single {
		width: auto;
	}
	.btn__box--mtless {
		margin-top: 10px;
	}
	.btn__box--btn01,
	.btn__box--btn02,
	.btn__box--btn03 {
		display: block;
		width: 100%;
		margin-top: 10px;
		margin-right: 0%;
		margin-left: 0%;
	}
	.btn__box--btn01 p,
	.btn__box--btn02 p,
	.btn__box--btn03 p {
		width: 100%;
	}
	.btn__box--btn01 a,
	.btn__box--btn02 a,
	.btn__box--btn03 a {
		padding-left: 10px;
		font-size: 1.8rem;
		background-position: 96% 50%;
		background-repeat: no-repeat;
		background-size: 20px;
		line-height: 1.4;
		color: #FFFFFF;
	}
	.btn__denki a,
	.btn__charge a {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	.btn__red a,
	.btn__orange a {
		padding-top: 13.5px;
		padding-bottom: 13.5px;
	}
	#denki .btn__box--btn01 a,
	#denki .btn__box--btn02 a,
	#denki .btn__box--btn03 a {
		color: #FFFFFF;
		font-size: 1.6rem;
	}
	.icon__calc {
		background-position: 2% 48%;
		background-repeat: no-repeat;
		background-size: 16px auto;
	}
	.icon__calc a {
		padding-left: 34px;
	}
	.btn__box--txt01 {
		margin-top: 15px;
		font-size: 1.6rem;
	}
	.btn__box--txt03 {
		margin-top: 50px;
		text-align: center;
		font-size: 1.6rem;
	}
	.btn__box--txt05 {
		font-size: 1.6rem;
		margin-top: 20px;
		line-height: 1.4;
	}
	.btn__box--txt06 {
		margin-top: 50px;
		text-align: center;
		font-size: 1.6rem;
	}
}


#l_gnav .sub_nav_item .nav_item .order,
#l_fixnav .sub_nav_item .nav_item .order {
	width: auto;
	border-radius: 3px;
}
#l_fixnav .nav_wrap,
#l_gnav .gnav_list {
	width: 100%;
}

#l_gnav .gnav_item {
	width: 240px;
}
#l_gnav .sub_nav_item .nav_item .order,
#l_fixnav .sub_nav_item .nav_item .order {
	width: auto;
	border: 1px solid #62ade4;
	border-radius: 3px;
}
#l_gnav .sub_nav_item .nav_item .order.on,
#l_fixnav .sub_nav_item .nav_item .order.on {
	border: 1px solid #62ade4;
}
#l_gnav .sub_nav_item .nav_item .order:hover,
#l_fixnav .sub_nav_item .nav_item .order:hover {
	border: 1px solid #62ade4;
}
#l_gnav .sub_nav_item .nav_item .order {
	padding: 9px 0 5px;
}
#l_fixnav .sub_nav_item .nav_item .order {
	padding: 3px 0 4px;
}
.sub_nav .menu_ttl a {
	background: #62ade4;
}
#l_fixnav .other_service {
	width: 170px;
}
#l_fixnav .other_service .btn {
	height: 38px;
	padding: 0;
}
#l_fixnav .other_service .btn_txt {
	padding: 0 0 0 6px;
}
#l_fixnav .other_service .btn .btn_icon {
	padding: 0 6px 0 0;
}
.sub_nav .nav_item a {}
.sub_nav .sub_nav_icon {
	width: inherit;
	height: auto;
	margin: 0;
}
.sub_nav_item .guide .sub_nav_icon {
	max-width: 31px;
}
.sub_nav_item .spec .sub_nav_icon {
	max-width: 26px;
}
.sub_nav_item .charge .sub_nav_icon {
	max-width: 20px;
}
.sub_nav_item .flow .sub_nav_icon {
	max-width: 25px;
}
.sub_nav_item .order .sub_nav_icon {
	max-width: 15px;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.sub_nav_item .menu_ttl .sub_nav_icon {
		max-width: 21.5px;
	}
	.sub_nav_item .guide .sub_nav_icon {
		max-width: 23.5px;
	}
	.sub_nav_item .spec .sub_nav_icon {
		max-width: 20.5px;
	}
	.sub_nav_item .charge .sub_nav_icon {
		max-width: 20px;
	}
	.sub_nav_item .flow .sub_nav_icon {
		max-width: 25px;
	}
	.sub_nav_item .order .sub_nav_icon {
		max-width: 23px;
	}
	.sub_nav_item .menu_ttl .sub_nav_icon {
		margin-top: 2px;
		margin-right: 18px;
	}
	.sub_nav .nav_item .guide {
		padding-left: 21.5px;
	}
	.sub_nav_item .guide .sub_nav_icon {
		margin-top: 2px;
		margin-right: 15px;
	}
	.sub_nav .nav_item .spec {
		padding-left: 23px;
	}
	.sub_nav_item .spec .sub_nav_icon {
		margin-top: 5px;
		margin-right: 17px;
	}
	.sub_nav .nav_item .charge {
		padding-left: 23px;
	}
	.sub_nav_item .charge .sub_nav_icon {
		margin-top: 3px;
		margin-right: 17px;
	}
	.sub_nav .nav_item .flow {
		padding-left: 20.5px;
	}
	.sub_nav_item .flow .sub_nav_icon {
		margin-top: 0;
		margin-right: 15px;
	}
	.sub_nav .nav_item .order {
		padding-left: 20px;
	}
	.sub_nav_item .order .sub_nav_icon {
		margin-top: 2px;
		margin-right: 17px;
	}
}
.l_btn .btn:after {
	background-image: url(/service/denki/common/img/icon_btn_l.gif);
}
.m_btn .btn_icon {
	font-size: 1px;
	line-height: 1;
}
.txt_link01 {
	background-image: url(/service/denki/common/img/icon_txt01.gif);
}
.txt_link02 {
	background-image: url(/service/denki/common/img/icon_txt02.gif);
}
.txt_link03 {
	background-image: url(/service/denki/common/img/icon_txt03.gif);
}
.txt_link04 {
	background-image: url(/service/denki/common/img/icon_txt01.jpg);
	padding-left: 26px;
	background-size: 1em auto;
}
.txt_link05 {
	background-image: url(/service/denki/common/img/icon_txt02.jpg);
	padding-left: 26px;
	background-size: 1em auto;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.txt_link04 {
		padding-left: 22px;
	}
}
.other_service .btn {
	height: 50px;
	padding: 0;
}
.other_service .btn .btn_txt {
	padding: 0 14px;
	font-size: 85.714286%;
	line-height: 1.333333;
}
.other_service .btn .btn_icon {
	display: table-cell;
	float: none;
	height: 100%;
	margin: 0;
	padding-right: 14px;
	vertical-align: middle;
}
#l_foot_nav .nav_area {
	table-layout: fixed;
}
#l_foot_nav .sitemap {
	width: auto;
}
#l_foot_nav .sitemap .nav_list {
	list-style: inside disc;
	padding: 0 0 0 24px;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	#l_contact .btn_tablet_cp {
		display: none;
	}
	.lower #l_breadcrumb {
		display: block;
	}
}
/****** 2:lower common *************************************/
/* page section
--------------------*/
.lower .page_sect {
	margin-bottom: 100px;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.lower .page_sect {
		margin-bottom: 50px;
		padding-top: 18px;
		background: -webkit-linear-gradient(#f9f9f9, #fff 0.5, #fff);
		background: -o-linear-gradient(#f9f9f9, #fff 0.5, #fff);
		background: linear-gradient(#f9f9f9, #fff 0.5, #fff);
	}
}
/* page nav
--------------------*/
.lower .page_nav {
	position: relative;
	margin: 40px 0 30px;
	overflow: hidden;
}
.lower .page_list {
	position: relative;
	left: 50%;
	float: left;
}
.lower .page_item {
	position: relative;
	left: -50%;
	float: left;
	margin: 0 5px;
	line-height: 1;
}
.lower .page_item a {
	display: block;
	padding: 9px 10px 8px 30px;
	background: url(/service/denki/common/img/icon_pagenav_off.gif) no-repeat 10px center;
}
.lower .page_item a:link,
.lower .page_item a:visited {
	color: #000;
	font-size: 85.714286%;
}
.lower .page_item a:hover,
.lower .page_item a.on {
	border-radius: 3px;
	color: #000;
	text-decoration: none;
	background: #f3f3f3 url(/service/denki/common/img/icon_pagenav_on.gif) no-repeat 10px center;
}
/* for sp --------------------*/
@media screen and (max-width: 780px) {
	.lower .page_nav {
		border: 1px solid #ccc;
		border-radius: 3px;
		box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
		background: #fff;
		font-size: 1.4rem;
	}
	.lower .page_list {
		left: auto;
		float: none;
	}
	.lower .page_item {
		left: auto;
		float: none;
		margin: 0;
		border-bottom: 1px solid #ccc;
	}
	.lower .page_item a {
		padding: 14px 10px 10px 30px;
	}
	.lower .page_item:last-child {
		border-bottom: none;
	}
	.lower .page_item:after {
		content: url(/service/denki/common/img/icon_pagenav_sp.png);
		display: block;
		position: absolute;
		top: 12px;
		right: 10px;
	}
	.lower .page_item a:hover,
	.lower .page_item a.on {
		border-radius: 3px;
		color: #000;
		text-decoration: none;
		background: url(/service/denki/common/img/icon_pagenav_on.gif) no-repeat 10px center;
	}
	.lower .accordion:after {
		content: "";
		display: none;
	}
	.lower .accordion .ac_icon {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 20px;
		height: 20px;
		background: url(/service/denki/common/img/icon_accordion_sp.gif) no-repeat;
		overflow: hidden;
	}
	.lower .page_item .btn_wrap {
		display: table;
		width: 100%;
		height: 39px;
	}
	.lower .page_btn {
		display: table-cell;
		position: relative;
		padding: 0 10px 0 14px;
		background: none;
		vertical-align: middle;
	}
	.lower .page_btn {
		display: table-cell;
		position: relative;
		padding: 0 10px 0 14px;
		vertical-align: middle;
	}
	.lower .page_btn:hover,
	.lower .page_btn.on {
		background: transparent;
	}
	.lower .accordion_nav {
		display: none;
	}
	.lower .page_subnav {
		margin: 0 10px 0 14px;
		padding: 8px 0;
		border-top: 1px dashed #ccc;
	}
	.lower .page_subnav_item {
		margin: 0 0 0 -10px;
		line-height: 1;
	}
	.lower .page_subnav_item a {
		display: inline-block;
		background: url(/service/denki/common/img/icon_pagenav_off.gif) no-repeat 10px center;
	}
	.lower .page_subnav_item.scr a {
		background: url(/service/denki/common/img/icon_pagenav_scr.gif) no-repeat 10px center;
	}
	.lower .page_subnav_item.on a {
		border-radius: 3px;
		color: #000;
		text-decoration: none;
		background: #f3f3f3 url(/service/denki/common/img/icon_pagenav_on.gif) no-repeat 10px center;
	}
}
/* section nav
--------------------*/
.lower .sect_list {
	width: 100%;
	margin: -5px 0 0 -5px;
	padding: 5px;
	overflow: hidden;
}
.lower .sect_list li {
	float: left;
}
.lower .sect_list li .btn {
	display: table;
	height: 48px;
}
.lower .sect_list li .m_btn .btn.on {
	background-color: #f3f3f3;
}
.lower .sect_list li .btn_txt {
	padding-left: 14px;
	padding-right: 14px;
}
.lower .sect_item .btn_txt {
	background-image: url(/service/denki/common/img/icon_sectnav.png);
	background-repeat: no-repeat;
	background-position: center 35px;
	text-align: center;
}
.lower .sect_list .m_btn .btn_icon img {
	height: 13px;
}
.lower .sect_list .m_btn .on .btn_icon img {
	height: 9px;
}
/* scalable section nav
--------------------*/
.scalable_nav {
	position: relative;
	margin: 0 -6px 20px;
}
.scalable_nav:after {
	content: " . ";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	visibility: hidden;
}
.scalable_nav ul {
	position: relative;
	left: 50%;
	float: left;
}
.scalable_nav .sect_item {
	position: relative;
	left: -50%;
	float: left;
}
.scalable_nav .sect_item .btn {
	height: auto;
}
.scalable_nav .sect_item .btn_row {
	display: table-row;
}
.scalable_nav .sect_item .btn_row .btn_txt {
	padding: 10px 14px 5px;
	background: none;
}
.scalable_nav .sect_item .btn_row .btn_icon {
	padding: 0 14px 10px;
	font-size: 0;
	line-height: 1;
	text-align: center;
	vertical-align: bottom;
}
/* column size */
.scalable_nav .column1 .sect_item {
	width: 960px;
	margin: 0 0 10px;
}
.scalable_nav .column2 .sect_item {
	width: 475px;
	margin: 0 5px 10px;
}
.scalable_nav .column3 .sect_item {
	width: 312px;
	margin: 0 6px 10px;
}
.scalable_nav .column4 .sect_item {
	width: 231px;
	margin: 0 6px 10px;
}
/* style of inner section
--------------------*/
.lower .sect_head {
	position: relative;
}
.lower .sect_head, .lower #l_contents .sect_ttl {
	margin: 0 0 14px;
}
.lower #l_contents .sect_ttl {
	border-left: 6px solid #62ade4;
}
.lower #l_contents .sect_ttl .ttl_inner {
	display: block;
	padding: 14px 0 14px 24px;
	border-bottom: 1px solid #ddd;
	background: #fff;
	font-size: 185.714286%;
	font-weight: normal;
	line-height: 1.2em;
}
.lower .sect_head .sect_ttl {
	margin-bottom: 0;
}
.lower .sect_head .link_txt {
	position: absolute;
	top: 50%;
	right: 0;
	margin: -0.5em 0 0;
}
.lower .sect_head .m_btn {
	position: absolute;
	top: 0;
	right: 0;
}
.lower .sect_head .m_btn .btn {
	height: 48px;
}
.lower .sect_head .m_btn .btn_txt {
	padding-left: 16px;
	padding-right: 9px;
}
.lower .sect_subttl {
	margin: 20px 0 16px;
	padding: 15px 10px 11px 30px;
	border: 1px solid #ddd;
	background: #f3f3f3 url(/service/denki/common/img/icon_sect_subttl.gif) no-repeat left center;
	font-size: 128.571429%;
	font-weight: normal;
	line-height: 1.2em;
}
.lower .sect_wrap {
	padding: 0 30px;
}
.lower .sect_caption {
	margin: 0 0 10px;
	padding: 0 0 6px;
	border-bottom: 1px solid #ddd;
	font-size: 114.285714%;
	font-weight: bold;
	line-height: 1.2em;
}
.lower .sect_btn {
	margin: 0 auto;
}
.lower .contact_btn {
	margin: 0 auto 30px;
}
.media_sp .lower #l_contents .sect_ttl .ttl_inner {
	padding: 8px 10px 8px 14px;
	font-size: 123.076923%;
}
.media_sp .lower .sect_head .link_txt, .media_sp .lower .sect_head .m_btn {
	position: relative;
	top: auto;
	right: auto;
	margin: 0.5em 0 0;
}
.media_sp .lower .sect_head .m_btn .btn {
	height: 2em;
}
.media_sp .lower .sect_head .m_btn .btn_txt {
	padding-left: 5px;
}
.media_sp .lower .sect_wrap {
	padding: 0 5px;
}
.media_sp .lower .sect_subttl {
	font-size: 123.076923%;
}
.media_sp .lower .sect_caption {
	padding: 0 0 8px;
	font-size: 100%;
}
.media_sp .lower .sect_btn {
	width: 100%;
	margin: 0;
}
.media_sp .lower .contact_btn {
	margin: 0 0 30px;
}
.media_ie.media_sp .lower .sect_ttl .link_txt .txt_link01 {
	padding-left: 20px;
	line-height: 20px;
}
/* information_box
--------------------*/
.information_box {
	width: auto;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.information_box .box_head {
	display: table;
	width: 100%;
	height: 48px;
	border-bottom: 1px solid #ccc;
	border-radius: 3px 3px 0 0;
	background: #777;
	color: #fff;
}
.information_box .head_ttl, .information_box .head_txt {
	display: table-cell;
	vertical-align: middle;
}
.information_box .head_ttl {
	padding: 0 0 0 15px;
	font-weight: normal;
}
.information_box .head_ttl .ttl_icon {
	margin: 0 16px 0 0;
}
.information_box .head_ttl .ttl_icon img {
	vertical-align: middle;
}
.information_box .head_txt {
	padding: 0 18px 0 0;
	text-align: right;
}
.information_box .box_wrap {
	padding: 28px 94px 24px 108px;
	color: #777;
}
.information_box .box_lead {
	margin: 6px 0;
}
.information_box .tel_conts {
	margin: 0 0 6px;
	overflow: hidden;
}
.information_box .tel_image {
	float: left;
	margin: 0 10px 0 0;
}
.information_box .tel_box {
	float: left;
	padding: 10px 0 0;
}
.information_box .tel_txt {
	line-height: 1.28571429em;
	margin: 0 0 2px;
}
.information_box .tel_box .tel_link {
	color: #00a8ec;
	line-height: 1;
}
.information_box .tel_box .tel_memo {
	display: block;
	font-size: 85.714286%;
	text-align: right;
}
.information_box .tel_free {
	float: left;
	width: 417px;
	border-right: 1px solid #ccc;
	overflow: hidden;
}
.information_box .tel_free .tel_num {
	font-size: 257.142857%;
	line-height: 1;
}
.information_box.support .tel_free .tel_num {
	font-size: 214.285724%;
}
.information_box .tel_free .tel_link a:link, .information_box .tel_free .tel_link a:visited {
	color: #00a8ec !important;
	text-decoration: none !important;
}
.information_box .tel_free .tel_link a:hover, .information_box .tel_free .tel_link a:hover .tel_num {
	color: #00a8ec !important;
	text-decoration: none !important;
}
.information_box .tel_notfree {
	float: right;
}
.information_box .tel_notfree .tel_num {
	font-size: 214.285724%;
}
.information_box .tel_notfree .tel_link a:link, .information_box .tel_notfree .tel_link a:visited, .information_box .tel_notfree .tel_link .tel_num {
	color: #777 !important;
	text-decoration: none !important;
}
.information_box .tel_notfree .tel_link a:hover, .information_box .tel_notfree .tel_link a:hover .tel_num {
	color: #777 !important;
	text-decoration: none !important;
}
.information_box .box_notes {
	text-align: center;
}
/* for sp
--------------------*/
.media_sp .information_box .head_ttl {
	display: block;
	padding-top: 10px;
}
.media_sp .information_box .head_txt {
	display: block;
	padding-bottom: 10px;
}
.media_sp .information_box .box_wrap {
	padding: 10px;
}
.media_sp .information_box .tel_free {
	float: none;
	width: auto;
	margin: 0 0 10px;
	border: none;
}
.media_sp .information_box .tel_image {
	width: 18%;
	margin: 0 2% 0 0;
}
.media_sp .information_box .tel_image img {
	width: 100%;
	height: auto;
}
.media_sp .information_box .tel_box {
	float: right;
	width: auto;
	padding: 0;
	font-size: 76.923077%;
}
.media_sp .information_box.support .tel_txt {
	line-height: normal;
}
.media_sp .information_box .tel_free .tel_box {
	max-width: 80%;
}
.media_sp .information_box .tel_notfree {
	float: none;
}
.media_sp .information_box .tel_notfree .tel_box .tel_link {
	display: inline;
}
.media_sp .information_box .tel_notfree .tel_box .tel_memo {
	display: inline;
}
.media_sp .information_box .box_notes {
	text-align: left;
}
/****** 3:nav accordion *************************************/
.lower li[data-nav-open-id=smart] {
	display: block;
}
.media_sp .lower li[data-nav-open-id=smart] {
	display: none;
}
/****** 4:win close *************************************/
.win_close {
	position: relative;
	max-width: 380px;
	margin: 0 auto 40px;
}
.win_close .close_icon {
	position: absolute;
	top: 50%;
	right: 20px;
	margin: -11px 0 0;
}
.win_close .close_btn {
	width: 100%;
}
.win_close .close_btn .btn {
	height: 50px;
}
.win_close .close_btn .btn_txt {
	text-align: center;
}
/****** 5:modal window *************************************/
#modal_inner .sect_ttl {
	background-color: #62ade4;
}
#modal_inner .sect_subttl {
	background-image: url(/service/denki/common/img/icon_sect_subttl.gif);
}
