@charset "UTF-8";

/**
 * uaplus.css version 0.0.1
 */

*,
*::after,
*::before {
	box-sizing: border-box;
}

:focus-visible {
	outline-offset: 3px;
}

:where(html) {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

:where(html) {
	line-height: 1.5;
}

/* :where(html) {
	scrollbar-gutter: stable;
} */

:where(h1) {
	font-size: 2em;
	margin-block: 0.67em;
}

:where(abbr[title]) {
	cursor: help;
	text-decoration-line: underline;
	text-decoration-style: dotted;
}

@media (forced-colors: active) {
	mark {
		color: HighlightText;
		background-color: Highlight;
	}
}

:where(del, ins, s)::before,
:where(del, ins, s)::after {
	clip-path: inset(100%);
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	width: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	content: "test"
}

:where(s)::before {
	content: "stricken text start ";
}

:where(s)::after {
	content: " stricken text end";
}

:where(del)::before {
	content: "deletion start ";
}

:where(del)::after {
	content: " deletion end";
}

:where(ins)::before {
	content: "insertion start ";
}

:where(ins)::after {
	content: " insertion end";
}

:where(audio, iframe, img, svg, video) {
	max-block-size: 100%;
	max-inline-size: 100%;
}

:where(fieldset) {
	min-inline-size: 0;
}

:where(label):has(+ :where(textarea, input, select)) {
	display: block;
}

:where(textarea:not([rows])) {
	min-block-size: 6em;
}

:where(button, input, select, textarea) {
	font-family: inherit;
	font-size: inherit;
}


:where([type="search"]) {
	-webkit-appearance: textfield;
}

/* iOS only */
@supports (-webkit-touch-callout: none) {
	:where([type="search"]) {
		border: 1px solid -apple-system-secondary-label;
		background-color: canvas;
	}
}

:where([type="tel"], [type="url"], [type="email"], [type="number"]):not( :placeholder-shown) {
	direction: ltr;
}

:where(table) {
	border-collapse: collapse;
	border: 1px solid;
}

:where(th, td) {
	border: 1px solid;
	padding: 0.25em 0.5em;
}

:where(dialog)::backdrop {
	background: oklch(0% 0 0 / 0.3);
}

:where(dialog),
:where(dialog)::backdrop {
	opacity: 0;
	transition: opacity 300ms ease-out, display 300ms allow-discrete,
		overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
	opacity: 1;
}

@starting-style {

	:where(dialog[open]),
	:where(dialog[open])::backdrop {
		opacity: 0;
	}
}

[hidden]:not([hidden="until-found"]) {
	display: none !important;
}

/* =======================================================
common
======================================================= */
:root {
	scroll-padding: 50px;
	scroll-behavior: smooth;
}

html, body, section, h1, h2, h3, h4, h5, p, dl, dt, dd, div, p {
	font-size: 100%;
	padding: 0;
	margin: 0;
}

img {
	border: 0;
	max-width: 100%;
	height: auto;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wrap {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	background-color: #F7A400;
	background-image: url(../images/bg_on.png);
	background-repeat: repeat;
	background-size: auto auto;
	background-position: top center;
	background-attachment: fixed;
	width: 100%;
	min-width: 320px;
	display: flex;
	position: relative;
	color: #471e1e;
}

.wrap .bold {
	font-weight: bold;
}


.wrap .embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

.wrap .embed-container iframe, .wrap .embed-container object, .wrap .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* animation  */
.animation {
	opacity: 0;
	visibility: hidden;
	transition: 1.5s;
	transform: translateY(60px);
}

.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-up {
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	transition: all 1s;
}

.scroll-up.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

@keyframes fuwafuwa {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}



/* =======================================================
pc
======================================================= */
/* left */
.wrap .pc_left {
	position: relative;
	order: 1;
	flex-grow: 1;
	/* 拡張可能（余白を広げる） */
	flex-shrink: 1;
	/* 縮小可能（スペースが足りないときに縮む） */
	flex-basis: auto;
	/* 初期サイズは内容に応じて自動 */

	background-color: #F7A400;
	background-image: url(../images/bg_on.png);
	background-repeat: repeat;
	background-size: auto auto;
	background-position: top center;
	background-attachment: fixed;

	border-right: 10px solid #EB5C01;
	padding: 5%;
}

@media screen and (max-width: 1600px) {
	.wrap .pc_left {
		width: calc(100% - 800px);
	}
}

@media screen and (max-width: 1300px) {
	.wrap .pc_left {
		display: none;
	}
}

.wrap .pc_left .left_border {
	position: absolute;
	background-image: url(../images/bg_border.webp);
	background-color: #eb5c01;
	-webkit-animation: bgscroll 15s linear infinite;
	animation: bgscroll 15s linear infinite;
	width: 50px;
	height: 100%;
	top: 0;
	right: 0;
}

@-webkit-keyframes bgscroll {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: 100% 550px;
	}
}

@keyframes bgscroll {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: 100% 550px;
	}
}

.wrap .pc_left .pc_left_box {
	position: sticky;
	top: 50%;
	transform: translateY(-50%);

	width: 100%;
	max-width: 1500px;
	text-align: center;
	margin: 0px auto;
}

