@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

html {
	overflow: auto;
	scroll-behavior: smooth;
}
:not(span) {
	margin: 0;
	padding: 0;
	line-height: 1;
	box-sizing: border-box;
	list-style: none;
}
* {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.95rem;
	letter-spacing: calc(1em / 12);
	font-feature-settings: "palt";
	max-height: 99999px;
}

blockquote {
	margin: 1.5rem 0;
	line-height: 1.75;
	width: 100%;
	color: #999;
}
blockquote i {
	font-size: 1rem;
}
@media (max-width: 70rem) {

	blockquote {
		margin: 1.5rem auto;
		max-width: calc(100% - 10vw);
	}
}

body {
	-webkit-text-size-adjust: 100%;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	color: #333;
	-webkit-font-smoothing: subpixel-antialiased;
	animation: fadeIn 1s ease 0s 1 normal;
}
/* Safariだけフォントが太くなる対策 */
::-webkit-full-page-media, :future, :root body {
	-webkit-font-smoothing: antialiased;
}


#main_g2,
#koou {
	animation: fadeIn 1s ease 0s 1 normal;
	animation-delay: .5s;
	animation-fill-mode: forwards;
	opacity:0;
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}


#wrap {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

label,
button,
summary {
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
	outline: none;
}
label,
button {
	white-space: nowrap;
	user-select: none;
	-webkit-user-select: none;
}
a,
a:hover {
	-webkit-tap-highlight-color: rgba(255,255,255,0);
	text-decoration: none;
	color: #333;
}
a[target=_blank]:after {
	content: '';
	display: inline-block;
	width: 0.9rem;
	height: 0.9rem;
	margin: 0 0.125rem;
	vertical-align: center;
	background: url(./img/out.svg);
	background-size: cover;
}
a[href*=".pdf"]:before {
	content: '';
	display: inline-block;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0 0.25rem 0 0;
	background: url(./images/icon_pdf.svg) center center no-repeat;
	background-size: contain;
}

a[href*=".zip"]:before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	margin: 0 0.25rem 0 0;
	vertical-align: center;
	background: url(./images/icon_word.svg) center center no-repeat;
	background-size: contain;
}


a[href*="/maps/"]::after,
a[href*="/maps.app"]::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 0.125rem;
	width: 0.697rem; /* 0.923rem */
	height: 1rem; /* 1.323rem */
	background: url(./images/google_maps.svg) center center no-repeat;
	background-size: contain;
	transform: scale(2);
	position: relative;
	top: -0.25rem;
}	


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

#back_to_top {
	position: fixed;
	bottom: 3rem;
	right: 0.5rem;
	opacity: 0;
	transition: .5s;
}
#back_to_top.is-animation {
	opacity: 1;
}
#back_to_top img {
	width: 3rem;
	max-width: 10vw;
	height: 3rem;
	max-height: 10vw;
}
.red {
	color: #E00;
}
.notation {
	display: inline-flex;
	line-height: 1.25;
	font-size: 0.95em;
}
.notation span {
	flex: none;
	width: 1rem;
}

/* ======================================== */
/*                                  準備中                                     */
/* ======================================== */

#soon {
	width: 5rem;
	margin: 10rem auto 15rem;
	padding: 0.5rem;
	text-align: center;
	font-size: 1.125rem;
}

/* ======================================== */
/*                    ナビ（プルダウンメニュー）                      */
/* ======================================== */

#navi_open {
	position: fixed;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 998;
}
#navi_open img {
	width: 3rem;
	height: auto;
}
input#navi {
	display: none;
}
input#navi + nav {
	position: fixed;
	top: -24rem;
	left: 0;
	width: 100%;
	height: 24rem;
	background: rgba(0,0,0,0.75);
	transition: .5s;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
}
input#navi:checked + nav {
	top: 0;
}
input#navi + nav ul {
	display: flex;
	width: 90vw;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: min(2vw, 2rem);
	gap: min(1.5vw, 2rem) 0rem;
}
input#navi + nav ul li a {
	color: white;
	display: block;
	padding: 0.5em 1em;
	font-size: 1.125rem;
}
#navi_close {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2.5rem;
	background: #dc5994;
}
#navi_close img {
	display: block;
	width: 2rem;
	height: 2rem;
	margin: 0 auto;
	text-align: center;
	object-fit: contain;
}
@media (orientation: portrait) {
	input#navi + nav {
		top: -90vh;
		height: 90vh;
	}
	input#navi + nav ul {
		flex-direction: column;
		align-items: center;
	}
	input#navi + nav ul li {
		margin: 1vh 0;
	}
	input#navi + nav ul li a {
	}
}
/* ======================================== */
/*                      ヘッダー（トップページ）                       */
/* ======================================== */

header {
	height: 24rem;
	width: 100%;
	max-width: 100%;
	background: url(./images/header_bg_2025.png) center top no-repeat;
	background-size: cover;
	z-index: -1;
	overflow: hidden;
}
@media (max-width: 50rem) {
	header {
		height: 16rem;
		background: url(./images/header_bg_2025.png) center top no-repeat;
		background-size: auto 16rem;
		margin-bottom: -1rem;
	}
}

header#top_page figure #main_g2 {
	width: 10rem;
	height: 10rem;
	position: absolute;
	top: 15rem;
	left: calc(50% - 40rem);
	mix-blend-mode: multiply;
}

header#top_page figure #main_b2 {
	width: 25rem;
	height: 25rem;
	position: absolute;
	bottom: -5rem;
	right: 0rem;
	mix-blend-mode: multiply;
}
header#top_page figure #main_g3 {
	width: 15rem;
	height: 15rem;
	position: absolute;
	bottom: -7.5rem;
	right: 17.5rem;
	mix-blend-mode: multiply;
}

header#top_page figure #koou {
	width: 18rem;
	height: 12rem;
	position: absolute;
	top: 23rem;
	left: calc(50% - 9rem);
	object-fit: contain;
}



header#top_page #echo {
	display: block;
	width: 6rem;
	height: auto;
	position: absolute;
	top: 0.5rem;
	left: calc(50% - 3rem);

}

header#top_page h1 {
	height: 11rem;
	position: absolute;
	bottom: 4rem;
	left: 0rem;
	border: solid thin red;
}

@media (max-width: 50rem) {
	header#top_page figure #main_b2 {
		display: none;
	}
	header#top_page figure #main_g3 {
		display: none;
	}

	header#top_page h1 {
		height: min(30vw, 9rem);
		position: absolute;
		bottom: 4rem;
		left: 0rem;
	}

	header#top_page #echo,
	header #echo {
		width: 4rem;
		height: auto;
		position: absolute;
		top: calc(0.5rem / 3 * 2);
		left: calc(50% - 2rem);
		z-index: 51
	}
	header#top_page figure #koou {
		width: 12rem;
		height: 9rem;
		position: absolute;
		top: 14rem;
		left: calc(50% - 6rem);
	}
}


/* ======================================== */
/*                        ヘッダー（サブページ）                         */
/* ======================================== */


header #echo {
	display: block;
	width: 6rem;
	height: auto;
	position: absolute;
	top: 0.5rem;
	left: calc(50% - 3rem);
}

@media (max-width: 50rem) {

	header #echo {
		width: 4rem;
		height: auto;
		position: absolute;
		top: calc(0.5rem / 3 * 2);
		left: calc(50% - 2rem);
		z-index: 51
	}
}


/*========== アートが山々にこだまする ==========*/
#block1 {
	margin-top: 14rem;
	padding: 0 0 min(50vw, 40rem);
	background: url(./images/bg_daisenzan.jpg) center bottom no-repeat;
	background-size: cover;
	border-top: solid thin white;
	position: relative;
}
@media (max-width: 50rem) {
	#block1 {
		margin-top: 11rem;
		padding: 0 0 50rem;
		background-size: cover;
	}
}

