@charset "UTF-8";

/*
Reset
*****************************************/
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;
	vertical-align: baseline;
}

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

body {
	position: relative;
	background-color: #fff;
	font: 16px/1 "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	color: #333;
}

ol, ul { list-style: none; }

blockquote, q { quotes: none; }

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

table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

a {
	color: #0D1B2A;
	/* text-decoration: none; */
	word-wrap:break-word;
	transition: all .3s ease;
}

a:hover {
	text-decoration: none;
	color: #00ced1;
}

.wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column nowrap;
	height: 100vh;
	width: 100vw;
	padding: 0 5%;
	box-sizing: border-box;
}


.logo {
	margin: 0 0 40px;
}

.logo img {
	max-width: 90%;
	height: auto;
}


.head {
	font-size: clamp(24px, 8vw, 40px);
	margin: 0 0 24px;
}

.head::before,
.head::after {
	content: '-';
}

.head::before { margin: 0 0.5em 0 0;}
.head::after { margin: 0 0 0 0.5em;}

.sites {
	font-size: clamp(18px, 5vw, 24px);
}


.nav {
	display: flex;
	flex-flow: row wrap;
	gap: 0 1em;
	margin: 10vh 0 0;
	font-size: 12px;
}

.nav li:not(:first-child)::before {
	content: '/';
	margin: 0 1em 0 0;
}