.wrap .pc_left .pc_left_box h1 {
	background-image: url(../images/bg_header.png);
	background-repeat: repeat;
	background-size: 100% 100%;
	background-position: top center;
	text-align: center;

	line-height: 0;
	padding-top: 5%;
	margin: 0 auto;

	animation: 3s fuwafuwa infinite;
}

.wrap .pc_left .pc_left_box .eventPlace {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 20px auto 0px;
}

.wrap .pc_left .pc_left_box .eventPlace .title {
	width: 15%;
	max-width: 100px;
	padding-right: 10px;
	flex-shrink: 0;
}

.wrap .pc_left .pc_left_box .eventPlace .placeList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wrap .pc_left .pc_left_box .eventPlace .placeList li {
	width: calc((100% / 2) - 10px);
}

/* right */
.wrap .pc_right {
	order: 3;
	flex-shrink: 0;
	/* 幅を縮めない */

	background-color: #ED7B02;
	width: 300px;
	border-left: 10px solid #EB5C01;
	padding: 20px;
}

@media screen and (max-width: 1600px) {
	.wrap .pc_right {
		display: none;
	}
}

.wrap .pc_right .pc_right_box {
	position: sticky;
	top: 50%;
	transform: translateY(-50%);

	width: 100%;
}

.wrap .pc_right .rightLink {
	display: block;
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
}

.wrap .pc_right .rightLink .rightList h3 {
	position: relative;
	background-color: #FFE00F;
	color: #EB5C01;
	padding: 10px;
	margin: 20px 0px 10px;

	font-size: 15px;
}

.wrap .pc_right .rightLink .rightList h3::before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 10px transparent;
	border-right: solid 20px rgb(189, 91, 11);
}

.wrap .pc_right .rightLink .rightList h3 a {
	color: #fff;
}

.wrap .pc_right .rightLink .rightList ul {
	padding: 0;
}

.wrap .pc_right .rightLink .rightList ul li {
	font-size: 12px;
	padding: 10px 0 0;
	text-indent: 0%;
	padding-left: 0;
	margin: 5px 0px;
}

.wrap .pc_right .rightLink .rightList ul li::before {
	content: "-";
	color: #FFE00F;
	padding-right: 10px;
}

.wrap .pc_right .rightLink .rightList ul li a {
	color: #fff;
	text-decoration: none;
}

.wrap .pc_right .rightLink .rightList ul li a:hover {
	color: #FFE00F;
}

/* main */
.wrap .main {
	scroll-behavior: smooth;

	order: 2;
	flex-shrink: 0;
	/* 幅を縮めない */

	background-color: #EB5C01;

	width: 800px;
	min-width: 320px;
	height: 100%;

	font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
}

@media screen and (max-width: 1300px) {
	.wrap .main {
		width: 100%;
		max-width: 800px;
		margin: 0 auto;
	}
}

.wrap .main section {
	padding: 5% 0px;
}

.wrap .main section:nth-child(odd) {
	background-color: #FFE00F;
}

.wrap .index_top section h2 {
	font-family: "RocknRoll One", sans-serif;
	font-size: clamp(1rem, 0.333rem + 3.33vw, 2rem);
	font-weight: normal;

	background-color: #FFE00F;
	width: fit-content;
	border-radius: 30px 30px 0px 0px;
	color: #EB5C01;

	padding: 10px 30px;
	margin: 0px auto;
}


.wrap .index_top section:nth-child(odd) h2 {
	background-color: #fff;

	color: #EB5C01;

	padding: 10px 30px;
	margin: 0px auto;
}

.wrap .main section .inner {
	background-color: #fffad9;
	border: 10px solid #FFE00F;
	border-radius: 30px;
	padding: 2%;
	margin: 0 5%;
}

@media screen and (max-width: 800px) {
	.wrap .main section .inner {
		border-width: 5px;
		margin: 0 5px;
	}
}

.wrap .main section:nth-child(odd) .inner {
	border-color: #fff;
}





/* =======================================================
共通ナビゲーション
======================================================= */

/* top nav */
@media screen and (max-width: 800px) {
	nav {
		width: 100%;
		position: relative;
	}
}

nav#navi {
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.229);

	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	opacity: 1;
	visibility: visible;
	animation: slideDown 0.3s ease-in-out;
	z-index: 1000;
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0%);
	}
}

nav>.menu {
	width: 400px;
	margin: 0 auto;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1000;
}

@media screen and (min-width: 1600px) {
	nav>.menu {
		display: none;
		width: 100%;
		top: 60px;
	}
}

@media screen and (max-width: 800px) {
	nav>.menu {
		display: none;
		width: 100%;
		top: 60px;
	}
}

nav a.logo {
	display: inline-block;
	height: 70px;
	padding: 10px;
	margin-bottom: 0;
}

@media screen and (max-width: 800px) {
	nav a.logo {
		height: 60px;
		padding: 10px;
		margin-bottom: 0;
	}
}

nav>.menu>li {
	display: inline-block;
	width: calc(100% / 2);
	font-size: 1rem;
	vertical-align: top;
}

@media screen and (max-width: 800px) {
	nav>.menu>li {
		width: 100%;
	}

}

nav>.menu>li>a {
	border: none;
}

@media screen and (max-width: 800px) {
	nav>.menu>li>a {
		display: block;
		width: 100%;
		padding: 30px 0;
		border-bottom: 1px solid #ccc;
		background-color: #fff;
	}
}

