@charset "utf-8";

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  ベース・全体設定（スマホ用）  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
body {
	background-color: #171a1e;
	margin: 0px;
	padding: 0px;
	color: #EFEFEF;
	-webkit-text-size-adjust: 100%;
	padding-top: 56px !important; /* 固定ヘッダーの高さ分を確保 */
}

/* すべての画像が親要素からはみ出さず自動縮小するように設定 */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

h1 {
	font-size: 20px;
	line-height: 26px;
	padding: 0px;
	margin: 15px 0;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  ヘッダー上部固定 ＆ ハンバーガーボタン（スマホ用）  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 56px;
	background-color: #171a1e;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	z-index: 9999;
	box-sizing: border-box;
	margin: 0 !important;
	padding: 0 15px;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	width: 100%;
}

#header img {
	max-height: 50px; /* ここを大きくしました（お好みで40pxなどに調整も可能です） */
	width: auto;
	display: block;
}

/* ハンバーガーメニューを動かすための隠しチェックボックス */
.drawer-hidden {
	display: none !important;
}

/* ハンバーガーボタンのデザイン */
.drawer-open-btn {
	width: 36px;
	height: 36px;
	background-color: #292F36;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	box-sizing: border-box;
}

.drawer-open-btn span {
	display: block;
	width: 18px;
	height: 2px;
	background-color: #EFEFEF;
	transition: background-color 0.2s ease;
}

.drawer-open-btn:hover span {
	background-color: #92CCE9;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  スライドインメニュー（ドロワー）の構造と動作  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.drawer-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	visibility: hidden;
	transition: visibility 0.3s ease;
	z-index: 10000;
}

.drawer-close-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* 右側からスライドしてくるメニュー本体ボックス */
.drawer-content {
	position: absolute;
	top: 0;
	right: -85%; /* 初期状態は右側の画面外へ完全に隠す（幅に合わせる） */
	width: 85%;  /* メニューの横幅を画面の85%にする */
	max-width: 380px; /* 大画面スマホでも広がりすぎないよう最大値を指定 */
	height: 100%;
	background-color: #171a1e;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	overflow-y: auto;
}

.drawer-close-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	background-color: #292F36;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #92CCE9;
}

.drawer-close-btn {
	font-size: 20px;
	color: #EFEFEF;
	cursor: pointer;
	line-height: 1;
}

.drawer-close-btn:hover {
	color: #92CCE9;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  グローバルメニュー（スマホ用）  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#global_menu {
	background-color: #000;
	width: 100%;
	height: auto;
}

#global_menu ul {
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0px;
}

#global_menu ul li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	flex: 1 1 auto;
	text-align: center;
}

#global_menu a,
#global_menu a:visited,
#global_menu a:active {
	font-size: 11px;
	line-height: 16px;
	color: #EFEFEF;
	padding: 8px 4px;
	margin: 0;
	display: block;
	text-decoration: none;
}

#global_menu a:hover {
	color: #B9D1DF;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  レイアウト・ラッパー（スマホ用：1カラム縦積み）  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#wrapper {
	width: 100%;
	box-sizing: border-box;
	padding: 0 15px;
	margin: 15px auto; 
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#main,
#main_2 {
	width: 100% !important;
	box-sizing: border-box;
}

/* 本来の場所にあるasideはスマホでは非表示に（ドロワー内を利用するため） */
#wrapper #aside {
	display: none !important;
}

#bside {
	width: 100% !important;
	box-sizing: border-box;
}

/* ドロワー内にあるサイドバーはしっかり表示 */
.drawer-content .drawer-sidebar-inner,
.drawer-content #aside {
	display: block !important;
	width: 100% !important;
	padding: 20px;
	box-sizing: border-box;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  パンくずリスト  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#pan {
	font-size: 10px;
	line-height: 18px;
	color: #999;
	padding: 0px;
	margin: 10px 0;
}
#pan ul {
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
}
#pan ul li {
	padding: 0px;
	margin: 0 15px 0 0;
	list-style-type: none;
	position: relative;
}
#pan ul li::after {
	content: ">";
	position: absolute;
	right: -10px;
	top: 0;
	color: #999;
}
#pan ul li:last-child::after {
	content: "";
}
#pan a,
#pan a:visited,
#pan a:active {
	color: #EFEFEF;
	text-decoration: none;
}
#pan a:hover {
	color: #B9D1DF;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* 本文 */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#wrapper #main h2 {
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	color: #ffffff;
	background-color: transparent;
	padding: 0 0 8px 0;
	margin: 30px 0 15px 0;
	border-bottom: 2px solid #374151;
	position: relative;
}
#wrapper #main h2::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 80px;
	height: 3px;
	background-color: #F1CE84;
}
#main p {
	font-size: 15px;
	line-height: 28px;
	padding: 0px;
	margin: 0 0 15px 0;
}
#main a,
#main a:visited,
#main a:active {
	color: #92CCE9;
	display: inline;
	text-decoration: underline;
}
#main a:hover {
	color: #F1CE84;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* 日付 */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#entry_date {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.published_date,
