@charset "utf-8";

.pc {
	display: none !important;
}





#wrap > header {
	position: fixed;
	width: 100%;
	height: 70px;
	left: 0;
	top: 0;
	z-index: 1000;
	background: #fff;
}
#wrap > header .inner {
	position: relative;
	z-index: 100;
	padding: 28px 20px 28px 64px;
}
#wrap > header .title {
	width: 230px;
	transition: all 300ms ease-out;
}
#wrap > header .title a {
	display: block;
	height: 16px;
	font-size: 13px;
	line-height: 1;
	overflow: hidden;
}




#wrap > header .inner .sns {
	display: none
}



#logo-agui {
	position: absolute;
	width: 26px;
	height: 39px;
	left: 20px;
	top: 15px;
	z-index: 10;
}
#logo-agui .white {
	display: none;
}


@media screen and (max-width:374px) {
	#wrap > header .inner {
		padding-left: 55px;
	}
	#wrap > header .title {
		width: 200px;
	}
	
	#logo-agui {
		left: 15px;
	}
}





#menu-button {
	position: absolute;
	width: 32px;
	height: 32px;
	right: 20px;
	top: 20px;
	z-index: 10;
	transition: all 300ms ease-out;
}
#menu-button button {
	position: relative;
	display: block;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	cursor: pointer;
}
#menu-button button i {
	position: absolute;
	display: block;
	width: 100%;
	height: 4px;
	left: 0;
	top: calc(50% - 2px);
	transition: all 300ms ease-out;
}
#menu-button button i:nth-child(1) {
	margin-top: -7px;
	background: url(../img/menu1.png) 0 0 no-repeat;
	background-size: 100% auto;
}
#menu-button button i:nth-child(2) {
	background: url(../img/menu2.png) 0 0 no-repeat;
	background-size: 100% auto;
}
#menu-button button i:nth-child(3) {
	margin-top: 7px;
	background: url(../img/menu3.png) 0 0 no-repeat;
	background-size: 100% auto;
}


body.opened-menu #menu-button button i:nth-child(1) {
	transform: translateY(7px) rotate(30deg);
}
body.opened-menu #menu-button button i:nth-child(2) {
	opacity: 0;
}
body.opened-menu #menu-button button i:nth-child(3) {
	transform: translateY(-7px) rotate(-30deg);
}





#menu {
	position: fixed;
	width: 100vw;
	height: 100vh;
	right: 0;
	top: 0;
	z-index: 5;
	background: #757575;
	transform: translateX(101vw);
	transition: all 400ms ease-out;
}


#menu .menu-inner {
	box-sizing: border-box;
	padding: 90px 0 0;
}
#menu .menu-inner .primary li + li {
	margin-top: 5px;
}
#menu .menu-inner .primary a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	font-size: 16px;
	color: #fff;
	transition: all 300ms ease-out;
}
#menu .menu-inner .primary a span {
	position: relative;
	display: inline-block;
}
#menu .menu-inner .primary a span::after {
	position: absolute;	
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -2px;
	background: #fff;
	transform-origin: left top;
	transform: scaleX(0);
	transition: all 300ms ease-out;
}
#menu .menu-inner a:active span::after {
	transform: scaleX(1);
}

body.home		#menu li.top a,
body.history	#menu li.history a,
body.landscape	#menu li.landscape a,
body.word		#menu li.word a,
body.community	#menu li.community a,
body.area		#menu li.area a,
body.dialogue	#menu li.dialogue a,
body.about		#menu li.about a
{
	color: #221714;
	background: #fff;
}



body.opened-menu #menu {
	transform: translateX(0px);
}

body.opened-menu #menu-button {
	filter: invert(1) brightness(1.1) !important;
}
body.opened-menu #wrap > header .title {
	filter: invert(1) brightness(1.1);
}



#menu .sns {
	margin: 40px 0 0;
	padding: 42px 0 0;
	background: url(../img/border_sns.svg) 50% 0 no-repeat;
	background-size: auto 2px;
}
#menu .sns ul {
	display: flex;
	justify-content: center;
	filter: invert(1) brightness(1.1);
}
#menu .sns li + li {
	margin-left: 24px;
}
#menu .sns a {
	display: block;
	width: 36px;
	height: 36px;
	transition: all 300ms ease-out;
}
#menu .sns a:active {
	opacity: 0.8;
}



@media screen and (max-height:680px) {
	#menu .menu-inner {
		padding-top: 80px;
	}

	#menu .menu-inner .primary a {
		height: 45px;
	}

	#menu .sns {
		margin-top: 24px;
		padding-top: 25px;
	}
	#menu .sns a {
		width: 30px;
		height: 30px;
	}
}


@media screen and (max-height:580px) {
	#menu .menu-inner {
		padding-top: 70px;
	}
	
	#menu .menu-inner .primary li + li {
		margin-top: 3px;
	}
	#menu .menu-inner .primary a {
		height: 40px;
		font-size: 15px;
	}

	#menu .sns {
		margin-top: 18px;
		padding-top: 18px;
	}
	#menu .sns a {
		width: 24px;
		height: 24px;
	}
	#menu .sns li + li {
		margin-left: 16px;
	}
}


@media screen and (max-height:480px) {
	#menu .menu-inner .primary li + li {
		margin-top: 1px;
	}
	#menu .menu-inner .primary a {
		height: 36px;
		font-size: 13px;
	}

	#menu .sns {
		margin-top: 18px;
		padding-top: 0;
		background: none;
	}
	#menu .sns a {
		width: 20px;
		height: 20px;
	}
	#menu .sns li + li {
		margin-left: 16px;
	}
}










main > footer {
	background: #f4f4f4;
}
main > footer .inner {
	box-sizing: border-box;
	position: relative;
	padding: 40px 16px 70px;
}

main > footer .extra {
	width: 206px;
}
main > footer .logo {
	width: 206px;
}
main > footer .logo-d {
	position: absolute;
	width: 90px;
	right: 16px;
	margin-top: 40px;
}

main > footer .menu {
	margin-top: 40px;
}
main > footer .primary {
}
main > footer .secondary {
	margin-top: 38px;
	padding-top: 40px;
	background: url(../img/border_footer.png) 0 0 no-repeat;
	background-size: 122px 2px;
}

main > footer .primary > ul > li,
main > footer .secondary > ul > li {
	font-size: 14px;
	line-height: 1;
}

main > footer .primary > ul > li + li,
main > footer .secondary > ul > li + li {
	margin-top: 28px;
}

main > footer .primary a,
main > footer .secondary a {
	position: relative;
	display: inline-block;
}
main > footer .primary a::after,
main > footer .secondary a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -4px;
	background: #221714;
	transform-origin: left top;
	transform: scaleX(0);
	transition: all 300ms ease-out;
}
main > footer .primary a:active::after,
main > footer .secondary a:active::after {
	transform: scaleX(1);
}

main > footer .external {
	width: 13px;
	height: 12px;
	margin-left: 10px;
}


main > footer .sns {
	margin-top: 38px;
}
main > footer .sns ul {
	display: flex;
}
main > footer .sns li + li {
	margin-left: 24px;
}
main > footer .sns a {
	width: 36px;
	height: 36px;
}
main > footer .sns a::after {
	display: none;
}



main > footer .copyright {
	position: relative;
	margin-top: -20px;
	pointer-events: none;
}
main > footer .copyright dl {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
main > footer .copyright dt {
	width: 80px;
}
main > footer .copyright dd {
	margin: 25px 0 0;
	font-size: 12px;
	line-height: 1;
}



body.home main > footer {
	margin-top: 80px;
}
body.about main > footer {
	margin-top: 80px;
}




#scroll-top {
	position: fixed;
	width: 36px;
	height: 36px;
	right: 16px;
	bottom: 16px;
	z-index: 1000;
	
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease-out;
}
#scroll-top a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	background: #fff;
	border-radius: 18px;
	transition: all 300ms ease-out;
}
#scroll-top a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../img/circle_scroll.png) 0 0 no-repeat;
	background-size: 100% auto;
	pointer-events: none;
	transition: all 300ms ease-out;
}
#scroll-top a img {
	position: relative;
	width: 12px;
	transition: all 300ms ease-out;
}
#scroll-top a:active {
	background-color: #757575 !important;
}
#scroll-top a:active::after {
	filter: invert(0.45);
}
#scroll-top a:active img {
	transform: translateY(-2px);
	filter: invert(1);
}


body.scrolled #scroll-top {
	opacity: 1;
	visibility: visible;
}
body.scrolled-end #scroll-top a {
	background-color: #f4f4f4;
}




.external {
	display: inline-block;
	width: 15px;
	height: 14px;
	margin-left: 15px;
	background: url(../img/icon_external.png) 0 0 no-repeat;
	background-size: 100% auto;
}







main {
	position: relative;
	z-index: 10;
	background: #fff;
}

body.home main {
	margin-top: 133vw;
}