#block1 p {
	text-align: center;
	margin-bottom: 1.5rem;
}
#block1 p strong {
	font-size: min(6vw, 4.5rem);
	font-weight: 200;
}
#block1 p em {
	font-size: min(3.75vw, 1.75rem);
	font-style: normal;
	font-weight: 600;
	word-break: keep-all;
	line-height: 1.5;
}
#block1 p strong::before {
	content: '〈';
	display: inline-block;
	padding-right: 0.333em;
}
#block1 p strong::after {
	content: '〉';
	display: inline-block;
	padding-left: 0.333em;
}
#block1 ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin: min(12vw, 6rem) 0;
}
#block1 ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
	width: 33rem;
	height: 4.75rem;
	border: solid 2px #EEE;
	border-radius: 3rem;
	padding-left: 5.75rem;
	overflow: hidden;
	position: relative;
}
#block1 ul li:first-child a {
	flex-direction: column-reverse;
}
#block1 ul li a span {
	font-size: min(3.75vw, 1.4rem);
	font-weight: 600;
	z-index: 2;
}
#block1 ul li a small {
	font-size: min(1.75vw, 0.667rem);
	font-weight: 600;
	z-index: 2;
}
#block1 ul li a::before {
	content: '';
	display: block;
	width: 33rem;
	height: 4.75rem;
	position: absolute;
	top: -2px;
	left: calc(-100% + 4.75rem - 4px);
	background: #EEE;
	border-radius: 3rem;
	z-index: 1;
	transition: .5s;
}
#block1 ul li a.click::before,
#block1 ul li a:hover::before {
	left: 0;
}

#block1 ul li:first-child a {
	border-color: #dc5994;
	background: url(./images/icon_yajirushi_g.svg) center right 1.75rem no-repeat;
	background-size: 1.25rem 1.25rem;
}
#block1 ul li:first-child a span,
#block1 ul li:first-child a small {
	color: #dc5994;
	transition: .5s;
}
#block1 ul li:first-child a:hover span,
#block1 ul li:first-child a:hover small {
	color: white;
}
#block1 ul li:first-child a::before {
	background: #dc5994;
}

#block1 ul li:last-child a {
	border-color: #4d83af;
	background: url(./images/icon_yajirushi_b.svg) center right 1.75rem no-repeat;
	background-size: 1.25rem 1.25rem;
}
#block1 ul li:last-child a span,
#block1 ul li:last-child a small {
	color: #4d83af;
	transition: .5s;
}
#block1 ul li:last-child a:hover span,
#block1 ul li:last-child a:hover small {
	color: white;
}
#block1 ul li:last-child a::before {
	background: #4d83af;
}
#block1 > div {
	position: absolute;
	right: calc((100% - 70rem) / 2);
	mix-blend-mode: multiply;
}
@media (max-width: 70rem) {
	#block1 > div {
		width: 20rem;
		left: calc(50% - 10rem);
	}
}

@media (max-width: 35rem) {
	#block1 ul li a,
	#block1 ul li a::before {
		width: 90vw;
		height: 14vw;
	}
	#block1 ul li a {
		padding-left: 17vw;
	}
	#block1 ul li a::before {
		left: calc(-100% + 14vw - 4px);
	}
}

/*========== お知らせ ==========*/
#block2 {
	width: 75rem;
	margin: 0 auto;
	padding-bottom: 5rem;
	max-width: calc(100% - 10vw);
}
#block2 h3 {
	font-size: 1.125rem;
	font-weight: 400;
	width: 9rem;
	margin: 0 auto 3rem;
	background: #222;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0;
	color: white;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
}
#block2 h3::before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.9rem;
	background: url(./images/icon_orange.svg) center center no-repeat;
	background-size: contain;
	margin-bottom: 1rem;
}
@media ( min-width: 78rem) {
	#block2 > div {
		display: grid;
		grid-template-rows: 500px 6.05rem;
		grid-template-columns: calc(75rem - 500px - 2rem) 500px;
		gap: 2rem;
	}
	#block2 > div ul.headline {
		grid-area: 1 / 1 / 2 / 2;
		border-top: solid thin #333;
	}
	#block2 > div ul.headline + p {
		grid-area: 2 / 1 / 3 / 2;
	}
	#block2 > div iframe {
		grid-area: 1 / 2 / 2 / 3;
	}
	#block2 > div #insta_banner {
		grid-area: 2 / 2 / 3 / 3;
	}
}
@media (max-width: 78rem) {
	#block2 > div {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#block2 > div ul + p {
		margin: 2rem 0 3rem;
	}
	#block2 > div iframe {
		margin: 2.5rem;
		max-width: 90vw;
		overflow: auto;
	}
	#block2 > div #insta_banner img {
		width: 500px;
		max-width: 90vw;
		height: auto;
	}

}

#block2 ul.headline {
	margin: 0;
	max-height: 500px;
	overflow: auto;
	border-top: solid thin #333;
}
#block2 ul.headline li {
	padding: 1.25rem;
	border-bottom: solid thin #333;
	min-height: 8.75rem;
}
#block2 ul.headline li a {
	display: block;
	min-height: 6.25rem;
}
#block2 ul.headline li a img {
	display: block;
	width: 6.25rem;
	height: 6.25rem;
	object-fit: cover;
	float: right;
	margin-left: 0.5rem;
}
#block2 ul.headline li a span.date {
	width: 10rem;
	display: block;
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}
#block2 ul.headline li a span.header {
	line-height: 1.5;
	font-size: 1rem;
}
@media (max-width: 50rem) {
	#block2 ul.headline {
		max-height: 100vh;
	}
}
#block2 ul + p {
	text-align: center;
}
@media (max-width: 50rem) {
	#block2 ul + p {
		text-align: center;
	}
}
#block2 ul + p a {
	display: inline-block;
	width: 12rem;
	padding: 0.5rem 0;
	text-align: center;
	border: solid thin #333;
	transition: .2s;
}
#block2 ul + p a:hover {
	box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.1);
}


/*========== テーマ ==========*/
#block3 {
	background: url(./images/bg_theme.svg) center center no-repeat #EEF1F7;
	background-size: 60rem 60rem;
	position: relative;
	overflow: hidden;
}
#block3::before {
	content: '';
	display: block;
	width: 12rem;
	height: 12rem;
	position: absolute;
	top: calc(50% - 6rem);
	left: 0;
	background: url(./images/echo_img_left.svg) center center no-repeat;
	background-size: contain;
	z-index: 2;
	mix-blend-mode: multiply;
}
#block3::after {
	content: '';
	display: block;
	width: 12rem;
	height: 12rem;
	position: absolute;
	top: calc(50% - 6rem);
	right: 0;
	background: url(./images/echo_img_right.svg) center center no-repeat;
	background-size: contain;
	z-index: 2;
	mix-blend-mode: multiply;
}
#block3 h3 {
	font-size: 1.125rem;
	font-weight: 400;
	width: 9rem;
	margin: 0 auto 3rem;
	background: #EEF1F7;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
	position: relative;
	z-index: 3;
}
#block3 h3::before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.9rem;
	background: url(./images/icon_blue.svg) center center no-repeat;
	background-size: contain;
	margin-bottom: 1rem;
}
#block3 h4 {
	text-align: center;
	font-size: 2rem;
	font-weight: 400;
	position: relative;
	z-index: 3;
}

#block3 div {
	width: 45rem;
	max-width: calc(100% - 20vw);
	margin: 2rem auto 5rem;
	position: relative;
	z-index: 3;
}
#block3 div p {
	line-height: 2;
}

/*========== 開催概要 ==========*/
#block4 {
}
#block4 h3 {
	font-size: 1.125rem;
	font-weight: 400;
	width: 9rem;
	margin: 0 auto 3rem;
	background: #222;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0;
	color: white;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
}
#block4 h3::before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.9rem;
	background: url(./images/icon_blue.svg) center center no-repeat;
	background-size: contain;
	margin-bottom: 1rem;
}
#block4 dl {
	width: 60rem;
	max-width: calc(100% - 10vw);
	margin: 3rem auto 3rem;
	display: flex;
	flex-wrap: wrap;
}
#block4 dl dt {
	width: 5rem;
	line-height: 1.75;
	margin: 0.25rem 0;
	white-space: nowrap;
	flex: none;
}
#block4 dl dd {
	width: calc(100% - 5rem);
	margin: 0.25rem 0;
	line-height: 1.75;
}
#block4 dl dd div {
	line-height: 1.75;
}
#block4 ul {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(100% - 10vw);
	margin: 3rem auto 5rem;
}
#block4 ul li {
	margin: 0 1rem;
}
#block4 ul li:nth-child(1) {
	width: 16rem;
}
#block4 ul li:nth-child(2) {
	width: 24rem;

}
@media (max-width: 55rem) {
	#block4 ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: calc(100% - 10vw);
		margin: 3rem auto 5rem;
	}
	#block4 ul li {
		margin: 0.5rem 0;
	}
}

