@charset "UTF-8";
/* ========================================
   CONTENTS サンプルページ
   WP業者への指示書用
   ======================================== */
main {
	background: #0a0f0a;
	min-height: 100vh;
}

.wide-container {
	max-width: 1440px;
	margin-inline: auto;
}

/* ========================================
   ページヘッダー（CONTENTS共通）
   ======================================== */
.contents-hero {
	padding: 8vh 7.5vw 0;
}

.contents-title {
	font-family: 'Spartan', sans-serif;
	font-size: 6vw;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.1em;
}

.contents-description {
	font-family: 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 3.5vw;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	line-height: 2;
	margin-top: 2vh;
}

.sp-only {
	display: inline;
}

/* フィルターセクション */
.filter-section {
	padding: 0 7.5vw 6vh;
	margin-top: 4vh;
}

.filter-wrapper {
	display: flex;
	flex-direction: column;
	gap: 4vh;
}

.filter-divider {
	width: 100%;
	margin-top: 6vh;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.filter-buttons {
	display: flex;
	flex-direction: column;
	gap: 3vw;
	max-width: 600px;
}

.filter-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 2vh 5vw;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Spartan', sans-serif;
	font-size: 3.5vw;
	font-weight: 400;
	letter-spacing: 0.15em;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover {
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.filter-btn.active {
	border-color: rgba(255, 255, 255, 0.8);
	color: #fff;
}

.filter-btn .filter-icon {
	font-size: 3vw;
}

.filter-btn.active .filter-icon {
	transform: rotate(45deg);
}

/* ========================================
   フィルターモーダル（被せるタイプ）
   ======================================== */
.filter-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 15, 10, 0.97);
	z-index: 1000;
	overflow-y: auto;
	padding: 12vh 7.5vw 10vh;
}

.filter-modal.open {
	display: block;
}

.filter-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5vh;
}

.filter-modal-title {
	font-family: 'Spartan', sans-serif;
	font-size: 5vw;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.1em;
}

.filter-modal-close {
	width: 10vw;
	height: 10vw;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.7);
	font-size: 5vw;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.filter-modal-close:hover {
	border-color: #fff;
	color: #fff;
}

/* カテゴリグループ（アコーディオン） */
.category-group {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.category-group-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3vh 0;
	background: transparent;
	border: none;
	width: 100%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.category-group-title {
	font-family: 'Spartan', sans-serif;
	font-size: 4vw;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.1em;
}

.category-group-icon {
	font-family: 'Spartan', sans-serif;
	font-size: 4vw;
	color: rgba(255, 255, 255, 0.5);
	transition: transform 0.3s ease;
}

.category-group.open .category-group-icon {
	transform: rotate(45deg);
}

.category-group-content {
	display: none;
	padding: 0 0 3vh;
}

.category-group.open .category-group-content {
	display: block;
}

.category-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 2vw;
}

.filter-tag {
	padding: 1.2vh 4vw;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Spartan', 'Yu Gothic', sans-serif;
	font-size: 3vw;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.selected {
	border-color: #fff;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   ブランドグリッド（モーダル内）
   薄い枠線のグリッド式
   ======================================== */
.brand-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4vw 2vw;
	background: transparent;
	border: none;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	cursor: pointer;
	transition: all 0.3s ease;
}

/* 右端のアイテムは右枠なし */
.brand-item:nth-child(2n) {
	border-right: none;
}

/* 最後の行は下枠なし */
.brand-item:nth-last-child(-n+2) {
	border-bottom: none;
}

.brand-item:hover,
.brand-item.selected {
	background: rgba(255, 255, 255, 0.05);
}

.brand-logo-img {
	width: auto;
	height: 12vw;
	max-width: 28vw;
	object-fit: contain;
	/* カラーロゴを保持 */
	opacity: 0.9;
	transition: opacity 0.3s ease, filter 0.3s ease;
}

/* ホバー時に少し明るく */
.brand-item:hover .brand-logo-img {
	filter: brightness(1.1);
}

.brand-item:hover .brand-logo-img,
.brand-item.selected .brand-logo-img {
	opacity: 1;
}

.brand-name-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1vw;
	margin-top: 1.5vh;
}

