@charset "UTF-8";

/* =============================
 ベース設定
============================== */
html {
	font-size: var(--ft16);
	line-height: 1.4;
	box-sizing: border-box;

	/* フォント（サイト標準） */
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

	/* 和文プロポーショナル（正式仕様＋実務安定） */
	font-feature-settings: "palt";
	font-variant-east-asian: proportional-width;
}

body {
	position: relative;
	margin: 0;
	padding: 0;

	font-size: 1rem;
	line-height: inherit;
	color: rgba(var(--rgb_bk3), 1);
	background: rgba(var(--rgb_w), 1);

	scroll-behavior: smooth;
}

*, *::before, *::after {
	box-sizing: inherit;
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
}

input,
select,
textarea,
button,
table {
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;

	/* iOS / Android の文字拡大対策 */
	-webkit-text-size-adjust: 100%;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

.sp-only { display: inline; }
.pc-only { display: none; }

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	line-height: 1;
}

a.normal {
	color: blue;
	text-decoration: underline;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ft-b {
	font-weight: bold;
}

.ft-n {
	font-weight: normal;
}

.fc-r {
	color: rgba(var(--rgb_r), 1);
}

/* =============================
 ヘッダー
============================== */
header {
	position: relative;
	z-index: 1000;
	width: 100%;
	background: rgba(var(--rgb_w), 1);
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.header-inner {/* border: 2px solid red; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
}

.logo img {
	width: auto;
	height: 34px;
}

main {
	padding-top: 0px; /* スマホでは余白不要 */
}

/* =============================
 セクション	 border: 2px solid red;
============================== */
section {/* border: 2px solid red; */
	width: 100%;
	margin: 0;
}

section .content {/* border: 1px solid red; */
	height: auto;
	margin: 10px 6px 60px 6px;
}

section .content h2 {/* border: 1px solid red; */
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 10px 0px;
	border-bottom: 1px solid rgba(var(--rgb_bk9), 1);
	font-weight: 700;
}

section .content h2::before {
	content: attr(english);
	position: absolute;
	top: 14px;
	left: 14px;
	font-size: var(--ft28);
	color: rgba(var(--rgb_bke), 1);
	font-weight: 900;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	z-index: -1;
	/* font-family: 'Inter', sans-serif; */
}

section .content h2 .icon {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	margin: 4px 2px 0px 0px;
	background: url("../img/heading.svg") no-repeat center / contain;
}

/* =============================
 ハンバーガーメニュー
============================== */
.hamburger {
	position: fixed;
	top: 8px;
	right: 14px;
	z-index: 1100;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly; /* 均等配置 */
	align-items: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 4px 0;
	background: rgba(var(--rgb_w), 1);
	border-radius: 6px;
	cursor: pointer;
}

.hamburger span {
	display: block;
	width: 28px;
	height: 3px;
	margin: 0;
	background: rgba(var(--rgb_bk3), 1);
	border-radius: 2px;
	transition: all 0.4s ease;
	transform-origin: center; /* ← 回転の基点を中央に */
}

/* 開いた時の変形 */
.hamburger.open span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
	opacity: 0; /* 真ん中だけ消す */
}

.hamburger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* =============================
 グローバルナビ
============================== */
nav.global-nav {
	position: fixed;
	top: 0;
	right: -70%;
	z-index: 1010;
	width: 70%;
	height: 100%;
	background: rgba(var(--rgb_lm), 1);
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	transition: right 0.4s ease;
}

nav.global-nav.open {
	right: 0;
}

/* ナビトップ */
.nav-top {/* border: 2px solid red; */
	display: block;
	margin: 34px auto 10px;
	padding: 6px 20px;
	text-align: center;
}

.sp-only.box {/* border: 5px solid blue; */
	display: block;
	width: 84%;
	height: auto;
	max-width: none;
	margin: 30px auto;
	text-align: center;
}

.sp-only.box p {
	text-align: left;
	margin: 20px auto;
	color: rgba(var(--rgb_w), 1);
	line-height: 1.6;
	opacity: 0.8;
}

.sp-only img {
	width: 95%;
	max-width: none;
	opacity: 0.8;
}

.sp-only.box a {
	text-decoration: underline;
}

/* スマホナビの最初のメニュー項目に上線 */
nav.global-nav ul li:first-child {
	border-top: 1px solid #eee;
}

nav.global-nav ul li {
	border-bottom: 1px solid #eee;
}

nav.global-nav ul li a {
	display: block;
	width: 100%;
	padding: 14px 14px 14px 24px;
	font-size: var(--ft18);
	color: rgba(var(--rgb_w), 1);
	font-weight: 700;
	transition: background 0.4s ease;
}

nav.global-nav ul li a:hover {
	background: rgba(var(--rgb_ls), 1);
}

/* オーバーレイ */
.overlay {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	width: 100%;
	height: 100%;
	background: rgba(var(--rgb_bk3), 0.7);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
}

/* =============================
 スライダー共通設定
============================== */
section.main-visual {/* outline: 1px solid red; */
	position: relative;
	background: 
		linear-gradient(
			45deg,
			rgba(255,255,255,0.1) 0%,
			rgba(255,255,255,0.1) 20%,
			rgba(255,255,255,0.05) 20%,
			rgba(255,255,255,0.05) 40%,
			rgba(255,255,255,0.01) 40%,
			rgba(255,255,255,0.01) 80%,
			rgba(255,255,255,0.1) 80%,
			rgba(255,255,255,0.1) 100%
		),
		linear-gradient(
			-45deg,
			rgba(0,0,0,0.05) 0%,
			rgba(0,0,0,0.05) 12%,
			rgba(0,0,0,0.01) 12%,
			rgba(0,0,0,0.01) 66%,
			rgba(0,0,0,0.1) 66%,
			rgba(0,0,0,0.1) 100%
		),
		linear-gradient(
			-45deg,
			rgba(0,0,0,0.05) 0%,
			rgba(0,0,0,0.05) 30%,
			rgba(0,0,0,0.01) 30%,
			rgba(0,0,0,0.01) 84%,
			rgba(0,0,0,0.1) 84%,
			rgba(0,0,0,0.1) 100%
		),
		rgba(var(--rgb_ls), 1);
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}

.main-visual.slick-initialized {
	opacity: 1 !important;
}

.main-visual .slider,
.main-visual .slick-track,
.main-visual .slick-slide {
	overflow: hidden;
}

/* 各スライド */
.main-visual .slide {
	position: relative;
	z-index: 0;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* スライド画像 */
.main-visual .slide img {
	display: block;
	width: 100%;
	height: auto;
}

/* キャプション背景と文字 */
.main-visual .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	margin: 0;
	padding: 7px 0px 11px 0px;
	background: rgba(var(--rgb_bk0), 0.2);
	box-sizing: border-box;
	color: rgba(var(--rgb_w), 1);
	text-align: center;
	text-shadow: 2px 2px 4px rgba(var(--rgb_bk0), 0.6);
}

/* キャプションテキスト SP用 */
.main-visual .caption h2 {
	font-size: var(--ft24);
	margin: 0px 0px 5px 5px;
	line-height: 1.2;
}

.main-visual .caption h2.sp {
	font-size: var(--ft20);
	letter-spacing: -0.03rem;
}

.main-visual .caption p {
	margin: 0;
	font-size: var(--ft12);
	line-height: 1.2;
	/* letter-spacing: -1px; */
}

.main-visual .caption p.sp {
	font-size: var(--ft10);
}

/* 画像4分割のキャプション */
.cap4 {
	position: absolute;
	inset: 0;
	font-size: var(--ft9);
	color: rgba(var(--rgb_w), 1);
	text-shadow: 2px 2px 4px rgba(var(--rgb_bk0), 0.6);
}

.cap4 p {
	position: absolute;
	margin: 0;
	padding: 4px 4px 3px 4px;
	max-width: 45%; /* 長文対策 */
	background: rgba(var(--rgb_bk0), 0.2);
	line-height: 1.2;
	/*border-radius: 4px;*/
}

/* ① 左上（右410px 下310px） */
.cap4 p:nth-child(1) {
	right: 51.25%;
	bottom: 51.67%;
}

/* ② 左下（右410px 下10px） */
.cap4 p:nth-child(2) {
	right: 51.25%;
	bottom: 1.67%;
}

/* ③ 右上（右10px 下310px） */
.cap4 p:nth-child(3) {
	right: 1.25%;
	bottom: 51.67%;
}

/* ④ 右下（右10px 下10px） */
.cap4 p:nth-child(4) {
	right: 1.25%;
	bottom: 1.67%;
}

/* =============================
 アイコン集
============================== */
#icons {/* outline: 2px solid red; */
	margin: 0;
	padding: 1px;
	background: rgba(var(--rgb_o), 1);
}

