@charset "UTF-8";

/* ==========================================================================
   Kyotei Index - Detail Page Styles (s/)
   Modern Premium Frame & Glassmorphism System
   ========================================================================== */

/* Breadcrumb Navigation */
.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14.5px;
	color: var(--text-muted, #64748b);
	margin-bottom: 24px;
	font-weight: 500;
}

.breadcrumb-item {
	color: var(--text-muted, #64748b);
	text-decoration: none;
	transition: all 0.25s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.breadcrumb-item:hover {
	color: var(--primary, #0ea5e9);
}

.breadcrumb-item.current {
	color: var(--text-main, #0f172a);
	font-weight: 700;
}

.breadcrumb-separator {
	color: #cbd5e1;
	font-size: 13px;
}

/* Detail Main Wrapper (Outer Container Frame) */
.detail-wrapper {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 28px;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 0 0 20px rgba(0, 0, 0, 0.02);
	padding: 36px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ==========================================================================
   1. HERO HEADER & SUMMARY FRAME
   ========================================================================== */
.detail-hero-frame {
	position: relative;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
	border: 1px solid rgba(203, 213, 225, 0.7);
	border-radius: 24px;
	padding: 20px 24px;
	overflow: hidden;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 10px 25px -5px rgba(15, 23, 42, 0.04);
}

.hero-bg-glow {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
	pointer-events: none;
	border-radius: 50%;
}

.detail-hero-header {
	margin-bottom: 28px;
	position: relative;
	z-index: 2;
}

.hero-top-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.badge-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 30px;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.2px;
}

.status-badge.verified {
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.1));
	color: #0284c7;
	border: 1px solid rgba(14, 165, 233, 0.3);
}

.badge-svg-icon {
	width: 16px;
	height: 16px;
}

.status-badge.status-active {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.1));
	color: #059669;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background-color: #10b981;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
	}
}

.badge-new {
	background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	padding: 5px 14px;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.back-link-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #475569;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	padding: 8px 18px;
	background-color: #ffffff;
	border: 1px solid #cbd5e1;
	border-radius: 30px;
	transition: all 0.25s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.back-link-top:hover {
	color: #0ea5e9;
	background-color: #f0f9ff;
	border-color: #38bdf8;
	transform: translateX(-3px);
}

.site-title {
	font-size: 34px;
	font-weight: 900;
	margin: 0 0 14px 0;
	color: #0f172a;
	line-height: 1.25;
	letter-spacing: -0.6px;
}

.site-meta-bar {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-rating-box {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	padding: 6px 16px;
	border-radius: 20px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.rating-stars {
	color: #f59e0b;
	font-size: 16px;
	letter-spacing: 1px;
}

.rating-score {
	font-size: 18px;
	font-weight: 900;
	color: #0f172a;
}

.rating-max {
	font-size: 13px;
	color: #94a3b8;
	font-weight: 600;
}

/* Detail Hero Grid (2-Column Layout inside Hero) */
.detail-hero-grid {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 28px;
	position: relative;
	z-index: 2;
	align-items: start;
}

.hero-spec-section {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px dashed #cbd5e1;
	position: relative;
	z-index: 2;
}

/* Thumbnail Card Frame */
.detail-image-card {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	padding: 12px;
	box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.06);
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	align-self: flex-start;
}

.detail-image-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px -8px rgba(14, 165, 233, 0.12);
	border-color: rgba(14, 165, 233, 0.4);
}

.image-inner {
	width: 100%;
	height: 230px;
	border-radius: 10px;
	overflow: hidden;
	background-color: #f1f5f9;
	position: relative;
	border: 1px solid #f1f5f9;
}

.site-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.4s ease;
}

.detail-image-card:hover .site-image {
	transform: scale(1.03);
}


/* 新着の予想サイトカード サムネイル画像の上部固定・下部見切れ（クロップ）設定 */
.new-site-thumb-box img,
.new-site-card .new-site-thumb-box img {
	object-fit: cover !important;
	object-position: top center !important;
}