.layout-container {
	box-sizing: border-box;
	padding: 0 16px;
	margin: 0 auto;
}




.inner-nav {
	position: relative;
	height: 80px;
	overflow: auto;
}
.inner-nav .inner {
	height: 70px;
	background: #757575;
}

.inner-nav ul {
	display: flex;
	justify-content: space-between;
}
.inner-nav li {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}
.inner-nav li + li {
	padding: 0 0 0 1px;
	background: url(../img/separator.svg) 0 50% no-repeat;
	background-size: auto 52px;
}
.inner-nav ul a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 70px;
	padding-bottom: 16px;
	font-size: 12px;
	line-height: 1.375;
	color: #fff;
	font-family: "Hiragino UD Serif W6 JIS2004", sans-serif;
	transition: color 300ms ease-out, background 300ms ease-out;
}
.inner-nav ul a::after {
	position: absolute;
	content: "";
	display: block;
	width: 14px;
	height: 8px;
	left: calc(50% - 7px);
	bottom: 10px;
	background: url(../img/arrow_down.svg) 0 0 no-repeat;
	background-size: 14px auto;
	transition: all 300ms ease-out;
}

.inner-nav ul a:active {
	width: calc(100% + 4px);
	margin: 0 -2px;
	color: #221714;
	background: #fff !important;
}
.inner-nav ul a:active::after {
	filter: invert(0.75);
	transform: translateY(4px);
}


body.home .inner-nav .inner {
	width: auto;
}
body.home .inner-nav ul {
	display: block;
	white-space: nowrap;
	font-size: 0;
}
body.home .inner-nav li {
	display: inline-block;
}
body.home .inner-nav li a {
	padding-left: 13px;
	padding-right: 13px;
	background-color: #757575;
}





.inner-nav.landscape ul {
	justify-content: center;
}
.inner-nav.landscape li:nth-child(1) {
	width: 45%;
}
.inner-nav.landscape li:nth-child(2) {
	width: 65%;
}


.inner-nav.dialogue ul {
	justify-content: center;
}
.inner-nav.dialogue li {
	width: 240px;
}



.inner-nav.area {
	position: relative;
	z-index: 100;
}
.inner-nav.area li {
	width: 20%;
}
.inner-nav.area ul a {
	padding: 0 0 4px;
}
.inner-nav.area ul a::after {
	display: none;
}
.inner-nav.area ul span {
	position: relative;
	display: inline-block;
}
.inner-nav.area ul span::after {
	position: absolute;
	content: "";
	display: block;
	width: 46px;
	height: 2px;
	left: calc(50% - 23px);
	bottom: -6px;
	background: url(../img/underline.png) 0 0 no-repeat;
	background-size: 100% 2px;
	visibility: hidden;
	transition: all 300ms ease-out;
}
.inner-nav.area ul a:active span::after {
	filter: invert(0.75);
}

body.area.area-top	.inner-nav.area .top span::after,
body.area.tobu		.inner-nav.area .tobu span::after,
body.area.eibi		.inner-nav.area .eibi span::after,
body.area.kusagi	.inner-nav.area .kusagi span::after,
body.area.nanbu		.inner-nav.area .nanbu span::after
{
	visibility: visible;
}









#page-header {
	position: fixed;
	width: 100%;
	height: 150px;
	left: 0;
	top: 70px;
	z-index: 10;
}
#page-header::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background: rgba(0,0,0,0.15);
}

#page-header .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}
#page-header .inner {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 10;
	padding: 0 16px;
}
#page-header h1 {
	font-size: 24px;
	color: #fff;
}
#page-header .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

body.history #page-header .bg img {
	object-position: center 35%;
}
body.landscape #page-header .bg img {
	object-position: center 62%;
}
body.word #page-header .bg img {
	object-position: center 55%;
}
body.community #page-header .bg img {
	object-position: center 45%;
}
body.dialogue #page-header .bg img {
	object-position: center 45%;
}


#page-header + main {
	margin-top: calc(70px + 150px);
}



.column-container {
	padding-top: 35px;
}
.column-container.accent {
	padding-top: 40px;
	background-color: #f4f4f4;
}
.column-container + .column-container {
	margin-top: -40px;
}


.column-intro {
}
.column-intro .layout-container {
	position: relative;
}
.column-intro .content {
}
.column-intro .pict {
	position: absolute;
}

body.landscape #section1 .pict {
	width: 39vw;
	right: 16px;
	top: 18px;
}
body.landscape #section2 .pict {
	width: 41.8vw;
	right: 0;
	top: 26px;
}

body.word .column-intro .pict {
	width: 36.2vw;
	right: 18px;
	top: 13px;
}



.column-intro h2 {
	font-size: 28px;
	line-height: 1.7;
}
.column-intro .text {
	margin: 20px 0 0;
	font-size: 14px;
	line-height: 2;
}
.column-intro .subtitle {
	margin: 30px 0 0;
	font-size: 18px;
}



.column-section {
	margin-top: 30px;
	margin-left: 16px;
	margin-right: 16px;
	padding-top: 40px;
	background: transparent url(../img/border_column_blue.png) 50% 0 no-repeat;
	background-size: 1200px 2px;
}
.column-section .layout-container {
	display: flex;
	flex-direction: column-reverse;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 80px;
}
.column-section .content {
	margin-top: 30px;
	padding-top: 40px;
	background: transparent url(../img/border_column_blue.png) 50% 0 no-repeat;
	background-size: 1200px 2px;
}
.column-section .sub {
	width: 240px;
	margin: 0 auto;
}

.column-section h3 {
	font-size: 18px;
	line-height: 1.7;
	color: #005c91;
}
.column-section .text {
	font-size: 14px;
	line-height: 2;
}
.column-section .text + h3 {
	margin-top: 50px;
}
.column-section * + .text {
	margin-top: 20px;
}


.column-section .cover {
	margin-top: 40px;
}
.column-section .cover .pict {
}
.column-section .cover dl {
	margin: 25px 0 0;
}
.column-section .cover dt {
	font-size: 14px;
	line-height: 2;
}
.column-section .cover dd {
	margin: 15px 0 0;
	font-size: 13px;
	line-height: 2;
}
.column-section .cover a {
	text-decoration: underline;
}
.column-section .cover a:active {
	text-decoration: none;
}
.column-section .cover a .external {
	position: relative;
	width: 13px;
	height: 13px;
	top: 2px;
	margin-left: 8px;
}




.column-section .talk dl {
	display: flex;
	justify-content: space-between;
}
.column-section .talk dt {
	position: relative;
	width: 52px;
	top: -2px;
	font-size: 16px;
}
.column-section .talk dd {
	width: calc(100% - 52px);
	font-size: 14px;
	line-height: 2;
}
.column-section .talk dl + dl {
	margin-top: 20px;
}


body.dialogue .column-section .talk dt {
	position: relative;
	width: 86px;
	top: -2px;
	font-size: 16px;
}
body.dialogue .column-section .talk dd {
	width: calc(100% - 86px);
	font-size: 14px;
	line-height: 2;
}


.column-section .talk .person1 dt {
	color: #b45145;
}
.column-section .talk .person2 dt {
	color: #bf1500;
}
.column-section .talk .person3 dt {
	color: #0076a9;
}
.column-section .talk .person4 dt {
	color: #008841;
}




.column-section .timeline {
	margin-top: -10px;
}
.column-section .timeline h3 {
	margin: 0 0 30px;
	font-size: 28px;
	color: #221714;
}
.column-section .month + .month {
	margin-top: 50px;
}
.column-section .month > dl > dt {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 28px;
	font-size: 16px;
	background: #fff;
	border-radius: 6px;
}
.column-section .month > dl > dd {
	margin: 25px 0 0;
}
.column-section .month dl dl {
	display: flex;
}
.column-section .month dl dl dt {
	width: 7em;
	font-size: 16px;
	line-height: 1.75;
}
.column-section .month dl dl dd {
	width: calc(100% - 7em);
	font-size: 14px;
	line-height: 1.75;
}
.column-section .month dl dl.long-title dt {
	width: 12.5em;
}
.column-section .month dl dl.long-title dd {
	width: calc(100% - 12.5em);
}


.column-section .month dl dl + dl {
	margin-top: 25px;
}
.column-section .month dl dl dt::before {
	content: "●";
	color: #999;
}

.column-section .timeline + .image-box {
	margin-top: 55px;
}


.column-section .url {
	margin: 35px 0 0;
}
.column-section .url a {
	word-break: break-all;
	font-size: 14px;
	text-decoration: underline;
}
.column-section .url a:active {
	text-decoration: none;
}
.column-section .url .external {
	position: relative;
	width: 12px;
	height: 13px;
	top: 2px;
	margin-left: 8px;
}



.column-section .image-box {
	margin: 0 0 40px;
	border-radius: 10px;
	overflow: hidden;
}
.column-section * + .image-box {
	margin-top: 40px;
}

