@charset "UTF-8";

.pc {
	display: none !important;
}

.local-header .main a,
.local-header .lang a,
.home-header .main a,
.content-title h1,
.column h2,
.column h3,
.column h4,
.column div.text dl.list dt,
.column.multi-box dt,
.column.multi-box dd.subtitle,
.column.flex dt,
.column.flex .title,
.column.flex p.large,
.column.journal dt,
.column.collaborator dt,
.floor-map dt *,
.column.profile .box .text > dl > dt,
.column.flex-dl-box.faq-list .box > dl dt,
.column.notfound dt {
	 font-family: "SST W55 Bold", sans-serif;
}


.quot {
	font-family: sans-serif;
}
.dash {
	font-family: sans-serif;
}

html {
	scroll-padding: 100px;
}





/* ---------------------------------------------------------------------------------------------------- */
/* Header */

.global-header {
	height: 60px;
	background: #000;
}
.global-header .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
}
.global-header .logo {
	width: 84px;
}



.local-header {
	box-sizing: border-box;
	position: relative;
	height: 100px;
	z-index: 1000;
}
.local-header .inner {
}

.local-header .menu-container {
	text-align: center;
	background: #fff;
}

.local-header .gsp-logo {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.local-header .gsp-logo img {
	width: 130px;
	height: auto;
}


.local-header .main {
	padding: 32px 0 0;
}
.local-header .lang {
	margin: 32px 0 0;
}
.local-header .sns {
	margin: 38px 0 0;
	padding: 0 0 30px;
}



.local-header .main a {
	position: relative;
	font-size: 1.25rem;
	color: #737373;
	transition: color 200ms ease-out;
}
.local-header .main a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	left: 0;
	bottom: -1px;
	background: #000;
	transition: opacity 200ms ease-out;
	
	opacity: 0;
}

.local-header .main a:active {
	color: #000;
}
.local-header .main a:active::after {
	opacity: 1;
}

.local-header .main li + li {
	margin-top: 28px;
}

body.home .local-header .main li.home a,
body.visit .local-header .main li.visit a,
body.activity .local-header .main li.activity a,
body.article .local-header .main li.article a,
body.about .local-header .main li.about a,
body.archive .local-header .main li.archive a
{
	color: #000;
}
body.home .local-header .main li.home a::after,
body.visit .local-header .main li.visit a::after,
body.activity .local-header .main li.activity a::after,
body.article .local-header .main li.article a::after,
body.about .local-header .main li.about a::after,
body.archive .local-header .main li.archive a::after {
	opacity: 1;
}

body.extra .local-header .main a {
	color: #000;
}


.local-header .lang ul {
	display: flex;
	justify-content: center;
}

.local-header .lang a {
	position: relative;
	font-size: 1.25rem;
	color: #737373;
	transition: color 200ms ease-out;
}
.local-header .lang li {
	position: relative;
}
.local-header .lang li + li {
	margin-left: 40px;
}
.local-header .lang li + li::before {
	position: absolute;
	content: "";
	display: block;
	width: 3px;
	height: 18px;
	background: #000;
	left: -22px;
	top: calc(50% - 10px);
}
.local-header .lang a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	left: 0;
	bottom: -1px;
	background: #000;
	transition: opacity 200ms ease-out;
	
	opacity: 0;
}

.local-header .lang a:active {
	color: #000;
}
.local-header .lang a:active::after {
	opacity: 1;
}

html:lang(ja) .local-header .lang .jp a,
html:lang(en) .local-header .lang .en a {
	color: #000;
}

html:lang(ja) .local-header .lang .jp a::after,
html:lang(en) .local-header .lang .en a::after {
	opacity: 1;
}



.local-header .sns ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.local-header .sns li + li {
	margin-left: 28px;
}
.local-header .sns a {
	transition: opacity 200ms ease-out;
}
.local-header .sns a:active {
	opacity: 0.55;
}

.local-header .sns .instagram img {
	width: 28px;
}
.local-header .sns .x img {
	width: 25px;
}
.local-header .sns .facebook img {
	width: 30px;
}
.local-header .sns .youtube img {
	width: 32px;
}



.local-header .menu-button {
	position: absolute;
	width: 30px;
	height: 22px;
	right: 30px;
	top: calc(50% - 11px);
}
.local-header .menu-button button {
	display: block;
	width: 100%;
	height: 22px;
	margin: 0;
	padding: 0;
	font-size: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}
.local-header .menu-button span {
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	background: #000;
	border-radius: 2px;
	transition: all 200ms ease-out;
}
.local-header .menu-button span:nth-child(1) {
	top: 0;
}
.local-header .menu-button span:nth-child(2) {
	top: calc(50% - 1px);
}
.local-header .menu-button span:nth-child(3) {
	bottom: 0;
}

.local-header .menu-button span:nth-child(4) {
	opacity: 0;
	pointer-events: none;
}



body.opened-menu .local-header .menu-button span:nth-child(1) {
	transform: translateY(10px) rotate(45deg);
}
body.opened-menu .local-header .menu-button span:nth-child(2) {
	opacity: 0;
}
body.opened-menu .local-header .menu-button span:nth-child(3) {
	transform: translateY(-10px) rotate(-45deg);
}

body.opened-menu {
	overflow: hidden;
}





.local-header .menu-container {
	height: 0;
	overflow: auto;
	transition: all 400ms ease-out;
}


