/* =========================================================
   全国大会ページ 専用リセットCSS
   body.taikai-page 内だけに適用
   ========================================================= */


/* ---------------------------------------------------------
   1. 基本設定
   --------------------------------------------------------- */

body.taikai-page,
body.taikai-page * {
	box-sizing: border-box;
}

body.taikai-page {
	margin: 0;
	padding: 0;

	/* 元サイトの世界地図などを削除 */
	background: #fff !important;
	background-image: none !important;

	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.7;
}


/* ---------------------------------------------------------
   2. Lightning側の背景・レイアウトをリセット
   --------------------------------------------------------- */

body.taikai-page #page,
body.taikai-page .site,
body.taikai-page .siteContent,
body.taikai-page .site-content,
body.taikai-page .siteContent-cont,
body.taikai-page .mainSection,
body.taikai-page .main-section,
body.taikai-page .entry-body,
body.taikai-page .entry-content {
	background: transparent !important;
	background-image: none !important;

	border: 0 !important;
	box-shadow: none !important;
}


/* ---------------------------------------------------------
   3. 全国大会ページ本体
   --------------------------------------------------------- */

body.taikai-page .taikai-main {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;

	background: #fff;
}


/* 共通コンテンツ幅 */
body.taikai-page .taikai-inner {
	width: min(1140px, calc(100% - 40px));
	margin-right: auto;
	margin-left: auto;
	padding: 0;
}


/* ---------------------------------------------------------
   4. 見出しをリセット
   Lightning / CSS Hero等の装飾を削除
   --------------------------------------------------------- */

body.taikai-page h1,
body.taikai-page h2,
body.taikai-page h3,
body.taikai-page h4,
body.taikai-page h5,
body.taikai-page h6 {
	position: static;

	margin: 0;
	padding: 0;

	background: none !important;
	background-color: transparent !important;
	background-image: none !important;

	border: 0 !important;
	border-top: 0 !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-left: 0 !important;

	border-radius: 0 !important;
	box-shadow: none !important;

	color: inherit;

	font-family: inherit;
	font-style: normal;
	line-height: 1.4;
}


/* 見出しについている三角形・線・アイコン等を削除 */
body.taikai-page h1::before,
body.taikai-page h1::after,
body.taikai-page h2::before,
body.taikai-page h2::after,
body.taikai-page h3::before,
body.taikai-page h3::after,
body.taikai-page h4::before,
body.taikai-page h4::after,
body.taikai-page h5::before,
body.taikai-page h5::after,
body.taikai-page h6::before,
body.taikai-page h6::after {
	content: none !important;
	display: none !important;
}


/* ---------------------------------------------------------
   5. テキスト類
   --------------------------------------------------------- */

body.taikai-page p {
	margin: 0;
	padding: 0;
}

body.taikai-page strong,
body.taikai-page b {
	font-weight: 700;
}


/* ---------------------------------------------------------
   6. リンク
   --------------------------------------------------------- */

body.taikai-page a {
	color: inherit;
	text-decoration: none;
	transition: filter 0.25s ease, opacity 0.25s ease;
}

body.taikai-page a:hover,
body.taikai-page a:focus,
body.taikai-page a:active {
	color: inherit;
	text-decoration: none;
}

