@charset "utf-8";

/* リセットスタイル
-------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 102%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

ol, ul {list-style: none;}
table {border-collapse: separate;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img {border: 0;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}

img {
  height: auto;max-width: 100%;line-height: 0;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
  position: relative;
  gap:0 !important;
}

a.td_none {text-decoration: none}
#contents a:hover img ,
#side_bar a:hover {opacity: 0.5}

body{
	font:80%/1.6 "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	color:#333;
	-webkit-text-size-adjust: none;
	background-color: #fff;
}

/* 全体レイアウト */
nav{
 width: 100%;
 height: 40px;/* 70pxから修正-メニューの高さ３箇所 */
 position: relative;
 background: #EFEFEF;
}

/*============================================================
ヘッダー
============================================================*/

#header {
    max-width: 960px;
    margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
#header a {text-decoration: none}
#header .header_l {
  display: flex;
  align-items: center;
}
#header .logo {max-width: 200px;}
#header .box_text {
  background: #ffff00;
  color: #22ac38;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;width: 70px;
  margin-left: 10px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 2px;
  padding-left: 2px;
}

#header .header_mail {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 0 1em;
  border: solid 2px #29abe2;
  background: #29abe2;
  color: #fff;
  font-size: 20px;
  border-radius: 8px;
}
#header .header_mail svg {height: 40px;margin-right: 5px;}
#header .header_mail svg .mail_icon {fill:#fff;}
#header .header_mail:hover { color: #29abe2; background: #FFF;}
#header .header_mail:hover svg .mail_icon { fill: #29abe2; }

@media screen and (min-width: 769px) {/* タブレット */
  #header { height: 80px; }
  
}
@media screen and (max-width: 768px) {/* タブレット */
  #header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px 5px 10px
  }
  #header .header_l {margin-bottom: 10px;}
  #header .header_r {width: 100%;text-align: center;}
  #header .header_mail {max-width: 400px;margin: auto;height: 50px;}
  #header .header_mail svg {height: 30px;margin-right: 5px;}
}
@media screen and (max-width: 459px) {/* 最小 */
  #header .logo img {width: auto; height: 17vw;}
  #header .box_text {width: 17vw; height: 17vw;}
}

/**スマホの時**/
@media screen and (max-width: 459px) {/* 最小 */
  #header .tell .number {font-size: 8vw;}
}

/*============================================================
メインナビ
============================================================*/
.drawer{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
 position: relative;
 height: 70px;
 /* padding: 0 1em; */
}

.drawer p{
	display: none;
}

/* トグル部分 */
.navbar_toggle{
 z-index:9999;
}
.navbar_toggle_icon {
 position: relative;
 display: block;
 height: 2px;
 width: 30px;
 background: #5c6b80;
 -webkit-transition: ease .5s;
 transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
 top: 0;
}
.navbar_toggle_icon:nth-child(2) {
 margin: 8px 0;
}
.navbar_toggle_icon:nth-child(3) {
 top: 0;
}
/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
 top: 10px;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
 -webkit-transform: translateY(-50%);
 transform: translateY(-50%);
 opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
 top: -10px;
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg);
}

/* ナビゲーション部分 */
.menu{
 -webkit-transform: translateX(-100%);
 transform: translateX(-100%);
 -webkit-transition:ease .5s;
 transition:ease .5s;
 z-index:1000;
}
.menu ul li{
 padding: 2em;
 border-bottom: 1px solid #CCC;
}
.menu ul li:hover{/* メニューロールオーバー */
 font-weight: bold;
 background: -webkit-gradient(linear , left top , left bottom , from(#f58c37) , color-stop(0.49, #f58c37) , color-stop(0.50, #ee6637) , to(#ee6637));
 background: -moz-linear-gradient(top center, #f58c37 0%, #f58c37 49%, #ee6637 50%, #ee6637 100%);
}
/*.menu ul li a{
	height: 70px;
}

 .menu ul li a:hover{
 color: #ffe959;
} */

/*OPEN時の動き*/
.menu.open {
 -webkit-transform:translateX(0);
 transform:translateX(0);
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
}

/* 追記-コーディング */
.head_inner{/* h1より下のヘッダー */
	margin: 0.5em auto !important;
	overflow: hidden;
	zoom: 1;
}




/*============================================================
メイン画像　＋　メイン画像下の電話
============================================================*/
#main_tel * {
  box-sizing: border-box;
  line-height: 1;
font-family: "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
#main_tel {
  background:#ffff00;
  color: #22ac38;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  gap:0 !important;
}
#main_tel p {margin: 0}
#main_tel .main_tel_text {
  color: #333;
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
}
#main_tel .main_tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  line-height: 1;
}
#main_tel .main_tel .free {
  background: #22ac38;
  color:#ffff00;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main_tel .credit {
  font-size: 12px;
  text-align: center;
  border: solid 1px #22ac38;
  border-radius: 8px;
  padding: 5px;
}
#main_tel .credit .card {
  display: flex;
  justify-content: space-around;
  margin-top: 3px;
}
#main_tel .credit .card img {max-width: 18%;}

