@charset "utf-8";
/* CSS Document */

.mainInn {
	position: relative;
}

/* schTab
-------------------------------------------------- */
.schTab {
}
.schTab .scheduleTab_items {
	display: flex;
}
.schTab .scheduleTab_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #471e37;
	line-height: 1.0;
	background: rgba(255,255,255,0.75);
	border: 1px solid #471e37;
	border-radius: 100px;
}
.schTab .scheduleTab_item.active {
	color: #fff;
	background: var(--mainColor);
	border: 1px solid var(--mainColor);
}
.schTab .youbi {
	display: block;
}
.schTab .youbi:after {
	content: '曜日';
}

/* day
-------------------------------------------------- */
.day {
	transform: translateY(50px);
	pointer-events: none;
	transition: all 0.6s ease;
	height: 0;
	overflow: hidden;
}
.day.active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	height: auto;
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}



/* switch
-------------------------------------------------- */
.switch {
	position: absolute;
	display: block;
}
.switch .switchLink {
	display: block;
	font-family: var(--gothic);
	color: #471e37;
	background: #fff;
	position: relative;
}
.switch .switchLink:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	width: 0;
	height: 0;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
}

@media screen and (min-width: 768px) {

	/* schTab
	-------------------------------------------------- */
	.schTab {
		margin-bottom: 20px;
	}
	.schTab .scheduleTab_items {
		justify-content: center;
	}
	.schTab .scheduleTab_item {
		width: 84px;
		height: 84px;
		font-size: 20px;
		margin: 0 5px;
		padding-top: 3px;
	}
	.schTab .scheduleTab_item.active {
	}
	.schTab .youbi {
		font-size: 14px;
		margin-top: 2px;
	}

	/* switch
	-------------------------------------------------- */
	.switch {
		top: 18px;
		right: 15px;
	}
	.switch .switchLink {
		font-size: 22px;
		padding: 6px 18px 6px 30px;
	}
	.switch .switchLink:before {
		left: 12px;
		margin-top: -9px;
		border: 9px solid transparent;
		border-left: 12px solid #482035;
	}
}

@media all and (max-width: 767px) {

	/* schTab
	-------------------------------------------------- */
	.schTab {
		margin-bottom: 2vw;
	}
	.schTab .scheduleTab_items {
		display: flex;
		overflow-x: scroll;
		margin-bottom: 2vw;
		padding: 1vw 4vw 3.5vw;
	}
	.schTab .scheduleTab_item {
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 14vw;
		height: 14vw;
		font-size: 3.25vw;
		margin: 0 1vw;
		padding-bottom: 0.333vw;
	}
	.schTab .scheduleTab_item.active {
	}
	.schTab .youbi {
		font-size: 2.5vw;
		margin-top: 0.5vw;
	}

	/* switch
	-------------------------------------------------- */
	.switch {
		top: 2vw;
		right: 1.5vw;
	}
	.switch .switchLink {
		font-size: 3.0vw;
		padding: 0.75vw 3vw 0.75vw 4.75vw;
	}
	.switch .switchLink:before {
		left: 2.0vw;
		margin-top: -1.2vw;
		border: 1.2vw solid transparent;
		border-left: 1.8vw solid #482035;
	}

	.noData {
		font-size: 3.75vw;
		padding: 25vw 0;
	}
}