.image-card-footer {
	width: 100%;
}

.btn-visit-sm {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 9px 12px;
	background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.25s ease;
	box-sizing: border-box;
	box-shadow: 0 3px 10px rgba(14, 165, 233, 0.2);
}

.btn-visit-sm:hover {
	background: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
	box-shadow: 0 5px 14px rgba(14, 165, 233, 0.3);
}

/* Summary Card Frame */
.detail-summary-card {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	padding: 16px 18px;
	box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.04);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-self: flex-start;
	gap: 12px;
}

.card-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-desc {
	font-size: 14.5px;
	line-height: 1.7;
	color: #334155;
	margin: 0;
	font-weight: 400;
}

.summary-sub-header {
	margin-top: 16px;
	margin-bottom: 10px;
	padding-top: 14px;
	border-top: 1px dashed #cbd5e1;
}

.summary-sub-title {
	font-size: 16px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.summary-quick-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	background: #f8fafc;
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid #f1f5f9;
}

.quick-stat-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.stat-label {
	font-size: 11.5px;
	color: #64748b;
	font-weight: 600;
}

.stat-value {
	font-size: 14px;
	color: #0f172a;
	font-weight: 800;
}

/* ==========================================================================
   2. SPECIFICATION & LAW FRAME (COMPANIES INFO & SECTIONS)
   ========================================================================== */
.detail-section-frame {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.section-frame-header {
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid #e2e8f0;
}

.section-title {
	font-size: 21px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	letter-spacing: -0.3px;
}

.icon-section-info,
.icon-section-law,
.icon-section-article {
	display: inline-block;
	width: 24px;
	height: 24px;
	background-color: #0ea5e9;
	flex-shrink: 0;
}

.icon-section-law {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2.2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2.2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-section-info {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2.2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2.2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-section-article {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2.2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18c-2.305 0-4.408.867-6 2.292m0-14.25v14.25'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2.2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18c-2.305 0-4.408.867-6 2.292m0-14.25v14.25'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Compact Card Grid for Operator Info (運営者情報) */
.spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.spec-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 9px 14px;
	border-radius: 12px;
	transition: all 0.2s ease;
}

.spec-item:hover {
	background: #ffffff;
	border-color: rgba(14, 165, 233, 0.35);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.06);
}

.spec-item.full-width {
	grid-column: span 2;
}

.spec-item.highlight-item {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	border-color: #bae6fd;
}

.spec-icon {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: #ffffff;
	color: #0ea5e9;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 5px rgba(14, 165, 233, 0.1);
}

.spec-icon svg {
	width: 15px;
	height: 15px;
}

.spec-content {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.spec-label {
	font-size: 11px;
	color: #64748b;
	font-weight: 600;
	line-height: 1.2;
}

.spec-value {
	font-size: 13.5px;
	color: #0f172a;
	font-weight: 700;
	line-height: 1.3;
	word-break: break-all;
}

.site-url-link {
	color: #0ea5e9;
	text-decoration: none;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}

.site-url-link:hover {
	color: #0284c7;
	text-decoration: underline;
}

/* ==========================================================================
   3. PRIMARY CTA ACTION FRAME
   ========================================================================== */
.action-cta-frame {
	position: relative;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: 18px;
	padding: 24px 28px;
	color: #ffffff;
	overflow: hidden;
	box-shadow: 0 14px 30px -8px rgba(15, 23, 42, 0.25);
	text-align: center;
}

.cta-glow-effect {
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.25) 0%, rgba(37, 99, 235, 0) 70%);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.cta-heading {
	font-size: 22px;
	font-weight: 900;
	margin: 0;
	color: #ffffff;
	letter-spacing: -0.4px;
}

.cta-subtext {
	font-size: 14px;
	color: #94a3b8;
	margin: 0 0 6px 0;
	line-height: 1.5;
}

.cta-btn-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	width: 100%;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	border-radius: 40px;
	font-size: 17px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-sizing: border-box;
	gap: 10px;
	letter-spacing: -0.2px;
	position: relative;
	overflow: hidden;
}

.btn-visit-hero {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
	color: #ffffff;
	border-radius: 12px;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	overflow: hidden;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.btn-visit-hero:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 10px 28px rgba(14, 165, 233, 0.45);
	background: linear-gradient(135deg, #0284c7 0%, #1d4ed8 100%);
}

.btn-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-25deg);
	animation: shine 4s infinite;
}

