@charset "utf-8";
/*
color
rgba(102, 102, 102, 1);
link
rgba(0, 82, 183, 1);

rgba(159, 1, 68, 1)→rgba(146, 53, 58, 1)
*/
body {
	line-height: 175%;
	color: rgba(50, 50, 50, 1);
	font-size: 1.6rem;
	overflow-x: hidden;
	min-height: 100vh;
	position: relative;
}

* { padding: 0; margin: 0; box-sizing: border-box; word-wrap: break-word; overflow-wrap: break-word;}
img { vertical-align: bottom; }
a {
	color: rgba(146, 53, 58, 1);
	transition: 0.3s;
}
	a img { border: none; }
li { list-style: none; }
strong { color: rgba(50, 50, 50, 1); /* color: rgba(147, 112, 219, 1); */ }
p { padding-bottom: 1em; line-height: 1.8;}
input, textarea, select {
	padding: 0.5em;
	background: rgba(255, 255, 255, 1);
	border: none;
	border: 1px solid rgba(100, 100, 100, 0.5);
	border-radius: 3px;
	max-width: 100%;
	font-size: 1.6rem;
}
select { font-size: 2rem; }
:placeholder-shown { color: rgba(100, 100, 100, 0.5); }
strong { color: rgba(146, 53, 58, 1); }

.pcHide { display: none; }
.spHide { display: block; }
#drawerBox { display: none; }
.pcBlock { display: block; }
.spBlock { display: inline; }

h2 {
	font-size: 3.0rem;
	font-weight: normal;
	line-height: 100%;
	color: rgba(255, 255, 255, 1);
/*	background: linear-gradient(to right, rgba(159, 1, 68, 1), rgba(255, 255, 255, 0));*/
	background: linear-gradient(to right, rgba(146, 53, 58, 1), rgba(238, 224, 225, 1));
	padding: 2rem 0;
	margin-bottom: 4rem;
	position: relative;
	margin-left: -5vw;
}
	h2::before, 
	h2::after {
		content: '';
		display: block;
		width: 15vw;
		height: 100%;
		position: absolute;
		top: 0;
	}
	h2::before {
		left: -15vw;
		background: linear-gradient(to right, rgba(137, 37, 42, 1), rgba(146, 53, 58, 1));
	}
	h2::after {
		right: -15vw;
		background: linear-gradient(to right, rgba(238, 224, 225, 1), rgba(255, 255, 255, 0));
	}
h2:not(:first-child) {
	margin-top: 4rem;
}
.bigText { font-size: 3rem; }
.largerText { font-size: 140%; }
.largeText { font-size: 2.4rem; }
.smallText { font-size: 1.4rem; }
.smallerText { font-size: 86%; }
.tinyText { font-size: 1.0rem; }

.fixImgM, 
.fixImg {
	width: 100%;
	max-width: 1200px;
}
.flexBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
	.flexBox.flex2 > * { width: 48%; }
	.flexBox.flex3 > * { width: 30%; }
	.flexBox.flex4 > * { width: 23%; }
	.flexBox.flex5 > * { width: 17%; }
	.flexBox.flex6 > * { width: 15%; }

.sectionBox { margin-bottom: 1em; }
.topMBox { margin-top: 4rem; }
.unitBox { margin-bottom: 4rem; }
.unitBoxS { margin-bottom: 2rem; }

#mainContentsBox::after, 
.clearBox::after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
.cautionUl, 
.cautionUl2 {
	margin-bottom: 2rem;
}
	.cautionUl li {
		list-style: none;
		margin: 0 0 0.5em 1em;
		text-indent: -1em;
	}
	.cautionUl2 li {
		list-style: none;
		margin: 0 0 0.5em 1em;
		position: relative;
	}
#mainContentsBox h2 span.init, 
.wp-block-table, 
.initBox {
	width: 70vw;
	max-width: 1280px;
	margin: 0 auto;
}
#headerBox .initBox { width: 90vw; }