.brand-name {
	font-family: 'Spartan', sans-serif;
	font-size: 2.5vw;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}

.brand-item:hover .brand-name,
.brand-item.selected .brand-name {
	color: #fff;
}

.brand-count {
	font-family: 'Spartan', sans-serif;
	font-size: 2.5vw;
	color: rgba(255, 255, 255, 0.4);
}

/* 車種セクション（初期非表示） */
.model-section {
	display: none;
	padding-top: 3vh;
}

.model-section.show {
	display: block;
}

.model-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 2vh;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	margin-bottom: 2vh;
}

.model-section-title {
	font-family: 'Spartan', sans-serif;
	font-size: 5vw;
	font-weight: 500;
	color: #fff;
}

.model-section-back {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Spartan', 'Yu Gothic', sans-serif;
	font-size: 3vw;
	cursor: pointer;
	transition: color 0.3s ease;
}

.model-section-back:hover {
	color: #fff;
}

.model-accordion {
	display: flex;
	flex-direction: column;
	gap: 1vh;
}

.model-group-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 2vh 3vw;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
}

.model-group-header:hover {
	border-color: rgba(255, 255, 255, 0.3);
}

.model-name {
	font-family: 'Spartan', sans-serif;
	font-size: 3.5vw;
	color: #fff;
}

.model-count {
	font-family: 'Spartan', sans-serif;
	font-size: 3vw;
	color: rgba(255, 255, 255, 0.5);
}


/* ========================================
   記事インデックス（目次）
   ======================================== */
