#Contents {
	padding: 0;
	margin: 0;
}

img {
	width: 100%;
}

.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.fw {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.fnw {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.jcsb {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jcc {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jcfs {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.aic {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.aie {
	-webkit-box-align: end;
     -ms-flex-align: end;
        align-items: flex-end;
}

.bredlist.lp {
    margin: 60px auto 20px;
    width: 980px;
    font-size: 12px;
}

/* for pc */
@media only screen
and (min-device-width: 768px) {
	.sp_only {
		display: none;
	}
	
}


/* for tablet */
/* for tablet */
@media only screen
and (min-device-width: 561px)
and (max-device-width: 1200px)
and (-webkit-min-device-pixel-ratio: 1) {

	.bredlist.lp {
		margin: calc(20*(100vw/1200)) auto;
		max-width: 84rem;
		font-size: calc(12*(100vw/1200));
	}
	
}

/* for sp */
@media only screen
    and (max-device-width: 560px) {
	.lp {
		padding-bottom: 0;
	}

	.pc_only {
		display: none;
	}
	
	.bredlist.lp {
		line-height: calc(40 *(100vw / 750));
		font-size: calc(20 *(100vw / 750));
		margin: calc(25 *(100vw / 750)) auto;
		width: 92.592%;
		text-align: left;
		padding: 0;
	}

}

/************ fade **********/
.fade {
  -webkit-transition-duration: 2s;
  -o-transition-duration: 2s;
  transition-duration: 2s;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  display: block;
}

.fade.onView {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}