.column-section .image-box .image {
	position: relative;
}
.column-section .image-box .caption {
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	left: 0;
	padding: 12px 16px;
	font-size: 12px;
	line-height: 1.5;
	color: #fff;
}
.column-section .image-box .caption.top {
	top: 0;
	padding-bottom: 60px;
	background: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.5));
}
.column-section .image-box .caption.bottom {
	bottom: 0;
	padding-top: 60px;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
}
.column-section .image-box .caption.center {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.column-section .image-box .caption.bottom.tint {
	bottom: 0;
	padding-top: 60px;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.2));
}


.column-section .image-box .map {
	position: relative;
	max-width: 480px;
	overflow: hidden;
}
.column-section .image-box .map > span {
	position: relative;
	display: block;
}
.column-section .image-box .map .pointer {
	position: absolute;
	width: 13px;
	height: 23%;
	left: 77%;
	bottom: 0%;
}
.column-section .image-box .map .pointer b {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.column-section .image-box .map .pointer b i {
	position: absolute;
	display: block;
	width: 13px;
	height: 13px;
	background: #fff;
	border-radius: 7px;
}
.column-section .image-box .map .pointer b::before {
	position: absolute;
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	left: calc(50% - 1px);
	top: 0;
	background: #fff;
}
.column-section .image-box .map .pointer b::after {
	position: absolute;
	content: "";
	display: block;
	width: 2px;
	height: 25px;
	left: calc(50% - 1px);
	bottom: -25px;
	background: #221714;
}


.column-section .image-box .map > span img {
	border-radius: 10px;
}
.column-section .image-box .map .caption {
	position: relative;
	bottom: auto;
	padding: 35px 0 0;
	font-size: 12px;
	font-family: "Hiragino UD Sans W3 JIS2004", sans-serif;
	line-height: 2;
	color: #221714;
	background: none;
}
.column-section .image-box .caption p + p {
	margin-top: 10px;
}


/*
@media screen and (max-width:511px) {
	.column-section .image-box .map .pointer {
		left: 46%;
		top: 32%;
	}
	.column-section .image-box .map > span img {
		aspect-ratio: 1 / 0.75;
	}
}
@media screen and (max-width:450px) {
	.column-section .image-box .map .pointer {
		width: 10%;
		left: 46%;
		top: 30%;
	}
}
@media screen and (max-width:400px) {
	.column-section .image-box .map .pointer {
		width: 9%;
		left: 47%;
		top: 28.5%;
	}
}
@media screen and (max-width:374px) {
	.column-section .image-box .map .pointer {
		width: 9%;
		left: 48%;
		top: 32%;
	}
	.column-section .image-box .map > span img {
		aspect-ratio: 1 / 0.9;
	}
}
@media screen and (max-width:340px) {
	.column-section .image-box .map > span img {
		aspect-ratio: 1 / 1.1;
	}
}
@media screen and (max-width:299px) {
	.column-section .image-box .pointer{
		display: none;
	}
}
*/




.column-section .image-box img {
	object-fit: cover;
}

.column-section .image-box.twin {
}
.column-section .image-box.twin img {
}
.column-section .image-box.twin .image + .image {
	margin-top: 8px;
}





body.word .column-section .image-box.multi {
	box-sizing: border-box;
	width: 100%;
	display: grid;
	gap: 8px;
}
body.word .column-section .image-box.multi .image + .image {
}
body.word .column-section .image-box.multi img {
	aspect-ratio: 343 / 193;
}

body.word .column-section .image-box.multi .image:nth-child(4) {
	order: 5;
}





body.community .column-section .image-box.multi {
	box-sizing: border-box;
	width: 100%;
	display: grid;
	grid-gap: 8px;
}

body.community .column-section .image-box.gallery {
	grid-template-columns: 50% 50%;
}

body.community .column-section .image-box.gallery .image:nth-child(2) {
	order: 1;
	grid-column: 1 / 3;
}
body.community .column-section .image-box.gallery .image:nth-child(1) {
	order: 2;
	grid-column: 1 / 2;
}
body.community .column-section .image-box.gallery .image:nth-child(4) {
	order: 3;
	grid-column: 2 / 3;
}
body.community .column-section .image-box.gallery .image:nth-child(3) {
	order: 4;
	grid-column: 1 / 3;
}
body.community .column-section .image-box.gallery .image:nth-child(5) {
	order: 5;
	grid-column: 1 / 2;
	grid-row: span 2;
}
body.community .column-section .image-box.gallery .image:nth-child(6) {
	order: 5;
	grid-column: 2 / 3;
}
body.community .column-section .image-box.gallery .image:nth-child(7) {
	order: 6;
	grid-column: 2 / 3;
}

body.community .column-section .image-box.gallery .image img {
	object-fit: cover;
}

body.community .column-section .image-box.gallery .image:nth-child(1) img,
body.community .column-section .image-box.gallery .image:nth-child(4) img,
body.community .column-section .image-box.gallery .image:nth-child(6) img,
body.community .column-section .image-box.gallery .image:nth-child(7) img
{
	aspect-ratio: 1 / 1;
}
body.community .column-section .image-box.gallery .image:nth-child(2) img,
body.community .column-section .image-box.gallery .image:nth-child(3) img
{
	aspect-ratio: 2 / 1;
}
body.community .column-section .image-box.gallery .image:nth-child(5) img
{
	height: 100%;
}




body.dialogue .column-section .image-box.multi {
	box-sizing: border-box;
	width: 100%;
	display: grid;
	gap: 8px;
}
body.dialogue .column-section .image-box.multi img {
	aspect-ratio: 343 / 193;
}







body.area .column-section .image-box.multi {
	box-sizing: border-box;
	width: 100%;
	display: grid;
	grid-gap: 8px;
}


body.area-top .column-section .image-box.multi {
	grid-template-columns: calc(38% - 8px) calc(12% - 4px) calc(12% - 4px) calc(38% - 8px);
}
body.area-top .column-section .image-box.multi .image:nth-child(1) {
	grid-column: 1 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(2) {
	grid-column: 1 / 3;
}
body.area-top .column-section .image-box.multi .image:nth-child(3) {
	grid-column: 3 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(4) {
	grid-column: 1 / 4;
}
body.area-top .column-section .image-box.multi .image:nth-child(5) {
	grid-column: 4 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(6) {
	grid-column: 1 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(7) {
	grid-column: 1 / 3;
}
body.area-top .column-section .image-box.multi .image:nth-child(8) {
	grid-column: 3 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(9) {
	grid-column: 1 / 2;
}
body.area-top .column-section .image-box.multi .image:nth-child(10) {
	grid-column: 2 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(11) {
	grid-column: 1 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(12) {
	grid-column: 1 / 3;
}
body.area-top .column-section .image-box.multi .image:nth-child(13) {
	grid-column: 3 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(14) {
	grid-column: 1 / 4;
}
body.area-top .column-section .image-box.multi .image:nth-child(15) {
	grid-column: 4 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(16) {
	grid-column: 1 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(17) {
	grid-column: 1 / 3;
}
body.area-top .column-section .image-box.multi .image:nth-child(18) {
	grid-column: 3 / 5;
}
body.area-top .column-section .image-box.multi .image:nth-child(19) {
	grid-column: 1 / 2;
}
body.area-top .column-section .image-box.multi .image:nth-child(20) {
	grid-column: 2 / 5;
}


body.word .column-section {
	background-image: url(../img/border_column_red.png);
}
body.word .column-section h3 {
	color: #b06100;
}
body.word .column-section .image-box .caption {
	font-size: 14px;
	line-height: 1.6;
}
body.word .column-section .image-box .caption span {
	font-size: 12px;
}


body.community .column-section .image-box .caption {
	font-size: 16px;
	line-height: 1;
}


body.dialogue .column-section {
	background-image: url(../img/border_column_green.png);
}


.wide-image-container .column-section .image-box.multi .full img {
	aspect-ratio: 1200 / 502;
}
.wide-image-container .column-section .image-box.multi .half img {
	aspect-ratio: 595 / 446;
}





.column-section .sub .profile {
	margin-top: 30px;
	padding-top: 30px;
	background: transparent url(../img/border_column_blue.png) 50% 0 no-repeat;
	background-size: 1200px 2px;
}
.column-section .sub .profile + .profile {
	padding-top: 0;
	background: none !important;
}
.column-section .sub .profile .extra {
	display: flex;
	align-items: flex-end;
}
.column-section .sub .profile .photo {
	width: 64px;
	height: 64px;
	border-radius: 32px;
	overflow: hidden;
}
.column-section .sub .profile .balloon {
	position: relative;
	width: 180px;
	z-index: 10;
	margin-right: -4px;
}
.column-section .sub .profile .balloon span {
	box-sizing: border-box;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 12px;
	line-height: 1.75;
	color: #fff;
}


.column-section .sub .profile dl {
	margin: 20px 0 0;
}
.column-section .sub .profile dt {
	font-size: 14px;
	line-height: 1.75;
}
.column-section .sub .profile dd {
	margin-top: 10px;
	font-size: 12px;
	line-height: 2;
}
.column-section .sub .profile dd.multi {
	display: flex;
	justify-content: space-between;
}
.column-section .sub .profile dd.multi .option {
	width: 80px;
}
.column-section .sub .profile dd.multi p {
	width: calc(100% - 80px - 22px);
	margin-top: -0.25em;
	font-size: 1rem;
	line-height: 2;
}


.column-section .sub .profile.reverse .extra {
	flex-direction: row-reverse;
}
.column-section .sub .profile.reverse .balloon {
	margin-right: 0;
	margin-left: -4px;
}


.column-section .sub .profile.left .extra {
	align-items: center;
}
.column-section .sub .profile.left .photo {
	margin-top: 8px;
}

.column-section .sub .profile.left .balloon span {
	padding-right: 0;
	padding-left: 22px;
}
.column-section .sub .profile.right .balloon span {
	padding-right: 10px;
	padding-left: 0;
}



.column-section .sub .profile.type1 span {
	padding: 6px 0 0 32px;
}

.column-section .sub .profile.type2 span {
	padding: 2px 0 0 25px;
}

.column-section .sub .profile.type3 span {
	padding: 2px 0 0 10px;
}

.column-section .sub .profile.type4 span {
	padding: 4px 0 0 26px;
}

.column-section .sub .profile.type5 span {
	padding: 2px 20px 0 0;
}

.column-section .sub .profile.type6 span {
	padding: 2px 0 0 20px;
}

.column-section .sub .profile.type6 .extra {
	align-items: center;
}


.column-section .sub .profile.type7 span {
	padding: 2px 0 0 25px;
}
.column-section .sub .profile.type8 span {
	padding: 2px 0 0 25px;
}




.column-section .sub .nagaoka {
	position: relative;
}
.column-section .sub .nagaoka .photo {
	position: absolute;
}
.column-section .sub .nagaoka .balloon {
	position: relative;
}
.column-section .sub .nagaoka .balloon span {
	box-sizing: border-box;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 12px;
	line-height: 1.75;
	color: #005c91;
}

.column-section .sub .nagaoka .balloon span span {
	position: relative;
	display: inline;
	width: auto;
	height: auto;
	padding: 0 !important;
}


.column-section .sub .nagaoka.type1 {
	padding-bottom: 33px;
}
.column-section .sub .nagaoka.type1 .balloon span {
	padding-bottom: 15px;
}
.column-section .sub .nagaoka.type1 .photo {
	width: 59px;
	height: 80px;
	left: 181px;
	top: 120px;
}




.column-section .sub .nagaoka.type2 {
	padding-top: 88px;
}
.column-section .sub .nagaoka.type2 .balloon span {
	padding-top: 10px;
}
.column-section .sub .nagaoka.type2 .photo {
	width: 70px;
	height: 88px;
	left: 108px;
	top: 0;
}



.column-section .sub .nagaoka.type3 {
	padding-bottom: 78px;
}
.column-section .sub .nagaoka.type3 .balloon span {
	padding-left: 10px;
	padding-bottom: 15px;
}
.column-section .sub .nagaoka.type3 .photo {
	width: 58px;
	height: 80px;
	left: 120px;
	top: 166px;
}



.column-section .sub .nagaoka.type4 {
	padding-bottom: 83px;
}
.column-section .sub .nagaoka.type4 .balloon span {
	padding-bottom: 10px;
}
.column-section .sub .nagaoka.type4 .photo {
	width: 71px;
	height: 88px;
	left: 132px;
	top: 160px;
}



.column-section .sub .nagaoka.type5 {
	padding-top: 90px;
}
.column-section .sub .nagaoka.type5 .balloon span {
	padding-top: 10px;
	padding-left: 6px;
}
.column-section .sub .nagaoka.type5 .photo {
	width: 63px;
	height: 84px;
	left: 113px;
	top: 0;
}



.column-section .sub .nagaoka.type6 {
	padding-bottom: 47px;
}
.column-section .sub .nagaoka.type6 .balloon span {
	padding-bottom: 14px;
	padding-left: 10px;
}
.column-section .sub .nagaoka.type6 .photo {
	width: 72px;
	height: 88px;
	left: 146px;
	top: 127px;
}



.column-section .sub .nagaoka.type7 {
	padding-bottom: 73px;
}
.column-section .sub .nagaoka.type7 .balloon span {
	padding-top: 2px;
	padding-left: 10px;
}
.column-section .sub .nagaoka.type7 .photo {
	width: 70px;
	height: 88px;
	left: -6px;
	top: 151px;
}



.column-section .sub .nagaoka.type8 {
	padding-bottom: 45px;
}
.column-section .sub .nagaoka.type8 .balloon span {
	padding-bottom: 15px;
	padding-left: 30px;
	font-size: 11px;
}
.column-section .sub .nagaoka.type8 .photo {
	width: 58px;
	height: 80px;
	left: 142px;
	top: 141px;
}



.column-section .sub .nagaoka.type9 {
	padding-bottom: 56px;
}
.column-section .sub .nagaoka.type9 .balloon span {
	padding-bottom: 14px;
	padding-left: 10px;
	font-size: 11px;
}
.column-section .sub .nagaoka.type9 .photo {
	width: 76px;
	height: 92px;
	left: 125px;
	top: 140px;
}



.column-section .sub .nagaoka.type10 {
	padding-bottom: 56px;
}
.column-section .sub .nagaoka.type10 .balloon span {
	padding: 0 35px 10px 40px;
	font-size: 11px;
}
.column-section .sub .nagaoka.type10 .photo {
	width: 71px;
	height: 88px;
	left: 122px;
	top: 144px;
}



.column-section .sub .nagaoka.type11 {
	padding-bottom: 56px;
}
.column-section .sub .nagaoka.type11 .balloon span {
	padding: 0 35px 15px 40px;
	font-size: 11px;
}
.column-section .sub .nagaoka.type11 .photo {
	width: 77px;
	height: 92px;
	left: 35px;
	top: 140px;
}



.column-section .sub .nagaoka.type12 {
	padding-bottom: 48px;
}
.column-section .sub .nagaoka.type12 .balloon span {
	padding-left: 22px;
	padding-bottom: 20px;
}
.column-section .sub .nagaoka.type12 .photo {
	width: 71px;
	height: 88px;
	left: 136px;
	top: 136px;
}










body.word .column-section .sub .nagaoka .balloon span {
	color: #b35146;
}
body.word .column-section .content {
	background-image: url(../img/border_column_red.png);
}
body.word .column-section .sub .profile {
	background-image: url(../img/border_column_red.png);
}


body.dialogue .column-section .content {
	background-image: url(../img/border_column_green.png);
}
body.dialogue .column-section .sub .profile {
	background-image: url(../img/border_column_green.png);
}


body.dialogue .column-section .sub .nagaoka .balloon span {
	color: #008841;
}


.column-section .sub .doc dl {
	margin: 15px 0 0;
}
.column-section .sub .doc dt {
	font-size: 12px;
	line-height: 2;
}
.column-section .sub .doc dl {
	font-size: 12px;
	line-height: 2;
}

.column-section .sub .doc + * {
	margin-top: 30px;
}

.column-section .sub * + .doc {
	margin-top: 24px;
	padding-top: 34px;
	background: transparent url(../img/border_column_blue.png) 50% 0 no-repeat;
	background-size: 1200px 2px;
}



.column-section .sub .info {
	margin-top: 30px;
	padding-top: 30px;
	background: transparent url(../img/border_column_green.png) 50% 0 no-repeat;
	background-size: 1200px 2px;
}

.column-section .sub .info dt {
	width: 86px;
	margin: 0 auto;
}
.column-section .sub .info dd {
	margin: 30px 0 0;
	font-size: 12px;
	line-height: 2;
}
.column-section .sub .info p {
	font-size: 12px;
	line-height: 2;
}
.column-section .sub .info p a {
	word-break: break-all;
	text-decoration: underline;
}
.column-section .sub .info p a:active {
	text-decoration: none;
}








.sitemap {
	position: relative;
}
.sitemap ul {
	display: flex;
	flex-wrap: wrap;
}
.sitemap li:nth-child(1) {
	width: 100%;
}
.sitemap li:nth-child(n + 2) {
	width: 50%;
}
.sitemap a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 102px;
	background-color: transparent;
	background-position: 50% 50%;
	background-size: cover;
}

.sitemap li:nth-child(n + 2) a::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background: rgba(0,0,0,0.3);
	pointer-events: none;
}
.sitemap a strong {
	position: relative;
	z-index: 10;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	color: #fff;
}

.sitemap a span {
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	right: 0;
	bottom: 0;
	z-index: 20;
	background: #fff;
	transition: all 300ms ease-out;
}
.sitemap a span::after {
	position: absolute;
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	left: 0;
	top: 0;
	z-index: 20;
	background: url(../img/arrow_mini.svg) 50% 50% no-repeat;
	background-size: 6px auto;
	transition: all 300ms ease-out;
}

.sitemap a::after {
	box-sizing: border-box;
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 20;
	border: 4px solid #fff;
	pointer-events: none;
	visibility: hidden;
}

.sitemap a:active span {
	background: #757575;
}
.sitemap a:active span::after {
	filter: invert(1);
	transform: translateX(2px);
}



body.history	.sitemap li.history a::after,
body.landscape	.sitemap li.landscape a::after,
body.word		.sitemap li.word a::after,
body.community	.sitemap li.community a::after,
body.area		.sitemap li.area a::after,
body.dialogue	.sitemap li.dialogue a::after
{
	visibility: visible;
}


body.history	.sitemap li.history a:active span,
body.landscape	.sitemap li.landscape a:active span,
body.word		.sitemap li.word a:active span,
body.community	.sitemap li.community a:active span,
body.area		.sitemap li.area a:active span,
body.dialogue	.sitemap li.dialogue a:active span
{
	background: #fff;
}

body.history	.sitemap li.history a:active span::after,
body.landscape	.sitemap li.landscape a:active span::after,
body.word		.sitemap li.word a:active span::after,
body.community	.sitemap li.community a:active span::after,
body.area		.sitemap li.area a:active span::after,
body.dialogue	.sitemap li.dialogue a:active span::after
{
	filter: none;
	transform: none;
}





.sitemap .top a {
	background-image: url(../img/sitemap_top.jpg);
}
.sitemap .history a {
	background-image: url(../img/sitemap_history.jpg);
}
.sitemap .landscape a {
	background-image: url(../img/sitemap_landscape.jpg);
}
.sitemap .word a {
	background-image: url(../img/sitemap_word.jpg);
}
.sitemap .community a {
	background-image: url(../img/sitemap_community.jpg);
}
.sitemap .area a {
	background-image: url(../img/sitemap_area.jpg);
}
.sitemap .dialogue a {
	background-image: url(../img/sitemap_dialogue.jpg);
}






/* ---------------------------------------------------------------------------------------------------- */
/* Top */



/*
body.home #wrap > header {
	visibility: hidden;
	opacity: 0;
	transition: all 600ms ease-out;
}
body.scrolled.home #wrap > header {
	visibility: visible;
	opacity: 1;
}
*/





body.home #wrap > header {
	background: rgba(255,255,255,0);
	transition: all 600ms ease-out;
}
body.home #wrap > header .title {
	opacity: 0;
	transition: all 600ms ease-out;
}
body.home #menu-button {
	filter: invert(1) brightness(1.1);
	transition: all 600ms ease-out;
}

body.home #logo-agui img {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: all 600ms ease-out;
}
body.home #logo-agui img.normal {
	opacity: 0;
}
body.home #logo-agui img.white {
	display: block;
}



body.scrolled.home #wrap > header {
	background: rgba(255,255,255,1);
}
body.scrolled.home #wrap > header .title {
	opacity: 1;
}
body.scrolled.home #menu-button {
	filter: invert(0);
}
body.scrolled.home #logo-agui img.normal {
	opacity: 1;
}
body.scrolled.home #logo-agui img.white {
	opacity: 0;
	visibility: hidden;
}