@keyframes shine {
	0% { left: -100%; }
	20% { left: 200%; }
	100% { left: 200%; }
}

.btn-back-home {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 12px 20px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-back-home:hover {
	background-color: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-2px);
}

/* ==========================================================================
   4. ARTICLES & REVIEW CARDS FRAME
   ========================================================================== */
.site-articles-section {
	margin-top: 6px;
}

.ref-articles-section-frame {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	margin-top: 16px;
}

.ref-count-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #ff8c00 0%, #ea580c 100%);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	padding: 2px 10px;
	border-radius: 12px;
	margin-left: 8px;
	box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
}

.ref-links-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 14px;
}

/* 個別記事カードにオレンジボーダーと光彩を適用 */
.ref-article-card-full {
	background: #ffffff;
	border: 2px solid #ff7700;
	border-radius: 14px;
	padding: 14px 16px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 0 14px rgba(255, 119, 0, 0.35), 0 4px 12px rgba(234, 88, 12, 0.12);
}

.ref-article-card-full:hover {
	border-color: #ff5500;
	background: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 0 24px rgba(255, 119, 0, 0.6), 0 8px 24px rgba(234, 88, 12, 0.25);
}

.ref-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.ref-critic-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	color: #ffffff;
	font-weight: 800;
	font-size: 12.5px;
	padding: 4px 12px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
}

.ref-critic-icon {
	font-size: 13px;
}

.ref-domain-tag {
	font-size: 12px;
	color: #0369a1;
	font-weight: 700;
	background: #e0f2fe;
	border: 1px solid #bae6fd;
	padding: 3px 10px;
	border-radius: 6px;
}

.ref-card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ref-article-title-full {
	font-size: 16px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.5;
	margin: 0;
	transition: color 0.2s ease;
}

.ref-article-card-full:hover .ref-article-title-full {
	color: #0284c7;
}

.ref-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 2px;
	flex-wrap: wrap;
}

.ref-tags-wrapper {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.ref-tag {
	font-size: 11.5px;
	font-weight: 600;
	color: #334155;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 3px 9px;
	border-radius: 6px;
}

.ref-read-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 800;
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	color: #ffffff;
	padding: 5px 14px;
	border-radius: 20px;
	margin-left: auto;
	box-shadow: 0 3px 10px rgba(14, 165, 233, 0.22);
	transition: all 0.2s ease;
}

.ref-article-card-full:hover .ref-read-btn {
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	box-shadow: 0 5px 14px rgba(14, 165, 233, 0.35);
	gap: 8px;
}

.ref-read-btn svg {
	transition: transform 0.2s ease;
}

.ref-article-card-full:hover .ref-read-btn svg {
	transform: translateX(3px);
}

.no-articles-text {
	color: #64748b;
	font-size: 15px;
	margin: 0;
	font-style: italic;
}

/* ==========================================================================
   PLANS SECTION STYLING (提供プラン 無料・有料)
   ========================================================================== */
.plans-container {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 8px;
}

.plan-section-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.plan-section-header {
	display: flex;
	align-items: center;
}

.badge-free-plan, .badge-paid-plan {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13.5px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 30px;
	letter-spacing: -0.2px;
}

.badge-free-plan {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #ffffff;
	box-shadow: 0 3px 10px rgba(16, 185, 129, 0.18);
}

.badge-paid-plan {
	background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
	color: #ffffff;
	box-shadow: 0 3px 10px rgba(14, 165, 233, 0.18);
}

