@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;500&display=swap');



/* -------------------------------------------------------------------------------- */
/*	CSS Reset
/* -------------------------------------------------------------------------------- */

html, body { 
	margin: 0; 
	padding: 0; 
	height: 100%; 
	min-height: 100%; 
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	line-height: 1;
	text-align: left;
}

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

ol, ul { list-style:none; }

blockquote:before, 
blockquote:after { content:""; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}



/* -------------------------------------------------------------------------------- */
/*	Document Setup
/* -------------------------------------------------------------------------------- */

body {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-kerning: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	line-height: 1.5;
	background-color: #3b2d48;
	border: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}



/* -------------------------------------------------------------------------------- */
/*	Contents
/* -------------------------------------------------------------------------------- */

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

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

img {
	display: block;
	margin: auto;
	max-width: 50.0vw;
	height: auto;
}

@media screen and (min-width: 568px) {
	img {
		max-width: 320px;
	}
}/* min-width: 568px */



/* -------------------------------------------------------------------------------- */
/*	Footer
/* -------------------------------------------------------------------------------- */

footer {
	position: sticky;
	display: block;
	bottom: 0;
	width: 100%;
	margin: 0 auto;
	padding: 1.5em 0;
}

@media screen and (min-width: 568px) {
	footer {
		position: fixed;
		bottom: 0;
	}
}/* min-width: 568px */

footer p {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.0;
	text-align: center;
}



/* -------------------------------------------------------------------------------- */
/*	Misc.
/* -------------------------------------------------------------------------------- */

.hidden {
	display: none !important;
}

.whitelogo {
	filter: contrast(0) brightness(100);
}