@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
}
body p{
	font-size: 17px;	/*文字サイズ*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #00ade6;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

.banner a:hover img {
	opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: -webkit-linear-gradient(#FFF 80%, #ededed);	/*グラデーション*/
	background: linear-gradient(#FFF 80%, #ededed);			/*同上*/
}
/*ヘッダーブロックの中*/
header .inner {
	max-width: 1200px;	/*ブロック幅*/
	height: 100px;	/*高さ*/
	position: relative;
	margin: 0px auto;
}
/*h1ロゴの設定*/
header #logo a {
	width: 300px;	/*ロゴの幅*/
	position: absolute;
	left: 20px;	/*innerに対して左から20pxの場所に配置*/
	top: 20px;	/*innerに対して上から20pxの場所に配置*/
	text-decoration: none;
}
header span {
	font-size: 12px;
}
/*電話番号ボックスの設定*/
header address {
	position: absolute;
	top: 25px;		/*innerに対して上から25pxの位置に配置*/
	right: 20px;	/*innerに対して右から20pxの位置に配置*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	line-height: 1.6;	/*行間*/
	letter-spacing: 0.2em;	/*文字間隔を少し広めにとる設定*/
}
/*電話番号の文字設定*/
header address .tel {
color: #FFF;
text-shadow: 2px 2px 1px #00ade6,
    -2px 2px 1px #00ade6,
    2px -2px 1px #00ade6,
    -2px -2px 1px #00ade6;
	font-size: 20px;	/*文字サイズ*/
	/*color: #00ade6;		/*文字色*/
	font-weight: bold;	/*太字に*/
	display: block;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
#menubar {
	height: 60px;	/*ブロックの高さ*/
	background: -webkit-linear-gradient(#FFF, #e7e7e7);	/*グラデーション*/
	background: linear-gradient(#FFF, #e7e7e7);			/*同上*/
	border-top: 1px solid #d4d4d4;		/*メニューの上側の線の幅、線種、色*/
	border-bottom: 5px solid #00ade6;	/*メニューの下側の線の幅、線種、色*/
}
#menubar ul {
	max-width: 1200px;
	margin: 0px auto;
}
/*メニュー１個ごとの設定*/
#menubar ul li {
	float: left;
	width: 14.2%;	/*メニュー幅*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
}
#menubar ul li:first-child {
	width: 14.8%;	/*メニュー６個で100%になるようここで調整（16.6%×5+17%=100%）*/
}
#menubar ul li a {
	text-decoration: none;
	display: block;
	line-height: 30px;
	padding-top: 5px;
	font-size: 16px;	/*文字サイズ*/
	font-weight: normal;
	letter-spacing: 0.1em;	/*文字間隔を少しあける設定*/
	text-shadow: #FFF 0px 2px;	/*テキストの影。色、右方向、下方向への指定。*/
	border-right: 1px solid #d4d4d4;	/*メニューの右側の線の幅、線種、色*/
}
/*最初のメニューの設定*/
#menubar ul li:first-child a {
	border-left: 1px solid #d4d4d4;	/*左側に線を入れる*/
}
/*マウスオン時の設定*/
#menubar ul li a:hover {
	background: #FFF;	/*背景色*/
	border-bottom: 5px solid #4ec6ed;	/*メニューの下側の線の幅、線種、色*/
}
/*英語表記の設定*/
#menubar ul li a span {
	color: #00ade6;	/*文字色*/
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
	line-height: 20px;
	padding-bottom: 5px;
}
/*小さな端末用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	max-width: 1200px;
	margin: 0px auto;
	padding-top: 50px;	/*メニューと下の左右のブロックの間に空ける余白*/
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: left;	/*右側に回り込み*/
	width: 73%;		/*メインコンテンツ幅*/
	padding-bottom: 50px;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	margin-top: 30px;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/arrow1.png) no-repeat left center, -webkit-linear-gradient(#FFF, #e6e6e6);	/*マークとグラデーション*/
	background: url(../images/arrow1.png) no-repeat left center, linear-gradient(#FFF, #e6e6e6);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	color: #00ade6;	/*文字色*/
	font-size: 20px;
	font-weight: normal;
	padding: 10px 15px 10px 30px;	/*左から、上、右、下、左への余白*/
	border-top: 1px solid #d4d4d4;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d4d4d4;	/*右の線の幅、線種、色*/
	border-bottom: 4px solid #00ade6;	/*下の線の幅、線種、色*/
	border-left: 1px solid #d4d4d4;		/*左の線の幅、線種、色*/
	border-radius: 6px 6px 0px 0px;		/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
#main h2:first-child {
	margin-top: 0px
}
/*プロパンガス*/
#lpg h3.copy, #support h3.copy, #ekoto h3.copy{
	font-weight: normal;
	font-size: 22px;
	background: none;
	border: none;
	line-height: 1.5;
	margin-bottom: 0!important;
	padding: 4px 15px 0;	/*左から、上下、左右への余白*/
	margin: 10px 0 15px!important;
}
.post ol {
	counter-reset: li;
}
 