#main_img_sub {
  background: #eeeeee;
  padding: 5px;
  margin: 0;
  font-size: 0;
}
#main_img_sub li {
  display: inline;
  list-style: none;
  color: #4d4d4d;
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
}
#main_img_sub li::before {content: "※"}

@media print, screen and (min-width: 770px) {/*PC*/
  #main_tel ,#main_img_sub {
    width: 960px;
    margin: 0 auto;
  }
  #main_img_sub {display: block;}
  #main_tel { padding: 10px 15px; margin-top: -7px;}
  #main_tel .main_tel .free {
    height: 50px;
    padding: 0 8px 0 10px;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 18px;
    margin-right: 5px;
  }
  #main_tel .main_tel .number {
    font-size: 50px;
  }
  #main_tel .credit {width: 280px}
  
  #main_img_sub {
    text-align: center;
  }
}
@media screen and (max-width: 769px) {/*SP*/
  #main_tel {
    flex-direction: column;
    padding: 10px;
  }
  #main_tel .main_tel_text br {display: none}
  #main_tel .main_tel .free  br {display: none}
  #main_tel .main_tel .free {
    font-size: 26px;
    height: 40px;
    padding: 0 5px;
    margin-right: 5px;
  }
  #main_tel .main_tel .number {font-size: 40px;}
  
  #main_tel .credit {display: none}
}
@media screen and (max-width: 539px) {/*SP*/
  #main_tel .main_tel_text {font-size: 3vw;}
  #main_tel .main_tel {margin-top: 1.5vw}
  #main_tel .main_tel .free {
    font-size: 5vw;
    height: 8vw;
    padding: 0 1.5vw;
    margin-right: 1.5vw;
  }
  #main_tel .main_tel .number {font-size: 8vw;}
  #main_img_sub li {font-size: 2vw;}
}

































h1{
	background-color: #22ac38;
	font-size: 1.2em;
	padding: 0.5em 0 0.3em 0;
	color: #fff;
	text-align: center;
}
.menu{
	background: -webkit-gradient(linear , left top , left bottom , from(#f15a24) , color-stop(0.49, #f15a24) , color-stop(0.50, #e62424) , to(#e62424));
    background: -moz-linear-gradient(top center, #f15a24 0%, #f15a24 49%, #e62424 50%, #e62424 100%);
}
.cont_960{
	width: 960px;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	zoom: 1;
}
.main_img {
  background: #eeeeee;
}
.main_img .SP{
	display: none;
}
#contents_wrap_top{
	margin: 2em auto;
}
#contents_wrap{
	margin: 1em auto 2em;
}
#pankuzu{
	overflow: hidden;
	zoom: 1;
}
#pankuzu li{
	float: left;
}
#pankuzu li a{
	color: #333;
	text-decoration: none;
}
#pankuzu li a:hover{
	text-decoration: underline;
	color: #e62424;
}

#contents{
	width: 750px;
	float: right;
}
h2{
	font-size: 1.6em;
	background: -webkit-gradient(linear , left top , left bottom , from(#f15a24) , color-stop(0.49, #f15a24) , color-stop(0.50, #e62424) , to(#e62424));
    background: -moz-linear-gradient(top center, #f15a24 0%, #f15a24 49%, #e62424 50%, #e62424 100%);
	color: #fff;
	padding: 0.5em;
	text-align: center;
	font-weight: bold;
}

/*210805　追加*/
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

h4{
	background: linear-gradient(0);
	padding: 0;
	margin: 0;
	text-align: center;
}
#h4_excl {
    margin: 0 10px;
}

#top_caution{
	overflow: hidden;
	zoom: 1;
}
#top_caution img{
	float: left;
}
.top_copy{
	font-size: 18px;
	padding: 20px 10px;
	margin-bottom: 20px;
}
.top_copy span{
	display: inline;
	color:#FF0004;
	font-weight: bold;
	background-color: #FFFA7F;
}
.caution_sarutaro{
	float: none;
	max-width: 264px;
}

