@charset "UTF-8";

.sectionTitle > h1
{
	margin-bottom: 0;
	padding-bottom: 1rem;
}

.sectionTitle > p
{
	border-top: 3px solid;
	padding-top: 1em;
	margin-top: -3px;
}

/**********************************************************/
/************************ Summary ***********************/
/**********************************************************/

#summary
{
	margin: 3rem 0;
}

#summary > .flex
{
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-direction: column;
}

#summary h2
{
	font-size: 1.2rem;
	margin-bottom: 1em;
}

/**********************************************************/
/*********************** Topography ***********************/
/**********************************************************/

#topography > .flex
{
	margin: 3rem auto;
	max-width: 1200px;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#topography > .flex > div:nth-of-type(1)
{
	width: 40%;
	min-width: 25rem;
	z-index: 2;
	padding-left: 2rem;
	
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	
	flex-direction: column;
}
#topography > .flex > div:nth-of-type(2)
{
	width: 60%;
	z-index: 1;
	transform: scale(1.2);
	transform-origin: center right;
}

._en #topography > .flex > div:nth-of-type(2)
{
	transform: scale(1.3);
}

#topography > .flex .map_japan
{
	width: 100%;
	max-width: 25rem;
	background-size: cover;
	margin-bottom: 2rem;
}
#topography > .flex .map_japan:before
{
	content:"";
	display: block;
	padding-top: 100%;
}
.svg #topography > .flex .map_japan{background-image: url(../_img/map_japan.svg)}
.no-svg #topography > .flex .map_japan{background-image: url(../_img/map_japan.png)}

#topography > .flex .map_tsunan
{
	width: 100%;
	background-image: url(../_img/map_tsunan.jpg);
	background-size: cover;
}
#topography > .flex .map_tsunan:before
{
	content:"";
	display: block;
	padding-top: 118%;
}

/**********************************************************/
/************************* Access **************************/
/**********************************************************/

#access
{
	margin-top: 8rem;
}

._jp #access .info
{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

._jp #access .info > div
{
	width: calc(50% - 1.5rem);
}

._en #access .info
{
	flex-direction: column;
}
._en #access .info > div
{
	width: 100%;
}
._en #access .info > div + div
{
	margin-top: 2rem;
}

#access .info h3
{
	font-size: 1rem;
}

#access .info > div table tr td
{
	padding: .5em 0;
	font-size: .9rem;
	line-height: 1.75;
	vertical-align: top;
}

#access .info > div table tr td:nth-of-type(1)
{
	color: rgb(50, 50, 50);
	white-space: nowrap;
	padding-right: 1em;
}

/**********************************************************/
/********************** Story  & Tour ***********************/
/**********************************************************/

#story_tour
{
	margin: 5rem 0;
}

#story_tour > .flex
{
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
#story_tour > .flex:nth-of-type(1)
{
	padding-left: 2rem;
}

#story_tour > .flex:nth-of-type(2)
{
	margin-top: 5rem;
	padding-right: 2rem;
	flex-direction: row-reverse;
}

#story_tour > .flex > div:nth-of-type(1)
{
	width: 20rem;
	font-size: .9rem;
}

#story_tour .title
{
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 3px solid;
}

#story_tour .title h2
{
	line-height: 1;
}

#story_tour .title .dir
{
	width: 2rem;
	display: block;
}
#story_tour .title .dir:after,
#story_tour .title .dir:before
{
	content:"";
	display: block;
	position: absolute;
	background-color: rgb(0, 0, 0);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#story_tour .title .dir:after
{
	bottom: 0;
	right: 0;
	width: 100%;
	height: 2px;
}
#story_tour .title .dir:before
{
	bottom: 0;
	right: 0;
	width: .5rem;
	height: 2px;
	transform: rotate(45deg) translateY(-.15rem) translateX(-0.1rem);
}

body:not(.touch) #story_tour .title:hover .dir:after
{
	width: calc(100% + .5rem);
}

#story_tour > .flex .scrollImg
{
	height: 300px;
	width: calc(100% - 22rem);
	background-repeat: repeat-x;
	background-position: 0% 0%;
	background-size: cover;
}

#story_tour > .flex:nth-of-type(1) .scrollImg
{
	background-image: url(../_img/about_story.jpg);
}

#story_tour > .flex.end:nth-of-type(1) .scrollImg
{
	animation: movbg_r 120s linear infinite;
}

@keyframes movbg_r
{
	0%
	{
		background-position: 0% 0%;
	} 
	100%
	{
		background-position: -1800px 0%;
	} 
}

#story_tour > .flex:nth-of-type(2) .scrollImg
{
	background-image: url(../_img/about_tour.jpg);
}

#story_tour > .flex.end:nth-of-type(2) .scrollImg
{
	animation: movbg_l 120s linear infinite;
}

@keyframes movbg_l
{
	0%
	{
		background-position: 0% 0%;
	} 
	100%
	{
		background-position: 1800px 0%;
	} 
}


/**********************************************************/
/************************ Keyword ***********************/
/**********************************************************/

#keywords
{
	margin-top: 5rem;
}

#keywords .statement
{
	margin-bottom: 3rem;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

#keywords .statement .title
{
	margin-bottom: 3rem;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-direction: column;
}

#keywords .statement .title h2
{
	border-bottom: 3px solid;
	margin-bottom: -3px;
}

#keywords .statement .title p
{
	border-top: 3px solid;
}

#keywords .keyword
{
	background-color: rgba(237, 237, 237, 1);
	border-style: solid;
	padding: 1.5rem 1rem;
	
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#keywords .keyword:nth-of-type(2n)
{
	border-width: 0 10px 0 0;
	flex-direction: row-reverse;
}

#keywords .keyword:nth-of-type(2n+1)
{
	border-width: 0 0 0 10px;
	flex-direction: row;
}

#keywords .keyword + .keyword
{
	margin-top: 2rem;
}

.hash
{
	position: absolute;
	font-family: 'GG-B' , sans-serif;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1;
	top: -1.5rem;
	color: rgb(255, 255, 255);
}

#keywords .keyword:nth-of-type(2n) .hash
{
	right:-1.5rem;
}
#keywords .keyword:nth-of-type(2n+1) .hash
{
	left:-1.5rem;
}

#keywords .keyword a
{
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-direction: column;
}

#keywords .keyword:nth-of-type(2n) a
{
	margin-left: 3rem;
	margin-right: 2rem;
}
#keywords .keyword:nth-of-type(2n+1) a
{
	margin-left: 2rem;
	margin-right: 3rem;
}

#keywords .keyword a h4
{
	font-size: 3rem;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	flex-direction: column;
}

#keywords .keyword a h4 > span
{
	line-height: 1;
	margin-bottom: .2em;
}

#keywords .keyword a .en
{
	font-size: .8rem;
	margin-bottom: 1em;
}

#keywords .keyword a .dir
{
	width: 2rem;
	display: block;
}
#keywords .keyword a .dir:after,
#keywords .keyword a .dir:before
{
	content:"";
	display: block;
	position: absolute;
	background-color: rgb(0, 0, 0);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#keywords .keyword a .dir:after
{
	bottom: 0;
	width: 100%;
	height: 2px;
}
#keywords .keyword a .dir:before
{
	bottom: 0;
	right: 0;
	width: .5rem;
	height: 2px;
	transform: rotate(45deg) translateY(-.15rem) translateX(-0.1rem);
}

body:not(.touch) #keywords .keyword a:hover .dir:before
{
	right: -.5rem;
}

body:not(.touch) #keywords .keyword a:hover .dir:after
{
	width: calc(100% + .5rem);
}

#keywords .keyword .summary
{
	font-size: .9rem;
}

#keywords .keyword .summary p:first-child
{
	font-family: 'GG-B' , sans-serif;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 1em;
}

#keywords .keyword .img
{
	flex: 1 0 auto;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	background-color: rgb(0, 0, 0);
	
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

#keywords .keyword:nth-of-type(2n) .img
{
	margin-right: 2rem;
}
#keywords .keyword:nth-of-type(2n+1) .img
{
	margin-left: 2rem;
}

#keywords .keyword .img > img
{
	position: absolute;
	top: 0;
	width: 100%;
	height: auto;
	object-fit:cover;
	
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
}

#keywords .keyword .img > p
{
	line-height: 0;
	font-size: 3rem;
	color: rgb(255, 255, 255);
}


/*///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////*/


@media screen and  (max-width: 800px)
{
	#topography > .flex
	{
		flex-direction: column;
	}

	#topography > .flex > div:nth-of-type(1)
	{
		width: 100%;
		min-width: auto;
		z-index: 2;
		padding: 0rem 2rem;
	}
	#topography > .flex > div:nth-of-type(2)
	{
		width: 100%;
		z-index: 1;
		transform: scale(1) translateY(-4rem);
	}
	#topography > .flex .map_tsunan
	{
		background-image: url(../_img/map_tsunan_v2.jpg);
	}
	#topography > .flex .map_tsunan:before
	{
		padding-top: 73%;
	}
	
	#access
	{
		margin-top: 0rem;
	}
	#access .info
	{
		flex-direction: column;
	}
	._jp #access .info > div
	{
		width: 100%;
	}
	#access .info > div + div
	{
		margin-top: 2rem;
	}
	
	#story_tour > .flex .scrollImg
	{
		height: 250px;
	}
}

@media screen and  (max-width: 700px)
{
	#keywords .keyword + .keyword
	{
		margin-top: 3rem;
	}
	#keywords .keyword:nth-of-type(2n+1),
	#keywords .keyword:nth-of-type(2n)
	{
		flex-direction: column;
	}
	#keywords .keyword:nth-of-type(2n+1) a,
	#keywords .keyword:nth-of-type(2n) a
	{
		margin-left: 0;
		margin-right: 0rem;
		margin-top: 1rem;
		margin-bottom: 2rem;
	}
	
	#keywords .keyword .img
	{
		position: absolute;
		right: -.5rem;
		top: -2rem;
		width: 7rem;
		height: 7rem;
	}
	#keywords .keyword:nth-of-type(2n) .img
	{
		margin-right: 0;
		right: auto;
		left: -1rem;
	}
	
	#keywords .keyword .summary
	{
		padding-left: 1rem;
	}
}

@media screen and  (max-width: 650px)
{
	#story_tour > .flex,
	#story_tour > .flex:nth-of-type(2)
	{
		flex-direction: column;
	}
	#story_tour > .flex:nth-of-type(1)
	{
		padding-left: 0rem;
	}
	#story_tour > .flex:nth-of-type(2)
	{
		padding-right: 0rem;
	}
	
	#story_tour > .flex > div:nth-of-type(1)
	{
		width: 100%;
		padding: 0 2rem;
		margin-bottom: 2rem;
	}
	#story_tour > .flex .scrollImg
	{
		height: 200px;
		width: 100%;
	}
}

@media screen and  (max-width: 450px)
{
	#keywords .keyword .img
	{
		top: -1rem;
		width: 5rem;
		height: 5rem;
	}
}