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

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

/* 基本カラー  */

.fcBasic {
	color:#ef6c70;
}


/* table  */ 

table.table2 th {
	background-color:var(--basic-color-sb02);
	color:#fff;
}

table.table3 th {
	background-color:var(--basic-color);
	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 {
	font-weight: 600;
	background:linear-gradient(to bottom, var(--basic-color),var(--basic-color-sb02));
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catch2 {
	font-weight: 600;
	background:linear-gradient(to bottom, var(--basic-color),var(--basic-color-sb02));
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catch3 {
	font-weight: 600;
	background:linear-gradient(to bottom, var(--basic-color),var(--basic-color-sb02));
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*circle-number*/

.circle-big {
	color:#EEA011;
}

/* 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:#EE7E3C;
}

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;

}


}
.tx-left {
	 text-align: left !important;
}

dl.d-list {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  box-sizing:border-box;
}
dl.d-list dt {
  flex-basis: 50%;
  text-align:left;
  padding:0.5em 0.5em 0.5em 1.2em;
  box-sizing:border-box;
  background:#f9f9f;
  border-bottom:1px solid #f4f1f1;
  position:relative;
}
dl.d-list dt:before  {
	position: absolute;
    content: '';
    width: 10px;
    height: 10px;
	background:var(--basic-color);
    left: 3rem;
    margin-left: -3rem;
    top: 20px;
    padding: 0;
    border-radius: 5px;
}

dl.d-list dt.dt-n {
  flex-basis: 50%;
}
dl.d-list dd {
  flex-basis: 50%;
  text-align:center;
  padding:0.5em;
  box-sizing:border-box;
  border-bottom:1px solid #e9e9e9;
}
.b-list {
  display: flex;
  flex-flow: row wrap;
	justify-content: space-between;
  width: 100%;
  box-sizing:border-box;
}
.b-list p {
	width:48%;
}
.p-ttl {
	font-size:1.3em;
	font-weight:600;
	text-align:center;
	border-bottom:1px solid #b0b0b0;
	padding-bottom:0.3em;
}
.p-ttl02 {
	font-size:1.3em;
	padding-left:0.1em;
	font-weight:600;
	text-align:left;
	border-bottom:1px solid #b0b0b0;
	padding-bottom:0.1em;
}
.line-hf {
	line-height:2;
}

@media screen and (max-width: 768px) {
.p-ttl,.p-ttl02 {
	font-size:1.1em;
}
dl.d-list dt.dt-n {
  flex-basis: 100%;
}
.g-m {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; 
}

.g-m iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
 dl.d-list {
   flex-flow: column;
 }
	.b-list p {
	  width:100%;
		margin: 10px auto;
	}
	dl.d-list dd {
    text-align:right;
  }
}
.pc-disp {
    display:block;
}
.sp-disp {
    display:none; 
}
@media only screen and (max-width: 768px) {
.pc-disp {
    display:none;
}
.sp-disp {
    display:block; 
}
}

.img-nobd {
    border-radius:0px;	
}
.img-bd-bttl {
    border-radius:0px 0px 20px 20px;
}
.img-f {
	width:40%;
	height:auto;
	border-radius:0px;
}
.box-point {
	 background: #fdfdfd;
	 box-sizing:border-box;
	 padding:1.0em;
	 border-radius:20px;

}
.circle-p-rel {
    position: relative;
}
.circle-p {
    color: var(--basic-color);
	  font-weight: 600;
    padding-top: 2em;
    font-size: 1.3em;
}
.circle-p::before {
    position: absolute;
    content: '';
    width: 5.4rem;
    height: 5.4rem;
    left: 10%;
    margin-left: -2.7rem;
    top: -2.5rem;
    border-radius: 2.7rem;
	  border:1px solid var(--basic-color);
    color: var(--basic-color);
}
.circle-p.no1::before {
    content: '1';
    font-size: 1.6em;
	  font-weight: bold;
    padding: 0.7em 1em 0;
    line-height: 1;
    box-sizing: border-box;
}
.circle-p.no2::before {
    content: '2';
    font-size: 1.6em;
	  font-weight: bold;
    padding: 0.7em 1em 0;
    line-height: 1;
    box-sizing: border-box;
}
.circle-p.no3::before {
    content: '3';
    font-size: 1.6em;
	  font-weight: bold;
    padding: 0.7em 1em 0;
    line-height: 1;
    box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
.circle-p {
    padding-top: 2em;
    font-size: 1.2em;
}
.circle-p.no1::before,.circle-p.no2::before,.circle-p.no3::before {
    font-size: 1.6em;
    font-weight: bold;
    padding: 0.5em 0.9em 0.7em;
	}
	.circle-p::before {
    width: 4.5rem;
    height: 4.5rem;
    left: 9%;
    margin-left: -1.5rem;
    top: -1.7rem;
    border-radius: 2.8rem;
}
}
#ancho01,#ancho02 {
	margin-top:-110px;
	padding-top:110px;
}
a {
	text-decoration:none;
}
a .box-ttl {
	text-decoration:none;
}
.box-wrap:hover {
    opacity:0.9;
}
.box-h img:hover {
  transform: scale(1.05, 1.05);
}
.box-h {
  position: relative;
  width: 517px;
  height: 292px;
  overflow: hidden;
  z-index:2;
}
.box-h  img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.5s;
  
}
.box-h::before{
    content: "VIEW";
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,.6);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease-in-out;
	z-index:10;
}
.box-h:hover::before{
    opacity: 1;
}
@media only screen and (max-width: 768px) {
.box-h {
  position: relative;
  width: 100%;
  height: auto;
  }
}