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

/* color:var(--basic-color); で利用 */
:root {
	--basic-color:#b7c82b;
}

/* color:var(--basic-color2); で利用 */
:root {
	--basic-color2:#fecb09;
}



/*===========================
box01
===========================*/
.box01 .in01{
	display: flex;
	border-bottom: #eeeeee solid 2px;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
	.box01 .in01{
		display: block !important;
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
}


.box01 .in01:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}


.box01 .st{
	background-color: var(--basic-color);
	width: 130px;
	height: 130px !important;
	text-align: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: relative;
}
@media screen and (max-width: 600px) {
	.box01 .st{
		width: 100px;
		height: 100px !important;
		margin: 0 auto 30px;
	}
}


.box01 .st .st-box{
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.box01 .st .st-box p{
	font-size: 3.5em;
	color: #fff;
	font-weight: bold;
}
@media screen and (max-width: 600px) {
	.box01 .st .st-box p{
		font-size: 2.5em;
	}
}


.box01 .st .title{
	font-size: 1.5em !important;
	margin-bottom: 15px;
	margin-top: -20%;
}
@media screen and (max-width: 600px) {
	.box01 .st .title{
		margin-bottom: 0;
		margin-top: -25%;
		font-size: 1.0em !important;
	}
}


.box01 .de01{
	padding: 0 10px 0;
	margin-left: 50px;
	box-sizing: border-box;
 width: 85%;
}
@media screen and (max-width: 768px) {
	.box01 .de01{
		width: 75%;
		margin: 0 0 0 auto;
	}
}
@media screen and (max-width: 600px) {
	.box01 .de01{
		width: 100%;
		margin: 0 !important;
	}
}


@media screen and (max-width: 600px) {
	.box01 .de01 .catch2{
		text-align: center;
		font-size: 1.5em;
	}
}


.box01 .contactBtnWrap{
	text-align: left;
}
@media screen and (max-width: 600px) {
	.box01 .contactBtnWrap{
		text-align: center;
	}
}


.box01 .contactBtnWrap .contactBtn{
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
	.box01 .contactBtnWrap .contactBtn{
		margin-bottom: 10px;
	}
	.box01 .contactBtnWrap .contactBtn:nth-child(n+3){
		padding-bottom: 0;
	}
}







/*===========================
table
===========================*/
@media screen and (min-width: 601px) {
 .table-r01 th{
  font-weight: normal;
  text-align: left;
  width: 150px;
  padding: 5px 0;
 }

 .table-r01 td{
  text-indent: -0.9em;
  padding: 5px 0 5px 1em;
 }

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


@media screen and (max-width: 600px) {
  .table-r01 th,
  .table-r01 td{
   display: block;
   width: 100%;
  }

  .table-r01 th{
  font-weight: bold;
  text-align: left;
  padding-bottom: 0 !important;
 }
 .table-r01 th::after{
  content: ":";
  padding-left: 10px;
 }

 .table-r01 td{
  padding-bottom: 10px;
 }
}






/*===========================
title-af-none
===========================*/
.title-af-none{
	text-shadow: none;
}
.title-af-none:after{
	content: none;
}


/*===========================
border
===========================*/
.border-b01{
	border-bottom: 1px dotted #9b9b9b;
	padding-bottom: 15px;
}


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


/*===========================
ol
===========================*/
ol li,
ol li.txtIconPoint{
	display: list-item !important;
	list-style-type: decimal;
}


/*===========================
wf
===========================*/
.wf-t-all ,ul.wf-t-all {
	width: fit-content;
	margin: auto;
}

@media screen and (min-width: 769px) {
	ul.wf-t,	ol.wf-t{
		width: fit-content;
		margin: auto;
	}
}


@media screen and (min-width: 601px) {
	ul.wf-pcONtabletONspOFF {
		width: fit-content !important;
		margin: auto !important;
	}
}


/*===========================
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;}
	.pcONtabletOFFspON{display: none;}
}

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