body.fix-menu .local-header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
}
body.fix-menu main {
	padding-top: 100px;
}





.home-header {
	margin: 30px 17px 30px;
}
.home-header h1,
.home-header .lang {
	display: none;
}
.home-header ul {
	display: flex;
	flex-wrap: wrap;
}
.home-header li {
	margin: 0 20px 18px 0;
}
.home-header a {
	position: relative;
	font-size: 1.25rem;
}
.home-header a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	left: 0;
	bottom: -1px;
	background: #000;
	transition: opacity 200ms ease-out;
	
	opacity: 0;
}
.home-header a:active {
}
.home-header a:active::after {
	opacity: 1;
}






/* ---------------------------------------------------------------------------------------------------- */
/* Footer */

.local-footer {
	margin: 40px 0 35px;
}

.scroll-top {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: flex-end;
	padding: 0 16px;
}
.scroll-top a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: 2px solid #000;
	transition: all 200ms ease-out;
}
.scroll-top a:active {
	background: #000;
}

.scroll-top a img {
	width: 24px;
	height: auto;
	transition: all 200ms ease-out;
}
.scroll-top a:active img {
	filter: invert(1);
}


.local-footer .inner {
	box-sizing: border-box;
	margin: 20px 16px 0;
}

.local-footer .menu-container {
	padding: 45px 40px 40px;
	border: 0 solid #000;
	border-width: 2px 0;
}

.local-footer .main {
	margin-right: -40px;
}
.local-footer .main ul {
}
.local-footer .main li {
}
.local-footer .main li + li {
	margin-top: 20px;
}
.local-footer .main a {
	position: relative;
	font-size: 0.9375rem;
	text-decoration: underline;
	transition: color 200ms ease-out;
}
.local-footer .main a:active {
	color: #737373;
	text-decoration: none;
}


.local-footer .sns {
	max-width: 270px;
	margin: 60px auto 0;
}
.local-footer .sns ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.local-footer .sns li + li {
}
.local-footer .sns li a {
	transition: opacity 200ms ease-out;
}
.local-footer .sns li a:active {
	opacity: 0.55;
}

.local-footer .instagram img {
	width: 38px;
}
.local-footer .x img {
	width: 34px;
}
.local-footer .facebook img {
	width: 40px;
}
.local-footer .youtube img {
	width: 42px;
}

.local-footer .logo {
	width: 80px;
	margin: 40px auto 0;
}
.local-footer .copyright {
	margin-top: 14px;
	font-size: 0.75rem;
	text-align: center;
}


@media screen and (max-width:374px) {
	.local-footer .menu-container {
		padding: 45px 20px 40px;
	}
	.local-footer .main {
		margin-right: -20px;
	}
	.local-footer .main a {
		font-size: 1rem;
	}
}











/* ---------------------------------------------------------------------------------------------------- */
/* Title */

.content-title {
	box-sizing: border-box;
	padding: 30px 17px 0;
}
.content-title .inner {
	padding: 0 0 5px;
	border-bottom: 1px solid #000;
}

.content-title .return a {
	display: flex;
	font-size: 0.75rem;
	text-decoration: underline;
	transition: opacity 200ms ease-out;
}
.content-title .return a:active {
	opacity: 0.55;
	text-decoration: none;
}
.content-title .return span {
	display: inline-block;
	width: 15px;
	margin-right: 5px;
}

.content-title h1 {
	margin: 25px 0 10px;
	font-size: 2rem;
	line-height: 1.35;
}
.content-title h1 .sub {
	display: block;
	margin: 10px 0 20px;
	font-size: 1.25rem;
	line-height: 1.35;
}

.content-title h1.lite {
	font-size: 1.25rem;
}


.content-title .caption {
	margin: 10px 0;
	font-size: 1.0rem;
}


.content-title.compact {
	padding-top: 0;
}



.inner-link {
	margin: 24px 0 0;
}
.inner-link ul {
	display: flex;
	flex-wrap: wrap;
}
.inner-link li {
	padding: 0 12px 12px 0;
}
.inner-link a {
	display: flex;
	font-size: 0.75rem;
	text-decoration: underline;
	transition: opacity 200ms ease-out;
}
.inner-link a:active {
	opacity: 0.55;
	text-decoration: none;
}
.inner-link span {
	display: inline-block;
	width: 15px;
	margin-right: 5px;
}






/* ---------------------------------------------------------------------------------------------------- */
/* Slide */

.slide-nav {
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 22px;
	bottom: 2px;
	z-index: 10;
}
.slide-nav .prev,
.slide-nav .next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 22px;
	height: 22px;
	border: none;
	background: transparent;
	transition: all 200ms ease-out;
	cursor: pointer;
}
.slide-nav .prev img,
.slide-nav .next img {
	width: 14px;
	height: 22px;
}
.slide-nav .slide-dots {
	display: flex;
	margin: 0 12px;
}
.slide-nav .slide-dots button + button {
	margin: 0 0 0 4px !important;
}
.slide-nav .slide-dots button {
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
	font-size: 0;
	border: none;
	background: transparent;
	transition: all 200ms ease-out;
	cursor: pointer;
}
.slide-nav .slide-dots button::after {
	box-sizing: border-box;
	position: absolute;
	content: "";
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	border: 2px solid #000;
	border-radius: 5px;
}
.slide-nav .slide-dots button.active::after {
	background: #000;
}

