@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');


:root {
	--font-size-base: 16px;
	--jketorange: #FD951E;
	--jketblue: #0085DE;
	--jketred: #f0506e;
	--jketpaleorange: #ffefdd;
	--jketheaderorange: #ffd9c5;
	--jketsilver: #f0f0f0;
	--jketbackgroundgray: #f8f8f8;
	--bodytextcolor: #302e2d;
}



/* 各タグの設定 */
html {
	font-size: var(--font-size-base);
}

body {
	line-height: 1.65;
	/* letter-spacing: .02em; */
}

/* 見出し */

h1,
.uk-h1 {
	font-size: clamp(2rem, 4vw, 2.4rem);
	line-height: 1.25;
	font-weight: normal;
}

h2,
.uk-h2 {
	font-size: clamp(1.6rem, 3vw, 1.9rem);
	line-height: 1.35;
	font-weight: 700;
}

h3,
.uk-h3 {
	font-size: 1.35rem;
	line-height: 1.45;
	font-weight: 700;
}


h4,
.uk-h4 {
	font-size: 1.15rem;
	line-height: 1.5;
	font-weight: 700;
}

h5,
.uk-h5 {
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 700;
}

h6,
.uk-h6 {
	font-size: .9rem;
	line-height: 1.6;
	font-weight: 700;
}

p {
	line-height: 1.65;
}


footer {
	font-size: 0.7rem;
	text-align: center;
	padding: 3rem 0;
	background-color: #444444;
	color: white;
	margin-top: 3rem;
}

a:hover:has(img) {
	opacity: 0.85;
	transition: 0.5s all ease;
}

ul,ol {
	line-height: 1.5;

	li {
		margin-bottom: 0.4em;
	}
}
ol {
	li::marker {
		font-weight:bold;
		font-size:1.5em;
	}
}

main {
	h2 {
		position: relative;
		border-bottom: 5px solid #cccccc;
	}

	h2::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: clamp(1.6rem, 2em, 60px);
		height: 5px;
		background-color: #8b0000;
	}

	h3 {
		border-bottom: 3px dotted #bc8f8f;
	}
	.uk-card-body > h3 {
		border-bottom: none;
	}

	h4 {
		width: fit-content;
		border-bottom: 3px solid #d69090;
	}
}




/* クラス・ID設定 */


/* ベース背景色 */
.bg-base {
	background-color: #ffffff;
}


/* ==========================================================================
ヒーローセクション（スマホ基準：縦長 portrait // ライトモード仕様）
========================================================================== */
.hero-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	background-color: #ffffff;
}

/* スマホ：上部に画像を配置（16:9比率を維持） */
.hero-image-wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 65%;
	/* 16:9比率 */
	overflow: hidden;
	background-color: #ffffff;
}

.hero-image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* スマホ：文字情報エリア（ライトモード） */
.hero-content {
	padding: 24px;
	background: #ffffff;
	color: #333333;
}

/* ライトモード用の見出し・テキスト調整 */
.hero-content .main-title {
	color: #111111;
	font-family: "Dela Gothic One", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.hero-content .sub-title {
	color: #666666;
}

/* 【デバッグ】スマホ時のリード文の文字色を明示的に指定 */
.hero-content .lead-text {
	color: #333333;
}

/* スマホでは不要な要素を非表示に */
.hero-overlay,
.pc-date-display {
	display: none;
}

/* スクロールを促すアニメーション矢印 */
.scroll-indicator {
	animation: bounce 2s infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

/* X（旧Twitter）ブランドカラーボタン */
.btn-x {
	background-color: #000000;
	color: #ffffff;
	border: none;
}

.btn-x:hover,
.btn-x:focus {
	background-color: #222222;
	color: #ffffff;
}

/* 【追加修正】PC時のみ中央付近に開催日を表示 */
.pc-date-display {
	display: block;
	font-size: 1.75rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
	color: #ffffff;
}

.bm-index {
	border: 2px solid #cfcfcf;
	border-radius: 7px;
	font-size: 1.5em;
}


.tagclouds {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;

	li {
		list-style-type: none;
		padding: 3px 5px;
		background: orange;
		color: white;
		font-weight: bold;
		font-size: 0.75em;
	}
}

.bg-orange {
	background-color:var(--jketorange);
}
.uk-button.bg-orange:hover {
	background-color:var(--jketorange);
	opacity:0.8;
	transition : all 0.5s ease 0s;
}

.uk-button.bg-white {
	background-color:white;
	border:1px solid silver;
	color:#333333;

	&:hover {
		transition : all 0.5s ease 0s;
		opacity:0.8;
	}
}

.bg-red {
	background-color:var(--jketred);
}

.uk-label {
	transform:translateY(-2px);
}


.uk-alert {
	padding:15px !important;
}

/* ==========================================================================
【追加修正】スマホ表示の時、thとtdをそれぞれ1行で表示（横並びしない）
========================================================================== */
@media (max-width: 959px) {
	.responsive-table tr {
		display: flex;
		flex-direction: column;
		padding: 12px 0;
	}

	.responsive-table th,
	.responsive-table td {
		display: block;
		width: 100% !important;
		padding: 2px 0 !important;
		border: none !important;
	}

	.responsive-table th {
		font-weight: bold;
		color: #111111;
	}

	.pc-date-display {
		color: #111111;
		margin-bottom: 1rem;

	}

}

/* ==========================================================================
【PC対応】メディアクエリ（横長 landscape / 960px以上 // ダークモード仕様）
========================================================================== */
@media (min-width: 960px) and (orientation: landscape) {
	.hero-container {
		position: relative;
		height: 100vh;
		/* PCでは全画面表示 */
		overflow: hidden;
	}

	/* PC：画像を背景全面に広げる */
	.hero-image-wrapper {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
	}

	.hero-image-wrapper img {
		object-fit: cover;
		object-position: center;
	}

	/* PC：画像の上に重ねる遮光オーバーレイ */
	.hero-overlay {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.65);
		/* 文字をくっきり見せるため65%透過 */
		z-index: 1;
	}

	/* PC：コンテンツを最前面に浮かび上がらせて中央配置 */
	.hero-content {
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		padding: 0;
		background: transparent;
		color: #ffffff;
	}

	.hero-content .main-title {
		color: #ffffff;
	}

	.hero-content .sub-title {
		color: #cccccc;
	}

	/* 【デバッグ修正】PC表示の時、リード文のグレー文字を真っ白に上書きして視認性を確保 */
	.hero-content .lead-text {
		color: #ffffff !important;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
		/* さらに可読性を上げるための影 */
	}

}

.mobile-toc {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 1000;
}

