@charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:  "メイリオ", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
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;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #009933;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（ホームページを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*slide.cssの「#mainimg, #subimg」と設定と合わせる*/
	margin: 0 auto;
	border-top: 4px solid #009933;	/*一番上に入っているアクセントライン。幅、線種、色。*/
}

#container1 {
	max-width: 1200px;	/*slide.cssの「#mainimg, #subimg」と設定と合わせる*/
	margin: 0 auto;
	margin-top: 30px;
}

.clfix:after{
  content: "."; 
  display: block; 
  height: 0; 
  font-size:0;	
  clear: both; 
  visibility:hidden;
}


/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;z-index: 1;
	height: 140px;	/*ヘッダーの高さ*/
	background: #fff;	/*背景色*/
}
/*ロゴ画像*/
header #logo img {
	width: 350px;	/*画像幅*/
	position: absolute;
	left: 3%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 10px;	/*ヘッダーに対して上から38pxの場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
        max-width: 1500px;
        margin: 0 auto;
	clear: both;
	position: relative;
	top: 83px;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
        border-left: 1px solid #fff;	/*左側の線の幅、線種、色*/
	width: 16.5%;	/*メニュー幅（100÷6個=16.6%）　もし４個にするなら100÷4=25%になる。*/
	padding-top: 5px;	/*この数字と「#menubar li a」のpaddingの１つ目(7px)の数字を足した合計が「#menubar li a」の３つ目の数字(12px)になるようにする。*/
}
#menubar li a {
	display:  block;
	text-decoration: none;
	text-align: center;
	color: #fff;	/*文字色*/
	background: #009933;	/*背景色*/
	padding: 7px 0px 5px;	/*上、左右、下への余白。上の「#menubar li」のpadding-topの解説と合わせて読んで下さい。*/
	border: 1px solid #009933;
}

/*マウスオン時、現在表示中メニュー*/
#menubar li a:hover,
#menubar li.current a {
	background: #fff;	/*背景色*/
	color: #009933;		/*文字色*/

}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/*ドロップダウンブロックの設定*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;margin-top: 1px;
	width: 16.5%;	/*幅。上の「#menubar li」と合わせる。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;width: 100%;overflow: hidden;
	padding-top: 0px;	
	border-top: 1px dotted #fff;
}
#menubar ul.ddmenu li a {
	border: none;margin: 0;width: 100%;line-height: normal;
	padding: 10px 0;	/*上下、左右への余白*/
	background: rgba(0,0,0,0.8);	/*背景色*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #4D9959;
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
        position: absolute;
	top: 5px;
	right:50px;

	width: 350px;		/*ブロック幅*/
}
/*TEL*/
.tel {
	letter-spacing: 0.2em;	/*文字間隔を広くする設定。通常がいいならこの行削除。*/
	font-size: 23px;		/*文字サイズを大きく*/
	color: #009933;
}
.tel a{
        text-decoration: none;
	color: #dc143c;
}

/*TELの受付時間の小文字部分*/
.tel span {
	display: block;
	font-size: 14px;		/*文字サイズを小さく*/
	letter-spacing: 0.1em;	/*文字間隔*/
	color: #5A5A5A;
}

/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 3%;		/*headerに対して右から3%の場所に配置*/
	top: 50px;	/*headerに対して下から15pxの場所に配置*/
}
/*メニュー１個あたり*/
#headermenu li {
	float: left;	/*左に回り込み*/
	margin-left: 10px;	/*メニュー同士の余白*/
}
#headermenu li a.btn1 {
	padding: 0px 15px 0px 30px;	/*上、右、下、左へのボックス内の余白*/
}

/*btn1
---------------------------------------------------------------------------*/
/*btn1 2共通*/
a.btn1 {
	text-decoration: none;display: inline-block;
	background: #f6ad49 url(../images/arrow1.png) no-repeat 15px center;	/*古いブラウザ用*/
	background: #f6ad49 url(../images/arrow1.png) no-repeat 15px center / 6px;	/*背景色、背景の矢印画像の読み込み、左から15pxの場所に配置。幅を6pxに。*/
	color: #FFF !important;
	border-radius: 2px;			/*角丸のサイズ。ほんの少しだけ角を丸くしています。*/
}
/*マウスオン時*/
a.btn1:hover{
	border: 1px solid #f6ad49;	/*枠線の幅、線種、色*/
	color: #f6ad49 !important;
	background: #fff url(../images/arrow3.png) no-repeat 15px center / 6px;
}
/*contents内のbtn1。主にinfo.htmlやservice.htmlで使っています。*/
#contents a.btn1 {
	padding: 0px 35px 0px 50px;	/*上、右、下、左へのボックス内の余白*/
	letter-spacing: 0.2em;		/*文字間隔を広くとる設定*/
}