.slide-nav .prev:active,
.slide-nav .next:active,
.slide-nav .slide-dots button:active {
	opacity: 0.55;
}








/* ---------------------------------------------------------------------------------------------------- */
/* Top */

.main-visual {
	position: relative;
	margin: 20px 0 0 17px;
	padding-bottom: 44px;
}
.main-visual img {
	width: 100%;
	height: 84vw;
	object-fit: cover;
}
.main-visual.single {
	padding-bottom: 0;
}





/* ---------------------------------------------------------------------------------------------------- */
/* Content */

.column {
	margin: 20px 17px 0;
}
.column .column {
	margin-left: 0;
	margin-right: 0;
}

.content-title + .column {
	margin-top: 0;
	padding-top: 20px;
}

.margin-lite {
	margin-top: 20px !important;
}
.margin-lite-sp {
	margin-top: 20px !important;
}


.column.nest {
}
.column.nest + .nest {
	margin-top: 40px !important;
}

.column-group {
	position: relative;
	padding-top: 20px;
}
.column-group .column:nth-child(1) {
	margin-top: 0;
}
.column-group.pad {
	margin-top: 30px;
	padding-top: 20px;
}
.column-group.no-pad {
	margin-top: 0;
	padding-top: 0;
}


.column.break {
	margin-top: 50px;
}
.column.pad {
	margin-top: 0;
	padding-top: 60px;
}
.column.pad-mini {
	margin-top: 0;
	padding-top: 20px;
}
* + .column.separator {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 2px solid #000;
}

.column-group.separator {
	margin-top: 50px;
	padding-top: 50px;
}
.column-group.separator::before {
	position: absolute;
	content: "";
	display: block;
	width: calc(100% - 40px);
	height: 2px;
	left: 20px;
	top: 0;
	background: #000;
}


.column > .inner {
}

.column h2 {
	font-size: 1.5rem;
	line-height: 1.334;
}
.column h2.full {
	margin-bottom: 20px;
}
.column h2.sub {
	font-size: 1.25rem;
	line-height: 1.5;
}
.column h2.lite {
	font-size: 1rem;
	line-height: 1.5;
}

body.about .column h2.lite {
	font-size: 1.125rem !important;
}



.column h3 {
	font-size: 1rem;
	line-height: 1.5;
}
.column h3.full {
	margin-bottom: 20px;
}
.column h3.large {
	font-size: 1.25rem;
}