/*========== アートエコーギャラリー企画展 ==========*/
#block5 {
	background: #FFF;
	padding-bottom: 5rem;
}

#block5 h3 {
	font-size: 1.125rem;
	font-weight: 400;
	width: 20rem;
	margin: 0 auto 3rem;
	background: #E36000; /* 濃いオレンジ */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0 0.75rem;
	color: white;
	letter-spacing: 0.125em;
	text-indent: 0.125em;
}
#block5 h3::after {
	content: attr(data-en);
	color: #EEF1F7;
	display: block;
	font-size: 0.95rem;
	text-align: center;
	margin-top: 1rem;
	line-height: 1.5;
	letter-spacing: 1em;
	font-weight: 700;
	position: relative;
	left: 0.5rem;
}
#block5 h4 {
	font-size: 1.25rem;
	text-align: center;
	line-height: 1.5;
	font-weight: 400;
}
@media (max-width: 50rem) {
	#block5 h4 {
		display: flex;
		flex-direction: column;
		line-height: 1.25;
	}
}

#block5 ul {
	width: 60rem;
	max-width: calc(100% - 10vw);
	margin: 2rem auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#block5 ul li:first-child {
	width: 30rem;
	max-width: 100%;
	flex: none;
	background: #dcdcdc;
	padding: 3.0rem 0.8rem ;
}
#block5 ul li:last-child {
	width: 30rem;
	max-width: 100%;
	flex: none;
	background: #595757;
	padding: 3rem 1rem;
	color: white;
}
#block5 ul li h5 {
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.25;
}
@media (max-width: 35rem) {
	#block5 ul li h5 {
		font-size: 1rem;
	}
}

#block5 ul li p {
	text-align: center;
	margin: 1rem 0;
	position: relative;
}
#block5 ul li p em {
	color: #E36000; /* 濃いオレンジ */
	font-size: 0.9rem;
	font-style: normal;
	position: absolute;
	top:1.75rem;
	left: calc(50% - (3.5rem * 0.9));
}
#block5 ul li figure {
	padding: 2rem 2rem 0;
}
#block5 ul li figure img {
	width: 100%;
	height: auto;
}
#block5 ul li figcaption {
	margin-top: 0.75rem;
}
#block5 ul li figcaption a {
	display: flex;
	font-size: 0.9rem;
	align-items: center;
}
#block5 ul li:last-child figcaption a {
	color: white;
}


/*========== 連携事業 ==========*/
#block6 h3 {
	font-size: 1.125rem;
	font-weight: 400;
	width: 20rem;
	margin: 0 auto 3rem;
	background: #E36000; /* 濃いオレンジ */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0 0.75rem;
	color: white;
	letter-spacing: 0.125em;
	text-indent: 0.125em;
}
#block6 h3::after {
	content: attr(data-en);
	color: #EEF1F7;
	display: block;
	font-size: 0.95rem;
	text-align: center;
	margin-top: 1rem;
	line-height: 1.5;
	letter-spacing: 0.5em;
	font-weight: 700;
	position: relative;
	left: calc(0.5rem / 2);
}
#block6 div img {
	display: block;
	width: 30rem;
	max-width: calc(100% - 10vw);
	height: auto;
	margin: 4rem auto 6rem;
}

/*========== お食事処 ==========*/
#block7 {
	background: #EEF1F7;
	padding-bottom: min(10vw, 5rem);
}
#block7 h3 {
	font-size: 1.25rem;
	font-weight: 400;
	width: 20rem;
	margin: 0 auto 3rem;
	background: #E36000; /* 濃いオレンジ */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0 0.75rem;
	color: white;
	letter-spacing: 0.125em;
	text-indent: 0.125em;
}
#block7 h3::after {
	content: attr(data-en);
	color: #EEF1F7;
	display: block;
	font-size: 0.95rem;
	text-align: center;
	margin-top: 1rem;
	line-height: 1.5;
	letter-spacing: 0.5em;
	font-weight: 700;
	position: relative;
	left: 0.5rem;
}

#block7 ul {
	width: 60rem;
	max-width: calc(100% - 10vw);
	margin: 2rem auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#block7 ul li {
	padding: 1rem 0;
	margin-bottom: 1.5rem;
	width: calc((100% - 1.5rem) / 2);
	background: white;
	display: flex;
	flex-direction: column;
}
#block7 ul li h4 {
	text-align: center;
	margin: 0.25rem 1.25vw 0.75rem;
	line-height: 1.25;
	font-size: min(4vw, 1.5rem);
	word-break: keep-all;
}
#block7 ul li img {
	display: flex;
	align-items: center;
	width: 75%;
	margin: 0.75rem auto;
}
#block7 ul li p {
	width: 90%;
	margin: 0.25rem auto;
	line-height: 1.5;
}
@media (max-width: 40rem) {
	#block7 ul li {
		width: calc((100% - 1vw) / 2);
	}
	#block7 ul li img {
		width: 90%;
	}
}








/*========== オープニング & クロージングアクト ==========*/


#block8 {
	padding-bottom: min(10vw, 5rem);
}
#block8 h3 {
	font-size: 1.25rem;
	font-weight: 400;
	width: 20rem;
	margin: 0 auto 3rem;
	background: #E36000; /* 濃いオレンジ */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0 0.75rem;
	color: white;
	letter-spacing: 0.125em;
	text-indent: 0.125em;
}
#block8 h3::after {
	content: attr(data-en);
	color: #EEF1F7;
	display: block;
	font-size: 0.95rem;
	text-align: center;
	margin-top: 1rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: 700;
	position: relative;
	left: 0.5rem;
}
#block8 > div {
	display: flex;
	width: 56rem;
	max-width: calc(100% - 10vw);
	margin: 0 auto;
	justify-content: space-between;
}
@media (max-width: 56rem) {
	#block8 > div {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#block8 > div > div:nth-child(1) {
		order: 2;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-top: 2rem;
	}
	#block8 > div > div:nth-child(2) {
		order: 1;
	}
}
#block8 > div > div {
	width: 27rem;
	max-width: 100%;
}

#block8 > div div h4 {
	font-size: min(7vw, 2.25rem);
	font-weight: 700;
	display: flex;
	flex-direction: column;
}
#block8 > div div h4 small {
	font-size: 1.4rem;
	margin-top: 0.75rem;
}
#block8 > div div dl {
	margin: 1.5rem 0;
}
#block8 > div div dl div {
	display: flex;
	margin: 0.75rem 0;
}
#block8 > div div dl div dt,
#block8 > div div dl div dd {
	line-height: 1.75
}
#block8 > div div dl div dt {
	flex: none;
}
#block8 > div div img {
	width: 100%;
	height: auto;
}

@media (max-width: 60rem) {
	#block8 > div {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	#block8 > div div img {
		display: block;
		width: 90%;
		height: auto;
		margin: 0 auto;
	}
}
/*========== フッター ==========*/
footer {
	background: #008E91;
	position: relative;
}
address {
	display: block;
	width: 70rem;
	max-width: calc(100% - 10vw);
	margin: 0 auto;
	padding: 3rem 0 4rem;
	font-style: normal;
	color: white;
}
address h4 {
	font-size: 1.25rem;
	margin-bottom: 1.75rem;
}
address a,
address a:visited {
	color: white;
}
address p {
	line-height: 1.5;
	margin: 0.75rem 0;
}
address div span {
	display: inline-block;
	line-height: 1.5;
}

#copyright {
	text-align: center;
	padding: 3rem 0;
	background: white;
	font-size: 0.85rem;
	line-height: 1.25;
}
@media (max-width: 45rem) {
	address {
		padding: calc(0.5rem + 5vw) 0;
	}
	address h4 {
		margin-bottom: 1.25rem;
	}
}

