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

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



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


/*===========================
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;
	}
}



/*===========================
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;
	}
}





/*===========================
tb01
===========================*/
.tb01 th{
 text-align: left;
 padding-right: 10px;
}
@media screen and (max-width: 600px) {
 .tb01 th{
  display: block;
  width: 100%;
  padding: 0 !important;
 }

 .tb01 th::after{
  content: ":";
  margin-left: 5px;
 }
}

@media screen and (min-width: 601px) {
 .tb01 td{
  padding-left: 10px;
  text-indent: -16px;
 }
}
@media screen and (max-width: 600px) {
 .tb01 td{
  display: block;
  width: 100%;
 }
}

@media screen and (min-width: 601px) {
 .tb01 td::before{
  content: ":";
  margin-right: 10px;
  font-weight: bold;
 }
}