#icons .content {/* outline: 2px solid blue; */
	margin: 0;
}

#icons .icon-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin: 8px 10px;
	padding: 0;
	list-style: none;
	font-size: var(--ft12);
	font-weight: 600;
	letter-spacing: -0.05rem;
}

#icons .icon-list li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3px 0px 3px 0;
	border: 2px solid rgba(var(--rgb_w), 1);
	border-radius: 12px;
	box-shadow: 2px 2px 3px rgba(var(--rgb_bk0), 0.35),
	inset 2px 2px 3px rgba(var(--rgb_bk0),0.35);
	text-decoration: none;
}

#icons .icon-list li a img {
	width: 36px;
	height: 36px;
	margin: 4px 0px 2px 0px;
	filter: drop-shadow(2px 2px 2px rgba(var(--rgb_bk0), 0.4));
}

#icons .icon-list li a span {/* border: 1px solid red; */
	line-height: 1.4;
	color: rgba(var(--rgb_w), 1);
	text-shadow: 2px 2px 3px rgba(var(--rgb_bk0), 0.6);
}

#icons .icon-list li div {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3px 0px 3px 0;
	border: 2px solid rgba(var(--rgb_w), 0.3);
	border-radius: 12px;
	box-shadow: 2px 2px 3px rgba(var(--rgb_bk0), 0.2),
	inset 2px 2px 3px rgba(var(--rgb_bk0),0.2);
	text-decoration: none;
}

