@charset 'utf-8';

/*---------------------------------------------------------------------- */
/* Global Styles
------------------------------------------------------------------------ */

/* Initialize
---------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, dialog,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, picture {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 100%;
}

html, body {
	height: 100%;
}

html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	line-height: 1.8;
	background: #fff;
	color: #000;
	word-break: normal;
	word-wrap: break-word;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: 100%;
}

main {
	display: block;
}

ul, ol {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
}

a {
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

ins {
	background-color: #ff9;
	color: #fff;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #fff;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	font-size: 1em;
	border-collapse: collapse;
	border-spacing: 0;
}

input, select, textarea {
	padding: 2px;
}

input, select, button {
	vertical-align: middle;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	background: none;
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

area {
	outline: 0;
}


/* Override
---------------------------------------------------------- */

html {
	/* The elastic fonts based on 320px window width. */
	font-size: calc(100vw / 32);
}

body {
	line-height: 2;
	color: #fff;
	background: #000;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
	font-size: 1.2rem;
	letter-spacing: .05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
}

a {
	color: #fff;
	text-decoration: underline;
}

a:hover,
a:focus {
	text-decoration: none;
}

img {
	width: 100%;
}

table {
	font-family: inherit;
	font-weight: inherit;
}

input, select, textarea, button {
	box-sizing: border-box;
	box-shadow: none;
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
}

input, select, textarea {
	border: 0;
	border-radius: 0;
	outline: 0;
	color: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input:focus, select:focus, textarea:focus {
	outline: 1px solid #c5c4c4;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='url'],
textarea,
select {
	padding: 4px 10px;
}

input::placeholder,
textarea::placeholder {
	color: #c1c1c1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #c1c1c1;
}

select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* Utillities
---------------------------------------------------------- */

.break-sp {
	display: block;
}

.nobreak-sp {
	display: none;
}

.grecaptcha-badge {
	display: none;
}

/* button --------------------------------- */

.btn-fade {
	text-decoration: none;
	transition: opacity .3s;
}

.btn-fade:hover,
.btn-fade:focus {
	text-decoration: none;
	opacity: .7;
}

/* Layout
---------------------------------------------------------- */

/* Base --------------------------------- */

#container {
	position: relative;
	min-width: 320px;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
}

#footer {
	position: relative;
	padding: 3rem 0 3.5rem 0;
	background: #fff;
}

/* #header --------------------------------- */

#header > .logo {
	position: fixed;
	top: 2.4rem;
	left: 0;
	z-index: 100;
	width: 100%;
	line-height: 1;
	font-family: 'Barlow', sans-serif;
	text-align: center;
	letter-spacing: .3em;
}

/* #footer --------------------------------- */

/* #sns */

#sns > a {
	display: block;
	margin: 0 auto;
	width: 4rem;
	height: 4rem;
}

/* #copyright */

#copyright {
	margin-top: 2.5rem;
	color: #555;
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: .9rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .1em;
}





/*---------------------------------------------------------------------- */
/* 768px Tablet & PC Styles
------------------------------------------------------------------------ */

@media screen and (min-width: 768px), print {

/* Overlay
---------------------------------------------------------- */

html {
	/* The elastic fonts based on 1600px window width include 17px scrollbar */
	font-size: calc(100vw / 161.7);
}

body {
	line-height: 2.66;
	font-size: 1.8rem;
}


/* Utillities
---------------------------------------------------------- */

.break-sp {
	display: none;
}

.nobreak-sp {
	display: block;
}


/* Layout
---------------------------------------------------------- */

/* Base --------------------------------- */

#footer {
	padding: 6rem 0;
}

/* #header --------------------------------- */

#header > .logo {
	top: 4.8rem;
	left: 5rem;
	width: auto;
	font-size: 2rem;
	text-align: left;
}

/* #footer --------------------------------- */

/* #sns */

#sns > a {
	width: 6rem;
	height: 6rem;
}

/* #copyright */

#copyright {
	margin-top: 6rem;
	font-size: 1.4rem;
}

}





/*---------------------------------------------------------------------- */
/* Print Styles
------------------------------------------------------------------------ */

@media print {

	#container {
		width: 1600px;
	}

	#header {
		position: static;
	}

	#main {
		padding-top: 0;
	}

}