#mainContentsBox h2 span.init { display: block; }
.centerBox { text-align: center; }
.leftBox { text-align: left; }
.rightBox { text-align: right; }

	.wp-block-table table, 
	.leftThTable, 
	.topThTable {
		border-collapse: collapse;
		width: 100%;
		margin-bottom: 0.5em;
	}
	.leftThTable, 
	.topThTable {
		border-top: 1px solid rgba(51, 51, 51, 0.5);
		border-left: 1px solid rgba(51, 51, 51, 0.5);
	}
	.topThTable th, 
	.topThTable td, 
	.leftThTable th, 
	.leftThTable td {
		font-weight: normal;
		border-right: 1px solid rgba(51, 51, 51, 0.5);
		border-bottom: 1px solid rgba(51, 51, 51, 0.5);
		padding: 1em;
		background: rgba(255, 255, 255, 1);
	}
	.topThTable th, 
	.leftThTable tr > td:first-child, 
	.leftThTable th {
		background: rgba(243, 236, 229, 1);
	}
	.topThTable td { vertical-align: top; }
	.wp-block-table tr td:first-child, 
	.leftThTable tr > td:first-child, 
	.leftThTable th { text-align: left; }
	.wp-block-table tr td:first-child { white-space: nowrap; }

#backToTopBtn {
	display: block;
	position: fixed;
	bottom: 1em;
	right: 3vw;
	width: 50px;
	height: 50px;
	transition: 0.3s;
	background: rgba(255, 255, 255, 1);
	border: 2px solid rgba(175, 69, 94, 1);
	border-radius: 50%;
	box-shadow: 0 0 2px rgba(51, 51, 51, 0.5);
}
	#backToTopBtn span {
		text-indent: -2000em;
		display: block;
	}
	#backToTopBtn::before {
		color: rgba(175, 69, 94, 1);
		font-size: 25px;
		width: 100%;
		text-align: center;
		padding-top: 8px;
	}

.backBtn, 
.submitBtn {
	padding: 1em 0;
	background: rgba(170, 143, 123, 1);
	color: rgba(255, 255, 255, 1);
	width: 45vw;
	border: none;
}
.backBtn { background: rgba(102, 102, 102, 1); }

.myBtn {
	text-decoration: none;
	padding: 0.5em 1em;
	border-radius: 3px;
	background: rgba(51, 51, 51, 1);
	color: rgba(255, 255, 255, 1);
}
	.myBtn:hover{
		background: rgba(170, 143, 123, 1);
	}
.telBtn {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: rgba(51, 51, 51, 1);
}

#contactBody .error {
	padding-left: 1em;
	color: rgba(204, 0, 0, 1);
	font-weight: bold;
}

.youtubeBox {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
  }
	.youtubeBox iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100% !important;
		height: 100% !important;
	}
.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
	.ggmap iframe,
	.ggmap object,
	.ggmap embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

/* layout */
#headerBox {
	padding: 2rem 0;
	position: relative;
	z-index: 1000;
	transition: 0.3s;
}
#headerBox.fixHeader {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 1px 1px 3px rgba(100, 100, 100, 0.5);
}
	#headerBox #mainMenuBox a {
		color: rgba(51, 51, 51, 1);
		padding: 1em 0;
		text-decoration: none;
		display: block;
		position: relative;
	}
	#headerBox #mainMenuBox .nowpage a::after, 
		#headerBox #mainMenuBox a::after {
			content: '';
			width: 0;
			border-bottom: 3px solid rgba(146, 53, 58, 1);
			position: absolute;
			left: 0;
			bottom: 0;
			transition: 0.3s;
		}
		#headerBox #mainMenuBox .nowpage a, 
		#headerBox #mainMenuBox a:hover {
			color: rgba(146, 53, 58, 1);
			text-decoration: none;
		}
		#headerBox #mainMenuBox .nowpage a::after, 
		#headerBox #mainMenuBox a:hover::after {
			width: 100%;
		}

#footerBox.fixFooter {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
#footerBox #footerMainContentBox, 
#headerBox .flexBox {
	flex-wrap: nowrap;
	align-items: center;
}
	#footerBox #footerMainContentBox h1, 
	#headerBox .flexBox h1 {
		width: 25%;
		max-width: 250px;
	}
	#footerBox #footerMainContentBox nav, 
	#headerBox .flexBox nav { flex: 1; }
		#footerBox  #footerMainContentBox ul, 
		#headerBox .flexBox nav #mainMenuBox ul {
			justify-content: flex-end;
		}
		#footerBox  #footerMainContentBox ul li, 
		#headerBox .flexBox nav #mainMenuBox ul li { margin-left: 1.5em; }
		#headerBox .flexBox nav #mainMenuBox ul li.b60th {
			width: 85px;
			height: 100%;
			position: relative;
		}
			#headerBox .flexBox nav #mainMenuBox ul li.b60th a {
				background: url(../img/common/logo_60th.svg) no-repeat 100% 50%;
				background-size: contain;
				text-align: left;
				text-indent: -20000em;
				display: block;
				width: 85px;
				height: 50px;
				pointer-events: none;
				position: absolute;
				top: -25px;
				right: -2.5vw;
			}