.post ol > li {
	font-size: 20px;
	list-style: none;
	position: relative;/*リストの項目の位置を基準に*/
	padding-left: 2.5em; /*li:before分左に余白を。調整可*/
	/*margin-bottom: 0.8em;*//*リストの数字がくっついてしまう場合*/
}
 
.post ol > li:before {
	counter-increment: li;
	content: counter(li);
	margin-right: 1em;
	background: #ffc0cb; /*薄いピンク*/
	border: 1px solid #ff99ab; /*濃いピンク*/
	color: #ffffff; /*白*/
	border-radius: 50%; /*丸く*/
	text-align: center; /*端に寄ってる数字を真ん中に*/
	width: 1.3em; /*幅を決めるheightと同じ数値に*/
	height: 1.3em; /*高さ。widthと同じ数値に。数値変更した場合はline-heightで調整を*/
	position: absolute; /*リストの基準から移動させる*/
	left: 0em; /*項目の基準、左にあわせる*/
	top: 5px; /*基準の上から2pxの位置に表示。テーマによって位置がずれる場合は修正を*/
	line-height: 1.4;/*数字の位置あわせで数値を指定*/
}	
#safety h3.hoan {
	border: none;
	border-left: 4px solid #00ade6;		/*線の幅、線種、色*/
	background: none;
	border-radius: 0;	/*角丸のサイズ*/
	padding-left: 5px;
	margin-left: 10px;
}

/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #e6e6e6);	/*グラデーション*/
	background: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	color: #00ade6;		/*文字色*/
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border: 1px solid #d4d4d4;		/*線の幅、線種、色*/
	border-radius: 6px;	/*角丸のサイズ*/
}
	

/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 5px 16px 17px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -5px;
}
/*mainコンテンツのh4タグ設定*/
h4.pala1 {
	clear: both;
	margin: 10px 10px 0;
	color: #0066ff!important;
	font-size: 1em;
}
/*一覧ページ
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main .list, #main .list3 {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background: -webkit-linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	background: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
}
#main .list3 {
	padding: 10px;	/*ボックス内の余白*/
	display: block;
}
#main .list a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main .list a:hover {
	border-radius: 6px;		/*角丸のサイズ*/
	background-color: #fff8c7;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main .list p, #main .list3 p {
	padding: 0px;
	margin-left: 24%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main .list figure img, #main .list3 figure img {
	float: left;			/*画像を左へ回り込み*/
	width: 20%;	/*画像の幅*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-right: 1%;		/*写真の右側に空ける余白*/
}