.badge-icon {
	font-size: 14px;
}

/* Free Plan Card */
.free-plan-card {
	background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
	border: 1.5px solid #a7f3d0;
	border-radius: 14px;
	padding: 12px 14px;
	box-shadow: 0 3px 12px rgba(16, 185, 129, 0.04);
}

.free-plan-specs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 8px;
}

.free-spec-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: #ffffff;
	border: 1px solid #d1fae5;
	padding: 7px 11px;
	border-radius: 10px;
}

.free-spec-label {
	font-size: 11px;
	color: #059669;
	font-weight: 700;
}

.free-spec-value {
	font-size: 13.5px;
	color: #064e3b;
	font-weight: 800;
}

.free-spec-line {
	font-size: 13px;
	color: #064e3b;
	font-weight: 600;
}

/* Paid Plans Grid */
.paid-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 10px;
}

.paid-plan-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.paid-plan-card:hover {
	border-color: #38bdf8;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
}

.paid-plan-header {
	display: flex;
	align-items: center;
	gap: 7px;
	border-bottom: 1px dashed #e2e8f0;
	padding-bottom: 7px;
}

.plan-card-icon {
	color: #0ea5e9;
	font-size: 15px;
}

.paid-plan-title {
	font-size: 14.5px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	letter-spacing: -0.2px;
}

.paid-plan-details {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.paid-plan-price, .paid-plan-target {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12.5px;
	background: #f8fafc;
	padding: 5px 10px;
	border-radius: 8px;
}

.detail-label {
	color: #64748b;
	font-weight: 600;
	font-size: 11.5px;
}

.detail-val {
	font-weight: 700;
	color: #0f172a;
}

.price-val {
	color: #0284c7;
}

.target-val {
	color: #d97706;
	font-weight: 800;
}

.plan-simple-list {
	padding-left: 20px;
	margin: 0;
	color: #334155;
	font-size: 14px;
	line-height: 1.7;
}

/* JSON Plan Decorative Styles */
.json-plans-grid {
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 12px;
}

.paid-plan-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
	position: relative;
	overflow: hidden;
}

.paid-plan-card.free-card-item {
	border-color: #6ee7b7;
	background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.paid-plan-card:hover {
	border-color: #38bdf8;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(14, 165, 233, 0.14);
}

.paid-plan-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	border-bottom: 1px dashed #e2e8f0;
	padding-bottom: 8px;
}

.plan-card-badge {
	font-size: 10.5px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 12px;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: #ffffff;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
	margin-left: auto;
}

