@charset "utf-8";


.section {
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
}

.crowdfundingTextBox {
	margin-bottom: 50px;
}

.crowdfundingTextBox p,
.crowdfundingTextBox ul {
	margin-bottom: 20px;
}

.crowdfundingTextBox ul li {
	list-style: inside disc;
}

.supporterTitle {
}

.supporterList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.supporterList li {
	width: 100%;
	font-size: 1.4rem;
	text-align: justify;
	letter-spacing: 0.05em;
	padding: 10px 0;
	border-bottom: rgba(0, 0, 0, 0.3) dotted 1px;
}



/* ============================================================================================== */
/* Media query                                                                                    */
/* ============================================================================================== */

@media screen and (min-width: 400px) {

}

/* ---------------------------------------------------------------------------------------------- */
/* Tablet                                                                                         */

@media screen and (min-width: 541px) {

}

/* iPad (768px) */

@media screen and (min-width: 768px) {
	
	.supporterList li {
		width: calc( (100% - 20px) / 2 );
		margin-right: 10px;
		padding: 20px 0;
	}
	
	.supporterList li:nth-child(2n) {
		margin-right: 0;
	}
	
}

/* ---------------------------------------------------------------------------------------------- */
/* Desktop                                                                                        */

@media screen and (min-width: 960px) {
	
	.supporterList li {
		width: calc( (100% - 20px) / 3 );
		margin-right: 10px;
		font-size: 1.4rem;
		text-align: justify;
		letter-spacing: 0.05em;
		padding: 20px 0;
		border-bottom: rgba(0, 0, 0, 0.3) dotted 1px;
	}
	
	.supporterList li:nth-child(2n) {
		margin-right: 10px;
	}
	
	.supporterList li:nth-child(3n) {
		margin-right: 0;
	}

}

@media screen and (min-width: 1100px) {

}