/*ボックス内のh4タグ設定*/
#main .list h4, #main .list3 h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #00ade6;	/*左側の線の幅、線種、色*/
	margin-bottom: 15px;
	color: #00ade6;	/*文字色*/
}
/*登録日情報（高機能版用）*/
#main .list .date {
	display:block;
	font-size:11px;
	color:#999;
	text-align: right;
}
/*一覧ページの各ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	font-size: 12px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	width: 76%;			/*テーブル幅*/
	margin-bottom: 5px;
}
#main .list table,
#main .list table td,
#main .list table th {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
#main .list table td,
#main .list table th {
	padding: 1%;	/*テーブル内の余白*/
}
/*色のついた見出しブロック*/
#main .list table th {
	width: 20%;
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #edf0f5;	/*背景色*/
}
/*白い説明用ブロック*/
#main .list table td {
	width: 30%;
}

#main .shohin ul{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	flex-wrap: wrap;
	list-style-type: none;
}
#main .shohin li a{
	margin-left:20px;
	background: url(../images/arrow1.png) no-repeat left center;
	padding-left: 30px!important;
}
#main .list3 section{
	overflow: auto;
	margin-bottom: 10px;
}
#lpg .system table {
	background: #FFF;	/*背景色*/
	width: 90%;			/*テーブル幅*/
	margin: 5px auto;
}
#lpg .system table,
#lpg .system table td,
#lpg .system table th {
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
#lpg .system table td,
#lpg .system table th {
	padding: 1%;	/*テーブル内の余白*/
}
#lpg .system table th {
	width: 25%;
	text-align: center;		/*文字をセンタリング*/
	background: #1fafaf;	/*背景色*/
	color: #fff;
}

.img-flex {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.img-flex img {
	/*width: 30%;*/
	margin: 5px 20px 40px;
}
.img-flex figcaption{
	text-align: center;
	font-weight: bold;
}
.dl-row {
	width: 40%;
	border: 1px solid #999;
	border-top: 0;
	line-height: 1.5;
	overflow: hidden;
	margin: 0 10px;
	float: left;
}
.dl-row dt{
	float: left;
	width: 70%;
	background: #edf0f5;
	padding: 5px 0 5px 30px;
	border-top: 1px solid #999;
}
.dl-row dd{
	margin-left: 70%;
	text-align: center;
	padding: 5px;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	background-color: #ccc;
}
.dl-fl{
	float:left;
}
.border-b{
	border-bottom: 1px solid #999;
}
/*会社概要
---------------------------------------------------------------------------*/
#about img{
	margin-bottom: 20px;
}
.picture {
	text-align: center;
}
#about dl, #about dt, #about dd{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

#about dl{
	background-color: #fff8c7;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
}
#about dt, #about dd{
	padding: 10px 10px 0 20px;
	border-top: 1px solid #999999;
}
#about dt{
	width: 10em;
	float: left;
}
#about dd {
	margin-left: 10em;
	padding-bottom: 10px;
	border-left: 1px solid #999999;
	background: #fff;
}
#about dd:after {
	content: '';
	display: block;
	clear: both;
}
/*プロパンガスのご案内
---------------------------------------------------------------------------*/
/*ご利用の開始・ガス料金・保安点検のBOX*/
.lpgmenu{
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	justify-content: space-between;
	margin: 0 5px;
	flex-wrap: wrap;
}
.lpgmenu::after{
  content:"";
  display: block;
  width:25%;
}
@media screen and (max-width: 600px) {
#main .list2 {
	width: 45%!important;　　/*タブレットサイズでは2列に*/
}
}
@media screen and (max-width: 480px) {
  .lpgmenu {
    flex-direction: column;　　/*スマホサイズでは1列に*/
  }
#main .list2 {
	width: 100%!important;
}
}
#main .list2 {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background: -webkit-linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	background: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 0px 1px #FFF inset;			/*同上*/
	width: 30%;
	height: 170px;
}
#main .list2 a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main .list2 a:hover {
	border-radius: 6px;		/*角丸のサイズ*/
	background-color: #fff8c7;	/*背景色*/
}
/*ボックス内の写真設定*/
#main .list2 figure {
	width: 120px;	/*画像の幅*/
	height: 100px;
	margin: 0 auto;		/*写真の右側に空ける余白*/
}
#main .list2 figure img {
	width: 120px;	/*画像の幅*/
	height: 100px;
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 1%;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main .list2 a h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #ffb8dc ;	/*左側の線の幅、線種、色*/
	margin-bottom: 15px;
	color: #de368a;	/*文字色*/
	white-space: nowrap;
}
/*----ガスのトラブル---------*/
.stop .cace{
	float: left;
	width: 22%;
	margin: 10px 12px;
}
.stop .cace figure{
	width: 70%;
	margin: 0 auto;
}
.stop .cace figure img{
	width: 100%;
	margin-bottom: 20px;
}
.ex {
	padding: 2px 0px 2px 5px;	/*上、右、下、左側への余白*/
	margin-bottom: 20px;
	color: #00ade6;	/*文字色*/
	line-height: 1.2em;
	height: 35px;
}