.menu__item {
	display: block;
	padding: 35px 5px;
	text-align: center;
	font-size: 0.9rem;
	color: #fff;
	text-decoration: none;

	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
}


@media screen and (min-width: 1600px) {
	.menu__item {
		display: none;
	}
}

@media screen and (max-width: 800px) {
	.menu__item {
		position: relative;
	}

	.menu__item::after {
		content: "＋";
		display: inline-block;
		position: absolute;
		top: 30px;
		right: 20px;
	}

	nav .open::after {
		content: "－";
	}

}

nav>.menu>li:first-child>a {
	border-top: none;
	border-left: none;
}

@media screen and (max-width: 800px) {
	nav>.menu>li:first-child>a {
		border-top: 1px solid #ccc;
	}
}

nav>.menu>li>.manu__tree {
	display: none;
}

nav>.menu>li li>a {
	display: block;
	padding: 20px 10px;
	border-bottom: 1px solid #daa40f;
	background-color: #ffd900;
	color: #471e1e;
	font-weight: bold;
	font-size: 0.9rem;
	text-decoration: none;
}

#navi .sosei {
	background-color: #007bc9;
}

#navi .factory {
	background-color: #e04e66;
}

.manu__tree li a:hover {
	background-color: #fff36a;
}

.toggle {
	display: none;
}

@media screen and (max-width: 800px) {
	.toggle {
		display: block;
		width: 30px;
		height: 30px;
		background-color: #da0000;
		border-radius: 3px;
		color: #fff;
		text-align: center;
		line-height: 1;
		position: absolute;
		top: 15px;
		right: 10px;
		z-index: 1000;
	}

	.toggle span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 8px;
		height: 3px;
		border-radius: 2px;
		background: #fff;
		width: 48%;
	}
}

.toggle span:nth-of-type(1) {
	top: 7px;
}

.toggle span:nth-of-type(2) {
	top: 14px;
}

.toggle span:nth-of-type(3) {
	top: 21px;
}

.toggle.active span:nth-of-type(1) {
	top: 7px;
	left: 9px;
	transform: translateY(6px) rotate(-45deg);
	width: 40%;
}

.toggle.active span:nth-of-type(2) {
	opacity: 0;
}

.toggle.active span:nth-of-type(3) {
	top: 19px;
	left: 9px;
	transform: translateY(-6px) rotate(45deg);
	width: 40%;
}

/* pamphlet  */

#navi .pamphlet {
	position: absolute;
	top: 18px;
	/* right: 410px; */
	right: 10px;
	display: block;
	width: 150px;
	text-align: center;
}

@media screen and (max-width: 1600px) {
	#navi .pamphlet {
		right: 410px;
	}

}

@media screen and (max-width: 800px) {
	#navi .pamphlet {
		top: 16px;
		right: 50px;
	}
}

#navi .pamphlet a {
	display: block;
	background-color: #ED7B02;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	padding: 5px;
	border-radius: 15px;
}

#navi .pamphlet a:hover {
	background-color: #eda202;
}




/* footer */
#footerArea {
	background-color: #471e1e;
	padding: 100px 0;
}

@media screen and (max-width: 800px) {
	#footerArea {
		background-color: #471e1e;
		padding: 20px 0;
	}
}

#footerArea #footerLink {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
}

@media screen and (max-width: 800px) {
	#footerArea #footerLink {
		display: block;
		width: 90%;
	}
}

#footerArea #footerLink .linklst {
	width: 30%;
}

@media screen and (max-width: 800px) {
	#footerArea #footerLink .linklst {
		width: auto;
	}
}

#footerArea #footerLink .linklst h3 {
	color: #fff;
	padding: 10px 0 15px;
	font-size: 15px;
}

@media screen and (max-width: 800px) {
	#footerArea #footerLink .linklst h3 {
		padding: 30px 0 10px;
		font-size: 15px;
	}
}


#footerArea #footerLink .linklst h3 a {
	color: #fff;
}

#footerArea #footerLink .linklst ul {
	padding: 0;
}

@media screen and (max-width: 800px) {
	#footerArea #footerLink .linklst ul {
		border-top: 1px solid #eba6a6;
	}
}


#footerArea #footerLink .linklst ul li {
	font-size: 12px;
	padding: 7px 0;
	text-indent: -1.3em;
	padding-left: 1.3em;
}

@media screen and (max-width: 800px) {
	#footerArea #footerLink .linklst ul li {
		border-bottom: 1px solid #744343;
		padding: 10px 0;
		text-indent: 0%;
		padding-left: 0;
	}
}

#footerArea #footerLink .linklst ul li::before {
	content: "-";
	color: #ffe751;
	padding-right: 10px;
}

#footerArea #footerLink .linklst ul li a {
	color: #e5e5e5;
	text-decoration: none;
}

#footerArea #footerLink .linklst ul li a:hover {
	color: #ffe751;

}

#footerArea .footeronchan {
	text-align: center;
	width: 200px;
	margin: 0 auto;
	padding-top: 70px;
}

@media screen and (max-width: 800px) {
	#footerArea .footeronchan {
		padding-top: 30px;
	}
}


/* onちゃん登場情報 */
#onchanPhoto {
	background-image: url(../images/onchanArea.png), url(../images/bg_chara_guchi.png);
	background-repeat: no-repeat;
	background-size: 25% auto;
	background-position: top 3% right 6%, top 3% left 5%;
	padding: 10% 0px;
}