#kv {
	position: fixed;
	width: 100%;
	height: 133vw;
	left: 0;
	top: 0;
	z-index: 1;
	background: #eee;
}
#kv .slide-item img {
	width: 100%;
	height: 133vw;
	object-fit: cover;
}
#kv .title {
	position: absolute;
	width: 74vw;
	height: 32vw;
	left: calc(50% - 37vw);
	top: calc(50% - 16vw);
	z-index: 10;
}



#kv .title h1,
#kv .title span {
}

#kv .slide-item .title img {
	width: 100%;
	height: auto;
}

#kv .dmark {
	position: absolute;
	width: 116px;
	height: 110px;
	right: 8px;
	bottom: 24px;
	z-index: 10;
}
#kv .dmark img {
	width: 100%;
	height: auto;
}











#kv .nav {
	position: absolute;
	left: 12px;
	bottom: 16px;
	z-index: 50;
}
#kv .nav ul {
	display: flex;
}
#kv .nav li {
	position: relative;
	width: 20px;
	height: 20px;
}
#kv .nav li + li {
	margin-left: 8px;
}
#kv .nav button {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	font-size: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}
#kv .nav button::after {
	box-sizing: border-box;
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	border-radius: 5px;
	background: transparent;
	border: 1px solid #fff;
}
#kv .nav span {
	position: absolute;
	width: 60px;
	height: 60px;
	left: 0;
	top: 0;
	z-index: 1;
	transform-origin: left top;
	transform: scale(33.33%) rotate(-90deg) translateX(-100%);
	pointer-events: none;
}