/*ご利用開始/停止の手続き
---------------------------------------------------------------------------*/
#move ul, #price ul{
	margin-bottom: 20px;
}
.point1{
	list-style-type: disc;
	margin-left: 40px;
	color: #5eb44c;
}
.point2 li{
	background: url(../images/icon-arrow04.png) no-repeat left center;
	padding-left: 20px;
	margin-left: 40px;
}
.point3 > li{
	background: url(../images/icon-check01-red.png) no-repeat left top;
	padding-left: 40px;
	margin-left: 50px;
	font-size: 1.1em;
	font-weight: bold;
	color: red;
}
.point3 li li{
	font-weight: normal;
	font-size: 0.9em;
	padding-left: 40px;
}

#support a{
	text-decoration: none;
	color: #007373;
}
#support a:hover {
	color: #00ade6;			/*マウスオン時の文字色（全体）*/
}
/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*左側に回り込み*/
	width: 23%;	/*サブコンテンツ幅*/
	padding-bottom: 50px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	background: #666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#999, #666);	/*グラデーション*/
	background: linear-gradient(#999, #666);			/*同上*/
	padding: 3px 0px;	/*上下、左右への余白*/
	color: #FFF;		/*文字色*/
	border-radius: 6px 6px 0px 0px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2 {
	border-radius: 0;	/*角丸をなくす設定*/
	background: #ff6666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
}
/*subコンテンツ内のbox1設定*/
#sub .box1 {
	background-color: #eee;		/*背景色*/
	border: 1px solid #cfcfcf;	/*枠線の幅、線種、色*/
	padding: 7px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#sub h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 ul {
	margin-bottom: 0;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	border-top: 1px solid #cfcfcf;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #cfcfcf;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #cfcfcf;		/*左側の線の幅、線種、色*/
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #FFF;	/*背景色*/
}
#sub ul li a:hover {
	background-color: #fff8c7;	/*マウスオン時のボックス色*/
}

/*サブコンテンツ　一覧ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box2 {
	font-size: 11px;	/*文字サイズ*/
	background: -webkit-linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	background: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	border-bottom: 1px solid #999;	/*下の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
}
#sub .box2 a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
#sub .box2 a:hover {
	background-color: #fff8c7;	/*マウスオン時のボックス色*/
}
/*h4見出しタグ*/
#sub .box2 h4 {
	color: #00ade6;		/*文字色*/
	font-size: 100%;
}
/*サムネイル画像*/
#sub .box2 figure img {
	width: 28%;		/*画像幅*/
	float: left;	/*左に回り込みさせる設定*/
	margin-right: 3%;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

#sub .box3 h2 a {
	text-decoration: none;
	color: white;
}
#sub .box3 h2 a:hover {
	color: #fff8c7;
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
ul#footermenu {
	clear: both;
	margin: 0px auto;
	text-align: center;
}
ul#footermenu li {
	display: inline;
	padding: 0px 5px;
}