#onchanPhoto h2 {
	font-family: "RocknRoll One", sans-serif;
	font-size: clamp(1rem, 5vw, 2.5rem);
	font-weight: normal;
	text-align: center;

	background-color: #fff;
	width: fit-content;
	border-radius: 30px 30px 0px 0px;
	color: #EB5C01;

	padding: 10px 30px;
	margin: 0px auto;
}

#onchanPhoto .inner {
	background-color: #fffad9;
	border-color: #fff;
}

#onchanPhoto .listArea {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 5%;
}

#onchanPhoto .listArea .sosei,
#onchanPhoto .listArea .factory {
	width: calc(50% - 10px);
}

@media screen and (max-width: 800px) {

	#onchanPhoto .listArea .sosei,
	#onchanPhoto .listArea .factory {
		width: 100%;
	}
}

#onchanPhoto .listArea h3 {
	width: 100%;
	padding: 10px;
	font-size: clamp(1.125rem, 0.966rem + 0.8vw, 1.563rem);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	text-align: center;
	background-color: #F7A400;
	color: #fff;
	border-radius: 15px;
}

#onchanPhoto .listArea h3.day2 {
	background-color: #3badf5;
}

#onchanPhoto .listArea h3.day3 {
	background-color: #ed6d47;
}

#onchanPhoto .listArea h4 {
	background-color: #fff;
	font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
	text-align: center;
	color: #F7A400;
	padding: 5px 10px;
	/* margin-bottom: 0.5rem; */
	border: 2px solid #F7A400;
	border-radius: 10px;
}

#onchanPhoto .listArea h5 {
	background-color: rgba(247, 165, 0, 0.2);
	font-size: 1rem;
	text-align: center;
	color: #f57804;
	border-left: 4px dotted #F7A400;
	border-right: 4px dotted #F7A400;
	padding: 0.5rem;
	margin: 0.5rem 5px;
}

#onchanPhoto .listArea .date {
	display: inline-block;
	font-size: 0.8rem;
	color: #333333;
	padding-bottom: 5px;
}

#onchanPhoto .listArea .date::before {
	font-variation-settings:
		'FILL'1,
		'wght'400,
		'GRAD'0,
		'opsz'24;
	font-family: "Material Symbols Outlined";
	content: 'location_on';
	vertical-align: middle;
	color: #dc2323;
}

.onchan .onchanPhoto .listArea p {
	padding: 10px 5px;
	font-size: 0.9rem;
}

#onchanPhoto .listArea dl {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 5px;
	margin-bottom: 20px;
	font-size: 0.9rem;
}

#onchanPhoto .listArea dl dt {
	font-weight: bold;
	width: 50%;
	padding: 5px;
	flex-shrink: 0;
}

#onchanPhoto .listArea dl dd {
	width: 50%;
	padding: 5px;
}

#onchanPhoto .listArea dl dd img {
	vertical-align: baseline;
	width: 25px;
	margin: 2px;
}


#onchanPhoto .listArea dl dt:not(:first-of-type), #onchanPhoto .listArea dl dd:not(:first-of-type) {
	border-top: 1px solid #ece8d0;
}

#onchanPhoto .listArea .attention {
	font-size: 12px;
}

/* =======================================================
.main
======================================================= */

/* header */
.wrap .main .topHeader {
	position: relative;
	background-color: #FABE00;
	/* background-color: #EB5C01; */
	background-image: url(../images/bg_top_01.png), url(../images/bg_on.png);
	background-repeat: repeat-x, repeat;
	background-size: 8% auto, auto auto;
	background-position: top center;
	background-attachment: scroll, fixed;
	width: 100%;
	padding: 20px 0px 0px;
}

@media screen and (min-width: 1300px) {
	.wrap .main .topHeader .pc_hiddon {
		display: none;
	}
}

.wrap .main .topHeader h1 {
	background-image: url(../images/bg_flag_l.png), url(../images/bg_flag_r.png), url(../images/bg_header.png);
	background-repeat: no-repeat, no-repeat, repeat;
	background-size: 20% auto, 20% auto, 100% 100%;
	background-position: top left, top right, top center;
	text-align: center;

	line-height: 0;
	padding-top: 5%;
	margin: 0 auto;
}

.wrap .main .topHeader h1 img {
	width: 90%;
}

.wrap .main .topHeader .eventPlace {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 90%;
	margin: 20px auto 0px;
}

.wrap .main .topHeader .eventPlace .title {
	width: 100px;
	padding-right: 10px;
	flex-shrink: 0;
}

@media screen and (max-width: 600px) {
	.wrap .main .topHeader .eventPlace .title {
		width: 20%;
		padding-right: 10px;
		flex-shrink: 0;
	}
}

.wrap .main .topHeader .eventPlace .placeList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wrap .main .topHeader .eventPlace .placeList li {
	width: calc((100% / 2) - 5px);
}

@media screen and (max-width: 600px) {
	.wrap .main .topHeader .eventPlace .placeList li {
		width: 100%;
	}
}