a.btn2 {
	text-decoration: none;display: inline-block;
	background: #339900 url(../images/arrow1.png) no-repeat 15px center;	/*古いブラウザ用*/
	background: #339900 url(../images/arrow1.png) no-repeat 15px center / 6px;	/*背景色、背景の矢印画像の読み込み、左から15pxの場所に配置。幅を6pxに。*/
	color: #FFF !important;
	border: 1px solid #339900;	/*枠線の幅、線種、色*/
	border-radius: 3px;			/*角丸のサイズ。ほんの少しだけ角を丸くしています。*/
	font-size: 16px;
        text-align: center;		/*文字をセンタリング*/
}
/*マウスオン時*/
a.btn2:hover{
	color: #339900 !important;
        background: #fff url(../images/arrow2.png) no-repeat 15px center / 6px;
}

p.btn2 a {
	height: 25px;
	text-decoration: none;display: inline-block;
	border: 1px solid transparent;	/*枠線の幅、線種、色。transparentは透明の事。*/
	background: #339900;	/*背景色*/
	color: #fff !important;	/*文字色*/
	border-radius:5px;		/*角丸のサイズ*/
	padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
	text-align: center;		/*文字をセンタリング*/
        margin: 10px;
}

/*マウスオン時*/
p.btn2 a:hover{
        border: 1px solid #339900;	/*枠線の幅、線種、色。*/
	background: #fff;			/*背景色*/
	color: #339900 !important;	/*文字色*/
}

/*contents内のbtn1。主にinfo.htmlやservice.htmlで使っています。*/
#contents a.btn2 {
	padding: 5px 35px 5px 50px;	/*上、右、下、左へのボックス内の余白*/
	letter-spacing: 0.2em;		/*文字間隔を広くとる設定*/
}

#contents1 a.btn2 {
	padding: 5px 35px 5px 50px;	/*上、右、下、左へのボックス内の余白*/
	letter-spacing: 0.2em;		/*文字間隔を広くとる設定*/
}

a.btn3 {
	font-size: 25px;
	color: #666;
	text-align: center;
	text-decoration: none;
	display: block;
}

a.btn3:hover{
	color: #009933 !important;
}

a.btn {
        display: block;
	padding-top: 15px;
	padding-bottom: 13px;
	background: #FFF url(../images/arrow2.png) no-repeat 15px center / 6px;	/*背景色、背景の矢印画像の読み込み、左から15pxの場所に配置。幅を6pxに。*/
	border-radius: 10px;
	font-size: 20px;
	line-height: 30px;
	color: #68A941;
	text-decoration: none;
	width: 40%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border: 3px solid #68A941;
        text-align: center;
}

a:hover.btn {
	position: relative;top:1px;left:1px;	/*マウスオン時に少し移動させる設定。*/
	box-shadow: none;	/*ボックスの影を消す設定。*/
	color: #FFF;	/*文字色*/
	background: #68A941 url(../images/arrow1.png) no-repeat 15px center / 6px;	/*背景色、背景の矢印画像の読み込み、左から15pxの場所に配置。幅を6pxに。*/
	border: 1px solid #68A941;	/*枠線の幅、線種、色*/
}


/*コンテンツ。メニューの下にある白い背景色のブロック。
---------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;position: relative;
	background: #fff;	/*背景色*/
	padding: 2% 1%;		/*上下、左右へのボックス内の余白*/
	margin: 20% 3% 50px;	/*上、左右、下へのボックスの外側への余白*/
}

#contents1 {
	clear: both;overflow: hidden;position: relative;
	background: #fff;	/*背景色*/
	padding: 2% 1%;		/*上下、左右へのボックス内の余白*/
	margin: 40% 3% 50px;	/*上、左右、下へのボックスの外側への余白*/
}

#contents h2 {
	clear: both;
	margin-bottom: 40px;	/*下に空けるボックスの外側への余白*/
	font-size: 180%;
        color: #336e08;
	text-align: center;		/*文字を中央に*/
	line-height: 1.5;		/*行間を基準より少し狭くする*/
        border-bottom: solid 4px #336e08;
	background: #e3f5d8;
	padding-top: 10px;
}

#contents h2 span {
	display: block;
	font-size: 60%;	/*文字サイズ*/
	color: #666;	/*文字色*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	margin-bottom: 10px;
}

#contents1 h2 {
	clear: both;
	margin-bottom: 40px;	/*下に空けるボックスの外側への余白*/
	font-size: 180%;		/*文字サイズ*/
	text-align: center;		/*文字を中央に*/
	line-height: 1.5;		/*行間を基準より少し狭くする*/
        border-bottom: solid 4px #009933;
}

#contents h3 {
	clear: both;
	margin-bottom: 20px;
	font-size: 24px;	/*文字サイズ*/
	border-bottom: 2px dotted #ccc;	/*下線の幅、線種、色*/
	padding-left: 20px;
}

