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



/*===========================
box01
===========================*/
.box01 .f-item1-3,
.box01 .f-item1-3-t2{
  background-color: var(--basic-color);
  color: #fff;
  padding: 10px;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

@media screen and (min-width: 769px) {
  .box01 .f-item1-3,
  .box01 .f-item1-3-t2{
   
  }

  .box01 .f-item1-3:nth-child(3n),
  .box01 .f-item1-3:last-child,
  .box01 .f-item1-3-t2:nth-child(3n),
  .box01 .f-item1-3-t2:last-child{
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 600px) {
  .box01 .f-item1-3,
  .box01 .f-item1-3-t2{
    margin-bottom: 10px;
  }
}






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


/*===========================
ul
===========================*/
/*背景色・白文字リスト(flex)-----------------------*/
ul.list-bk01{
  display: flex;
  flex-wrap: wrap;
}

ul.list-bk01 li{
  background-color: var(--basic-color);
  color: #fff;
  margin-bottom: 10px;
  padding: 5px 10px;
  text-align: center;
  box-sizing: border-box;
  display:flex;
	justify-content:center;
	align-items:center;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}


@media screen and (min-width: 769px) {
  ul.list-bk01 li{
    width: 48%;
  }

  ul.list-bk01 li:nth-child(odd){
    margin-right: 4%;
  }
}

@media screen and (max-width: 768px) {
  ul.list-bk01 li{
    width: 100%;
  }
}

/*背景色・白文字リスト(flex vol2)-----------------------*/
ul.list-bk01-v2{
  display: flex;
  flex-wrap: wrap;
}

ul.list-bk01-v2 li{
  background-color: var(--basic-color);
  color: #fff;
  margin-bottom: 10px;
  padding: 5px 10px;
  text-align: center;
  box-sizing: border-box;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}


@media screen and (min-width: 769px) {
  ul.list-bk01-v2 li{
    width: 48%;
  }

  ul.list-bk01-v2 li:nth-child(odd){
    margin-right: 4%;
  }
}

@media screen and (max-width: 768px) {
  ul.list-bk01-v2 li{
    width: 100%;
  }
}


/*背景色・白文字リスト(normal)-----------------------*/
ul.list-bk01-n li{
  background-color: var(--basic-color);
  color: #fff;
  margin-bottom: 10px;
  padding: 5px 10px;
  text-align: center;
  box-sizing: border-box;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}







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

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

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

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

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

 .w90sp{
		width: 90% !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) {
	p.wf-pcONspOFF,
  ul.wf-pcONspOFF {
		width: fit-content !important;
		margin: auto !important;
	}
}

.wf-t-right ,ul.wf-t-right {
	width: fit-content;
	margin: auto 0 auto auto;
}