@charset "UTF-8";

/* ページタイトル */
#page-title-sec .container .contents .inner-img {
	background-image: url(../img/sushi/pagetop.jpg);
	background-position: 50% 50%;
}


/* 季節のお寿司 */
#list-sec .contents-pickup {
	background-color: #f5d22e;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	position: relative;
	z-index: 1;
}

#list-sec .contents-pickup::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/common/pattern-stripe.svg);
	background-size: 80px;
	opacity: 0.09;
	z-index: 2;
}

#list-sec .contents-pickup .inner {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 100px 0;
	position: relative;
	z-index: 3;
}
/* ブレイクポイント1160 */
@media screen and (max-width: 1160px) {
	#list-sec .contents-pickup .inner {
		width: 90%;
	}
}

#list-sec .contents-pickup .list {
	margin: 0 -1.6%;
	display: flex;
	align-items: stretch;
}

#list-sec .contents-pickup .item {
	width: 30.13%;
	margin: 0 1.6%;
	overflow: hidden;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	box-shadow: 0 0 10px rgba(153, 153, 153, 0.6);
	background-color: #3b7d72;
}

#list-sec .contents-pickup .item figure {
	width: 100%;
	height: 240px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

#list-sec .contents-pickup .item .item-txt {
	padding: 30px;
	color: #ffffff;
}

#list-sec .contents-pickup .item .item-txt .ttl {
	font-size: 25px;
	line-height: 1.4;
	font-weight: 500;
	text-align: justify;
	height: 65px;
	display: flex;
	align-items: center;
}

#list-sec .contents-pickup .item .item-txt .comment {
	text-align: justify;
	line-height: 1.8;
	margin-top: 15px;
}

#list-sec .contents-list {
	margin: 100px -1.6% 0;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}

#list-sec .contents-list .item {
	width: 30.13%;
	margin: 0 1.6% 60px;
}

#list-sec .contents-list .item figure {
	width: 100%;
	height: 240px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	overflow: hidden;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

#list-sec .contents-list .item .item-txt {
	padding: 0 10px;
	margin-top: 20px;
}

#list-sec .contents-list .item .item-txt .ttl {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 500;
	text-align: justify;
	color: #3b7d72;
}

#list-sec .contents-list .item .item-txt .comment {
	text-align: justify;
	line-height: 1.8;
	margin-top: 10px;
}

#list-sec .caution {
	margin-top: 50px;
	background-color: #f5f5f5;
	padding: 20px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

#list-sec .caution ul {
	display: flex;
	justify-content: center;
}

#list-sec .caution ul li {
	text-indent: -1em;
	padding-left: 1em;
	margin: 0 5px;
}


/* 定番のお寿司ページへのリンク */
#link-area a {
	width: 100%;
	max-width: 700px;
	overflow: hidden;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 0 10px rgba(153, 153, 153, 0.6);
	background-color: #4d2b18;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

#link-area a figure {
	width: 57%;
	min-height: 200px;
	overflow: hidden;
}

#link-area a figure div {
	width: 100%;
	height: 100%;
	background-image: url(../img/sushi/link-standard-S.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 50%;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

#link-area a:hover figure div {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}

#link-area a .comment {
	width: 43%;
	padding: 30px;
	text-align: justify;
	line-height: 1.8;
	display: flex;
	align-items: center;
}



/* スマートフォン用 - ブレイクポイント768　*/
@media screen and (max-width: 768px) {

	/* 季節のお寿司 */
	#list-sec .contents-pickup .inner {
		padding: 80px 0;
	}

	#list-sec .contents-pickup .list {
		display: block;
		margin: 0 auto;
	}

	#list-sec .contents-pickup .item {
		width: 100%;
		max-width: 450px;
		margin: 0 auto 20px;
	}

	#list-sec .contents-pickup .item figure {
		width: 100%;
		height: auto;
		aspect-ratio: 4/3;
		max-height: 240px;
	}

	#list-sec .contents-pickup .item .item-txt {
		padding: 20px;
	}

	#list-sec .contents-pickup .item .item-txt .ttl {
		font-size: 20px;
		height: auto;
	}

	#list-sec .contents-pickup .item .item-txt .comment {
		margin-top: 10px;
	}

	#list-sec .contents-list {
		margin: 80px -2% 0;
	}

	#list-sec .contents-list .item {
		width: 46%;
		margin: 0 2% 50px;
	}

	#list-sec .contents-list .item figure {
		width: 100%;
		height: auto;
		aspect-ratio: 4/3;
		max-height: 240px;
	}

	#list-sec .contents-list .item .item-txt {
		padding: 0 5px;
		margin-top: 10px;
	}

	#list-sec .contents-list .item .item-txt .ttl {
		font-size: 16px;
	}

	#list-sec .contents-list .item .item-txt .comment {
		margin-top: 5px;
	}

	#list-sec .caution {
		margin-top: 30px;
	}

	#list-sec .caution ul {
		display: block;
	}

	#list-sec .caution ul li {
		margin: 0 auto;
	}


	/* 定番のお寿司ページへのリンク */
	#link-area a {
		max-width: 450px;
		display: block;
	}

	#link-area a figure {
		width: 100%;
		min-height: 150px;
	}

	#link-area a figure div {
		aspect-ratio: 2/1;
		min-height: 150px;
	}

	#link-area a .comment {
		width: 100%;
		padding: 20px;
	}

}