#icons .icon-list li div img {
	width: 36px;
	height: 36px;
	margin: 4px 0px 2px 0px;
	filter: drop-shadow(2px 2px 2px rgba(var(--rgb_bk0), 0.6));
	opacity: 0.4;
}

#icons .icon-list li div span {
	line-height: 1.4;
	color: rgba(var(--rgb_w), 0.5);
	text-shadow: 2px 2px 3px rgba(var(--rgb_bk0), 0.3);
}

/* PCオンマウス時 */
#icons .icon-list li a:hover {
	background-color: rgba(var(--rgb_r), 1);
}

/* クリック時（スマホ・PC共通） */
#icons .icon-list li a:active {
	background-color: rgba(var(--rgb_r), 1);
}

/* =============================
 画像
============================== */
figure img {
	display: block;
	width: 100%;
	height: auto;
}

/* キャプション */
figure figcaption {
	display: block;
	font-size: 0.85em;
	text-align: center;
	color: #777;
	margin: 8px 0;
}

/* スマホ回り込み解除 */
figure.img-right,
figure.img-left,
figure.w-360,
figure.w-280 {
	width: 100%;
	max-width: 100%;
	float: none;
	margin: 0 auto 0 auto;
	display: block;
}

figure img {
	width: 100%;
	height: auto;
}

/* ポスター半分表示 */
figure.img-right.half {
	width: 100%;
	height: 36vh;
	overflow: hidden;
	position: relative;
}

figure.img-right.half::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
}


/* =============================
 colorbox
============================== */
#cboxOverlay {
	background-color: rgba(0,0,0,0.9);
}

#cboxContent,
#cboxLoadedContent {
	padding: 0;
	margin: 0;
}

