@charset "utf-8";

:root {
	--bd: #c9ddf0;
	--bg: #fff;
	--fg: #111;
	--muted: #111;
}

.inner .table-wrap {
	overflow-x: auto;
	background: var(--bg);
	border: 1px solid var(--bd);
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.inner table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	min-width: 90%;
}

.inner thead th {
	background: #c9ddf0;
	text-align: left;
	font-weight: 600;
	padding: 14px 16px;
	border-bottom: 1px solid var(--bd);
}

.inner tbody td {
	font-weight: 600;
	padding: 14px 16px;
	border-bottom: 1px solid var(--bd);
	vertical-align: top;
}

.inner tbody tr:last-child td {
	border-bottom: 0;
}

.inner caption {
	caption-side: top;
	text-align: left;
	padding: 20px 10px 10px;
	color: var(--muted);
	font-weight: 600;
}

.inner .note-muted {
	color: var(--muted);
}

/*余白*/
#column .space {
	margin: 20px 0 0 0;
}

/*補足*/
#column .strong {
	font-weight: bold;
	margin: 40px 0 0 0;
}

#column .line {
	border: 1px solid #eee;
	background: #fffdf5;
	border-radius: 12px;
	padding: 16px;
	margin: 0;
}

#column .note {
	font-size: .9rem;
	color: #444;
}

/*外部へリンク*/
.out-link {
	margin: 20px 20px;
	padding: 12px 30px;
	border: 1px solid #eee;
	border-radius: 8px;
	background: #f9f9f9;
}

.out-link a {
	color: #013f82;
	text-decoration: none;
}

.out-link a:hover {
	text-decoration: underline;
}

/***********************************
おすすめ13選
************************************/

/* 全体ラッパー */
.recommend-item {
	width: 100%;
	padding: 5vw 3vw;
	box-sizing: border-box;
}

/* セクションタイトル */
.txt-recommend-item {
	margin-bottom: 5vw;
	text-align: center;
}

.txt-recommend-item p {
	font-size: 4vw;
	line-height: 1.7;
	color: #333;
}

/* 商品ブロック */
.recommend-item-wrapper {
	margin-bottom: 8vw;
}

/* 各ボックス：縦並び */
.recommend-item-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* 画像部分 */
.recommend-item-box .img {
	width: 90%;
	margin-bottom: 4vw;
}

.recommend-item-box .img img {
	width: 100%;
	height: auto;
	border-radius: 2vw;
	transition: all 0.3s ease;
}

/* 画像ホバー効果（PCのみ適用） */
@media (hover: hover) {
	.recommend-item-box .img img:hover {
		filter: brightness(0.85);
		transform: scale(1.03);
	}
}

/* テキスト部分 */
.recommend-item-box .txt {
	width: 100%;
}

.recommend-item-box .txt h6 {
	display: block;
	font-size: 4.5vw;
	font-weight: bold;
	margin-bottom: 2vw;
	color: #333;
	line-height: 1.4;
}

.recommend-item-box .txt-box p {
	font-size: 3.8vw;
	line-height: 1.7;
	color: #555;
	padding: 0 2vw;
}

/* -------------------------------------------------------
   タブレット～中画面対応（768px以上）
------------------------------------------------------- */
@media (min-width: 768px) {
	.recommend-item {
		width: 90%;
		margin: 0 auto;
		padding: 3vw 0;
	}

	.recommend-item-box {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
	}

	.recommend-item-box .img {
		flex: 0 0 40%;
		margin-bottom: 0;
		margin-right: 3vw;
	}

	.recommend-item-box .txt h6 {
		font-size: 2.5vw;
	}

	.recommend-item-box .txt-box p {
		font-size: 1.8vw;
	}
}