@charset "UTF-8";

/*//////////----- CONTACT -----//////////*/

#contact{
	box-sizing: border-box;
	padding:10px;
}

#contact header.page-header{
	margin-bottom:20px;
}

@media only screen and (min-width: 1440px){
	
	#contact header.page-header{
		margin-bottom:30px;
	}
	
}

/*//////////----- CONTACT-CAPTION -----//////////*/

#contact div.message{
	font-size:12px;
	line-height:20px;
	
	text-align: center;
	
	margin-bottom:20px;
}

@media only screen and (min-width: 520px){
	
	#contact div.message p br{
		display:none;
	}
	
}

@media only screen and (min-width: 1440px){
	
	#contact div.message{
		font-size:15px;
		line-height:24px;
	}
	
}

/*//////////----- CONTACT-CONTACTUS -----//////////*/

.contactus{
	margin-bottom:40px;
}

.contactus p.caption{
	font-size:15px;
	line-height:20px;
	color:#015B81;
	
	text-align: center;
}

.contactus p.caption span{
	display:inline-block;
	
	width:160px;
	box-sizing: border-box;
	border:solid 1px #015B81;
	border-radius: 20px;
}

.contactus p.number{
	font-size:28px;
	line-height:40px;
	letter-spacing: 0.03em;
	
	text-align: center;
	
	color:#015B81;
	
	transition: 0.5s;
}

.contactus p.number span{
	display:inline-block;
	
	box-sizing: border-box;
	padding-left:35px;
	
	position: relative;
}

.contactus p.number span:before{
	display:block;
	content:"";
	
	width:32.5px;
	height:32.5px;
	
	position: absolute;
	top:5px;
	left:0;
	
	background-image: url("../images/icon-reserve-tel.png");
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: center;
	
	transition: 0.5s;
	
	opacity: 1;
}

.contactus 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;
}

.contactus p.number:hover{
	color:#0078AA;
}

.contactus p.number:hover span:before{
	opacity: 0;
}

.contactus p.number:hover span:after{
	opacity: 1;
	transform:rotate(-20deg);
}

@media only screen and (min-width: 1440px){
	
	.contactus p.caption{
		font-size:18px;
		line-height:25px;
	}
	
	.contactus p.caption span{
		width:210px;
	}
	
	.contactus p.number{
		font-size:30px;
		line-height:40px;
	}
}

.contactus ul.btn{
	margin-top:20px;
	
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	
	width:100%;
}

.contactus ul.btn li{
	font-size:15px;
	line-height:35px;
	font-weight:bold;
}

.contactus ul.btn li:nth-child(1){
	box-sizing: border-box;
	padding-right:10px;
}

.contactus ul.btn li:nth-child(2){
	box-sizing: border-box;
	padding-left:10px;
	
	line-height:40px;
}

.contactus ul.btn li a{
	display:block;
	width:155px;
	
	text-align: center;
}

.contactus ul.btn li:nth-child(1) a{
	background-color:#0078AA;
	color:#fff;
	
	border-radius:50px;
}

.contactus ul.btn li:nth-child(1) a:hover{
	background-color:#015B81;
	text-decoration: none;
}

.contactus ul.btn li:nth-child(2) a{
	background-color:#B4A358;
	color:#fff;
}

.contactus ul.btn li:nth-child(2) a:hover{
	background-color:#DCC083;
	text-decoration: none;
}

.contactus ul.btn li span.note{
	display:none;
}

@media only screen and (min-width: 520px){
	
	.contactus ul.btn li a{
		width:180px;
	}
	
	.contactus ul.btn li span.note{
		display:inline-block;
	}
	
}

@media only screen and (min-width: 1440px){
	
	.contactus ul.btn li{
		line-height:40px!important;
	}
	
}

/*//////////----- CONTACT-STEP -----//////////*/

.contact-step{
	width:100%;
	margin:0 auto 20px;
	max-width: 355px;
	
	position: relative;
}

@media only screen and (min-width: 520px){
	
	.contact-step{
		width: 550px;
		max-width: none;
	}

}

@media only screen and (min-width: 1440px){
	
	.contact-step{
		width:720px;
	}
	
}

.contact-step ul{
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
	
	width:100%;
}

.contact-step ul li{
	width:calc(100%/3);
	
	text-align: center;
	
	font-size:15px;
	line-height:15px;
	color:#015B81;
}

.contact-step ul li.off{
	color:#B8B8B9;
}

.contact-step ul li:nth-child(1){
	text-align: left;
}

.contact-step ul li:nth-child(3){
	text-align: right;
}

.contact-step ul li span{
	display:inline-block;
	width:45px;
	height:45px;
	
	box-sizing: border-box;
	padding-top:30px;
	
	position: relative;
}

.contact-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;
}

.contact-step ul li.off span:before{
	background-color:#B8B8B9;
}

.contact-step ul li:nth-child(1) span:before{
	content:"1";
}

.contact-step ul li:nth-child(2) span:before{
	content:"2";
}

.contact-step ul li:nth-child(3) span:before{
	content:"3";
}

.contact-step span.border-step-first{
	width:calc(50% - 47.5px);
	height:2px;
	
	background-color:#015B81;
	
	position: absolute;
	top:12.5px;
	left:35px;
}

.contact-step span.border-step-second{
	width:calc(50% - 47.5px);
	height:2px;
	
	background-color:#015B81;
	
	position: absolute;
	top:12.5px;
	right:35px;
}

.contact-step span.off{
	background-color:#B8B8B9;
}

/*//////////----- CONTACT-FORM -----//////////*/