#cboxClose {
	position: absolute;
	z-index: 10000;
	top: 10px;
	right: 10px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	padding: 0px 6px 7px 3px;
	color: #fff;
	font-size: 28px;
	line-height: 28px;
	text-align: center;
	text-indent: 0;
	cursor: pointer;
}

#cboxLoadedContent img {
	display: block;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}


/* =============================
 インフォ
============================== */
#info .content {
	
}

/* タイトル下ブロック */
#info .boxes {
	width: calc(100% - 12px);
	margin: 0px 6px 10px 6px;
	text-align: justify;
	line-height: 1.7;
}

/* 各記事ブロック */
#info .boxes article {/* border: 1px solid red; */
	position: relative;
	margin: 0 0 10px 0;
}

/* 各記事 タイトル共通装飾 */
#info .info-title {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow: visible;
	border-bottom: 3px solid transparent;
	border-image: linear-gradient(
		to right,
		rgba(var(--rgb_bkc), 0.3) 0px,
		rgba(var(--rgb_bkc), 0.2) 130px,
		rgba(var(--rgb_bkc), 0.1) 100%
	) 1;
	border-image-slice: 1;
	cursor: pointer;
}

/* 各記事 タイトル背景を斜め分断 */
#info .info-title::before {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0;
	background: linear-gradient(
		60deg,
		rgba(var(--rgb_bkc), 0.3) 0 125px,
		transparent 125px 100%
	);
}

/* 下向き矢印表示 */
#info .boxes article .arrow {
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
	width: 12px;
	height: auto;
	z-index: 1;
	opacity: 0.2;
	transform: translateX(-50%);
}

/* 矢印本文オープンで上向 */
#info .info-title.open .arrow {
	transform: translateX(-50%) rotate(180deg);
}

/* タイトルクリック時背景色追加 */
#info .info-title:active {
	background: rgba(var(--rgb_lm), 0.07);
}

/* タイトル上部 */
#info .boxes .info-title .top {
	display: flex;
	flex-direction: row;
	gap: 5px;
	margin: 5px 5px 3px 5px;
}

/* タイトル上部 左日時 */
#info .boxes .info-title .top .date {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 4px 6px 5px 23px;
	background: rgba(var(--rgb_ls), 1);
	font-size: var(--ft12);
	font-weight: bold;
	line-height: 1;
	color: rgba(var(--rgb_w), 1);
}

/* タイトル上部 左日時アイコン */
#info .boxes .info-title .top .date::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background: url("../img/cal.svg") no-repeat center;
	background-size: contain;
}

/* タイトル上部 右種別1 */
#info .boxes .info-title .top .type1 {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 4px 6px 5px 6px;
	background: rgba(var(--rgb_sb), 1);
	font-size: var(--ft12);
	font-weight: bold;
	line-height: 1;
	color: rgba(var(--rgb_w), 1);
}

/* タイトル上部 右種別2 */
#info .boxes .info-title .top .type2 {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 4px 6px 5px 6px;
	background: rgba(var(--rgb_o), 1);
	font-size: var(--ft12);
	font-weight: bold;
	line-height: 1;
	color: rgba(var(--rgb_w), 1);
}

/* タイトル上部 右 New! */
#info .boxes .info-title .top .newmark {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 5px 6px 5px 6px;
	background: rgba(var(--rgb_r), 1);
	font-size: var(--ft12);
	font-weight: bold;
	line-height: 1;
	color: rgba(var(--rgb_w), 1);
}

/* h3タイトル */
#info .info-title h3 {/* border: 1px solid blue; */
	z-index: 1;
	width: calc(100% - 16px);
	min-width: 0;
	margin: 3px 4px 7px 12px;
	font-size: var(--ft18);
	font-weight: bold;
	line-height: 1.3;
	color: rgba(var(--rgb_lm), 1);
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
}

/* h3タイトルクリックオープン */
#info .info-title.open h3 {
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
	
}

/* 初期状態は本文を隠す */
.info-text {
	display: none;
}

/* タイトルクリック本文表示 */
.info-text.open {
	display: block;
}