#kv .nav circle {
	stroke: #fff;
	stroke-width: 3px;
	fill: transparent;
	stroke-dasharray: 189px;
	stroke-dashoffset: 189px;
}

#kv .nav .active circle {
	animation: circle 5000ms forwards linear;
}

@keyframes circle {
	to {
		stroke-dashoffset: 0;
	}
}

#kv .nav .active button::after {
	background: #fff;
}





#kv::before,
#kv::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	left: 0;
	z-index: 10;
	pointer-events: none;
}
#kv::before {
	height: 70px;
	top: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0));
}
/*
#kv::after {
	height: 110px;
	bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
}
*/




#kv .slide-item::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 110px;
	left: 0;
	bottom: 0;
	z-index: 5;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
}



#top-intro .slide-viewer {
	height: 250px;
	margin: 40px 0;
}

.slide-viewer .slide-item .extra {
	position: relative;
	width: 310px;
	height: 200px;
	margin: 0 5px;
	overflow: hidden;
}
.slide-viewer .slide-item .extra .caption {
	box-sizing: border-box;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	font-size: 12px;
	line-height: 1.5;
	color: #fff;
	padding: 36px 12px 12px;
	background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
}

.slide-viewer .slick-slide:nth-child(2n) .extra {
	border-radius: 10px 10px 0 0;
}
.slide-viewer .slick-slide:nth-child(2n + 1) .extra {
	border-radius: 0 0 10px 10px;
	margin-top: 50px;
}





#top-intro {
	margin-top: 65px;
}
#top-intro .layout-container:nth-child(1) {
}

#top-dmark {
	position: absolute;
	width: 116px;
	height: 110px;
	right: 8px;
	top: calc(-110px - 16px);
	z-index: 100;
}

#top-intro h2 {
	display: flex;
	width: 100%;
	align-items: center;
	writing-mode: vertical-rl;
	white-space: nowrap;
	font-size: 24px;
	line-height: 1.8;
	letter-spacing: 4px;
}
#top-intro .content {
	margin: 70px 0 0;
}

#top-intro h3 {
	font-size: 20px;
	line-height: 1.6875;
}
#top-intro .content .text {
	font-size: 14px;
	line-height: 2;
}
#top-intro h3 + .text {
	margin-top: 30px;
}


#top-intro .layout-container:nth-child(3) .content {
	margin-top: 0;
}



#top-intro .top-profile {
	width: 300px;
	margin: 35px auto 0;
}
#top-intro .top-profile .pict {
	position: relative;
	height: 264px;
}
#top-intro .top-profile .pict .photo {
	position: absolute;
	width: 80px;
	left: 198px;
	top: 157px;
}
#top-intro .top-profile .pict .balloon {
	position: relative;
}
#top-intro .top-profile .pict .balloon span {
	box-sizing: border-box;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 0 10px;
	font-size: 0.875rem;
	line-height: 1.75;
	color: #0076A9;
}

#top-intro .top-profile .text {
	padding: 10px 0 0;
}
#top-intro .top-profile .text dt {
	font-size: 14px;
}
#top-intro .top-profile .text dd {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 2;
}








.top-entrance {
	margin: 150px 0 0;
}
.top-entrance .inner {
}
.top-entrance.reverse .inner {
}


.top-entrance h2 {
	display: flex;
	position: relative;
	width: 100%;
	align-items: center;
	writing-mode: vertical-rl;
	white-space: nowrap;
	left: -2px;
	font-size: 24px;
	line-height: 1.8;
	letter-spacing: 4px;
}
.top-entrance.reverse h2 {
	justify-content: flex-start;
}




.top-entrance .image {
	box-sizing: border-box;
	position: relative;
	margin: 80px 0 0 16px;
	padding: 120px 32px;
	border-radius: 0 0 0 10px;
	overflow: hidden;
}
.top-entrance.reverse .image {
	margin-left: 0;
	margin-right: 16px;
	border-radius: 0 10px 0 0;
}

.top-entrance .image .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}
.top-entrance .image .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.top-entrance .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background: rgba(0,0,0,0.3);
	pointer-events: none;
}