body.taikai-page a:hover,
body.taikai-page a:focus-visible {
	filter: brightness(1.12);
	opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {

	body.taikai-page a {
		transition: none;
	}
}


/* ---------------------------------------------------------
   7. リスト
   --------------------------------------------------------- */

body.taikai-page ul,
body.taikai-page ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.taikai-page li {
	margin: 0;
	padding: 0;
}


/* ---------------------------------------------------------
   8. 画像
   --------------------------------------------------------- */

body.taikai-page img {
	display: block;
	max-width: 100%;
	height: auto;

	margin: 0;
	padding: 0;

	border: 0;
	box-shadow: none !important;
}


/* ---------------------------------------------------------
   9. header
   --------------------------------------------------------- */

body.taikai-page .taikai-header {
	position: relative;
	z-index: 10;

	width: 100%;
	margin: 0;
	padding: 0;

	background: #fff;

	border: 0;
	box-shadow: none;
}

body.taikai-page .taikai-header-inner {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}


/* ---------------------------------------------------------
   10. nav
   --------------------------------------------------------- */

body.taikai-page .taikai-nav {
	margin: 0;
	padding: 0;
}

body.taikai-page .taikai-nav a {
	margin: 0;
	padding: 0;

	background: none;
	border: 0;
	border-radius: 0;

	box-shadow: none;
}


/* ---------------------------------------------------------
   11. section
   --------------------------------------------------------- */

body.taikai-page section {
	position: relative;

	width: 100%;
	margin: 0;
	padding: 0;

	background-image: none;
	border: 0;
}


/* ---------------------------------------------------------
   12. TablePress 基本リセット
   ※ここから今回のデザインをCSSで作っていきます
   --------------------------------------------------------- */

body.taikai-page .tablepress {
	width: 100%;

	margin: 0;
	padding: 0;

	border: 0;
	border-collapse: collapse;
	border-spacing: 0;

	background: transparent;
}


/* TablePressのヘッダー背景等をリセット */
body.taikai-page .tablepress thead th,
body.taikai-page .tablepress tbody th,
body.taikai-page .tablepress tbody td {
	margin: 0;

	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;

	color: inherit;

	border: 0;

	box-shadow: none;
}


/* 偶数行・奇数行の背景 */
body.taikai-page .tablepress .odd td,
body.taikai-page .tablepress .even td,
body.taikai-page .tablepress .row-hover tr:hover td {
	background: transparent !important;
	background-color: transparent !important;
}


/* TablePressのリンク */
body.taikai-page .tablepress a {
	color: inherit;
	text-decoration: none;
}


/* ---------------------------------------------------------
   13. TablePress周辺に自動挿入される要素
   --------------------------------------------------------- */

body.taikai-page .dataTables_wrapper,
body.taikai-page .dt-container {
	width: 100%;
	margin: 0;
	padding: 0;
}


/* ---------------------------------------------------------
   14. footer
   --------------------------------------------------------- */

body.taikai-page .taikai-footer {
	width: 100%;
	margin: 0;
	padding: 0;

	background: transparent;

	border: 0;
	box-shadow: none;
}

body.taikai-page .taikai-footer-inner {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}


/* ---------------------------------------------------------
   15. WordPressが画像などに付けるスタイル
   --------------------------------------------------------- */

body.taikai-page .alignleft,
body.taikai-page .alignright,
body.taikai-page .aligncenter,
body.taikai-page .alignwide,
body.taikai-page .alignfull {
	float: none;
	max-width: none;
	margin: 0;
}

/* 全国大会ページのみ「TOPに戻る」ボタンをグレーにする */
body.taikai-page .page_top_btn,
body.taikai-page .page_top_btn:hover,
body.taikai-page .page_top_btn:focus-visible {
	background-color: #888 !important;
	border-color: transparent !important;
	box-shadow: 0 0 0 1px #fff !important;
}


/* ---------------------------------------------------------
   16. ボタン系の既存スタイルをリセット
   --------------------------------------------------------- */

body.taikai-page button,
body.taikai-page input[type="button"],
body.taikai-page input[type="submit"],
body.taikai-page .taikai-entry-button {
	-webkit-appearance: none;
	appearance: none;

	margin: 0;
	padding: 0;

	background: none;
	border: 0;
	border-radius: 0;

	box-shadow: none;

	color: inherit;
	font: inherit;
}


/* ---------------------------------------------------------
   17. スマホ基本設定
   --------------------------------------------------------- */

@media (max-width: 767px) {

	body.taikai-page {
		font-size: 15px;
	}

	body.taikai-page .taikai-inner {
		width: calc(100% - 32px);
	}

}

/* =========================================================
   HEADER
   ========================================================= */

body.taikai-page .taikai-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 69px;
	margin: 0;
	padding: 0;
	background: #fff;
}

body.taikai-page .taikai-main {
	padding-top: 69px;
}

body.admin-bar.taikai-page .taikai-header {
	top: 32px;
}

body.taikai-page .taikai-header-inner {
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 69px;
	margin: 0;
	padding: 0;
}


/* =========================================================
   HOME
   ========================================================= */

body.taikai-page .taikai-home-button {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;

	/* カンプの比率を基準に、画面幅に合わせて可変にする */
	flex: 0 1 clamp(310px, 36.8vw, 824px);
	min-width: 0;
	height: 69px;
	margin: 0;
	padding: 0 32px 0 clamp(36px, 4.3vw, 96px);

	background: #929292 !important;
	color: #fff !important;
	border-radius: 0 7px 7px 0 !important;
	overflow: hidden;
	text-decoration: none !important;
}

/* =========================================================
   HOME 装飾
   ========================================================= */

/* 左側装飾 */
body.taikai-page .taikai-home-button::before {
	content: none !important;
	display: none !important;
}


/* 右側装飾 */
body.taikai-page .taikai-home-button::after {
	content: none !important;
	display: none !important;
}

body.taikai-page .taikai-home-deco {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	pointer-events: none;
}


/* 家アイコン・テキストを装飾より前面へ */
body.taikai-page .taikai-home-icon,
body.taikai-page .taikai-home-label {
	position: relative;
	z-index: 1;
}


/* HOMEアイコン */
body.taikai-page .taikai-home-icon {
	display: block !important;
	flex: 0 0 21px;
	width: 21px !important;
	min-width: 21px !important;
	max-width: 21px !important;
	height: 17px !important;
	min-height: 17px !important;
	max-height: 17px !important;
	margin: 0 !important;
	object-fit: contain;
}


/* HOMEテキスト */
body.taikai-page .taikai-home-label {
	display: block !important;
	color: #fff !important;
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(11px, 1.02vw, 15px);
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

/* =========================================================
   NAV
   ========================================================= */

body.taikai-page .taikai-nav {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: stretch;
	flex: 1 1 auto;
	height: 69px;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 0 7px 7px 0;
	overflow: hidden;
}

body.taikai-page .taikai-nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	flex: 1 1 0;
	height: 69px;

	margin: 0;
	padding: 0 15px;

	background: #fff !important;
	color: #444 !important;

	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(12px, 1.02vw, 15px);
	font-weight: 700;
	line-height: 1;

	white-space: nowrap;
	text-decoration: none !important;
}

body.taikai-page .taikai-nav-icon {
	display: block !important;
	flex: 0 0 20px;
	width: 20px !important;
	height: 20px !important;
	max-width: 20px !important;
	max-height: 20px !important;
	object-fit: contain;
}

body.taikai-page .taikai-nav-item span {
	display: block;
}


/* =========================================================
   ENTRY
   ========================================================= */

body.taikai-page .taikai-entry-header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	flex: 0 0 clamp(132px, 12.9vw, 289px);
	height: 69px;

	margin: 0 0 0 -7px;
	padding: 0 10px 0 17px;

	background: linear-gradient(
		90deg,
		#f20c08 0%,
		#f4540c 55%,
		#f39a20 100%
	) !important;

	color: #fff !important;
	text-decoration: none !important;
}