/* テキスト本文 */
#info .boxes article div.info-text {/* border: 1px solid red; */
	margin: 5px 5px 50px 5px;
}

/* テキスト本文 pの上部余白 */
#info .boxes article div p { margin: 8px 0 0 0; }

/* テキスト本文のインデント */
#info .boxes article div .level1 {
	padding-left: 1em;
	display: block;
}

#info .boxes article div .level2 {
	padding-left: 2em;
	display: block;
}

#info .boxes article div .level3 {
	padding-left: 3em;
	display: block;
}

#info .boxes article div .level1.num {
	padding-left: 2em;
	text-indent: -1em;
	display: block;
}

#info .boxes article div .level2.num {
	padding-left: 3em;
	text-indent: -1em;
	display: block;
}

#info .boxes article div .level3.num {
	padding-left: 4em;
	text-indent: -1em;
	display: block;
}

#info .boxes article div .level1,
#info .boxes article div .level2,
#info .boxes article div .level3,
#info .boxes article div .level1.num,
#info .boxes article div .level2.num,
#info .boxes article div .level3.num {
	margin-bottom: 6px;
	line-height: 1.4;
}

/* リンク 角丸 */
#info .boxes a.round {
	display: inline-block;
	margin: 10px 6px 0px 0px;
	padding: 6px 12px 8px 12px;
	border: 2px solid rgba(var(--rgb_bk3), 1);
	border-radius: 9999px;
	text-decoration: none;
	font-weight: 700;
	color: rgba(var(--rgb_bk3), 1);
}

/* マウスオーバー時、クリック時 */
#info .boxes a.round:hover,
#info .boxes a.round:active {
	transform: translate(3px, 3px);
	opacity: 0.5;
}

/* リンク アイコン */
#info .boxes a.icon {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: fit-content;
	margin: 0px 0px 0px 0px;
	padding: 1px 12px 5px 6px;
	background: rgba(var(--rgb_o), 1);
	border: 2px solid rgba(var(--rgb_w), 1);
	border-radius: 10px;
	font-weight: 700;
	transition: background 0.4s ease;
}

/* リンク アイコン 画像 */
#info .boxes a.icon img {
	width: 30px;
	height: 30px;
	margin: 5px 6px 0px 4px;
}

/* リンク アイコン テキスト */
#info .boxes a.icon span {
	color: rgba(var(--rgb_w), 1);
}

/* リンク アイコン オンマウス時 */
#info .boxes a.icon:hover,
#info .boxes a.icon:active {
	background-color: rgba(var(--rgb_r), 1);
}

/* テーブル共通 */
#info .boxes table {
	display: block;
	overflow-x: auto;
	white-space: nowrap;
	width: 100%;
	margin-bottom: 10px;
	border: 1px solid #bbb;
	border-collapse: collapse;
	font-size: 0.9em;
	line-height: 1.1;
}

#info .boxes table thead th,
#info .boxes table thead td,
#info .boxes table tbody th,
#info .boxes table tbody td {
	padding: 5px 10px;
	border: 1px solid #bbb;
	text-align: center;
}

#info .boxes table thead th {
	border: 1px solid #bbb;
	background: rgba(var(--rgb_sb), 1);
	font-weight: normal;
	color: rgba(var(--rgb_w), 1);
}

#info .boxes table tbody th {
	background: rgba(var(--rgb_lb), 1);
	font-weight: normal;
}

/* 大会概要 */
#info .info-text .gaiyo {
	width: 100%;
}

#info .info-text .gaiyo dt {
	padding: 4px 0px 6px 1em;
	background: rgba(var(--rgb_n), 1);
	font-weight: bold;
	color: rgba(var(--rgb_w), 1);
}

#info .info-text .gaiyo dd {
	margin: 0;
	padding: 4px 1em 1em 1em;
	border-bottom: 2px solid rgba(var(--rgb_n), 1);
	background: none;
	font-weight: bold;
	color: rgba(var(--rgb_bk3), 1);
}