.top-entrance .image .content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 10;
	color: #fff;
}

.top-entrance .extra {
}
.top-entrance h3 {
	font-size: 20px;
	line-height: 1.7;
}
.top-entrance .text {
	margin: 35px 0 0;
	font-size: 14px;
	line-height: 2;
}
.top-entrance .text br {
	display: none;
}

.top-entrance .label {
	box-sizing: border-box;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 38px;
	right: 0;
	bottom: 0;
	z-index: 20;
	padding: 4px 8px 0 0;
	font-size: 14px;
	background: #fff;
	border-radius: 15px 0 0;
	cursor: pointer;
	transition: all 300ms ease-out;
}
.top-entrance .label::after {
	position: absolute;
	content: "";
	display: block;
	width: 7px;
	height: 13px;
	right: 13px;
	top: calc(50%- 8px);
	background: url(../img/arrow.svg) 0 0 no-repeat;
	background-size: 100% auto;
	transition: all 300ms ease-out;
}
.top-entrance .label:active {
	color: #fff;
	background: #757575;
}
.top-entrance .label:active::after {
	filter: invert(1);
	transform: translateX(4px);
}



.top-entrance:has(+ .continuous) .image {
	border-radius: 10px 0 0 0;
}
.top-entrance.continuous {
	margin-top: 10px;
}
.top-entrance.continuous .image {
	margin-top: 0;
}

#section4 .image,
#section6 .image {
	border-radius: 10px 0 0 10px;	
}

#section6 .image {
	padding-top: 160px;
	padding-bottom: 160px;
}




#top-sns {
	margin: 150px 0 0;
}
#top-sns .layout-container {
}
#top-sns .content {
}
#top-sns ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#top-sns h2 {
	font-size: 20px;
}
#top-sns .text {
	margin: 30px 0 0;
	font-size: 14px;
	line-height: 2;
}
#top-sns ul {
	display: flex;
	margin: 30px 0 0;
}
#top-sns li {
	width: calc(50% - 4px);
}
#top-sns li + li {
	margin-left: 8px;
}
#top-sns li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 105px;
	color: #fff;
	transition: all 300ms ease-out;
}
#top-sns li.x a {
	background: #221714;
}
#top-sns li.instagram a {
	background: url(../img/bg_instagram.jpg) 50% 50% no-repeat;
	background-size: 100% auto;
}
#top-sns li a:active {
	opacity: 0.8;
}


#top-sns .text dl {
	margin: 20px 0 0;
}
#top-sns .text dt {
}
#top-sns .text dd {
}
#top-sns .text dd a {
	position: relative;
	display: inline-block;
	text-decoration: underline;
}
#top-sns .text dd a:active {
	text-decoration: none;
}
#top-sns .text dd a .external {
	margin-left: 10px;
}






#top-sns ul dl {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#top-sns ul dt {
	width: 32px;
}
#top-sns ul dd {
	margin: 12px 0 0;
	font-size: 12px;
}






/* ---------------------------------------------------------------------------------------------------- */
/* Area */


body.area main {
	padding-top: 70px;
}

#area-top-header {
	position: relative;
	margin: 0 0 40px;
}
#area-top-header .inner {
	box-sizing: border-box;
	position: relative;
	margin: 0 auto;
	padding: 35px 16px 0;
	text-align: center;
}

#area-top-header h1 {
	font-size: 28px;
}
#area-top-header h2 {
	margin: 30px 0 0;
	font-size: 18px;
}
#area-top-header p {
	margin: 25px 0 0;
	font-size: 14px;
	line-height: 2;
}


#motion-map {
	position: relative;
	width: 105vw;
	height: 91.46vw;
	margin: 0 -2.5vw;
}
#motion-map .motion {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
}
#motion-map .map {
	position: relative;
	width: 100%;
	z-index: 1;
}


#motion-map::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: calc(100% + 1px);
	left: 0;
	top: 0;
	z-index: 10;
	pointer-events: none;
	background: url(../img/map_cover.png) 0 0 no-repeat;
	background-size: 100% 100%;
}






#map-notice {
	margin: 40px 16px 0;
	font-size: 14px;
	line-height: 1.7;
	text-align: center;
}


#motion-map .link a {
	position: absolute;
	display: block;
	width: 110px;
	height: 41px;
	z-index: 20;
}
#motion-map .link a .button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 24px;
	font-size: 12px;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition: all 300ms ease-out;
}
#motion-map .link a .button::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: all 300ms ease-out;
}
#motion-map .link a .button i {
	position: absolute;
	display: block;
	width: 6px;
	height: 10px;
	right: 10px;
	top: calc(50% - 5px);
	z-index: 10;
	background: transparent url(../img/arrow_mini.svg) 50% 50% no-repeat;
	background-size: 6px auto;
	transition: all 300ms ease-out;
}

#motion-map .link .label {
	margin: 7px 0 0;
	font-size: 10px;
	line-height: 1;
	text-align: center;
}
#motion-map .link .label img {
	width: auto;
	height: 10px;
}

#motion-map .link a:active .button {
	color: #fff;
	background: #757575;
}
#motion-map .link a:active .button::after {
	opacity: 0;
}
#motion-map .link a:active .button i {
	filter: invert(1) brightness(1.1);
}





#motion-map .link a.tobu {
	left: 69vw;
	top: 53vw;
	color: #298d2f;
}
#motion-map .link a.tobu .button::after {
	background-image: url(../img/button_tobu.png);
}


#motion-map .link a.eibi {
	left: 61vw;
	top: 23vw;
	color: #32a973;
}
#motion-map .link a.eibi .button::after {
	background-image: url(../img/button_eibi.png);
}


#motion-map .link a.kusagi {
	left: 13vw;
	top: 20vw;
	color: #00557c;
}
#motion-map .link a.kusagi .button::after {
	background-image: url(../img/button_kusagi.png);
}


#motion-map .link a.nanbu {
	left: 30vw;
	top: 64vw;
	color: #70982f;
}
#motion-map .link a.nanbu .button::after {
	background-image: url(../img/button_nanbu.png);
}









#area-header {
	position: relative;
	height: 145px;
}
#area-header .inner {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	height: 145px;
	padding: 0 16px 10px;
}
#area-header .inner::after {
	position: absolute;
	content: "";
	display: block;
	width: calc(100vw - 32px);
	height: 2px;
	left: 16px;
	bottom: 0;
	z-index: 1;
	background-position: 50% 100%;
	background-size: 1200px 2px;
	background-repeat: no-repeat;
}

#area-header h1 {
	position: relative;
	z-index: 10;
	font-size: 24px;
}
#area-header strong {
	display: block;
	font-size: 28px;
}

#area-header .fig {
	position: absolute;
	width: 148px;
	height: 148px;
	right: 10px;
	top: -8px;
	pointer-events: none;
}





#area-shortcut {
	margin: 40px 0 0;
	padding: 40px 0 0;
	background-position: 50% 0;
	background-size: 1200px 2px;
	background-repeat: no-repeat;
}

#area-shortcut ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#area-shortcut li {
	width: calc(50% - 4px);
	margin-top: 8px;
	aspect-ratio: 1 / 1;
}
#area-shortcut a {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	font-size: 18px;
	color: #fff;
	border-radius: 15px 15px 0 15px;
	overflow: hidden;
}
#area-shortcut a::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background: rgba(0,0,0,0.2);
}

#area-shortcut a i {
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	right: 0;
	bottom: 0;
	z-index: 20;
	background: #fff;
	transition: all 300ms ease-out;
}
#area-shortcut a i::after {
	position: absolute;
	display: block;
	content: "";
	width: 24px;
	height: 24px;
	left: 0;
	top: 0;
	z-index: 20;
	background: transparent url(../img/arrow_mini.svg) 50% 50% no-repeat;
	background-size: 6px auto;
	transition: all 300ms ease-out;
}
#area-shortcut a span {
	position: relative;
	z-index: 20;
}

#area-shortcut a:active i {
	background: #757575;
}
#area-shortcut a:active i::after {
	filter: invert(1);
	transform: translateX(2px);
}


#area-shortcut .top a {
	background-image: url(../img/shortcut_area.jpg);
}
#area-shortcut .tobu a {
	background-image: url(../img/shortcut_tobu.jpg);
}
#area-shortcut .eibi a {
	background-image: url(../img/shortcut_eibi.jpg);
}
#area-shortcut .kusagi a {
	background-image: url(../img/shortcut_kusagi.jpg);
}
#area-shortcut .nanbu a {
	background-image: url(../img/shortcut_nanbu.jpg);
}

body.area-top #area-shortcut .top,
body.tobu #area-shortcut .tobu,
body.eibi #area-shortcut .eibi,
body.kusagi #area-shortcut .kusagi,
body.nanbu #area-shortcut .nanbu
{
	display: none;
}