#contents h3::first-letter {
	border-left: 3px solid #339900;	/*左側の線の幅、線種、色*/
	padding-left: 20px;	/*線と文字との余白*/
}

#contents p {
	padding: 0 20px 20px;
}

#contents h2.h2_title_01 {
	clear: both;
	font-size: 25px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding: 10px 20px;	/*上下、左右への余白*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border-bottom: 1px solid #dcdcdc;	/*メニュー下の線の幅、線種、色*/
	border-top: 4px solid #009933;	/*メニューの上の線の幅、線種、色*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	text-shadow: 0px 2px #fff;	/*テキストの影。右へ、下へ、色。*/
	color: #3f3f3f;
}

#contents1 h2.h2_title_01 {
	clear: both;
	font-size: 25px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	padding: 10px 20px;	/*上下、左右への余白*/
	background: #e3f5d8;	/*グラデーション*/
	border-bottom: 1px solid #dcdcdc;	/*メニュー下の線の幅、線種、色*/
	border-top: 4px solid #009933;	/*メニューの上の線の幅、線種、色*/
	box-shadow: 0px 1px 3px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	text-shadow: 0px 2px #fff;	/*テキストの影。右へ、下へ、色。*/
	color: #336e08;
}

#contents h5 {
	font-size: 20px;	/*文字サイズ*/
	color: #5aaf35;	
}

#contents1 h5 {
  position: relative;
  padding: 5px 5px;
  text-align: center;
  color: #336e08;
  font-size: 20px;
  border-radius: 0 10px 10px 10px;
  background: #e3f5d8;
  margin-bottom: 10px;
}

#contents1 h5:before {
	font-size: 15px;
  font-size: 1.3rem;
  position: absolute;
  top: -33px;
  left: 0;
  height: 34px;
  padding: 0 1em;
  content: '\POINT';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #22ac38;
}

#contents1 p.check {
	color: #FF3333;
	font-size: 16px;
        text-align: center;
}


#contents p {
	padding: 0 20px 0px;
}

#contents p + p {
	margin-top: 0px;
}

#contents section + section {
	margin-top: 40px;
}

#contents1 section + section {
	margin-top: 70px;
}


.icon {
	display: inline-block;
	margin: 2px;
	font-size: 14px;	/*文字サイズ*/
	padding: 0 5px;		/*ボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #eee;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
}

.icon a {
	text-decoration: none;
}

.icon.color1 {
	background: #8b0000;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
}

.icon.color2 {
	background: #0000ff;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
}

.icon.color3 {
	background: #008000;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
}

.icon.color4 {
	background: #ff8c00;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
}

.icon.color5 {
	background: #0000ff;	/*背景色（古いブラウザ用）*/
	color: #fff;
	margin-top: 50px;
}

.icon.color6 {
	background: #008000;	/*背景色（古いブラウザ用）*/
	color: #fff;	/*文字色*/
}

.img_left {
	float: left;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 20px;
}
.img_right {
	float: right;
	padding-right: 30px;
	padding-left: 30px;
	padding-bottom: 20px;
}

.box26 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 2px #dcdcdc;
    border-radius: 8px;
}

.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 25px;
    background: #FFF;
    color: #896625;
    font-weight: 500;
}

.box26 h4 {
  position: relative;
  overflow: hidden;
  padding: 10px 1rem 1rem 70px;
  word-break: break-all;
  border-top: 1px solid #65ab31;
  border-radius: 12px 0 0 0;
  font-size: 20px;
  color: #896625;
}

.box26 h4 span {
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 3px 20px;
  color: #fff;
  border-radius: 10px 0 20px 10px;
  background: #65ab31;
}

.box26 p {
    margin: 0; 
    padding: 0;
}

.box27 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 1px #dcdcdc;
    border-radius: 8px;
}

.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 20px;
    background: #FFF;
    color: #896625;
}

.box27 p {
    margin: 0; 
    padding: 0; 
}

/*box1（１カラムボックス）
---------------------------------------------------------------------------*/

.box1 {
	overflow: hidden;
	background: #fff;		/*背景色*/
	color: #666;			/*文字色*/
	margin: 0 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
	border-radius: 10px;
	border: 2px solid #d3d3d3;	/*枠線の幅、線種、色*/
	padding: 3%;
}

