@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: #404040;
	font-family: 'din-2014', 'dnp-shuei-gothic-gin-std', sans-serif;
	/* Google Fontsの場合 - font-family: 'Noto Sans JP', sans-serif; */
	font-size: 16px;
	font-weight: 400; /* Google Fontsの場合 - 300 */
	font-style: normal;
	font-kerning: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	line-height: 1.5;
	background-color: #fff;
	border: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}



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

h1 {
	margin: 0 auto 1.0em;
	font-size: 2.0rem;
	font-weight: 600;
	line-height: 1.0;
	text-align: center;
}

h1 {
	margin: 0 auto 1.0em;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.0;
	text-align: center;
}

p {
	margin: 0 auto 1.0em;
	font-size: 1.0rem;
	line-height: 1.5;
	text-align: center;
}

a {
	color: #16737e;
	text-decoration: none;
}

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

strong,
.bold {
	font-weight: 600; /* Google Fontsの場合 - 500 */
}

.small {
	font-size: 0.6875em;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}



/* -------------------------------------------------------------------------------- */
/*	Header
/* -------------------------------------------------------------------------------- */

header {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

header img {
	max-width: 64vw;
	height: auto;
	margin: 0 auto;
}

@media screen and (min-width: 568px) {
	header img {
		width: auto;
		height: 80px;
	}
}/* min-width: 568px */



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

main img {
	width: 10.0vw;
	height: 100.0vh;
	margin: 0;
}

main img {
	width: auto;
	height: 90.0vh;
	max-height: 90.0vh;
	margin: 0 auto auto;
}

#message {
	margin-bottom: 3.0em;
	padding: 0 1.5em;
}

#sns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 80%;
	margin: 0 auto 3.0em;
}

#sns a {
	font-size: 2.0rem;
	text-align: center;
}



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

footer {
	position: absolute;
	display: block;
	bottom: 0;
	width: 100%;
	margin: 0 auto;
	padding: 1.5em 0;
	border-top: 1px solid #efefef;
	background: #fff;
}

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

footer p {
	margin: 0;
	color: #707070;
	font-size: 0.7rem;
	line-height: 1.0;
	text-align: center;
}



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

.hidden {
	display: none !important;
}