body.area-top #area-header .inner::after,
body.area-top #area-shortcut,
body.area-top .column-section .sub .profile {
	background-image: url(../img/border_areatop.png);
}
body.tobu #area-header .inner::after,
body.tobu #area-shortcut,
body.tobu .column-section .content,
body.tobu .column-section .sub .profile {
	background-image: url(../img/border_tobu.png);
}
body.eibi #area-header .inner::after,
body.eibi #area-shortcut,
body.eibi .column-section .content,
body.eibi .column-section .sub .profile {
	background-image: url(../img/border_eibi.png);
}
body.kusagi #area-header .inner::after,
body.kusagi #area-shortcut,
body.kusagi .column-section .content,
body.kusagi .column-section .sub .profile  {
	background-image: url(../img/border_kusagi.png);
}
body.nanbu #area-header .inner::after,
body.nanbu #area-shortcut,
body.nanbu .column-section .content,
body.nanbu .column-section .sub .profile  {
	background-image: url(../img/border_nanbu.png);
}







/*
body.tobu #area-header .fig {
	right: 4px;
	top: -55px;
}

body.eibi #area-header .fig {
	right: 4px;
	top: 5px;
}

body.kusagi #area-header .fig {
	right: 0;
	top: -4px;
}

body.nanbu #area-header .fig {
	right: -1px;
	top: -72px;
}
*/




body.area .column-section {
	margin-top: 0;
	padding-top: 0;
	background: none;
}
body.tobu .column-section h3,
body.tobu .column-section .sub .nagaoka .balloon span {
	color: #27872e;
}
body.eibi .column-section h3,
body.eibi .column-section .sub .nagaoka .balloon span {
	color: #008558;
}
body.kusagi .column-section h3,
body.kusagi .column-section .sub .nagaoka .balloon span {
	color: #005381;
}
body.nanbu .column-section h3,
body.nanbu .column-section .sub .nagaoka .balloon span {
	color: #638005;
}


body.area-top .column-section {
	margin-top: 65px;
	padding-top: 67px;
	background: transparent url(../img/border_areatop.png) 50% 0 no-repeat;
	background-size: 1200px auto;
}
body.area-top .wide-image-container .layout-container {
	padding-bottom: 0;
}
body.area-top .wide-image-container + .column-container {
	padding-top: 0;
}
body.area-top .wide-image-container + .column-container .column-section {
	margin-top: 10px;
	padding-top: 40px;
}




#area-map {
	position: relative;
	height: 141.6vw;
	margin: 0 -16px;
	overflow: hidden;
}
#area-map .base img {
}
#area-map .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#area-map + * {
	margin-top: 40px;
}

#area-map .link a {
	position: absolute;
	width: 26.666%;
	aspect-ratio: 198 / 146;
	z-index: 100;
	cursor: pointer;
	
	background: rgba(255,0,0,0.4);
	background: none;
}
#area-map .link a i {
	position: absolute;
	width: 19px;
	height: 19px;
	right: 6px;
	top: 6px;
	background: #fff;
	border-radius: 10px;
	transition: all 300ms ease-out;
}
#area-map .link a i::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../img/circle_mini.png) 0 0 no-repeat;
	background-size: 100% auto;
	transition: all 300ms ease-out;
}
#area-map .link a i::after {
	position: absolute;
	content: "";
	width: 9px;
	height: 9px;
	left: calc(50% - 4.5px);
	top: calc(50% - 4.5px);
	background: url(../img/plus.png) 0 0 no-repeat;
	background-size: 100% auto;
	transition: all 300ms ease-out;
}


#area-map .link a:active i {
	background: #757575;
}
#area-map .link a:active i::before {
	filter: invert(0.45);
}
#area-map .link a:active i::after {
	filter: invert(1) brightness(1.1);
}





/* TOBU */

body.tobu #area-map .link a:nth-child(1) {
	left: calc(7 / 375 * 100%);
	top: calc(7 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(2) {
	left: calc(7 / 375 * 100%);
	top: calc(176 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(3) {
	left: calc(7 / 375 * 100%);
	top: calc(254 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(4) {
	left: calc(7 / 375 * 100%);
	top: calc(332 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(5) {
	left: calc(7 / 375 * 100%);
	top: calc(410 / 531 * 100%);
	aspect-ratio: 100 / 115;
}
body.tobu #area-map .link a:nth-child(6) {
	left: calc(114 / 375 * 100%);
	top: calc(7 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(7) {
	left: calc(102 / 375 * 100%);
	top: calc(105 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(8) {
	left: calc(110 / 375 * 100%);
	top: calc(385 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(9) {
	left: calc(224 / 375 * 100%);
	top: calc(7 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(10) {
	left: calc(267 / 375 * 100%);
	top: calc(105 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(11) {
	left: calc(267 / 375 * 100%);
	top: calc(233 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(12) {
	left: calc(267 / 375 * 100%);
	top: calc(324 / 531 * 100%);
}
body.tobu #area-map .link a:nth-child(13) {
	left: calc(267 / 375 * 100%);
	top: calc(417 / 531 * 100%);
}




/* EIBI */

body.eibi #area-map .link a:nth-child(1) {
	left: calc(7 / 375 * 100%);
	top: calc(9 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(2) {
	left: calc(7 / 375 * 100%);
	top: calc(134 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(3) {
	left: calc(7 / 375 * 100%);
	top: calc(406 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(4) {
	left: calc(120 / 375 * 100%);
	top: calc(9 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(5) {
	left: calc(153 / 375 * 100%);
	top: calc(316 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(6) {
	left: calc(113 / 375 * 100%);
	top: calc(442 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(7) {
	left: calc(224 / 375 * 100%);
	top: calc(9 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(8) {
	left: calc(268 / 375 * 100%);
	top: calc(91 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(9) {
	left: calc(268 / 375 * 100%);
	top: calc(173 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(10) {
	left: calc(268 / 375 * 100%);
	top: calc(316 / 531 * 100%);
}
body.eibi #area-map .link a:nth-child(11) {
	left: calc(232 / 375 * 100%);
	top: calc(415 / 531 * 100%);
	aspect-ratio: 198 / 168;
}




/* KUSAGI */

body.kusagi #area-map .link a:nth-child(1) {
	left: calc(9 / 375 * 100%);
	top: calc(14 / 531 * 100%);
	aspect-ratio: 198 / 168;
}
body.kusagi #area-map .link a:nth-child(2) {
	left: calc(9 / 375 * 100%);
	top: calc(118 / 531 * 100%);
}
body.kusagi #area-map .link a:nth-child(3) {
	left: calc(9 / 375 * 100%);
	top: calc(414 / 531 * 100%);
}
body.kusagi #area-map .link a:nth-child(4) {
	left: calc(141 / 375 * 100%);
	top: calc(14 / 531 * 100%);
	width: 29.333vw;
	aspect-ratio: 110 / 74;
}
body.kusagi #area-map .link a:nth-child(5) {
	left: calc(87 / 375 * 100%);
	top: calc(222 / 531 * 100%);
}
body.kusagi #area-map .link a:nth-child(6) {
	left: calc(141 / 375 * 100%);
	top: calc(321 / 531 * 100%);
}
body.kusagi #area-map .link a:nth-child(7) {
	left: calc(266 / 375 * 100%);
	top: calc(63 / 531 * 100%);
}
body.kusagi #area-map .link a:nth-child(8) {
	left: calc(266 / 375 * 100%);
	top: calc(321 / 531 * 100%);
}
body.kusagi #area-map .link a:nth-child(9) {
	left: calc(202 / 375 * 100%);
	top: calc(414 / 531 * 100%);
	aspect-ratio: 198 / 168;
}




/* NANBU */

body.nanbu #area-map .link a:nth-child(1) {
	left: calc(9 / 375 * 100%);
	top: calc(13 / 531 * 100%);
}
body.nanbu #area-map .link a:nth-child(2) {
	left: calc(9 / 375 * 100%);
	top: calc(97 / 531 * 100%);
	width: 29.333vw;
	aspect-ratio: 110 / 86;
}
body.nanbu #area-map .link a:nth-child(3) {
	left: calc(9 / 375 * 100%);
	top: calc(190 / 531 * 100%);
}
body.nanbu #area-map .link a:nth-child(4) {
	left: calc(9 / 375 * 100%);
	top: calc(350 / 531 * 100%);
}
body.nanbu #area-map .link a:nth-child(5) {
	left: calc(9 / 375 * 100%);
	top: calc(430 / 531 * 100%);
	aspect-ratio: 198 / 168;
}
body.nanbu #area-map .link a:nth-child(6) {
	left: calc(159 / 375 * 100%);
	top: calc(11 / 531 * 100%);
	aspect-ratio: 198 / 168;
}
body.nanbu #area-map .link a:nth-child(7) {
	left: calc(73 / 375 * 100%);
	top: calc(270 / 531 * 100%);
}
body.nanbu #area-map .link a:nth-child(8) {
	left: calc(115 / 375 * 100%);
	top: calc(449 / 531 * 100%);
}
body.nanbu #area-map .link a:nth-child(9) {
	left: calc(266 / 375 * 100%);
	top: calc(11 / 531 * 100%);
}
body.nanbu #area-map .link a:nth-child(10) {
	left: calc(265 / 375 * 100%);
	top: calc(221 / 531 * 100%);
}
body.nanbu #area-map .link a:nth-child(11) {
	left: calc(193 / 375 * 100%);
	top: calc(317 / 531 * 100%);
}
body.nanbu #area-map .link a:nth-child(12) {
	left: calc(265 / 375 * 100%);
	top: calc(430 / 531 * 100%);
	aspect-ratio: 198 / 168;
}













/* ---------------------------------------------------------------------------------------------------- */
/* About */

.about-section {
	margin: 110px auto 0;
}
.about-section h1 {
	margin: 0 0 30px;
	font-size: 28px;
	text-align: center;
}

.about-section .box {
	margin: 0 16px;
}
.about-section .box + .box {
	margin-top: 35px;
	padding-top: 35px;
	background: transparent url(../img/border_column_black.png) 50% 0 no-repeat;
	background-size: 1200px 2px;
}

.about-section .box p {
	font-size: 14px;
	line-height: 2;
}
.about-section .box p + p {
	margin-top: 30px;
}

.about-section .box h2 {
	margin: 0 0 15px;
	font-size: 	18px;
}









/* ---------------------------------------------------------------------------------------------------- */
/* Viewer */

#overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2000;
	background: rgba(255,255,255,0.75);
}
#viewer {
	box-sizing: border-box;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2001;
	padding: 0 16px;
}
#viewer-content {
	box-sizing: border-box;
	position: relative;
	background: #fff;
	border-width: 2px;
	border-style: solid;
	border-radius: 5px;
}
#viewer-content.size-l {
	width: 840px;
}
#viewer-content.size-m {
	width: 630px;
}
#viewer-content.size-s {
	width: 355px;
}

body.tobu #viewer-content {
	color: #27872e;
	border-color: #298d30;
}
body.eibi #viewer-content {
	color: #008558;
	border-color: #1c9C69;
}
body.kusagi #viewer-content {
	color: #005381;
	border-color: #005281;
}
body.nanbu #viewer-content {
	color: #638005;
	border-color: #298D30;
}


#viewer dl {
	padding: 18px 16px;
}
#viewer dt {
	font-size: 16px;
	line-height: 1.7;
}
#viewer dd {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 2;
}