.box1 h4 {
	color: #336e08;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	font-weight: normal;
	border-bottom: 2px dotted #65ab31;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}

.box1 p {padding: 0;line-height: 1.5;}
.box1 p a {color: #666;}
.box1 p + p {
	padding-top: 10px;
}

.box1 p.btn1 {margin-top: 20px;}


/*ページ内専用メニュー（service.htmlの見出しの下で使っています）
---------------------------------------------------------------------------*/
.nav {
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid #666;
  font-size: 16px;
  list-style-type: none;
  overflow: hidden;
}
/*clearfix*/
.nav:after {
  content: "";
  clear: both;
  display: block;
}
.nav li {
  float: left;
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #666;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*奇数のli要素に適応*/
.nav li:nth-child(odd) {
  border-right: 1px solid #666;
}
.nav a {
  display: block;
  line-height: 44px;
  color: #666;
  text-decoration: none;
}
.nav a:hover {
  color: #fff;
  background: #5aaf35;
}

/*横幅1280px以上に適応*/
@media screen and (min-width: 700px) {
.nav li:nth-child(odd) {
  border-right: none;
}
.nav {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-top: none;
  border-collapse: collapse;
}
.nav li {
  float: none;
  display: table-cell;
  width: 100%;
  border-bottom: none;
  border: 1px solid #aaa;
}
}
@media screen and (max-width: 700px) {
.nav li {
  padding: 20px 0;	
}
.nav a {
  color: #5aaf35;
}
.nav a:hover {
  color: #fff;
  background: #5aaf35;
}
}

/*list（info.htmlで利用している各ボックス）
---------------------------------------------------------------------------*/

.list {
	position: relative;
	overflow: hidden;
	padding: 20px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	margin-bottom: 50px;		/*ボックス間の余白*/
        border-radius: 8px;
}

.list h4 {
	font-size: 18px;	/*文字サイズ*/
	color: #009933;		/*文字色*/
}

.list h4 a {
	color: #339900;	/*リンクテキストの文字色*/
}

.list p {
	padding: 0px 0px 10px;	/*上、左右、下への余白*/
}

list-style {
	margin-left: 10px;
}

/*list2（service.htmlで利用している各ボックス）
---------------------------------------------------------------------------*/

.list2 {
	overflow: hidden;
	width: 28.4%;	/*幅*/
	float: left;	/*左に回り込み*/
	margin: 0 0 40px 2%;	/*上、右、下、左へのボックスの外側に空けるスペース*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、色。0,0,0は黒の事で、0.1は色が10%出た状態。*/
	padding: 1%;	/*ボックス内の余白*/
	border-radius: 10px;	/*角丸のサイズ。ほんの少し角が丸くなってます。*/
}

.list2 a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。リンク設定する場合に、上の.listのpaddingを相殺するため。*/
	padding: 2%;	/*ボックス内の余白*/
}

.list a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}

.list2 h4 {
	color: #336e08;		/*文字色*/
	font-size: 150%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	font-weight: normal;
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

.list2 p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くする。デフォルトは最上部のbodyにあります。*/
	font-size: 100%;		/*文字サイズを少し小さく*/
	color: #4d5156;		/*文字色*/
	height: 4.5em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}

.list2 figure img {
	margin: 0 0 4% 0;	/*上、右、下、左への画像の外側にとるスペース*/
}

.list2 figure img.fr {
	width: 20%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 0 0 4%;	/*上、右、下、左への画像の外側にとるスペース*/
}

.list2 figure img.fl {
	width: 30%;		/*画像幅*/
	float: left;	/*左に回り込み*/
	margin: 0 4% 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}

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

.box_contact {
	background-color: #f5f4f0;
	padding-top: 70px;
	padding-bottom: 50px;
	text-align: center;
	padding-right: 10px;
	padding-left: 10px;
	background-image: url(../img/sankaku.png);
	background-repeat: no-repeat;
	background-position: center top;
}

.box_contact.only_tel {
	background-image: none;
}

.box_contact h3 {
	color: #333;
	font-size: 24px;
	margin-bottom: 20px;
}

.box_contact p {
	margin-top: 10px;
	margin-bottom: 20px;
	color: #333;
	font-size: 16px;
}

.box_contact .btn a {
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	border: 5px solid #f3981d;
	text-decoration: none;
	display: block;
	width: 90%;
	background-color: #f3981d;
	margin-right: auto;
	margin-left: auto;
	line-height: 30px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
	max-width: 500px;
}

.box_contact .btn a i {
	padding-right: 10px;
	font-size: 120%;
}

.box_contact .btn a:hover {
	color: #f3981d;
	background-color: #FFF;
	border-top-color: #f3981d;
	border-right-color: #f3981d;
	border-bottom-color: #f3981d;
	border-left-color: #f3981d;
}

.box_contact .tel a {
	font-size: 30px;
	font-weight: bold;
	color: #dc143c;
	text-decoration: none;
}

.box_contact .tel a strong {
	font-size: 120%;
}

.box_contact .tel a i {
	padding-right: 10px;
	font-size: 100%;
}


@media screen and (min-width:960px){
	
.box_contact .box_in {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

.box_contact .btn {
	float: left;
	width: 50%;
}

.box_contact .tel {
	float: right;
	width: 50%;
}

.box_contact.only_tel .tel {
	float: none;
	width: 100%;
}

}

@media screen and (max-width:480px){
.box_contact .btn a {
	font-size: 18px;
}
.box_contact .tel a {
	font-size: 24px;
}
.box_contact p {
	font-size: 14px;
}

.box_contact h3 {
	font-size: 18px;
}

}


/*フッター設定
---------------------------------------------------------------------------*/
.cont_wrap {
	max-width: 1500px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

footer {
	background-color: #FFF;
	color: #FFF;
	clear: both;
	width: 100%;
	display: block;
}

footer ul.f_bn {
	text-align: center;
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #f5f4f0;
        border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #009933;
}

footer .f_bn li {
	display: inline;
}

footer .f_bn li a {
	display: inline-block;
	font-size: 16px;
	letter-spacing: 1px;
	text-decoration: none;
	color: #fff;
	margin-left: 10px;
	margin-bottom: 5px;
}

footer .f_bn li a:hover {
	color: #009933;
	background-color: #fff;
}

footer .f_bn li a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

footer .f_bn li a i {
	padding-right: 5px;
	font-size: 200%;
}


footer ul.f_list {
	display: block;
	width: 25%;
	float: left;
	padding-bottom: 20px;
	padding-top: 20px;
}

footer ul.f_list li {
	text-decoration: none;
	color: #009933;
	display: block;
	padding: 2px;
}

footer ul.f_list li a {
	text-decoration: none;
	color: #009933;
	display: block;
	padding: 2px;
	padding-left: 25px;
}

footer ul.f_list li a:hover {
    	color: #f3981d;
}


footer ul.f_list li li a {
	padding-left: 25px;
	position: relative;
	border-radius: 5px;
	color: #525252;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	font-size: 16px;
}

footer ul.f_list li li a:hover {
    	color: #f3981d;
}

footer ul.f_list li li a::before {
	content:"・";
	position: absolute;
	top: 5px;
	left: 5px;
}


footer a {
	color: #fff;	/*リンクの文字色*/
}
footer a:hover {
	color: #fff;	/*マウスオン時のリンクの文字色*/
}


/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
    height: 100px; 
	clear: both;
	text-align: center;
	background: #fff;	/*背景色*/
	color: #666;		/*文字色*/
	font-size: 14px;

}
#copyright a {text-decoration: none;}
#copyright a {color: #00984f;}
#copyright a:hover {color: #666;}

/*サイト固定下部
---------------------------------------------------------------------------*/
#pr {
    position: fixed !important;  
    position: absolute;  
    bottom: 0;  
    left: 0;  
    width: 100%;  
    height: 70px; 
    background-color: #009933;  
    color: #fff;  
    text-align: center;
}

pr p {
	padding-top: 10px;	
}

.prmenu {
	position: absolute;
	right: 2%;	
	top: 20px;
}

.prmenu li {
	float: right;	/*右に回り込み*/
	margin-left: 20px;	/*左側にスペースを空ける*/
}

.prmenu li a {
	text-decoration: none;display: inline-block;
	background: #f3981d url(../images/arrow1.png) no-repeat 5px center / 6px;	/*背景色（古いブラウザ用）*/
	color: #FFF;	/*文字色*/
	padding: 5px 15px;	/*上下、左右へのボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/

	font-size: 15px;	/*文字サイズ*/
}

.prmenu li a:hover {
	color: #f3981d;	/*文字色*/
	background: #fff url(../images/arrow3.png) no-repeat 5px center / 6px;	/*背景色*/
	border: 1px solid #f3981d;	/*枠線の幅、線種、色*/
}

footer a {
	text-decoration: none;
}


/*サイトマップメニュー
---------------------------------------------------------------------------*/
.my-parts ul {
 list-style-type: disc;
margin-left: 20px;
  padding: 0;
}

.my-parts ul li a {
  display: block;
  padding: .4em .8em;
  text-decoration: none;
  background: #fff;
  color: #333;
  text-align: left;
  margin: .2em 0;
}

.my-parts ul li a:hover {
  color: #009933;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	background: #fff;	/*背景色*/
	padding: 20px;		/*ブロック内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
}

#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #65860e;	/*文字色*/
	letter-spacing: 0.1em;
}

#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption, .ta2 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
.ta1 {
	width: 100%;
table-layout: fixed;

}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 20px ;	/*ボックス内の余白*/

}