.wrap .main .topHeader .headerImg {
	background-image: url(../images/bg_top_03.png), url(../images/img_daikansha.webp), url(../images/bg_top_02.png);
	background-repeat: repeat-x, no-repeat, repeat-x;
	background-size: 8% auto, 100% auto, 8% auto;
	background-position: bottom -5px center, bottom center, bottom center;
	aspect-ratio: 80 / 37;
}

/* oa */
.wrap .main section.oa {
	background-color: #EB5C01;
	text-align: center;
}

.wrap .main .oa img {
	width: 90%;
}

.wrap .main header #oaDate .stm,
.wrap .main header #oaDate #oaDateLogo {
	display: block;
	width: 100%;
	background-color: #ed6d47;
	padding: 20px 0 0;
}

.wrap .main header #oaDate #oaDateLogo {
	padding: 20px 0 5%;
}

@media screen and (max-width: 1000px) {
	.wrap .main header #oaDate #oaDateLogo img {
		width: 90%;
		margin: 0 auto;
	}
}


/* news */

#news {
	padding: 10% 0px;
	/* background-image: url(../images/bg_chara_news_l.png), url(../images/bg_chara_news_r.png);
	background-repeat: no-repeat;
	background-position: top left, top right;
	background-size: 15% auto; */
	border-top: 8px dotted #fff;
}

#news .newsBody ul {
	overflow-y: auto;
	height: 150px;
}

#news .newsBody ul::-webkit-scrollbar {
	box-sizing: border-box;
	width: 5px;
	height: 5px;
}

#news .newsBody ul::-webkit-scrollbar-track {
	background-color: #ffc23d49;
}

#news .newsBody ul::-webkit-scrollbar-thumb {
	background-color: #ffc23d;
	border-radius: 5px;
}

#news .newsBody ul li {
	font-size: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
	padding: 10px 5px;
	margin: 5px 20px 5px auto;
}

#news .newsBody ul li:not(:last-of-type) {
	border-bottom: 1px solid #ece8d0;
}

#news .newsBody ul li .newsDate {
	display: block;
	color: #ed6d47;
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
}

#news .newsBody ul li .soldout {
	display: inline-block;
	background-color: #ffc23d;
	color: #dc2323;
	font-weight: normal;
	font-family: 'Noto Sans JP', sans-serif;
	padding: 0 10px;
	border-radius: 4px;
}

#news .newsBody ul li a,
#news .newsBody ul li p {
	display: inline-block;
	padding: 5px 0px;
	font-weight: bold;
}

#news .newsBody ul li a {
	color: #007bc9;
}

#news .newsBody ul li a:hover {
	opacity: 0.5;
	transition: all 0.6s ease 0s;
}


/* x_account */
#news .x_account {
	text-align: center;
	padding: 50px 20px 0px;
}

#news .x_account img {
	transition: 0.3s all;
}

#news .x_account a:hover img {
	transform: scale(1.1, 1.1);
	transition: all 0.3s ease 0s;
}


/* aboutArea */

#aboutArea .txtBox {
	padding: 20px;
}


#aboutArea .infoflex {
	display: flex;
	flex-wrap: wrap;
	margin: 20px auto 0px;
}

#aboutArea .infoflex li {
	width: 100%;
}


#aboutArea .infocap {
	display: block;
	text-align: center;
	font-size: 0.8rem;
	margin: 0px auto 20px;
	color: #EB5C01;
}


/* 番組企画 */

#banner .bannerList {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

#banner .bannerBox {
	position: relative;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	width: calc(50% - 10px);
	padding: 0;
	background-color: #fff;
	border: 2px solid #ffc23d;
	border-radius: 12px;
}

@media screen and (max-width: 500px) {
	#banner .bannerBox {
		width: 100%;
	}
}

#banner .bannerBox a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

#banner .bannerBox .imgArea {
	flex-shrink: 0;

	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
	border-radius: 10px 10px 0 0;

	background-size: cover;
	z-index: 0;
}

#banner .bannerBox .imgArea:before {
	content: '';
	background: inherit;
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
	position: absolute;
	top: -15px;
	left: -20px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
	width: 120%;
	height: 120%;
}

#banner .bannerBox .imgArea img {
	height: 100%;
	width: auto;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	object-fit: contain;
	transition: 1s all;
}

#banner .bannerBox:hover .imgArea img {
	transform: scale(1.2, 1.2);
	transition: 1s all;
}

#banner .bannerBox .moreBtn {
	background-color: #fff;
	text-align: center;
	padding: 10px;
	border-radius: 0px 0px 20px 20px;
}

#banner .bannerBox .moreBtn .update {
	font-family: "RocknRoll One", sans-serif;
	width: 100%;
	text-align: center;
	text-decoration: none;
	padding-bottom: 10px;
	color: #643333;
	font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 2px;
}

#banner .bannerBox .moreBtn .update span {
	font-size: clamp(0.625rem, 0.489rem + 0.68vw, 1rem);
}

#banner .bannerBox .moreBtn .update .upIcon {
	font-family: "Noto Sans JP", system-ui;
	display: inline-block;
	background-color: #da0000;
	border-radius: 5px;
	color: #fff;
	font-size: clamp(13px, 2vw, 20px);
	font-weight: 900;
	padding: 8px 10px;
	vertical-align: middle;
	margin-left: 6px;
}