footer ul.sns {
	display: flex;
	justify-content: center;
	position: absolute;
	top: 11rem;
	right: calc((100% - 70rem) / 2);
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
}
@media (max-width: 64rem) {
	footer ul.sns {
		position: static;
		margin-bottom: 3rem;
	}
}
footer ul.sns li {
	margin: 0 0.74rem;
}
footer ul.sns li img {
	display: block;
	width: 2.25rem;
	height: 2.25rem;
}

/*========== スライドショー ==========*/
#slideshow {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
#slideshow div {
	width: calc(1920px * 2);
	height: calc(1920px * 2 / 14 / 550 * 370);
	background: #666;
	position: relative;
}
#slideshow div img {
	width: calc(1920px * 2 / 14);
	height: auto;
	position: absolute;
	top: 0;
	right: 0;
	animation: SLIDE_SHOW 56s linear infinite;
}
@keyframes SLIDE_SHOW {
  0% { right: 0%; }
  100% { right: 100%; }
}
#slideshow div img:nth-child(1) {
  animation-delay: -52s;
}
#slideshow div img:nth-child(2) {
  animation-delay: -48s;
}
#slideshow div img:nth-child(3) {
  animation-delay: -44s;
}
#slideshow div img:nth-child(4) {
  animation-delay: -40s;
}
#slideshow div img:nth-child(5) {
  animation-delay: -36s;
}
#slideshow div img:nth-child(6) {
  animation-delay: -32s;
}
#slideshow div img:nth-child(7) {
  animation-delay: -28s;
}
#slideshow div img:nth-child(8) {
  animation-delay: -24s;
}
#slideshow div img:nth-child(9) {
  animation-delay: -20s;
}
#slideshow div img:nth-child(10) {
  animation-delay: -16s;
}
#slideshow div img:nth-child(11) {
  animation-delay: -12s;
}
#slideshow div img:nth-child(12) {
  animation-delay: -8s;
}
#slideshow div img:nth-child(13) {
  animation-delay: -4s;
}
#slideshow div img:nth-child(14) {
  animation-delay: 0s;
}




/* ======================================== */
/*                                 お知らせ                                   */
/* ======================================== */

/*========== 見出し一覧ページ ==========*/
/*
@media (max-width: 50rem) {
	#venue,
	#archive, 
	#access,
	#link,
	#news {
		margin-top: -8rem;
	} 
}
*/


#venue h3,
#archive h3,
#access h3,
#link h3,
#outline h3,
#news h3 {
	font-size: 1.125rem;
	line-height: 1.25;
	font-weight: 400;
	width: 8rem;
	height: 8rem;
	margin: 0 auto 3rem;
	background: #222;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0;
	color: white;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
}
#venue h3::before,
#archive h3::before,
#access h3::before,
#link h3::before,
#outline h3::before,
#news h3::before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.9rem;
	background: url(./images/icon_orange.svg) center center no-repeat;
	background-size: contain;
	margin-bottom: 1rem;
}
#news_headline {
	border-top: solid thin #333;
	width: 50rem;
	max-width: calc(100% - 10vw);
	margin: 0 auto;
}
#news_headline li {
	padding: 1rem 0 1.75rem;
	border-bottom: solid thin #333;
}
#news_headline li h4 a {
	display: block;
	font-size: 1.125rem;
	line-height: 1.25;
	padding: 0.75rem 0 1.5rem;
	font-weight: 400;
}
#news_headline li img {
	display: block;
	float: right;
	width: 6.25rem;
	height: 6.25rem;
	object-fit: cover;
	margin-left: 2rem;
	position: relative;
	top: -0.875rem;
}
#news_headline li p.summary {
	font-size: 0.9rem;
}
#news_headline li p.summary {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	opacity: 0.6;
}
#news_headline + #pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 4rem 0 5rem;
}
#news_headline + #pager li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	letter-spacing: 0;
	transition: .2s;
}
#news_headline + #pager li a:hover {
	background: #EEE;
}
a.here {
	opacity: 0.25;
	pointer-events: none;
	cursor: default;
}
#news div.back {
	margin: 0 0 5rem;
}
#news div.back a {
	display: block;
	width: 15rem;
	padding: 0.75rem 0 0.65rem;
	text-align: center;
	margin: 0 auto;
	border: solid thin #333;
}

/*========== 個別の記事ページ ==========*/
#news_article {
	border-top: solid thin #333;
	width: 62.5rem;
	max-width: calc(100% - 10vw);
	margin: 5vw auto 0;
}

#news_article p#date {
	margin: 2rem 0 1.5rem;
	line-height: 1 !important;
	font-size: 1rem !important;
}
#news_article h4 {
	font-size: 2rem;
	margin: 0 0 4rem;
	line-height: 1.5;
}
#news_article p {
	line-height: 1.75;
	font-size: 1.125rem;
	margin: 3rem 0;
}
@media (max-width: 45rem) {
	#news_article h4 {
		font-size: 1.5rem;
		margin: 0 0 3rem;
	}
	#news_article p {
		font-size: 1rem;
	}
}
@media (max-width: 30rem) {
	#news_article h4 {
		font-size: 1.25rem;
		margin: 0 0 2rem;
	}
}
#news_article p + p {
	margin-top: 2rem;
}
#news_article figure {
	width: 100%;
	margin: 3rem auto;
}
#news_article figure img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 0.5rem;
}
#news_article figure figcaption {
	display: block;
	line-height: 1.25;
	font-size: 0.9rem;
}
#news_article figure iframe {
	width: calc(100% - 10vw);
	max-width: 900px;
	height: 50vw;
	max-height: 500px;
	border: none !important;
	background: #EEE;
	display: block;
	margin: 0 auto;
}
#news_article + #pager {
	display: flex;
	justify-content: center;
	width: 50rem;
	max-width: calc(100% - 5vw);
	margin: 6rem auto 5rem;
}
#news_article + #pager li:nth-child(1),
#news_article + #pager li:nth-child(3) {
	width: 32%;
	margin: 0.5rem;
	bacgound-size: 200% 200%;
	white-space: nowrap;
	height: 2.2rem;
}
#news_article + #pager li:nth-child(2) {
	width: 36%;
	margin: 0.5rem;
	border: solid thin #333;
	white-space: nowrap;
	height: 2.2rem;
}
#news_article + #pager li a {
	text-align: center;
	line-height: 1;
	letter-spacing: 0;
	width: 100%;
	height: 100%;
	font-size: 1rem;
	display: block;
	padding: 0.6rem 0.25rem ;
}
#news_article + #pager li:nth-child(1) a,
#news_article + #pager li:nth-child(3) a {
	background: url(./images/bg_theme.svg) center center;
}
@media (max-width: 30rem) {
	#news_article + #pager li a {
		font-size: 3vw;
	}
}



/*========== 出展作家一覧 ==========*/
#artist_list {
	padding-bottom: min(2.5vw, 5rem);
}

#artist_list h3 {
	font-size: 1.125rem;
	font-weight: 400;
	width: 8rem;
	height: 8rem;
	margin: 0 auto 3rem;
	background: #222;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0;
	color: white;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
}
#artist_list h3::before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.9rem;
	background: url(./images/icon_pink.svg) center center no-repeat;
	background-size: contain;
	margin-bottom: 1rem;
}
#artist_list h3 span {
	margin-top: 0.25rem;
}
#artist_list > h4 {
	text-align: center;
	font-size: 1.25rem;
	margin: 5rem 0 2rem;
	text-indent: calc(1em / 8);
}
#artist_list > h4::before {
	display: block;
	content: '';
	width: 2rem;
	height: 2rem;
	background: url(./images/icon_blue.svg) center center no-repeat;
	background-size: contain;
	margin: 0 auto 1.25rem;
}
#artist_list > ul {
	display: flex;
	flex-wrap: wrap;
	width: calc(24rem * 3);
	margin: 0 auto;
}
#artist_list > ul li {
	width: calc(100% / 3);
	display: flex;
	padding: 1.5rem 1rem;
}
#artist_list > ul li a:first-child {
	flex: none;
}
#artist_list > ul li img {
	width: 8.75rem;
	height: 8.75rem;
	background: #EEE;
	margin-right: 1rem;
	object-fit: cover;
}
#artist_list > ul li p {
	line-height: 1.75;
}
#artist_list > ul li p em {
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 700;
}
@media (max-width: 75rem) {
	#artist_list > ul {
		width: calc(22rem * 2);
	}
	#artist_list > ul li {
		width: calc(100% / 2);
	}
	#artist_list > ul li img {
		width: 7.5em;
		height: 7.5rem;
	}
}
@media (max-width: 45rem) {
	#artist_list > ul {
		width: 20rem;
	}
	#artist_list > ul li {
		width: 100%;
	}
	#artist_list > ul li img {
		width: 6.25rem;
		height: 6.25rem;
	}
}