.column h4 {
	margin-top: 10px;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.column h2 + h3 {
	margin-top: 10px;
}

.column h2.break,
.column h3.break {
	margin-top: 45px;
}
.column h2.pad,
.column h3.pad {
	margin-top: 30px;
}


.column h2 a,
.column h3 a {
	text-decoration: underline;
}
.column h2 a:active,
.column h3 a:active {
	text-decoration: none;
}






.column div.text .dash {
	display: inline-block;
	width: 15px;
	height: 1px;
	margin: 0 0 1em;
	background: #000;
}


.column div.text {
	margin-top: 5px;
}
.column * + div.text {
	margin-top: 20px;
}

.column div.text p {
	font-size: 1rem;
	line-height: 1.75;
	/*
	word-break: break-all;
	*/
}

.column div.text p.right {
	text-align: right;
}

.column div.text p.break {
	margin-top: 1.5em;
}

.column div.text.no-margin {
	margin-top: 5px !important;
}

.column p.date {
	text-align: right;
	margin-bottom: 1.25em;;
}
.column p.author {
	text-align: right;
}

.column p.poem {
	line-height: 2.5em !important;
}
.column p.poem + p.break {
	margin-top: 2.0em !important;
}

.column p.center {
	text-align: center;
}

.column div.text p.note {
	margin-top: 30px;
	font-size: 0.85rem;
}



.column div.text li {
	font-size: 1rem;
	line-height: 1.75;
}
.column div.text li + li {
	margin-top: 8px;
}
.column div.text ul.break,
.column div.text ol.break {
	margin-top: 1.5em;
}


.column div.text ol {
	counter-reset: order;
}
.column div.text ol li {
	padding-left: 1.75em;
	text-indent: -1.75em;
	counter-increment: order;
}
.column div.text ol li::before {
	display: inline-block;
	content: counter(order) ".";
	width: 1.75em;
	text-indent: 0;
}


.column div.text ul.order {
	counter-reset: order;
}
.column div.text ul.order li {
	padding-left: 1.75em;
	text-indent: -1.75em;
	counter-increment: order;
}
.column div.text ul.order li::before {
	display: inline-block;
	content: counter(order) ".";
	width: 1.75em;
	text-indent: 0;
}



.column div.text ul.marker li {
	padding-left: 1.5em;
	text-indent: -1.5em;
	counter-increment: order;
}
.column div.text ul.marker li::before {
	display: inline-block;
	content: "・";
	width: 1.5em;
	text-indent: 0;
}


.column div.text dl.list + dl.list {
	margin-top: 20px;
}
.column div.text dl.list dd + dt {
	margin-top: 20px;
}

.column div.text dl.list dt {
	font-size: 1rem;
	line-height: 1.75;
}
.column div.text dl.list dd {
	font-size: 1rem;
	line-height: 1.75;
}


.column div.text p a {
	text-decoration: underline;
}
.column div.text p a:active {
	text-decoration: none;
}

.column div.text dd a {
	text-decoration: underline;
}
.column div.text dd a:active {
	text-decoration: none;
}

.column div.text li a {
	text-decoration: underline;
}
.column div.text li a:active {
	text-decoration: none;
}


.column div.blockquote {
	box-sizing: border-box;
	padding: 20px 25px;
	border: 1px solid #ccc;
}
.column div.blockquote.break {
	margin-top: 40px;
}
.column div.blockquote p {
	font-size: 1rem;
	line-height: 1.75;
}
.column div.blockquote p.break {
	margin-top: 1.5em;
}

.column div.blockquote.note p {
	font-size: 0.9375rem;
}
.column div.blockquote p a {
	text-decoration: underline;
}
.column div.blockquote p a:active {
	text-decoration: none;
}


.column div.link {
	margin: 12px 0 0;
}
.column div.link a {
	font-size: 1.0rem;
	line-height: 1.5;
	text-decoration: underline;
}
.column div.link a:active {
	text-decoration: none;
}

.column div.link.video {
	margin-top: 20px;
}
.column div.link.video a {
	display: inline-block;
	height: 32px;
	line-height: 32px;
	padding-left: 42px;
	background: url(../img/common/icon_play.svg) 0 0 no-repeat;
	background-size: 32px auto;
}




.column div.links {
	margin: 15px 0 0;
}

.column div.links ul {
	display: flex;
	flex-wrap: wrap;
}
.column div.links li {
	margin: 0 25px 15px 0;
}
.column div.links li + li {
	margin-top: 0;
}

.column div.links a {
	display: flex;
	font-size: 0.75rem;
	line-height: 1.5;
	transition: opacity 200ms ease-out;
}
.column div.links a .arrow + span {
	text-decoration: underline;
}
.column div.links a:active {
	opacity: 0.55;
}
.column div.links a:active .arrow + span {
	text-decoration: none;
}
.column div.links a .arrow {
	display: inline-block;
	width: 13px;
	margin-right: 5px;
}



.column .image .map {
	position: relative;
}
.column .image .map iframe {
	width: 100%;
	height: calc(100vw - 34px);
}




.column .image.video {
	position: relative;
}
.column .image.video a {
	display: block;
}
.column .image.video .icon {
	position: absolute;
	width: 60px;
	height: 42px;
	left: calc(50% - 30px);
	top: calc(50% - 21px);
	transition: opacity 200ms ease-out;
}
.column .image.video a:active .icon {
	opacity: 0.75;
}

.column .image.pad {
	margin-top: 20px;
}




.column.simple h2 + div.text {
	margin-top: 15px;
}


.column.simple .text dt,
.column.simple .text dd {
	font-size: 1.0rem;
	line-height: 1.834;
}
.column.simple .text dl dd {
	margin-top: 0.25em;
}

.column.simple .text dl.inline {
	display: inline;
}
.column.simple .text dl.inline dt {
	display: inline;
	margin-right: 1em;
}
.column.simple .text dl.inline dd {
	display: inline;
	margin-top: 0;
}








.column.float-box-multi .inner {
}
.column.float-box-multi.reverse .inner {
}
.column.float-box-multi .image {
	margin: 0 0 20px;
}
.column.float-box-multi .text-box {
}
.column.float-box-multi .image img + img {
	margin-top: 20px;
}






.column.float-box-half .inner {
}
.column.float-box-half.reverse .inner {
}
.column.float-box-half .image {
	margin: 0 0 20px;
}
.column.float-box-half .text-box {
}

.column.float-box-half .image img + img {
	margin-top: 20px;
}

.column.float-box-half .text-box + .image,
.column.float-box-half .text-box + .title {
	margin-top: 30px;
}


.column.float-box-half h2 {
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.float-box-half h2.large {
	font-size: 1.5rem;
}
.column.float-box-half * + .text {
	margin-top: 10px;
}
.column.float-box-half .link {
	margin-top: 15px;
}




.column.flex-dl-box .box {
}
.column.flex-dl-box .box h3 {
	margin-bottom: 25px;
}
.column.flex-dl-box .box > dl {
}
.column.flex-dl-box .box > dl > dt {
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.flex-dl-box .box > dl > dd {
	margin-top: 12px;
	font-size: 1.0rem;
	line-height: 1.5;
}

.column.flex-dl-box .box > dl + dl {
	margin-top: 25px;
}
.column.flex-dl-box .box dl a {
	text-decoration: underline;
}
.column.flex-dl-box .box dl a:active {
	text-decoration: none;
}

.column.flex-dl-box .box dd ul {
	margin-top: 15px;
}
.column.flex-dl-box .box dd li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.flex-dl-box .box dd li::before {
	content: "・";
	text-indent: 0;
}
.column.flex-dl-box .box dd .notes li::before {
	display: inline-block;
	width: 1em;
	content: "-";
	text-indent: 0;
}

.column.flex-dl-box .box dd .comments {
	margin-top: 5px;
}
.column.flex-dl-box .box dd .notes .comments {
	margin-bottom: 5px;
}

.column.flex-dl-box .box dd .comments li {
	font-size: 0.9375rem;
	line-height: 1.8;
}
.column.flex-dl-box .box dd .comments li + li {
	margin-top: 5px;
}
html:lang(ja) .column.flex-dl-box .box dd .comments li::before {
	content: "※";
}

.column.flex-dl-box .box dd .button {
	margin-top: 20px;
}
.column.flex-dl-box .box dd .button a {
	text-decoration: none;
}



.column.flex-dl-box .note {
	margin: 15px 0 0;
}
.column.flex-dl-box .note,
.column.flex-dl-box .note p {
	font-size: 0.875rem;
	line-height: 1.75;
}
.column.flex-dl-box .note p + p {
	margin-top: 10px;
}




.column.flex-dl-box.faq-list .box > dl {
	display: flex;
	justify-content: space-between;
}
.column.flex-dl-box.faq-list .box > dl > dt {
	width: 30px;
}
.column.flex-dl-box.faq-list .box > dl > dd {
	width: calc(100% - 30px);
	margin: 0;
}
.column.flex-dl-box.faq-list .box > dl {
	flex-wrap: wrap;
}
.column.flex-dl-box.faq-list .box > dl dd + dt,
.column.flex-dl-box.faq-list .box > dl dd + dt + dd {
	margin-top: 10px;
}
.column.flex-dl-box.faq-list .box > dl + dl {
	margin-top: 40px;
}
.column.flex-dl-box.faq-list .box > dl dt {
	font-size: 1.0rem;
}









.column .notice {
	margin: 40px 0 0;
}
.column .notice p {
	font-size: 0.75rem;
	line-height: 1.5;
}

.column.use-border {
	margin-top: 40px;
	padding-top: 35px;
	border-top: 1px solid #000;
}

.column.use-border-both {
	margin-top: 40px;
	margin-bottom: 40px;
	padding-top: 35px;
	padding-bottom: 35px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.notice.use-border {
	padding: 15px 0 0;
	border-top: 1px solid #000;
}


.column .notice-list {
	margin: 40px 0 0;
}
.column .notice-list p,
.column .notice-list dt,
.column .notice-list dd,
.column .notice-list li {
	font-size: 0.75rem;
	line-height: 1.8;
}
.notice-list.use-border {
	padding: 15px 0 0;
	border-top: 1px solid #000;
}
.column .notice-list dl + dl {
	margin-top: 30px;
}
.column .notice-list dd {
	margin-top: 5px;
	margin-left: 1em;
}
.column .notice-list li {
	padding-left: 1em;
	text-indent: -1em;
}
.column .notice-list li::before {
	content: "・";
	text-indent: 0;
}






.column.multi-box .inner {
}

.column.multi-box .primary {
}
.column.multi-box .secondary {
	margin-top: 50px;
}


.column.multi-box .primary li + li {
	margin-top: 50px;
}
.column.multi-box .secondary li + li {
	margin-top: 50px;
}


.column.multi-box dl {
	margin: 15px 0 0;
}
.column.multi-box dt {
	font-size: 1.5rem;
	line-height: 1.5;
}
.column.multi-box dt a {
	text-decoration: underline;
	transition: color 200ms ease-out;
}
.column.multi-box dt a:active {
	color: #737373;
	text-decoration: none;
}

.column.multi-box dd {
	margin: 10px 0 0;
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.multi-box dd.subtitle {
	margin-top: 10px;
}
.column.multi-box dd.subtitle + dd {
	margin-top: 5px;
}






.column .slide {
	position: relative;
	padding-bottom: 44px;
}
.column .slide + .slide {
	margin-top: 50px;
}









.column.double ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.column.double li {
	width: calc(50% - 10px);
	margin-left: 20px;
}
.column.double li:nth-child(2n + 1) {
	margin-left: 0;
}
.column.double li:nth-child(n + 3) {
	margin-top: 20px;
}


body.activity .column.double li {
	width: 100%;
	margin-left: 0 !important;
}
body.activity .column.double li:nth-child(n + 2) {
	margin-top: 30px;
}
body.activity .column.double p {
	margin-top: 10px;
}




.column.triple ul {
	display: flex;
	flex-wrap: wrap;
}

.column.triple li {
	width: calc((100% - 20px) / 2);
	margin-left: 20px;
}
.column.triple li:nth-child(2n + 1) {
	margin-left: 0;
}
.column.triple li:nth-child(n + 3) {
	margin-top: 20px;
}



.column.flex dl {
	margin: 15px 0 0;
}
.column.flex dt {
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.flex dt a {
	text-decoration: underline;
	transition: color 200ms ease-out;
}
.column.flex dt a:active {
	color: #737373;
	text-decoration: none;
}

.column.flex dd {
	margin: 10px 0 0;
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.flex dd.link {
	margin-top: 12px;
}
.column.flex dd.link a {
	text-decoration: underline;
}
.column.flex dd.link a:hover {
	text-decoration: none;
}


.column.flex p {
	margin: 15px 0 0;
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.flex p.large {
	font-size: 1.0rem;
}
.column.flex p + p {
	margin-top: 5px !important;
}

.column.flex li p a {
	text-decoration: underline;
}
.column.flex li p a:active {
	text-decoration: none;
}



.column.flex .title {
	margin: 15px 0 0;
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.flex .title a {
	text-decoration: underline;
	transition: color 200ms ease-out;
}
.column.flex .title a:active {
	color: #737373;
	text-decoration: none;
}



.column.journal .inner > div + div,
.column.journal li + li {
	margin-top: 50px;
}
.column.journal dl {
	margin: 15px 0 0;
}
.column.journal dt {
	font-size: 1.5rem;
	line-height: 1.5;
}
.column.journal dt a {
	text-decoration: underline;
	transition: color 200ms ease-out;
}
.column.journal dt a:active {
	color: #737373;
	text-decoration: none;
}
.column.journal dd {
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.journal dd.subtitle {
	margin-top: 10px;
}
.column.journal dd.text {
	margin-top: 10px;
}
.column.journal dd.link {
	margin-top: 15px;
}

.column.journal dd.link a {
	text-decoration: underline;
	transition: color 200ms ease-out;
}
.column.journal dd.link a:active {
	color: #737373;
	text-decoration: none;
}









.column.collaborator {
	
}
.column.collaborator .box + .box {
	margin-top: 40px;
}
.column.collaborator .box dl {
}
.column.collaborator .box dt {
	font-size: 1.0rem;
	line-height: 1.5;
}
.column.collaborator .box dd {
	margin-top: 12px;
	font-size: 1.0rem;
	line-height: 1.75;
}
.column.collaborator .box dd.links {
	margin-top: 20px;
	line-height: 1.75;
	word-break: break-all;
}

.column.collaborator a {
	text-decoration: underline;
	line-height: 1.75;
}
.column.collaborator a:active {
	text-decoration: none;
}







.column .button {
	margin: 56px 0 0;
	width: 100%;
}
.column .button a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 50px;
	padding: 8px;
	font-size: 1.0rem;
	line-height: 1.4;
	border: 2px solid #000;
	transition: all 300ms ease-out;
}
.column .button a:active {
	color: #fff;
	background: #000;
}

.column .button.half {
	margin-top: 20px;
	max-width: 240px;
}

.column .button.pad {
	margin-top: 40px !important;
}
.column .button.break {
	margin-top: 30px !important;
}


.column .button.flex {
	margin-top: 30px !important;
}
.column .button.flex a {
	width: 240px;
}
.column .button.flex a + a {
	margin-top: 20px;
}





.column .program-category {
	font-size: 1.25rem;
	margin-bottom: 0 !important;
}



.column.exhibition .inner {
}
.column.exhibition.reverse .inner {
}
.column.exhibition .image {
	margin: 20px 0 0;
}
.column.exhibition.reverse .image {
	margin: 20px 0 0;
}
.column.exhibition .text-box {
}
.column.exhibition .image .caption {
	margin-top: 15px;
	line-height: 1.7;
	font-size: 0.875rem;
}


.column.exhibition-mini .inner {
}
.column.exhibition-mini.reverse .inner {
}
.column.exhibition-mini .image {
	margin: 20px 0 0;
}
.column.exhibition-mini.reverse .image {
	margin: 20px 0 0;
}
.column.exhibition-mini .text-box {
}
.column.exhibition-mini .image .caption {
	margin-top: 15px;
	line-height: 1.7;
	font-size: 0.875rem;
}
.column.exhibition-mini h4 {
	margin-top: 0;
}



* + .column.event.nest {
	margin-top: 30px;
}
* + .column.event.nest + .next {
	margin-top: 40px;
}
.column.event .text-box + .text-box {
	margin-top: 20px;
}





.column.exhibition h4 {
	margin-top: 0;
}
.column.exhibition * + .text {
	margin-top: 15px;
}
.column.exhibition .exhibition-profile-title + .text {
	margin-top: 5px;
}
.column.exhibition-mini .exhibition-profile-title + .text {
	margin-top: 5px;
}

.column .exhibition-title {
	font-size: 1.5rem;
}
.column .exhibition-name {
	font-size: 1.125rem;
}
.column .exhibition-profile-title {
	font-size: 1.125rem;
}
.column .exhibition-info {
	font-size: 1rem;
	line-height: 1.7;
}


.column .exhibition-title + .exhibition-name {
	margin-top: 15px;
}
.column .exhibition-title + .exhibition-info,
.column .exhibition-name + .exhibition-info {
	margin-top: 15px;
}



.column .event-title {
	font-size: 1.125rem;
}
.column .event-info {
	font-size: 1rem;
	line-height: 1.834;
}
.column .event-title + .event-info {
	margin-top: 5px;
}










.floor-map {
	margin-top: 100px;
	border-top-width: 0 !important;
}

.floor-map .inner .box {
	margin-top: 20px;
	border-top: 1px solid #404040;
}

.floor-map dl {
	padding: 20px 0;
	border-bottom: 1px solid #404040;
}
.floor-map dt {
	display: flex;
	align-items: flex-end;
}
.floor-map dt + dd {
	margin: 12px 0 0;
	font-size: 0.75rem;
	line-height: 1.5;
}
.floor-map dd + dd {
	margin: 20px 0 0;
}

.floor-map dt + dd p {
	line-height: 1.8;
}

.floor-map dd a {
	text-decoration: underline;
}
.floor-map dd a:hover {
	text-decoration: none;
}

.floor-map dt span:nth-child(1) {
	width: 80px;
	font-size: 3rem;
}
.floor-map dt span:nth-child(2) {
	position: relative;
	width: calc(100% - 80px);
	top: -0.25rem;
	font-size: 1.0rem;
}


.floor-map .icons {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

/*
.floor-map .icons ul {
	display: flex;
	width: 50%;
}
.floor-map .icons li {
	width: 25%;
	text-align: center;
}


.floor-map .icons ul.group-b {
	justify-content: flex-end;
}

.floor-map .icons ul.group-full {
	width: 100%;
}
.floor-map .icons ul.group-full li {
	width: 12.5%;
}

.floor-map .icons ul.wide {
	width: 75%;
}
.floor-map .icons ul.wide li {
	width: 16.66%;
}

.floor-map .icons ul.single {
	width: 12.5%;
}
.floor-map .icons ul.single li {
	width: 100%;
}
*/


.floor-map .icons ul {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(8, 12.5%);
}
.floor-map .icons ul li {
}
.floor-map .icons ul li.grid1 {
	grid-column: 1 / 2;
}
.floor-map .icons ul li.grid2 {
	grid-column: 2 / 3;
}
.floor-map .icons ul li.grid3 {
	grid-column: 3 / 4;
}
.floor-map .icons ul li.grid4 {
	grid-column: 4 / 5;
}
.floor-map .icons ul li.grid5 {
	grid-column: 5 / 6;
}
.floor-map .icons ul li.grid6 {
	grid-column: 6 / 7;
}
.floor-map .icons ul li.grid7 {
	grid-column: 7 / 8;
}
.floor-map .icons ul li.grid8 {
	grid-column: 8 / 9;
}




.floor-map .icons img {
	width: 88%;
	height: auto;
}



.floor-map .text {
	margin-top: 30px !important;
}




.vertical-nav {
	margin: 24px 0 0;
}
.vertical-nav ul {
}
.vertical-nav li {
	padding: 0 12px 0 0;
}
.vertical-nav li + li {
	margin-top: 20px;
}
.vertical-nav a {
	font-size: 1.0rem;
	text-decoration: underline;
	transition: opacity 200ms ease-out;
}
.vertical-nav a:active {
	opacity: 0.55;
	text-decoration: none;
}
.vertical-nav span {
	display: inline-block;
	width: 15px;
	margin-right: 5px;
}










/* ---------------------------------------------------------------------------------------------------- */
/* INFO */

.column.info-box h2 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.column.info-box .box dl {
}
.column.info-box .box dt {
	font-size: 1.0rem;
	line-height: 1.834;
}
.column.info-box .box dd {
	margin: 5px 0 0;
	font-size: 1.0rem;
	line-height: 1.834;
}
.column.info-box .box dl + dl {
	margin-top: 30px;
}

.column.info-box + .column.info-box {
	margin-top: 40px;
}
.column.info-box + .column.info-box .box {
	padding-top: 40px;
	border-top: 1px solid #000;
}

.column.info-box .box dd a {
	text-decoration: underline;
}
.column.info-box .box dd a:active {
	text-decoration: none;
}




/* ---------------------------------------------------------------------------------------------------- */
/* PROFILE */

.column.profile {
	margin-top: 50px;
}
.column.profile .box {
	padding: 40px 0 0;
	border: 0 solid #000;
	border-width: 1px 0 0;
}
.column.profile .box .text {
	max-width: 1000px;
	margin: 0 auto;
}


.column.profile .box .text > dl > dt {
	font-size: 1.0rem;
}
.column.profile .box .text > dl > dd {
	margin-top: 15px;
	font-size: 1.0rem;
	line-height: 1.75;
}
.column.profile .box .text > dl > dd + dd {
	margin-top: 10px;
}
.column.profile .box .text > dl dl {
	display: flex;
}
.column.profile .box .text > dl dl > * {
	font-size: 1.0rem;
	line-height: 1.75;
}
.column.profile .box .text > dl dl dt {
	width: 6em;
}
.column.profile .box .text dl a {
	text-decoration: underline;
}
.column.profile .box .text dl a:active {
	text-decoration: none;
}





/* ---------------------------------------------------------------------------------------------------- */
/* ARCHIVE */

.column.gallery-box {
	position: relative;
	padding-bottom: 70px;
}
.column.gallery-box + .gallery-box {
	margin-top: 50px;
}

.column.gallery-box .box-header {
	margin: 0 0 15px;
}
.column.gallery-box .box-header .link {
	position: absolute;
	width: 100%;
	margin: 0;
	left: 0;
	bottom: 0;
}

.column.gallery-box .box-header .link a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 50px;
	font-size: 1.0rem;
	border: 2px solid #000;
	transition: all 300ms ease-out;
	text-decoration: none;
}
.column.gallery-box .box-header .link a:active {
	color: #fff;
	background: #000;
}




.gallery-box .image {
}
.gallery-box .image.reverse {
}
.gallery-box .image + .image {
	margin-top: 20px;
}


.gallery-box .image > * + * {
	margin-top: 20px;
}

.gallery-box .image .small {
	display: flex;
	justify-content: space-between;
}
.gallery-box .image .small > * {
	width: calc(50% - 10px);
}
.gallery-box .image.triple .small > * {
	width: calc((100% - 40px) / 3);
}

.gallery-box .image > * + * {
	margin-top: 20px;
}








#gallery-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10000;
	background: rgba(0,0,0,0.75);
}


#gallery-viewer {
	position: fixed;
	left: 50%;
	top: calc(50% - 30px);
	z-index: 10020;
	transform: translate(-50%,-50%);
}

#gallery-viewer img {
	border: 5px solid #fff;
}
#gallery-viewer img.wide {
}


#gallery-content {
	position: fixed;
	z-index: 10010;
	margin-top: 10px;
	font-size: 0.75rem;
	line-height: 1.7;
	color: #fff;
}


#gallery-nav {
	position: fixed;
	display: flex;
	width: 120px;
	height: 30px;
	right: 16px;
	bottom: 16px;
	justify-content: space-between;
	z-index: 10010;
}
#gallery-nav button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	padding: 0;
	background: transparent;
	border: none;
	cursor: pointer;
}
#gallery-nav button img {
	width: 20px;
	height: auto;
}

#gallery-nav .page {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.875rem;
	color: #fff;
	pointer-events: none;
}



