@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,900;1,900&display=swap');
/* color:#ca2621; */

body {
  font-family: "Noto Sans JP", sans-serif;
	color: #231815;
	font-size: 16px;
	font-weight: 400;
	/*margin-bottom: 30px;*/
}

img {
  max-width: 100%;
}

h1, h2 {
  font-family: "Noto Serif JP", serif;
	font-weight: 500;
	letter-spacing: 0.02em;
}

h3 {
	font-weight: 600;
	letter-spacing: 0.02em;
	text-align: center;
}

p {
	font-size: 15px;
}
@media (max-width: 800px) {
	p {
		font-size: 14px;
	}
}
.small {
	font-size: 13px;
}

.center {
	text-align: center;
}

.sp-disp {
  display: none !important;
}
.pc-disp {
  display: block !important;
}
@media (max-width: 800px) {
  .sp-disp {
    display: block !important;
  }
  .pc-disp {
    display: none !important;
  }
}
.note {
	padding: 20px;
}
@media (max-width: 800px) {
	.note {
		padding: 20px 0;
	}
}

/* link */
a:hover {
	opacity: inherit;
}
.link {
	text-decoration: underline;
	color: #ca2621;
}
.white {
	color: #fff;
}

/* btn */
.btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	background: #ca2621;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	border-radius: 99px;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.2);
	width: 300px;
	height: 50px;
	margin: 0.5em auto 0.3em;
	transition: .3s;
}
@media (max-width: 800px) {
	.btn a {
		font-size: 16px;
		max-width: 260px;
		width: 100%;
		max-height: 40px;
		height: auto;
	}
}
.btn a::after{
	font-family: "Material Symbols Outlined";
	content: "\e5cc";
	font-size: 1.5em;
	font-weight: 300;
	color: #fff;
	width: 0;
}
@media (max-width: 800px) {
	.btn:hover, .btn:hover::after {
		opacity: 0.7;
		transition: .3s;
	}
}
.btn-black a {
	background: #382f2c;
}
.btn-gold a {
	background: #a18d45;
}

/* section */
.lo-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.narrow {
	max-width: 900px;
}
@media (max-width: 800px) {
	.lo-inner {
		margin: 0 5%;
	}
}
section {
	line-height: 1.6;
}
.bg-white {
	background: #fff;
	padding: 50px 0;
}
.bg-black {
	background: #382f2c;
	padding: 50px 0;
}
.bg-gray {
	background: #f1f0f0;
	padding: 50px 0;
}
.bg-color {
  background-color: #fafafa;
  background-image: repeating-linear-gradient(-45deg, #f6f5f5, #f6f5f5 3px, transparent 3px, transparent 6px);
	padding: 50px 0;
}
@media (max-width: 800px) {
	.bg-white,
	.bg-black,
	.bg-gray,
	.bg-color {
		padding: 40px 0;
	}
}

/* header */
.header {
	position: fixed;
	z-index: 99;
	background: rgb(255 255 255 / 1);
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 0.1);
	width: 100%;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 30px;
	max-width: 1900px;
	margin: 0 auto;
	padding: 10px;
}
.header-inner .logo img {
	height: 50px;
}

/* menubar */
.menubar ul {
  display: flex;
	gap: 0 20px;
	align-items: center;
}
.menubar .menu-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 5px;
	font-size: 15px;
	font-weight: 500;
}
.menubar-sp {
  display: none;
}
.menu-btn {
  display: none;
}