#footerBox {
	margin-top: 4rem;
	background: rgba(146, 53, 58, 1);
	color: rgba(255, 255, 255, 1);
	padding: 1rem 0;
}
	#footerBox h1 {
		width: 20%;
		max-width: 200px;
		margin-bottom: 1rem;
	}
	#footerBox #footerMainContentBox ul li a {
		color: rgba(255, 255, 255, 1);
		text-decoration: none;
		font-size: 1.4rem;
	}
		#footerBox #footerMainContentBox ul li a:hover {
			opacity: 0.5;
		}
	#footerBox #officeBox {
		display: flex;
		flex-wrap: nowrap;
		justify-content: left;
		font-size: 1.2rem;
	}
		#footerBox #officeBox .mainofficeBox { margin-right: 1.5em; }
		#footerBox #officeBox .officeTypeBox {
			border: thin solid rgba(255, 255, 255, 1);
			font-size: 80%;
			padding: 0.2rem;
			margin-right: 1em;
		}
		#footerBox #officeBox a, 
		#footerBox #officeBox a.telBtn {
			color: rgba(255, 255, 255, 1);
		}



/* [sp] ============================================ */
@media only screen and (max-width: 780px) {
	.initBox { width: 90vw; }
	.pcHide { display: block; }
	.spHide { display: none; }
	.pcBlock { display: inline; }
	.spBlock, 
	#drawerBox { display: block; }

	h2 { margin-left: 0; }

	.fixImgM {
		width: 70%;
		margin: 0 auto;
	}

	#footerBox.fixFooter {
		position: relative;
		width: auto;
	}

	.spLeftText { text-align: left !important; }
	.smallText { font-size: 1.4rem; }
	.leftBox, 
	.rightBox { float: none !important; width: 100% !important; }

	.flex2 > *, 
	.flex3 > * { width: 100%; margin-bottom: 1em; }
	.flex4 > *, 
	.flex5 > *, 
	.flex6 > * { width: 48%; }

	.wp-block-table tr, 
	.wp-block-table td, 
	.spTable tr, 
	.spTable th, 
	.spTable td {
		float: left;
		width: 100% !important;
		box-sizing: border-box;
	}
	.spTable colgroup, 
	.spTable thead { display: none; }
	.wp-block-table td, 
	.spTable td { padding: 0.25em 1em; }
	.spTable tbody td::before { content: attr(data-name)' '; }

	.backBtn, 
	.submitBtn, 
	input, textarea, select, 
	.spTable { width: 100%; }
	input[type="checkbox"] { width: auto; }
	.backBtn, 
	.submitBtn { margin-bottom: 0.5em; }
	.mwform-tel-field input { width: auto; }

	.telBtn {
		pointer-events: auto;
		cursor: pointer;
		text-decoration: underline;
		color: rgba(146, 53, 58, 1);
	}
	#drawerBox #telBox::after, 
	#drawerBox #reservationBtnBox::after {
		width: 100%;
		text-align: center;
		font-size: 1rem;
		position: absolute;
		bottom: -2rem;
		display: inline-block;
		font-weight: bold;
	}
	#footerBox #footerMainContentBox h1, 
	#headerBox .flexBox h1 { width: 45%; }
	#headerBox .flexBox h1 { position: relative; }
		#headerBox .flexBox h1::after {
			content: '';
			position: absolute;
			top: 0;
			right: -70px;
			width: 60px;
			height: 100%;
			background: url(../img/common/logo_60th.svg) no-repeat 100% 50%;
			background-size: contain;
		}
	#footerMainContentBox nav { display: none; }
	#footerBox #officeBox { flex-wrap: wrap; }

	.wp-block-table tr td:first-child {
		margin-top: 1rem;
		border-bottom: thin solid rgba(51, 51, 51, 0.25);
	}
}
@media only screen and (max-width: 480px) {
}