@charset "UTF-8";

/*//////////----- RESERVE -----//////////*/

#reserve{
	box-sizing: border-box;
	padding:10px;
}

#reserve header.page-header{
	margin-bottom:20px;
}

@media only screen and (min-width: 1440px){
	
	#reserve header.page-header{
		margin-bottom:30px;
	}
	
}

/*//////////----- RESERVE-ATTENTION -----//////////*/

.attention{
	width:100%;
	margin:0 auto 20px;
	max-width: 355px;
}

.attention ul{
	font-size:12px;
	line-height:20px;
}

@media only screen and (min-width: 520px){
	
	.attention{
		width: 550px;
		max-width: none;
	}
	
	.attention ul{
		font-size:14px;
		line-height:20px;
	}
}

@media only screen and (min-width: 1440px){
	
	.attention{
		width:720px;
	}
	
	.attention ul{
		font-size:15px;
		line-height:24px;
	}
	
}

.attention ul li{
	position: relative;
	
	box-sizing: border-box;
	padding-left:15px;
}

.attention ul li:before{
	display:block;
	content:"・";
	
	position: absolute;
	top:0;
	left:0;
}

/*//////////----- RESERVE-TEL -----//////////*/

.reserve-tel{
	margin-bottom:20px;
}

.reserve-tel p.caption{
	font-size:15px;
	line-height:23px;
	color:#015B81;
	
	text-align: center;
}

.reserve-tel p.caption span{
	display:inline-block;
	
	width:160px;
	box-sizing: border-box;
	border:solid 1px #015B81;
	border-radius: 20px;
}

.reserve-tel p.number{
	font-size:25px;
	line-height:35px;
	letter-spacing: 0.03em;
	
	text-align: center;
	
	color:#015B81;
	
	transition: 0.5s;
}

.reserve-tel p.number span{
	display:inline-block;
	
	box-sizing: border-box;
	padding-left:35px;
	
	position: relative;
}

.reserve-tel p.number span:before{
	display:block;
	content:"";
	
	width:30px;
	height:30px;
	
	position: absolute;
	top:3.5px;
	left:3.5px;
	
	background-image: url("../images/icon-reserve-tel.png");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
	
	transition: 0.5s;
	
	opacity: 1;
}

.reserve-tel p.number span:after{
	display:block;
	content:"";
	
	width:30px;
	height:30px;
	
	position: absolute;
	top:3.5px;
	left:3.5px;
	
	background-image: url("../images/icon-reserve-tel-hover.png");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
	
	transition: 0.5s;
	
	opacity: 0;
}

.reserve-tel p.number:hover{
	color:#0078AA;
}

.reserve-tel p.number:hover span:before{
	opacity: 0;
}

.reserve-tel p.number:hover span:after{
	opacity: 1;
	transform:rotate(-20deg);
}

@media only screen and (min-width: 1440px){
	
	.reserve-tel p.caption{
		font-size:18px;
		line-height:25px;
	}
	
	.reserve-tel p.caption span{
		width:210px;
	}
	
	.reserve-tel p.number{
		font-size:30px;
		line-height:40px;
	}
	
	.reserve-tel p.number span:before{
		top:5px;
	}
	
	.reserve-tel p.number span:after{
		top:5px;
	}
}

/*//////////----- RESERVE-STEP -----//////////*/

.reserve-step{
	width:100%;
	margin:0 auto 20px;
	max-width: 355px;
	
	position: relative;
}

@media only screen and (min-width: 520px){
	
	.reserve-step{
		width: 550px;
		max-width: none;
	}

}

@media only screen and (min-width: 1440px){
	
	.reserve-step{
		width:720px;
	}
	
}

.reserve-step ul{
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
	
	width:100%;
}

.reserve-step ul li{
	width:calc(100%/3);
	
	text-align: center;
	
	font-size:15px;
	line-height:15px;
	color:#015B81;
}

.reserve-step ul li.off{
	color:#B8B8B9;
}

.reserve-step ul li:nth-child(1){
	text-align: left;
}

