html, body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.65em;
	color: #fff;
	background: #000;
	margin: 0;
	padding: 0;
	position: relative;
}

* {
	font-size: 1em;
	box-sizing: border-box;
	background-size: contain;
	word-break: break-all;
}

html, body, p, h1, h2, h3, h4, h5, ul, ol, li, dd, dl, dt, div {
	padding: 0;
	margin: 0;
	font-weight: normal;
}
li { list-style-type: none; }
.sp { display: none; }
.pc { display: block; }

.page {
  overflow: hidden;
}

.slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.slide-inner {
  position: relative;
  width: 100vw;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.slide-inner img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  display: block;
}

/* Avoid blue outline on area click focus (optional) */
area:focus { outline: none; }

ul.btnBox {
	display: none;
}

@media all and (max-width: 736px) {
	.sp { display: block; }
	.pc { display: none; }

	body {
		font-size: 3vw;
	}
	ul.btnBox {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	ul.btnBox a {
		display: flex;
		justify-content: center;
		align-items: center;

		-webkit-flex-grow: 1;
		flex-grow: 1;
		background: #b87733;
		color: #fff;
		text-align: center;
		text-decoration: none;
		padding: 0.5em 2em;
		margin: 0.125em;
		border-radius: 0.5em;
		font-weight: 700;
		font-size: 1.25em;
		line-height: 1;
		width: 90vw;
		max-width: 90vw;
	}
}