/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap&subset=japanese');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	font-family: 'Gotham A', 'Gotham B', 'Noto Sans JP', 'ŸàƒSƒVƒbƒN Medium', 'Yu Gothic Medium', YuGothic, -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', meiryo, sans-serif;
	line-height: 1;
	font-size:12px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/****** Main ********/
.menuArea {
	position: fixed;
	top: 3%;
	right: 3%;
	z-index: 99;
}
.menuArea ul li{
	margin-right:20px;
}
.menuArea ul li a{
	font-size:20px;
	color:#fff;
	text-decoration:none;
}
.flex{	
	display: flex;
	flex-wrap:wrap;
}


body {
	color:white;
}
h1 {
	font-size:6em;

}
h2 {
	font-size:5em;
}
p {
	font-size: 3em;
	line-height:1.3;
}
h2 + p {
	font-size:14px;
}
.vertical-top {
	text-align:center;
	width:100%;
	position: absolute;
	top: 25%;
}
.vertical-center {
	text-align:center;
	width:100%;
	position: absolute;
	top: 47%;
	transform: translateY(-47%);
}
.vertical-bottom{
	text-align:center;
	width:100%;
	position: absolute;
	bottom: 7%;
}
.vertical-center p {
}
.panel .vertical-center p.information {
	color:#222;
}
.panel.home .vertical-center p {
	font-size:16px;
	background-color: transparent;
	padding: 0;
}

.inner {
	position: relative;
	height:100%;

	width:80%;
	margin:0 auto;
}
.home {
	background:#6dcb94;
	background:hsl(158,58%,52%);
}
section.panel{
	background-position: center;
	background-size: cover;
}
.code {
	background:rgba(0,0,0,0.2);
}


.pagination {
	position:fixed;
	right:20px;
	top: 50%;
  transform: translateY(-50%);

	font-size:1.4em;
	z-index: 10;
}
.pagination a {
	display:block;
	height:20px;
	margin-bottom:5px;
	color:white;
	position:relative;
	padding:4px;
}
.pagination a.active:after {
	box-shadow:inset 0 0 0 5px;
}
.pagination a .hover-text {
	position:absolute;
	right:15px;
	top:7px;
	opacity:0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
}
.pagination a:hover .hover-text {
	opacity: 1;
}
.pagination a:after {
	-webkit-transition:box-shadow 0.5s ease;
	transition:box-shadow 0.5s ease;
	width:10px;
	height:10px;
	display: block;
	border:1px solid;
	border-radius:50%;
	content:'';
	position: absolute;
	margin:auto;
	top:0;
	right:4px;
	bottom:0;
}




.social-corner {
	position: absolute;
	top:18px;
	right:40px;
}
.social-corner iframe:first-child {
	margin-right:3px;
}
.vertical-center p.cta {
	margin-top:5px;
}
.vertical-center a:link,
.vertical-center a:visited {
	color:white;
	text-decoration:none;

	font-size:0.6em;
}
.vertical-center a:hover {
	text-decoration: underline;
}
.arrow {
	position: relative;
	padding-right:15px;
}

.arrow:before,
.arrow:after {
	content:'';
	position: absolute;
	right:0;
	top:7px;

	width:2px;
	height:12px;
	background: white;
}
.arrow:before {
	transform: rotate(45deg);
	top:15px;
}
.arrow:after {
	transform: rotate(-45deg);

}

@media (max-width:800px) {
	h1 {
		font-size:40px;

	}
	h2 {
		font-size:25px;
	}
	p {
		font-size: 14px;
	}
	h2 + p {
		font-size:18px;
	}
	.inner {
		width:70%;

	}
}