.top_case{
	width: 95%;
	margin: 0 auto;
	margin-bottom: 10px;
	border: 2px solid ;
	padding: 10px;
	border-radius: 5px;
	overflow: hidden;
	zoom: 1;
}
.top_case img{
	width: 100%;
}
.top_case p{
	margin: 0;
}
#h3_case {
    margin: 8px 0 4px;
    font-size: 2em;
	font-weight: bold;
}
.case{
	margin-bottom: 20px;
}

/*210805　追加ここまで*/


.p_normal{
	padding: 1em;
}
h3{
	font-size: 1.2em;
	font-weight: bold;
}
.h3_center{
	text-align: center;
	margin: 0.5em auto;
}
.top_fimgs{
	overflow: hidden;
	zoom: 1;
}
.top_fimgs img{
	float: left;
	margin: 0 auto;
}
img.fimgs_lm {
    margin: 0 0 0 9px;
}
.price_fimgs{
	overflow: hidden;
	zoom: 1;
}
.price_fimgs div{/* サブページの最初の３つ並び。 */
	width:245px;
	float:left;
}
.price_lm{
	margin: 0 0 0 5px;
}
.price_second{
	background-color: #fff0f0;
	padding: 1em 2em 1em;
}
.price_second h3{
	color: #4d4d4d;
	font-size: 1.55em;
	margin: 0 0 0.7em;
	border-bottom: solid 7px #ffff00;
	overflow: hidden;
	zoom: 1;
	line-height: 1.2;
}
.price_second img{
	float: left;
	padding: 0 1em 0.1em 0;
}
.company_first{
	margin: 0.5em auto 2em;
	overflow: hidden;
	zoom: 1;
	padding: 0 2em;
}
.company_first img{
	width: 115px;
	height: auto;
	float: left;
	padding: 0 1em 0.1em 0;
}
.company_first p{
	font-weight: bold;
	color: #4d4d4d;
	padding: 1em 2em;
}
.tel_subpage{
	margin: 1em auto 0;
}

.top_cont h2{
	margin: 2em auto 0;
}
.sub_cont h2{
	margin: 0 auto;
}
.top_cont img{
	margin: 0 auto 0;
}
.cont_tel{
	margin: 0.1em auto 2em;
}
#top_fcont{
	overflow: hidden;
	zoom: 1;
}
#top_fcont img{
	float: left;
}
#h3_excl {
    margin: 8px 0 4px;
    font-size: 2em;
	font-weight: bold;
}
#exclamation{
	margin: 0 10px 0 15px;
}
#top_fcont p{
	font-size: 0.9em;
	margin: 0 0 0 21em;
}
.sub_second{
	margin: 2em auto;
}
.cont_merit{
	overflow: hidden;
	zoom: 1;
}
.cont_merit img, .cont_flow img{
	display: block;
	float: left;
	padding: 0 0.5em 0 0;
    height: auto;
}
.cont_merit img{
	width: 250px;
}
.cont_flow img{
}
.cont_merit_inner{
	padding: 1em;
	overflow: hidden;
	zoom: 1;
	background-color: #ffffd9;
}
.cont_flow_inner{
	padding: 1em;
	overflow: hidden;
	zoom: 1;
}
.cont_merit_inner h3{
	font-size: 1.64em;
	background-color: #f9f04e;
    border-radius: 10px 10px 10px 10px;
    padding: 0.1em 0 0 0.3em;
}
.cont_merit_inner p{
	font-size: 0.8em;
	padding: 0.5em;
}
.cont_flow_inner p{
	font-size: 0.9em;
	padding: 0 0 0 1em;
}
.merit_inner2 {
    float: left;
    width: 460px;
}
.flow_inner2 {
	padding: 0 0 0.5em;
}
.qanda_inner{
	overflow: hidden;
	zoom: 1;
}
.question, .answer{
	float: left;
    margin: 0 1em 0 0 !important;
}
.qanda_inner h3{
	font-size: 1.5em;
	margin: 0.1em 0 0 0;
}
.box_question, .box_answer{
	border: solid 1px #999;
    padding: 1em 0 1em 1em;
}
.box_answer{
	background-color: #fff5ff;
}
.answer{
	clear: both;
}
.tel_sp{
	display: none;
}

