

@charset "utf-8";
/*===========================
add
===========================*/

/*-----------
   色変更   
-----------*/

/* 基本カラー  */

.fcBasic {
	color:#ef6c70;
}
* {
	box-sizing:border-box;
}

/* table  */ 

table.table2 th {
	/*
	background-color:#d9c743;
	*/
	background-color:var(--basic-color-d);
	color:#fff;
}

table.table3 th {
	background-color:#F79A86;
	color:#fff;
}

.tdColor1 {
	background-color:#FEF8EF !important;
}

.tdColor2 {
	background-color:#FEEEE0 !important;
}
	

/* buttons */

.txtBnr2 a {
	background-color:#EA8E1E;
	color: #FFF;
}


/*.txtIcon  */

.txtIcon {
	background-color:#EA8E1E;
	color: #FFF;
}

.txtIconBlock {
	background-color:#EA8E1E;
	color: #FFF;
}

.txtIconPoint {
	background-color:#ABC853;
}

/* catchiphrase */

.catch1 {
	color:var(--a-color);
}

.catch2 {
	color:var(--a-color);
}

.catch3 {
	color:var(--a-color);
}


/*circle-number*/

.circle-big {
	color:var(--a-color);
}

/* list */

ul.liCircle li::before , ul.liInline li::before ,  ul.liInline2Div li::before , ul.liInline3Div li::before , ul.liInline4Div li::before {
	background:#F3AC56;
}

/* faq */

dl.faq dt::before {
	color: #FFF;
	background:var(--a-color);
}

dl.faq dd::before {
	color: #FFF;
	background:#64A6D7;
}

/* 枠  */ 

.boxFrame {
	border:3px solid #F1C03F;
}

.boxFrameDouble {
	border:3px double #F1C03F;
}

.boxDot {
	border:2px dotted #F1C03F;
	background:#FEFDE9;
}

.boxFablic {
	background:#FEFDE9;
	box-shadow: 0px 0px 0px 10px #FEFDE9;
	border:  dotted 2px #E3AA24;
}


/* 事業内容　*/

ul.liBusiv {
	text-align:center;
	margin-bottom:2em;
}
ul.liBusi li {
	padding:0.2em 1em;
	font-size:1.2em;
	width:100%;
	box-sizing: border-box;
	vertical-align:top;
	background-color:#41b879;
	color:#FFF;
	margin-bottom:10px;
	border-radius: 50px;
	-webkit-border-radius: 50px; 
	-moz-border-radius: 50px;
}

ul.liBusi2Div {
	text-align:center;
	margin-bottom:2em;
}
ul.liBusi2Div li {
	display:inline-block;
	padding:0.2em 1em;
	font-size:1.2em;
	width:46%;
	box-sizing: border-box;
	vertical-align:top;
	background-color:#41b879;
	color:#FFF;
	margin-bottom:10px;
	border-radius: 50px;
	-webkit-border-radius: 50px; 
	-moz-border-radius: 50px;
}

@media only screen and (max-width: 768px) {
	
ul.liBusi2Div li {
	display:block;
	width:100%;
}
}


.txtIconM {
	color: #fff;
	text-align: center;
	font-size: 1.2em;
	line-height: normal;
	padding: 0.4em 1em 0.5em 1em;
	background-color:#00926e;
	margin: 0 0 0.4em 0;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}


@media only screen and (max-width: 600px) {
	
.txtIconM {
	font-size: 1.1em;
}
}

/* 画像とテキストを交互に表示画像バージョン */