.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}

.ta1 th {
	width: 250px;	/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
}

.ta1 p img {
	width: 100%;
margin-right: 5px;
	float: left;
}

.ta1.cms td label {
	float: left;
	width: 50%;
}

.ta2 {
	width: 100%;
	margin: 0 auto 10px;
	border-bottom: 1px solid #fff;	/*テーブルの下の枠線の幅、線種、色*/
	text-align: center;
}

.ta2 td, .ta2 th {
	border-top: 1px solid #fff;	/*td,thの上側の線の幅、線種、色*/
	padding: 5px 10px;	/*ボックス内の余白*/
}

.ta2 th {
	background: rgba(0,0,0,0.2);	/*背景色*/
}


.ta3 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
.ta3 {
	width: 100%;
table-layout: fixed;
	margin: 0 auto 20px;

}
.ta3, .ta3 td, .ta3 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 20px ;	/*ボックス内の余白*/

}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta3 th {
	width: 180px;	/*幅*/
	text-align: left;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta3 p img {
	width: 100%;
margin-right: 5px;
	float: left;
}
/*labelタグを２列表示にする*/
.ta3.cms td label {
	float: left;
	width: 50%;
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	margin-bottom: 30px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
}
/*質問の設定*/
.faq dt {
	font-size: 20px;
	line-height: 30px;
	position: relative;
	font-family: "メイリオ", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 50px;
	color: #111;
	border-bottom: 2px dotted #896625;	/*下線の幅、線種、色*/
}

.faq dt span {
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
	background-color: #896625;
	text-align: center;
	display: block;
	width: 50px;
	padding-top: 10px;
	height: 40px;
	border-radius: 50%;
	position: absolute;
	top: -20px;
	left: -10px;
	z-index: 10;
}

.faq dt span::before{
	content: "";
	position: absolute;
	bottom: -5px;
	right: -3px;
 	margin-left: -12px;
        border-right: 12px solid transparent;
        border-top: 20px solid #896625;
        border-left: 12px solid transparent;
 	z-index: 0;
	transform: rotate(-40deg);
}



.faq dd {
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 50px;
	padding-left: 20px;
	font-size: 16px;
}


/* 無料見積り地域 
---------------------------------------------------------------------------*/
.item-list li {
 display: inline-block;
 text-align: center;
}


/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*ページの上部へボタン「↑」設定
---------------------------------------------------------------------------*/
@keyframes scroll {0% {opacity: 0;}100% {opacity: 1;}}
body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 80px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #339900;	/*背景色（古いブラウザ用）*/
	background: rgba(51,153,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	border-radius: 50%;	/*角丸の設定。円形にする。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}



/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 10px 10px 10px;list-style: disc;}
ul.disc1 {font-size: 15px; padding: 0em 25px 15px;list-style: disc;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.w30p {width: 30%;}
.w65p {width: 65%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left;margin-left: 1%;margin-bottom: 10px;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
.fll {float: left;margin-right: 2%;margin-bottom: 20px;}
.fr {float: right;}
img.fr {float: right;width:30%;margin-left: 20px;margin-bottom: 20px;}
img.fl {float: left;width:30%;margin-right: 20px;margin-bottom: 20px;}
.big1 {font-size: 18px;}
.big2 {font-size: 35px; padding-top: 5px;}
.color1, .color1 a {color: #a21e1e;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.ofh {overflow: hidden;}
.m2 {font-size: 25px; margin-right: 10px;}
.m3 {font-size: 25px; margin-right: 10px;}


/*画面幅1300px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1300px){
#pr {
	text-align: left;
}
.big2 {font-size: 30px; padding-top: 15px; padding-left: 40px;	}

}

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

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	font-size: 80%;	/*メニューのテキストが段落ちするので、文字サイズを縮小する。*/
}

#contents h2 {
	font-size: 150%;		/*文字サイズ*/
}
.img_left,
.img_right {
	float: none;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}