.qaa_t, .qaa_t td, .qaa_t th {
	border: 1px solid #999;
	border-collapse: collapse;
}
.qaa_t td, .qaa_t th {
	padding: 1em 0.5em 1em 4em;
	width: 750px;
}
.qaa_t td{
	background: url("../images/question.png") 12px center no-repeat;
}
.qaa_t td img{
	position: relative;
	left: 145px;
	top: 10px;
}

.company_t{
	width: 750px;
	margin: 2em 0;
}
.company_t td{
	padding: 2em;
}
.company_t, .company_t td, .company_t th {
	border: 1px solid #999;
	border-collapse: collapse;
	text-align: center;
	font-weight: bold;
}
.company_t_bc{
	background-color: #d3edfb;
}
.h2_company{
	color: #4d4d4d;
	background: none;
	font-size: 2.2em;
	line-height: 1.3;
	padding: 0 1.5em;
}
.cont_hachi{
	border: solid 8px #4d4d4d;
	border-radius: 10px;
	overflow: hidden;
	zoom: 1;
}
.cont_hachi h2{
	background: #4d4d4d;
	padding: 0.2em;
}
.cont_hachi dl{
	float: left;
	width: 280px;
    padding: 1em 0 0.5em 1em;
	font-size: 0.9em;
}
.cont_hachi dl dt{
	font-weight: bold;
	background-image: linear-gradient(-18deg, #fcee21 50%, #ffff1e 50%); 
	width: 70px;
	text-align: center;
	padding: 0.3em 0 0.1em;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
				-1px 1px 0 #FFF, 1px -1px 0 #FFF,
				0px 1px 0 #FFF,  0-1px 0 #FFF,
				-1px 0 0 #FFF, 1px 0 0 #FFF;
}
.cont_hachi dl dd{
	margin: 0.2em 0 0.8em;
	line-height: 1.4;
}
.cont_hachi img{
	float: right;
	margin: 0.9em 0.9em 0 0;
}
.cont_hachi_2{
	margin: 1em 0;
}
.cont_hachi_2_inner{
	width: 400px;
	float: right;
}
.cont_hachi_2 h3{
	padding: 0.2em;
	font-size: 1.6em;
	border-bottom: solid 5px #4d4d4d;
	line-height: 0.5;
	margin-bottom: 0.5em;
}
.cont_hachi_2 img {
    padding-top: 0.5em;
}
.cont_hachi_bc {
    background-color: #ffffd9;
    padding: 1em 2em 1em;
}
.cont_hachi_bc img{
	float: right;
	padding: 0 0 0.1em 1em;
}
.cont_hachi_3_inner{
	float: left;
	margin: 1em 0 0 90px;
}
.cont_hachi_3 span{
	background-color: #fff100;
	display: block;
}
.cont_hachi_3 p{
	clear: both;
	padding: 1em 0 0;
}
.cont_hachi_4{
	border: solid 5px #6e88ba;
	border-radius: 10px;
	margin: 1.3em auto 0;
	overflow: hidden; 
	zoom: 1;
}
.cont_hachi_4 h3{
	background-color: #6e88ba;
	border: solid 5px #6e88ba;
	border-radius: 10px;
	width: 85%;
	margin: 0.5em auto 0;
	color: #fff;
	text-align: center;
}
.cont_hachi_4 img{
	float: left;
	margin: 2em 1em 0 2em ;
}
.cont_hachi_4_inner h4{
	margin: 1.2em 0 0 0;
}
.cont_hachi_4_inner{
	margin: 0 0 1.5em 0;
    width: 510px;
    float: left;
    font-size: 0.8em;
}
.cont_hachi_suzume{/* スズメバチの対処方法 */
    float: left;
    margin: 1em 16px 0 0;
}
.cont_hachi_suzume_2{
	float: left;
	margin-top: 1em;
}

/* サイドバー */
#side_bar{
	width: 190px;
	float: left;
}
#side_bar img{
	display: block;
}
.side_m2{
	margin-top: 1.5em;
}
.side_midashi{
	margin-top: 1em;
	display: block;
	width: 190px;
	font-size: 1.3em;
	line-height: 2.5;
	background: -webkit-gradient(linear , left top , left bottom , from(#7ac943) , color-stop(0.49, #7ac943) , color-stop(0.50, #39b54a) , to(#39b54a));
    background: -moz-linear-gradient(top center, #7ac943 0%, #39b54a 49%, #39b54a 50%, #39b54a 100%);
	color: #fff;
	text-align: center;
}
#side_bar ul li{
	border-style: solid;
	border-color: #999;
	border-width: 0 1px 1px;
}
#side_bar a{
	text-decoration: none;
}
#side_bar a:hover{
	text-decoration: underline;
}
.side_question li{
	background: url("../images/question.png") 5px center no-repeat;
	padding: 0.5em 2px 0.5em 55px;
}
.side_colum li{
	background: url("../images/hachi_mark.png") 10px center no-repeat;
	padding: 0.5em 2px 0.5em 45px;
}