.contents-wrap {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	-webkit-box-pack: justify; /*Android4.3*/
	-moz-box-pack: justify;    /*Firefox21*/
	-ms-flex-pack: justify;    /*IE10*/
	-webkit-justify-content: space-between; /*PC-Safari,iOS8.4*/
	justify-content: space-between;
    background-color: rgba(252, 252, 252, 0.92);
}
.contents-wrap:nth-child(odd) {
	-ms-flex-direction:row-reverse; /*IE10*/
	-webkit-flex-direction:row-reverse; /*old webkit browser*/
	flex-direction:row-reverse;
}
.contents-text {
	width: 50%; /*flex: 2;*/
    /* flex: 2; */
    padding: 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;	
}
.contents-img {
	width: 50%; /*flex: 1;*/
}
.contents-text h3 {/* 要調整 */
	font-size: 1.6em;
	line-height: 1.3em;
	text-align: center;
	margin-bottom: 1em;
	color:#00926e;
	text-align:left;
}
.contents-text h3::after {/* 要調整 */
 content: none;
}
.contents-text-catch {
    margin: 0 auto 20px;
    text-align: center;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.125em;
    font-family: 'Noto Sans Japanese';
    font-weight: 400;
    border-bottom: 4px solid #62c0b5;
    padding-bottom: 8px;
}
.contents-img img {
	display: block;
	width: auto;
	max-width: 100%;
	border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
@media screen and (max-width: 768px) {
.contents-wrap, .contents-wrap:nth-child(odd) {
	-ms-flex-direction:row-reverse; /*IE10*/
	-webkit-flex-direction:row-reverse; /*old webkit browser*/
	flex-direction: column-reverse;
	padding: 20px 0 0;
}
.contents-wrap:last-child{
	padding-bottom: 20px;	
}
.contents-text, .contents-img {
	width: 100%; /*flex: 1;*/
	margin-bottom:50px;
}
.contents-text{
	padding:0 20px;
	margin-bottom:20px;
}
.contents-text h3 {
	font-size: 1.3em;
}
}


 /* wp info バージョン　*/
 
 .indexNews {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch; /* アイテムを上揃えで配置します */
}


.contNews {
}
  
.contNews ul {
	max-height:460px;
	overflow: auto;
}
 
.contNews ul li {
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
	align-items: center;
	/* align-items: start; */
	
    margin-bottom: 1em;
    padding-bottom: 1em;
	margin-right:20px;
    border-bottom:#cccccc dashed 2px;
}

.contNews ul li:first-child {	
    margin-top: 1em;
}

.contNews .thumbnail {
    display: inline-block;
	margin-right: 20px;
	max-width:100px;
}
.contNews .data {
    margin-right: 20px;
    display: inline-block;
	vertical-align:top;

}
.contNews .wp_category {
    margin-right: 20px;
	display:inline-block;
	color:#FFF;
	text-align:center;
	line-height:normal;
	font-size:0.8em;
	padding:0.2em 0.8em;
	background-color:#EC80AD; /* 色変え */
}
.contNews .title {
	display: inline-block;
}



@media only screen and (max-width: 768px) {
	
.newsLeft {
	width:100%;
}

.newsLeft h2 {
	display:inline-block;
	margin-right:0.5em;
}
	
.contNews {
	width:100%;
}
  


.contNews .thumbnail {
}

.contNews .data {

}
.contNews .title {

}


}

@media only screen and (max-width: 600px) {


.contNews ul li {
	display: block;
}

.contNews .thumbnail {
	display: block;
	margin-right: 0;
	margin-bottom:10px;
}

.contNews .data {
	display:inline-block;
}

.contNews .wp_category {
    margin-right: 0;
	display:inline-block;
	margin-bottom:10px;
}

.contNews .title {
	display: block;

}


}

.box-sd {
    padding: 3rem 3rem 1.2rem;
    background-color: rgba(255,255,255,0.5);
    border: 0px solid #999;
    box-sizing: border-box;
	border-radius:20px;
	box-shadow: 2px 2px 0px 0px rgba(0,0,0,0.1);
}
.box-sd02 {
    padding: 3rem 2rem 3rem;
    background-color: rgba(255,236,55,0.1);
    border: 1px solid #ffec50;
    box-sizing: border-box;
	border-radius:20px;
	box-shadow: 1px 1px 0px 0px rgba(255,236,55,0.3);
}
.box-sd03 {
    padding: 3rem 3rem 2rem 3rem;
    background-color: #f2f2f2;
    color: #333;
    border: 0px solid #999;
    box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 10%), 0px 3px 15px 0px rgb(0 0 0 / 8%), 0px 5px 28px 0px rgb(0 0 0 / 6%);
    box-sizing: border-box;
}
.box-sd05 {
    padding: 3.3rem 2rem 3.3rem;
    background-color: rgba(255,255,255,0.7);
    border: 1px solid #999;
    box-sizing: border-box;
	border-radius:20px;
	box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.1);
}

