@charset "utf-8";
/*==================================================
	【サブ】ページ固有のスタイル
==================================================*/
#product .msg .fm {
	font-size: 33px;
	margin-bottom: 50px;
}
#product .box {
	background: #fff;
	margin-bottom: 80px;
}
#product .box:last-of-type {
	margin-bottom: 0;
}
#product .box .ttl {
	color: #fff;
	background: var(--color-primary);
	font-size: 52px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px 21px 30px;
}
#product .box .ttl .label {
	display: flex;
	align-items: center;
}
#product .box .ttl .label span {
	display: inline-block;
	background: var(--color-red);
	font-size: 33px;
	border-radius: 10px;
	padding: 0 20px;
}
#product .box .ttl .label img {
	margin: 0 20px;
}
#product .box .detail {
	padding: 50px;
	display: flex;
	justify-content: space-between;
}
#product .box .detail .img img {
	border: 1px solid #ccc;
	padding: 10px;
}
#product .box .detail .info {
	width: 580px;
}
#product .box .detail .info h4 {
	font-size: 45px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 20px;
}
#product .box .detail .info h5 {
	font-size: 25px;
	margin-bottom: 30px;
}
#product .box .detail .info table tr {
	border-top: 1px solid #ccc;
}
#product .box .detail .info table tr:last-of-type {
	border-bottom: 1px solid #ccc;
}
#product .box .detail .info table tr th, #product .box .detail .info table tr td {
	padding: 20px;
}
#product .box .detail .info table tr th {
	width: 118px;
	text-align: center;
	vertical-align: top;
	color: var(--color-primary);
	padding: 20px 0;
}
#product .box .detail .info table tr td {
	padding-left: 30px;
	padding-right: 0;
}
#product .box .detail .info table tr td ul li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 10px;
}
#product .box .detail .info table tr td ul li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	background: var(--color-red);
}
#product .box .detail .info table tr td ul li:last-of-type {
	margin-bottom: 0;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#product .msg .fm {
		font-size: 24px;
		margin-bottom: 30px;
	}
	#product .list {
		padding-bottom: 100px;
	}
	#product .box .ttl {
		font-size: 30px;
		padding: 8px 10px 11px 15px;
	}
	#product .box .ttl .label {
		margin-top: 5px;
	}
	#product .box .ttl .label span {
		font-size: 20px;
		padding: 0 10px 2px;
	}
	#product .box .ttl .label img {
		margin: 0 10px;
	}
	#product .box .detail {
		padding: 20px;
		display: block;
	}
	#product .box .detail .img {
		text-align: center;
		margin-bottom: 25px;
	}
	#product .box .detail .info {
		width: 100%;
	}
	#product .box .detail .info h4 {
		font-size: 30px;
		margin-bottom: 10px;
	}
	#product .box .detail .info h5 {
		font-size: 20px;
		margin-bottom: 15px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#product .msg .fm {
		font-size: 125%;
		margin-bottom: 30px;
	}
	#product .box {
		margin-bottom: 40px;
	}
	#product .box .ttl {
		display: block;
		font-size: 25px;
	}
	#product .box .ttl .label {
		justify-content: flex-end;
	}
	#product .box .ttl .label span {
		font-size: 16px;
		font-weight: 500;
	}
	#product .box .ttl .label img {
		width: 25px;
	}
	#product .box .detail .info h4 {
		font-size: 22px;
	}
	#product .box .detail .info h5 {
		font-size: 18px;
	}
	#product .box .detail .info table tr th, #product .box .detail .info table tr td {
		display: block;
		padding-left: 0;
	}
	#product .box .detail .info table tr th {
		text-align: left;
		padding-bottom: 0;
		padding-top: 10px;
	}
	#product .box .detail .info table tr td {
		padding-top: 10px;
	}
}