@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho:wght@400;700&family=Rampart+One&display=swap');

body {
  font-size: 14px;
    font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  height: 100%;
  width: 100%;
  margin: 0;
  color: #4a4a4a;
  background-color: #FFFFFF;
  line-height: 2em;
  text-justify: inter-ideograph;
  text-align: justify;
  overflow-x: hidden;
  padding: 0;
	-webkit-text-size-adjust: 100%;
}
body {
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
  padding-top: 0px;
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
}
a:link {
  color: #4a4a4a;
  text-decoration: none;
}
a:visited {
  color: #4a4a4a;
  text-decoration: none;
}
a:hover {
    color: #4a4a4a;
    text-decoration: none;
}
a:active {
   color: #4a4a4a;
    text-decoration: none;
    background-color: undefined;
}
.sp_no {
	display:none !important;
	}
	
img {
  height: auto;
  max-width: 100%;
  width: auto;
  vertical-align: bottom;
}
.mag00 {
    margin: 0 !important;
}

/*---ヘッダー ---*/
header {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: none;
    
}

/*---ヘッダー ---*/


/*---メニュー ---*/
.gnavi__wrap {
    margin: 0 auto;
}
.gnavi__lists {
    
    
}
.gnavi__list {
    
    position: relative;
    transition: all .3s;
}
.gnavi__list:hover {
    
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 0px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list:hover::before {
   
}
.gnavi__list a {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all .3s;
    padding-bottom: 20px;
    padding-top: 20px;
    color: #FFF;
    padding-left: 24px;
    padding-right: 24px;
}

.gnavi__list a:hover {
    color: #132e57;
    background-color: #d0d5dd;
}

.dropdown__lists {
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    position: absolute;
    top: 60px;
    left: 0;
    width: max-content;
    cursor: pointer;
    padding-bottom: 15px;
   padding-top: 15px;
    z-index: 99;
    
}
.gnavi__list:hover .dropdown__lists {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
    
      
}
.dropdown__list {
    transition: all .5s;
    position: relative;
    display: block;
   background-color: #132e57;
    overflow: hidden;
    margin-bottom: 3px;
}

.dropdown__list:hover {
    
}
.dropdown__list a {
     padding-right: 20px;
    padding-left: 20px;
    font-size: 16px;
   padding-bottom: 15px;
   padding-top: 15px;
   font-weight: 400;
    text-align: left !important;
    display: block !important;
}


.fixed{
position: fixed;
top: 0;
left: 0;
    width: 100%;
    z-index: 9999;
}
/*---メニュー ---*/



.mtop3 {
	position: absolute;
	z-index: 3;
	color: #fff;        /* 2 */
	justify-content: center;/* 3 */
	align-items: center;    /* 4 */
	bottom: -50px;
	left: 0;
	right: 0;
	margin: auto;
	display:block;
	margin-right:40px;
	
	
}
.mtop3 a {
	position: absolute;
	bottom: 50px;
	left: 50%;
	z-index: 1;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: #FFF;
}

.mtop3 a {
  padding-top: 45px;
}
.mtop3 a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 20px;
	height: 40px;
	margin-left: -10px;
	border: 2px solid #fff;
	border-radius: 50px;
	box-sizing: border-box;
}
.mtop3 a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*---トップコンテンツ ---*/
.tp_m {
}

.tp_m li {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
         display: flex;
  justify-content: center;
  align-items: center;
}
.tp_m li a {
    width: 100%;
          display: flex;
  justify-content: center;
  align-items: center;
}
.tp_m li a .img_pb {
    margin-right: auto;
    width: 75%;
	margin-left: auto;
}
.tp_m li a .img_re {
    margin-right: auto;
    width: 60%;
	margin-left: auto;
}
.tp_m .left {
        background-image: url(../img/stop/t2.jpg);
  background-size: cover;
    background-position: center top;
   
   
}
.tp_m .right {
        background-image: url(../img/stop/t3.jpg);
    background-position: center top; 
     background-size: cover;
 
    
}
#bana_box {
    width: 100%;
    display: block;
    padding-top: 24px;
    padding-bottom: 24px;
    background-image: url("../img/stop/stripes-light.webp");
}
#bana_box .box_in {
   
    margin-right: auto;
    margin-left: auto;
    display: block;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.6em;
}
#bana_box .box_in ul li {
    width: 100%;
    margin-bottom: 24px;
}
#bana_box .box_in ul li:last-child {
    width: 100%;
    margin-bottom: 0px;
}
#news_box {
    width: 100%;
    display: block;
    color: #4a4a4a;
}
#news_box .box_in {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: block;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.6em;
}

#news_box .box_in ul .left {
	width: 100%;
	font-weight: 500;
	display: block;
	text-align: center;
    background-color: #ffe600;
    color: #000;
    line-height: 32px;
    text-align: left;
    padding-left: 3%;
    padding-right: 3%;
}
#news_box .box_in ul .center {
	width: 100%;
    padding-left: 3%;
    padding-right: 3%;
    line-height: 1.6em;
    padding-top: 14px;
    padding-bottom: 14px;
}
#news_box .box_in ul .center .tl {
    display: block;
    white-space: nowrap; /* 折り返し無しにする */
    overflow: hidden; /* はみ出た部分を非表示 */
    text-overflow: ellipsis; /* 語尾を3点リーダーに */
}
#news_box .box_in ul .center .tl a {
    color: #4a4a4a;
    
}
#news_box .box_in ul .center .tl a:hover {
    color: #ffe600;
    
}
#news_box .box_in ul .right {
	width: 100%;
	font-weight: 500;
	display: block;
	text-align: right;
    padding-bottom: 10px;
    padding-right: 3%;
}
#news_box .btn {
	display: inline-block;
	text-align: center;
	color: #4a4a4a;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	line-height: 14px;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #4a4a4a;
	padding-top: 5px;
	padding-right: 34px;
	padding-bottom: 5px;
	padding-left: 24px;
	font-size: 13px;
}
#news_box .btn:hover {
	background-color: #ffe600;
	color: #4a4a4a;
	font-weight: 500;
    border: 1px solid #ffe600;
}
#news_box .btn::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 12px;
	width: 12px;
	height: 12px;
	border: 1px solid;
	border-color: transparent transparent #4a4a4a #4a4a4a;
	transform: rotate(-135deg);
	transition: .3s;
}
#news_box .btn:hover::after {
	right: 6px;
	border-color: transparent transparent #4a4a4a #4a4a4a;
}