#gallery-close-button {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	right: 16px;
	top: 16px;
	z-index: 10010;
	padding: 0;
	background: transparent;
	border: none;
	cursor: pointer;
}
#gallery-close-button img {
	width: 24px;
	height: auto;
}






#gallery-overlay {
	opacity: 0;
	transition: opacity 300ms ease-out;
}
#gallery-viewer {
	opacity: 0;
	transition: opacity 300ms ease-out 200ms;
}
#gallery-content {
	opacity: 0;
	transition: opacity 300ms ease-out 200ms;
}
#gallery-close-button {
	opacity: 0;
	transition: opacity 300ms ease-out 200ms;
}
#gallery-nav {
	opacity: 0;
	transition: opacity 300ms ease-out 200ms;
}

body.overlay #gallery-overlay,
body.modal #gallery-viewer,
body.modal #gallery-content,
body.modal #gallery-close-button,
body.modal #gallery-nav {
	opacity: 1;
}


body.modal-motion #gallery-viewer {
	opacity: 0;
	transition: all 300ms ease-out;
}
body.modal-motion #gallery-content {
	opacity: 0;
	transition: all 300ms ease-out;
}


body.hide-modal #gallery-overlay,
body.hide-modal #gallery-viewer,
body.hide-modal #gallery-content,
body.hide-modal #gallery-close-button,
body.hide-modal #gallery-nav {
	opacity: 0 !important;
	transition: opacity 250ms ease-out 0ms !important;
}