.paid-plan-card.free-card-item .plan-card-badge {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

.paid-plan-desc {
	background: #f8fafc;
	border: 1px solid #f1f5f9;
	border-radius: 8px;
	padding: 8px 10px;
	margin-top: 2px;
}

.paid-plan-desc p {
	font-size: 11.5px;
	color: #475569;
	line-height: 1.55;
	margin: 0;
}

/* Icons Common */
.icon-home-sm,
.icon-back,
.icon-home,
.icon-external,
.icon-external-sm {
	display: inline-block;
	background-color: currentColor;
	vertical-align: middle;
}

.icon-home-sm {
	width: 14px;
	height: 14px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-back {
	width: 15px;
	height: 15px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 19.5L8.25 12l7.5-7.5'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 19.5L8.25 12l7.5-7.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-home {
	width: 18px;
	height: 18px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 12l8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-external {
	width: 18px;
	height: 18px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-external-sm {
	width: 14px;
	height: 14px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
	.detail-hero-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.spec-grid {
		grid-template-columns: 1fr;
	}
	.spec-item.full-width {
		grid-column: span 1;
	}
}

@media (max-width: 768px) {
	.detail-wrapper {
		padding: 20px 16px;
		border-radius: 20px;
		gap: 28px;
	}
	.detail-hero-frame {
		padding: 20px 16px;
		border-radius: 18px;
	}
	.site-title {
		font-size: 26px;
	}
	.detail-section-frame {
		padding: 20px 16px;
		border-radius: 18px;
	}
	.action-cta-frame {
		padding: 28px 18px;
		border-radius: 18px;
	}
	.cta-heading {
		font-size: 22px;
	}
	.cta-btn-group {
		flex-direction: column;
	}
	.btn {
		width: 100%;
		padding: 14px 20px;
		font-size: 16px;
	}
	.ref-links-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.detail-wrapper {
		padding: 16px 12px;
		border-radius: 16px;
	}
	.site-title {
		font-size: 22px;
	}
	.section-title {
		font-size: 18px;
	}
	.spec-item {
		padding: 12px 14px;
	}
	.spec-icon {
		width: 32px;
		height: 32px;
	}
	.spec-icon svg {
		width: 16px;
		height: 16px;
	}
}

/* ==========================================================================
   Section Dividers & New Sites Grid & Reviews Form
   ========================================================================== */
.detail-section-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(203, 213, 225, 0.8), transparent);
	margin: 16px 0;
}

.icon-section-new {
	width: 20px;
	height: 20px;
	display: inline-block;
	background-color: var(--primary, #0ea5e9);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6v6h4.5m4.5 0a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 6v6h4.5m4.5 0a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-section-comment {
	width: 20px;
	height: 20px;
	display: inline-block;
	background-color: var(--primary, #0ea5e9);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M7.5 8.25h9m-9 3H12m-9.75 1.51c0 1.6 1.123 2.994 2.707 3.227 1.129.166 2.27.293 3.423.379.35.026.67.21.865.501L12 21l2.755-4.133a1.14 1.14 0 01.865-.501 48.172 48.172 0 003.423-.379c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0012 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='currentColor' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M7.5 8.25h9m-9 3H12m-9.75 1.51c0 1.6 1.123 2.994 2.707 3.227 1.129.166 2.27.293 3.423.379.35.026.67.21.865.501L12 21l2.755-4.133a1.14 1.14 0 01.865-.501 48.172 48.172 0 003.423-.379c1.584-.233 2.707-1.626 2.707-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0012 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.018z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.new-sites-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 16px;
}

.new-site-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease;
}

.new-site-card:hover {
	background: #ffffff;
	border-color: #0ea5e9;
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(14, 165, 233, 0.12);
}

.new-site-thumb-box {
	width: 130px;
	height: 130px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #cbd5e1;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.new-site-thumb-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.new-site-info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
	min-width: 0;
}

.new-site-title {
	font-size: 16px;
	font-weight: 800;
	color: #0f172a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.new-site-date {
	font-size: 11.5px;
	color: #0284c7;
	font-weight: 600;
	background: #f0f9ff;
	border: 1px solid rgba(14, 165, 233, 0.2);
	padding: 2px 8px;
	border-radius: 6px;
	align-self: flex-start;
}

.new-site-desc {
	font-size: 13px;
	color: #475569;
	line-height: 1.5;
	margin: 2px 0 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
}

.new-site-eval {
	color: #eab308;
	font-weight: 700;
}

.new-site-date {
	color: #64748b;
}

.comments-list-box {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}

.comment-item {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 16px;
}

.comment-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
	font-size: 13.5px;
}

.comment-nickname {
	font-weight: 700;
	color: #0f172a;
}

.comment-stars {
	color: #f59e0b;
	font-weight: 700;
}

.comment-date {
	color: #94a3b8;
	font-size: 12px;
	margin-left: auto;
}

.comment-body {
	font-size: 14px;
	color: #334155;
	line-height: 1.6;
}

.no-comments-text {
	color: #64748b;
	font-size: 14px;
	padding: 12px 0;
}

.comment-form-box {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border: 1px solid #cbd5e1;
	border-radius: 16px;
	padding: 20px 24px;
	margin-top: 20px;
	box-sizing: border-box;
	max-width: 100%;
}

.form-title {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 16px;
}

.comment-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
	box-sizing: border-box;
}

.form-group label {
	font-size: 13.5px;
	font-weight: 700;
	color: #334155;
}

.form-group .req {
	color: #ef4444;
}

.form-input, .form-select, .form-textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	font-size: 14px;
	color: #0f172a;
	background: #ffffff;
	font-family: inherit;
	transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: #0ea5e9;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.approval-notice {
	font-size: 12.5px;
	color: #64748b;
	margin: 0;
}

