@charset "UTF-8";

/**
 * reset
 */
html, body, div, main, 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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width:100%;
	height:auto;
	vertical-align:bottom;
}
strong {
	font-weight: bolder;
}
a {
	outline: none;
	color: #000;
}

/**
 * contents
 */
html {
	font-size: 62.5%;
}
body {
	background-color: #000;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6rem;
	line-height: 2;
	color: #fff;
	/*font-feature-settings:"palt";
	-webkit-font-smoothing: antialiased;*/
	-webkit-text-size-adjust:none;
}
main {
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.5;
}
/* micro clearfix */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after { clear: both; }

.clear {
	clear: both;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}
.tar {
	text-align: right;
}

.inner {
	max-width: 1080px;
	margin: auto;
	padding: 0 60px;
}
@media only screen and (min-width:821px) {
	.sp {
		display:none !important;
	}
}
@media only screen and (min-width:374px) {
	.sp_s {
		display:none !important;
	}
}
@media only screen and (max-width:820px) {
	body {
		font-size: 1.2rem;
	}
	.pc {
		display:none !important;
	}
	.inner {
		padding: 0 30px;
	}
	}
/**/
@media print {
	.sp,
	.sp_s {
		display: none;
	}
}



/**
 * anime
 */
.ani_slideup {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-in, transform 1s ease-out;
}
.ani_slideup.on {
	opacity: 1;
	transform:translateY(0);
}
.ani_img {
	opacity: 0;
	transform: scale(1.03);
	transition: all 0.6s ease-in-out;
}
.ani_img.on {
	opacity: 1;
	transform: scale(1);
}


/**
 * header
 */
header {
	position: relative;
	width: 100%;
	background-color: #24b4ff;
	text-align: center;
	z-index: 10000;
}
header h1 {
	position: relative;
	top: 10px;
}
@media only screen and (max-width:820px) {
	header h1 {
		top: 5px;
	}
	header h1 img {
		width: 100px;
	}
}


/**
 * footer
 */
footer {
	padding: 30px 0;
	text-align: center;
	font-size: 1.4rem;
}
@media only screen and (max-width:820px) {
	footer {
		padding: 20px 0;
		font-size: 1rem;
	}
}

/**
 * bxslider
 */
.bx-wrapper {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	background: none;
	margin-bottom: 0;
}
.bx-viewport {
	overflow: visible !important;
}


/**
 * main
 */
main section + section {
	margin: 80px 0 130px 0;
}
main h2 {
	font-size: 2.6rem;
	margin-bottom: 1em;
}
main * + h2 {
	margin-top: 2.5em;
}
main * + p {
	margin-top: 1em;
}
@media only screen and (max-width:820px) {
	main section + section {
		margin: 40px 0 70px 0;
	}
	main h2 {
		text-align: center;
		font-size: 1.6rem;
	}
}


/**
 * #mv
 */
#mv {
	width: 100vw;
	height: calc(100vh - 75px);
	pointer-events: none;
}
#mv .bx-wrapper,
#mv .bx-viewport,
#mv ul,
#mv li {
	width: 100%;
	height: 100% !important;
}
#mv li {
	background: no-repeat center center / cover;
}
@media only screen and (max-width:820px) {
	#mv {
		height: 75vw;
	}
}

/**
 * #about
 */
#about .inner {
	display: flex;
	justify-content: space-between;
}
#about .inner .txt {
	width: 60%;
}
#about .inner .img {
	position: relative;
	width: 30%;
}
#about .inner .img::before {
	display: block;
	padding-top: 140%;
	content: '';
}
#about .bx-wrapper,
#about .bx-viewport,
#about ul,
#about li {
	position: absolute;
	top: 0;
	left: 0%;
	width: 100%;
	height: 100% !important;
}
#about .inner .img li {
	background: no-repeat center center / cover;
	width: 100%;
	height: 100%;
}
#about .logo {
	position: absolute;
	bottom: -40px;
	left: 30%;
	width: 100vw;
	padding: 5px 5px 5px 15px;
	background-color: #24b4ff;
	transform: translateX(50%);
}
#about .logo.on {
	transition: transform 0.8s ease-out;
	transform: translateX(0);
}
@media only screen and (max-width:820px) {
	#about .inner {
		display: block;
	}
	#about .inner .txt,
	#about .inner .img {
		width: 100%;
	}
	#about .inner .img {
		margin: 3em auto 0 auto;
		width: 60%;
	}
	#about .logo {
		bottom: -20px;
		padding: 5px 5px 5px 10px;
		transform: translateX(100%);
	}
	#about .logo img {
		width: 80px;
	}
}

/**
 * #alcohol
 */
#alcohol .inner {
	display: flex;
	justify-content: space-between;
}
#alcohol .inner > div {
	width: 45%;
}
@media only screen and (max-width:820px) {
	#alcohol .inner {
		display: block;
	}
	#alcohol .inner > div {
		width: 100%;
	}
	#alcohol .inner .img {
		margin: 3em auto 0 auto;
		width: 90%;
	}
}

/**
 * #address
 */
#address h2 {
	text-align: center;
	margin-bottom: 2em;
}
#address .map {
	position: relative;
	margin-bottom: 4em;
}
#address .map::before {
	display: block;
	padding-top: 30%;
	content: '';
}
#address .map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media only screen and (max-width:820px) {
	#address .map::before {
		padding-top: 60%;
	}
}