@media only screen and (max-width: 768px) {
.box-sd,.box-sd02,.box-sd03,.box-sd05  {
    padding: 2rem 2rem 1.2rem;
    box-sizing: border-box;
}

}


.txtBold {
	font-weight:900;
}


ul.circle {
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;	
}
ul.circle li {
    padding: 0 0 0.5em 1.2em;
    margin-bottom: 0.7em;
    border-bottom: 1px dashed #CCC;
    width:90%;
    margin-right:2%;
    position: relative;
}
ul.circle li:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background-color: #222;
    border-radius: 50%;
    left: 0.5em;
    margin-top: 0.9em;
}
ul.circle-2col {
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;	
}
ul.circle-2col li {
    padding: 0 0 0.5em 1.2em;
    margin-bottom: 0.7em;
    border-bottom: 1px dashed #CCC;
    width:45%;
    margin-right:2%;
    position: relative;
}
ul.circle-2col li:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background-color: #222;
    border-radius: 50%;
    left: 0.5em;
    margin-top: 0.9em;
}
ul.circle-3col {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
ul.circle-3col li {
    padding: 0 0 0.5em 1.2em;
    margin-bottom: 0.7em;
    border-bottom: 1px dashed #CCC;
    width: 25%;
    margin-right: 1%;
    position: relative;
}
ul.circle-3col li.lg {
    width: 42%;
}
ul.circle-3col li:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background-color: #222;
    border-radius: 50%;
    left: 0.5em;
    margin-top: 0.9em;
}

ul.check {
    position: relative;
	display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}
ul.check li {
    padding: 0 0 0.5em 2em;
    margin-bottom: 0.7em;
    border-bottom: 1px dashed #CCC;
	width:98%;
	margin-right:2%;
    position: relative;
}
ul.check li::before {
    position: absolute;
    content: "\f14a";
    font-family: FontAwesome;
    left: 0.3em;
    font-size: 1.3em;
}
ul.check-2col {
    position: relative;
	display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}
ul.check-2col li {
    padding: 0 0 0.5em 2em;
    margin-bottom: 0.7em;
    border-bottom: 1px dashed #CCC;
	width:46%;
	margin-right:2%;
    position: relative;
}
ul.check-2col li::before {
    position: absolute;
    content: "\f14a";
    font-family: FontAwesome;
    left: 0.3em;
    font-size: 1.3em;
	color: var(--a-color);
}
ul.circle-double {
    position: relative;
	display:flex;
    justify-content:flex-start;
    align-items:center;
    flex-wrap:wrap;
}
ul.circle-double li {
	padding: 0 0 0.5em 2em;
    margin-bottom: 0.5em;
    border-bottom: 1px dashed #CCC;
    width: 30.3%;
    margin-right: 3%;
    position: relative;
}
ul.circle-double li:before {
		margin-right: 5px;
		content: " ";
		display: inline-block;
	    position: absolute;
	    top:0.4em;
	    left:0.5em;
		width: 0.6em;
		height: 0.6em;
	    font-weight: bold;
		border: double 4px var(--a-color);
		border-radius: 50%;
}
@media only screen and (max-width: 768px) {
ul.circle-2col li,ul.circle-3col li.lg ,ul.check-2col li,ul.circle-double li{
       width: 96%;
}
ul.circle-3col li {
       width: 30%;
}

}