.reserve-step ul li:nth-child(3){
	text-align: right;
}

.reserve-step ul li span{
	display:inline-block;
	width:45px;
	height:45px;
	
	box-sizing: border-box;
	padding-top:30px;
	
	position: relative;
}

.reserve-step ul li span:before{
	display:block;
	content:"0";
	
	font-size:17px;
	line-height:25px;
	
	text-align: center;
	
	background-color:#015B81;
	color:#fff;
	
	width:25px;
	height:25px;
	
	position: absolute;
	top:0;
	left:0;
	right:0;
	
	border-radius:50px;
	
	margin:0 auto;
}

.reserve-step ul li.off span:before{
	background-color:#B8B8B9;
}

.reserve-step ul li:nth-child(1) span:before{
	content:"1";
}

.reserve-step ul li:nth-child(2) span:before{
	content:"2";
}

.reserve-step ul li:nth-child(3) span:before{
	content:"3";
}

.reserve-step span.border-step-first{
	width:calc(50% - 47.5px);
	height:2px;
	
	background-color:#015B81;
	
	position: absolute;
	top:12.5px;
	left:35px;
}

.reserve-step span.border-step-second{
	width:calc(50% - 47.5px);
	height:2px;
	
	background-color:#015B81;
	
	position: absolute;
	top:12.5px;
	right:35px;
}

.reserve-step span.off{
	background-color:#B8B8B9;
}

/*//////////----- RESERVE-FORM -----//////////*/

.reserve-form{
	width:100%;
	margin:0 auto 20px;
	max-width: 355px;
}

@media only screen and (min-width: 520px){
	
	.reserve-form{
		width: 550px;
		max-width: none;
	}

}

@media only screen and (min-width: 1440px){
	
	.reserve-form{
		width:720px;
	}
	
}

.reserve-form div.row{
	margin-bottom:20px;
}

.reserve-form div.row:last-child{
	margin-bottom:0;
}

.reserve-form div.row p.caption{
	font-size:15px;
	line-height:20px;
	color:#015B81;
	font-weight:bold;
	
	box-sizing: border-box;
	padding-left:40px;
	
	position: relative;
	
	margin-bottom:10px;
}

.reserve-form div.row p.caution{
	display:block;
	font-size:14px;
	line-height:20px;
	color:#015B81;
	
	margin-bottom:10px;
	position: relative;
	
	box-sizing: border-box;
	padding-left:20px;
}

.reserve-form div.row p.caution:before{
	display:block;
	content:"※";
	
	position: absolute;
	top:-2.5px;
	left:5px;
}

.reserve-form div.row p.caption span.note{
	display:inline-block;
	
	font-size:11px;
	line-height:20px;
	
	box-sizing: border-box;
	padding:0 5px;
}

.reserve-form div.row p.caption span.must{
	display:inline-block;
	
	width:35px;
	text-align: center;
	
	font-size:12px;
	line-height:20px;
	font-weight:normal;
	
	background-color:#FF9393;
	color:#fff;
	
	position: absolute;
	top:0;
	left:0;
	
	border-radius:2.5px;
}

.reserve-form div.row p.caption span.extra{
	display:inline-block;
	
	width:35px;
	text-align: center;
	
	font-size:12px;
	line-height:20px;
	font-weight:normal;
	
	background-color:#92C8FF;
	color:#fff;
	
	position: absolute;
	top:0;
	left:0;
	
	border-radius:2.5px;
}

.reserve-form div.row p.note-detail{
	display:block;
	font-size:14px;
	line-height:20px;
	color:#015B81;
	
	margin-bottom:10px;
}

.reserve-form div.row p.note-detail a{
	display:inline-block;
	
	font-size:12px;
	line-height:20px;
	
	width:50px;
	
	text-align: center;
	
	background-color:#B4A358;
	color:#fff;
	
	border-radius:2.5px;
	
	margin:0 5px;
}

.reserve-form div.row p.note-detail a:hover{
	opacity: 0.6;
	text-decoration: none;
}