/* サイトマップ */
#ul_sitemap{
	width: 90%;
	margin: 2em auto;
	font-size: 1.4em;
}
#ul_sitemap li{
	background: url(../images/allow.png) 5px center no-repeat;
    padding: 0.5em 2px 0.5em 45px;
}
#ul_sitemap li a{
	text-decoration: none;
}
#ul_sitemap li a:hover{
	text-decoration: underline;
}

.qanda{
	overflow: hidden;
}

/* フッター */
#foot{
	margin: 4em auto 0;
	padding: 3em 0 8em;
	border-top: solid 1px #999;
	overflow: hidden;
	zoom: 1;
	background-color: #4d4d4d;
	color: #fff;
}
#foot_inner{
	width: 960px;
	margin: 0 auto;
}
#foot a{
	text-decoration: none;
	color: #fff;
}
#foot a:hover{
	text-decoration: underline;
	color: #22ac38;
}
#foot img{
	display: block;
	float: left;
	margin: 10px 80px 0 0;

}
#foot ul{
	overflow: hidden;
	zoom: 1;
}
#foot ul li{
	float: left;
	margin: 0 3em 0 0;
	line-height: 3;
}
#copyright{
	margin: 7em auto 0;
	text-align: center;
}

/* ここからstyle2.cssで修正 */

@media screen and (min-width: 769px) {/* PC、タブレット */
	nav{
	 display: flex;
	 flex-direction: row;
	}
	.navbar_toggle{
	 display: none;
	}
	.menu{
	 width: 100%;
	 height: 40px;/* 追記-メニューの高さ３箇所 */
	 -webkit-transform: translateX(0);
	 transform: translateX(0);
	}
	.menu ul{
	 height: 40px;/* 70pxから修正-メニューの高さ３箇所 */
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: center;
	 align-items: center;
    width: 960px;margin: 0 auto;
	}
	.menu ul li{
    flex-grow: 1;
    padding: 0;
     border-bottom: none;
	}
	.menu ul li a{
    box-sizing: border-box;
 display: block;	
  padding: 0 0;
  line-height: 40px;
	color: #fff;
	text-decoration: none;
    text-align: center;
	}
}