.tel {
	font-size: 20px;	
}
a.btn2 {
	font-size: 14px;
}

footer ul.f_list {
	display: none;
}

.box1 h4 {
	font-size: 22px;	/*文字サイズ*/	
}

a.btn {
	width: 60%;
}

.big1 {font-size: 18px;}
.big2 {font-size: 28px; padding-top: 10px; padding-left: 30px;	}
.m2 {font-size: 20px;}
.m3 {font-size: 20px;}
#copyright {
    height: 110px; 
}

}


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

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	top: 20px;	/*上から20pxの場所に配置*/
	width: 300px;	/*画像幅*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
position: absolute;
	top: 5px;
	right: 60px;
	margin-top: 5px;	/*ブロックの上にあける余白。上下のバランスをここで調整して下さい。*/
	width: 320px;		/*ブロック幅*/
}
.tel {
	font-size: 18px;		/*文字サイズを大きく*/
}

/*btn1
---------------------------------------------------------------------------*/
/*contents内のbtn1。主にinfo.htmlやservice.htmlで使っています。*/
#contents a.btn1 {
	padding: 0px 20px;	/*上、右、下、左へのボックス内の余白*/
	letter-spacing: normal;		/*文字間隔を初期設定に戻す*/
	background: #65860e url(none);
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	margin-top: 20%;	/*上に空けるスペース。この部分にイメージ画像が表示されます。*/
}
body.home #contents {
	margin-top: 40%;	/*上に空けるスペース。この部分にスライドショーが表示されます。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
#copyright {
    height: 100px; 
	clear: both;
}
#pr {
    height: 50px; 
}
#pr p {
	padding-top: 8px;	
 padding-left: 15px;	
}

.prmenu {
	position: absolute;
	right: 1%;	
	top: 8px;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	bottom: 60px;	/*下から20pxの場所に配置*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

.my-parts ul li a {
 font-size: 16px;
	padding-bottom: 20px;
}

.list2 h4 {
	font-size: 130%;	/*文字サイズ*/
}
.list2 p {
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
}