#viewer span {
	position: relative;
	display: block;
	min-height: 150px;
	border-radius: 3px 3px 0 0;
}


#viewer .close {
	position: absolute;
	width: 42px;
	height: 42px;
	right: 10px;
	top: 10px;
	z-index: 10;
	font-size: 0;
	background: #fff;
	border: none;
	border-radius: 21px;
	overflow: hidden;
	cursor: pointer;
	transition: all 300ms ease-out;
}
#viewer .close i {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#viewer .close i::before {
	position: absolute;
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	left: calc(50% - 8px);
	top: calc(50% - 8px);
	z-index: 1;
	background: url(../img/close.png) 0 0 no-repeat;
	background-size: 100% auto;
	transition: all 300ms ease-out;
}
#viewer .close i::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../img/circle_large.png) 0 0 no-repeat;
	background-size: 100% auto;
	transition: all 300ms ease-out;
}

#viewer .close:active {
	background-color: #757575;
}
#viewer .close:active i::before {
	filter: invert(1) brightness(1.2);
}
#viewer .close:active i::after {
	filter: invert(0.45);
}


#viewer .prev,
#viewer .next {
	position: absolute;
	display: flex;
	align-items: flex-end;
	width: 28px;
	height: 34px;
	bottom: -50px;
	z-index: 20;
	padding: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	border: none;
	background: none;
	cursor: pointer;
}

#viewer .prev {
	left: 0;
}
#viewer .next {
	right: 0;
}


#viewer .prev i,
#viewer .next i {
	position: absolute;
	display: block;
	width: 100%;
	height: 12px;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	transition: all 300ms ease-out;
}
#viewer .prev i {
	background-image: url(../img/arrow_popup_prev.png);
}
#viewer .next i {
	background-image: url(../img/arrow_popup_next.png);
}

#viewer .prev:active i {
	transform: translateX(-3px);
}
#viewer .next:active i {
	transform: translateX(3px);
}








#viewer.ready,
#viewer.hide {
	opacity: 0 !important;
}






#viewer ul {
	position: absolute;
	display: flex;
	height: 52px;
	right: 11px;
	bottom: -26px;
	z-index: 10;
}
#viewer li {
	width: 52px;
	height: 52px;
	border-radius: 26px;
	overflow: hidden;
}
#viewer li + li {
	margin-left: 16px;
}
#viewer li a {
	position: relative;
	display: block;
	cursor: pointer;
}
#viewer li a::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.2);
	opacity: 0;
	transition: all 300ms ease-out;
}
#viewer li a:active::after {
	opacity: 1;
}
#viewer li img {
	width: 52px;
	height: 52px;
}



#overlay,
#viewer {
	opacity: 0;
	transition: all 300ms ease-out;
}
body.viewer #overlay,
body.viewer #viewer {
	opacity: 1;
}







#person-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2100;
	background: rgba(0,0,0,0.7);
}
#person-viewer {
	box-sizing: border-box;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2101;
	padding: 0 32px;
}
#person-content {
	box-sizing: border-box;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 500px;
	background: #fff;
	border: 1px solid #707070;
	border-radius: 5px;
	overflow: hidden;
}

#person-content button {
	position: absolute;
	width: 42px;
	height: 42px;
	right: 12px;
	top: 12px;
	z-index: 10;
	font-size: 0;
	background: #fff;
	border: none;
	border-radius: 21px;
	overflow: hidden;
	cursor: pointer;
	transition: all 300ms ease-out;
}
#person-content button i {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
#person-content button i::before {
	position: absolute;
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	left: calc(50% - 8px);
	top: calc(50% - 8px);
	z-index: 1;
	background: url(../img/close.png) 0 0 no-repeat;
	background-size: 100% auto;
	transition: all 300ms ease-out;
}
#person-content button i::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../img/circle_large.png) 0 0 no-repeat;
	background-size: 100% auto;
	transition: all 300ms ease-out;
}

#person-content button:active {
	background-color: #757575;
}
#person-content button:active i::before {
	filter: invert(1) brightness(1.2);
}
#person-content button:active i::after {
	filter: invert(0.45);
}




#person-content .profile {
	width: 240px;
	padding: 60px 0 30px;
}
#person-content .extra {
	display: flex;
	align-items: flex-end;
}
#person-content .photo {
	width: 64px;
	height: 64px;
	border-radius: 32px;
	overflow: hidden;
}
#person-content .balloon {
	position: relative;
	width: 180px;
	z-index: 10;
	margin-right: -4px;
}
#person-content .balloon span {
	box-sizing: border-box;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 12px;
	line-height: 1.75;
	color: #fff;
}

#person-content .profile.reverse .extra {
	flex-direction: row-reverse;
}
#person-content .profile.reverse .balloon {
	margin-right: 0;
	margin-left: -4px;
}

#person-content .profile.left .extra {
	align-items: center;
}
#person-content .profile.left .photo {
	margin-top: 8px;
}
#person-content .profile.left .balloon span {
	padding-right: 0;
	padding-left: 22px;
}
#person-content .profile.right .balloon span {
	padding-right: 10px;
	padding-left: 0;
}


#person-content dl {
	margin: 20px 0 0;
}
#person-content dt {
	font-size: 14px;
	line-height: 1.75;
}
#person-content dd {
	margin-top: 8px;
	font-size: 12px;
	line-height: 2;
}
#person-content dd.multi {
	display: flex;
	justify-content: space-between;
}
#person-content dd.multi .option {
	width: 80px;
}
#person-content dd.multi p {
	width: calc(100% - 80px - 22px);
	margin-top: -0.25em;
	font-size: 1rem;
	line-height: 2;
}



#person-content .profile.nagaoka .extra {
	position: relative;
	display: block;
	padding-bottom: 65px;
}
#person-content .profile.nagaoka .balloon {
	width: 100%;
	margin: 0;
}
#person-content .profile.nagaoka .extra .photo {
	position: absolute;
	left: 130px;
	bottom: 0;
}


body.tobu #person-content .profile.nagaoka .balloon span {
	color: #27872e;
}
body.eibi #person-content .profile.nagaoka .balloon span {
	color: #008558;
}
body.kusagi #person-content .profile.nagaoka .balloon span {
	color: #005381;
}
body.nanbu #person-content .profile.nagaoka .balloon span {
	color: #638005;
}




#person-overlay,
#person-viewer {
	opacity: 0;
	transition: all 300ms ease-out;
}
body.person #person-overlay,
body.person #person-viewer {
	opacity: 1;
}























































































