#banner .bannerBox .moreBtn .bannerBtn {
	margin: 0 auto 0;
	padding: 6px 0;
	width: 80%;
	border-radius: 10px;
	color: #fff;
	background-color: #007bc9;
	font-size: clamp(0.625rem, 0.443rem + 0.91vw, 1.125rem);
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	transition: 0.5s;
}

#banner .bannerBox:hover .moreBtn .bannerBtn {
	opacity: 0.5;
}

/* pickup */
#pickup .pickupList {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

#pickup .pickupBox {
	position: relative;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	width: calc(50% - 10px);
	padding: 0;
	background-color: #fff;
	border: 2px solid #ffc23d;
	border-radius: 12px;
}

#pickup .pickupBox a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

#pickup .pickupBox .imgArea {
	flex-shrink: 0;

	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
	border-radius: 10px 10px 0 0;

	background-size: cover;
	z-index: 0;
}

#pickup .pickupBox .imgArea:before {
	content: '';
	background: inherit;
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
	position: absolute;
	top: -15px;
	left: -20px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
	width: 120%;
	height: 120%;
}

#pickup .pickupBox .imgArea img {
	height: 100%;
	width: auto;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	object-fit: contain;
	transition: 1s all;
}

#pickup .pickupBox:hover .imgArea img {
	transform: scale(1.2, 1.2);
	transition: 1s all;
}

#pickup .pickupBox .infoArea {
	padding: 20px 15px;
	flex-grow: 1;
	/* 拡張可能（余白を広げる） */
	flex-shrink: 1;
	/* 縮小可能（スペースが足りないときに縮む） */
	flex-basis: auto;
	/* 初期サイズは内容に応じて自動 */
}


#pickup .pickupBox .infoArea h3 {
	font-family: 'Noto Sans JP', sans-serif;
	color: #471e1e;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	font-size: clamp(0.8rem, 0.667rem + 0.67vw, 1rem);
}

/* エリアガイド  */
#areaGuideTop {
	position: relative;
	z-index: 1;
}

#areaGuideArea {
	position: relative;
	padding: 0 5px;
	margin: 0 auto;
}

#areaGuideTop h2 {
	border-radius: 50px;
	margin-bottom: 20px;
}

#areaGuideArea .mainImg {
	position: relative;
	overflow: hidden;
	line-height: 0;
}

#areaGuideArea .mainImg a {
	display: block;
}

#areaGuideArea .mainImg img {
	transition: 1s all;
}

#areaGuideArea .mainImg img:hover {
	transform: scale(1.2, 1.2);
	transition: 1s all;
}

#areaGuideArea .mainImg .areaGuideInfo {
	width: calc(100% - 20px);
	background-color: rgba(50, 50, 50, 0.3);
	position: absolute;
	bottom: 10px;
	left: 10px;
	line-height: 1.5;
	padding: 10px;
}

#areaGuideArea .mainImg .areaGuideInfo p {
	font-size: clamp(0.75rem, 0.625rem + 0.63vw, 0.938rem);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	color: #fff;
	text-shadow: 0 0 10px #333333;
}

#areaGuideArea .mainImg .areaGuideInfo p span {
	font-size: clamp(1rem, 0.5rem + 2.5vw, 1.75rem);
}

#areaGuideArea .mainImg .areaGuideInfo .areaGuideInfoBtn {
	position: relative;
	background-color: #b81e2e;
	display: block;
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	width: 250px;
	padding: 5px 20px 7px;
	margin-top: 10px;
	border-radius: 50px;
}

#areaGuideArea .mainImg .areaGuideInfo .areaGuideInfoBtn::after {
	content: "";
	position: absolute;
	background: url("../images/arrow.png") no-repeat center left;
	background-size: contain;
	width: 20px;
	height: 20px;
	top: 7px;
	right: 15px;
}


#areaGuideArea .panel {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

#areaGuideArea .panel li {
	width: calc(50% - 5px);
	border-radius: 20px;
}

@media screen and (max-width: 800px) {

	#areaGuideArea .panel li {
		max-width: 600px;
		width: calc(100% - 10px);
	}
}

#areaGuideArea .panel li a img {
	border-radius: 20px;
}




/* 主催 */

#sponser dl {
	padding: 10px;
}

#sponser dl dt {
	text-align: center;
	font-size: clamp(1.25rem, 1rem + 1.25vw, 1.938rem);
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	color: #dc2323;
	padding: 0 0 10px;
}

#sponser dl dd {
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: #333333;
}

#sponser dl dd:not(:last-of-type) {
	padding: 0 0 8%;
}

#sponser dl dd.largeTxt {
	line-height: 1.4;
	font-size: clamp(1.5rem, 0.833rem + 3.33vw, 2.5rem);
	font-weight: bold;
	text-align: center;
}

#sponser dl dd.messageTxt {
	padding: 10px;
}

/* =======================================================
ブース共通
======================================================= */

#eventContentsArea article .entryArea h2 {
	color: #333333;
	font-size: clamp(1.25rem, 1.042rem + 1.04vw, 1.563rem);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;

	padding: 20px 0;
	border-bottom: 5px solid #dc2323;
	position: relative;
	margin: 0 auto;
}

#eventContentsArea article .entryArea h2::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #dc2323;
	position: absolute;
	bottom: -14px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

#eventContentsArea article .entryArea .date_place {
	padding: 30px 0 0;
}

#eventContentsArea article .entryArea .date_place div {
	color: #dc2323;
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	padding-bottom: 5px;
}

