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

:root {
	--basic-color2:#922d74;
}


/*===========================
box01
===========================*/

.imgshadow img{
	 box-shadow: 0 0 8px rgba(0,0,0,0.3);

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



/*===========================
title-box
===========================*/
.title-box{
  margin-bottom: 20px;
}

.title-box p span{
  background-color: var(--basic-color);
  padding: 5px 15px;
  color: #fff;

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

.title-box p:nth-child(2){
  color: var(--basic-color2);
  font-size: 2em;
  margin-top: 15px;
  line-height: 140%;
}

@media screen and (max-width: 768px) {
	.title-box p:nth-child(2){
    font-size: 1.3em;
  }
}

@media screen and (max-width: 600px) {
	.title-box{
    text-align: center;
    margin-bottom: 10px;
  }
}







/*===========================
a
===========================*/
a:hover img{
	cursor:pointer;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"; 
    -moz-opacity:0.7; 
    -khtml-opacity: 0.7; 
    opacity:0.7;
    zoom:1;
	
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}



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