/* CSS Document */
.donationBox {
	background-color: #fff;
	padding: 20px;
	border: 1px solid #000;
	width: 1040px;
	margin: 0 auto 20px;
	text-align: left;
	height: 100px;
}
.donationflexBox {
	display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
}
.donationBtn {
	padding: 16px 30px;
	background: #03B74F;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.1em;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s, background 0.2s;
	white-space: nowrap;
	display: inline-block;
}
.btnWrapper {
	text-align: right;
}
.btnBox{
	display: inline-block;
	width: 300px;
}
.catchCopy{
	line-height: 1em;
	text-align: center;
	width: 650px;
}

.catchCopy span{
	line-height: 1.8em;
    letter-spacing: 1px;
    font-size: 50%;
    font-weight: normal;
}


@media screen and (max-width: 480px) {
	.donationBox {
		width: auto;
		height: auto;
		margin: 0 auto 10px;
		padding: 10px;
	}
	.donationflexBox {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0;
	}
	.btnWrapper {
		text-align: center;
	}

	.donationBtn {
		font-size: 1em;
		padding: 6px 24px;
	}
	.catchCopy span {
		line-height: 1em;
		font-size: 80%;
	}
	.btnBox {
		display: contents;
	}
}