.reserve-form div.row input[type="text"]{
	width:100%;
	
	font-size:14px;
	line-height:20px;
	
	box-sizing: border-box;
	padding:10px;
	outline: none;
	border:solid 1px #B8B8B9;
	border-radius:2.5px;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	background-color:#fff;
	color:#000;
}

.reserve-form div.row input[type="text"]:focus{
	outline: none;
	border:solid 1px #0078AA;
}

.reserve-form div.row input[type="email"]{
	width:100%;
	
	font-size:14px;
	line-height:20px;
	
	box-sizing: border-box;
	padding:10px;
	outline: none;
	border:solid 1px #B8B8B9;
	border-radius:2.5px;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	background-color:#fff;
	color:#000;
}

.reserve-form div.row input[type="email"]:focus{
	outline: none;
	border:solid 1px #0078AA;
}

.reserve-form div.row ul.reserve-tel{
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
	
	width:100%;
	max-width: 350px;
}

.reserve-form div.row ul.reserve-tel li{
	width:calc(100%/3);
}

.reserve-form div.row ul.reserve-tel li:nth-child(1){
	box-sizing: border-box;
	padding-right:20px;
	
	position: relative;
}

.reserve-form div.row ul.reserve-tel li:nth-child(1):before{
	display:block;
	content:"-";
	
	width:20px;
	text-align: center;
	
	font-size:15px;
	line-height:20px;
	font-weight:bold;
	
	position: absolute;
	top:10px;
	right:0;
}

.reserve-form div.row ul.reserve-tel li:nth-child(2){
	box-sizing: border-box;
	padding-right:20px;
	
	position: relative;
}

.reserve-form div.row ul.reserve-tel li:nth-child(2):before{
	display:block;
	content:"-";
	
	width:20px;
	text-align: center;
	
	font-size:15px;
	line-height:20px;
	font-weight:bold;
	
	position: absolute;
	top:10px;
	right:0;
}

