@charset "UTF-8";
/* CSS Document */

/* ========================================
   オリジナルワインラベル
======================================== */

#owl_wrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

#owl_wrap *,
#owl_wrap *::before,
#owl_wrap *::after {
	box-sizing: border-box;
}


/* ========================================
   タイトル部分
======================================== */

#owl_title {
	margin-bottom: 100px;
	text-align: center;
}

#owl_title h2 {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 2px;
}

#owl_title h1 {
	margin: 0;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 2px;
}

#owl_title p {
	max-width: 850px;
	margin: 25px auto 100px;
	line-height: 2;
}

#owl_title > div {
	width: 100%;
}
#owl_title > div:last-of-type {
	width: 50%;
	max-width: 320px;
	margin: 0 auto;
}
#owl_title > div img {
	display: block;
	width: 100%;
	max-width: 700px;
	height: auto;
	margin: 0 auto;
}


/* ========================================
   ラベルデザイン一覧
======================================== */

#owl_labels {
	width: 100%;
}

#owl_labels > section {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 12px;
	margin-bottom: 100px;
}

/* カテゴリー見出し */
#owl_labels > section > h3 {
	grid-column: 1 / -1;
	margin: 0 0 10px;
	padding-bottom: 5px;
	font-size: 2em;
	font-weight: 400;
	color: #8b6332;
	text-align: center;
	border-bottom: 1px solid #8b6332;
}

/* 各ラベル */
#owl_labels > section > div {
	min-width: 0;
	text-align: center;
}

#owl_labels > section a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

#owl_labels > section a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

#owl_labels > section a:hover img {
	transform: scale(1.03);
}

#owl_labels > section > div > p {
	color: #8f652b;
	margin: 8px 0 0;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-align: center;
}
/* ========================================
   オリジナルラベル 注意事項
======================================== */

#owl_caution {
	max-width: 1000px;
	margin: 0 auto 100px;
	padding: 25px 20px;
	background: #f8f4ee;
	border: 1px solid #d8c5ab;
	border-left: 5px solid #8b6332;
	box-sizing: border-box;
}

#owl_caution p {
	margin: 0 0 15px;
	line-height: 1.9;
}

#owl_caution p:last-child {
	margin-bottom: 0;
}

#owl_caution > p:first-child {
	font-weight: bold;
	color: #8b6332;
}

#owl_caution ul {
	margin: 15px 0 25px;
	padding: 15px 20px;
	background: #fff;
	border: 1px solid #e5d8c7;
	list-style: none;
}

#owl_caution li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 1.2em;
	line-height: 1.8;
}

#owl_caution li:last-child {
	margin-bottom: 0;
}

#owl_caution li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	color: #8b6332;
	font-weight: bold;
}

#owl_caution > p:nth-of-type(2) {
	font-weight: bold;
	color: #8b6332;
}

#owl_caution > p:last-child {
	margin-top: 20px;
	padding-top: 15px;
	color: #c40000;
	border-top: 1px solid #d8c5ab;
}

/* ========================================
   カート部分
======================================== */

#owl_wrap > .wrapping__contents {
	margin-top: 20px;
	margin-bottom: 100px;
}


/* ========================================
   375px以上
======================================== */

@media screen and (min-width: 375px) {

	#owl_wrap {
		padding-right: 20px;
		padding-left: 20px;
	}

	#owl_labels > section {
		gap: 25px 15px;
	}

}


/* ========================================
   500px以上
======================================== */

@media screen and (min-width: 500px) {

	#owl_labels > section {
		gap: 30px 20px;
	}

	#owl_title h2 {
		font-size: 32px;
	}

	#owl_title h1 {
		font-size: 50px;
	}

	#owl_caution {
		padding: 30px 25px;
	}

	#owl_caution ul {
		padding: 20px 25px;
	}

}

/* ========================================
   600px以上：3列
======================================== */

@media screen and (min-width: 600px) {

	#owl_labels > section {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

}


/* ========================================
   768px以上
======================================== */

@media screen and (min-width: 768px) {

	#owl_wrap {
		padding-right: 30px;
		padding-left: 30px;
	}

	#owl_labels > section {
		gap: 35px 25px;
	}

	#owl_title h2 {
		font-size: 48px;
	}

	#owl_title h1 {
		font-size: 72px;
	}
	#owl_caution {
		padding: 35px 40px;
	}
}


/* ========================================
   960px以上：4列
======================================== */

@media screen and (min-width: 960px) {

	#owl_labels > section {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 40px 30px;
	}

}