@media (max-width: 800px) {
	.header-inner {
		padding: 10px;
	}
	.header-inner .logo img {
		height: 50px;
	}
  .menubar {
    display: none;
  }
  .menubar-sp {
    display: block;
  }
	
	/* menu close */
  .menu-btn {
    display: block;
    position: fixed;
		top: 5px;
		right: 5px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 999;
  }
  .menu-btn span {
    display: block;
    position: absolute;
    width: 35px;
    height: 2px;
    left: 0;
    background: #ca2621;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
  }
  .menu-btn span:nth-of-type(1) {
    top: 15px;
		left: 10px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 28px;
		left: 10px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 40px;
		left: 10px;
  }
	
  /* menu open */
  .menu-btn.active span:nth-child(1) {
    top: 30px;
		background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
	.menu-btn.active span:nth-child(2) {
		display: none;
	}
	.menu-btn.active span:nth-child(3) {
    top: 30px;
		background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
	
  /* sp menu */
  .menubar-sp {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
		background: rgb(0 0 0 / 0.9);
		color: #fff;
    width: 100%;
		height: 100%;
		opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s linear, visibility 0.1s linear;
  }
  .menubar-sp.active {
    opacity: 1;
		z-index: 99;
		visibility: visible;
    display: grid;
    overflow: auto;
  }
  .menubar-sp ul {
    display: none;
  }
  .menubar-sp.active ul {
    display: flex;
    margin: 0 auto;
		flex-direction: column;
		padding: 100px 0 0;
  }
  .menubar-sp ul li {
    position: relative;
		display: flex;
		align-items: center;
    font-size: clamp(1.2rem, 1vw + 0.75rem, 1.6rem);
		margin-bottom: 1.8em;
	}
  .menubar-sp ul li.menu-item::before {
    content: "";
    width: 10px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin-right: 10px;
  }
  .menubar-sp ul li a {
		color: #fff;
  }
  .menubar-sp ul li.sign-up {
		margin: 2em 0 1em;
  }
}

/* top banner */
.top-wrap {
	background: #f1f0f0;
}
.top-bnr {
	position: relative;
	max-width: 1900px;
	margin: 0 auto;
	max-height: 80vh;
	min-height: 500px;
	height: 900px;
}
@media (max-width: 800px) {
	.top-bnr {
		height: 50vh;
		min-height: 400px;
	}
}
.top-bnr .top-img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.top-bnr .top-ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.top-bnr .top-ttl img {
	width: 100%;
	max-width: 700px;
	min-width: 500px;
}
@media (max-width: 600px) {
	.top-bnr .top-ttl {
		min-width: 90%;
	}
	.top-bnr .top-ttl img {
		min-width: initial;
	}
}

/* title */
.ttl {
	font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
	font-weight: 600;
	letter-spacing: 0.03em;
	text-align: center;
	margin: 0 0 1.6em;
  position: relative;
}
.ttl::before {
  content: '';
  position: absolute;
  bottom: -12px;
  display: inline-block;
  width: 2em;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ca2621;
}
#arch1,
#arch2,
#arch3,
#arch4,
#arch5 {
  font-family: "Noto Serif JP", serif;
	font-size: clamp(0.75rem, 1vw + 0.25rem, 0.938rem);
	font-weight: 700;
	color: #ca2621;
	text-align: center;
	margin: 0 0 1em;
}

/* about */
.about p {
  font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: clamp(1rem, 1vw + 0.75rem, 1.375rem);
	line-height: 1.8;
	text-align: center;
	margin-top: -0.5em;
}
@media (max-width: 650px) {
	.about p {
		text-align: left;
	}
}

/* benefits */
.benefits {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.set-col {
  display: flex;
	gap: 30px;
}
.benefits-item {
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5em;
	background: #fff;
	padding: 30px;
	border-radius: 5px;
	border: 2px solid #231815;
	min-height: 300px; 
}
.benefits-item::before {
	content: "";
	position: absolute;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #231815;
	border-radius: 3px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}
@media (max-width: 1300px) and (min-width: 800px) {
	.benefits {
		margin: 0 2%;
	}
}
@media (max-width: 1000px) {
	.benefits {
		align-items :center;
	}
	.set-col {
		flex-wrap: wrap;
		justify-content: center;
	}
	.benefits-item {
		flex: 0 1 auto;
		width: 100%;
		max-width: 400px;
		min-height: unset; 
	}
}
.benefits-item .number {
	position: absolute;
	top: -4px;
	left: 10px;
	background: #ca2621;
	color: #fff;
  font-family: "Noto Serif JP", serif;
	font-size: 18px;
	font-weight: 600;
	padding: 0.4em 0.4em 0.8em;
	line-height: 1;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0% 100%);
}
.benefits-item .number span {
	font-size: 26px;
	font-weight: 700;
}
.benefits-item .benefits-ttl {
	font-size: clamp(1.125rem, 1.5vw + 0.75rem, 1.2rem);
	margin: 0.7em 0 0;
}
.benefits-item .benefits-ttl span {
	color: #ca2621;
}
.benefits-ttl .lato {
  font-family: "Lato", sans-serif;
  font-weight: 900;
	font-size: 40px;
	line-height: 0;
}
.benefits-item img {
	max-width: 110px;
}
@media (max-width: 800px) {
	.benefits-item .number span {
		font-size: 20px;
	}
	.benefits-item .benefits-ttl {
		margin: 0.2em 0 0;
	}
	.benefits-ttl .lato {
		font-size: 30px;
	}
	.benefits-item img {
		max-width: 90px;
	}
	}

/* benefits price */
.benefits-item.price {
	gap: 20px;
	justify-content: flex-start;
	/*padding: 0;
	border: none;*/
	max-width: none;
}
.price-wrap {
	display: flex;
	flex-direction: row;
	gap: 30px;
	width: 100%;
}
.price-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 50%;
}
@media (max-width: 800px) {
	.benefits-item.price {
		max-width: 500px;
	}
	.price-wrap {
		flex-direction: column;
	}
	.price-item {
		width: 100%;
	}
}
.price-item h4 {
	font-size: clamp(0.938rem, 1vw + 0.5rem, 1.125rem);
	font-weight: 500;
	text-align: center;
  background-color: #f1f0f0;
	padding: 0.5em;
}
.price-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.price-list li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}
.price-list p {
	font-size: 16px;
	font-weight: 500;
}
@media (max-width: 800px) {
	.price-list p {
		font-size: 14px;
	}
}
.price-list .p-ttl {
	color: #fff;
	padding: 0.5em 1.5em 0.5em 1.0em;
	width: 56%;
	clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}