/* =============================
 大会概要
============================== */
#outline .content {/* border: 2px solid blue; */

}

#outline table {/* border: 1px solid red; */
	width: calc(100% - 12px);
	margin: 0px 6px 10px 6px;
	border-collapse: collapse;
}

#outline table th,
#outline table td {/* border: 1px solid red;border-collapse: collapse; */
	display: block;
	width: 100%;
	padding: 4px 0;
	text-align: left;
}

#outline table th {
	position: relative;
	font-weight: 700;
	color: rgba(var(--rgb_bk3), 1);
	padding-left: 0.3em;
	white-space: nowrap;
}

#outline table th::before {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 1.3em;
	margin-right: 0.4em;
	background: rgba(var(--rgb_bkc), 0.7);
	vertical-align: bottom;
}

#outline table td {
	padding: 0 0 6px 1em;
}

#outline table tr:nth-child(even) {
	background: rgba(var(--rgb_bke), 0.5);
}

#outline h3 {
	margin: 0 0 0 0;
	text-align: center;
}

#outline .subtitle {
	margin: 0 0 10px 0;
	text-align: center;
}

#outline .history {/* border: 1px solid red; */
	width: calc(100% - 12px);
	margin: 20px 6px 0px 6px;
	padding: 10px 15px 5px 15px;
	background-color: rgba(var(--rgb_wp), 1);
}

#outline h4 {
	margin: 8px 0 8px 0;
	font-size: var(--ft16);
	text-align: center;
}

#outline .history .boxes {
	text-align: justify;
	line-height: 1.7;
}

/* =============================
 過去の大会記録　 border: 2px solid blue;
============================== */
#preview .content {/* border: 2px solid blue; */

}

#preview .boxes {/* border: 1px solid blue; */
	width: calc(100% - 12px);
	margin: 0px 6px 10px 6px;
	text-align: justify;
	line-height: 1.7;
}

.record-list {
	display: flex;
	overflow-x: auto;
	gap: 10px;
}

.record-item {
	flex: 0 0 48.6%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden; 
}

.record-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(var(--rgb_lm), 0.07);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.record-item:active::after {
	opacity: 1;
}

.record-item img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.record-text {
	display: flex;
	flex-direction: column;
	gap: 0px;
	padding: 4px 0px;
}

.record-list h3{/* border: 1px solid #999; */
	margin: 0 0 0 0;
	padding: 0 0 6px 4px;
	border-bottom: 1px solid #999;
	font-size: var(--ft18);
	line-height:1.2;
}

.record-list .sub{
	margin: 4px 0 4px 4px;
	line-height:1.2;
}

.record-list .sub2{
	margin: 0 0 14px 4px;
	line-height:1.2;
}


/* =============================
 ご協賛社
============================== */
#sponsor {
	margin: 0 0 -10px 0;
}

#sponsor .content {/* border: 1px solid red; */

}

.sponsor-grid {
	margin: 0 0 3px 0;
	display: grid;
	gap: 3px;
}

/* 共通部分（そのまま） */
.block {
	display: block;
	border: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 1px 1px 3px rgba(var(--rgb_bk0), 0.15)
}

a.block {
	position: relative;
}

/* ボックス選択時強調 */
a.block::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(var(--rgb_lm), 0);
	transition: background 0.4s ease;
}

a.block:active::after {
	background: rgba(var(--rgb_lm), 0.07);
}

/* 画像が枠高にフィットするよう最小調整 */
.block img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* 比率指定を .block に限定（ラッパーには効かないように） */
.block.k10 { aspect-ratio: 780 / 320; }
.block.k05 { aspect-ratio: 390 / 320; }
.block.k03 { aspect-ratio: 260 / 240; }
.block.k01 { aspect-ratio: 260 / 80; }
.block.k02 { aspect-ratio: 260 / 160; }

/* Grid列数（当初仕様を維持） */
.sponsor-grid.k10 { grid-template-columns: repeat(2, 1fr); }
.sponsor-grid.k05 { grid-template-columns: repeat(4, 1fr); }
.sponsor-grid.k03 { grid-template-columns: repeat(6, 1fr); }
.sponsor-grid.k01 { grid-template-columns: repeat(6, 1fr); }