.reserve-form div.row ul.list-radio{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.reserve-form div.row ul.list-radio li{
	width:100%;
	
	box-sizing: border-box;
	padding-left:30px;
	
	font-size:14px;
	line-height:35px;
	
	position: relative;
}

@media only screen and (min-width: 520px){
	
	.reserve-form div.row ul.list-radio li{
		width:50%;
	}
	
}

@media only screen and (min-width: 1440px){
	
	.reserve-form div.row ul.list-radio li{
		width:calc(100%/3);
	}
	
}

.reserve-form div.row ul.list-radio li span.note{
	display:inline-block;
	
	font-size:12px;
	line-height:35px;
	
	box-sizing: border-box;
	padding:0 2.5px;
}

.reserve-form div.row ul.list-radio li input[type="radio"]{
	display:none;
}

.reserve-form div.row ul.list-radio li label{
	display:block;
	
	width:23px;
	height:23px;
	
	box-sizing: border-box;
	border:solid 1px #B8B8B9;
	
	border-radius:50px;
	
	background-color:#fff;
	
	position: absolute;
	top:5px;
	left:0;
	
	z-index: 20;
}

.reserve-form div.row ul.list-radio li label:hover{
	cursor: pointer;
}

.reserve-form div.row ul.list-radio li label:focus{
	border:solid 1px #0078AA;
}

.reserve-form div.row ul.list-radio li label:after{
	display:none;
	content:"";
	
	width:15px;
	height:15px;
	
	box-sizing: border-box;
	background-color:#0078AA;
	
	border-radius:50px;
	
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	
	margin:auto;
}

.reserve-form div.row ul.list-radio li input[type="radio"]:checked ~ label:after{
	display:block;
}

@media only screen and (min-width: 520px){
	
	.reserve-form div.row ul.list-radio li:nth-child(2n) label{
		top:4.5px;
	}
	
}
/*//////////----- CAST-SEARCH-WEEKLY -----//////////*/

.reserve-form div.row div.weekly{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
	margin:0 auto;
}

.reserve-form div.row div.weekly div.weekly-child{
	width:20%;
	
	box-sizing: border-box;
	padding:2.5px;
	
	position: relative;
}

.reserve-form div.row div.weekly div.weekly-child:nth-child(1){
	padding-left:0;
}

.reserve-form div.row div.weekly div.weekly-child:nth-child(5){
	padding-right:0;
}

.reserve-form div.row div.weekly div.weekly-child:nth-child(6){
	padding-left:0;
}

.reserve-form div.row div.weekly div.weekly-child:nth-child(10){
	padding-right:0;
}

@media only screen and (min-width: 1440px){
	
	.reserve-form div.row div.weekly div.weekly-child{
		width:10%;
		
		padding-right:2.5px!important;
	}
	
	.reserve-form div.row div.weekly div.weekly-child:nth-child(5){
		padding-right:2.5px!important;
	}
	
	.reserve-form div.row div.weekly div.weekly-child:nth-child(6){
		padding-left:2.5px;
	}
	
	.reserve-form div.row div.weekly div.weekly-child:nth-child(10){
		padding-right:0!important;
	}
	
}

.reserve-form div.row div.weekly div.weekly-child input[type="radio"]{
	display:none;
}

.reserve-form div.row div.weekly div.weekly-child label{
	display:block;
	
	width:100%;
	height:50px;
	
	background-color:transparent;
	color:#000;
	
	position: absolute;
	top:0;
	left:0;
	
	z-index: 10;
}

.reserve-form div.row div.weekly div.weekly-child label:hover{
	cursor: pointer;
}

.reserve-form div.row div.weekly div.weekly-child div.inner{
	height:50px;
	
	box-sizing: border-box;
	border:solid 1px #B8B8B9;
	border-radius:2.5px;
	
	background-color:#fff;
	color:#000;
	
	position: relative;
}

.reserve-form div.row div.weekly div.weekly-child input[type="radio"]:checked ~ div.inner{
	border:solid 1px #0078AA;
	
	background-color:#EDF9FF;
}

.reserve-form div.row div.weekly div.weekly-child div.inner-box{
	width:50px;
	height:35px;
	
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	
	margin:auto;
}

.reserve-form div.row div.weekly div.weekly-child p.today{
	font-size:17px;
	line-height:35px;
	font-weight:bold;
	
	text-align: center;
}

.reserve-form div.row div.weekly div.weekly-child p.month{
	font-size:16px;
	line-height:16px;
	
	text-align: left;
}

.reserve-form div.row div.weekly div.weekly-child p.day{
	font-size:18px;
	line-height:19px;
	color:#015B81;
	
	text-align: right;
	
	position: relative;
	padding-right:13px;
}

.reserve-form div.row div.weekly div.weekly-child p.day span.note{
	display:inline-block;
	
	width:22px;
	height:22px;
	
	font-size:14px;
	line-height:22px;
	font-weight:bold;
	
	text-align: center;
	border-radius:20px;
	
	background-color:#015B81;
	color:#fff;
	
	transform: scale(0.5);
	
	position: absolute;
	bottom:-3.5px;
	right:-4.5px;
}

.reserve-form div.row div.weekly div.weekly-child span.diagonal{
	display:block;
	
	width:25px;
	height:25px;
	
	background-image: url("../images/bg-weekly-row.png");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
	
	position: absolute;
	top:5px;
	left:2.5px;
}

.reserve-form div.row select{
	width:160px;
	
	font-size:14px;
	line-height:20px;
	
	box-sizing: border-box;
	padding:10px;
	outline: none;
	border:solid 1px #B8B8B9;
	border-radius:2.5px;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	background-color:#fff;
	color:#000;
	
	background-image: url("../images/icon-reserve-select-arrow.png");
	background-repeat: no-repeat;
	background-size:10px;
	background-position: center right 10px;
}

@media only screen and (min-width: 520px){
	
	.reserve-form div.row select{
		max-width:355px;
	}
}

.reserve-form div.row div.cast-select{
	display:flex;
	flex-flow: row wrap;
	align-self: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.reserve-form div.row div.cast-select div.cast-select-child{
	width:140px;
	box-sizing: border-box;
	padding-right:10px;
	
	position: relative;
}

@media only screen and (min-width: 520px){
	
	.reserve-form div.row div.cast-select{
		/*-webkit-justify-content: space-between;*/
		/*justify-content:         space-between;*/
	}
	
	.reserve-form div.row div.cast-select div.cast-select-child{
		width:25%;
		padding:0 5px;
	}
}

@media only screen and (min-width: 1440px){
	
	.reserve-form div.row div.cast-select{
		-webkit-justify-content: flex-start; /* Safari */
		justify-content:flex-start;
	}
	
	.reserve-form div.row div.cast-select div.cast-select-child{
		width:20%;
		
		box-sizing: border-box;
		padding:0 5px;
	}
	
}

.reserve-form div.row div.cast-select div.cast-select-child input[type="radio"]{
	display:none;
}

.reserve-form div.row div.cast-select div.cast-select-child label{
	display:block;
	
	width:calc(100% - 10px);
	height:100%;
	
	background-color:transparent;
	
	position: absolute;
	top:0;
	left:0;
	cursor: pointer;
	
	z-index: 20;
}

.reserve-form div.row div.cast-select div.cast-select-child p.thumbnail-check-off{
	display:block;
	
	position: relative;
	width:100%;
}

.reserve-form div.row div.cast-select div.cast-select-child input[type="radio"]:checked ~ p.thumbnail-check-off{
	display:none;
}

.reserve-form div.row div.cast-select div.cast-select-child p.thumbnail-check-off:before{
	display:block;
	content:"";
	
	width:100%;
	
	box-sizing: border-box;
	padding-top:177px;
}

.reserve-form div.row div.cast-select div.cast-select-child p.thumbnail-check-off img{
	width:100%;
	vertical-align: bottom;
	
	position: absolute;
	top:0;
	left:0;
	
	object-fit: cover;
	object-position: center;
}

.reserve-form div.row div.cast-select div.cast-select-child p.thumbnail-check-on{
	display:none;
	
	position: relative;
	width:100%;
}

.reserve-form div.row div.cast-select div.cast-select-child input[type="radio"]:checked ~ p.thumbnail-check-on{
	display:block;
}

.reserve-form div.row div.cast-select div.cast-select-child p.thumbnail-check-on:before{
	display:block;
	content:"";
	
	width:100%;
	box-sizing: border-box;
	padding-top:177px;
}

.reserve-form div.row div.cast-select div.cast-select-child p.thumbnail-check-on img{
	width:100%;
	vertical-align: bottom;
	
	position: absolute;
	top:0;
	left:0;
	
	object-fit: cover;
	object-position: center;
}

.reserve-form div.row div.cast-select div.cast-select-child span.ol{
	display:none;
	
	width:calc(100% - 8px);
	height:179px;
	
	box-sizing: border-box;
	border:solid 2px #0078AA;
	
	position: absolute;
	top:0;
	left:0;
}

@media only screen and (min-width: 520px){
	
	.reserve-form div.row div.cast-select div.cast-select-child span.ol{
		width:calc(100% - 5px);
		left:3px;
	}
	
}

@media only screen and (min-width: 1440px){
	
	.reserve-form div.row div.cast-select div.cast-select-child span.ol{
		width:calc(100% - 6px);
		left:3px;
	}
	
}

.reserve-form div.row div.cast-select div.cast-select-child input[type="radio"]:checked ~ span.ol{
	display:block;
}

.reserve-form div.row div.cast-select div.cast-select-child span.icon-checed{
	display:none;
	
	width:40px;
	height:20px;
	
	font-size:7px;
	line-height:20px;
	text-align: center;
	
	box-sizing: border-box;
	
	background-color:#0078AA;
	color:#fff;
	
	position: absolute;
	top:2px;
	left:2px;
}

@media only screen and (min-width: 520px){
	
	.reserve-form div.row div.cast-select div.cast-select-child span.icon-checed{
		left:4px;
	}
	
}

@media only screen and (min-width: 1440px){
	
	.reserve-form div.row div.cast-select div.cast-select-child span.icon-checed{
		left:4px;
	}
	
}

.reserve-form div.row div.cast-select div.cast-select-child span.icon-category{
	width:45px;
	height:18px;
	
	font-size:7px;
	line-height:20px;
	text-align: center;
	
	box-sizing: border-box;
	
	background-color:#0078AA;
	color:#fff;
	
	position: absolute;
	bottom:50px;
	left:0;
	right:0;
	
	margin:0 auto;
	border-radius:2.5px;
	
	z-index: 30;
}

.reserve-form div.row div.cast-select div.cast-select-child span.icon-category.regular{
	width:60px;
	background-color:#C65B9D;
}

.reserve-form div.row div.cast-select div.cast-select-child span.icon-category.king{
	background-color:#B4A358;
}

.reserve-form div.row div.cast-select div.cast-select-child span.icon-category.prince{
	background-color:#0078AA;
}

.reserve-form div.row div.cast-select div.cast-select-child span.icon-category.newface{
	background-color:#3B8331;
}

.reserve-form div.row div.cast-select div.cast-select-child span.icon-category.start{
	background-color:#3B4043;
}

.reserve-form div.row div.cast-select div.cast-select-child span.icon-category.legend{
	width:60px;
	background-color:#6F0019;
}

.reserve-form div.row div.cast-select div.cast-select-child input[type="radio"]:checked ~ span.icon-checed{
	display:block;
}

.reserve-form div.row div.cast-select div.cast-select-child h4{
	font-size:15px;
	line-height:35px;
	
	text-align: center;
	font-weight:bold;
}

.reserve-form div.row div.cast-select div.cast-select-child.off{
	opacity: 0.2;
}

.reserve-form div.row div.cast-select div.cast-select-child.off label{
	display:none;
}

.reserve-form div.row textarea{
	width:100%;
	min-height: 200px;
	
	font-size:14px;
	line-height:20px;
	
	box-sizing: border-box;
	padding:10px;
	outline: none;
	border:solid 1px #B8B8B9;
	border-radius:2.5px;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	background-color:#fff;
	color:#000;
}

.reserve-form div.row textarea:focus{
	outline: none;
	border:solid 1px #0078AA;
}

.reserve-form div.row ul.list-checkbox{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.reserve-form div.row ul.list-checkbox li{
	width:100%;
	
	box-sizing: border-box;
	padding-left:30px;
	
	font-size:14px;
	line-height:35px;
	
	position: relative;
}

@media only screen and (min-width: 520px){
	
	.reserve-form div.row ul.list-checkbox li{
		width:50%;
	}
	
}

@media only screen and (min-width: 1440px){
	
	.reserve-form div.row ul.list-checkbox li{
		width:calc(100%/3);
	}
	
}

.reserve-form div.row ul.list-checkbox li input[type="checkbox"]{
	display:none;
}

.reserve-form div.row ul.list-checkbox li label{
	display:block;
	
	width:23px;
	height:23px;
	
	box-sizing: border-box;
	border:solid 1px #B8B8B9;
	
	border-radius:4px;
	
	background-color:#fff;
	
	position: absolute;
	top:5px;
	left:0;
	
	z-index: 20;
}

.reserve-form div.row ul.list-checkbox li label:hover{
	cursor: pointer;
}

.reserve-form div.row ul.list-checkbox li label:focus{
	border:solid 1px #0078AA;
}

.reserve-form div.row ul.list-checkbox li label:after{
	display:none;
	content:"";
	
	width:25px;
	height:25px;
	
	box-sizing: border-box;
	background-color:#0078AA;
	
	border-radius:4px;
	
	position: absolute;
	top:-1px;
	left:-1px;
	
	background-image: url("../images/icon-reserve-check.png");
	background-repeat: no-repeat;
	background-size:18px;
	background-position: center;
}

.reserve-form div.row ul.list-checkbox li input[type="checkbox"]:checked ~ label:after{
	display:block;
}

.total{
	box-sizing: border-box;
	padding:10px;
	
	background-color:#EDF9FF;
	color:#015B81;
	
	margin-bottom:10px;
}

.total div.inner{
	width:100%;
	margin:0 auto;
	
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
}

.total p.que{
	width:50%;
	
	font-size:15px;
	line-height:40px;
	font-weight:bold;
	
	text-align:center;
}

@media only screen and (min-width: 520px){
	
	.total div.inner{
		max-width: 225px;
	}
	
	.total p.que{
		text-align: left;
	}
	
}

@media only screen and (min-width: 1440px){
	
	.total{
		width:720px;
		margin:0 auto 10px;
	}
	
}

.total p.ans{
	width:50%;
	
	font-size:25px;
	line-height:40px;
	font-weight:bold;
}

.total p.ans span.note{
	font-size:15px;
	line-height:40px;
}

.total-caption{
	width:100%;
	
	box-sizing: border-box;
	padding:15px;
	
	background-color:#FCF2DB;
	color:#000;
	
	text-align: center;
	
	font-size:12px;
	line-height:20px;
}

@media only screen and (min-width: 1440px){
	
	.total-caption{
		width:720px;
		margin:0 auto;
	}
	
}

.total-caption p:nth-child(1){
	font-size:15px;
	line-height:20px;
}

.total-caption p:nth-child(1) span{
	color:#015B81;
}

.btn-action{
	text-align: center;
	
	box-sizing: border-box;
	padding:30px 0 30px;
}

.btn-action p{
	display:inline-block;
	width:170px;
}

.btn-action p.btn-submit{
	box-sizing: border-box;
	padding:0 5px;
}

.btn-action p.btn-submit input[type="submit"]{
	width:100%;
	
	font-size:15px;
	line-height:35px;
	font-weight:bold;
	
	box-sizing: border-box;
	outline: none;
	border-radius:50px;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	border:none;
	
	background-color:#0078AA;
	color:#fff;
}

.btn-action p.btn-submit input[type="submit"]:hover{
	background-color:#015B81;
	cursor: pointer;
}

.btn-action p.btn-reset{
	box-sizing: border-box;
	padding:0 5px;
}

.btn-action p.btn-reset input[type="reset"]{
	width:100%;
	
	font-size:15px;
	line-height:35px;
	font-weight:bold;
	
	box-sizing: border-box;
	outline: none;
	border-radius:50px;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	border:none;
	
	background-color:#707070;
	color:#fff;
}

.btn-action p.btn-reset input[type="reset"]:hover{
	background-color:#3B4043;
	cursor: pointer;
}

/*//////////----- RESERVE-CONFIRM -----//////////*/

.reserve-confirm{
	width:100%;
	margin:0 auto 30px;
}

.reserve-confirm h6{
	font-size:15px;
	line-height:20px;
	font-weight:bold;
	
	color:#015B81;
	
	text-align: center;
	
	margin-bottom:20px;
}

.reserve-confirm div.row{
	box-sizing: border-box;
	padding:10px 2.5px;
	border-bottom:solid 1px #B8B8B9;
	
	font-size:14px;
	line-height:20px;
}

.reserve-confirm div.row:first-of-type{
	border-top:solid 1px #B8B8B9;
}

.reserve-confirm div.row p.caption{
	font-size:15px;
	line-height:20px;
	color:#015B81;
	font-weight:bold;
	
	position: relative;
	
	margin-bottom:5px;
}

.reserve-confirm div.row p.caption span.note{
	display:inline-block;
	
	font-size:11px;
	line-height:20px;
	
	box-sizing: border-box;
	padding:0 5px;
}

@media only screen and (min-width: 520px){
	
	.reserve-confirm div.row{
		display:flex;
		flex-flow: row wrap;
		align-items: stretch;
		justify-content: flex-start;
		
		width:100%;
		
		padding:10px 15px;
	}
	
	.reserve-confirm div.row p{
		width:50%;
		margin-bottom:0!important;
	}
	
	.reserve-confirm div.row p:nth-child(1){
		text-align: right;
		
		box-sizing: border-box;
		padding-right:10px;
	}
	
	.reserve-confirm div.row p:nth-child(2){
		text-align: left;
		
		box-sizing: border-box;
		padding-left:10px;
	}
	
}

@media only screen and (min-width: 1440px){
	
	.reserve-confirm div.row{
		margin:0 auto;
		max-width: 720px;
	}
	
	.reserve-confirm div.row p:nth-child(1){
		width:320px;
		text-align: left;
	}
	
	.reserve-confirm div.row p:nth-child(2){
		width:calc(100% - 320px);
	}
	
}


/*//////////----- RESERVE-COMPLETE -----//////////*/

.reserve-complete{
	width:100%;
	margin:0 auto 30px;
}

.reserve-complete div.caption{
	font-size:12px;
	line-height:20px;
	font-weight:bold;
	
	margin-bottom:30px;
}

.reserve-complete div.caption p{
	margin-bottom:20px;
}

.reserve-complete div.caption p:last-child{
	margin-bottom:0;
}

@media only screen and (min-width: 520px){
	
	.reserve-complete div.caption{
		text-align: center;
		
		font-size:15px;
		line-height:25px;
	}
	
	.reserve-complete div.caption p{
		margin-bottom:0;
	}
	
}

.reserve-complete div.line-qr{
	text-align: center;
}

.reserve-complete div.line-qr p.note{
	font-size:12px;
	line-height:20px;
	
	margin-bottom:15px;
	color:#0078AA;
}

@media only screen and (min-width: 520px){
	
	.reserve-complete div.line-qr p.note{
		font-size:14px;
		line-height:20px;
	}
}

.reserve-complete div.line-qr p.img-qr{
	font-size:12px;
	line-height:20px;
	color:#015B81;
}

@media only screen and (min-width: 520px){
	
	.reserve-complete div.line-qr p.img-qr{
		font-size:14px;
		line-height:20px;
	}
	
}

.reserve-complete div.line-qr p.img-qr img{
	display:block;
	width:90px;
	margin:0 auto;
	
	vertical-align: bottom;
}

.reserve-complete div.line-qr p.img-qr span{
	display:block;
	margin-top:10px;
}

/*//////////----- 追加作業（2025年12月18日） -----//////////*/

.reserve-tel p.number{
	font-size:28px;
	line-height:40px;
	letter-spacing: 0.03em;
	
	text-align: center;
	
	color:#015B81;
	
	transition: 0.5s;
}

.reserve-tel p.number span{
	display:inline-block;
	
	box-sizing: border-box;
	padding-left:35px;
	
	position: relative;
}

.reserve-tel p.number span:before{
	display:block;
	content:"";
	
	width:32.5px;
	height:32.5px;
	
	position: absolute;
	top:5px;
	left:0;
	
	background-image: url("../images/icon-phone-color.webp");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: center;
	
	transition: 0.5s;
	
	opacity: 1;
}

.reserve-tel p.number span:after{
	display:none;
	content:"";
	
	width:30px;
	height:30px;
	
	position: absolute;
	top:3.5px;
	left:3.5px;
	
	background-image: url("../images/icon-reserve-tel-hover.png");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
	
	transition: 0.5s;
	
	opacity: 0;
}

.reserve-tel p.number:hover{
	color:#0078AA;
}

.reserve-tel p.number:hover span:before{
	opacity: 1;
}

.reserve-tel p.number:hover span:after{
	opacity: 1;
	transform:rotate(-20deg);
}

.reserve-tel p.time{
	text-align: center;
	
	font-size:0.8rem;
	line-height:20px;
	
	color:#015B81;
}

@media only screen and (min-width: 1440px){
	
	.reserve-tel p.caption{
		font-size:18px;
		line-height:25px;
	}
	
	.reserve-tel p.caption span{
		width:210px;
	}
	
	.reserve-tel p.number{
		font-size:30px;
		line-height:50px;
	}
	
	.reserve-tel p.number span:before{
		top:10px;
	}
}