.price-list .p-txt {
  white-space:nowrap;
}
.price-list .p-txt span {
  font-family: "Lato", sans-serif;
  font-weight: 900;
	font-size: clamp(2rem, 2vw + 1.5rem, 2.5rem);
	line-height: 1.5;
}
.price-list .p-ttl.gray {
  background-color: #918b8a;
}
.price-list .p-txt.gray {
  color: #918b8a;
}
.price-list .p-ttl.brown {
  background-color: #655d5b;
}
.price-list .p-txt.brown {
  color: #655d5b;
}
.price-list .p-ttl.red {
  background-color: #ca2621;
}
.price-list .p-txt.red {
  color: #ca2621;
}
.benefits .point img {
	width: 100%;
	margin:0 auto 0.2em;
	filter: drop-shadow(0 0 10px rgb(0 0 0 / 0.1));
}
@media (max-width: 800px) {
	.benefits .point img {
		max-width: 470px;
	}
}

/* faq */
.faq-content {
	margin-bottom: 40px;
}
@media (max-width: 900px) and (min-width: 800px) {
	.faq-content {
		margin: 0 2%;
	}
}
.faq-content:last-child {
	margin-bottom: 0;
}
.faq-content h3 {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fafafa;
  background-image: repeating-linear-gradient(-45deg, #f6f5f5, #f6f5f5 3px, transparent 3px, transparent 6px);	font-size: 18px;
	font-weight: 600;
	text-align: left;
  padding: 10px 30px;
}
@media (max-width: 800px) {
  .faq-content h3 {
    font-size: 16px;
  	padding: 10px 15px;
  }
}
.accordion {
  margin-bottom: 7px;
  border-bottom: 1px solid #ddd;
  padding-left: 1em;
}
@media (max-width: 800px) {
	.accordion {
		padding-left: 0.5em;
	}
}
.accordion .qs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 1em 1em 2em;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
}
@media (max-width: 800px) {
  .accordion .qs {
    font-size: 14px;
  	padding-left: 1.5em;
  	padding-right: 0.5em;
  }
}
.accordion .qs::before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "Q";
  color: #ca2621;
  font-size: 22px;
  font-weight: normal;
}
@media (max-width: 800px) {
  .accordion .qs::before {
    top: 9px;
  }
}
.accordion .qs::-webkit-details-marker {
  display: none;
}
.accordion .qs::after {
  transform: translateY(-25%) rotate(45deg);
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-bottom: 2px solid #222;
  border-right: 2px solid #222;
  content: '';
  transition: transform .5s;
}
.accordion[open] .qs::after {
  transform: rotate(225deg);
}
.accordion .an {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  color: #333;
  transition: transform .5s, opacity .5s;
  padding: 0 1em 1em 2em;
  margin-top: 10px;
  position: relative;
}
@media (max-width: 800px)  {
  .accordion .an {
    font-size: 14px;
  	padding-left: 1.5em;
  }
}
.accordion[open] .an {
  opacity: 1;
}
.accordion .an::before {
  position: absolute;
  top: -7px;
  left: 0;
  content: "A";
  color: #666;
  font-size: 22px;
  font-weight: normal;
}
@media (max-width: 800px) {
  .accordion .an::before {
    top: -6px;
  }
}
@media (max-width: 800px) {
  .accordion .qs::before, .accordion .an::before {
    font-size: 20px;
  }
}