/*========== 出展作家 個別の紹介ページ ==========*/
@media (min-width: 70.001rem) {
	#artist_wrap {
		display: grid;
		grid-template-columns: 43.25rem 18.75rem;
		grid-template-rows: auto auto auto auto;
		width: 64rem;
		max-width: calc(100% - 10vw);
		margin: 5rem auto;
		gap: 3rem 2rem;
	}
	#artist_wrap div.portrait {
		grid-area: 1 / 2 / 3 / 3;
	}
	#artist_wrap div.name {
		grid-area: 1 / 1 / 2 / 2;
	}
	#artist_wrap div.title {
		grid-area: 2 / 1 / 3 / 2;
	}
	#artist_wrap div.biography {
		grid-area: 3 / 1 / 4 / 3;
	}
	#artist_wrap div.other {
		grid-area: 4 / 1 / 5 / 3;
	}

} /* @media (max-width: 70rem) ここまで */

@media (max-width: 70rem) {
	#artist_wrap > * {
		width: 40rem;
		max-width: 100%;
		margin: 5vw auto;
	}
	#artist_wrap > div + div {
		margin-top: 5vw;
	}
}

	#artist_wrap div.portrait img {
		width: 300px;
		max-width: 100%;
		height: auto;
		min-height: 100px;
		background: #EEE;
		margin: 0 auto;
	}
	#artist_wrap div.name h5 {
		font-size: 2rem;
		font-weight: 700;
		margin-bottom: 0.75rem;
	}
	#artist_wrap div.name h6 {
		font-size: 0.9rem;
		font-weight: 400;
		margin-bottom: 1.5rem;
	}
	#artist_wrap div.name p {
		font-size: 1rem;
		font-weight: 400;
	}

@media (max-width: 70rem) {
	#artist_wrap div.name {
		margin-bottom: 3rem;
	}
	#artist_wrap div.name > * {
		text-align: center;
	}
	#artist_wrap div.name h5 {
		font-size: 1.75rem;
	}
}

#artist_wrap div.title h5 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
#artist_wrap div.title h5::before {
	content: '「';
}
#artist_wrap div.title h5::after {
	content: '」';
}
#artist_wrap div.title p {
	font-size: 1rem;
	line-height: 1.75;
}
/*活動履歴*/
#artist_wrap div.biography th {
	font-weight: 400;
	vertical-align: top;
	padding: 0.25rem 1rem 0.25rem 0;
	line-height: 1.5;
}
#artist_wrap div.biography td {
	vertical-align: top;
	padding: 0.25rem 0 0.25rem 0;
	line-height: 1.5;
}
#artist_wrap div.biography td + td {
	padding-left: 1rem;
}
@media (max-width: 70rem) {
	#artist_wrap div.title h5,
	#artist_wrap div.title p {
		width: 100%;
		max-width: calc(100% - 10vw);
		margin: 0 auto 1rem;
	}
	#artist_wrap div.biography {
		background: #EEE;
		width: 100% !important;
		border: solid thin #EEE;
	}
	#artist_wrap div.biography table {
		width: calc(100% - 10vw);
		max-width: calc(40rem - 10vw);
		margin: 5vw auto;
	}
}


#artist_wrap div.other h5 {
	font-size: clamp(1.25rem, 3vw, 1.4rem);
	font-weight: 600;
	margin-bottom: 1rem;
}
#artist_wrap div.other ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#artist_wrap div.other ul li {
	width: 20rem;
	margin:0;
	margin-bottom: 2rem;
}
#artist_wrap div.other ul li img {
	display: block;
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: contain;
	object-position: center top;
	margin-bottom: 0.5rem;
	background: #F3F3F3;
}
#artist_wrap div.other ul li span {
	line-height: 1.5;
}
#artist_wrap div.other ul::after{
	content: '';
	display: block;
	width: 20rem;
	height: 0;
	margin-bottom: 0;
}


#artist_wrap div.youtube {
	width: 64rem;
}
@media (min-width: 70.001rem) {
	#artist_wrap div.youtube {
		margin-top: -3rem;
	}
}
@media (max-width: 70rem) {
	#artist_wrap div.youtube {
		margin-top: max(-2.5vw, -3rem);
	}
}
#artist_wrap div.youtube ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
#artist_wrap div.youtube ul li {
	width: 20rem;
	margin:0;
}
#artist_wrap div.youtube ul li iframe {
	display: block;
	width: 100%;
	height: calc(20rem / 16 * 9);
}
#artist_wrap div.youtube ul::after{
	content: '';
	display: block;
	width: 20rem;
	height: 0;
	margin-bottom: 0;
}


#artist_wrap + div div.archive {
	width: 64rem;
	max-width: calc(100% - 10vw);
	border-top: solid thin #CCC;
	margin: 4rem auto 0;
	padding-top: 3rem;
}
#artist_wrap + div div.archive h5 {
	font-size: clamp(1.25rem, 3vw, 1.4rem);
	font-weight: 600;
	margin-bottom: 2rem;
}
#artist_wrap + div div.archive ul li {
	margin: 1rem 0;
}


@media (max-width: 70rem) {
	#artist_wrap div.other h5,
	#artist_wrap div.youtube h5 {
		text-align: center;
		padding: 1rem 0;
	}
	#artist_wrap div.other ul {
		flex-direction: column;
		align-items: center;
	}
	#artist_wrap div.other ul li + li {
		margin-top: 0.5rem;
	}
	#artist_wrap div.other ul li img {
		height: auto;
	}
	#artist_wrap div.youtube ul {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}
}


	#artist_wrap +  #back a,
	#artist_wrap + div +  #back a {
		display: block;
		width: 20rem;
		font-size: 1.125rem;
		padding: 0.75rem 0;
		margin: 7.5rem auto 2rem;
		text-align: center;
		border: solid thin #666;
	}

@media (max-width: 70rem) {
	#artist_wrap + #back a,
	#artist_wrap + div + #back a {
		width: 18rem;
		font-size: 1rem;
		margin: 15vw auto 2rem;
	}
}
p.venue {
	margin-top: 2rem;
}

/*========== 外部リンク ==========*/

#link ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 4rem 0 4rem;
}
#link ul li {
	margin: 2rem;
}


/*========== アクセス ==========*/
#access h4 {
	text-align: center;
	font-size: 1.75rem;
	margin: 5rem 0 2rem;
	word-break: keep-all;
	line-height: 1.25;
}
@media (max-width: 45rem) {
	#access h4 {
		font-size: 1.5rem;
	}
}
#access #map1 {
	width: 80rem;
	max-width: calc(100% - 5vw);
	margin: 0 auto;
}
#access ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 60rem;
	margin: 0 auto;
	margin-bottom: 5.0rem;
}
#access ul li {
	margin-top: 6rem;
	width: calc((100% - 5rem) / 2);
	background: #DFDED8;
	padding: 1.5rem 2rem;
	position: relative;
}
@media (max-width: 68rem) {
	#access ul {
		width: 30rem;
		max-width: calc(100% - 10vw);
		flex-direction: column;
	}
	#access ul li {
		margin-top: 6.5rem;
		width: 30rem;
		max-width: 100%;
	}
}
#access ul li h5 {
	text-align: center;
	font-weight: 700;
	font-size: 1.125rem;
}
#access ul li dl dt {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: bold;
	margin-top: 1.5rem;
}
#access ul li dl dt::before {
	content: '[';
}
#access ul li dl dt::after {
	content: ']';
}
#access ul li dl dd {
	font-size: 1rem;
	line-height: 1.75;
	margin-top: 0.25rem;
}
#access ul li:nth-child(1)::before {
	content: '';
	width: 4rem;
	height: 4rem;
	background: url(./images/icon_car.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -4rem;
	left: calc(50% - 2rem);
}
#access ul li:nth-child(2)::before {
	content: '';
	width: 4rem;
	height: 4rem;
	background: url(./images/icon_train.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -4.5rem;
	left: calc(50% - 2rem);
}
#access ul li:nth-child(3)::before {
	content: '';
	width: 4rem;
	height: 4rem;
	background: url(./images/icon_plane.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -4.5rem;
	left: calc(50% - 2rem);
}
#access ul li:nth-child(4)::before {
	content: '';
	width: 4rem;
	height: 4rem;
	background: url(./images/icon_bus.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	top: -4.5rem;
	left: calc(50% - 2rem);
}