@media screen and (max-width: 768px) {/* タブレット */
	nav{
	height: 70px;
    z-index: 99;
	}
	.drawer{/* 追記 */
	padding: 0 1em;
	float: right;
	}
	.drawer p{/* 追記 */
	font-weight: bold;
	font-size: 1.2em;
	color: #5c6b80;
	text-align: right;
	display: block;
	padding-right: 10px;
}
	.navbar_toggle{
		clear: both;
	}
	.menu{
		background: #f15a24;/* 追記 */
	}
	.menu ul li{
	font-size: 1.2em;
	padding: 0.8em 2em;
	}
	.menu ul li a{
		color: #fff;
		text-decoration: none;
	}
	.menu ul li a:hover{
		text-decoration: underline;
	}
	.main_img .PC{
	display: none;
	}
.main_img .SP{
	display: block;
	width: 100%;
	height: auto;
    border-top: solid 8px #e62424;
	}
	img{
		display: block;
		width: 100%;
		height: auto;
		/* text-align: center; */
	}
	#pankuzu{
		margin: 1em 0 0 1em;
	}
		
	 #contents, .top_fimgs img, .cont_merit img, .answer, #side_bar, #foot img{
		float: none;
	}
	.cont_960, #contents{
		width: 100%; 
	}
	#logo{
		width: auto;
		height: auto;
		margin: 0 auto;
	}
	
	.merit_inner2 h3{
		padding: 0.5em 1em 0;
	}
	
	.top_fimgs{
		padding: 0 0 0 8px;
	}
	.top_fimgs img{
		width: auto;
		height: auto;
		float: left;
	}
	img.fimgs_lm {
		margin: 0 0 0 10px;
	}
	
	#top_fcont img {
		width: auto;
		height: auto;
	}
	#top_fcont p {
		padding-right: 2em;
	}
	#exclamation {
		width: auto;
		height: auto;
	}
	#top_fcont p {
		margin-left: 350px;
	}
	
	.cont_merit img{
		width: 80%;
		height: auto;
	}
	.cont_merit_inner{
		padding: 1em 3em;
	}
	.cont_merit_inner p, .cont_flow_inner p{
		font-size: 1em;
		line-height: 1.8;
	}
	.merit_inner2 {
		width: auto;
	}
	.cont_merit_inner h3{
		margin-top: 1em;
	}
	
	.qanda_inner h3{
		font-size: 1.3em;
	}
	.question, .answer{
		width: auto;
		height: auto;
	}
	.answer{
		font-size: 2em;
    	float: left;
		    margin-right: 0.5em !important;
	}
	.qanda_inner p {
  		  padding: 0 1em;
	}
	.qaa_t td img{
		width: auto;
		position: relative;
    	left: 200px;
    	top: 0;
	}
	.company_t{
		width: 100%;
	}
	.cont_hachi {
    	width: 90%;
    	margin: 0 auto;
	}
	.cont_hachi img {
		margin: 0;
		float: none;
	}
	.cont_hachi dl {
		float: none;
		width: 90%;
		padding: 1em;
		font-size: 1em;
	}
	.cont_hachi dl dd {
    	margin: 0.5em 0 0.8em;
	}
	.cont_hachi_2 {
	    padding: 1em;
	}
	.cont_hachi_2_inner {
	    width: 100%;
    	float: none;
	}
	.cont_hachi_2 h3{
		line-height: 1;
	}
	.cont_hachi_bc img{
		float: none;
		width: 80%;
		margin: 0 auto;
    	padding: 0;
	}
	.cont_hachi_3_inner span{
		margin: 0.5em 0;
	}
	.cont_hachi_3_inner, .cont_hachi_suzume, .cont_hachi_suzume_2{
		width: 70%;
		float: none;
		margin: 1.5em auto;
	}
	.cont_hachi_3 p{
		padding: 0 1em;
	}
	.cont_hachi_4 img {
		float: none;
		margin: 1em auto 0;
		width: 50%;
		height: auto;
	}
	.cont_hachi_4_inner{
		width: 90%;
		margin: 0 auto;
		padding: 1em 0;
		float: none;
	}
	#ul_sitemap {
		font-size: 1.2em;
	}
	
	#side_bar{
		width: 80%;
		margin: 2em auto;
	}
	#side_bar img{
		width: 100%;
		margin: 0 auto 1.5em;
	}
	#side_bar a{
		width: 100%;
		margin: 1.5em auto 0;
	}
	.side_question li {
		padding: 1em 2px 1em 55px;
	}
	#foot_inner{
		margin: 0 auto;
    	width: 80%;
	}
	#foot img{
		width: auto;
		height: auto;
		margin: 0 0 2em;
	}
	#copyright{
		margin: 1.5em 0 6em;
	}
	/*.cont_merit{
		overflow: hidden;
		zoom: 1;
	}
	.cont_merit_inner {
    float: left;
    width: 160px;
}
	.cont_merit img {
    width: auto;
    height: auto;
    float: left;
}
	.cont_merit_inner h3{
		
	}*/
}

@media screen and (max-width: 480px) {
	.top_fimgs{
		padding: 0;
	}
	.top_fimgs img {
		width: 100%;
		height: auto;
		float: none;
	}
	img.fimgs_lm {
		margin: 0 auto;
	}
	.price_fimgs div{/* サブページの最初の３つ並び。 */
		width:100%;
		float:none;
	}
	.price_lm{
		margin: 0 auto;
	}
	.price_fimgs div p{
		padding: 1em 1em 1.5em;
	}
	
/*210805　追加*/
	
#top_caution img{
	float: none;
}
.top_copy{
	font-size: 18px;
	padding: 10px 15px;
	margin-bottom: 20px;
}
	
