@charset "utf-8";
/* 右サイドお問い合わせボタン */

.reservation {
	display: flex;
	position: fixed;
	top: calc(65vh - 130px);
	right: 0;
	z-index: 99999;
	justify-content: center;
	align-items: center;
}
.reservation-btn {
	width: 35px;
	height: 260px;
	/* 	margin: 0 auto; */
	display: flex;
	background-color: rgba(0, 153, 153, 1);
	border: 1.5px dotted rgba(0, 153, 153, 1);
	border-radius: 10px 10px 10px 10px;
	position: relative;
	left: 0;
	z-index: 1;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.8;
	color: rgba(255, 255, 255, 1);
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	writing-mode: vertical-lr;
	font-feature-settings: normal;
	cursor: pointer;
	transition: all 250ms ease;
}
.reservation:hover .reservation-btn {
	background-color: #ffffff;
	border-color: rgba(0, 153, 153, 1);
	color: rgba(0, 0, 0, 1);
}
.reservation-main {
	width: 200px;
	padding-left: 20px;
	background-color: #e6ffff;
	border-radius: 20px 0 0 20px;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 0;
	color: rgba(0, 0, 0, 1);
	box-sizing: border-box;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 250ms ease;
	pointer-events: none;
}
.reservation:hover .reservation-main {
	opacity: 1;
	pointer-events: auto;
}
.reservation-main:after {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background-color: rgba(255, 255, 255, 0.1);
	position: absolute;
	right: 60px;
	top: 0;
	z-index: 2;
}
.reservation-district {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0 15px;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.reservation-district li {
	line-height: 1.2;
}
.reservation-district li a {
	height: 60px;
	display: flex;
	/*background-color: rgba(24, 141, 96, 1);*/
	border-radius: 10px;
	font-size: 1.5rem;
	font-weight: 600;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	justify-content: center;
	align-items: center;
	width: 6em;
	text-align: center;
}
.reservation-text {
	font-size: 1.2rem;
	line-height: 1.6;
}
.reservation-text2 {
	font-size: 1rem;
	line-height: 1.6;
}
.map a {
	background-color: rgba(60, 179, 113, 1);
}
.form a {
	background-color: rgba(0, 153, 153, 1);
	margin: 25px 0;
}

.reservation-district dd a:hover {
	opacity: 0.8;
}

nav .reservation-btn {
	padding: 0!important;
	transform: translateX(100%);
	animation: slideIn 0.5s 3s forwards; 
}
@keyframes slideIn{
	0%{
		transform: translateX(100%);
	}
	100%{
		transform: translateX(0%);
	}
}

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

@media screen and (min-width: 1024px) {
	
}
@media screen and (min-width: 1920px) {
	
}


/*****767px以下のレイアウト*****/
@media screen and (max-width: 767px) {
	nav .fixed-button .button a {
	display: none;
	}
	.reservation {
		display: none;
	}
}