#access #map2 {
	width: 100%;
	background: #DFDED8;
}
@media (max-width: 68rem) {
	#access #map2 {
		width: 100%;
		height: 60vw;
	}
	#access #map2 img {
		display: block;
		width: 100%;
		height: 60vw;
		object-fit: cover;
	}
}
#access > dl {
	width: 64rem;
	max-width: calc(100% - 10vw);
	margin: 5rem auto 10rem;
}
#access > dl dt {
	color: #D86000; /* 濃いオレンジ */
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}
#access > dl div + dt {
	margin-top: 3rem;
}
#access > dl > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #EEE;
	border-bottom: dotted thin #666;
}
#access > dl dt + div {
	border-top: dotted thin #666;
}
#access > dl > div dd.alphabet {
	width: 2.75rem;
	height: 2.75rem;
	border: solid medium #333;
	border-radius: 50%;
	color: white;
	background: #D86000; /* 濃いオレンジ */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	letter-spacing: 0;
	margin: 0 1rem 0 1rem;
	line-height: 1;
	flex: none;
}
#access > dl > div dd.venue {
	font-weight: 700;
	font-size: 1.25rem;
	width: 15rem;
	line-height: 1.25;
	flex: none;
	margin: 0 1.5rem;
}
#access > dl > div dd.venue a {
	font-size: 1.25rem;
}
#access > dl > div dd.venue a::after {
	content: '';
	display: inline-block;
	width: 0.9rem;
	height: 0.9rem;
	background: url(./images/out.svg) center center no-repeat;
	background-size: contain;
	position: relative;
	top: -0.5rem;
}
#access > dl > div dd.address {
	width: 22rem;
	flex: auto;
	margin: 0 1.5rem;
}
#access > dl > div dd.qrcode {
	width: 4rem;
	height: 4rem;
	margin: 0 1.5rem;
	flex: none;
}
#access > dl > div dd.address > div {
	margin: 0.25rem 0;
	line-height: 1.5;
}
#access > dl > div dd.address > div:first-child {
	margin-top: 0.5rem;
}
#access > dl > div dd.address > div:last-child {
	margin-bottom: 0.5rem;
}
dd.note {
	background: #F4D7C8;
	border: solid thin #F4D7C8;
	margin: 2rem 0;
}
dd.note div {
	margin: 0.5rem 2rem;
	line-height: 1.5;
}
dd.note div:first-child {
	margin-top: 1rem;
}
dd.note div:last-child {
	margin-bottom: 1rem;
}
@media (max-width: 68rem) {
	#access > dl {
		width: 30rem;
		margin-top: 10vw;
		margin-bottom: 10vw;
	}
	#access > dl div + dt {
		margin-top: 7.5vw;
	}
	#access > dl > div {
		flex-direction: column;
		height: auto;
		justify-content: start;
		align-items: start;
		position: relative;
		padding-top: 0.25rem;
	}
	#access > dl > div dd.alphabet {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0.75rem;
	}
	#access > dl > div dd.venue {
		margin: 0.5rem 0 0 4rem;
		flex: auto;
		line-height: 2;
	}
	#access > dl div dd.address {
		margin: 0.25rem 0 0.75rem 4rem;
		width: calc(100% - 5rem);
		flex: auto;
		line-height: 1.5;
	}
	#access > dl > div dd.qrcode {
		margin: -0.5rem 0 1rem 4rem;
	}
	#access > dl > div dd.qrcode img {
		max-width: 4rem;
		max-height: 4rem;
	}
}


/*========== 展示会場 ==========*/
@media (min-width: 80.001rem) {
	#venue article {
		background: #E8E7E2;
		border: solid thin #E8E7E2;
	}
	#venue article:nth-of-type(1) {
		border-top: solid 1.5rem #E8E7E2;
	}
	#venue article.note {
		padding-top: 2rem;
	}
	#venue article.note p {
		background: #F4D7C8;
		padding: 0.25rem 2rem;
		line-height: 1.5;
	}
	#venue article.note p:first-child {
		padding-top: 1rem;
	}
	#venue article.note p:last-child {
		padding-bottom: 1rem;
	}
	#venue article > * {
		background: white;
		width: 75rem;
		margin-right: auto;
		margin-left: auto;
	}
	#venue article > *:last-child {
		margin-bottom: 1.5rem;
	}
	#venue article h4 {
		background: white;
		width: 75rem;
		margin: 1.5rem auto 0;
		padding: 2rem 2rem 1rem;
		font-size: 1.5rem;
		display: flex;
		align-items: center;
	}
	#venue article h4 span {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		letter-spacing: 0;
		width: 2.75rem;
		height: 2.75rem;
		border: solid medium #333;
		border-radius: 50%;
		margin-right: 0.5rem;
		color: white;
		background: #D86000; /* 濃いオレンジ */
		transform: scale(0.9);
	}
	#venue article ul.large_image {
		background: white;
		width: 75rem;
		height: calc(70rem / 16 *9);
		margin: 0 auto;
		padding: 0 2.5rem;
		position: relative;
	}
	#venue article ul.large_image li {
		position: absolute;
		top: 0;
		left: 2.5rem;
		width: 70rem;
		height: calc(70rem / 16 *9 * 0.9928);
		transform: scale(0.9928);
	}
	#venue article ul.large_image li img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#venue article ul.large_image li input[type=radio] {
		display: none;
	}
	#venue article ul.large_image li input[type=radio] + img {
		display: none;
	}
	#venue article ul.large_image li input[type=radio]:checked + img {
		display: block;
	}

	#venue article ul.thumbnail_image {
		background: white;
		display: flex;
		flex-wrap: wrap;
		width: 75rem;
		margin: 0 auto;
		padding: 0 2.5rem;
	}
	#venue article ul.thumbnail_image li {
		flex: none;
		width: 5rem;
		height: 5rem;
	}
	#venue article ul.thumbnail_image li label {
		display: block;
		width: 5rem;
		height: 5rem;
		border: solid 0.25rem white;
		cursor: pointer;
	}
	#venue article ul.thumbnail_image li label img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#venue article ol {
		background: white;
		width: 75rem;
		padding: 1rem 2.5rem 2rem;
		margin: 0 auto;
	}
	#venue article ol li {
		margin: 1rem;
		line-height: 1.5;
	}
	#venue article div {
		padding: 1rem 2.5rem 2rem;
		margin-top: -2rem;
	}
	#venue article div p {
		margin: 0.5rem 0 0;
		line-height: 1.5;
	}
	#venue article div p:first-child {
		border-top: solid thin #333;
		padding-top: 1.5rem;
	}
}
@media (max-width: 80rem) {
	#venue article {
		background: #E8E7E2;
		border: solid thin #E8E7E2;
	}
	#venue article:nth-of-type(1) {
		border-top: solid 1rem #E8E7E2;
	}
	#venue article:nth-last-of-type(1) {
		border-bottom: solid 0 #E8E7E2;
	}
	#venue article.note {
		padding-top: 1vw;
	}
	#venue article.note p {
		background: #F4D7C8;
		padding: 0.25rem 2.5vw;
		line-height: 1.5;
	}
	#venue article.note p:first-child {
		padding-top: 1rem;
	}
	#venue article.note p:last-child {
		padding-bottom: 1rem;
	}
	#venue article > * {
		background: white;
		width: 95vw;
		margin-right: auto;
		margin-left: auto;
	}
	#venue article h4 {
		width: 95vw;
		margin: 1rem auto 0;
		padding: 1rem 2.5vw 0.5rem;
		background: white;
		font-size: 1.25rem;
		display: flex;
		align-items: center;
	}
	#venue article h4 span {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		letter-spacing: 0;
		width: 2.75rem;
		height: 2.75rem;
		border: solid medium #333;
		border-radius: 50%;
		margin-right: 0.25rem;
		color: white;
		background: #D86000; /* 濃いオレンジ */
		transform: scale(0.75);
	}
	#venue article ul.large_image {
		background: white;
		width: 95vw;
		height: calc(95vw / 16 *9);
		margin: 0 auto;
		padding: 0 2.5vw;
		position: relative;
	}
	#venue article ul.large_image li {
		position: absolute;
		top: 0;
		left: 0;
		width: 95vw;
		height: calc(95vw / 16 *9);
	}
	#venue article ul.large_image li img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#venue article ul.large_image li input[type=radio] {
		display: none;
	}
	#venue article ul.large_image li input[type=radio] + img {
		display: none;
	}
	#venue article ul.large_image li input[type=radio]:checked + img {
		display: block;
	}

	#venue article ul.thumbnail_image {
		background: white;
		display: flex;
		flex-wrap: wrap;
		width: 95vw;
		margin: 0 auto;
		padding: 0.5vw 2.5vw 0;
	}
	#venue article ul.thumbnail_image li {
		flex: none;
		width: 10vw;
		height: 10vw;
	}
	#venue article ul.thumbnail_image li label {
		display: block;
		width: 10vw;
		height: 10vw;
		border: solid 0.5vw white;
		cursor: pointer;
	}
	#venue article ul.thumbnail_image li label img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	@media (max-width: 45rem) {
		#venue article:nth-of-type(1) {
			border-top: solid 5vw #E8E7E2;
		}
		#venue article:nth-last-of-type(1) {
			border-bottom: solid 0 #E8E7E2;
		}
		#venue article ul.thumbnail_image li {
			width: calc(90vw / 7);
			height: calc(90vw / 7);
		}
		#venue article ul.thumbnail_image li label {
			width: calc(90vw / 7);
			height: calc(90vw / 7);
			border: solid 0.5vw white;
		}
	}

	#venue article ol {
		background: white;
		width: 95vw;
		padding: 1rem 2.5vw 0;
		margin: 0 auto 5vw;
	}
	#venue article ol li {
		margin: 0.75rem;
		line-height: 1.25;
	}

	#venue article div {
		padding: 1rem 2.5vw 2rem;
		position: relative;
		top: -5vw;
	}
	#venue article div p {
		margin: 0.5rem 0 0;
		line-height: 1.5;
	}
	#venue article div p:first-child {
		border-top: solid thin #333;
		padding-top: 1.5rem;
	}
}