body.taikai-page .taikai-entry-header-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

body.taikai-page .taikai-entry-header-main {
	color: #fff !important;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
}

body.taikai-page .taikai-entry-header-sub {
	margin-top: 4px;
	color: #fff !important;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

body.taikai-page .taikai-entry-header-arrow {
	display: block !important;
	flex: 0 0 18px;
	width: 18px !important;
	height: 18px !important;
	max-width: 18px !important;
	max-height: 18px !important;
	object-fit: contain;
}

body.taikai-page .taikai-menu-toggle,
body.taikai-page .taikai-mobile-menu {
	display: none;
}

body.taikai-page .taikai-news,
body.taikai-page .taikai-programme {
	scroll-margin-top: 89px;
}

html {
	scroll-padding-top: 89px;
}

@media (min-width: 901px) {
	body.taikai-page .taikai-header,
	body.taikai-page .taikai-nav,
	body.taikai-page .taikai-nav .taikai-nav-item {
		background: #f9f7f5 !important;
	}

	body.taikai-page .taikai-nav {
		justify-content: space-evenly;
	}

	body.taikai-page .taikai-home-button {
		align-items: flex-end;
		padding-bottom: 20px;
	}

	body.taikai-page .taikai-nav .taikai-nav-item {
		align-items: flex-end;
		flex: 0 0 auto;
		padding: 0 0 20px !important;
		font-size: clamp(15px, 1.15vw, 18px);
		transition: color 0.2s ease;
	}

	body.taikai-page .taikai-nav .taikai-nav-item:hover,
	body.taikai-page .taikai-nav .taikai-nav-item:focus,
	body.taikai-page .taikai-nav .taikai-nav-item:active {
		background: #f9f7f5 !important;
		color: #888 !important;
		filter: none;
		opacity: 1;
	}

	body.taikai-page .taikai-home-label {
		font-size: clamp(15px, 1.15vw, 18px);
		line-height: 1;
	}

	body.taikai-page .taikai-entry-header-main {
		font-size: 32px;
	}

	body.taikai-page .taikai-entry-header-sub {
		font-size: 15px;
	}

	body.taikai-page .taikai-entry-header-arrow {
		flex-basis: 24px;
		width: 24px !important;
		height: 24px !important;
		max-width: 24px !important;
		max-height: 24px !important;
	}
}


/* =========================================================
   HEADER RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

	body.taikai-page .taikai-header,
	body.taikai-page .taikai-header-inner {
		height: auto;
	}

	body.taikai-page .taikai-header-inner {
		flex-wrap: wrap;
	}

	body.taikai-page .taikai-home-button {
		flex-basis: calc(100% - 132px);
		padding-left: 48px;
	}

	body.taikai-page .taikai-entry-header {
		flex-basis: 139px;
		order: 2;
		margin-left: -7px;
		padding-left: 17px;
	}

	body.taikai-page .taikai-nav {
		flex: 0 0 100%;
		order: 3;
		height: 58px;
		border-bottom: 1px solid #eee;
	}

	body.taikai-page .taikai-nav-item {
		height: 58px;
	}
}

@media (min-width: 768px) and (max-width: 900px) {
	html {
		scroll-padding-top: 147px;
	}

	body.taikai-page .taikai-main {
		padding-top: 127px;
	}

	body.taikai-page .taikai-news,
	body.taikai-page .taikai-programme {
		scroll-margin-top: 147px;
	}
}

@media (max-width: 520px) {

	body.taikai-page .taikai-home-button {
		flex-basis: calc(100% - 106px);
		gap: 6px;
		padding: 0 6px 0 20px;
	}

	body.taikai-page .taikai-home-label {
		font-size: 12px;
		white-space: nowrap;
	}

	body.taikai-page .taikai-entry-header {
		flex-basis: 113px;
		gap: 5px;
		margin-left: -7px;
		padding: 0 7px 0 14px;
	}

	body.taikai-page .taikai-entry-header-main {
		font-size: 18px;
	}

	body.taikai-page .taikai-entry-header-sub {
		font-size: 10px;
	}

	body.taikai-page .taikai-entry-header-arrow {
		flex-basis: 16px;
		width: 16px !important;
		height: 16px !important;
	}

	body.taikai-page .taikai-nav-item {
		flex-direction: column;
		gap: 4px;
		padding: 0 5px;
		font-size: 11px;
	}

	body.taikai-page .taikai-nav-icon {
		flex-basis: 18px;
		width: 18px !important;
		height: 18px !important;
		max-width: 18px !important;
		max-height: 18px !important;
	}
}

@media (max-width: 767px) {
	html {
		scroll-padding-top: 68px;
	}

	body.taikai-page.taikai-menu-open {
		overflow: hidden;
	}

	body.taikai-page .taikai-header {
		height: 56px;
		min-height: 56px;
	}

	body.taikai-page .taikai-main {
		padding-top: 56px;
	}

	body.taikai-page .taikai-news,
	body.taikai-page .taikai-programme {
		scroll-margin-top: 68px;
	}

	body.taikai-page .taikai-header-inner {
		position: relative;
		z-index: 102;
		flex-wrap: nowrap;
		height: 56px;
		background: linear-gradient(90deg, #f33b0b, #f47b08);
	}

	body.taikai-page .taikai-home-button {
		flex: 1 1 auto;
		height: 56px;
		-webkit-tap-highlight-color: transparent;
	}

	body.taikai-page .taikai-home-button:hover,
	body.taikai-page .taikai-home-button:active,
	body.taikai-page .taikai-home-button:focus,
	body.taikai-page .taikai-home-button:focus-visible {
		background: #aaa !important;
		filter: none;
		opacity: 1;
	}

	body.taikai-page .taikai-home-label {
		font-size: 12px;
		white-space: nowrap;
	}

	body.taikai-page .taikai-nav,
	body.taikai-page .taikai-entry-header {
		display: none;
	}

	body.taikai-page .taikai-menu-toggle {
		position: relative;
		z-index: 1;
		display: flex;
		flex: 0 0 92px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		height: 56px;
		margin: 0 0 0 -7px;
		padding: 0;
		background: linear-gradient(90deg, #f33b0b, #f47b08);
		border: 0;
		border-radius: 0;
		box-shadow: none;
		transition: filter 0.2s ease, opacity 0.2s ease;
		cursor: pointer;
	}

	body.taikai-page .taikai-menu-toggle span {
		display: block;
		width: 28px;
		height: 2px;
		background: #fff;
		border-radius: 2px;
		transform: translateX(5px);
	}

	body.taikai-page .taikai-mobile-menu {
		position: fixed;
		z-index: 110;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		height: auto;
		padding: 0;
		background: transparent;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-100%);
		transition: transform 0.42s ease, opacity 0.3s ease, visibility 0s linear 0.42s;
	}

	body.admin-bar.taikai-page .taikai-mobile-menu {
		top: 46px;
		height: auto;
	}

	body.taikai-page .taikai-mobile-menu.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
		transition-delay: 0s;
	}

	body.taikai-page .taikai-mobile-menu-panel {
		position: relative;
		width: 100%;
		padding: 0 0 38px;
		background: #ebebf1eb;
		border-radius: 0 0 28px 28px;
		box-shadow: 0 12px 28px rgba(74, 74, 74, 0.22);
		overflow: hidden;
	}

	body.taikai-page .taikai-menu-close {
		position: absolute;
		z-index: 2;
		top: 0;
		right: 0;
		display: block;
		width: 92px;
		height: 56px;
		margin: 0;
		padding: 0;
		background: linear-gradient(90deg, #f33b0b, #f47b08);
		border: 0;
		border-radius: 0;
		box-shadow: none;
		transition: filter 0.2s ease, opacity 0.2s ease;
		cursor: pointer;
	}

	body.taikai-page .taikai-menu-toggle:hover,
	body.taikai-page .taikai-menu-toggle:active,
	body.taikai-page .taikai-menu-toggle:focus-visible,
	body.taikai-page .taikai-menu-close:hover,
	body.taikai-page .taikai-menu-close:active,
	body.taikai-page .taikai-menu-close:focus-visible {
		filter: brightness(1.12);
		opacity: 0.85;
	}

	body.taikai-page .taikai-menu-close span {
		position: absolute;
		top: 27px;
		left: 32px;
		display: block;
		width: 28px;
		height: 2px;
		background: #fff;
		border-radius: 2px;
	}

	body.taikai-page .taikai-menu-close span:first-child {
		transform: rotate(45deg);
	}

	body.taikai-page .taikai-menu-close span:last-child {
		transform: rotate(-45deg);
	}

	body.taikai-page .taikai-mobile-nav {
		display: block;
		width: calc(100% - 92px);
		margin: 0;
		padding: 0;
	}

	body.taikai-page .taikai-mobile-nav-item {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 82px;
		padding: 0 28px;
		color: #444 !important;
		font-size: 17px;
		font-weight: 400;
		text-decoration: none !important;
		border-bottom: 2px solid #c4c0c0;
		transition: color 0.2s ease;
	}

	body.taikai-page .taikai-mobile-nav-item:hover,
	body.taikai-page .taikai-mobile-nav-item:focus-visible,
	body.taikai-page .taikai-mobile-nav-item:active {
		color: #888 !important;
		border-bottom-color: #c4c0c0;
		filter: none;
		opacity: 1;
	}

	body.taikai-page .taikai-mobile-nav-arrow,
	body.taikai-page .taikai-mobile-entry-arrow {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 30px;
		width: 30px;
		height: 30px;
		color: #666;
		font-size: 12px;
		background: #fff;
		border-radius: 50%;
	}

	body.taikai-page .taikai-mobile-nav-arrow {
		flex-basis: 24px;
		width: 24px;
		height: 24px;
		font-size: 9px;
	}

	body.taikai-page .taikai-mobile-entry-arrow {
		display: block !important;
		max-width: 30px !important;
		max-height: 30px !important;
		margin: 0 !important;
		background: transparent;
		object-fit: contain;
	}

	body.taikai-page .taikai-mobile-entry {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 64px;
		margin: 28px 18px 0;
		padding: 0 14px;
		color: #fff !important;
		text-decoration: none !important;
		background: linear-gradient(90deg, #f33b0b, #f47b08);
		border-radius: 34px;
	}

	body.taikai-page .taikai-mobile-entry-text {
		display: flex;
		align-items: baseline;
		gap: 4px;
		white-space: nowrap;
		transform: translateX(22px);
	}

	body.taikai-page .taikai-mobile-entry-main {
		font-size: 20px;
		font-weight: 700;
	}

	body.taikai-page .taikai-mobile-entry-sub {
		font-size: 14px;
		font-weight: 400;
	}
}

@media (max-width: 782px) {
	body.admin-bar.taikai-page .taikai-header {
		top: 46px;
	}
}

@media (max-width: 374px) {
	body.taikai-page .taikai-home-button {
		gap: 2px;
		padding: 0 2px;
	}

	body.taikai-page .taikai-home-icon {
		flex-basis: 18px;
		width: 18px !important;
		min-width: 18px !important;
		max-width: 18px !important;
	}

	body.taikai-page .taikai-menu-toggle {
		flex-basis: 68px;
		padding: 0;
	}

	body.taikai-page .taikai-menu-close {
		width: 68px;
	}

	body.taikai-page .taikai-menu-close span {
		left: 20px;
	}

	body.taikai-page .taikai-mobile-nav {
		width: calc(100% - 68px);
	}

	body.taikai-page .taikai-mobile-entry {
		margin-right: 8px;
		margin-left: 8px;
		padding: 0 12px;
	}

	body.taikai-page .taikai-mobile-entry-main {
		font-size: 18px;
	}

	body.taikai-page .taikai-mobile-entry-sub {
		font-size: 12px;
	}

	body.taikai-page .taikai-mobile-entry-arrow {
		flex-basis: 26px;
		width: 26px;
		height: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.taikai-page .taikai-mobile-menu {
		transition-duration: 0.01ms;
	}
}


/* =========================================================
   FIRST VIEW
   ========================================================= */

body.taikai-page .taikai-hero {
	position: relative;
	overflow: hidden;
	line-height: 0;
}

body.taikai-page .taikai-hero-image {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	margin: 0 !important;
}

@media (min-width: 768px) {
	body.taikai-page .taikai-hero {
		height: calc(60.319vw - 30px);
	}
}


/* =========================================================
   NEWS
   ========================================================= */

body.taikai-page .taikai-news {
	position: absolute;
	right: 0;
	bottom: 4.575%;
	left: 0;
	display: flex;
	align-items: center;
	height: 15%;
	min-height: 0;
	padding: clamp(5px, 0.75vw, 14px) 0;
	background: transparent;
	line-height: 1.7;
}

@media (min-width: 768px) {
	body.taikai-page .taikai-news {
		bottom: 0;
		height: calc(14.568vw - 30px);
	}
}

body.taikai-page .taikai-news .taikai-inner {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	column-gap: 75px;
	align-items: center;
	width: min(1140px, calc(100% - 40px));
}

@media (min-width: 901px) {
	body.taikai-page .taikai-news .taikai-inner {
		padding-right: clamp(50px, 7vw, 100px);
		padding-left: clamp(50px, 7vw, 100px);
	}
}

body.taikai-page .taikai-news h2 {
	color: #fff;
	font-size: clamp(30px, 3.2vw, 54px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-align: left;
}

body.taikai-page .taikai-news-list {
	display: grid;
	row-gap: clamp(4px, 0.7vw, 12px);
	width: 100%;
	margin-top: 0;
}

body.taikai-page .taikai-news-item {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	column-gap: clamp(18px, 3vw, 60px);
	align-items: baseline;
	width: 100%;
	color: #fff;
	font-size: clamp(13px, 1.25vw, 18px);
	font-weight: 400;
	line-height: 1.65;
}

body.taikai-page .taikai-news-item time {
	display: block;
	white-space: nowrap;
}

body.taikai-page .taikai-news-title {
	display: block;
	min-width: 0;
	color: inherit !important;
	overflow-wrap: anywhere;
	text-decoration: none !important;
}

body.taikai-page .taikai-news-title:hover,
body.taikai-page .taikai-news-title:focus-visible {
	text-decoration: underline !important;
}

@media (max-width: 767px) {

	body.taikai-page .taikai-news {
		position: static;
		display: block;
		height: auto;
		min-height: 0;
		padding: 20px 0 22px;
		background: #f9f7f5;
	}

	body.taikai-page .taikai-news .taikai-inner {
		display: block;
		width: calc(100% - 40px);
	}

	body.taikai-page .taikai-news-list {
		row-gap: 12px;
		margin-top: 14px;
	}

	body.taikai-page .taikai-news h2 {
		color: #999;
		font-size: 24px;
		text-align: center;
	}

	body.taikai-page .taikai-news-item {
		grid-template-columns: max-content minmax(0, 1fr);
		column-gap: 10px;
		color: #3f3f3f;
		font-size: 14px;
	}
}

/* =========================================================
   PROGRAMME
   ========================================================= */

body.taikai-page .taikai-programme {
	padding: 45px 0 50px;
	background: linear-gradient(
		90deg,
		rgba(231, 199, 43, 0.18) 0%,
		rgba(221, 81, 48, 0.18) 25%,
		rgba(183, 62, 135, 0.18) 50%,
		rgba(23, 160, 178, 0.18) 75%,
		rgba(25, 161, 94, 0.18) 100%
	);
}

body.taikai-page .taikai-programme .taikai-inner {
	padding: 45px clamp(50px, 7vw, 100px) 43px;
	background: transparent;
}

body.taikai-page .taikai-programme h2 {
	color: #424900;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-align: center;
}

body.taikai-page .taikai-programme-ja {
	margin-top: 14px;
	color: #424900;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

body.taikai-page .taikai-programme-accordions {
	display: grid;
	gap: 20px;
	margin-top: 44px;
}

body.taikai-page .taikai-programme-accordion {
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 2px 8px rgba(0, 97, 169, 0.05);
	overflow: hidden;
}

body.taikai-page .taikai-programme-accordion-title {
	position: relative;
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	align-items: center;
	column-gap: 60px;
	min-height: 96px;
	padding: 22px 88px 22px 52px;
	color: #201b1b;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
	list-style: none;
	transition: background-color 0.2s ease;
}

body.taikai-page .taikai-programme-accordion-date {
	display: flex;
	align-items: flex-end;
	color: #424900;
	font-weight: 700;
	transform: translateY(-3px);
	white-space: nowrap;
}

body.taikai-page .taikai-programme-month {
	font-size: 22px;
	line-height: 1;
}

body.taikai-page .taikai-programme-day {
	font-size: 38px;
	line-height: 1;
	transform: translateY(3px);
}

body.taikai-page .taikai-programme-weekday {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-left: 8px;
	border: 1px solid #424900;
	border-radius: 50%;
	font-size: 13px;
	line-height: 1;
}

body.taikai-page .taikai-programme-weekday > span {
	transform: translateY(-1px);
}

body.taikai-page .taikai-programme-accordion-heading {
	display: block;
	min-width: 0;
	overflow-wrap: anywhere;
	white-space: normal;
}

body.taikai-page .taikai-programme-accordion-kicker {
	display: block;
	margin-top: 2px;
	margin-bottom: 2px;
	color: #201b1b;
	font-size: 15px;
	font-weight: 700;
}

body.taikai-page .taikai-programme-accordion-label {
	display: block;
	font-size: 20px;
}

body.taikai-page .taikai-programme-mobile-break {
	display: none;
}

body.taikai-page .taikai-programme-accordion-description {
	display: block;
	margin-top: 2px;
	color: #201b1b;
	font-size: 17px;
	font-weight: 400;
}

body.taikai-page .taikai-programme-accordion-note {
	display: block;
	margin-top: 2px;
	color: #201b1b;
	font-size: 15px;
	font-weight: 400;
}

body.taikai-page .taikai-programme-accordion-theme {
	margin-top: 6px;
	font-size: 17px;
	line-height: 1.45;
	white-space: nowrap;
}

body.taikai-page .taikai-programme-accordion-title::-webkit-details-marker {
	display: none;
}

body.taikai-page .taikai-programme-accordion-title::marker {
	content: "";
}

body.taikai-page .taikai-programme-accordion-title::before {
	position: absolute;
	top: 50%;
	right: 24px;
	width: 25px;
	height: 25px;
	background-color: #6481CB;
	background-image:
		linear-gradient(#fff, #fff),
		linear-gradient(#fff, #fff);
	background-position: center, center;
	background-repeat: no-repeat;
	background-size: 12px 2px, 2px 12px;
	border-radius: 50%;
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
	content: "";
	transform: translateY(-50%);
}

body.taikai-page .taikai-programme-accordion[open] > .taikai-programme-accordion-title::before {
	background-image: linear-gradient(#fff, #fff);
	background-size: 12px 2px;
}

body.taikai-page .taikai-programme-accordion-title:hover,
body.taikai-page .taikai-programme-accordion-title:focus-visible {
	background-color: rgba(8, 123, 193, 0.06);
}

body.taikai-page .taikai-programme-table {
	width: 100%;
	padding: 0 52px 34px;
}

body.taikai-page .taikai-programme-table .tablepress {
	table-layout: auto;
	border: 0 !important;
	border-right: 0 !important;
	border-left: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

body.taikai-page .taikai-programme-table .tablepress thead {
	display: none !important;
}

body.taikai-page .taikai-programme-table .tablepress tbody {
	border-top: 1px solid #aaa;
}

body.taikai-page .taikai-programme-table .tablepress thead th,
body.taikai-page .taikai-programme-table .tablepress tbody th,
body.taikai-page .taikai-programme-table .tablepress tbody td {
	padding: 12px 0;
	border-top: 0 !important;
	border-right: 0 !important;
	border-bottom: 1px solid #aaa !important;
	border-left: 0 !important;
	color: #201b1b;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	vertical-align: top;
}

body.taikai-page .taikai-programme-table .tablepress thead th:first-child,
body.taikai-page .taikai-programme-table .tablepress tbody th:first-child,
body.taikai-page .taikai-programme-table .tablepress tbody td:first-child {
	width: 1%;
	padding-left: 0;
	padding-right: 5px;
	white-space: nowrap;
}

body.taikai-page .taikai-programme-table .tablepress thead th:nth-child(2),
body.taikai-page .taikai-programme-table .tablepress tbody th:nth-child(2),
body.taikai-page .taikai-programme-table .tablepress tbody td:nth-child(2) {
	width: 1%;
	padding-right: 16px;
	padding-left: 0;
	white-space: nowrap;
}

body.taikai-page .taikai-programme-table .tablepress thead th:nth-child(n + 3),
body.taikai-page .taikai-programme-table .tablepress tbody th:nth-child(n + 3),
body.taikai-page .taikai-programme-table .tablepress tbody td:nth-child(n + 3) {
	width: auto;
	padding-left: 0;
	font-size: 15px;
	line-height: 1.6;
}

body.taikai-page .taikai-programme-table .tablepress tbody th:nth-child(n + 3)::first-line,
body.taikai-page .taikai-programme-table .tablepress tbody td:nth-child(n + 3)::first-line {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
}

body.taikai-page .taikai-programme-table .tablepress thead th:last-child,
body.taikai-page .taikai-programme-table .tablepress tbody th:last-child,
body.taikai-page .taikai-programme-table .tablepress tbody td:last-child {
	padding-right: 0;
}

body.taikai-page .taikai-programme-table .tablepress tbody tr:last-child th,
body.taikai-page .taikai-programme-table .tablepress tbody tr:last-child td {
	border-bottom: 0 !important;
}

body.taikai-page .taikai-programme-table .tablepress strong,
body.taikai-page .taikai-programme-table .tablepress b {
	font-weight: 700;
}

body.taikai-page .taikai-programme-documents {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 24px;
	align-items: center;
	justify-content: center;
	width: min(1140px, calc(100% - 40px));
	margin: 22px auto 0;
}

body.taikai-page .taikai-programme-document-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 0;
	min-height: 34px;
	padding: 2px 12px;
	background: transparent;
	color: #201b1b !important;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	white-space: nowrap;
	border: 1px solid #777;
	border-radius: 999px;
	text-decoration: none !important;
	transition: background-color 0.2s ease;
}

body.taikai-page .taikai-programme-document-link:hover,
body.taikai-page .taikai-programme-document-link:focus-visible {
	background-color: rgba(255, 255, 255, 0.65);
}

body.taikai-page .taikai-programme-document-link[hidden] {
	display: none !important;
}

body.taikai-page .taikai-pdf-icon {
	display: block !important;
	flex: 0 0 16px;
	width: 16px !important;
	height: 22px !important;
	margin: 0 !important;
	object-fit: contain;
}

body.taikai-page .taikai-entry {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(1140px, calc(100% - 40px));
	margin: 60px auto 0;
}

body.taikai-page .taikai-entry-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: min(467px, 100%);
	min-height: 78px;
	padding: 12px 34px !important;
	background: linear-gradient(
		90deg,
		#f20c08 0%,
		#f4540c 55%,
		#f39a20 100%
	) !important;
	border-radius: 999px !important;
	color: #fff !important;
	letter-spacing: 0.03em;
	text-align: center;
	text-decoration: none !important;
}

body.taikai-page .taikai-entry-button-main {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

body.taikai-page .taikai-entry-button-sub {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	white-space: nowrap;
}

body.taikai-page .taikai-entry-button-arrow {
	display: block !important;
	flex: 0 0 30px;
	width: 30px !important;
	height: 30px !important;
	margin: 0 0 0 18px !important;
	object-fit: contain;
}

body.taikai-page .taikai-qr {
	margin-top: 52px;
}

body.taikai-page .taikai-qr-image {
	display: block !important;
	width: 135px !important;
	height: auto !important;
	margin: 0 !important;
}

@media (max-width: 767px) {

	body.taikai-page .taikai-programme {
		padding: 22px 0 25px;
	}

	body.taikai-page .taikai-programme .taikai-inner {
		width: 100%;
		padding: 18px 20px 27px;
	}

	body.taikai-page .taikai-programme h2 {
		color: #424900;
		font-size: 24px;
	}

	body.taikai-page .taikai-programme-ja {
		margin-top: 7px;
		font-size: 16px;
	}

	body.taikai-page .taikai-programme-accordions {
		gap: 14px;
		margin-top: 32px;
	}

	body.taikai-page .taikai-programme-accordion {
		border-radius: 22px;
	}

	body.taikai-page .taikai-programme-accordion-title {
		grid-template-columns: 1fr;
		row-gap: 4px;
		min-height: 82px;
		padding: 16px 58px 16px 20px;
		font-size: 15px;
	}

	body.taikai-page .taikai-programme-accordion-heading {
		display: block;
		white-space: normal;
	}

	body.taikai-page .taikai-programme-accordion-date {
		align-items: flex-end;
	}

	body.taikai-page .taikai-programme-month {
		font-size: 18px;
	}

	body.taikai-page .taikai-programme-day {
		font-size: 30px;
	}

	body.taikai-page .taikai-programme-weekday {
		width: 21px;
		height: 21px;
		margin-left: 6px;
		font-size: 11px;
	}

	body.taikai-page .taikai-programme-accordion-label {
		font-size: 18px;
	}

	body.taikai-page .taikai-programme-mobile-break {
		display: block;
	}

	body.taikai-page .taikai-programme-accordion-kicker {
		font-size: 14px;
	}

	body.taikai-page .taikai-programme-accordion-description {
		display: block;
		margin-top: 3px;
		font-size: 16px;
	}

	body.taikai-page .taikai-programme-accordion-theme {
		font-size: 16px;
		white-space: normal;
	}

	body.taikai-page .taikai-programme-accordion-title::before {
		right: 16px;
		width: 25px;
		height: 25px;
		background-size: 12px 2px, 2px 12px;
	}

	body.taikai-page .taikai-programme-table {
		padding: 0 20px 24px;
		overflow-x: visible;
	}

	body.taikai-page .taikai-programme-table .tablepress {
		display: block;
		width: 100%;
		min-width: 0;
	}

	body.taikai-page .taikai-programme-table .tablepress tbody {
		display: block;
		width: 100%;
	}

	body.taikai-page .taikai-programme-table .tablepress tbody tr {
		display: grid;
		grid-template-columns: max-content minmax(0, 1fr);
		column-gap: 6px;
		width: 100%;
		padding: 18px 0;
		border-bottom: 1px solid #aaa;
	}

	body.taikai-page .taikai-programme-table .tablepress thead th,
	body.taikai-page .taikai-programme-table .tablepress tbody th,
	body.taikai-page .taikai-programme-table .tablepress tbody td {
		display: block;
		width: auto;
		padding: 0;
		border-bottom: 0 !important;
		font-size: 14px;
	}

	body.taikai-page .taikai-programme-table .tablepress tbody th:first-child,
	body.taikai-page .taikai-programme-table .tablepress tbody td:first-child,
	body.taikai-page .taikai-programme-table .tablepress tbody th:nth-child(2),
	body.taikai-page .taikai-programme-table .tablepress tbody td:nth-child(2) {
		width: auto;
		padding: 0;
	}

	body.taikai-page .taikai-programme-table .tablepress tbody th:nth-child(n + 3),
	body.taikai-page .taikai-programme-table .tablepress tbody td:nth-child(n + 3) {
		grid-column: 1 / -1;
		width: 100%;
		margin-top: 6px;
		padding: 0;
		font-size: 14px;
		text-align: left;
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	body.taikai-page .taikai-programme-table .tablepress tbody tr:last-child {
		border-bottom: 0;
	}

	body.taikai-page .taikai-programme-table .tablepress tbody th:nth-child(n + 3)::first-line,
	body.taikai-page .taikai-programme-table .tablepress tbody td:nth-child(n + 3)::first-line {
		font-size: 16px;
		line-height: 2.1;
	}

	body.taikai-page .taikai-programme-documents {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 12px;
		width: calc(100% - 32px);
		margin-top: 18px;
	}

	body.taikai-page .taikai-programme-document-link {
		width: 100%;
		font-size: 14px;
		min-height: 44px;
		padding: 2px 10px;
	}

	body.taikai-page .taikai-entry {
		width: calc(100% - 32px);
		margin-top: 40px;
	}

	body.taikai-page .taikai-entry-button {
		min-height: 64px;
		padding: 10px 22px !important;
	}

	body.taikai-page .taikai-entry-button-main {
		font-size: 23px;
	}

	body.taikai-page .taikai-entry-button-sub {
		font-size: 15px;
	}

	body.taikai-page .taikai-entry-button-arrow {
		flex-basis: 24px;
		width: 24px !important;
		height: 24px !important;
		margin-left: 10px !important;
	}

	body.taikai-page .taikai-qr {
		margin-top: 28px;
		margin-bottom: 20px;
	}

	body.taikai-page .taikai-qr-image {
		width: 120px !important;
	}
}


/* =========================================================
   RELATED BANNERS
   ========================================================= */

body.taikai-page .taikai-banners {
	padding: 50px 0;
	background: #fff;
}

body.taikai-page .taikai-banners-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	width: min(530px, calc(100% - 40px));
}

body.taikai-page .taikai-banner-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}

body.taikai-page .taikai-banner-image {
	display: block !important;
	margin: 0 !important;
	object-fit: contain;
}

body.taikai-page .taikai-banner-item-mext .taikai-banner-image {
	width: 55px !important;
	height: auto !important;
}

body.taikai-page .taikai-banner-item-unesco .taikai-banner-image {
	width: 100px !important;
	height: auto !important;
}

body.taikai-page .taikai-banner-item-accu {
	width: 132px;
	height: 41px;
	overflow: hidden;
}

body.taikai-page .taikai-banner-item-accu .taikai-banner-image {
	width: 140px !important;
	max-width: none !important;
	height: auto !important;
}

@media (max-width: 767px) {

	body.taikai-page .taikai-banners {
		padding: 50px 0;
	}

	body.taikai-page .taikai-banners-inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
	}

	body.taikai-page .taikai-banner-item-mext .taikai-banner-image {
		width: 48px !important;
	}

	body.taikai-page .taikai-banner-item-unesco .taikai-banner-image {
		width: 88px !important;
	}

	body.taikai-page .taikai-banner-item-accu {
		width: 120px;
		height: 37px;
	}

	body.taikai-page .taikai-banner-item-accu .taikai-banner-image {
		width: 127px !important;
	}
}


/* =========================================================
   FOOTER
   ========================================================= */

body.taikai-page .taikai-footer-contact {
	padding: 50px 20px !important;
	background: #0079cd;
	color: #fff;
	text-align: center;
}

body.taikai-page .taikai-footer-contact .taikai-footer-inner {
	width: min(1140px, 100%);
}

body.taikai-page .taikai-footer-contact h2 {
	display: block;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-align: center !important;
}

body.taikai-page .taikai-footer-contact-body {
	margin-top: 28px;
}

body.taikai-page .taikai-footer-organization,
body.taikai-page .taikai-footer-office {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.5;
}

body.taikai-page .taikai-footer-office {
	font-size: 20px;
}

body.taikai-page .taikai-footer-address {
	margin-top: 12px;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.55;
}

body.taikai-page .taikai-mobile-break {
	display: none;
}

body.taikai-page .taikai-footer-copyright {
	padding: 18px 20px;
	background: #9a9a9a;
	color: #fff;
	text-align: center;
}

body.taikai-page .taikai-footer-copyright p {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

@media (max-width: 767px) {

	body.taikai-page .taikai-footer-contact {
		padding: 50px 18px !important;
	}

	body.taikai-page .taikai-footer-contact h2 {
		font-size: 24px;
	}

	body.taikai-page .taikai-footer-contact-body {
		margin-top: 24px;
	}

	body.taikai-page .taikai-footer-organization,
	body.taikai-page .taikai-footer-office {
		font-size: 14px;
	}

	body.taikai-page .taikai-footer-office {
		font-size: 20px;
	}

	body.taikai-page .taikai-footer-organization {
		font-size: min(14px, 3vw);
		white-space: nowrap;
	}

	body.taikai-page .taikai-footer-postal-address {
		font-size: min(12px, 2.7vw);
		white-space: nowrap;
	}

	body.taikai-page .taikai-footer-address {
		font-size: 12px;
	}

	body.taikai-page .taikai-mobile-break {
		display: inline;
	}

	body.taikai-page .taikai-footer-copyright {
		padding: 15px 16px;
	}

	body.taikai-page .taikai-footer-copyright p {
		font-size: 12px;
	}
}