#eventContentsArea article .entryArea .date_place .date::before {
	background: url("../images/dateicon.png") no-repeat center left;
	background-size: cover;

}

#eventContentsArea article .entryArea .date_place .place::before {
	background: url("../images/placeicon.png") no-repeat center left;
	background-size: cover;
}

#eventContentsArea article .entryArea .date_place div::before {
	content: "";
	width: 32px;
	height: 28px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 5px 0;
}

@media screen and (max-width: 500px) {
	#eventContentsArea article .entryArea .date_place div::before {
		width: 24px;
		height: 21px;
	}
}

#eventContentsArea article .entryArea .date_place .date span {
	display: inline-block;
	background-color: #dc2323;
	color: #fff;
	padding: 1px 10px 3px;
	margin-right: 10px;
	max-width: 85px;
	text-align: center;
	font-weight: bold;
	border-radius: 3px;
}

#eventContentsArea article .entryArea .date_place .date span:last-of-type {
	margin-right: 0;
}

#eventContentsArea article .entryArea .date_place .date span.friday {
	background-color: #009944;
}

#eventContentsArea article .entryArea .date_place .date span.saturday {
	background-color: #00A0E9;
}

#eventContentsArea article .entryArea .date_place .date span.sunday {
	background-color: #E95684;
}

#eventContentsArea article .entryArea .contentBody p {
	padding: 5px 0 20px;
	line-height: 1.8;
}

#eventContentsArea article .entryArea .contentBody hr {
	border: none;
	border-top: 2px dotted #ccc;
	padding: 1rem 0px;
}

#eventContentsArea article .entryArea .contentBody h3 {
	margin: 15px 0 5px;
	padding: 5px 10px;
	color: #333333;
	border-left: 6px solid #da0000;
	background-color: #ffffff;

	font-size: clamp(1rem, 0.833rem + 0.83vw, 1.25rem);
	line-height: 150%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
}

#eventContentsArea article .entryArea .contentBody h4 {
	margin: 15px 0 5px;
	padding: 5px 10px;
	color: #da0000;
	border-left: 6px solid #da0000;

	font-size: 16px;
	line-height: 150%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
}

#eventContentsArea article .entryArea .contentBody .infoTxt {
	background-color: #ffffff;
	padding: 10px;
	margin: 10px auto;
	color: #da0000;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	border: 4px solid #da0000;
	border-radius: 10px;
}

#eventContentsArea article .entryArea .contentBody .infoTxt p {
	padding: 10px 0;
}

#eventContentsArea article .entryArea .contentBody a:link,
#eventContentsArea article .entryArea .contentBody a:visited {
	color: #da0000;
}

.backBtn {
	margin: 50px auto 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.backBtn li {
	width: calc(50% - 5px);
}

@media screen and (max-width: 500px) {
	.backBtn li {
		width: 100%;
	}

}

.backBtn li a {
	display: block;
	background-color: #da0000;
	color: #fff;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	padding: 10px;
	border-radius: 50px;
}

.backtopLink {
	text-align: center;
	padding: 50px 0;
}

.backtopLink a {
	width: 70%;
	display: block;
	background-color: #EB5C01;
	color: #fff;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	padding: 10px;
	border-radius: 50px;
	margin: auto;

}

/* リストカード設定 */
.contentsArea {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.contentsArea li {
	position: relative;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	width: calc(50% - 10px);
	padding: 0;
	background-color: #fff;
	border: 2px solid #ffc23d;
	border-radius: 12px;
}

.contentsArea li a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.contentsArea li .imgArea {
	flex-shrink: 0;

	aspect-ratio: 16 / 9;
	overflow: hidden;
	position: relative;
	border-radius: 10px 10px 0 0;

	background-size: cover;
	z-index: 0;
}

.contentsArea li .infoArea {
	padding: 20px 15px;
	flex-grow: 1;
	/* 拡張可能（余白を広げる） */
	flex-shrink: 1;
	/* 縮小可能（スペースが足りないときに縮む） */
	flex-basis: auto;
	/* 初期サイズは内容に応じて自動 */
}

.contentsArea li .imgArea:before {
	content: '';
	background: inherit;
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
	position: absolute;
	top: -15px;
	left: -20px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
	width: 140%;
	height: 140%;
}

.contentsArea li .imgArea img {
	height: 100%;
	width: auto;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	object-fit: contain;
	transition: 1s all;
}

.contentsArea li:hover .imgArea img {
	transform: scale(1.2, 1.2);
	transition: 1s all;
}

.contentsArea li .infoArea {
	position: relative;
	padding: 10px;
}

.contentsArea li .infoArea h3 {
	font-family: 'Noto Sans JP', sans-serif;
	color: #471e1e;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	font-size: clamp(0.8rem, 0.667rem + 0.67vw, 1rem);
}

/* リストカード日付 */
.contentsArea ul.content_date {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	gap: 5px;
	width: 90%;
	margin: 0px auto;
	padding: 10px 0px;
}

.contentsArea ul.content_date li {
	border: none;
	/* width: calc((100% / 3)- 15px); */
	width: 100%;
	color: #fff;
	font-size: clamp(0.625rem, 0.542rem + 0.42vw, 0.75rem);
	font-weight: bold;
	padding: 5px;
	text-align: center;
}

@media screen and (max-width: 800px) {
	.contentsArea ul.content_date li {
		width: 100%;
	}
}


.contentsArea ul.content_date li.friday {
	background-color: #009944;
}

.contentsArea ul.content_date li.saturday {
	background-color: #00A0E9;
}

.contentsArea ul.content_date li.sunday {
	background-color: #E95684;
}

.contentsArea .infoTxt {
	background-color: #ffeef7;
	padding: 5px;
	margin: 10px;
	color: #a31239;
	font-size: 12px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
}


/* 赤ボタン全般 */
.btnArea {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 10px 0 30px;
}

.btnArea .redBtn {
	margin: 5px;
}

.btnArea .redBtn a {
	display: block;
	background-color: #da0000;
	color: #fff;
	text-align: center;
	border-radius: 50px;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
	padding: 10px 15px;
}

/* エリアガイドボタン */
#areaGuide .btnArea .redBtn a {
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #ED7B02;
	font-size: clamp(0.8rem, 0.667rem + 0.67vw, 1rem);
	border: 2px solid #fff;
	padding: 5px 15px;
}

#areaGuide .btnArea .redBtn a:hover {
	background-color: #b13901;
	transition: all 0.6s ease 0s;
}