#video-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10000;
	background: rgba(0,0,0,0.75);
}

#video-viewer {
	position: fixed;
	width: calc(100vw - 20px);
	left: 50%;
	top: 50%;
	z-index: 10020;
	transform: translate(-50%,-50%);
}
#video-viewer .container {
	position: relative;
	padding-top: 56.25%;
}
#video-viewer iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

#video-close-button {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	right: 16px;
	top: 16px;
	z-index: 10010;
	padding: 0;
	background: transparent;
	border: none;
	cursor: pointer;
}
#video-close-button img {
	width: 24px;
	height: auto;
}



#video-overlay {
	opacity: 0;
	transition: opacity 300ms ease-out;
}
#video-viewer {
	opacity: 0;
	transition: opacity 300ms ease-out;
}
#video-close-button {
	opacity: 0;
	transition: opacity 300ms ease-out;
}

body.video-modal #video-overlay {
	opacity: 1;
}
body.video-modal #video-viewer,
body.video-modal #video-close-button {
	opacity: 1;
	transition: opacity 300ms ease-out 200ms;
}














/* ---------------------------------------------------------------------------------------------------- */
/* NotFound */

.column.notfound {
	margin-bottom: 50px;
}
.column.notfound .image {
	width: 210px;
	margin: 0 auto;
}
.column.notfound dl {
	margin: 30px 0 0;
}
.column.notfound dt {
	font-size: 1.75rem;
	line-height: 1.5;
	text-align: center;
}
.column.notfound dd {
	margin: 20px 0 0;
	font-size: 1.0rem;
	line-height: 1.8;
}
.column.notfound .button {
	margin: 40px auto 0;
}