#sponsor .boxes {/* border: 1px solid blue; */
	width: calc(100% - 12px);
	margin: 0px 6px 10px 6px;
	text-align: justify;
	line-height: 1.7;
}

#sponsor h4 {
	margin: 10px 0 14px 0;
	font-size: var(--ft16);
	line-height: 1.4;
}

/* 協賛のお願い各ボタン	 border: 1px solid red; */
#sponsor .boxes a.kyosan {
	display: inline-block;
	margin: 0px 0px 20px 0px;
	padding: 4px 12px 2px 6px;
	background: rgba(var(--rgb_sb), 1);
	border: 2px solid rgba(var(--rgb_w), 1);
	border-radius: 10px;
	font-weight: 700;
	transition: background 0.4s ease;
}

#sponsor .boxes a.kyosan img {
	width: 30px;
	height: 30px;
	margin: 1px 6px 4px 0px;
	display: inline-block;
	vertical-align: middle;
}

#sponsor .boxes a.kyosan span {
	color: rgba(var(--rgb_w), 1);
	display: inline-block;
}

#sponsor a.kyosan:hover,
#sponsor a.kyosan:active {
	background: rgba(var(--rgb_n), 1);
}

/* =============================
 常設スポンサー枠
============================== */
.top-sponsors {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(var(--rgb_lf), 1);
	z-index: 1000;
	padding: 2px 3px;
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}

.top-sponsors.slick-initialized {
	opacity: 1 !important;
}

.top-sponsors img {
	width: 100%;
	height: auto;
	max-height: 55px;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.top-sponsors .slick-slide {
	padding: 4px 3px;
}

.top-sponsors a:active {
	opacity: 0.8;
}

/* =============================
 ページトップボタン
============================== */
#page-top {
	position: fixed;
	z-index: 1005;
	right: 10px;
	bottom: 50px;
	display: none;
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin: 0;
	padding: 0;
	background: rgba(var(--rgb_lm), 0.6);
	color: rgba(var(--rgb_w), 1); 
	border-radius: 50% 50%;
	cursor: pointer;
	font-size: var(--ft20);
	text-align: center;
}

/* =============================
 フッター
============================== */
footer {
	overflow: hidden;
	margin-top: 60px;
	background: rgba(var(--rgb_lm), 1);
	color: rgba(var(--rgb_w), 1);
	text-align: center;
}

/* 主催　PGA東北プロゴルフ会 */
.footer-pga {/* border: 1px solid blue; */
	margin: 20px 0 10px 0;
	text-align: center;
}

.pga-label {
	display: inline-block;
	margin: 0 0 0 0;
	padding: 3px 8px 5px 8px;
	border: 1px solid rgba(var(--rgb_w), 1);
	font-size: var(--ft14);
	text-align: center;
}

.pga-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.pga-row img {
	width: 70px;
}

.pga-row .pga-text {
	font-size: var(--ft24);
	text-align: left;
	font-weight: bold;
	line-height: 0.6;
}

.pga-row .pga-text span {
	font-size: var(--ft9);
	letter-spacing: 0.2px;
	font-weight: normal;
}

/* 運営　宮城オープンゴルフトーナメント事務局 */
.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-logo {/* border: 1px solid blue; */
	width: 160px;
	margin: 20px 0px 16px 0px;
}

.footer-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0px 0px 16px 0px;
}

.footer-info p {
	margin: 0px 0px 8px 0px;
	font-size: var(--ft15);
}

.footer-info p:first-child {
	font-size: var(--ft18);
	font-weight: bold;
}

.footer-info a {
	color: rgba(var(--rgb_w), 1);
	text-decoration: underline;
}

/* copy right */
.footer-copy {
	width: 100%;
	margin: 0;
	padding: 10px 0;
	background-color: rgba(var(--rgb_lf), 1);
}

.footer-copy p {
	margin: 0;
	padding: 0;
}