/*フッター設定(copyrightなどが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;	/*文字色*/
	background: #00ade6;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new h2{
	margin-top: 20px!important;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ブロックの高さ*/
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	word-break: break-all;
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 100px;	/*ボタン幅*/
	padding: 5px;	/*ボタン内の余白*/
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*グラデーション*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*グラデーション*/
	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 95px;
	height: 40px;
}
.discountBox {
	width: 100%;
	margin: 0 auto!important;
	text-align:center;
	overflow: hidden;
}
.discountTable{
	width: 45%;
	float: left;
	margin: 0 20px 15px;
}
.discountTable caption{
	background-color: #ff6600;
	color: #fff;
}
.discountTable th {
	width: 20%;
	font-weight: normal;
}
.discountTable .orange1 {
	background-color: #fa2828 ;
	color: #fff;
}
.discountTable .orange2 {
	background-color: #fe6767;
	color: #fff;
	/*background-color: #ffff80;*/
	/*color: #a64400;*/
}
.discountTable .orange3 {
	background-color: #fea667;
	color: #fff;
}
.discountTable .orange4 {
	background-color: #ffecdb;
	color: red;
}
.discountTable .orange5 {
	background-color: #ff994d;
	color: #fff;
}
.discountTable .orange6 {
	background-color: #ffd9bd;
	color: red;
}

.discountTable .yellow1 {
	/*background-color: #ffe6cc;*/
background-color: #fa2828;
	color: #fff;
	/*color: #a60052;*/
}
.discountTable .yellow2 {
	background-color: #fe6767;
	/*background-color: #fea667;*/
	color: #fff;
}
.discountTable .yellow3 {
	background-color: #ffe64d;
	color: #a64400;
}
.discountTable .yellow4 {
	background-color: #ffe6b3;
	color: red;
}
.discountTable .yellow5 {
	background-color: #ffff80;
	color: #a64400;
}
.discountTable .yellow6 {
	background-color: #ffffe6;
	color: red;
}





/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #00ade6;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #00ade6;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
.faq dt a {
	color: #1a4ef7;	
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*「おすすめ（又はオプション１）」表示
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.option1 {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*「ご契約済（又はオプション２）」表示
---------------------------------------------------------------------------*/
.option2 {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #069;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.option2 {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #1fafaf;padding:5px;border-radius: 4px;}
.look2 {color:#fff;background: #1fafaf;margin-bottom:10px; border-radius: 4px; line-height: 1em; margin-top: 10px; padding: 10px!important;}

.mb15,.mb1em {margin-bottom: 15px!important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.nodec {text-decoration: none;}
a.nodec:hover {color: #ffff99!important;}
.color1 {color: #f61468;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.mini2 {font-size: 13px;}
.sh {display: none;}
.cl-red{color: red;}
.fwb{font-weight: bold;}
a.op:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
}
.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.mt30 {margin-top: 30px;}


/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 0 2%;
	padding-top: 30px;
}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*h1ロゴの設定*/
header #logo {
	width: 300px;	/*ロゴの幅*/
	top: 28px;		/*上から28pxの場所に配置*/
}
/*電話番号ボックスの設定*/
header address {
	right: 90px;	/*右から90pxの位置に配置*/
	letter-spacing: normal;
	font-size: 10px;	/*文字サイズ*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
#menubar-s {
	display: block;	/*小さな端末用メニューを非表示から表示に切り替える*/
	border-top: 1px solid #d4d4d4;	/*メニューの上の線の幅、線種、色*/
}
/*メニュー１個ごとの設定*/
#menubar-s ul li {
	float: left;
	width: 50%;	/*メニュー幅*/
	text-align: center;	/*文字を中央に揃える*/
	font-weight: bold;	/*文字を太字にする設定*/
}
#menubar-s ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #d4d4d4;	/*メニューの下の線の幅、線種、色*/
	padding: 8px 0;
}
/*奇数番目のメニューの設定*/
#menubar-s ul li:nth-child(odd) a {
	border-right: 1px solid #d4d4d4;	/*メニューの右側の線の幅、線種、色*/
}
/*英語表記の設定*/
#menubar-s ul li a span {
	color: #00ade6;	/*文字色*/
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
}
/*大きな端末用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 24px;	/*上から24pxの場所に配置*/
	right: 2%;	/*右から2%の場所に配置*/
	width: 28px;	/*幅*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/
	padding: 12px 5px 3px;	/*上、左右、下へのボックス内余白*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	/*枠線の幅、線種、色*/
	margin-bottom: 5px;	/*バー同士の余白*/
}
#menubar_hdr p {
	position: absolute;
	top: -8px;
	left: 4px;	/*右から2%の場所に配置*/
	display: block;
	font-size: 10px;
	text-align: center;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

