@charset "utf-8";
/*===========================
add
===========================*/
/* color:var(--basic-color); で利用 */ :root {
    --basic-color: #f2404d;
}



/*===========================
li-btn
===========================*/
.li-btn{
 display: flex;
 flex-wrap: wrap;
}

.li-btn li{
 width: 19%;
 text-align: center;
 margin-right: 1.2%;
}

.li-btn li:last-child{
 margin-right: 0;
}

.li-btn li a{
 background-color: var(--basic-color);
 text-decoration: none;
 color: #fff;
 display: block;
 padding: 8px;
 border-radius: 8px;
 transition: 0.3s;
}

.li-btn li a:hover{
 opacity: 0.5;
}


@media screen and (max-width: 600px) {
 .li-btn li{
  width: 100%;
  text-align: center;
  margin-right: 0;
  margin-bottom: 10px;
 }

 .li-btn li:last-child{
  margin-bottom: 0;
 }

}





/*===========================
width
===========================*/
.w150px{
 width: 150px;
}

.w150px-center{
 width: 150px;
 margin: 0 auto;
}

.w200px{
 width: 200px;
}


.w100p,
li.w100p{
	width: 100% !important;
	display: block;
}


@media screen and (max-width: 768px) {
	.w100Tablet{
		width: 100% !important;
		box-sizing: border-box;
	}
	
	.w90Tablet{
		width: 90% !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,
	.w90Tablet,
	.w80Tablet,
	.w50Tablet{
		width: 100% !important;
		box-sizing: border-box;
	}

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

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



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

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


