/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 21 2026 | 05:47:47 */
/*
    一般社団法人ソーシャルデザインリガレッセ
    箱要素
*/

/*
    枠線のついた箱
*/
.border-box {
	margin: 20px 0px;
    padding: 20px;
    border: 1px solid #127c6f;
}

/*
    影のついた箱
*/
.shadow-box {
	display: flex;
	justify-content: center;
	width: 80%;
	margin: 40px 120px;
    padding: 20px;
    box-shadow: 10px 5px 5px rgb(0, 0, 0, 0.1);
}

@media screen and (max-width:768px) {
	.shadow-box {
		width: 90%;
		margin: 0px;
	}
}