a.btn {
	width: 60%;
}


/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big2 {font-size: 22px;}
.w50 {overflow: hidden;width: auto;}
.sh {display:block;}
.pc {display:none;}
.m2 {font-size: 16px;}
.m3 {font-size: 16px;}

}


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

.list2 h4 {
	font-size: 120%;	/*文字サイズ*/
}

}


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 15px;	/*文字サイズ*/
}

header {
	height: 80px;	/*ヘッダーの高さ*/

}
/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 250px;	/*画像幅*/
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
position: absolute;
	right: 40px;
	width: 280px;		/*ブロック幅*/
}
.tel {
	font-size: 15px;		/*文字サイズを大きく*/
}
#headermenu {
	right: 20%;		/*headerに対して右から3%の場所に配置*/
	top: 40px;	/*headerに対して下から15pxの場所に配置*/
}

/*スマホ用メニューブロック
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: auto;height: 80%;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2,#menubar_hdr3,#menubar_hdr4 {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}	/*文字色*/

/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2,#menubar_hdr3,#menubar_hdr4 {
	padding-left: 35px;
}
/*子メニューメニューブロック全体*/
#menubar-s2,#menubar-s3,#menubar-s4 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: #fff;
}
/*「＞」アイコン設定*/
#menubar_hdr2.close,#menubar_hdr3.close,#menubar_hdr4.close {
	background: url(../images/arrow4.png) no-repeat 10px 18px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open,#menubar_hdr3.open,#menubar_hdr4.open {
	background: url(../images/arrow5.png) no-repeat 10px 18px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a,#menubar-s3 li a,#menubar-s4 li a {
	color: #666 !important;
	border-bottom: 1px solid #999 !important;
	padding: 5px;
}
#menubar-s2 li:last-child a,#menubar-s3 li:last-child a,#menubar-s4 li:last-child a {
	border-bottom: none !important;
}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 18px;		/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #fff;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #65ab31 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #65ab31 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu。メインメニューが画面上部に到達した際の設定
---------------------------------------------------------------------------*/
body.is-fixed header {
	margin-bottom: 0px;	/*fixmenuから折りたたみメニューになるので、ここはリセット。*/
}

.list2 h4 {
	font-size: 110%;	/*文字サイズ*/
}
.list2 p {
	font-size: 90%;
	height: 7.5em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
}

.box1 h4 {
	font-size: 130%;	/*文字サイズ*/
}

.fr, .fll {float: none;}
.w30p, .w65p {width: auto;}


/*コンテンツ
---------------------------------------------------------------------------*/
/*h3タグ*/
#contents h3 {
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

#contents1 h2.h2_title_01 {
	font-size: 18px;	/*文字サイズ*/
}

#contents h2.h2_title_01 {
	font-size: 18px;	/*文字サイズ*/
}

#contents h2 span {
	font-size: 70%;	/*文字サイズ*/
	margin-bottom: 10px;
}

a.btn {
	width: 60%;
	padding: 10px 0;
	font-size: 18px;
}

p.btn2 a {
	padding: 5px 20px;		/*上下、左右へのボタン内の余白*/
}

.big2 {font-size: 25px;}
#pr p {padding-top: 8px;}
}

/*スマホ用改行
---------------------------------------------------------------------------*/
@media screen and (min-width: 650px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
  .spNone { display:block; }
  .pcNone { display: none;}
}
@media screen and (max-width: 650px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
  .spNone { display: none;}
  .pcNone { display:block; }
}

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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 14px;	/*文字サイズ*/
}

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	position: static;
	height: auto;
}

header #logo img {
	width: 260px;	/*画像幅*/
	position: static;
	padding: 20px 3%;
}

/*ヘッダー右側の電話番号ブロック
---------------------------------------------------------------------------*/
#contact {display: none;}