.wrap-h2 {
  width:96%;
  margin:3% auto 6%;
}
.wrap-h3 {
  width:96%;
  margin:3% auto 6%;
}
.wrap-h4 {
  width:96%;
  margin:3% auto 6%;
}
@media only screen and (max-width: 768px) {
.wrap-h2 {
  width:100%;
  margin:3% auto;
}
.wrap-h3 {
  width:100%;
  margin:3% auto;
}
.wrap-h4 {
  width:100%;
  margin:3% auto;
}
}
.box-wrap {
    background: #fcfaf5;
    box-sizing: border-box;
	border-radius:10px;
}
.box-ttl {
	text-align:center !important;
	background:var(--a-color);
	padding:0.6em;
	font-size:1.1em;
	color:#fff;
	font-weight: 600;
	margin-bottom:0px !important;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:10px;
}
.box-wrap div.box-cnt {
	width:100%;
	margin:0px auto 0em;
	padding:0.2em 1.8em 1.8em 1.8em;
	box-sizing:border-box;
}


.box-wrap02 {
    background: #fcfaf5;
    box-sizing: border-box;
	border-radius:10px;
	padding:20px 10px 20px;
}
.box-ttl02 {
	text-align:center !important;
	background:#ffa2fd;
	padding:0.6em;
	color:#fff;
	margin-bottom:0px !important;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:10px;
}
.box-wrap02 div.box-cnt {
	width:100%;
	margin:0px auto 0em;
	padding:1.2em 1.8em 1.8em 1.8em;
	box-sizing:border-box;
}


.box-ttl:after {
    content: '';
    position: absolute;
    bottom: 0px;
    display: inline-block;
    width: 0px;
    height: 0px;
    left: 0%;
    transform: translateX(-50%);
    background-color: #ccc;
}
/**************FLOW**************/
.flow_content section {
  background-color: #FFF;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  margin: 0 0 80px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .flow_content section {
    margin: 0 0 60px;
  }
  .box-wrap div.box-cnt {
	padding:0.2em 1.8em 0.2em;
}
}
@media only screen and (max-width: 640px) {
  .flow_content section {
    display: block;
    margin: 0 0 40px;
  }
}
.flow_content section:last-of-type {
  margin: 0;
}
.flow_content section:last-of-type::after {
  content: none;
}
.flow_content section::after {
  content: "";
  width: 30px;
  height: 30px;
  border-right: 2px var(--basic-color) solid;
  border-bottom: 2px var(--basic-color) solid;
  display: block;
  position: absolute;
  bottom: -47px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .flow_content section::after {
    bottom: -37px;
  }
}
@media only screen and (max-width: 640px) {
  .flow_content section::after {
    width: 20px;
    height: 20px;
    bottom: -24px;
  }
}
.flow_content section .flow_num {
  background-color: var(--basic-color);
  flex: 0 1 25%;
  padding: 30px 10px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
}
@media only screen and (max-width: 640px) {
  .flow_content section .flow_num {
    border-radius: 10px 10px 0 0;
    padding: 10px 20px 5px 20px;
  }
}
.flow_content section .flow_num p {
  text-align: center;
  margin: 0;
}
.flow_content section .flow_num p span {
  display: block;
  color: #fff;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom:0.5em;
}
@media only screen and (max-width: 768px) {
  .flow_content section .flow_num p span {
    font-size: 2em;
  }
}
@media only screen and (max-width: 640px) {
  .flow_content section .flow_num p span {
    display: inline-block;
    margin-right: 0.6em;
    line-height: 1.2em;
    font-size: 1.3em;
	padding-top:0.3em;
  }
}
.flow_content section .flow_num p img {
  width: 60px;
}
@media only screen and (max-width: 640px) {
  .flow_content section .flow_num p img {
    width: 40px;
    vertical-align: top;
  }
}
.flow_content section .flow_txt {
  flex: 0 1 75%;
  padding: 30px;
  background: #fbfbfb;
}
@media only screen and (max-width: 640px) {
  .flow_content section .flow_txt {
    padding: 20px;
  }
}
.flow_content section .flow_txt h3 {
  font-size:1.8em;
  text-align:left;
  color: var(--basic-color-h);
  font-weight: 500;
  border-bottom: 1px #dbdbdb solid;
  padding: 0 0 0.6em ;
  margin: 0 0 0.7em;
}