.updated_date {
	font-size: 10px;
	line-height: 18px;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* 関連記事リスト（スマホ：2列） */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#kanren {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 10px 0;
	max-width: 100%;
	font-size: 12px;
	line-height: 20px;
}

.kanren-item {
	flex: 0 0 calc((100% - 10px) / 2);
	box-sizing: border-box;
	text-align: center;
}

.kanren-item img {
	width: 100%;
	height: auto;
	display: block;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  基本情報DTDL（スマホ用）  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.product-spec {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 1px;
	font-size: 11px;
	line-height: 14px;
}
.product-spec dt {
	font-weight: bold;
	background-color: #23282E;
	margin: 0px;
	padding: 6px;
}
.product-spec dd {
	margin: 0;
	background-color: #292F36;
	padding: 6px;
}
.product-spec a {
	color: #EFEFEF;
	text-decoration: none;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  PFCカロリーテーブル  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.nutrition-table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	margin: 15px 0;
	padding: 0;
}

.nutrition-table div {
	background-color: #1f232a;
	border: 1px solid #2a2f38;
	border-radius: 0;
	padding: 8px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nutrition-table dt {
	font-size: 10px;
	color: #999;
	margin: 0;
}

.nutrition-table dd {
	font-size: 13px;
	font-weight: bold;
	color: #EFEFEF;
	margin: 0;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* フッター（スマホ用） */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#footer {
	background-color: #000;
	width: 100%;
	padding: 20px 15px;
	box-sizing: border-box;
}
#footer_wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#footer_wrapper > div {
	width: 100%;
}
#footer #footer_wrapper #footer_logo p {
	font-size: 12px;
	line-height: 18px;
	margin: 0px;
	padding: 0 0 15px 0;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  一覧ページ（スマホ：2列タイト余白版）  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.review-list {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px 2% !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.review-list li {
	width: 49% !important;
	box-sizing: border-box !important;
	display: block !important;
	margin-bottom: 10px;
}

.review-list li a {
	text-decoration: none;
	color: #ffffff;
	display: block;
}

.review-list li img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 4px;
	border-radius: 0;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  サイドバー内部（#cat_list 等）のスマホ用調整  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#cat_list {
	font-size: 13px;
	margin: 0;
	padding: 0;
}

#cat_list > ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

#cat_list > ul > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	font-weight: 700;
	font-size: 12px;
	color: #ffffff;
	background-color: #292F36;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0;
	text-decoration: none;
}

#cat_list ul.hr-inset {
	list-style: none;
	padding: 0;
	margin: 4px 0 0 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px;
}

#cat_list ul.hr-inset li a {
	display: block;
	padding: 8px;
	font-size: 11px;
	color: #a0a6b2;
	background-color: rgba(41, 47, 54, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.02);
	border-radius: 0;
	text-decoration: none;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  最新記事グリッド（スマホ用：縦並び）  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.latest-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	box-sizing: border-box;
}

.latest-primary {
	width: 100% !important;
	background-color: #292F36;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0;
	padding: 10px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.latest-primary a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #ffffff;
}

.latest-primary img {
	width: 100%;
	height: auto;
	aspect-ratio: 640 / 427;
	object-fit: cover;
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0;
	margin-bottom: 10px;
}

.latest-primary .entry-title {
	display: block;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 700;
	color: #ffffff;
}

.latest-secondary-list {
	width: 100% !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-sizing: border-box;
}

.sub-entry {
	background-color: #292F36;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0;
	padding: 8px;
	box-sizing: border-box;
}

.sub-entry a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #ffffff;
}

.sub-entry img {
	width: 90px;
	height: 60px;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 0;
}

.sub-entry .entry-title {
	font-size: 11px;
	line-height: 1.3;
	font-weight: 600;
	color: #92CCE9;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  ブランドロゴ・カテゴリリンク一覧（スマホ用）  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.brand-logo-section {
	margin-top: 30px;
	width: 100%;
	box-sizing: border-box;
}

.brand-logo-section .section-title {
	font-size: 11px;
	letter-spacing: 0.08em;
	color: #999;
	margin: 0 0 10px 0;
	font-weight: 700;
	text-transform: uppercase;
}

.brand-logo-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.brand-logo-grid li {
	background-color: #292F36;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 0;
	box-sizing: border-box;
}

.brand-logo-grid a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 6px;
	text-decoration: none;
	color: #ffffff;
	height: 100%;
	box-sizing: border-box;
}

.brand-logo-grid img {
	width: 100%;
	max-width: 70px;
	height: auto;
	aspect-ratio: 100 / 50;
	object-fit: contain;
	display: block;
	background-color: #ffffff;
	padding: 3px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	margin-bottom: 4px;
	border-radius: 0;
}

.brand-logo-grid .brand-name {
	font-size: 9px;
	color: #a0a6b2;
	text-align: center;
	line-height: 1.2;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*  チェックボックスON時のメニュー展開動作  */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#drawer-toggle:checked ~ .drawer-menu {
	visibility: visible;
}

#drawer-toggle:checked ~ .drawer-menu .drawer-close-overlay {
	opacity: 1;
}

#drawer-toggle:checked ~ .drawer-menu .drawer-content {
	right: 0;
}