/*========== アーカイブ/開催概要 ==========*/
#outline {
}

#outline dl {
	width: 60rem;
	max-width: calc(100% - 10vw);
	margin: 3rem auto 3rem;
	display: flex;
	flex-wrap: wrap;
}
#outline dl dt {
	width: 5rem;
	line-height: 1.75;
	margin: 0.25rem 0;
	flex: none;
}
@media (max-width: 40rem) {
	#outline dl dt {
		width: 3.5rem;
	}
}
#outline dl dd {
	width: calc(100% - 5rem);
	margin: 0.25rem 0;
	line-height: 1.75;
}
@media (max-width: 40rem) {
	#outline dl dt {
		width: 3.5rem;
	}
	#outline dl dd {
		width: calc(100% - 3.5rem);
	}
}
#outline dl dd div {
	line-height: 1.75;
}
#outline ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 40rem;
	max-width: calc(100% - 10vw);
	margin: 3rem auto 5rem;
}
#outline ul li {
	margin: 0 1.5rem;
}
@media (max-width: 55rem) {
	#outline ul {
		flex-wrap: wrap;
		justify-content: center;
	}
	#outline ul li {
		margin: 0.5rem 1.5rem;
		height: 3.5rem;
	}
}

/*========== アーカイブページに戻る ボタン ==========*/
#back_to_archive_top {
	padding: 2rem 0;
}
#back_to_archive_top a:any-link {
	display: block;
	width: 18rem;
	margin: 2rem auto;
	padding: 1rem;
	text-align: center;
	background: white;
	border: solid thin #666;
	border-radius: 3rem;
}

#venue + #back_to_archive_top {
	background: #E8E7E2;
}


/*========== アーカイブのトップページ ==========*/
#archive > ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width:calc(100% - 10vw);
	margin: 0 auto 10vw;
}
#archive > ul > li em {
	font-style: normal;
	font-size: clamp(2rem, 7.5vw, 3.25rem);
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#archive > ul > li em:before {
	content: '-';
	transform: scale(2,1);
}
#archive > ul > li {
	margin: 1rem 0 clamp(2rem, 7.5vw, 3.25rem);
}
#archive > ul > li:nth-child(1),
#archive > ul > li:nth-child(2) , 
#archive > ul > li:nth-child(3) a ,
#archive > ul > li:nth-child(4) a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#archive > ul li:nth-child(1) ul {
	display: flex;
	margin: 0;
	padding: 0;
}
#archive > ul li:nth-child(1) ul li {
	margin: 0;
	padding: 0;
}
#archive > ul li:nth-child(1) ul li a {
	display: block;
	margin: 0;
	padding: 0.125rem 0.75rem;
}
#archive > ul li:nth-child(1) ul li:nth-child(2) a,
#archive > ul li:nth-child(1) ul li:nth-child(3) a {
	border-left: solid thin #333;
}

#archive > ul li:nth-child(2) ul {
	display: flex;
	margin: 0;
	padding: 0;
}
#archive > ul li:nth-child(2) ul li {
	margin: 0;
	padding: 0;
}
#archive > ul li:nth-child(2) ul li a {
	display: block;
	margin: 0;
	padding: 0.125rem 0.75rem;
}

#archive > ul li:nth-child(2) ul li:nth-child(2) a,
#archive > ul li:nth-child(2) ul li:nth-child(3) a {
	border-left: solid thin #333;
}
#archive > ul > li:nth-child(3) img {
	width: 20rem;
	max-width: 100%;
	height: auto;
}
#archive > ul > li:nth-child(4) img {
	width: 32rem;
	max-width: 100%;
	height: auto;
}

/*========== kfcac ことなみ未来会議文化活動部会 ==========*/
#kfcac1 {

}
#kfcac1 hgroup {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#kfcac1 hgroup::before {
	content: '';
	display: block;
	width: 4.25rem;
	height: 4.25rem;
	background: url(./images/icon_white.svg) center center no-repeat, #036EA1;
	background-size: 2rem 2rem;
	border-radius: 50%;
	margin-bottom: 3rem;
}
#kfcac1 hgroup h2 {
	font-size: min(5.5vw, 1.75rem);
	font-weight: 600;
	margin-bottom: 1rem;
}
#kfcac1 hgroup p {
	font-size: min(2.75vw, 1rem);
}
#kfcac1 > p {
	width: 60rem;
	max-width: calc(100% - 10vw);
	margin: min(6vw, 3rem) auto min(8vw, 4rem);
	font-size: 1rem;
	line-height: 2;
}
#kfcac2 {
	background: linear-gradient(to bottom, #E5F3F4, #FFFFFF, #FFFFFF, #FFFFFF);
	padding-bottom: min(10vw, 5rem);
}
#kfcac2 h3 {
	font-size: 1.125rem;
	font-weight: 400;
	width: 8rem;
	height: 8rem;
	margin: 0 auto min(8vw, 4rem);
	background: #222;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0;
	color: white;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
}
#kfcac2 h3::before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.9rem;
	background: url(./images/icon_blue.svg) center center no-repeat;
	background-size: contain;
	margin-bottom: 1rem;
}

