/*
==============
base.css
==============
*/

/* -----------------
■ reset
------------------- */

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	font-size: 100%;
	font-weight: inherit;
	font-style: inherit;
	margin: 0;
	padding: 0;
	table-layout: fixed;
	border-collapse: collapse;
	list-style-type: none;
	vertical-align: baseline;
	text-decoration: none;
	word-wrap: break-word;
	word-break: keep-all;
	color: inherit;
	border: 0 none;
	outline: medium none;
	line-break: strict;
	overflow-wrap: break-word;
}

/* -----------------
■ all
------------------- */

html {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

body {
	overflow-x: hidden;
	width: 100%;
	height: 100%;
	background: #fff;
}

h3 {
	font-weight: 200;
}

a {
	-webkit-transition: opacity .4s, color .4s;
	transition: opacity .4s, color .4s;
	color: #ddd;
}

a:hover {
	opacity: .6;
}

p {
	font-size: 12px;
	font-weight: 100;
	display: block;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

hr {
	width: 7%;
	margin: auto;
	margin-bottom: 3em;
	border: none;
	border-top: 1px solid #eee;
}

.separator {
	width: 100%;
	border-top: solid 1px #ddd;
}

/* -----------------
■ font
------------------- */

html {
	font-size: 10px;
}

body {
	font-family: 'Helvetica Neue', sans-serif, ryo-gothic-plusn, 'Hiragino Kaku Gothic ProN', 'メイリオ';
	font-weight: 300;
	font-style: normal;
	letter-spacing: .05em;
	color: #3f3f3f;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
}

/* -----------------
■ header
------------------- */

header .logo {
	position: fixed;
	z-index: 1000;
	top: 40px;
	left: 25px;
	width: auto;
	-webkit-transform: none;
	transform: none;
}

header .logo img {
	width: auto;
	height: 40px;
}

nav {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 40px;
}

nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

nav li {
	margin: 10px 0;
	text-align: right;
}

nav li a {
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	padding: 10px;
	letter-spacing: .05em;
	color: #000;
}

nav li a:visited {
	color: #000;
}

.menu {
	padding-top: 40px;
	padding-left: 0;
	list-style-type: none;
}

/* -----------------
■ main
------------------- */

main {
	margin-bottom: 300px;
}

/* -----------------
■ content
------------------- */

.content {
	font-weight: 100;
	height: 100%;
	padding-bottom: 40px;
	text-align: center;
}

.content h2 {
	font-size: 4rem;
	font-weight: 100;
	margin-top: 100px;
	margin-bottom: 10px;
	text-align: center;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #555;
}

/* -----------------
■ footer
------------------- */

.footer {
	width: 100%;
	text-align: center;
	border-top: solid 1px #ddd;
}

.footer p {
	width: 100%;
	margin: 0;
	text-align: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