/*210805　追加ここまで*/
	
	#top_fcont img {
    	width: 100%;
		height: auto;
		margin:0 auto;
	}
	#h3_excl {
		font-size: 1.8em;
		clear: both;
		padding-top: 0.5em;
	}
	#exclamation {
		width: 40px !important;
		height: auto;
    	margin: 0 0.3em 0 0.5em !important;
	}
	#top_fcont p {
		margin: 0;
		padding: 0 1.2em 0;
	}
	.tel_cont, .tel_subpage{
		display: none;
	}
	.cont_merit_inner {
    	padding: 1em;
	}
	.merit_inner2 {
		margin-top: 0;
	}
	.cont_merit_inner h3 {
    	margin-top: 0.5em;
	}
	.box_question, .box_answer {
		height: auto;
	}
	.question, .answer{
		margin-top: 0.2em !important;
	}
	.box_question{
		padding-right: 1em;
	}
	.cont_merit img {
	    width: 100%;
    	height: auto;
	}
	
	.qaa_t tr td{
		display: block;
		width: auto;
		padding: 0.5em 0 1em 4em;
	}
	.qaa_t tr td img{
		width: auto;
		height: auto;
		left: 12em;
		top: 0.3em;
	}
	.h2_company {
		font-size: 1.4em;
	}
	.company_t{
		margin: 1em 0 2em;
	}
	.company_t td {
		padding: 1em;
	}
	.company_first p{
		padding: 0;
		font-size: 1em;
	}
}

@media screen and (max-width: 320px) {
	h1{
		padding: 0 1em;
	}
}






/**対応エリア**************************/
.cont_area .area_list h3 {font-size: 1.5rem;text-align: center;margin-top: 2rem}
.cont_area .area_list dl {margin-top: 1rem;}
.cont_area .area_list dl dt {
  background: -webkit-gradient(linear, left top, left bottom, from(#7ac943), color-stop(0.49, #7ac943), color-stop(0.50, #39b54a), to(#39b54a));
  background: -moz-linear-gradient(top center, #7ac943 0%, #39b54a 49%, #39b54a 50%, #39b54a 100%);
  color: #fff;
  padding: 0.5em;
  font-size: 1.2rem;margin-bottom: 0.5rem;
}
.cont_area .area_list dl dd li {
  list-style: none;display: inline-block;line-height: 1.75em;
}
.cont_area .area_list dl dd li::after {content: "/";padding: 0 5px;}

@media screen and (max-width: 768px) {/* タブレット */
  .cont_area .area_list dl dd {padding: 0 10px;}
}





/**固定リンク**************************/
#fix_pc,#fix_sp {
  position: fixed;
  bottom: 0;left: 0;right: 0;
  z-index: 9;
  font-weight: bold;
}
#fix_pc a,#fix_sp a {text-decoration: none;}
#fix_pc {
  background: #FFF;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  padding: 5px;
}
#fix_pc .cont_960 {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
}
#fix_pc .cont_960 .sarutaro {
  width: 105px;
  z-index: 99;
  margin-top: -50px;
  margin-bottom: -5px;
}
#fix_pc .fix_mail {
  width: calc(90% - 105px);
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 10px;
  margin-left: 10px;
  border: solid 2px #29abe2;
  background: #29abe2;
    color: #fff;
  font-size: 20px;
}

#fix_pc .fix_mail svg {height: 40px;margin-right: 5px;}
#fix_pc .fix_mail svg .mail_icon {fill:#fff;}
#fix_pc .fix_mail:hover { color: #29abe2; background: #FFF;}
#fix_pc .fix_mail:hover svg .mail_icon { fill: #29abe2; }

#fix_sp {display: none}
@media screen and (max-width: 960px) {/* タブレット */
  #fix_pc {padding-bottom: 20px}
}
@media screen and (max-width: 768px) {/* タブレット */
}
@media screen and (max-width: 640px) {/* SP */
}
@media screen and (max-width: 480px) {/* SP */
  #fix_pc {display: none}
  #fix_sp {
    display: block;
    box-shadow: 0 10px 10px 10px rgba(0,0,0,1)
  }
}


a.mail_banner {
  display: block;
  margin: 2rem 0 0;
}