#kfcac2 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 70rem;
	max-width: calc(100% - 5vw);
	margin: 0 auto;
}
#kfcac2 ul li {
	width: calc((100% - 4rem) / 2);
	flex: none;
}
@media (max-width: 73rem) {
	#kfcac2 ul li {
		width: calc((100% - 2.5vw) / 2);
	}
}
@media (max-width: 37rem) {
	#kfcac2 ul li {
		width: 100%;
	}
}
#kfcac2 ul li figure {
	width: 100%;
}
#kfcac2 ul li figure > img {
	width: 100%;
	height: auto;
}
#kfcac2 ul li figure figcaption {
	height: 5.5rem;
	padding-top: 0.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.25rem 2rem;
}
#kfcac2 ul li:nth-child(1) figure figcaption img {
	height: 4rem;
	width: auto;
}
#kfcac2 ul li:nth-child(2) figure figcaption {
	padding-bottom: 2rem;
	align-items: center;
}
#kfcac2 ul li:nth-child(2) figure figcaption img {
	height: 2rem;
	width: auto;
}
#kfcac2 ul li:nth-child(7) figure figcaption img {
	height: 2rem;
	width: auto;
}
#kfcac2 ul li figure figcaption a:any-link {
	padding: 0.25rem 0.5rem;
	border: solid thin #333;
	font-size: 0.85rem;
}
/*========== annual_7th 第7回山の小さな展覧会 ==========*/
#annual_7th {
	background: linear-gradient(to bottom, #FFFFFF, #F0EFED);
}
#annual_7th_block1 hgroup {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#annual_7th_block1 hgroup::before {
	content: '';
	display: block;
	width: 4.25rem;
	height: 4.25rem;
	background: url(./images/icon_white.svg) center center no-repeat, #dc5994;
	background-size: 2rem 2rem;
	border-radius: 50%;
	margin-bottom: 3rem;
}
#annual_7th_block1 hgroup h2 {
	font-size: min(5.5vw, 1.75rem);
	font-weight: 600;
}
#annual_7th_block1 hgroup p {
	font-size: min(2.75vw, 1rem);
	margin-bottom: 0.75rem;
}
#annual_7th_block1 > p {
	width: 55rem;
	font-weight: 500;
	font-size: 1rem;
	max-width: calc(100% - 10vw);
	margin: min(6vw, 3rem) auto min(8vw, 4rem);
	line-height: 2;
}
#annual_7th_block1 > p img {
	display: block;
	width: 30rem;
	margin: 0 auto;
	margin-top: min(8vw, 4rem);
}
#annual_7th_block1_1 {
	padding-bottom: min(10vw, 5rem);
}
#annual_7th_block1_1 h4 img {
	display: block;
	width: min(20rem, 60vw);
	height: auto;
	margin: min(10vw, 5rem) auto min(5vw, 2.5rem);
}
#annual_7th_block1_1 p {
	width: 55rem;
	max-width: calc(100% - 10vw);
	margin: 1rem auto;
	line-height: 2;
}
p.signature {
	text-align: right;
	font-weight: 500;
	margin: 1rem 0 0;
}

#annual_7th_block1_1 h3,
#annual_7th_block2 h3,
#annual_7th_block3 h3 ,
#annual_7th_block4 h3{
	font-size: 1.125rem;
	font-weight: 400;
	width: 8rem;
	height: 8rem;
	background: #222;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1.25rem 0;
	color: white;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
	position: relative;
	left: calc(50% - 4rem);
	margin-bottom: min(6vw, 3rem);
}
#annual_7th_block1_1 h3::before,
#annual_7th_block2 h3::before,
#annual_7th_block3 h3::before,
#annual_7th_block4 h3::before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.9rem;
	background: url(./images/icon_pink.svg) center center no-repeat;
	background-size: contain;
	margin-bottom: 1rem;
}
#annual_7th_block2 {
	padding-bottom: min(10vw, 5rem);
}
#annual_7th_block2 > dl {
	width: 55rem;
	max-width: calc(100% - 10vw);
	margin: 0 auto;
}
#annual_7th_block2 > dl > div {
	display: flex;
}
#annual_7th_block2 > dl > div > dt {
	vertical-align: top;
	text-align: left;
	font-weight: 400;
	padding: 0.5rem 0;
	line-height: 1.75;
	width: 11rem;
	flex: none;
}
#annual_7th_block2 > dl > div > dd {
	vertical-align: top;
	text-align: left;
	font-weight: 400;
	padding: 0.5rem 0;
	line-height: 1.75;
}
@media (max-width: 45rem) {
	#annual_7th_block2 > dl > div > dt {
		width: 5.5rem;
		padding-bottom: 0;
		padding-right: 1rem;
	}
}
#annual_7th_block2 > dl > div > dd ul li {
	line-height: 1.75;
	list-style-type: disc;
	margin-left: 1rem;
}
#annual_7th_block2 > dl > div > dd ul li + li {
	margin-top: 0.75rem;
}
#annual_7th_block2 > dl > div > dd ul li dl div {
	display: flex;
	margin: 1rem 0;
}
#annual_7th_block2 > dl > div > dd ul li dl div dt {
	flex: none;
	line-height: 1.25;
}
#annual_7th_block2 > dl > div > dd ul li dl div dt::after {
	content: '：';
	margin-right: 0.5rem;
}
#annual_7th_block2 > dl > div > dd ul li dl div dd {
	line-height: 1.25;
}
#annual_7th_block2 > dl > div > dd span {
	white-space: none;
}

#annual_7th_block3 {
	padding-bottom: min(10vw, 5rem);
}
#annual_7th_block3 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	width: 58rem;
	max-width: calc(100% - 10vw);
	margin: 0 auto;
	padding-bottom: min(10vw, 5rem);
}



#annual_7th_block3 p {
	padding-bottom: min(2vw, 1rem);
}
#annual_7th_block3 p a:any-link {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #dc5994;
	width: 25rem;
	max-width: 90vw;
	height: 3.25rem;
	border: solid 2px #dc5994;
	border-radius: 3rem;
	font-size: 1.125rem;
	overflow: hidden;
	position: relative;
	margin: 0 auto;
	z-index: 2;
	font-weight: 500;
	transition: .5s;
}
#annual_7th_block3 p a:hover {
	color: white;
}
#annual_7th_block3 p a::before {
	content: '';
	display: block;
	width: 25rem;
	max-width: 90vw;
	height: 3.25rem;
	position: absolute;
	top: -2px;
	left: calc(-100% + 3.25rem - 4px);
	background: #dc5994;
	border-radius: 3rem;
	z-index: -1;
	transition: .5s;
}
#annual_7th_block3 p a.click::before,
#annual_7th_block3 p a:hover::before {
	left: 0;
}


#annual_7th_block4 {
	padding-bottom: min(10vw, 5rem);
	background: #F0EFED;
}
#annual_7th_block4 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	width: 58rem;
	justify-content: center;
	max-width: calc(100% - 10vw);
	margin: 0 auto;
	padding-bottom: min(10vw, 5rem);
}



#annual_7th_block4 p {
	padding-bottom: min(2vw, 1rem);
}
#annual_7th_block4 p a:any-link {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #dc5994;
	background: #fff;
	width: 25rem;
	max-width: 90vw;
	height: 3.25rem;
	border: solid 2px #dc5994;
	border-radius: 3rem;
	font-size: 1.125rem;
	overflow: hidden;
	position: relative;
	margin: 0 auto;
	z-index: 2;
	font-weight: 500;
	transition: .5s;
}
#annual_7th_block4 p a:hover {
	color: white;
}
#annual_7th_block4 p a::before {
	content: '';
	display: block;
	width: 25rem;
	max-width: 90vw;
	height: 3.25rem;
	position: absolute;
	top: -2px;
	left: calc(-100% + 3.25rem - 4px);
	background: #dc5994;
	border-radius: 3rem;
	z-index: -1;
	transition: .5s;
}
#annual_7th_block4 p a.click::before,
#annual_7th_block4 p a:hover::before {
	left: 0;
}