@media screen and (max-width: 400px) {
	#areaGuide .btnArea .redBtn a {
		border: 1px solid #fff;
		padding: 5px 10px;
	}
}


/* アクセス */

#accessArea .add {
	display: flex;
	font-weight: bold;
	margin-bottom: 20px;
	font-size: clamp(0.8rem, 0.667rem + 0.67vw, 1rem);
}

#accessArea .inner .add h3 {
	color: #da0000;
	padding-bottom: 10px;
	font-size: clamp(1rem, 0.667rem + 1.67vw, 1.5rem);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
}

#accessArea .acImg {
	width: 40%;
	padding-right: 10px;
}

#accessArea .acImg img {
	border-radius: 20px;
}



/* =======================================================
ファクトリーエリア
======================================================= */


/*サッポロファクトリー会場header*/
#factoryAreaHead {
	background: #ffe44d url("../images/factory.jpg") no-repeat center center;
	background-size: cover;
	padding: 5% 10%;
}

#factoryAreaHead p {
	text-align: center;
	font-size: 20px;
	border: 3px solid #fff;
	padding: 20px 0px;
	color: #fff;
	margin: 0 auto;
	max-width: 800px;
	width: 90%;
}

/* 番組グルメ 11日アップ用 */

#gourmet .gourmet_11 img {
	border-radius: 12px;
	margin-bottom: 20px;
}

#gourmet .gourmet_11 p span {
	font-weight: bold;
}

#gourmet .gourmet_11 .bannerBtn {
	display: block;
	width: fit-content;
	margin: 20px auto 10px;
	padding: 10px;
	border-radius: 10px;
	color: #fff;
	background-color: #007bc9;
	font-size: clamp(0.625rem, 0.443rem + 0.91vw, 1.125rem);
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
	transition: 0.5s;
}

#gourmet .gourmet_11 .bannerBtn:hover {
	opacity: 0.5;
}

/* =======================================================
創世エリア
======================================================= */
/*さっぽろ創世スクエア会場header*/
#soseiAreaHead {
	background: #ffe44d url("../images/sosei.jpg") no-repeat center top;
	background-size: cover;
	padding: 5% 10%;
}

#soseiAreaHead p {
	text-align: center;
	font-size: 20px;
	border: 3px solid #fff;
	padding: 20px 0;
	color: #fff;
	margin: 0 auto;
	max-width: 800px;
	width: 90%;
}


/* =======================================================
お知らせ
======================================================= */

#newsAreaHead {
	background: #dc2323;
	background-size: cover;
	padding: 5% 10%;
}

#newsAreaHead p {
	text-align: center;
	font-size: 20px;
	border: 3px solid #fff;
	padding: 20px 0;
	color: #fff;
	margin: 0 auto;
	max-width: 800px;
	width: 90%;
}

.main .titleArea {
	margin-bottom: 30px;
}

.main .titleArea p {
	color: #dc2323;
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 800;
	padding-bottom: 5px;
}

.main .titleArea p::before {
	content: "";
	background: url("../images/diaryicon.png") no-repeat center left;
	background-size: cover;
	width: 22px;
	height: 22px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px 5px 0;
}

/* =======================================================
番組グルメ　SODANEリスト
======================================================= */

.entry_list li {
	margin-bottom: 10px;
	padding: 20px;

	background-color: #fff;
	border: 2px solid #ffc23d;
	border-radius: 12px;
}


.entry_list li a {
	text-decoration: none;
	color: unset;
}

.entry_list li .bannerBtn {
	display: block;
	width: fit-content;
	margin: 10px auto;
	padding: 10px;
	border-radius: 10px;
	color: #fff;
	background-color: #007bc9;
	font-size: clamp(0.625rem, 0.443rem + 0.91vw, 1.125rem);
	font-weight: 800;
	font-family: 'Noto Sans JP', sans-serif;
	transition: 0.5s;
}

.entry_list li .bannerBtn:hover {
	opacity: 0.5;
}

.entry_list li p.tip {
	text-align: center;
	color: #979797;
	font-size: 0.8rem;
	padding-bottom: 10px;
}