.btn-submit-comment {
	background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	color: #ffffff;
	border: none;
	border-radius: 12px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	align-self: flex-start;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
	box-sizing: border-box;
}

.btn-submit-comment:hover {
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
}

.alert-success {
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 16px;
}

.alert-danger {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 16px;
}

@media (max-width: 768px) {
	.new-sites-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.new-sites-grid {
		grid-template-columns: 1fr;
	}
}

/* 最新の的中実績 (Win Results) */
.win-results-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 8px;
}

.win-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}

.win-card:hover {
	transform: translateY(-2px);
	border-color: #f59e0b;
	box-shadow: 0 6px 16px rgba(245, 158, 11, 0.12);
}

.win-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding-bottom: 8px;
	border-bottom: 1px dashed #e2e8f0;
}

.win-date {
	font-size: 12px;
	font-weight: 700;
	color: #64748b;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.win-plan-tag {
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	white-space: nowrap;
}

.win-badge-paid {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #b45309;
	border: 1px solid #fcd34d;
}

.win-badge-free {
	background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
	color: #15803d;
	border: 1px solid #86efac;
}

.win-card-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.win-race-info {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.win-race-label {
	font-size: 11px;
	color: #94a3b8;
	font-weight: 600;
	background: #f1f5f9;
	padding: 2px 6px;
	border-radius: 4px;
}

.win-race-val {
	font-weight: 700;
	color: #1e293b;
}

.win-odds-info {
	font-size: 12.5px;
	color: #475569;
	font-weight: 600;
}

.win-card-footer {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	background: #fffbeb;
	border: 1px solid #fef3c7;
	border-radius: 8px;
	padding: 6px 12px;
	margin-top: 2px;
}

.win-payout-label {
	font-size: 11.5px;
	font-weight: 700;
	color: #b45309;
}

.win-payout-val {
	font-size: 18px;
	font-weight: 900;
	color: #d97706;
	letter-spacing: -0.5px;
}

.win-payout-unit {
	font-size: 12px;
	font-weight: 700;
	margin-left: 2px;
	color: #b45309;
}

@media (max-width: 640px) {
	.win-results-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.detail-hero-frame,
	.action-cta-frame {
		padding: 16px;
		border-radius: 14px;
	}

	.detail-section-frame {
		padding: 0;
		background: transparent;
		border: none;
		box-shadow: none;
	}

	.detail-summary-card,
	.detail-image-card,
	.free-plan-card,
	.paid-plan-card,
	.win-card,
	.ref-article-card-full {
		padding: 10px 12px;
	}

	.detail-wrapper {
		gap: 16px;
	}
}

/* ==========================================================================
   Campaign Banner (公式サイトキャンペーン) - Kyotei Index Brand Styling
   ========================================================================== */
.action-cta-frame.campaign-box-premium {
	position: relative;
	background: linear-gradient(135deg, #0b192c 0%, #0369a1 50%, #1e40af 100%);
	border: 2px solid #38bdf8;
	border-radius: 20px;
	padding: 28px 24px;
	text-align: center;
	box-shadow: 0 16px 40px rgba(2, 132, 199, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.25);
	overflow: hidden;
	margin: 24px 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-cta-frame.campaign-box-premium:hover {
	box-shadow: 0 20px 50px rgba(2, 132, 199, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.action-cta-frame.campaign-box-premium .cta-glow-effect {
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, rgba(37, 99, 235, 0) 70%);
	pointer-events: none;
	animation: pulseGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
	0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
	100% { opacity: 0.95; transform: translateX(-50%) scale(1.15); }
}

.cta-badge-campaign {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	padding: 5px 16px;
	border-radius: 30px;
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
	margin-bottom: 14px;
	letter-spacing: 0.3px;
	animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.04); }
}

.action-cta-frame.campaign-box-premium .cta-heading {
	font-size: 23px;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 14px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	letter-spacing: -0.3px;
}

.cta-bonus-banner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: rgba(2, 132, 199, 0.25);
	border: 1px dashed #38bdf8;
	border-radius: 14px;
	padding: 12px 22px;
	margin-bottom: 22px;
	max-width: 100%;
	box-shadow: inset 0 0 15px rgba(2, 132, 199, 0.2);
}

.cta-bonus-banner .bonus-gift-icon {
	font-size: 22px;
}

.cta-bonus-banner .bonus-text {
	font-size: 17px;
	font-weight: 900;
	color: #fef08a;
	letter-spacing: -0.2px;
}

.cta-btn-group.single-btn {
	display: flex;
	justify-content: center;
	width: 100%;
}

.btn-campaign-line {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 480px;
	padding: 16px 28px;
	background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
	color: #ffffff !important;
	font-size: 18px;
	font-weight: 900;
	border-radius: 50px;
	text-decoration: none !important;
	box-shadow: 0 10px 28px rgba(2, 132, 199, 0.5);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-campaign-line:hover {
	background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 14px 36px rgba(37, 99, 235, 0.65);
	color: #ffffff !important;
}

.btn-campaign-line .btn-line-badge {
	background: #ffffff;
	color: #0284c7;
	font-size: 11px;
	font-weight: 900;
	padding: 2px 9px;
	border-radius: 12px;
	white-space: nowrap;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-campaign-line .btn-text-main {
	letter-spacing: 0.2px;
}

@media (max-width: 640px) {
	.action-cta-frame.campaign-box-premium {
		padding: 20px 14px;
		border-radius: 16px;
	}
	.action-cta-frame.campaign-box-premium .cta-heading {
		font-size: 18px;
	}
	.cta-bonus-banner {
		padding: 8px 12px;
	}
	.cta-bonus-banner .bonus-text {
		font-size: 14px;
	}
	.btn-campaign-line {
		font-size: 15px;
		padding: 14px 18px;
	}
}

/* スマホ表示（768px以下 / 480px以下 / 360px以下）の予想サイト詳細ページ横幅最適化 */
@media (max-width: 768px) {
	.detail-wrapper, .detail-container, .site-detail-wrapper {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box !important;
		min-width: 0 !important;
	}
	.detail-header-card, .detail-main-card, .action-cta-frame, .detail-section-card {
		width: 100% !important;
		max-width: 100% !important;
		padding: 14px 12px !important;
		border-radius: 12px !important;
		box-sizing: border-box !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		min-width: 0 !important;
		word-break: break-word !important;
		overflow: hidden !important;
	}
	.detail-meta-grid, .detail-stats-grid, .plan-grid, .review-grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;
		width: 100% !important;
	}
	.detail-thumb-box img {
		max-width: 100% !important;
		height: auto !important;
		object-fit: contain !important;
	}
	.cta-content, .cta-heading, .cta-desc {
		width: 100% !important;
		max-width: 100% !important;
		word-break: break-word !important;
	}
	.btn-campaign-line, .btn-official-link, .btn-review-submit {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		white-space: normal !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		text-align: center !important;
	}
	.table-wrapper, .detail-table-container {
		width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
	}
}

@media (max-width: 480px) {
	.detail-title-main {
		font-size: 19px !important;
		line-height: 1.35 !important;
	}
	.action-cta-frame.campaign-box-premium .cta-heading {
		font-size: 16px !important;
	}
	.btn-campaign-line {
		font-size: 14px !important;
		padding: 12px 14px !important;
	}
}



