@charset "utf-8";
/* 共通 ========================= */
:root {
	--sub-color: #B5171D;
	--gray-color: #EBEBEB;
	--darkgray-color:#707070;
	--lightorange-color:#FFF6EB;
	--box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	--transition-trf: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
html {
	scroll-behavior: smooth;
}
.subcolor {
	color: var(--sub-color);
	font-weight: 600;
}
.guideLink {
	color: var(--link-color);
	text-decoration: underline;
}
@media (hover: hover) {
.guideLink:hover {
	color: var(--link-color);
	text-decoration: none;
}
}
/* 最後の矢印削除 ================= */
.arrowNon::after {
	display: none;
 }
/* H3 page__ttl 見出しタイトル ======= */
.page__ttl {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.08em;
	margin: 32px auto 8px;
}
.page__ttlLine{
	display: inline-block;
}
@media screen and (min-width:768px) {
.page__ttl {
	font-size: 2.4rem;
}
/* PCは削除 ============================== */
.pc_hide {
	display: none;
}
}
/* フォント指定 =========================== */
.guidePage {
	line-height: 1.6;
	text-align: justify;
	letter-spacing: 0.08em;
	padding: 0 16px;
}
.guidePage__txt {
	text-align: justify;
	line-height: 1.9;
}
/* 注釈 ============================= */
.guidePage__txtSml {
	margin: 8px auto;
	font-size: 1.2rem;
	text-indent: -1.2rem;
	padding-left: 1.2rem;
}
/* guidePage__nav ナビメニュー ======== */
.guidePage__nav {
	margin: 40px 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.guidePage__navInner{
	width: 100%;
}
.guidePage__navHead{
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--main-color);
}
.guidePage__navTtl{
	background-color: #FFFFFF;
}
.guidePage__navTtlNum{
	font-family: 'Georgia', serif;
	font-style: italic;
	color: #FFFFFF;
	margin-right: 0.4em;
	padding: 0.3em 0.8em;
	background-color: var(--main-color);
	border-radius: 4px;
}
.guidePage__navFlex {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 8px;
}
.guidePage__navLst {
	color: var(--main-color);
	width: calc(33% - 8px);
	text-decoration: none;
	transition: var(--transition-trf);
}
@media (hover: hover) {
.guidePage__navLst:hover {
	transform: translateY(-4px);
	transition: var(--transition-trf);
	cursor: pointer;
	color: var(--main-color);
}
}
.guidePage__navNo {
	font-family: 'Georgia', serif;
	font-size: 1.6rem;
	font-style: italic;
}
.guidePage__navTtl {
	font-size: 1.3rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
	padding: 8px;
	border: var(--main-color) solid 2px;
	border-radius: 8px;
	position: relative;
}
.ll {
	padding: 18px 10px;
}
.guidePage__navTtl::after {
	position:absolute;
	content: "";
	top: 50%;
	right: -26px;
	transform: translateY(-50%); 
	border: 14px solid transparent;
	border-left: 10px solid #F4811E;
}
 @media screen and (min-width:768px) {
.guidePage__nav {
	padding-right: 0;
	flex-direction: row;
	gap: 32px;
	justify-content: space-between;
}
.guidePage__navHead{
	font-size: 1.6rem;
}
.guidePage__navFlex {
	width: 100%;
	margin-top: 12px;
}
.guidePage__navTtl {
	font-size: 1.4rem;
}
}
@media screen and (min-width:1010px) {
.guidePage {
	padding: 0 0px;
}
}
/* guidePage__Btn ボタン共通 =============== */
.guidePage__Btn {
	display: block;
	width: 100%;
	max-width: 290px;
	text-decoration: none;
	line-height: 1;
	text-align: center;
	color: var(--link-color);
	padding: 12px 24px 14px;
	background-color: #FFF;
	border: var(--link-color) solid 2px;
	border-radius: 50px;
	margin: 24px auto 16px;
}
@media (hover: hover) and (pointer: fine) {
.guidePage__Btn:hover {
	color: #FFFFFF;
	background-color: var(--link-color);
	transition: 0.3s;
}
}
/* boxタイトル ===================== */
h5 {
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.4;
}
@media screen and (min-width:768px) {
h5 {
	font-size: 2rem;
}
}
/* gBoxB 共通ボックスB ==================== */
.gBoxBFlex {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.gBoxB {
	border: var(--main-color) solid 2px;
	border-radius: 8px;
	padding: 16px;
}
.gBoxB__ttl {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px;
	letter-spacing: 0.15em;
	gap: 8px;
}
.gBoxB__office {
	margin: 4px auto;
	width: 120px;
	color: #FFF;
	line-height: 1;
	font-size: 1.4rem;
	text-align: center;
	padding: 4px 0 6px;
	background-color: var(--sub-color);
	border-radius: 50px;
}
.gBoxB__officeFlex {
	display: flex;
	justify-content: center;
	width: 260px;
	margin: 0 auto;
}
.gBoxB__time {
	color: var(--sub-color);
	font-weight: 600;
	text-align: center;
	margin: 8px auto;
}
.gBoxB__inner {
	margin-top: 16px;
	padding: 16px;
	background-color: var(--lightorange-color);
	border-radius: 8px;
}
@media screen and (min-width:768px) {
.gBoxBFlex {
	flex-direction: row;
}
.gBoxB {
	width: 50%;
}
}
/* gBoxA 共通ボックスA ==================== */
.gBoxA {
	margin: 64px auto;
}
.gBoxA__stepTtl {
	display: flex;
	font-size: 2rem;
	align-items: center;
	color: var(--main-color);
	gap: 10px;
	margin-bottom: -4px;
}
.gBoxA__stepTtl h4{
	font-size: 2.0rem;
	font-weight: bold;
	padding-bottom: 8px;
}
.gBoxA__stepNo {
width: 105px;
font-family: 'Georgia', serif;
font-size: 1.8rem;
font-style: italic;
line-height: 1;
color: #FFF;
padding: 4px 16px 8px;
border-radius: 8px 44px 0px 0px ;
background-color: var(--main-color);
}
.gBoxA__stepNo span {
font-size: 2.8rem;
}
.gBoxA__inner {
	position: relative;
	border: var(--main-color) solid 2px;
	border-radius: 8px;
	padding: 16px;
	background-color: #FFFFFF;
}
.checkin .gBoxA__inner {
	border-radius: 0 8px 8px 8px;	
}
.gBoxA__inner::after {
	position:absolute;
	content: "";
	bottom: -65px;
	left: 50%;
	transform: translateX(-50%); 
	border: 40px solid transparent;
	border-top: 24px solid #F4811E;
}
.gBoxA:last-child .gBoxA__step .gBoxA__inner::after {
	display: none;
}
.gBoxA__flex {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.gBoxA__content,
.gBoxA__contentP {
	width: 100%;
}
.gBoxA__line,
.gBoxA__contentP
 {
	position: relative;
}
.gBoxA__line::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 3px;
	bottom: -16px;
	left: 0px;
	background-color: var(--gray-color) ;
}
.gBoxA__line::after,
.gBoxA__contentP::after {
	position: absolute;
	content: "";
	width: 60px;
	height: 30px;
	bottom: -32px;
	left: 50%;
	transform: translateX(-50%);
	background-image: url("/images/reserve/reserve_or.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
.gBoxA__contentP::after {
	bottom: -32px;
	background-image: url("/images/reserve/reserve_plus.svg");
}
.gBoxA__ttl {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--lightorange-color);
	padding: 24px 16px;
	border-radius: 8px;
	letter-spacing: 0.15em;
	gap: 8px;
}
.gBoxA__ttl img,
.gBoxB__ttl img {
	width: 70px;
}
.gBoxA__txt {
	margin-top: 16px;
}
.gBoxA__txtMain {
	text-align: center;
	margin: 16px auto;
	font-weight: 600;
}
.gBoxA__empha {
	font-size: 2rem;
	line-height: 1.4;
	text-align: center;
	color: var(--sub-color);
	margin: 8px;
}
.gBox__lst li {
	margin-bottom: 16px;
	position: relative;
	text-indent: -2.3rem;
	padding-left: 2.3rem;
}
.gBox__lst li::before {
	content: "\f138";
	font-family: fontawesome;
	font-size: 1.7rem;
	margin-right: 6px;
	color: var(--main-color);
}
.gBox__lst li:last-child {
	margin-bottom: 0;
}
.gBox__span {
	display: inline-block;
	color: var(--sub-color);
	font-weight: 600;
	padding: 3px 10px 5px 30px;
	border: var(--sub-color) solid 1px;
}
@media screen and (min-width:768px) {
.gBoxA {
	margin: 80px auto;
}
.gBoxA__inner {
	padding: 24px;
}
.gBoxA__flex {
	display: flex;
	flex-direction: row;
	gap: 32px;
}
.gBoxA__stepTtl h4{
	font-size: 2.4rem;
}
.gBoxA__content,
.gBoxA__contentP {
	width: 50%;
}
.gBoxA__line::before,
.gBoxA__contentP::before {
	width: 3px;
	height: 100%;
	top: 0px;
	right: -17px;
	left: auto;
}
.gBoxA__line::after,
.gBoxA__contentP::after  {
	width: 70px;
	top: 55px;
	right: -85px;
	left: auto;
	transform: translateX(-50%);
}
} 
/* guidePage__note 注意事項============ */
.guidePage__note {
	position: relative;
	margin: 56px auto;
	padding: 40px 0px;
	border-top: #707070 dotted 2px;
	border-bottom: #707070 dotted 2px;;
}
.guidePage__noteTtl {
	font-size: 1.6rem;
	position: absolute;
	text-align: center;
	top: -23px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #FFF;
	padding: 6px;
}
.guidePage__noteTxt{
	text-align: center;
}
.guidePage__noteLst li {
	text-align: center;
	margin-bottom: 24px;
}
.guidePage__noteLst li:last-child {
	margin-bottom: 0px;
}
@media screen and (min-width:768px) {
	.guidePage__note {
		margin: 120px auto;
		padding: 40px 16px;
	}
	.guidePage__noteTtl {
		font-size: 1.8rem;
	}
}