.article-index {
	margin-bottom: 6vh;
	padding: 4vh 5vw;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.article-content h2.article-index-title {
	font-family: 'Spartan', sans-serif;
	font-size: 4vw;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.15em;
	margin-top: 0;
	margin-bottom: 3vh;
	padding-bottom: 2vh;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.article-index-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2vh;
}

.article-index-item {
	display: flex;
	align-items: center;
	gap: 3vw;
}

.article-index-item a {
	display: flex;
	align-items: center;
	gap: 3vw;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.article-index-item a:hover {
	color: #fff;
}

.article-index-number {
	font-family: 'Spartan', sans-serif;
	font-size: 3.5vw;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.4);
	min-width: 6vw;
}

.article-index-text {
	font-family: 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 4vw;
	font-weight: 400;
}

/* ========================================
   メインコンテナ
   ======================================== */
.article-container {
	display: flex;
	flex-direction: column;
	padding: 6vh 7.5vw;
	gap: 6vh;
}

/* ========================================
   記事メイン
   ======================================== */
.article-main {
	flex: 1;
}

/* 記事ヘッダー */
.article-header {
	margin-bottom: 6vh;
	padding-bottom: 4vh;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 3vw;
	margin-bottom: 3vh;
}

.article-date {
	font-family: 'Spartan', sans-serif;
	font-size: 3.5vw;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.05em;
}

.article-category {
	font-family: 'Spartan', sans-serif;
	font-size: 3.5vw;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.05em;
}

.article-title {
	font-family: 'Spartan', 'Yu Gothic', sans-serif;
	font-size: 6.5vw;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.02em;
	line-height: 1.4;
	margin-bottom: 3vh;
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 2vw;
}

.article-tag {
	font-family: 'Spartan', sans-serif;
	font-size: 3.2vw;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 0.8vh 3vw;
	transition: all 0.3s ease;
}

.article-tag:hover {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

/* ========================================
   記事本文
   ======================================== */
.article-content {
	font-size: 4vw;
	line-height: 2;
	color: rgba(255, 255, 255, 0.85);
}

.article-content p {
	margin-bottom: 4vh;
}

.article-content h2 {
	font-family: 'Spartan', 'Yu Gothic', sans-serif;
	font-size: 5.5vw;
	font-weight: 500;
	color: #fff;
	margin: 8vh 0 4vh;
	padding-bottom: 2vh;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.article-content h3 {
	font-family: 'Spartan', 'Yu Gothic', sans-serif;
	font-size: 5vw;
	font-weight: 500;
	color: #fff;
	margin: 6vh 0 3vh;
}

/* 本文内の画像 */
.wp-block-image {
	margin: 6vh 0;
}

.wp-block-image img {
	width: 100%;
}

.wp-element-caption {
	font-size: 3vw;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 1.5vh;
	text-align: center;
}

/* 2カラム画像 */
.article-images-2col {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4vw;
	margin: 6vh 0;
}

/* 引用 */
.article-content blockquote {
	margin: 6vh 0;
	padding: 4vh 5vw;
	border-left: 3px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.03);
	font-style: italic;
	color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   画像ギャラリー
   ======================================== */
.article-gallery {
	margin-top: 8vh;
	padding: 6vh 0 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.article-gallery-title {
	font-family: 'Spartan', sans-serif;
	font-size: 4vw;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.1em;
	margin-bottom: 4vh;
}

.article-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2vw;
}

.article-gallery-item {
	position: relative;
	padding-bottom: 75%; /* 4:3 */
	overflow: hidden;
	cursor: pointer;
}

.article-gallery-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.article-gallery-item:hover img {
	transform: scale(1.05);
}

/* ========================================
   著者紹介
   ======================================== */
.article-author {
	margin-top: 8vh;
	padding: 6vh 0 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	flex-direction: column;
	gap: 4vh;
}

.article-author-image {
	width: 100%;
}
/*
.article-author-image-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 75%;
	overflow: hidden;
}

.article-author-image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
*/
.article-author-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.article-author-label {
	font-family: 'Spartan', sans-serif;
	font-size: 3vw;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.1em;
	margin-bottom: 2vh;
}

.article-author-name {
	font-family: 'Spartan', 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 5vw;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.05em;
	margin-bottom: 1vh;
}

.article-author-role {
	font-family: 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 4vw;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 2vh;
}

.article-author-bio {
	font-family: 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 4vw;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
}

.article-author-link {
	display: inline-flex;
	align-items: center;
	gap: 1.5vw;
	margin-top: 4vh;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Spartan', 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 4vw;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
}

.article-author-link:hover {
	color: #fff;
}

.article-author-link::before {
	content: '>';
	font-family: 'Spartan', sans-serif;
}

/* ========================================
   SNSシェア
   ======================================== */
.article-share {
	margin-top: 8vh;
	padding: 6vh 0 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.article-share-title {
	font-family: 'Spartan', sans-serif;
	font-size: 4vw;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.1em;
	margin-bottom: 4vh;
}

.article-share-buttons {
	display: flex;
	gap: 4vw;
}

.article-share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14vw;
	height: 14vw;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}

.article-share-btn:hover {
	border-color: #fff;
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
}

.article-share-btn svg {
	width: 6vw;
	height: 6vw;
}

/* ライトボックス */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

.lightbox.active {
	display: flex;
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
}

.lightbox-content img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: 3vh;
	right: 3vw;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.lightbox-close:hover {
	background: rgba(0, 0, 0, 0.8);
}

.lightbox-close svg {
	width: 24px;
	height: 24px;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.lightbox-nav:hover {
	background: rgba(0, 0, 0, 0.8);
}

.lightbox-nav svg {
	width: 24px;
	height: 24px;
}

.lightbox-prev {
	left: 3vw;
}

.lightbox-next {
	right: 3vw;
}

/* ========================================
   サイドバー
   ======================================== */
.article-sidebar {
	width: 100%;
}

.sidebar-section {
	padding: 0;
	margin-bottom: 6vh;
}

.sidebar-title {
	font-family: 'Spartan', sans-serif;
	font-size: 4vw;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.1em;
	margin-bottom: 3vh;
	padding-bottom: 2vh;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* サイドバーカード（スマホ横スクロール） */
.sidebar-cards {
	display: flex;
	flex-direction: row;
	gap: 4vw;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 2vh;
	margin-right: -7.5vw;
	padding-right: 7.5vw;
}

/* スクロールバーを非表示 */
.sidebar-cards::-webkit-scrollbar {
	display: none;
}

.sidebar-cards {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.sidebar-card {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none;
	transition: all 0.3s ease;
	flex-shrink: 0;
	width: 80vw;
	scroll-snap-align: start;
}

.sidebar-card:hover .sidebar-card-title {
	color: #fff;
}

.sidebar-card-image {
	position: relative;
	width: 100%;
	padding-bottom: 75%; /* 4:3 アスペクト比 */
	overflow: hidden;
}

.sidebar-card-image span {
	width: 32px;
	height: 32px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: #785C3D;
	color: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	font-size: 1.2em;
}

.sidebar-card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sidebar-card:hover .sidebar-card-image img {
	transform: scale(1.05);
}

.sidebar-card-body {
	padding: 3vh 4vw 4vh;
	display: flex;
	flex-direction: column;
}

.sidebar-card-title {
	font-family: 'Spartan', 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 4.5vw;
	font-weight: 400;
	color: #e8e8e8;
	line-height: 1.4;
	position: relative;
	display: inline-block;
	padding-bottom: 1.5vh;
	align-self: flex-start;
}

.sidebar-card-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -4vw;
	width: calc(100% + 4vw + 4vw);
	border-bottom: 0.2vh solid #e8e8e8;
}

/* タグエリア */
.sidebar-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 2vw;
	margin-top: 3vh;
}

.sidebar-card-tag {
	font-family: 'Spartan', 'Yu Gothic', sans-serif;
	font-size: 3.2vw;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.03em;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.8vh 3vw;
}

.sidebar-card-info {
	font-family: 'Spartan', sans-serif;
	font-size: 4vw;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.05em;
	margin-top: 2vh;
}

.sidebar-card-date {
	font-family: 'Spartan', sans-serif;
	font-size: 4vw;
	font-weight: 400;
	color: #e8e8e8;
	letter-spacing: 0.05em;
	margin-top: 2.5vh;
}

/* 本文抜粋（2行で切れる） */
.sidebar-card-excerpt {
	font-family: 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 4vw;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.8;
	margin-top: 1.5vh;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* リンク */
.sidebar-card-link {
	display: inline-flex;
	align-items: center;
	gap: 1.5vw;
	margin-top: 4vh;
	margin-left: auto;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Spartan', 'Yu Gothic', 'YuGothic', sans-serif;
	font-size: 4vw;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
}

.sidebar-card-link:hover {
	color: #fff;
}

.sidebar-card-link::before {
	content: '>';
	font-family: 'Spartan', sans-serif;
}

/* ========================================
   PC版（横向き）
   ======================================== */
@media (min-width: 768px) {
	/* ページヘッダー */
	.contents-hero {
		padding: 9vh 3.75vw 0;
	}

	.contents-title {
		font-size: 2.5vw;
	}

	.contents-description {
		font-size: 1.2vw;
		max-width: none;
		margin-top: 2vh;
		text-align: left;
	}

	.sp-only {
		display: none;
	}

	/* フィルター横並び */
	.filter-section {
		padding: 0 3.75vw 6vh;
		margin-top: 4vh;
	}

	.filter-wrapper {
		flex-direction: row;
		justify-content: flex-start;
		gap: 2vw;
	}

	.filter-buttons {
		flex-direction: row;
		gap: 2vw;
		width: auto;
	}

	.filter-btn {
		width: auto;
		min-width: 280px;
		padding: 1.5vh 2vw;
		font-size: 1vw;
	}

	.filter-btn .filter-icon {
		font-size: 1vw;
	}

	/* フィルターモーダルPC版 */
	.filter-modal {
		padding: 12vh 3.75vw 10vh;
	}

	.filter-modal-header {
		margin-bottom: 4vh;
	}

	.filter-modal-title {
		font-size: 2vw;
	}

	.filter-modal-close {
		width: 3vw;
		height: 3vw;
		font-size: 1.5vw;
	}

	/* PCでは全て展開 */
	.category-group-header {
		padding: 2vh 0;
		cursor: default;
	}

	.category-group-title {
		font-size: 1.2vw;
	}

	.category-group-icon {
		display: none;
	}

	.category-group-content {
		display: block !important;
		padding: 0 0 2vh;
	}

	.category-tags {
		gap: 0.8vw;
	}

	.filter-tag {
		padding: 0.8vh 1.2vw;
		font-size: 0.9vw;
	}

	/* ブランドグリッドPC版（モーダル内） */
	.brand-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.brand-item {
		padding: 1.5vw 1vw;
	}

	/* PC: 5列目（右端）は右枠なし */
	.brand-item:nth-child(5n) {
		border-right: none;
	}

	/* PC: 2列目の右枠を復活 */
	.brand-item:nth-child(2n) {
		border-right: 1px solid rgba(255, 255, 255, 0.15);
	}

	/* PC: 5列目は右枠なし（再設定） */
	.brand-item:nth-child(5n) {
		border-right: none;
	}

	/* PC: 最後の行（5個）は下枠なし */
	.brand-item:nth-last-child(-n+5) {
		border-bottom: none;
	}

	.brand-logo-img {
		height: 3.5vw;
		max-width: 8vw;
	}

	.brand-name-wrapper {
		gap: 0.3vw;
		margin-top: 1vh;
	}

	.brand-name {
		font-size: 0.8vw;
	}

	.brand-count {
		font-size: 0.7vw;
	}

	.model-section-title {
		font-size: 1.5vw;
	}

	.model-section-back {
		font-size: 0.9vw;
	}

	.model-group-header {
		padding: 1.5vh 1.5vw;
	}

	.model-name {
		font-size: 1vw;
	}

	.model-count {
		font-size: 0.9vw;
	}

	/* ブランドセクションPC版（常時表示） */
	.brand-section {
		padding: 6vh 3.75vw 12vh;
	}

	.brand-section-title {
		font-size: 2vw;
		text-align: left;
	}

	.brand-section-description {
		font-size: 1.1vw;
		margin-top: 1vh;
		margin-bottom: 3vh;
		text-align: left;
	}

	.brand-section .brand-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.brand-section .brand-item {
		padding: 1.5vw 1vw;
	}

	.brand-section .brand-logo-img {
		height: 3.5vw;
		max-width: 8vw;
	}

	.brand-section .brand-name {
		font-size: 0.8vw;
	}

	.brand-section .brand-count {
		font-size: 0.7vw;
	}

	/* 記事インデックスPC版 */
	.article-index {
		margin-bottom: 5vh;
		padding: 3vh 2vw;
	}

	.article-content h2.article-index-title {
		font-size: 1vw;
		margin-bottom: 2vh;
		padding-bottom: 1.5vh;
	}

	.article-index-list {
		gap: 1.5vh;
	}

	.article-index-item a {
		gap: 1.5vw;
	}

	.article-index-number {
		font-size: 0.85vw;
		min-width: 2vw;
	}

	.article-index-text {
		font-size: 1vw;
	}

	/* メインコンテナ：2カラム */
	.article-container {
		flex-direction: row;
		padding: 6vh 3.75vw;
		gap: 4vw;
		align-items: flex-start;
	}

	/* 記事メイン */
	.article-main {
		flex: 1;
		max-width: calc(100% - 26vw - 4vw);
	}

	.article-header {
		margin-bottom: 5vh;
		padding-bottom: 3vh;
	}

	.article-meta {
		gap: 2vw;
		margin-bottom: 2vh;
	}

	.article-date {
		font-size: 0.9vw;
	}

	.article-category {
		font-size: 0.9vw;
	}

	.article-title {
		font-size: 2.2vw;
		margin-bottom: 2vh;
	}

	.article-tags {
		gap: 0.8vw;
	}

	.article-tag {
		font-size: 0.8vw;
		padding: 0.6vh 1.2vw;
	}

	/* 本文 */
	.article-content {
		font-size: 1.05vw;
	}

	.article-content h2 {
		font-size: 1.6vw;
		margin: 6vh 0 3vh;
	}

	.article-content h3 {
		font-size: 1.3vw;
		margin: 4vh 0 2vh;
	}

	.wp-block-image {
		margin: 4vh 0;
	}

	.wp-element-caption {
		font-size: 0.85vw;
	}

	.article-images-2col {
		grid-template-columns: 1fr 1fr;
		gap: 2vw;
		margin: 4vh 0;
	}

	.article-content blockquote {
		margin: 4vh 0;
		padding: 3vh 2vw;
	}

	/* 画像ギャラリーPC版 */
	.article-gallery {
		margin-top: 6vh;
		padding-top: 4vh;
	}

	.article-gallery-title {
		font-size: 1.2vw;
		margin-bottom: 3vh;
	}

	.article-gallery-grid {
		gap: 1vw;
	}

	.lightbox-close {
		width: 50px;
		height: 50px;
		top: 3vh;
		right: 3vw;
	}

	.lightbox-nav {
		width: 50px;
		height: 50px;
	}

	.lightbox-prev {
		left: 3vw;
	}

	.lightbox-next {
		right: 3vw;
	}

	/* 著者紹介PC版 */
	.article-author {
		margin-top: 6vh;
		padding-top: 4vh;
		flex-direction: row;
		gap: 3vw;
	}

	.article-author-image {
		width: 50%;
		flex-shrink: 0;
	}

	.article-author-label {
		font-size: 0.8vw;
		margin-bottom: 1.5vh;
	}

	.article-author-name {
		font-size: 1.4vw;
		margin-bottom: 0.5vh;
	}

	.article-author-role {
		font-size: 0.9vw;
		margin-bottom: 1.5vh;
	}

	.article-author-bio {
		font-size: 0.9vw;
	}

	.article-author-link {
		font-size: 1vw;
		gap: 0.5vw;
		margin-top: 3vh;
	}

	/* SNSシェアPC版 */
	.article-share {
		margin-top: 6vh;
		padding-top: 4vh;
	}

	.article-share-title {
		font-size: 1vw;
		margin-bottom: 3vh;
	}

	.article-share-buttons {
		gap: 1.5vw;
	}

	.article-share-btn {
		width: 4vw;
		height: 4vw;
	}

	.article-share-btn svg {
		width: 1.8vw;
		height: 1.8vw;
	}

	/* サイドバー */
	.article-sidebar {
		width: 26vw;
		flex-shrink: 0;
	}

	.sidebar-section {
		margin-bottom: 4vh;
	}

	.sidebar-title {
		font-size: 1vw;
		margin-bottom: 2vh;
		padding-bottom: 1.5vh;
	}

	.sidebar-cards {
		flex-direction: column;
		gap: 3vh;
		overflow-x: visible;
		margin-right: 0;
		padding-right: 0;
	}

	.sidebar-card {
		flex-direction: column;
		width: 100%;
	}

	.sidebar-card-image {
		width: 100%;
		padding-bottom: 75%; /* 4:3 アスペクト比 */
	}

	.sidebar-card-body {
		padding: 2vh 1.5vw 2.5vh;
	}

	.sidebar-card-title {
		font-size: 1vw;
		padding-bottom: 1vh;
	}

	.sidebar-card-title::after {
		left: -1.5vw;
		width: calc(100% + 1.5vw + 1.5vw);
	}

	.sidebar-card-tags {
		gap: 0.5vw;
		margin-top: 1.5vh;
	}

	.sidebar-card-tag {
		font-size: 0.7vw;
		padding: 0.4vh 0.8vw;
	}

	.sidebar-card-info {
		font-size: 0.85vw;
		margin-top: 1vh;
	}

	.sidebar-card-date {
		font-size: 0.85vw;
		margin-top: 1.5vh;
	}

	.sidebar-card-excerpt {
		font-size: 0.85vw;
		margin-top: 1vh;
	}

	.sidebar-card-link {
		font-size: 0.9vw;
		gap: 0.5vw;
		margin-top: 2vh;
	}

}