.flow_content section .flow_txt h3:after {
	content:none;
}
@media only screen and (max-width: 768px) {
  .flow_content section .flow_txt h3 {
    font-size: 2em;
  }
}
@media only screen and (max-width: 640px) {
  .flow_content section .flow_txt h3 {
    font-size: 1.3em;
    text-align: center;
  }
}
.flow_content section .flow_txt p {
  margin: 0;
}
.flow_content section .flow_txt .tel_num {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0 2em;
}
@media only screen and (max-width: 1000px) {
  .flow_content section .flow_txt .tel_num {
    flex-wrap: wrap;
    margin: 5px 0 0;
  }
}
.flow_content section .flow_txt .tel_num p {
  color: var(--basic-color);
  font-weight: 700;
  font-size: 2.2em;
  line-height: 1.2em;
}
@media only screen and (max-width: 900px) {
  .flow_content section .flow_txt .tel_num p {
    flex: 0 1 100%;
  }
}
@media only screen and (max-width: 640px) {
  .flow_content section .flow_txt .tel_num p {
	  font-size: 1.8em;
  }
}
.flow_content section .flow_txt .tel_num p:last-child {
  flex: 1 1 auto;
  min-width: 120px;
}
@media only screen and (max-width: 1000px) {
  .flow_content section .flow_txt .tel_num p:last-child {
    margin: 15px 0 0;
  }
}
.flow_content section .flow_txt .tel_num p span {
  font-size: 0.6em;
}
.flow_content section .flow_txt .tel_num p span + a:hover {
  text-decoration: none;
  color: var(--basic-color);
}

.flow_content section .flow_txt .tel_num p .btn_contact {
  height: 60px;
  line-height: 60px;
  font-size: 1.6rem;
}
.wd40{
   width:40% !important;
   margin:auto;
}
.wd50 {
  width:50% !important;
  margin:0 auto;
}
.wd60 {
  width:60% !important;
  margin:0 auto;
}
.wd70 {
  width:70% !important;
  margin:0 auto;
}
.wd80 {
  width:80% !important;
  margin:0 auto;
}
.wd85 {
  width:85% !important;
  margin:0 auto;
}
.wd90 {
  width:90% !important;
  margin:0 auto;
}
.wd95 {
  width:95% !important;
  margin:0 auto;
}

