@charset "utf-8";
/* 
	common.css 
	2022/08/17 k.Hamana		全体に関するスタイル
*/


:root {
	/* Theme Color */
	--site-color:#82b887;
	--site-light-color:#8ac590;
	--site-background-color:#82b887;

	/* Footer Image */
	--footer-image:  #ffffff url("../fujitora/images/footer.gif") no-repeat;
	--footer-image-short: #ffffff url("../fujitora/images/footer_short.gif") no-repeat;
	--footer-color: #666;
	--jusyo-padding: 70px; 
	--jusyo-padding-small: 55px; 
}

/* 紹介文 start */
.list_gaiyo {
	width:100%;
	border: 4px solid #388756;
	background: #73B57B;
	margin-top: 20px;
	padding: 0.5rem 1.5rem 1.5rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	align-items: center;
}

.list_gaiyo li {
	position: relative;
	padding-left: 2rem;
	margin-top: 1rem;
	line-height: 0.5rem;
	color: #ffffff;
	font-weight: bold;
	font-size: 20px;
	width: 100%;
}
.list_gaiyo li:before {
	content: "★";
	position: absolute;
	color: #ffffff;
	font-size: 20px;
	left: 0;
}
/* 紹介文 end */

/*
MEDIUM SIZE以上
================================================ */
@media screen and (min-width: 600px){
	/* 紹介文 start */
	.list_gaiyo {
		width:100%;
		border: 4px solid #388756;
		background: #73B57B;
		padding: 0.5rem 1.5rem 1.5rem 1.5rem;
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		justify-content: center;
		align-items: center;
	}

	.list_gaiyo li {
		position: relative;
		padding-left: 2rem;
		margin-top: 1rem;
		line-height: 0.5rem;
		color: #ffffff;
		font-weight: bold;
		font-size: 20px;
		width: 50%;
	}
	.list_gaiyo li:before {
		content: "★";
		position: absolute;
		color: #ffffff;
		font-size: 20px;
		left: 0;
	}
	/* 紹介文 end */

}