html:lang(en) .column.notfound dd p {
	font-size: 0.9375rem;
	line-height: 1.6;
}
html:lang(en) .column.notfound dd p + p {
	margin-top: 10px;
}









@media screen and (min-width:1921px) {
	.main-visual {
		margin-left: calc((100vw - 1640px) / 2);
	}
}








.column.notfound ul {
	display: inline-block;
	margin: 40px auto 60px;
	text-align: left;
}
.column.notfound li a {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	font-size: 0.9375rem;
	line-height: 1.5;
}
.column.notfound li a:active {
	text-decoration: underline;
}
.column.notfound li + li {
	margin-top: 20px;
}
.column.notfound li a span {
	position: absolute;
	display: inline-block;
	width: 14px;
	left: 0;
	top: 3px;
}




.top-notice {
}
.top-notice dl {
	margin: 0 0 30px !important;
}
.top-notice dt,
.top-notice dd {
	margin: 0 !important;
	font-size: 0.9375rem !important;
	font-family: "SST W55 Bold", sans-serif;
	line-height: 1.4 !important;
}
.top-notice dd {
	padding: 6px 0 0;
}

.top-notice dl + dl {
	margin-top: -15px !important;
}










.column.script dt,
.column.script dd,
.column.script p {
	font-size: 0.9375rem !important;
	line-height: 1.8;
}
/*
.column.script dt:not(.lite) {
	font-family: "SST W55 Bold", sans-serif;
}
*/
.column.script dt {
	font-family: "SST W55 Bold", sans-serif;
}

.column.script * + dl,
.column.script * + p {
	margin-top: 30px !important;
}
.column.script dd + dd {
	margin-top: 30px !important;
}






