@media only screen and (max-width: 768px) {
.wd40,.wd50,.wd60,.wd70,.wd80,.wd85,.wd90,.wd95{
   width:100% !important;
   margin:auto;
}
}
/* txt */
.txt2 {
   font-size:1.2rem;
   font-weight:800;
}
.txtbold {
   font-weight:bold;
}
.tx-center {
   text-align:center
}
.tx-left {
   text-align:left;
}
.tx-right {
   text-align:right;
}
.tx_marker {
   background:linear-gradient(transparent 75%, #fff799 75%);
   font-weight:bold;
   display:inline;
}
/* color */

.red {
	color: #bc2d2d;
}
.green {
	color: #3b7a28;
}
.brown {
	color: #a67435;
}
.blue {
	color: #325f99;
}
.catchcopy {
    font-size: 2rem;
    font-family: 'Noto Sans Japanese';
    font-weight: 400;
    line-height: 1.3em;
    color: #E0625E;
}
.catchcopy2 {
    font-size: 2.2rem;
    font-family: 'Noto Sans Japanese';
    font-weight: 600;
    line-height: 1.3em;
    color: #E0625E;
}
.col_red {
	color:#F33;
}
.col_green {
	color: #1a9651 !important;
}
.col_blue {
	color: #06C;
}
.col_orange {
	color: #F06000;
}
.tx-70p  {
	font-size:70% !important;
	letter-spacing:normal;
}	
.tx-80p  {
	font-size:80% !important;
	letter-spacing:normal;
}
.tx-90p  {
	font-size:90% !important;
	letter-spacing:normal;
}
.tx100p    {
	font-size:100% !important;
	letter-spacing:normal;
}
.tx-110p {
    font-size: 110% !important;
	letter-spacing:normal;
}
.tx-120p    {
	font-size:120% !important;
	letter-spacing:normal;
}
.tx-130p    {
	font-size:130% !important;
	letter-spacing:normal;
}
.tx-140p    {
	font-size:140% !important;
	letter-spacing:normal;
	line-height:1.4em;
}
.tx-150p    {
	font-size:150% !important;
	letter-spacing:normal;
}
.tx-160p    {
	font-size:160% !important;
	letter-spacing:normal;
}
.tx-170p    {
	font-size:170% !important;
	letter-spacing:normal;
}
.tx-180p    {
	font-size:180% !important;
	letter-spacing:normal;
}
.tx-230p    {
	font-size:230% !important;
	letter-spacing:normal;
}
.tx-300p    {
	font-size:300% !important;
	letter-spacing:normal;
}
.mar0 {
    margin:0 auto;
}
.txsize1 {
   font-size:1.2rem;
   font-weight:800;
   color:#F33;
   text-align:center;
}
.txtstyle1 {
	font-size: 1.16em;
	font-weight: bold;
}
.txtstyle2 {
	font-size: 1.24em;
	font-weight: bold;
}
.ex {
    padding-left:1em;
    text-indent:-1em;
}

@media only screen and (max-width: 768px) {
.tx-230p {
    font-size: 120% !important;
    letter-spacing: nomal;
}
.tx-180p {
    font-size: 110% !important;
    letter-spacing: nomal;
}	


}


@media only screen and (max-width: 600px) {
.line-h2 {
    line-height: 1.5;
}
.tx-230p {
    font-size: 130% !important;
    letter-spacing: nomal;
}
.tx-180p,.tx-170p {
    font-size: 120% !important;
    letter-spacing: nomal;
}
.tx-160p,.tx-150p {
    font-size: 110% !important;
    letter-spacing: nomal;
}
.tx-140p,.tx-130p,.tx-120p,.tx-110p {
    font-size: 100% !important;
    letter-spacing: nomal;
}
}
.p-ttl {
	font-weight: 600;
	font-size:1.0em;
	text-align: center;
    border-bottom:1px solid #333;
	padding-bottom:5px;	
}
.waterTitMark {
    font-size: 80%;
    color: var(--basic-color);
    display: inline-block;
    padding-right: 0.4em;
    vertical-align: top;
    position: relative;
    top: 0.2em;
}
.waterMleftFeat {
    background: rgba(253,253,253,.9);
    z-index: 10;
    padding: 2em 3em 4em 3em;
    margin-right: -15%;
    text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 8px #fff, 0 0 10px #fff, 0 0 12px #fff, 0 0 14px #fff, 0 0 16px #fff, 0 0 18px #fff;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.waterMrightFeat {
    background: rgba(253,253,253,.9);
    z-index: 10;
    padding: 2em 3em 4em 3em;
    margin-left: -15%;
    text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 8px #fff, 0 0 10px #fff, 0 0 12px #fff, 0 0 14px #fff, 0 0 16px #fff, 0 0 18px #fff;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.waterFeatTxt {
    writing-mode: vertical-lr;
    color: #999;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    margin-bottom: 2em;
    font-size: 0.9em;
}
.waterTit {
    font-size: 1.9vw;
    font-family: var(--main-font);
   font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 0.8em;
    padding-left: 1em;
    text-indent: -0.5em;
}
.feature-img-lft {
	
}
.tx-flex {
    text-align:center;
}

@media only screen and (max-width: 1200px) {
.waterMleftFeat {
    margin-right: -15vw;
	padding: 1em 2em 3em 2em;
}
.waterMrightFeat {
    margin-left: -9vw;
	padding: 1em 2em 3em 2em;
}
}
@media only screen and (max-width: 768px) {
.waterMrightFeat {
	padding:1.5em 1em;
	margin-left:0;	
}

.waterMleftFeat {
	padding:1.5em 1em;
	margin-right:0;	
}

.waterFeatTxt {
	writing-mode:horizontal-tb;
	margin-bottom:0.8em;
}

.waterTit {
	font-size:1.4em;
	line-height:1.2em;
	margin-bottom:0.8em;
	padding-left:1.2em;  
	text-indent:-0.5em; 
}

.tx-flex {
    text-align:left;
}
}






.bgWide {
	width:auto;
}
.f-wrap-AC-start {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center; 
	 width: 100%;
}
.f-item3-5-feature-img,.f-item3-5-feature-txt {
	box-sizing: border-box;
	width: 53%;
	margin-bottom:30px;
	flex-shrink: 2;
}
@media screen and (max-width: 1300px) {
.f-wrap-AC-start {
	 width: auto;
	 margin-right: auto;
}
.f-item3-5-feature-txt {
	width: 50vw;
	flex-shrink: 2;
}
.f-item3-5-feature-img {
	width: 50vw;
	flex-shrink: 2;
}
}
@media screen and (max-width: 768px) {

.f-item3-5-feature-img,.f-item3-5-feature-txt {
	width: 100%;
	 flex-shrink: 0;
}
}
@media screen and (max-width: 1600px) {
	.f-wrap-AC-start {
		justify-content: center;
	}
 	.feature-img img {
    	max-width: 100%;
    	width: 80%;
    	-ms-flex-negative: 0;
    	flex-shrink: 0;
    	margin-right: -6rem;
 } 
}

@media screen and (max-width: 768px) {
	.feature-img img {
    max-width: none;
    width: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: -6rem;
 }
}
.wrapper-wide {
	max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}
.res-mt-f {
	margin-top:20px;
}
@media screen and (max-width: 768px) {
	.wrapper-wide {
		width: 100%;
	}
	.res-mt-f {
			margin-top:0px;
	}
	.res-mt-f-2 {
	        margin-top:50px;
    }
	table.tbl-lo {
		width: 100%;
		table-layout: fixed;
		word-break: break-all;
		word-wrap: break-all;
	}
	.tbl-lo th {
		font-size:0.9em;
	}
	.th-01 {
		word-break: break-all;
				word-wrap: break-all;
	}
	.footDataArea {
    padding: 10px 0;
}
	.footAdress {
    width:100%;
}
}
@media screen and (max-width: 400px) {
	.wrap- {
		overflow-x: hidden !important;
    }
}


.tbl-1 td {
	text-align: center;
	vertical-align: middle;
}
.tbl-2 {
		font-size:0.9em !important;
}

.tbl-2 th {
	width:38%;
}




@media only screen and (max-width: 768px) {
.table-scroll {
    overflow-x: auto;
    width: 100%;
    border-right: 5px solid #ccc;
}
.table-scroll::-webkit-scrollbar {
    height: 5px;
}
.table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background:#CCC;
}
.table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background:#999;
}
.table-scroll table {
    table-layout: fixed;
    min-width: 100%;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    margin-bottom:0px;
}
.tbl-1 th {
	width:100px !important;
    min-width: 150px;
    display:table-cell;
    padding:1%;
    font-size:16px;
    border: 1px #ccc solid;
}
.table-scroll table th {
	width:150px !important;
    min-width: 150px;
    display:table-cell;
    padding:1%;
    font-size:16px;
    border: 1px #ccc solid;
}
.table-scroll table td {
    width: 90px;
    min-width: 130px;
    display:table-cell;
    font-size:16px;
    word-wrap: break-word;
    white-space:normal;
}
.table-scroll table th.th-01 {
    width:200px !important;
    min-width: 250px;
    display:table-cell;
    padding:1%;
    font-size:16px;
    border: 1px #ccc solid;
}
.table-scroll table td.td-01 {
    width: 90px;
    min-width: 130px;
    display:table-cell;
    font-size:12px;
    word-wrap: break-word;
    white-space:normal;
}

}

