@charset "UTF-8";

/* Slide
------------------------- */
#slide {
	overflow: hidden;
	position: relative;
	width: 100%;
	background-color: #fff;
}
#slides { /* スライド用ulタグ */
	z-index: 1;
}
#slides,
.slides__item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
.slides__item { /* スライド用liタグ */
	transform: scale(1);
  	transition: transform 6.5s ease;
	display: none;
	overflow: hidden;
	line-height: 0;
}
.slides__item--photo {
	opacity: 1.0;
	object-fit: cover;
	object-position: 50% 50%;
	display: block;
	width: 100%;
}

/* コントローラー */
#controller {
	z-index: 3;
	position: absolute;
	display: flex;
	top: 0;
	left: 0;
	width: 100%;
}
#forward,
#backward {
	flex: 0 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#forward__button,
#backward__button {
	overflow: visible;
	cursor: pointer;
	width: 30px;
	height: 50px;
	padding: 0;
	margin: 0;
	background: none;
	border: 0;
	line-height: 0;
	font-size: 0;
}

/* ページャー */
#anchors {
	flex: 1 1 calc( 100% - 60px );
	display: flex;
	justify-content: center;
	align-items: end;
}
#anchors__inner {
	width: 100%;
	text-align: center;
	padding: 0 0 13px;
}
.setNumber { /* ページネーションの「○」 */
	transition: 0.4s;
	overflow: visible;
	cursor: pointer;
	display: inline-block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0 5px;
	background: none;
	border: solid 1px #fff;
	border-radius: 5px;
	line-height: 0;
	font-size: 0;
}
.setNumber.nowAnc {
	background-color: #fff;
}

/* キャッチフレーズ */
#Catchphrase {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
}
#Catchphrase__inner {
	position: absolute;
	display: inline-block;
	top: 30px;
	left: 0px;
	padding: 10px 40px 11px 16px;
	background-color: var(--navy);
	color: #fff;
}
#Catchphrase__title {
	letter-spacing: 3px;
	font-weight: 700;
	font-size: 36px;
}

#taphouseName {
	position: absolute;
	display: block;
	bottom: 30px;
	right: 20px;
	width: 180px;
	height: 46px;
}
#taphouseName img {
	width: 100%;
	height: auto;
}

/* ---------------------------------
 width <= 1023px
--------------------------------- */
@media screen and (min-width:1px) and (max-width:1023px) {
	#Catchphrase__title {
		letter-spacing: 3px;
		font-size: 32px;
	}
/* under 1023 */
}

/* ---------------------------------
 width <= 840px
--------------------------------- */
@media screen and (min-width:1px) and (max-width:840px) {
	#Catchphrase__title {
		letter-spacing: 3px;
		font-size: 28px;
	}
/* under 840 */
}

/* ---------------------------------
 width <= 640px
--------------------------------- */
@media screen and (min-width:1px) and (max-width:640px) {
	#Catchphrase__inner {
		display: flex;
		justify-content: center;
		align-items: center;
		top: calc( 50% - 80px );
		left: calc( 50% - 220px );
		width: 440px;
		height: 160px;
		padding: 0;
		background-color: rgba(16, 15, 76, 0.5);
	}
	#Catchphrase__title span {
		display: block;
		text-align: center;
	}
	#taphouseName {
		position: absolute;
		display: block;
		bottom: 15px;
		left: calc( 50% - 52px );
		width: 104px;
		height: 27px;
	}
/* under 640 */
}

/* ---------------------------------
 width <= 500px
--------------------------------- */
@media screen and (min-width:1px) and (max-width:500px) {
	#Catchphrase__inner {
		top: calc( 50% - 60px );
		left: calc( 50% - 180px );
		width: 360px;
		height: 120px;
	}
	#Catchphrase__title {
		letter-spacing: 3px;
		font-size: 23px;
	}
/* under 500 */
}

/* ---------------------------------
 width <= 430px
--------------------------------- */
@media screen and (min-width:1px) and (max-width:430px) {
	#Catchphrase__inner {
		top: calc( 50% - 50px );
		left: calc( 50% - 160px );
		width: 320px;
		height: 100px;
	}
	#Catchphrase__title {
		letter-spacing: 2px;
		font-size: 20px;
	}
/* under 430 */
}
/* End of CSS */