.discountTable{
	width: 100%;
	float: none;
	margin: 10px 0;
}



/*サブコンテンツ　一覧ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub .box2 {
	font-size: 14px;	/*文字サイズ*/
}
/*サムネイル画像*/
#sub .box2 figure img {
	width: 15%;		/*画像幅*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {display: none;}

}



/*画面幅650px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:650px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロックの中*/
header .inner {
	text-align: center;
	height: auto;
	padding: 15px 0;
}
/*h1ロゴの設定*/
header #logo {
	position: static;
	margin: 0 auto 10px;
}
/*電話番号ボックスの設定*/
header address {
	position: static;
	text-align: right;
	margin-right: 85px;
}
/*箇条書き丸数字*/
.post ol {
	padding-left: 5px;
}
.img-flex {
    flex-direction: column;
  }
.dl-row {
	width: 96%;
}
.dl-row, .dl-row dt {
	float: none;
}
.dl-row dd, .dl-row dt {
	width: 100%;
	margin: 0;
}
.dl-row dd {
	border: 0;
}
.img-flex img {
	width: 100%;
	margin: 0 0 20px;
}
/*----ガスのトラブル---------*/
.stop .cace{
	width: 45%;
}

.discountTable{
	width: 100%;
	float: none;
}
#main .list3 p {
	margin-left: 5%;	/*左の写真とのバランスをとって設定*/
}


}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

body{
	font-size: 16px;
	line-height: 1.7em;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: none;
}
/*h1ロゴの設定*/
header #logo {
	height: 30px;
}
header #logo a{
	width: 240px;	/*ロゴの幅*/
	margin: 0;
	margin-left: 2%;
}

/*電話番号ボックスの設定*/
header address {
	display: none;	/*非表示にする設定*/
}
#mainimg {
	margin-top: 40px;
}
.stop .cace{
	float: none;
	width: 98%;
}
.stop .cace img{
	width: 90%;
}
/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 5px;	/*上から5pxの場所に配置*/
}

#menubar-s {
	margin-top: 45px;	/*上から5pxの場所に配置*/
	font-size: 14px;	/*文字サイズ*/
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#top #contents {
	padding-top: 20px;
}
#main h2{
	line-height: 1em;
}
/*一覧ページ
---------------------------------------------------------------------------*/
.post ol {
	padding-left: 5px;
}
.post ol > li {
	font-size: 17px;
}


/*ボックス内の段落タグ設定*/
#main .list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main .list figure img, #main .list3 figure img {
	float: none;
	margin: 0px;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*一覧ページの各ボックス内のテーブル
---------------------------------------------------------------------------*/
#main .list table {
	width: 100%;	/*テーブル幅*/
}

/*サブコンテンツ　一覧ボックス
---------------------------------------------------------------------------*/
/*サムネイル画像*/
#sub .box2 figure img {
	width: 30%;		/*画像幅*/
}

/*フッターメニュー設定
---------------------------------------------------------------------------*/
ul#footermenu {
	display: none;	/*非表示にする設定*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #e6e6e6);	/*マイナスアイコンとグラデーション*/
	background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_minus.png) no-repeat right center, linear-gradient(#FFF, #e6e6e6);			/*同上*/
}
section#new h2.close {
	background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #e6e6e6);		/*マイナスアイコンとグラデーション*/
	background: url(../images/arrow1.png) no-repeat left center, url(../images/btn_plus.png) no-repeat right center, linear-gradient(#FFF, #e6e6e6);				/*同上*/
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}


/*会社概要
---------------------------------------------------------------------------*/
.picture img{
	width:80%;
}


}

/*お問い合わせ
---------------------------------------------------------------------------*/


table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