.h4-ttl {
	text-align:left;
	padding-left:20px;
	padding-bottom:5px;
	border-bottom:1px solid #222;
}
.h4-ttl:after {
    content: '';
	position: absolute;
	bottom: -0px;
	display: inline-block;
	width: 0px;
	height: 0px;
	left: 0%;
	transform: translateX(-50%);
	background-color: #ccc;
}


.flex-1col {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}
.flex-2col {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:5%;
}
.flex-2col > li{
  width:47.5%;
  margin:2% 0% 0 0%; 
}
.flex-2col > li:nth-of-type(odd){
  width:47.5%;
  margin:2% 0% 0 0%; 
}
.flex-2col > li:nth-of-type(even){
  width:47.5%;
  margin:2% 0 0 0%;
}
.flex-2col-start {
  display:flex;
  justify-content:start;
  align-items:start;
  flex-wrap:wrap;
  gap:5%;
}
.flex-2col-start > li{
  width:47.5%;
  margin:2% 0 0 0%; 
}
.flex-2col-start > li:nth-of-type(odd){
  width:47.5%;
  margin:2% 0% 0 0%; 
}
.flex-2col-start > li:nth-of-type(even){
  width:47.5%;
  margin:2% 0% 0 0%; 
}
.flex-list2 {
  width:17.5% !important;
  margin:0 0 0 0% !important;  
}
.flex-list3 {
  width:27.5% !important;
  margin:0 0 0 0% !important;   
}
.flex-list4 {
  width:37.5% !important;
  margin:0 0 0 0% !important;  
}
.flex-list5 {
  width:47.5% !important;
  margin:0% 1% 0 0% !important;  
}
.flex-list6 {
  width:57.5% !important;
  margin:0 0 0 0% !important;   
}
.flex-list7 {
  width:67.5% !important;
  margin:0 0 0 0% !important;  
}
.flex-list8 {
  width:77.5% !important;
  margin:0 0 0 0% !important;  
}
.flex-list9 {
  width:87.5% !important;
  margin:0 0 0 0% !important;  
}
.flex-3col {
  display:flex;
  justify-content:start;
  align-items:start;
  flex-wrap:wrap;
  gap:5%;
}
.flex-3col > li{
  width:30%;
  margin:2% 0 0 0%;
}
.flex-reverse {
	flex-direction: row-reverse; 
}
.flex-2col.flex-reverse > li:nth-of-type(odd){
  width:47.5%;
  margin:2% 0% 0 0%; 
}
.flex-2col.flex-reverse > li:nth-of-type(even){
  width:47.5%;
  margin:2% 0 0 0%;
}

@media only screen and (max-width: 768px) {
.flex-2col > li,.flex-2col-start > li{
  width:100% !important;
  margin:2% auto 8% !important; 
}
.flex-3col > li{
  width:100%;
  margin:2% auto 8% !important; 
}
.flex-list2,.flex-list3,.flex-list4,.flex-list5,.flex-list6,.flex-list7,.flex-list8,.flex-list9 {
  width:100% !important;
  margin:2% auto 8% !important;  
}
.flex-2col-start > li:nth-of-type(odd){
  margin:2% auto 8% !important;  
}

}
.th-02 {
	background:#a5cbec !important;
}
.th-03 {
	background:#e9bda3 !important;
}
#mail {
	margin-top:-110px;
	padding-top:110px;
}
.pc-disp {
    display:block;
}
.sp-disp {
    display:none; 
}
.res-mb-f {
	margin-bottom:70px;
}
@media only screen and (max-width: 768px) {
.pc-disp {
    display:none;
}
.sp-disp {
    display:block; 
}
.res-mb-f {
	margin-bottom:40px;
}
}