#headermenu {display: none;}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents h2 {
	font-size: 110%;	/*文字サイズ*/
	margin-bottom: 20px;	/*下に空けるボックスの外側への余白*/
}

#contents1 h2 {
	font-size: 140%;	/*文字サイズ*/
	margin-bottom: 20px;	/*下に空けるボックスの外側への余白*/
}

#contents h2 {
	font-size: 18px;	/*文字サイズ*/
	margin-bottom: 20px;	/*下に空けるボックスの外側への余白*/
}

#contents h3 {
	font-size: 150%;	/*文字サイズ*/
	margin-bottom: 20px;/*下に空けるボックスの外側への余白*/
	line-height: 1.5;	/*行間を少し狭くする*/
}

#contents1 h5 {
  font-size: 18px;
}

#contents p {
	padding: 0px 0px 20px;	/*上、左右、下への段落タグ内の余白*/
	line-height: 1.5;		/*行間を少し狭くする*/
	font-size: 16px;	/*文字サイズ*/
}

#contents section + section {
	margin-top: 20px;
}

#contents1 section + section {
	margin-top: 50px;
}

#copyright {
	    font-size: 13px;
}


/*btn1
---------------------------------------------------------------------------*/
#contents a.btn1 {
	padding: 0px 10px;	/*上、右、下、左へのボックス内の余白*/
}

/*list（info.htmlで利用している各ボックス）
---------------------------------------------------------------------------*/
.list {
	padding: 10px;	/*ボックス内の余白*/
}
.list p {
	font-size: 14px;
}

#contents a.btn {
	width: 80%;
	font-size: 16px;
}


/*list２ブロック
---------------------------------------------------------------------------*/
.list2 {
	width: auto;
	float: none;
	margin-left : 0;
}
.list2 figure {
	float: left;
	width: 40%;
	margin-right: 2%;
}

.list2 h4, .list p {
	height: auto;
	font-size: 130%;
}

.list2 p {
	height: 6em;		/*高さ。1.5emを１行分とカウントして下さい。6emなら４行です。*/
	    font-size: 14px;
}

#contents .list2 p {
	    font-size: 14px;
}

p.btn2 a {
	float: right;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
.ta1 caption, .ta2 caption {
	padding: 5px;	/*ボックス内の余白*/
}

.ta1,
.ta2 {
	width: 100%;
	margin: 0 0 30px;
}
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	padding: 5px;	/*ボックス内の余白*/
}

.ta1 th {
	width: 100px;
}

.ta3 caption {
	padding: 5px;	/*ボックス内の余白*/
}
.ta3 {
	width: 100%;
	margin: 0 0 30px;
}
.ta3, td, .ta3 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta3の左側ボックス*/
.ta3 th {
	width: 100px;
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq dd {
	font-size: 15px;
}

.faq dt {
	font-size: 16px;
}

.faq dt span {
	font-size: 14px;
	margin-top: 5px;
}

#contents1 .box26 .box-title {
    font-size: 18px;
}

#contents1 .box26 h4 {
    font-size: 18px;
}

#contents1 .box26 h4 span {
    font-size: 18px;
}

#contents .box26 .box-title {
    font-size: 18px;
}

#contents .box26 p {
    font-size: 16px;

}

.box1 h4 {
	font-size: 130%;	/*文字サイズ*/
	text-align: center;
	padding-top: 10px;
}

#contents .box1 p {
	font-size: 15px;	/*文字サイズ*/
}

#contents .box27 p {
   	font-size: 15px;
}

#contents .box27 .box-title {
    font-size: 18px;
}

footer p {
	font-size: 13px;
}

#pr p {
	padding-top: 10px;	
 	padding-left: 20px;
}

#contents1 p.check {
	font-size: 15px;
	text-align: left;
}


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
.big2 {font-size: 18px;}
img.fl {margin-right: 5px;margin-bottom: 5px;}
img.fr {margin-left: 5px;margin-bottom: 5px;}
ul.disc {padding: 0em 0px 20px 0px;}
.my-parts {font-size: 15px;}
.item-list {display: none;}
.m2 {display: none;}
.m3 {font-size: 16px; padding-left: 10px; margin-right: 5px;}
.fr, .fll {float: none;}
.w30p,.w65p {width: auto;}

}


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

#pr p {
	padding-top: 12px;	
 	padding-left: 5px;
}
.big2 {font-size: 18px;}
.box26 .box-title {
    font-size: 18px;
}
#contents h2.h2_title_01 {
	font-size: 18px;	/*文字サイズ*/
}
a.btn {
	width: 100%;
	font-size: 18px;
}
}


/*画面幅350px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:350px){
header #logo img {
	width: 230px;
}
#pr p {
	padding-top: 15px;	
}
.m3 {font-size: 13px; padding-left: 5px; margin-right: 5px;}
.big2 {font-size: 16px;}

}