.contact-form{
	width:100%;
	margin:0 auto 20px;
	max-width: 355px;
}

@media only screen and (min-width: 520px){
	
	.contact-form{
		width: 550px;
		max-width: none;
	}

}

@media only screen and (min-width: 1440px){
	
	.contact-form{
		width:720px;
	}
	
}

.contact-form div.row{
	margin-bottom:20px;
}

.contact-form div.row:last-child{
	margin-bottom:0;
}

.contact-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;
}

.contact-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:15px;
}

.contact-form div.row p.caution:before{
	display:block;
	content:"※";
	
	position: absolute;
	top:-2.5px;
	left:5px;
}

.contact-form div.row p.caption span.note{
	display:inline-block;
	
	font-size:11px;
	line-height:20px;
	
	box-sizing: border-box;
	padding:0 5px;
}

.contact-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;
}

.contact-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;
}

.contact-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;
}

.contact-form div.row input[type="text"]:focus{
	outline: none;
	border:solid 1px #0078AA;
}

.contact-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;
}

.contact-form div.row input[type="email"]:focus{
	outline: none;
	border:solid 1px #0078AA;
}

.contact-form div.row ul.contact-tel{
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
	
	width:100%;
	max-width: 350px;
}

.contact-form div.row ul.contact-tel li{
	width:calc(100%/3);
}

.contact-form div.row ul.contact-tel li:nth-child(1){
	box-sizing: border-box;
	padding-right:20px;
	
	position: relative;
}

.contact-form div.row ul.contact-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;
}

.contact-form div.row ul.contact-tel li:nth-child(2){
	box-sizing: border-box;
	padding-right:20px;
	
	position: relative;
}

.contact-form div.row ul.contact-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;
}

.contact-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){
	
	.contact-form div.row select{
		max-width:355px;
	}
}

.contact-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;
}

.contact-form div.row textarea:focus{
	outline: none;
	border:solid 1px #0078AA;
}

.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 -----//////////*/

.contact-confirm{
	width:100%;
	margin:0 auto 30px;
}

.contact-confirm h6{
	font-size:15px;
	line-height:20px;
	font-weight:bold;
	
	color:#015B81;
	
	text-align: center;
	
	margin-bottom:20px;
}

.contact-confirm div.row{
	box-sizing: border-box;
	padding:10px 2.5px;
	border-bottom:solid 1px #B8B8B9;
	
	font-size:14px;
	line-height:20px;
}

.contact-confirm div.row:first-of-type{
	border-top:solid 1px #B8B8B9;
}

.contact-confirm div.row p.caption{
	font-size:15px;
	line-height:20px;
	color:#015B81;
	font-weight:bold;
	
	position: relative;
	
	margin-bottom:5px;
}

.contact-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){
	
	.contact-confirm div.row{
		display:flex;
		flex-flow: row wrap;
		align-items: stretch;
		justify-content: flex-start;
		
		width:100%;
		
		padding:10px 15px;
	}
	
	.contact-confirm div.row p{
		width:50%;
		margin-bottom:0!important;
	}
	
	.contact-confirm div.row p:nth-child(1){
		text-align: right;
		
		box-sizing: border-box;
		padding-right:10px;
	}
	
	.contact-confirm div.row p:nth-child(2){
		text-align: left;
		
		box-sizing: border-box;
		padding-left:10px;
	}
	
}

@media only screen and (min-width: 1440px){
	
	.contact-confirm div.row{
		margin:0 auto;
		max-width: 720px;
	}
	
	.contact-confirm div.row p:nth-child(1){
		width:180px;
		text-align: left;
	}
	
	.contact-confirm div.row p:nth-child(2){
		width:calc(100% - 180px);
	}
	
}

/*//////////----- CONTACT-COMPLETE -----//////////*/

.contact-complete{
	width:100%;
	margin:0 auto 30px;
}

.contact-complete div.caption{
	font-size:12px;
	line-height:20px;
	font-weight:bold;
	
	margin-bottom:30px;
}

.contact-complete div.caption p{
	/*margin-bottom:20px;*/
}

.contact-complete div.caption p:last-child{
	margin-bottom:0;
}

@media only screen and (min-width: 520px){
	
	.contact-complete div.caption{
		text-align: center;
		
		font-size:15px;
		line-height:25px;
	}
	
	.contact-complete div.caption p{
		margin-bottom:0;
	}
	
}

/*//////////----- 追加作業（2025年12月18日） -----//////////*/

.contactus p.number{
	font-size:28px;
	line-height:40px;
	letter-spacing: 0.03em;
	
	text-align: center;
	
	color:#015B81;
	
	transition: 0.5s;
}

.contactus p.number span{
	display:inline-block;
	
	box-sizing: border-box;
	padding-left:35px;
	
	position: relative;
}

.contactus 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;
}

.contactus 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;
}

.contactus p.number:hover{
	color:#0078AA;
}

.contactus p.number:hover span:before{
	opacity: 1;
}

.contactus p.number:hover span:after{
	opacity: 1;
	transform:rotate(-20deg);
}

.contactus p.time{
	text-align: center;
	
	font-size:0.8rem;
	line-height:20px;
	
	color:#015B81;
}

@media only screen and (min-width: 1440px){
	
	.contactus p.caption{
		font-size:18px;
		line-height:25px;
	}
	
	.contactus p.caption span{
		width:210px;
	}
	
	.contactus p.number{
		font-size:30px;
		line-height:50px;
	}
	
	.contactus p.number span:before{
		top:10px;
	}
}
