@charset "utf-8";
/*===========================
add
===========================*/
:root {
	--basic-color:#58a91d;
}




/*===========================
box01
===========================*/
.box01{
 display: flex;
 width: 70%;
 margin: 0 auto;
}
@media screen and (max-width: 768px) {
 .box01{
  width: 100%;
 }
}
@media screen and (max-width: 600px) {
 .box01{
  display: inline-block;
 }
}


.box01 .in01{
 width: 30%;
}
@media screen and (max-width: 600px) {
 .box01 .in01{
  width: 100%;
 }
}

.box01 .in01 p{
 background-color: #c2c2c2;
 text-align: center;
 padding: 30px;
 font-size: 1.3em;
 -webkit-border-radius: 10px;
 -moz-border-radius: 10px;
 border-radius: 10px;
 border: 1px solid #a7a7a7;
}

.box01 .subm{
 display: flex;
}

.box01 .triangle-right{
 width: 10%;
 padding-left: 5%;
 margin-top: 22px;
}

.box01 .triangle-right::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 1em 0 0;
  border: 20px solid transparent;
  border-right: 0 solid transparent;
}

.box01 .sub01 .triangle-right::before{
 border-left: 30px solid var(--basic-color);
}

.box01 .sub02 .triangle-right::before{
 border-left: 30px solid #754e29;
}

@media screen and (max-width: 600px) {
 .box01 .triangle-right{
  display: none;
 }
}


@media screen and (min-width: 601px) {
 .box01 .arrow-bottom{
  display: none;
 }
}
@media screen and (max-width: 600px) {
 .box01 .arrow-bottom{
  display: flex;
  margin: 20px 0 15px;
 }

 .box01 .triangle{
  width: 50%;
  text-align: center;
 }

 .triangle::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 1em 0 0;
  border: 20px solid transparent;
  border-bottom: 0 solid transparent;
}

 .box01 .triangle-bottom::before{
  border-top: 20px solid var(--basic-color);
 }

 .box01 .triangle-bottom02::before{
  border-top: 20px solid #754e29;
 }
}


.box01 .subm .enc{
 border: 1px solid #a7a7a7;
 width: 80%;
}
@media screen and (max-width: 600px) {
 .box01 .subm .enc{
  width: 100%;
 }
}

.box01 .subm .enc h3{
 text-shadow: none;
 font-size: 1.3em;
 padding: 8px 5px;
 margin-bottom: 10px;
 color: #fff;
}
.box01 .subm .enc h3::after{
 background: none;
}

.box01 .sub01 .enc h3{
  background-color: var(--basic-color);
}

.box01 .sub02 .enc h3{
  background-color: #754e29;
}


.box01 .subm .enc ul{
 padding: 0 20px 10px;
}

.box01 .sub01{
 margin-bottom: 30px;
}

.box01 .sub01 ul.liCircle li::before {
	background-color:var(--basic-color);
}

.box01 .sub02 ul.liCircle li::before {
	background-color:#754e29;
}



/*===========================
box02
===========================*/
.box02 .enc{
 border: 1px solid #a7a7a7;
 width: 100%;
}
@media screen and (max-width: 600px) {
 .box02 .enc{
  width: 100%;
 }
}

.box02 .enc h3{
 text-shadow: none;
 font-size: 1.3em;
 padding: 8px 5px;
 margin-bottom: 10px;
 color: #fff;
}
.box02 .enc h3::after{
 background: none;
}

.box02 .enc01 h3{
  background-color: var(--basic-color);
}
.box02 .enc02 h3{
  background-color: #c51717;
}
.box02 .enc03 h3{
  background-color: #d6d31f;
}
.box02 .enc04 h3{
  background-color: #204e94;
}

.box02 .enc ul{
 padding: 0 20px 10px;
}

.box02 .enc01 ul.liCircle li::before {
	background-color:var(--basic-color);
}
.box02 .enc02 ul.liCircle li::before {
	background-color:#c51717;
}
.box02 .enc03 ul.liCircle li::before {
	background-color:#d6d31f;
}
.box02 .enc04 ul.liCircle li::before {
	background-color:#204e94;
}




/*===========================
tb01
===========================*/
.tb01 th{
 font-weight: normal;
 text-align: left;
}

/*===========================
tb02
===========================*/
.tb02{
 margin: 0 auto;
}

.tb02 th{
 font-weight: normal;
 text-align: left;
 width: 90px;
}

.tb02 td{
 padding-left:1em;
 text-indent: -1em;
}

.tb02 td::before{
 content: ":";
 padding-right: 10px;
}


/*===========================
tb03
===========================*/
.tb03{
 margin: 0 auto;
}

.tb03 th{
 font-weight: normal;
 text-align: left;
 padding-right: 10px;
}

.tb03 td::before{
 content: ":";
 padding-right: 10px;
}


/*===========================
width
===========================*/
@media screen and (max-width: 768px) {
	.w100Tablet{
		width: 100% !important;
		box-sizing: border-box;
	}

	.w80Tablet{
		width: 80% !important;
		box-sizing: border-box;
	}

	.w50Tablet{
		width: 50% !important;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 600px) {
	.w100sp,
	.w80Tablet{
		width: 100% !important;
		box-sizing: border-box;
	}

	.w70sp{
		width: 70% !important;
		box-sizing: border-box;
	}

	.width-sp-50 img{
		width: 50% !important;
	}
}


/*===========================
font
===========================*/
.fw-b{font-weight: bold;}


/*===========================
onOff
===========================*/
.pcOFFtabletONspOFF{display: none !important;}
.pcOFFtabletOFFspON{display: none;}

@media screen and (min-width: 769px) {
	.pcOFFtabletONspON{display: none !important;}
}

@media screen and (max-width: 768px) {
	.pcOFFtabletONspOFF{display: block !important;}
	.pcOFFtabletOFFspON{display: none;}
	.pcONtabletOFFspOFF{display: none !important;}
}

@media screen and (max-width: 600px) {
	.pcOFFtabletONspOFF{display: none !important;}
	.pcOFFtabletOFFspON{display: block;}
	.pcONtabletONspOFF{display: none;}
}