.box00 {
  padding-top: 64px;
    padding-bottom: 64px;
    background-image: url("../img/stop/gridme.webp");
}
.box1280 {
	text-align: center;
	margin-right: 3%;
	margin-left: 3%;
}
.box100 {
	text-align: center;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.box00 .main_in {
   text-align: center;
}

.ttl {
    font-family: "M PLUS 1p", sans-serif;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    display: block;
    background-image: repeating-linear-gradient(45deg, #4a4a4a 0 2px, #4a4a4a 2px 4px);
    background-repeat: no-repeat;
    background-size: 4rem 0.4rem;
    background-position: center bottom;
    padding-bottom: 24px;
    margin-bottom: 32px;
    overflow: hidden;
}

.top_box1 {
}
.top_box1 li {
    width: 100%;
}

.top_box1 .right {
  text-align: left;
    margin-top: 24px;
}
.top_box1 h4 {
    
    font-size: 18px;
    font-weight: 500;
    display: block;
    line-height: 2em;
    margin-bottom: 24px;
    text-justify: inter-ideograph;
	text-align: justify;
}
.fo_y {
    color: #ffe600;
}
.fo_s {
    color: #36bdef;
}
.fo_s2 {
    color: #36bdef;
background-image: repeating-linear-gradient(45deg, #36bdef 0 2px, #36bdef 2px 4px) !important;
}
.fo_g {
    color: #6fb92c;
}
.fo_g2 {
    color: #6fb92c;
    background-image: repeating-linear-gradient(45deg, #6fb92c 0 2px, #6fb92c 2px 4px) !important;
}
.fo_b {
    color: #3c70ba;
}
.fo_b2 {
    color: #3c70ba;
    background-image: repeating-linear-gradient(45deg, #3c70ba 0 2px, #3c70ba 2px 4px) !important;
}
.y_line {
	background:linear-gradient(transparent 70%, #ffe600 70%);
}
.s_line {
    background: linear-gradient(transparent 80%, #36bdef 80%);
}
.b_line {
	background:linear-gradient(transparent 80%, #3c70ba 80%);
    
}
.g_line {
	background:linear-gradient(transparent 80%, #6fb92c 80%);
   
}
.top_box1 p {
    font-size: 16px;
    display: block;
    line-height: 2em;
    margin-bottom: 0px;
}
.btn {
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    font-size: 14px;
    line-height: 24px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #4a4a4a;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 30px;
    border-radius: 50px;
    background-color: #FFF;
    font-weight: 500;
}
.btn:hover {
	background-color: #ffe600;
	color: #4a4a4a;
	font-weight: 500;
    border: 1px solid #ffe600;
    opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
.btn::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 25px;
	width: 12px;
	height: 12px;
	border: 1px solid;
	border-color: transparent transparent #4a4a4a #4a4a4a;
	transform: rotate(-135deg);
	transition: .3s;
}
.btn:hover::after {
	right: 15px;
	border-color: transparent transparent #4a4a4a #4a4a4a;
}
.box01 {
    padding-top: 64px;
    padding-bottom: 64px;
    background-image: url("../img/stop/worn_dots.webp");
}
.sub_ttl {
    font-size: 16px;
    line-height: 2em;
    font-weight: 500;
    padding-bottom: 32px;
    text-align: left;
    text-justify: inter-ideograph;
    text-align: justify;
}

.box_3 li {
    width: 100%;
    margin-bottom: 24px;
}
.box_3 li:last-child {
    width: 100%;
    margin-bottom: 0px;
}
.news_box2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.news_box2 li {
    position: relative;
    width: 47%;
    border-bottom: 1px dotted #333;
    padding-bottom: 24px;
    overflow: hidden;
    display: block;
    margin-bottom: 24px;
   
}

.block_1280_main .news_box2 li {
     position: relative;
    width: 47%;
    border-bottom: 1px dotted #333;
    padding-bottom: 24px;
    overflow: hidden;
    display: block;
    margin-bottom: 32px;

}

.news_box2 li img {
     width: 100%;
  aspect-ratio: 2 / 1.8;
  object-fit: cover;
}
.news_box2 li i {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px;
    font-style: normal;
     background-color: #ffe600;
    color: #4a4a4a;
    font-size: 12px;
}

.news_box2 .p_plumbing i {
    background-color: #36bdef !important;
    color: #FFF !important;
}
.news_box2 .p_reform i,.news_box2 .p_reform_works i {
    background-color: #6fb92c !important;
    color: #FFF !important;
}
.news_box2 .p_frp i {
    background-color: #3c70ba !important;
    color: #FFF !important;
}
.news_box2 li .imgbox img {
    border: 4px solid #ffe600;
}
.news_box2 .p_plumbing .imgbox img {
    border: 4px solid #36bdef;
   
}
.news_box2 .p_reform .imgbox img,.news_box2 .p_reform_works .imgbox img {
    border: 4px solid #6fb92c;
   
}
.news_box2 .p_frp .imgbox img {
    border: 4px solid #3c70ba;
   
}

.news_box2 li .date {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 14px;
    text-align: left;
    font-weight: 500;
}
.news_box2 li .ntl {
    display: block;
    text-align: left;
    width: 100%;
    font-size: 14px;
    line-height: 1.5em;
}

.btn_1 {
    text-align: center;
    display: block;
   
}
.btn_1 a {
    display: block;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;    
    background-color:#FFF;
    border-radius: 50px;
    border: 1px solid #4a4a4a;
}

.btn_1 a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    background-color: #ffe600;
    color: #4a4a4a;
    border: 1px solid #ffe600;
}
.btn_1 a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 30px;
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-color: transparent transparent #4a4a4a #4a4a4a;
	transform: rotate(-135deg);
	transition: .3s;
}
.btn_1 a:hover::after {
	right: 20px;
	border-color: transparent transparent #4a4a4a #4a4a4a;
}
.spt48 {
    margin-top: 24px;
}

.box011 {
    padding-top: 64px;
    padding-bottom: 64px;
    background-image: url("../img/stop/worn_dots_y.webp");
}


.comp_box .left {
    width: 100%;
    color: #FFF;
       display: flex;
  justify-content: center;
  align-items: center;
      background-color:rgba(0,0,0,0.5);
}
.comp_in img {
    width: 50%;
    padding-bottom: 14px;
    
}
.comp_box .right {
    width: 100%;
    text-align: left;
    margin-top: 24px;
}
.comp_in {
    display: block;
    width: 100%;
}
.comp_in dl.fsebd {
    
}
.comp_in dl {
    border-bottom: 1px dotted #333;
    border-left: 1px dotted #333;
    border-right: 1px dotted #333;
    text-align: left;
    color: #333;
    width: 100%;
    display: block;
    overflow: hidden;
    font-size: 14px;
   
   
}
.comp_in dt {
    display: block;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #ffe600;
}
.comp_in dd {
    display: block;
    overflow: hidden;
    padding-left: 6%;
    padding-right: 3%;
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: #FFF;
}
.comp_in dd .sky {
    color: #FFF;
    background-color: #36bdef;
    margin-top: 32px;
    line-height: 16px;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 5px;
    padding-bottom: 10px;    
}
.comp_in dd .gre {
    color: #FFF;
    background-color: #6fb92c;
    margin-top: 32px;
    line-height: 16px;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 5px;
    padding-bottom: 10px; 
}
.comp_in p {
    margin-bottom: 0;
    font-size: 16px;
}
.box02 {
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: #FFF;
    background-image: url("../img/stop/stripes-light-1.webp");
}
.mbana li {
    width: 100%;
    margin-bottom: 24px;
}
.mbana li:last-child {
    width: 100%;
    margin-bottom: 0px;
}
.box_03 {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #FFFFFF;
    }
.sns {
     display: -webkit-box !important; 
  display: -ms-flexbox !important; 
  display: -webkit-flex !important; 
  display: flex !important;
  -webkit-justify-content: center; 
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}    
.sns li {
        height: 35px;
        margin-left: 3%;
        margin-right: 3%;
    }
    .sns li img {
         height: 35px;
        width: auto;
    }
/*---トップコンテンツ ---*/


/*--- フッター ---*/


footer {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #4a4a4a;
    color: #FFFFFF;
    width: 100%;
    display: block;
    font-size: 13px;
 
}


   
footer h1 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    }

.foot_menu {
  
    
}
.foot_menu .m-fmenu {
    width: 48%;
    text-align: center;
     float: left;
    display: block;
    border: 1px solid #ffe600;
    margin: 1%;
}

.foot_menu .m-fmenu a {
    color: #ffe600;
    line-height: 48px;
    display: block;
}
.foot_menu .m-fmenu.f_g {
    width: 98%;
   ;
}

.foot_menu .m-fmenu.f_g a {
    color: #FFF;
     background-color: #6fb92c;
    font-weight: 500;
    font-size: 15px;
}
.foot_menu .m-fmenu.f_s {
    width: 98%;
  
}

.foot_menu .m-fmenu.f_s a {
    color: #FFF;
    background-color: #36bdef;
    font-weight: 500;
    font-size: 15px;
}
.foot_menu .m-fmenu.f_b {
     width: 98%;
  
    
}

.foot_menu .m-fmenu.f_b a {
    color: #FFF;
     background-color: #3c70ba;
    font-weight: 500;
    font-size: 15px;
}


.foot_menu .sub-fmenu a {
    color: #FFF;
    
}
.foot_menu .sub-fmenu {
    padding-left: 31px;
    margin-bottom: 14px;
    display: none;
}
.foot_menu .sub-fmenu li::before {
   content: "∟";
}
.foot_menu .m-fbana {
    display: block;
    width: 100%;
    clear: both;
    
}
.foot_menu .m-fbana img {
    width: 60%;
    margin-top: 24px;
    margin-bottom: 24px;
}
.foot_menu .f_add a {
    color: #FFF;
}
.foot_menu .f_add {
    width: 100%;
    text-align: center;
   padding-top: 24px;
    display: block;
    
}
.foot_menu .f_add .lef img {
    width: 60%;
        margin-left: auto;
    margin-right: auto;
    padding-top: 24px;
    padding-bottom: 24px;
}
.foot_menu .f_add .rit {
    width: 100%;;
}
.foot_menu .f_add h2 {
    font-size: 18px;
}
.foot_menu .f_add p {
    font-size: 14px;
     text-align: center;
}
.foot_menu .f_add a img{
    display: none;
}
.copyright {
    text-align: center;
    display: block;
    font-size: 12px;
    line-height: 48px;
    color: #4a4a4a;
    background-color: #FFF;
    margin-bottom: 70px;
}

/*---ページトップ ---*/

#page-top {
    display: none !important;
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#page-top a img {
    height: auto;
    width: 60px;
}
#page-top a:hover img {
	opacity: 0.9;
	filter: alpha(opacity=90);
	-ms-filter: "alpha( opacity=90 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#page-top2 {
    display: none !important;
	position: fixed;
	bottom: 100px;
	right: 20px;
    background-color:rgba(0,0,0,0.9);
    color: #FFF;
    padding: 15px;
}
#page-top3 {
    display: none !important;
	position: fixed;
	bottom: 20px;
	right: 20px;
}
ul.footer_menu {
	margin: 0 auto;
	padding: 3px 0;
	width: 100%;
	overflow: hidden;
	display: table;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000;
}
ul.footer_menu li {
	margin: 0;
	display: table-cell;
	vertical-align: middle;
	list-style-type: none;
	font-size: 10px;
	width: 33.333333%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5;
	padding-left: 0;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: dotted;
	border-left-style: dotted;
	border-right-color: #000;
	border-left-color: #000;
}
ul.footer_menu li a i {
    display: block;
}
ul.footer_menu li a {
	border: none;
	display: block;
	color: #4a4a4a;
	text-align: center;
	text-decoration: none;
	
}
.footer_menu {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
	-moz-opacity: 0.9;
	opacity: 0.9;
	background-color: #ffe600;
}
.footer_menu li a i img {
	height: auto;
	width: 30px;
	padding-top: 5px;
}
/*---ページトップ ---*/
/*--- フッター ---*/
.warp {
    padding-top: 62px;
}

.page00 {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
      display: flex;
  justify-content: center;
  align-items: center;
}
.page00 ul {
    	  display: -webkit-box !important; 
  display: -ms-flexbox !important; 
  display: -webkit-flex !important; 
  display: flex !important;
  -webkit-justify-content: center; 
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p_yb {
    background-image: url("../img/spage/yb.png")
}
.p_yb .lr img {
    width: 100%;
}
.p_yb .lr {
    width: 15%;
        margin-left: 10px;
    margin-right: 10px;
}
.p_yb .center {
    
}
.p_yb .center {
     display: flex;
  justify-content: center;
  align-items: center;
   
}
.p_yb .center h1 {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}



.box_subm {
    width: 100%;
    padding-top: 10px;
    text-align: center;
    border-bottom: 2px solid #4a4a4a;
}

.box_subm ul {
  
    margin-left: 3%;
    margin-right: 3%;
    	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    
}
.box_subm ul li {
    margin-bottom: 10px;
    width: 49%;
}
.box_subm ul li a {
    font-size: 14px;
    line-height: 48px;
    display: block;
    border: 2px solid #4a4a4a;
   
}
.box_subm ul li a:hover {
    opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
.box_subm ul li.on .bk_y {
    color: #333 !important;
    background-color: #ffe600;
     
}
.box01_y {
    padding-top: 64px;
    padding-bottom: 64px;
    background-image: url("../img/spage/dots_y.png");
}
.box01_s {
    padding-top: 64px;
    padding-bottom: 64px;
    background-image: url("../img/spage/dots_s.png");
}
.box01_b {
    padding-top: 64px;
    padding-bottom: 64px;
    background-image: url("../img/spage/dots_b.png");
}
.box01_r1 {
    padding-top: 64px;
    padding-bottom: 64px;
    background-image: url("../img/spage/re_bk.jpg");
}
.box01_r2 {
    padding-top: 64px;
    padding-bottom: 64px;
    background-image: url("../img/spage/dots_r.png");
}
.about1 {
   border-bottom: 1px dotted #4a4a4a;
    padding-bottom: 48px;
    margin-bottom: 48px;
    overflow: hidden;
    
}
.about1:nth-child(odd) {
       
   
}
.about1:nth-child(even) {
      
}
.about1:last-child {
       
}
.mb_00 {
    margin-bottom: 0px !important;
}
.about1 li {
    width: 100%;
   
    text-align: left;
    position: relative;
}
.point1 {
   position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.point1 .img01 {
    height: 82px;
    width: 82px;
    float: left;
}
.point2 {
    float: left;
    line-height: 26px;
    font-size: 14px;
    font-weight: 700;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #ffe600;
    margin-top: 28px;
    margin-left: -2px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.about1 li .img02 {
    padding-top: 41px;
    padding-left: 41px;
    object-fit: cover;
}
.about_in1{
    padding-top: 32px;
    padding-left: 10%;
}
.pleft {
    margin-left: 5%;
}
.pright {
    margin-right: 5%;
}
.plr {
    margin-right: 10%;
     margin-left: 10%;
}
.plr5 {
    margin-right: 5%;
     margin-left: 5%;
}
.point3 {
    height: 82px;
      display: flex;
  align-items: center;
}
.point3_1 {
    height: 82px !important;
    width: 82px !important;
    text-align: center;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #ffe600;
    font-style: normal;
     display: block;
    float: left;
    margin-right: 15px;
    font-weight: 700;
    padding-top: 10px;
}
.point3_2 {
    display: block;
    font-size: 16px;
}
.point3_3 {
    display: block;
    font-size: 32px;
}
.about_in1 h4 {
    font-size: 18px;
    line-height: 1.4em;
    display: inline-block;
    font-weight: 700;
}

.line_g {
    background:linear-gradient(transparent 85%, #6fb92c 15%);

}
.line_s {
    background:linear-gradient(transparent 85%, #36bdef 15%);

}
.about_in1 p {
    margin-top: 32px;
    margin-bottom: 0;
    display: block;
    clear: both;
}
.btn_12 {
    text-align: center;
     display: inline-block;
    margin-left: 2%;
    margin-right: 2%;   
}
.btn_12 a {
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    border-radius: 50px;
    border: 1px solid #4a4a4a;
}

.btn_12 a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    background-color: #ffe600;
    color: #4a4a4a;
    border: 1px solid #ffe600;
}
.btn_12 a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-color: transparent transparent #4a4a4a #4a4a4a;
	transform: rotate(-135deg);
	transition: .3s;
}
.btn_12 a:hover::after {
	right: 10px;
	border-color: transparent transparent #4a4a4a #4a4a4a;
}
.comp_in dd ul {
    margin-top: 12px;
}
.comp_in dd ul li {
    list-style-type: disc;
    margin-left: 16px;
    padding-right: 16px;
}
.comp_in dd h6 {
    font-size: 15px;
    font-weight: 500;
} 
.mt_32 {
    margin-top: 14px;
}
.mt_00 {
    margin-top: 0px !important;
    
}
.page_hd {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}

.p_pl {
    background-image: url("../img/spage/p1.jpg");
    background-size: cover;
    background-position: center center;
}
.p_ht {
    background-image: url("../img/spage/h1.png");
    background-size: cover;
    background-position: center center;
}
.p_rt {
    background-image: url("../img/spage/r1.png");
    background-size: cover;
    background-position: center center;
}
.page_hd .hd_in {
    text-align: center;
}
.page_hd .hlogo {
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.page_hd .hlogo2 {
    width: 70%;
    height: auto;
        margin-left: auto;
    margin-right: auto;
}
.page_hd .hlogo3 {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.page_hd .httl {
    font-size: 24px;
    line-height: 24px;
    color: #FFF;
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 14px;
}
.page_hd .httl:before{
    content: "＼";
}
.page_hd .httl:after {
    content: "／";
}
.page_hd .hsub {
    background-color: #ffe600;
    font-size: 14px;
    display: inline-block;
    padding-left: 5%;
    padding-right: 5%;
    border-radius: 50px;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
}
.box_subm ul li.on .bk_s {
    color: #FFF !important;
    background-color: #36bdef;
     
}
.box_subm ul li.on .bk_b {
    color: #FFF !important;
    background-color: #3c70ba;
     
}
.box_subm ul li.on .bk_g {
    color: #FFF !important;
    background-color: #6fb92c;
     
}
.plum1 .plum1_b {
    width: 100%;
    border: 8px solid #36BDEF;
    background-color: #FFF;
    position: relative;
    display: block;    
}
.plum1 .plum1_b ul {
    	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.plum1 .plum1_b a {
    
}
.plum1 .plum1_b i {
    background-color: #36BDEF;
    position: absolute;
    top: -1px;
    left: 0;
    padding-right: 4px;
    padding-bottom: 8px;
    border-bottom-right-radius: 10px;
    width: auto;
}
.plum1 .plum1_b i img {
    width: 58px;
    height: auto;
}
.plum1 .plum1_b ul li {
    width: 50%;
}
.mgt_24 {
margin-top: 24px;    
}
.plum1 .plum1_b ul .right {
    background-color: #36BDEF;
      display: flex;
  justify-content: center;
  align-items: center;
}
.plum1 .plum1_b ul .right h4 {
    font-size: 20px;
    color: #FFF;
    font-weight: 500;
    line-height: 20px;
}
.plum1 .plum1_b ul .right h4 .yj {
    padding-left: 14px;
}
.plum1 .plum1_b ul .right h4 .yj img {
    width: 20px;
    height: 20px;
}
.plum1 .plum1_b h5 {
    font-size: 14px;
    line-height: 1.5em;
    text-justify: inter-ideograph;
    text-align: justify;
    padding-top: 14px;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 14px;
    font-weight: 400;
    background-color: #FFF;
}
.pd_img {
    border: 5px solid  #36BDEF;
}
.mgb_48 {
    margin-bottom: 24px;
    object-fit: cover;
    width: auto;
    height: 100%;
}
.btn_1s {
    text-align: center;
    display: block;
   
}
.btn_1s a {
    display: block;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    border-radius: 50px;
    border: 1px solid #36BDEF;
    color: #36BDEF;
}

.btn_1s a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    background-color: #36BDEF;
    color: #FFF;
    border: 1px solid #36BDEF;
}
.btn_1s a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 30px;
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-color: transparent transparent #36BDEF #36BDEF;
	transform: rotate(-135deg);
	transition: .3s;
}
.btn_1s a:hover::after {
	right: 20px;
	border-color: transparent transparent #FFF #FFF;
}
.bd8_s {
    border: 8px solid #36BDEF;
}
.bd8_b {
    border: 8px solid #3c70ba;
}
.comp_boxs {
    background-color: #FFF;

}
.comp_boxs .left {
    width: 100%;
    color: #FFF;
   text-align: left;
    
}

.comp_boxs .right {
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
    text-align: left;
    padding-bottom: 24px;
}
.comp_in2 {
    display: block;
    width: 100%;
}
.comp_in2 img {
    width: 60%;
}

.comp_in2 p {
    line-height: 2.2em;
    font-size: 14px;
}
a.btns {
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    line-height: 24px;
    font-size: 14px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #36BDEF;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 30px;
    border-radius: 50px;
    background-color: #FFF;
    font-weight: 500;
    color: #36BDEF;
}
a.btns:hover {
	background-color: #36BDEF;
	color: #FFF;
	font-weight: 500;
    border: 1px solid #36BDEF;
    opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
a.btns::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 25px;
	width: 12px;
	height: 12px;
	border: 1px solid;
	border-color: transparent transparent #36BDEF #36BDEF;
	transform: rotate(-135deg);
	transition: .3s;
}
a.btns:hover::after {
	right: 15px;
	border-color: transparent transparent #FFF #FFF;
}
.spt24 {
    margin-top: 24px;
}
.stmi {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}
.hit1 .hit1_b {
    margin-top: 24px;
    width: 100%;
    border: 8px solid #3c70ba;
    background-color: #3c70ba;
    padding-bottom: 16px;
}
.hit1 .hit1_b h4 {
    color: #FFF;
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
}
a .btn_1b {
    text-align: center;
    display: block;
   
}
a .btn_1b_in {
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    border-radius: 50px;
    border: 1px solid #3c70ba;
    color: #3c70ba;
}

a:hover .btn_1b_in {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    background-color: #9EB8DC;
    color: #FFF;
    border: 1px solid #3c70ba;
}
a .btn_1b_in::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 30px;
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-color: transparent transparent #3c70ba #3c70ba;
	transform: rotate(-135deg);
	transition: .3s;
}
a:hover .btn_1b_in::after {
	right: 20px;
	border-color: transparent transparent #FFF #FFF;
}
.hit2 {
    align-items: flex-start;
}
.hit2 .hit2_b1 {
    width: 100%;
    border: 6px solid #3c70ba;
    background-color: #3c70ba;
    margin-top: 24px;
}

.hit2 .hit2_b2 {
    width: 100%;
    margin-top: 48px;
}
.hit2 .hit2_b1 h4 {
    color: #FFF;
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.hit2 .hit2_b2 ul {
    border: 6px solid #3c70ba;
    background-color: #3c70ba;
    margin-bottom: 18px;
}
.hit2 .hit2_b2 ul .left {
    width: 100%;
    display: flex;
    align-items: center;
}
.hit2 .hit2_b2 ul .right {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 16px;
}
.hit2 .hit2_b2 h4 {
    text-align: left;
    color: #FFF;
    font-size: 14px;
    padding-right: 3%;
    text-justify: inter-ideograph;
    text-align: justify;
    padding-left: 3%;
    padding-bottom: 16px;
}
.btn_1b1 {
    text-align: center;
    display: block;
   
}
.btn_1b1 a {
    display: block;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    border-radius: 50px;
    border: 2px solid #3c70ba;
    color: #3c70ba;
}

.btn_1b1 a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    background-color: #3c70ba;
    color: #FFF;
    border: 2px solid #3c70ba;
}
.btn_1b1 a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 30px;
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-color: transparent transparent #3c70ba #3c70ba;
	transform: rotate(-135deg);
	transition: .3s;
}
.btn_1b1 a:hover::after {
	right: 20px;
	border-color: transparent transparent #FFF #FFF;
}
.hit3 .hit_b3 {
    width: 100%;
    border: 8px solid #3c70ba;
    background-color: #FFF;
    display: block;
    margin-top: 24px;
}
.hit3 .hit_b3 ul {
    	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.hit3 .hit_b3 ul li {
    width: 50%;
}
.hit3 .hit_b3 ul .right {
    background-color: #3c70ba;
      display: flex;
  justify-content: center;
  align-items: center;
}
.hit3 .hit_b3 ul .right h4 {
    font-size: 20px;
    color: #FFF;
    line-height: 20px;
    font-weight: 500;
}

.hit3 .hit_b3 h5 {
    font-size: 14px;
    line-height: 1.5em;
    text-justify: inter-ideograph;
    text-align: justify;
    padding-top: 14px;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 14px;
    font-weight: 400;
    background-color: #FFF;
}
.btn_1b2 {
    text-align: center;
    display: block;
   
}
.btn_1b2 a {
    display: block;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    border-radius: 50px;
    border: 1px solid #3c70ba;
    color: #3c70ba;
}

.btn_1b2 a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    background-color: #3c70ba;
    color: #FFF;
    border: 1px solid #3c70ba;
}
.btn_1b2 a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 30px;
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-color: transparent transparent #3c70ba #3c70ba;
	transform: rotate(-135deg);
	transition: .3s;
}
.btn_1b2 a:hover::after {
	right: 20px;
	border-color: transparent transparent #FFF #FFF;
}
.comp_in2 h2 {
    font-size: 16px;
    margin-top: 24px;
    font-weight: 500;
}
a.btnb {
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    line-height: 14px;
    font-size: 14px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #3c70ba;
    padding-top: 15px;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-left: 30px;
    border-radius: 50px;
    background-color: #FFF;
    font-weight: 500;
    color: #3c70ba;
}
a.btnb:hover {
	background-color: #3c70ba;
	color: #FFF;
	font-weight: 500;
    border: 1px solid #3c70ba;
    opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
a.btnb::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 25px;
	width: 12px;
	height: 12px;
	border: 1px solid;
	border-color: transparent transparent #3c70ba #3c70ba;
	transform: rotate(-135deg);
	transition: .3s;
}
a.btnb:hover::after {
	right: 15px;
	border-color: transparent transparent #FFF #FFF;
}
.re_box1 {
    margin-top: 32px;
    border-radius: 25px;
    background-color: #FFF;     
}
.stc2 {
  position: relative;
  z-index: 0;
}
.stc2::before {
  position: absolute;
  border: 2px dashed #9ACE6B;
  content: '';
  display: block;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: 10px;
  z-index: 2;
  border-radius: 15px;
}

.re_box1 li {
    width: 100%;
}
.radi_l {
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    }
.radi_r {
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
}
.pd_r5 {
    padding-right: 7%;
    padding-left: 7%;
    padding-bottom: 32px !important;
}
.pd_l5 {
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 32px !important;
}
.re_box1 h4 {
    font-size: 18px;
    font-weight: 500;
    display: block;
    line-height: 2em;
    margin-bottom: 16px;
}
.re_box1 p {
    font-size: 14px;
    display: block;
    line-height: 2em;
}
.mo_14b {
    font-size: 14px !important;
    font-weight: 500;
}
.re_box2 {
    margin-top: 32px;
    border-radius: 25px;
    background-color: #FFF;
    overflow: hidden;
    display: block;
}
.re_box3 {
    overflow: hidden;
    	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.re_box3 a {
       display: block;
    width: 100%;
    height: 100%;
}

.re_box3 .left {
    position: relative;
    width: 50%;
}
.re_box3 .left img {
    border-top-left-radius: 25px;
}
.re_box3 .left i {
    position: absolute;
    top: 10px;
    left: 10px;
}
.re_box3 .left i img {
    border-top-left-radius: 15px;
    background-color: #6FB92C;
    padding: 5px;
    width: 58px;
    height: auto;
}
.re_box3 .center {
    width: 50%;
      display: flex;
  justify-content: center;
  align-items: center;
    background-color: #6FB92C;
   
}
.re_box3 .center div {
      display: flex;
  align-items: center;
    
}
.re_box3 .center h4 {
    font-size: 20px;
    color: #FFF;
    line-height: 20px;
    font-weight: 500;
    z-index: 2;
}
.re_box3 .center .yj {
    padding-left: 14px;
     line-height: 20px;
}
.re_box3 .center .yj img {
    width: 20px;
    height: 20px;
}
.re_box3 .right {
    width: 100%;
    background-color: #F1F8EA;
    padding: 24px;
    font-size: 14px;
}
.re_box3 .right p {
    margin: 0;
}
.re_box4 {
     display: -webkit-box !important; 
  display: -ms-flexbox !important; 
  display: -webkit-flex !important; 
  display: flex !important;
  -webkit-justify-content: center; 
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.plr58 {
    margin-top: 24px;
    padding-left: 5%;
    padding-right: 5%;
}
.plr85 {
    padding-left: 5%;
    padding-right: 5%;
}
.re_box4 li {
    width: 30%;
    margin-bottom: 24px;
    margin-left: 1%;
    margin-right: 1%;
}
.re_box4 li .reb3_in {
    border: 2px dashed #6fb92c;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 5px;
}
.re_box4 li img {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.re_box4 li h5 {
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 10px;
}
.btn_1r1 {
    display: block;
   text-align: right;
    margin-right: 10px;
    margin-bottom: 18px;
}
.btn_1r1 .btn_1r1_in {
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFF;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
    border: 2px solid #6fb92c;
    background-color: #6fb92c;
    color: #FFF;
    z-index: 2;
}

.btn_1r1 .btn_1r1_in:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    background-color: #6fb92c;
    color: #FFF;
    border: 2px solid #6fb92c;
}
.btn_1r1 .btn_1r1_in::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-color: transparent transparent #FFF #FFF;
	transform: rotate(-135deg);
	transition: .3s;
}
.btn_1r1 .btn_1r1_in:hover::after {
	right: 10px;
	border-color: transparent transparent #FFF #FFF;
}
.re_box5 {
     margin-top: 24px;
}
.re_box5 li {
    width: 100%;
}
.re_box5 li a {
    display: block;
    height: 100%;
    width: 100%;
}
.re_box6 {
    border-radius: 25px;
  background-color: #FFF;
  overflow: hidden;
  	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.re_box6 .left {
    position: relative;
    width: 50%;
}
.re_box6 .left img {
    border-top-left-radius: 25px;
}
.re_box6 .left i {
    position: absolute;
    top: 10px;
    left: 10px;
}
.re_box6 .left i img {
    border-top-left-radius: 15px;
    background-color: #6FB92C;
    padding: 5px;
    width: 58px;
    height: auto;
}
.re_box6 .center {
    width: 50%;
      display: flex;
  justify-content: center;
  align-items: center;
    background-color: #6FB92C;
    padding-left: 24px;
    padding-right: 24px;
}
.re_box6 .center div {
      display: flex;
  align-items: center;
    
}
.re_box6 .center h4 {
    font-size: 20px;
    color: #FFF;
    line-height: 20px;
    font-weight: 500;
    z-index: 2;
    float: left;
}
.re_box6 .center .yj {
    padding-left: 14px;
  line-height: 20px;
}
.re_box6 .center .yj img {
    width: 20px;
    height: 20px;
}
.re_box6 .right {
    width: 100%;
    padding-top: 12px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
    font-size: 14px;
    background-color: #FFF;
}
.re_box6 .right p {
    margin: 0;
    line-height: 1.5em;
}
.re_box7 .news_box2 li {
    position: relative;
    width: 47%;
    border: 2px dashed #9ACE6B;
    padding-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
    overflow: hidden;
    display: block;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
     background-color: #FFF;
}
.re_box7 .news_box2 .p_reform .imgbox img,.re_box7 .news_box2 .p_reform_works .imgbox img {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-top-right-radius: 25px;  
    border-bottom: 2px dashed #6fb92c;
}
.re_box7 .news_box2 li .date {
    display: block;
    padding-top: 14px;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 15px;
    text-align: left;
    font-weight: 500;
    background-color: #FFF;
    padding-left: 14px;
    padding-right: 14px;
}
.re_box7 .news_box2 li .ntl {
    display: block;
    text-justify: inter-ideograph;
	text-align: justify;
    width: 100%;
    font-size: 14px;
    background-color: #FFF;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 14px;
    border-bottom-left-radius: 25px;
}
.re_box7 .news_box2 li i {
    position: absolute;
    top: 10px;
    left: 10px;
    padding-top: 3px;
    padding-right: 3px;
    padding-left: 3px;
    padding-bottom: 3px;
    font-style: normal;
    background-color: #ffe600;
    color: #4a4a4a;
    border-bottom-right-radius: 10px;
}

.btn_1r2 {
    text-align: center;
    display: block;
   
}
.btn_1r2 a {
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #FFF;
    border-radius: 50px;
    border: 1px solid #6FB92C;
    color: #6FB92C;
}

.btn_1r2 a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    background-color: #6FB92C;
    color: #FFF;
    border: 1px solid #6FB92C;
}
.btn_1r2 a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-color: transparent transparent #6FB92C #6FB92C;
	transform: rotate(-135deg);
	transition: .3s;
}
.btn_1r2 a:hover::after {
	right: 10px;
	border-color: transparent transparent #FFF #FFF;
}
.rb25 {
    border-radius: 25px;
}
.rb25 .left {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    -webkit-border-top-left-radius: 25px;
-moz-border-bottom-left-radius: 25px;
    -webkit-border-top-left-radius: 25px;
-moz-border-bottom-left-radius: 25px;
}
.rb25 iframe {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    -webkit-border-top-left-radius: 25px;
-moz-border-bottom-left-radius: 25px;
    -webkit-border-top-left-radius: 25px;
-moz-border-bottom-left-radius: 25px;
    object-fit: cover;
  width:100%;
 height: 350px;
    background-color: #FFF;
}
.comp_box iframe {
    object-fit: cover;
    width: 100%;
    height: 300px;
    background-color: #FFF;
}
.comp_boxs iframe {
    object-fit: cover;
  width:100%;
  height: 350px;
    background-color: #FFF;
}
a.btnr {
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    line-height: 24px;
    font-size: 14px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #6FB92C;
    padding-top: 10px;
    padding-right: 40px;
    padding-bottom: 10px;
    padding-left: 30px;
    border-radius: 50px;
    background-color: #FFF;
    font-weight: 500;
    color: #6FB92C;
    z-index: 10;
}
a.btnr:hover {
	background-color: #6FB92C;
	color: #FFF;
	font-weight: 500;
    border: 1px solid #6FB92C;
    opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
a.btnr::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 25px;
	width: 12px;
	height: 12px;
	border: 1px solid;
	border-color: transparent transparent #6FB92C #6FB92C;
	transform: rotate(-135deg);
	transition: .3s;
}
a.btnr:hover::after {
	right: 15px;
	border-color: transparent transparent #FFF #FFF;
}
.midp2 {
      font-size: 16px;
    font-weight: 500;
    text-align: left;
}
.map2 iframe {
    width: 100% !important;
}
.page_hd3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}

.page_hd3 .hd_in {
    text-align: center;
}
.page_hd3 .hlogo {
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.page_hd3 .hlogo02 {
    width: 75%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.page_hd3 .httl {
    font-size: 24px;
    line-height: 24px;
    color: #FFF;
    font-weight: 700;
    margin-top: 14px;
    margin-bottom: 14px;
}
.page_hd3 .httl:before{
    content: "＼";
}
.page_hd3 .httl:after {
    content: "／";
}
.page_hd3 .hsub {
    background-color: #ffe600;
    font-size: 14px;
    display: inline-block;
    padding-left: 32px;
    padding-right: 32px;
    border-radius: 24px;
    font-weight: 500;
    padding-top: 5px;
    padding-bottom: 5px;
}
.point2p {
    float: left;
    line-height: 26px;
    font-size: 14px;
    font-weight: 700;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #36BDEF;
    color: #FFF;
    margin-top: 28px;
    margin-left: -2px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}
.point2pg {
    float: left;
    line-height: 26px;
    font-size: 14px;
    font-weight: 700;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #6fb92c;
    color: #FFF;
    margin-top: 28px;
    margin-left: -2px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}
.point3p {
    margin-bottom: 24px;
}
.po3p h5 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #36BDEF;
}
.po3p ul {
    padding-left: 24px;
}
.po3p ul li {
    width: 100%;
    list-style-type: disc;
    display: list-item;
    font-size: 14px;
    padding-bottom: 10px;
    text-align: left;
}
.po3p ul li:last-child {
    padding-bottom: 0;
}
.po3p ol {
    padding-left: 24px;
}
.po3p ol li {
    width: 100%;
    display: list-item;
    font-size: 14px;
    padding-bottom: 10px;
    list-style-type: decimal;
}
.po3p ol li:last-child {
    padding-bottom: 0;
}
.about1 .padb16 {
    margin-top: 0;
    padding-bottom: 16px !important;
}

.about1 .padb162 {
     margin-top: 0;
}
.pd3 {
    margin-top: 48px;
    border-bottom: 1px dotted #4a4a4a;
    margin-bottom: 48px;
}
.pd3 .hit_b3 {
    width: 100%;
    border: 8px solid #36bdef;
    background-color: #FFF;
    
    margin-bottom: 24px;
}
.pd3 .hit_b3 ul {
    	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.pd3 .hit_b3 ul li {
    width: 50%;
    background-color: undefined;
}
.pd3 .hit_b3 ul .right {
    background-color: #36bdef;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pd3 .hit_b3 ul .right h4 {
    font-size: 20px;
    color: #FFF;
    line-height: 42px;
    font-weight: 500;
}

.pd3 .hit_b3 h5 {
    font-size: 16px;
    text-justify: inter-ideograph;
	text-align: justify;
    padding-top: 24px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
    font-weight: 400;
    background-color: #FFF;
}
.pd3 .hit_b3 .pd3_sv {
    padding-top: 14px;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 14px;
    margin-left: 24px;
}
.pd3 .hit_b3 .pd3_sv li {
    width: 100%;
    text-align: left;
    list-style-type: disc;
    font-size: 14px;
}
.mg_00 {
    margin: 0 !important;
}
.pdr_00 {
    padding-right: 0 !important;
}
.re_box11 {
    margin-top: 48px;
    border-radius: 25px;
    background-color: #FFF;
     
}
.re_box11 .left {
    width: 100%;
     
}

.re_box11 .right {
    width: 100%;
    text-align: left;
       display: flex;
  align-items: center;
    padding-right: 8%;
    padding-left: 8%;
}
.re_box11 h4 {
    font-size: 18px;
    font-weight: 500;
    display: block;
    line-height: 1.6em;
    margin-bottom: 16px;
}
.re_box11 p {
     font-size: 18px;
    display: block;
    line-height:2em;
}


.rf1_ul {
    margin-left: 24px;
    display: block;
}
.rf1_ul li {
    width: 100%;
    list-style-type: disc;
    display: list-item;
    font-size: 14px;
    text-align: left;
}
.rf1_ul li:last-child {
    padding-bottom: 0;
}

.re_box12 {
    margin-top: 48px;
    border-radius: 25px;
    background-color: #FFF;
     
}
.re_box12 li{
    width: 100%;
    text-align: left;
    
}

.re_box12 h4 {
    font-size: 18px;
    font-weight: 500;
    display: block;
    line-height: 1.6em;
    margin-bottom: 16px;
}
.re_box12 p {
    font-size: 15px;
    display: block;
    line-height: 2em;
}

.mgt48 {
    margin-top: 24px;
}

.pdt24 {
    padding-top: 24px;
}
.pdtb_32 {
    padding-top: 24px;
    padding-bottom: 24px;
}
.wt500g {
    font-weight: 500;
    display: block;
    border-bottom: 1px dotted #6fb92c;
}
.wt500s {
    font-weight: 500;
    display: block;
    border-bottom: 1px dotted #36bdef;
}
.mgb_00 {
    margin-bottom: 0px !important;
}
.re_box1 ol {
    padding-left: 24px;
}
.re_box1 ol li {
    width: 100%;
    display: list-item;
    font-size: 14px;
    padding-bottom: 10px;
    list-style-type: decimal;  
    text-align: left;
}
.re_box1 ol li:last-child {
    padding-bottom: 0;
}
.point1r {
   position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}
.point1r .img01 {
    height: 82px;
    width: 82px;
    float: right;
}
.point2pgr {
    float: right;
    line-height: 26px;
    font-size: 16px;
    font-weight: 700;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #6fb92c;
    color: #FFF;
    margin-top: 28px;
    margin-right: -2px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}
.ref_box {
       border-bottom: 1px dotted #4a4a4a;
    padding-bottom: 48px;
    margin-bottom: 48px;
    overflow: hidden;
}
.wt500g2 {
     font-weight: 500;
    display: block;
    border-bottom: 1px solid #6fb92c;
    margin-bottom: 8px;
    font-size: 16px;
}
.htank_box1 {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    font-size: 14px;
}
.htank_box1 li {
    width: 100%;
    text-align: left;
}
.htank_box1 .left img {
    border:5px solid #3c70ba;
    margin-bottom: 24px;
}
.htank_box1 .right {
    text-align: left;
}
.htank_box1 a {
    display: block;
    margin-bottom: 24px;
    text-decoration: underline;
}
.htblue {
    color: #FFF;
    background-color: #3c70ba;
    line-height: 18px;
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 12px;
}
.htglay {
    background-color: #ccc;
    line-height: 18px;
    padding-top: 5px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    border-radius: 5px;
    font-size: 12px;
}
.htank_box2 dl {
    display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    background-color: #D8E2F1;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    overflow: hidden;
}
.htank_box2 dl dt {
    padding: 10px;
    width: 100%;    
}
.htank_box2 dl dd {
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 24px;
    padding-bottom: 10px;
    width: 100%;
    background-color: #FFF;
}

.htank_box2 dl:last-child {
    border-bottom: 1px solid #333;
}

.ttl.p_reform,.ttl.p_reform_works {
    background-image: repeating-linear-gradient(45deg, #6fb92c 0 2px, #6fb92c 2px 4px);
    color: #6fb92c;
}
.ttl.p_plumbing {
    background-image: repeating-linear-gradient(45deg, #36bdef 0 2px, #36bdef 2px 4px);
    color: #36bdef;
}
.ttl.p_frp {
    background-image: repeating-linear-gradient(45deg, #3c70ba 0 2px, #3c70ba 2px 4px);
    color: #3c70ba;
}


.mds {
    font-size: 18px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 24px;
    padding-top: 32px;
}
.midp {
    font-size: 14px;
    margin-top: 0px;
    margin-bottom: 32px;
    text-justify: inter-ideograph;
    text-align: justify;
}
.midp2 {
   font-size: 16px;
    font-weight: 500;
    text-align: left;
}
.shop_box li {
    width: 100％;
    text-align: left;
}
.box50 li {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
}
.btnp {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    line-height: 14px;
    font-size: 14px;
    background-color: #FFE600;
    padding-top: 15px;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-left: 30px;
    color: #000 !important;
}
.btnp:hover {
	background-color: #000;
	color: #FFF !important;
	font-weight: 500;
    
}
.btnp::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
	width: 12px;
	height: 12px;
	border: 1px solid;
	border-color: transparent transparent #000 #000;
	transform: rotate(-135deg);
	transition: .3s;
}
.btnp:hover::after {
	right: 10px;
	border-color: transparent transparent #FFF #FFF;
}
.block_1050 {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    display: block;
    overflow: hidden;
    margin-top: 24px;
}
.block_1280_sub {
    width: 100%;
    float: left;
    margin-right: 7%;
    text-align: left;
    margin-bottom: 32px;
    border-bottom: 1px solid #666;
}
.block_1280_sub .widget {
    float: left;
    width: 48%;
  margin-right: 1%;
    margin-left: 1%;
    position:relative;
    margin-bottom: 24px !important;
    
}
#search-2 {
    width: 100% !important;
}
.block_1280_sub select {
	-webkit-appearance: none;
	appearance: none;
	font-size: 14px;
	box-sizing: border-box;
	margin: 0px;
	color: #333;
	border-radius: 0;
	background: #fff;
	width: 100%;
	
}
.block_1280_sub option {
	background-color: #FFF;
}

.block_1280_sub .widget::after{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 10%;
	top: 65%;
	border-bottom: #333 2px solid;
	border-right: #333 2px solid;
	transform: rotate(45deg)translateY(-30%);
}
#search-2::after{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 10%;
	top: 65%;
	border-bottom: #333 0px solid;
	border-right: #333 0px solid;
	transform: rotate(45deg)translateY(-30%);
}
.block_1280_sub h2 {
    text-align: left;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    display: block;
    font-size: 14px;
    line-height: 1em;
    background-color: #CFCFCF;
    color: #000;
}

.block_1280_sub li {
    border: 1px solid #333;
    border-bottom: none; 
}
.block_1280_sub li a {
    
    text-align: left;
    padding-top: 24px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 24px;
    display: block;
    font-size: 16px;
    line-height: 1em;
}
.block_1280_sub li a:hover {
    background-color: #fff5e2;
    color: #333;
}
.block_1280_sub li:last-child {
    border-bottom: 1px solid #333;
}
.block_1280_main {
    width: 100%;
    display: block;
    float: left;
    overflow: hidden;
    text-align: left;
    padding-bottom: 32px;
}
.qa_box {
  margin-bottom: 64px;
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}
.qa_box h4 {
    font-size: 16px;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 500;
    color: #000;
    background-color: #FFE600;
}

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	text-align: left;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #666666;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-bottom: 1px;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
    position: relative;
    display: block;
    margin: 0 0 0 0;
    padding: 1em 2em 1em 1em;
    cursor: pointer;
    font-size: 14px;
    overflow: hidden;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #666666;
}
.cp_qa .cp_actab label:hover {
	color: #900;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
    clear: both;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #666;
}
.cp_qa .cp_actab .cp_actab-content .anser {
    margin: 2em;
    font-size: 14px;
    overflow: hidden;
    line-height: 1.8em;
}
/* 質問を開いた時の仕様 */
/* --アイコン */
.cp_qa .cp_actab input:checked ~ label {
	color: #900;
}
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab label::after {
	line-height: 1.6;
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 3em;
	margin-top: -12.5px;
	-webkit-transition: all 0.5s ease;
	        transition: all 0.5s ease;
	text-align: center;
}
.cp_qa .cp_actab input[type=checkbox] + label::after {
	content: '▼';
}
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}
.cp_qa .cp_actab label i {
	font-style: normal;
	font-weight: 700;
	float: left;
	color: #C30;
	font-family: 'Montserrat', sans-serif;
	width: 5%;
}
.cp_qa .cp_actab label .q_mm {
	float: left;
	width: 95%;
}

.cp_actab-content i {
	font-style: normal;
	font-weight: 700;
	float: left;
	color: #0099FF;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.8em;
	width: 5%;
}
.cp_actab-content .q_mm {
	float: left;
	width: 95%;
	text-justify: inter-ideograph;
	text-align: justify;
}

.info_bbt {
  margin-top: 24px;
}
.info_bbt li {
    display: block;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    margin-top: 14px;
}
.info_bbt li a img{
    height: 48px;
    width: auto;
    padding-right: 12px;
}
.info_bbt .left a img {
    float: left;
}
.info_bbt .left a h4 {
     display: flex;
  align-items: center;
    height: 48px;
    float: left;
    line-height: 20px;
    font-weight: 500;
}
.info_bbt .left a {
    display: block;
      overflow: hidden;
    border: 1px solid #333;
    padding-top: 14px;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 14px;
    background-color: #3AAE36;
    color: #FFF;
}
.info_bbt .center a {
    display: block;
    border: 1px solid #333;
    padding-top: 14px;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 14px;
    background-color: #333;
    color: #FFF;
    line-height: 48px;
}
.info_bbt .right a{
    display: block;
    border: 1px solid #333;
    padding-top: 14px;
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 14px;
    background-color: #FFE600;
    color: #000;
    line-height: 48px;
}
.remo_box {
    margin-left: 3%;
    margin-right: 3%;
}
.remo_box .line2b {
    border: 3px solid #3AAE36;
    text-align: left;
    padding: 24px;
    
}
.remo_box .line2b h4 {
    font-size: 16px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #3AAE36;
    margin-bottom: 12px;
    position: relative;
    line-height: 20px;
    height: 3em;
    padding-left: 4em;
}
.remo_box .line2b h4::before {
    position: absolute;
    left: 0;
    content: "";
    display: inline-block;
    width: 3em;
    height: 3em;
    background-image: url(../img/gpage/linec.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.remo_box .line2b ol li {
    text-indent: -1.3em;
    padding-left: 1.3em;
    width: 100%;
    font-size: 14px;
    margin-top: 24px;
    text-justify: inter-ideograph;
    text-align: justify;
    counter-increment: section;
}
.remo_box .line2b ol li::before {
  
  content: counter(section)'.';
  padding-right: .5em;
  font-weight: bold;
  color: #3AAE36;
}
.remo_box .line2b .btn2 {
  background-color: #3AAE36;
}
.remo_box .btn2 {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #FFF;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  line-height: 16px;
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 32px;
  margin-right: auto;
  margin-left: auto;
}
.remo_box .btn2::after {
  content: "";

  display: block;

  position: absolute;

  top: calc(50% - 5px);

  right: 30px;

  width: 12px;

  height: 12px;

  border: 2px solid;

    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;

  border-color: transparent transparent #fff #fff;

  transform: rotate(-135deg);

  transition: .3s;

}
.info_m3 {
    margin-left: auto;
    margin-right: auto;
}
.info_m3 li {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 24px;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 12px;
}
.info_m4 {
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 2em;
    margin-top: 24px;
}
/*---フォーム---*/


input[type="text"], input[type="email"], input[type="tel"], input[type="url"] {
		border: 0;
		padding: 10px;
		font-size: 16px;
		border: solid 1px #ccc;
		margin: 0;
		width: 100%;
}
textarea {
		width: 100%;
		height: 13em;
		font-size: 16px;
		border: 1px solid #CCC;
}
input[type="submit"] {
    display: inline;
    text-align: center;
    width: 60%;
    display: block;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    color: #333;
    line-height: 48px;
    background-color: #ffe600;
    margin-top: 24px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
}
input[type="submit"]:hover {
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background-color: #333;
	color: #FFF;
}
.wpcf7-form .wpcf7-select, select 
    {
	background-color: #ffffff;
	width: 100%;
	border: 1px solid #CCCCCC;
	font-size: 16px;
	padding: 10px;
}
.wpcf7-form-control-wrap {
		margin: 0;
}
.info_b {
    margin-left: 3%;
    margin-right: 3%;
    text-align: left;
}
.box800 .box800_left p {
	display: block;
}
.wpcf7-list-item-label {
	padding-right: 25px;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.box800 {
    margin-right: 3%;
    margin-left: 3%;
    margin-top: 24px;
    display: block;
    overflow: hidden;
    clear: both;
    border-top-width: 1px;
    border-top-style: dotted;
    border-top-color: #999;
}

.box800_user dl {
    display: block;
    clear: both;
    overflow: hidden;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #666;
}
.box800_user dl dt p {
    margin: 0;
    
}
.box800_user dl dt {
    text-align: left;
    width: 100%;
    display: block;
    overflow: hidden;
    font-size: 16px;
}
.box800_user dl dd {
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: left;
    font-size: 16px;
    line-height: 45px;
}
.name_l {
	float: left;
	width: 45%;
	margin-right: 5%;
	overflow: hidden;
}
.name_2 {
	float: left;
	width: 50%;
}
.wpcf7-form-control-wrap {
	clear: both;
	display: block;
}
.info_mm2 {
    text-align: center;
    display: block;
    overflow: hidden;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    clear: both;
    line-height: 1.8em;
}
.wpcf7 input[type="checkbox"] {
	transform: scale(1.3);
	margin: 0px;
	padding: 0px;
}

/*---フォーム---*/

.box_cont2 {
    text-align: left;
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
    font-size: 14px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
    border-top-style: dotted;
    border-right-style: dotted;
    border-left-style: dotted;
    border-top-color: #132e57;
    border-right-color: #132e57;
    border-left-color: #132e57;
    line-height: 2em;
}
.box_cont2 dl dt {
   
    padding: 20px;
  
    display: block;
    font-weight: 500;
    text-align: left !important;
}
.box_cont2 dl dd {
    display: block;
   
 
    padding: 20px;
    text-justify: inter-ideograph;
    text-align: justify;
    background-color: #FFF;
}
.box_cont2 dl:first-child {
    border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #999;
}
.box_cont2 dl {
    overflow: hidden;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #999;
   
    background-color: #eee;
}
.box_cont2 dl dd ul li {
	list-style-position: outside;
	list-style-type: disc;
	margin-left: 25px;
	margin-top: 5px;
	margin-bottom: 5px;
}




/*--- ページ ---*/




.block_1280_main .b_tt h1 {
    font-size: 18px;
    line-height: 1.8em;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-bottom-color: #000;
    text-justify: inter-ideograph;
    text-align: justify;
    display: block;
    overflow: hidden;
    padding-bottom: 0.5em;
    font-weight: 500;
    color: #000;
}


.p_reform.kiji_1 h1,.p_reform_works.kiji_1 h1 {
    border-bottom-color: #6fb92c;
}
.p_reform.kiji_1 h2,.p_reform_works.kiji_1 h2 {
    border-bottom-color: #6fb92c;
}
.p_reform.kiji_1 h3,.p_reform_works.kiji_1 h3 {
    border-color: #6fb92c;
}
.p_reform.kiji_1 h4,.p_reform_works.kiji_1 h4 {
    background-color: #6fb92c;
     color: #FFF;
}
.p_reform.kiji_1 h4:after,.p_reform_works.kiji_1 h4:after {
    border-top-color: #6fb92c;
}
.p_reform.kiji_1 h5,.p_reform_works.kiji_1 h5 {
    border-color:  #6fb92c;
}
.p_reform.kiji_1 h6:after,.p_reform_works.kiji_1 h6:after {
    background: -webkit-repeating-linear-gradient(-45deg, #6fb92c, #6fb92c 2px,  rgba( 255, 255, 255, 0 ) 2px,  rgba( 255, 255, 255, 0 ) 4px);
	background: repeating-linear-gradient(-45deg, #6fb92c, #6fb92c 2px,  rgba( 255, 255, 255, 0 ) 2px,  rgba( 255, 255, 255, 0 ) 4px);
}

.p_plumbing.kiji_1 h1 {
    border-bottom-color: #36bdef;
}
.p_plumbing.kiji_1 h2 {
    border-bottom-color: #36bdef;
}
.p_plumbing.kiji_1 h3 {
    border-color: #36bdef;
}
.p_plumbing.kiji_1 h4 {
    background-color: #36bdef;
    color: #FFF;
}
.p_plumbing.kiji_1 h4:after {
    border-top-color: #36bdef;
}
.p_plumbing.kiji_1 h5 {
    border-color:  #36bdef;
}
.p_plumbing.kiji_1 h6:after {
    background: -webkit-repeating-linear-gradient(-45deg, #36bdef, #36bdef 2px,  rgba( 255, 255, 255, 0 ) 2px,  rgba( 255, 255, 255, 0 ) 4px);
	background: repeating-linear-gradient(-45deg, #36bdef, #36bdef 2px,  rgba( 255, 255, 255, 0 ) 2px,  rgba( 255, 255, 255, 0 ) 4px);
}

.p_frp.kiji_1 h1 {
    border-bottom-color: #3c70ba;
}
.p_frp.kiji_1 h2 {
    border-bottom-color: #3c70ba;
}
.p_frp.kiji_1 h3 {
    border-color: #3c70ba;
}
.p_frp.kiji_1 h4 {
    background-color: #3c70ba;
     color: #FFF;
}
.p_frp.kiji_1 h4:after {
    border-top-color: #3c70ba
}
.p_frp.kiji_1 h5 {
    border-color: #3c70ba;
}
.p_frp.kiji_1 h6:after {
    background: -webkit-repeating-linear-gradient(-45deg, #3c70ba, #3c70ba 2px,  rgba( 255, 255, 255, 0 ) 2px,  rgba( 255, 255, 255, 0 ) 4px);
	background: repeating-linear-gradient(-45deg, #3c70ba, #3c70ba 2px,  rgba( 255, 255, 255, 0 ) 2px,  rgba( 255, 255, 255, 0 ) 4px);
}

.kiji_1 h1 {
    font-size: 18px !important;
    margin-bottom: 24px !important;
    border-bottom-width: 3px !important;
    border-bottom-style: solid !important;
    border-bottom-color: #ffe600;
    text-justify: inter-ideograph !important;
    text-align: justify !important;
    display: block;
    overflow: hidden;
    margin-top: 48px;
    padding-bottom: 0.3em;
    font-weight: 500;
}
.kiji_1 h2 {
    font-size: 18px !important;
    margin-bottom: 24px !important;
    text-align: left !important;
    border-bottom-width: 5px !important;
    border-bottom-style: double !important;
    border-bottom-color: #ffe600;
    letter-spacing: 0em !important;
    text-indent: 0px !important;
    text-justify: inter-ideograph !important;
    text-align: justify !important;
    background-image: none !important;
    padding-bottom: 5px;
    display: block;
    overflow: hidden;
    margin-top: 48px;
    padding-bottom: 0.3em;
}
.kiji_1 h3 {
    font-size: 16px !important;
    margin-bottom: 24px !important;
    padding: 0.5em !important;/*左線（実線 太さ 色）*/
    border-top-width: 1px !important;
    border-right-width: 1px !important;
    border-bottom-width: 1px !important;
    border-left-width: 5px !important;
    border-top-style: solid !important;
    border-right-style: solid !important;
    border-bottom-style: solid !important;
    border-left-style: solid !important;
    border-top-color: #ffe600;
    border-right-color: #ffe600;
    border-bottom-color: #ffe600;
    border-left-color: #ffe600;
    display: block !important;
    width: 100% !important;
    text-justify: inter-ideograph !important;
    text-align: justify !important;
    margin-top: 48px;
}
.kiji_1 h4 {
    font-size: 16px !important;
    margin-bottom: 24px;
    position: relative;
    padding: 0.6em;
    background-color: #ffe600;
    text-justify: inter-ideograph;
    text-align: justify;
    display: block;
    margin-top: 48px;
    color: #000;
}
.kiji_1 h4:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 30px;
	width: 0;
	height: 0;
	border-top-width: 15px;
	border-right-width: 15px;
	border-bottom-width: 15px;
	border-left-width: 15px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFE600;
	border-right-color: rgba( 255, 255, 255, 0 );
	border-bottom-color: rgba( 255, 255, 255, 0 );
	border-left-color: rgba( 255, 255, 255, 0 );
    
}
.kiji_1 h5 {
    font-size: 16px !important;
    margin-bottom: 24px;
    border: 2px dashed #ffe600;
    text-justify: inter-ideograph;
    text-align: justify;
    display: block;
    padding-top: 0.5em;
    padding-right: 1em;
    padding-bottom: 0.5em;
    padding-left: 1em;
    margin-top: 48px;
}
.kiji_1 h6 {
    position: relative;
    font-size: 16px !important;
    margin-bottom: 32px;
    text-justify: inter-ideograph;
    text-align: justify;
    display: block;
    margin-top: 64px;
    padding-bottom: 0.2em;
    padding-bottom: 5px;
}
.kiji_1 h6:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg, #ffe600, #ffe600 2px,  rgba( 255, 255, 255, 0 ) 2px,  rgba( 255, 255, 255, 0 ) 4px);
	background: repeating-linear-gradient(-45deg, #ffe600, #ffe600 2px,  rgba( 255, 255, 255, 0 ) 2px,  rgba( 255, 255, 255, 0 ) 4px);
}
.kiji_1 h1:first-child,
.kiji_1 h2:first-child,
.kiji_1 h3:first-child,
.kiji_1 h4:first-child,
.kiji_1 h5:first-child,
.kiji_1 h6:first-child {
    margin-top: 24px;
    ;
}


.kiji_1 a {
	text-decoration: underline;
}

 #block-2 {
    display: none;
}
 #archives-2 {
    display: none;
}
#categories-2 {
    margin-right: 1%;
}
#archives-3 {
 margin-left: 1%;
}
.screen-reader-text {
    display: none;
}
.search-field {
    width: 100%;
}
input[type="search"] {
    border: 0;
    padding: 10px !important;
    font-size: 16px;
    border: solid 1px #ccc;
    margin: 0;
    width: 70%;
    margin-top: 5px;
    float: left;
}
.block_1280_sub input[type="submit"] {
    display: inline;
    text-align: center;
    width: 27%;
    display: inline;
    font-size: 14px;
    color: #333;
    line-height: 38px;
    background-color: #FFE600;
     border: solid 1px #ccc;
    float: right;
    margin-top: 5px;
}
.block_1280_sub input[type="submit"]:hover {
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	background-color: #333;
	color: #FFF;
}
.block_1280_main .kiji_1 {
    text-align: left;
    margin-bottom: 64px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #666;
    line-height: 2em;
    display: block;
    overflow: hidden;
    padding-top: 25px;
    padding-bottom: 64px;
    text-justify: inter-ideograph;
    text-align: justify;
}
.block_1280_main .kiji_1 p {
    margin-bottom: 24px;    
}
.block_1280_main .kiji_1 ul,.block_1280_main .kiji_1 ol {
    margin-bottom: 32px;
}
.block_1280_main .kiji_1 ul li {
    margin-bottom: 16px;
    list-style-type: disc;
    list-style-position: outside;
}
.block_1280_main .kiji_1 ol li {
    margin-bottom: 16px;
    list-style-type: decimal;
    list-style-position: outside;
}
.block_1280_main .kiji_1 ul,.block_1280_main .kiji_1 ol {
    padding-left: 24px;
}
.block_1280_main .daysn {
    text-align: right;
    padding-bottom: 3px;
    padding-top: 3px;
    font-size: 14px;
}
.block_1280_main .block_1050_n .button_all a {
    border: 1px solid #333;
    display: block;
    padding: 24px;
    margin-top: 48px;
    clear: both;
    font-size: 14px;
    line-height: 14PX;
    text-align: center !important;
}
.block_1280_main .block_1050_n .button_all a:hover {
    color: #000;
    background-color: #ffe600;
}
.block_1280_main .block_1050_n.p_reform .button_all a:hover,.block_1280_main .block_1050_n.p_reform_works .button_all a:hover  {
    color: #fff;
    background-color: #6fb92c;
}
.block_1280_main .block_1050_n.p_plumbing .button_all a:hover {
    color: #fff;
    background-color: #36bdef;
}
.block_1280_main .block_1050_n.p_frp .button_all a:hover {
    color: #fff;
    background-color: #3c70ba;
}
.block_1280_main .block_1050_n .navigation.clearfix .navigation_in {
	display: flex;
}
.block_1280_main .block_1050_n .navigation.clearfix .navigation_in p {
	float: left;
	width: 33%;
    text-align: center;
}
.news_more {
	padding: 5px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	border: 1px solid #666;
	display: block;
	text-align: center;
	width: 30%;
	font-size: 13px;
	line-height: 13px;
}
.news_more:hover {
	color: #FFF;
	background-color: #666;
}
.box980_blog_2 .kiji_1 img {
	height: auto;
	max-width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
}
.block_1280_main .tt {
	position: relative;
}
.block_1280 {
	max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}




.box980_blog_2 .kiji_1 .photo li {
    list-style-type: none !important;
    width: 31% !important;
}
.daysn a {
    margin-left: 14px;
}
.widget-title {
}
.box_subm .widget {
    margin: 0;
}
.mov_box {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
video {
    width: 100%;
    height: auto;
}

.m_lr {
    margin-left: auto !important;
   margin-right: auto !important;
    float: none !important;
}
.wp-pagenavi .pages {
   
}
.wp-pagenavi span,.wp-pagenavi span,.wp-pagenavi a {
    font-size: 14px !important;
    border: 1px solid #333 !important;
    padding-top: 5px !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    padding-bottom: 5px !important;
}
.wp-pagenavi .current {
    background-color: #ffe600 !important;
    color: #4a4a4a !important;
}
.wp-pagenavi a:hover {
    background-color: #ffe600 !important;
    color: #4a4a4a !important;
}
.mlr3 {
    margin-left: 3%;
    margin-right: 3%;
}
.tx_left {
    text-align: left !important;
}
.tx_cent {
    text-align: center !important;
}
#archives-4 {
    display: none;
}
.gmap iframe {
    object-fit: cover;
  width:100%;
  height: 350px;
    background-color: #FFF;
}
.midashi_r1 {
font-size: 15px;
    line-height: 2.5em;
    font-weight: 700;

}
.midashi_r2 {
    color: coral;
font-size: 25px;
    font-weight: 400;
font-family: "Rampart One", sans-serif;
}

.midashi_r3 {
    color: darkcyan;
font-size: 35px;
    font-weight: 400;
font-family: "Rampart One", sans-serif;
}
.midashi_r4 {
    font-weight: 700;
font-size: 18px;
font-family: "BIZ UDPMincho", serif;
}
.info_m45 {
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 2em;
    margin-top: 24px;
}