/* hotels */
.hotel-item {
  margin-bottom: 20px;
}
.hotel-item .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	gap: 15px 0;
  background: #fff;
  border-radius: 10px;
	padding: 20px 0;
	max-width: 400px;
  box-shadow: 0px 0px 10px 0 rgb(0 0 0 / 0.1);
}
@media (max-width: 800px) {
	.hotel-item .card {
		max-width: 300px;
	}
}
.hotel-item .card h3 {
  font-size: 20px;
	padding: 0 20px;
}
.hotel-item .card p {
	padding: 0 20px;
}
.hotel-item .card span {
	display: inline-block;
	background: #ca2621;
	color: #fff;
	font-size: 14px;
	padding: 0.3em 0.5em;
	margin-bottom: 0.5em;
	font-weight: 500;
}
@media (max-width: 800px) {
	.hotel-item .card {
		padding: 15px 0;
	}
	.hotel-item .card h3 {
		font-size: 17px;
	}
	.hotel-item .card p {
		font-size: 14px;
		padding: 0 10px;
	}
	.hotel-item .card span {
		font-size: 12px;
	}
}
.slick-slide {
  transform: scale(.85);
  transition: 0.3s all;
}
.slick-slide.slick-current {
  transition: 0.3s all;
  transform: scale(1);
}

/* footer */
footer {
  position: sticky;
  top: 100vh;
	font-size: 13px;
	background: #f6f6f6;
	padding: 20px 20px 130px;
}
footer .bold {
  font-weight: bold;
}
.reserve-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
	text-align: center;
}
.search-widget-search-container-bf1818 .search-widget-input-wrapper-eaf5bf {
	text-align: left;
}
.sp-nav-wrap {
	display: none;
}
@media (max-width: 1000px) {
	footer {
		padding-bottom: 360px;
	}
}
@media (max-width: 800px) {
	footer {
		padding-bottom: 100px;
	}
	.reserve-wrap {
		display: none;
	}
  .sp-nav-wrap {
		display: block;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
  .sp-nav-wrap li {
		flex: 1;
  }
  .sp-nav-wrap .sp-nav-box {
    display: flex;
  }
  .sp-nav-wrap .sp-nav-box li.reserve {
    background: #382f2c;
  }
  .sp-nav-wrap .sp-nav-box li.signup {
    background: #ca2621;
  }
  .sp-nav-wrap .sp-nav-box li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
		gap: 5px;
		height: 70px;
    font-size: 18px;
		font-weight: 500;
		color: #fff;
  }
  .sp-nav-wrap .sp-nav-box li a::before {
		font-family: "Material Symbols Outlined";
		font-size: 1.8em;
		font-weight: 200;
		color: #fff;
	}
  .sp-nav-wrap .sp-nav-box li.reserve a::before {
		content: "\ebcc";
  }
  .sp-nav-wrap .sp-nav-box li.signup a::before {
		content: "\e7fe";
		}
}
@media (max-width: 500px) {
  .sp-nav-wrap .sp-nav-box li {
    font-size: 16px;
  }
}
.lo-flx-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
	max-width: 900px;
	margin: 0 auto;
}
.wh-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.wh-logo img {
  width: 50px;
}
.cont-business {
  width: 100%;
  display: flex;
	justify-content: space-between;
}
.cont-business ul li {
  margin-bottom: 5px;
	line-height: 1.6;
}
.cont-business .sup {
  font-size: 0.9em;
}
.copyright{
	font-size: 12px;
  text-align: center;
  margin: 15px auto 0;
}
@media (max-width: 800px) {
	.lo-flx-wrap {
		justify-content: center;
		font-size: 15px;
		gap: 10px;
	}
	.cont-business {
		flex-direction: column;
		gap: 10px;
	}
	.cont-business ul {
    margin-right: 0;
	}
	.cont-business ul {
		margin-top: 0;
	}
	.cont-business .group-wrap {
		padding: 0 10px;
	}
	.cont-business .wh-wrap {
		text-align: center;
		padding-bottom: 10px;
		margin-bottom: 10px;
		border-bottom: 1px solid #ddd;
	}
	.cont-business .wh-logo {
		flex-direction: column;
	}
}

/* pagetop
---------------------------------------- */
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
	border-radius: 50%;
	background: rgb(0 0 0 / 0.6);
  z-index: 99999;
	cursor: pointer;
}
#page-top::after {
	font-family: "Material Symbols Outlined";
	content: "\e316";
	font-size: 45px;
	line-height: 1;
	color: #fff;
}
@media (max-width: 800px) {
	#page-top {
		bottom: 100px;
	}
}