@charset "shift_jis";
body.nosc{
	/*overflow-y: auto;*/
}

h1{
	display: inline-flex;
	align-items: center;
	gap:15px;
}

h1 img{
	height: 1.3em;
	width:auto;
}

section#jiseki{
	width:100%;
	display: flex;
	justify-content:space-around;
	flex-wrap: wrap;
	padding:150px 0;
	gap:20px;
}

#jiseki::after{
	content:" ";
	width:380px;
	display: block;
	background-image: url("img/back.jpg");
	background-position: right bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
}

#jiseki .item{
	width:380px;
	display: flex;
	flex-direction: column;
	background-color: #F3F3F3;
	box-shadow:2px 1px 3px 0px #b7b7b7;
	border-top:1px solid #E4E4E4;
	border-left:1px solid #E4E4E4;
	border-radius: 5px;
	text-decoration: none;
	color: inherit;
}

#jiseki .item .photo{
	width:100%;
	aspect-ratio: 16 / 9;
	line-height: 0;
	overflow: hidden;
	background-color: #CCE6DB;
	
}

#jiseki .item .photo img{
	width:100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px 5px 0 0;
}

#jiseki .text{
	width:100%;
	display: flex;
	font-family: 'Noto Serif JP',"HG–¾’©E","Ÿà–¾’©", YuMincho, "ƒqƒ‰ƒMƒm–¾’© ProN W3", "Hiragino Mincho ProN",  "‚l‚r ‚o–¾’©", serif;
	font-size:20px;
	font-weight: 800;
	line-height: 50px;
	border-radius: 0 0 5px 5px;
	gap:10px;
}


#jiseki .text::before{
	font: var(--fa-font-solid);
	content:'\f0da';
	width:17px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color:#98CDB8;
	padding:10px 0;
	color:#fff;
	font-size:0.8rem;
	line-height: 1;
	transition-duration: 0.3s;
}

/*------------------------------

	ƒŒƒXƒ|ƒ“ƒVƒu

------------------------------*/
@media screen and (min-width: 981px){
	#jiseki .item:hover .photo img{
		opacity: 0.5;
		transform: scale(1.05);
		transition-duration: 0.3s;
	}
	
	#jiseki .item:hover .text::before{
		background-color:#5DB08F;
	}
}

@media screen and (max-width: 980px){
	section#jiseki{
		justify-content: center;
	}
	
	#jiseki .item{
		width:min(100%,300px);
	}
}

@media screen and (max-width: 430px){
	section#jiseki{
		padding:50px 0;
	}
	
	#jiseki .item{
		width:100%;
	}
}