@charset "UTF-8";

body.overlay-active::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9000;
}

body.overlay-active {
	overflow: hidden;
}

/* ----------------------------------------------------
 header
---------------------------------------------------- */
header {
	position: relative;
	overflow: hidden;
}

header .slider01 {
	width: 100%;
}

header .logo {
	width: 20%;
	position: absolute;
	top: 0;
	right: 50px;
	opacity: 0;
	transform: translateY(-30px);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

header .logo.animate {
	opacity: 1;
	transform: translateY(0);
}

header .scroll-text {
	width: 100%;
	overflow: hidden;
	position: absolute;
	bottom: -5px;
	height: 100px;
}

header .scroll-inner {
	display: flex;
	width: max-content;
	animation: scrollLoop 20s linear infinite;
}

header .scroll-inner img {
	display: block;
	height: 100px;
	width: auto;
	margin-right: 70px;
}

@keyframes scrollLoop {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

header .logo02 {
	width: 313px;
	margin: 0 auto;
}


@media screen and (max-width: 768px) {
	header {
		overflow: hidden;
	}
	header .logo {
		width: 42.7%;
		right: 3px;
	}
	header .scroll-inner img {
		height: 60px;
	}
	header .scroll-text {
		height: 60px;
	}
	header .logo02 {
		width: 47%;
		margin: 5px auto;
	}
	header .area_slide {
		position: relative;
	}
}

/* ----------------------------------------------------
 section
---------------------------------------------------- */
/* 共通設定 */
.global-nav {
	background: #934241;
	margin-bottom: 80px;
	padding: 29px 0;
	border-bottom: 3px solid #D3AE9C;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.global-nav .menu {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.global-nav .menu li {
	margin: 0 60px;
}

.global-nav .menu li a {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	position: relative;
}

.global-nav .menu li a::after {
	content: '';
	background: url(../img/arrow_menu.svg) no-repeat;
	background-size: 100%;
	width: 15px;
	height: 9px;
	position: absolute;
	top: 50%;
	right: -40px;
	transform: translate(-50%, -50%);
}

/* ハンバーガーボタン */
.hamburger {
	display: none;
	position: absolute;
	top: 16px;
	left: 15px;
	width: 56px;
	height: 56px;
	flex-direction: column;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1100;
}

@media screen and (max-width: 940px) {
	.global-nav .menu li {
		margin: 0 30px;
	}
}

/* SP表示時の調整 */
@media screen and (max-width: 768px) {
	.global-nav {
		background: none;
		padding: 0;
		border: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
		margin-bottom: 0;
	}	
	.global-nav .menu {
		position: fixed;
		background-color: #8D1C25;
		top: 0;
		left: 0;
		width: 90%;
		height: 100vh;
		padding: 10px 0;
		border-right: 1px solid #D3AE9C;
		padding: 100px 20px;
		transform: translateX(-100%);
		transition: transform 0.4s ease;
	}
	.global-nav .menu.active {
		display: block;
	}
	.hamburger {
		display: flex;
		top: 10px;
	}
	.global-nav .menu.active {
		transform: translateX(0);
	}
	.global-nav .menu li a::after {
		content: '';
		background: none;
	}
	.global-nav .menu li a {
		display: block;
		font-size: 16px;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.50);
	}
}

.movie {
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 100px;
}

.movie iframe {
	width: 100%;
	height: 450px;
}

@media screen and (max-width: 768px) {
	.movie {
		margin: 0 10px;
		margin-bottom: 80px;
	}
	.movie iframe {
		height: 230px;
	}	
}

/* ----------------------------------------------------
 contents01
---------------------------------------------------- */
.contents01 {
	text-align: center;
	margin: 110px auto 82px;
}

.contents01 h3 {
	color: #8D1C25;
	font-family: 'Times New Roman', Times, serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.contents01 h1 {
	width: 53.3%;
	margin: 5px auto 15px;
}

.contents01 h2 {
	color: #8D1C25;
	font-family: "Noto Serif JP", serif;
	font-size: 40px;
	font-weight: 600;
	font-style: normal;
}

.contents01 .text {
	color: #4E3F38;
	font-size: 17px;
	font-weight: 500;
	line-height: 40px;
	margin: 60px auto 90px;
}

.contents01 .text p:nth-of-type(1) {
	margin-bottom: 2em;
} 

.contents01 .comingsoon p:nth-of-type(1),
.contents01 .comingsoon p:nth-of-type(2) {
	color: #8D1C25;
	margin-bottom: 0;
}

.contents01 .comingsoon p:nth-of-type(1) {
	font-family: 'Times New Roman', Times, serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 10px;
}

.contents01 .comingsoon p:nth-of-type(2) {
	font-family: "Noto Serif JP", serif;
	font-size: 29px;
	font-style: normal;
	font-weight: 600;
}

@media screen and (max-width: 768px) {
	.contents01 {
		margin: 55px auto 65px;
	}	
	.contents01 h3 {
		font-size: 18px;
	}
	.contents01 h1 {
		width: 94%;
		margin: 12px auto 13px;
	}
	.contents01 h2 {
		font-size: 20px;
	}
	.contents01 .text {
		font-size: 16px;
		margin: 47px 15px 40px;
		text-align: left;
	}
	.contents01 .comingsoon p:nth-of-type(1) {
		font-size: 28px;
	}
	.contents01 .comingsoon p:nth-of-type(2) {
		font-size: 23px;
	}
}


/* ----------------------------------------------------
 contents02
---------------------------------------------------- */
.contents02 {
	background: #711F25;
	padding: 13px 0;
}

.contents02 .area_cher {
	background: #934241;
	border-top: 5px solid #D3AE9C;
	border-bottom: 5px solid #D3AE9C;
	padding: 99px 0 102px;
}

.contents02 .area_cher .box {
	max-width: 910px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.contents02 .area_cher .box .img {
	width: 44%;
	display: flex;
}

.contents02 .area_cher .box .img h2 {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	color: #F9F3EB;
	font-family: 'Times New Roman', Times, serif;
	font-size: 43px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: right;
}

.contents02 .area_cher .box .text {
	width: 56%;
	color: #F9F3EB;
	margin-top: 10px;
	margin-left: 46px;
	position: relative;
}

.contents02 .area_cher .box .text h3 {
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 10px;
}

.contents02 .area_cher .box .text h3 span {
	font-size: 14px;
	padding-left: 20px;
}

.contents02 .area_cher .box .text h2 {
	font-size: 36px;
	font-weight: 500;
}

.contents02 .area_cher .box .text h2 span {
	font-size: 23px;
	padding-left: 20px;
}

.contents02 .area_cher .box .text p {
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 29px;
	padding-top: 24px;
}

.contents02 .area_cher .box .text .item {
	width: 42%;
	position: absolute;
	bottom: -60px;
	right: 0;
}

@media screen and (max-width: 888px) {
	.contents02 .area_cher .box .text .item {
		bottom: -90px;
	}
}

@media screen and (max-width: 768px) {
	.contents02 .area_cher {
		padding: 38px 0 302px;
	}
	.contents02 .area_cher .box {
		display: block;
	}
	.contents02 .area_cher .box .img {
		width: 85%;
		margin: 0 auto 40px;
	}	
	.contents02 .area_cher .box .text {
		width: 100%;
		margin-top: 0;
		margin-left: 0;
		padding: 0 15px;
	}	
	.contents02 .area_cher .box .text h2 {
		font-size: 34px;
	}
	.contents02 .area_cher .box .text h2 span {
		font-size: 19px;
	}
	.contents02 .area_cher .box .text .item {
		width: 49.6%;
		bottom: -240px;
	}
	.contents02 .area_cher .box .text h3 span {
		display: block;
		padding-left: 0;
	}	
}

@media screen and (max-width: 430px) {
	.contents02 .area_cher {
		padding: 38px 0 172px;
	}
	.contents02 .area_cher .box .text .item {
		bottom: -140px;
	}

}

@media screen and (max-width: 375px) {
	.contents02 .area_cher {
		padding: 38px 0 152px;
	}
	.contents02 .area_cher .box .text .item {
		bottom: -120px;
	}
	.is-ios .contents02 .area_cher .box .img h2 {
		letter-spacing: 0;
	}
}


/* ----------------------------------------------------
 course-menu
---------------------------------------------------- */
.course-menu {
	background: #F1E8DB;
	padding-top: 120px;
	padding-bottom: 110px;
}

.course-menu h2 {
	color: #8D1C25;
	font-family: "Noto Serif JP", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	text-align: center;
}

.course-menu .box {
	max-width: 998px;
	margin: 0 auto;
}

.course-menu .box:nth-of-type(1) {
	border-bottom: thick double #934241;
	padding-bottom: 100px;
}

.course-menu .box:nth-of-type(2) {
	padding-top: 100px;
}

.course-menu .box h3 {
	color: #8D1C25;
	font-family: "Noto Serif JP", serif;
	font-size: 46px;
	font-style: normal;
	font-weight: 600;
	text-align: center;
}

.course-menu .box .slider03 {
	max-width: 826px;
	margin: 0 auto;
	padding-top: 70px;
}

.course-menu .box .slider03 .slick-next {
	background: url(../img/arrow_slide02.png) no-repeat;
	background-size: 100%;
	width: 27px;
	height: 27px;
	top: auto;
	bottom: -10%;
	right: 0;
}

.course-menu .box .slider03 .slick-prev {
	background: url(../img/arrow_slide01.png) no-repeat;
	background-size: 100%;
	width: 27px;
	height: 27px;
	top: auto;
	bottom: -10%;
	left: 0;
}
.course-menu .box .slider03 .slick-next:before,
.course-menu .box .slider03 .slick-prev:before {
	content: '';
}

.course-menu .box .slider03 .slick-next:hover,
.course-menu .box .slider03 .slick-prev:hover {
	opacity: 0.8;
}

.course-menu .box .text {
	margin-top: 60px;
	text-align: center;
}

.course-menu .box .text h4 {
	color: #8D1C25;
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
}

.course-menu .box .text .txt {
	margin-top: 20px;
}

.course-menu .box .text .txt p {
	color: #4E3F38;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: 40px;
	margin-bottom: 0;
}

.course-menu .box .course-btn {
	text-align: center;
}

.course-menu .box .course-btn button {
	background: #8D1C25;
	border-radius: 5px;
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	width: 230px;
	height: 50px;
	border: none;
	margin-top: 50px;
	position: relative;
	cursor: pointer;
}
.course-menu .box .course-btn button::after {
	content: '＋';
	color: #FFF;
	font-size: 20px;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.course-menu .box .course-btn button:hover {
	opacity: 0.8;
}

.course-menu .box .text .amount {
	color: #000;
	margin-top: 30px;
	font-size: 22px;
}

@media screen and (max-width: 768px) {
	.course-menu {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.course-menu h2 {
		font-size: 20px;
	}
	.course-menu .box {
		margin: 0 15px;
	}
	.course-menu .box:nth-of-type(1) {
		padding-bottom: 70px;
	}
	.course-menu .box:nth-of-type(2) {
		padding-top: 70px;
	}
	.course-menu .box h3 {
		font-size: 28px;
	}
	.course-menu .box .slider03 {
		padding-top: 25px;
	}
	.course-menu .box .slider03 .slick-next,
	.course-menu .box .slider03 .slick-prev {
		bottom: -24%;
	}
	.course-menu .box .text h4 {
		font-size: 24px;
	}
	.course-menu .box .text .txt p {
		font-size: 14px;
		line-height: 25px;
		padding-bottom: 15px;
	}
	.course-menu .box .text .amount {
		font-size: 19px;
	}
}


/* ----------------------------------------------------
 arakaruto-menu
---------------------------------------------------- */
.arakaruto-menu {
	padding-top: 100px;
	padding-bottom: 110px;
}

.arakaruto-menu h2 {
	color: #8D1C25;
	font-family: "Noto Serif JP", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	text-align: center;
}

.arakaruto-menu .border {
	max-width: 998px;
	margin: 70px auto 130px;
	border-bottom: thick double #934241;
}

.arakaruto-menu .box {
	margin-top: 70px;
}

.arakaruto-menu .contents h3 {
	color: #8D1C25;
	font-family: "Noto Serif JP", serif;
	font-size: 46px;
	font-style: normal;
	font-weight: 600;
	text-align: center;
}

.arakaruto-menu .box .main-slider .img img {
	width: 100%;
	display: block;
	border-radius: 800px 800px 0 0;
}

.arakaruto-menu .box .main-slider .slick-slide {
	margin: 0 20px;
}

.arakaruto-menu .box .main-slider .slick-dots {
	bottom: -50px;
}

.arakaruto-menu .box .main-slider .slick-dots li {
	width: 20px;
}

.arakaruto-menu .box .main-slider .slick-dots li button:before {
	font-family: 'slick';
	font-size: 10px;
	line-height: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '●';
	text-align: center;
	opacity: .25;
	color: #8D1C25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.arakaruto-menu .box .main-slider .slick-dots li.slick-active button:before {
	opacity: .75;
	color: #8D1C25;
}

.arakaruto-menu .box .main-slider .slick-next:before,
.arakaruto-menu .box .main-slider .slick-prev:before {
	content: '';
}

.arakaruto-menu .box .main-slider .slick-next {
	background: url(../img/arrow_slide02.png) no-repeat;
	background-size: 100%;
	width: 27px;
	height: 27px;
	top: auto;
	bottom: -10%;
	right: 31.5%;
}

.arakaruto-menu .box .main-slider .slick-prev {
	background: url(../img/arrow_slide01.png) no-repeat;
	background-size: 100%;
	width: 27px;
	height: 27px;
	top: auto;
	bottom: -10%;
	left: 31.5%;
}

.arakaruto-menu .box .main-slider .slick-next:hover,
.arakaruto-menu .box .main-slider .slick-prev:hover {
	opacity: 0.8;
}

.arakaruto-menu .box .text-slider {
	padding: 20px 0;
	text-align: center;
}

.arakaruto-menu .box .text-slider h4 {
	color: #8D1C25;
	font-family: "Noto Serif JP", serif;
	font-size: 34px;
	font-style: normal;
	font-weight: 600;
	padding-top: 32px;
}

.arakaruto-menu .box .text-slider p {
	color: #574239;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: 36px;
	padding-top: 30px;
}

.arakaruto-menu .box .text-slider p.amount {
	color: #000;
	font-size: 22px;
	padding-top: 30px;
}

.arakaruto-menu .box .text-slider button {
	background: #8D1C25;
	border-radius: 5px;
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	width: 230px;
	height: 50px;
	border: none;
	margin-top: 50px;
	position: relative;
	cursor: pointer;
}
.arakaruto-menu .box .text-slider button::after {
	content: '＋';
	color: #FFF;
	font-size: 20px;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.arakaruto-menu .box .text-slider button:hover {
	opacity: 0.8;
}


/* モーダルの背景 */
.modal {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	overflow: auto;
}

/* モーダル本体 */
.modal-content {
	background: #fff;
	margin: 30% auto;
	padding: 40px 71px;
	width: 100%;
	max-width: 787px;
	border-radius: 8px;
	position: relative;
	animation: fadeIn 0.3s ease;
}

/* 閉じるボタン */
.close {
	position: absolute;
	top: -60px;
	right: -5px;
	cursor: pointer;
	color: #fff;
	z-index: 10000;
}

#hotel-info h4 {
	color: #8D1C25;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
}

#hotel-info h4.mb20 {
	margin-bottom: 20px;
} 

#hotel-info h5 {
	display: flex;
	align-items: center;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	border-left: 11px solid #8D1C25;
	border-radius: 2px;
	padding-left: 15px;
	margin-bottom: 20px;
	height: 43px;
}

#hotel-info a {
	display: block;
	border: 1px solid #DADADA;
	padding: 22px 25px;
	margin-bottom: 10px;
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	position: relative;
}
#hotel-info a::after {
	content: '';
	background: url(../img/arrow_slide02.png) no-repeat;
	background-size: 100%;
	width: 27px;
	height: 27px;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

#hotel-info h5.mt20 {
	margin-top: 20px;
}

/* フェードインアニメーション */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-10px); }
	to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 768px) {
	.arakaruto-menu {
		padding-top: 70px;
		padding-bottom: 110px;
	}
	.arakaruto-menu h2 {
		font-size: 20px;
	}
	.arakaruto-menu .contents h3 {
		font-size: 28px;
		letter-spacing: 5.6px;
	}
	.arakaruto-menu .box {
		margin-top: 30px;
	}
	.arakaruto-menu .box .main-slider .slick-slide {
		margin: 0 12px;
	}
	.arakaruto-menu .box .main-slider .slick-dots li {
		width: 14px;
	}
	.arakaruto-menu .box .main-slider .slick-dots li button:before {
		font-size: 7px;
		width: 17px;
		height: 17px;
	}
	.arakaruto-menu .box .main-slider .slick-next {
		bottom: -19%;
		right: 16.5%;
	}
	.arakaruto-menu .box .main-slider .slick-prev {
		bottom: -19%;
		left: 16.5%;
	}
	.arakaruto-menu .box .text-slider h4 {
		font-size: 22px;
		margin: 0 15px;
	}
	.arakaruto-menu .box .text-slider p {
		font-size: 14px;
		text-align: left;
		margin: 0 15px;
	}
	.arakaruto-menu .border {
		margin: 30px 15px 100px;
	}
	#hotel-info h4 {
		font-size: 28px;
	}
	.modal-content {
		padding: 40px 15px;
		width: 95%;
	}
	#hotel-info h5 {
		font-size: 18px;
		border-left: 7px solid #8D1C25;
		height: 32px;
	}
	#hotel-info a {
		padding: 18px 10px 18px 15px;
		font-size: 14px;
	}
	#hotel-info a::after {
		width: 22px;
		height: 22px;
		right: 0;
	}
	.arakaruto-menu .box .text-slider p.amount {
		text-align: center;
		font-size: 19px;
	}	
}

/* ----------------------------------------------------
 guests-message
---------------------------------------------------- */
.guests-message {
	padding-top: 100px;
	margin-top: -100px;
}
.guests-message .scroll-text {
	width: 100%;
	overflow: hidden;
	height: 100px;
	margin-bottom: -3px;
}

.guests-message .scroll-inner {
	display: flex;
	width: max-content;
	animation: scrollLoop2 20s linear infinite;
}

.guests-message .scroll-inner img {
	display: block;
	height: 100px;
	width: auto;
	margin-right: 70px;
}

@keyframes scrollLoop2 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.guests-message .contents {
	background: #934241;
	padding: 91px 0 140px;
}

.guests-message .contents h3 {
	color: #F9F3EB;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 46px;
	font-style: normal;
	font-weight: 600;
}

.guests-message .contents .box .slide-message:nth-of-type(1) {
	margin-top: 80px;
}

.guests-message .contents .box .slide-message:nth-of-type(2) {
	margin-top: 20px;
}


.guests-message .contents .box .slide-message .frame {
	background: url(../img/frame_test.png) no-repeat;
	background-size: 100%;
	/* margin: 0 10px; */
	/* padding: 80px 30px 0; */
	margin: 0 5px;
	padding: 80px 20px 0;
	position: relative;
	width: 100%;
	height: 410px;
}

@media screen and (min-width: 1815px) {
	.guests-message .contents .box .slide-message .frame {
		height: 23.5vw;
		padding: 4.5vw 30px 0;
	}
}

@media screen and (max-width: 1000px) {
	.guests-message .contents .box .slide-message .frame {
		height: 320px;
		padding: 64px 20px 0;
	}
}

@media screen and (max-width: 840px) {
	.guests-message .contents .box .slide-message .frame {
		height: 270px;
		padding: 53px 20px 0;
	}
}

@media screen and (max-width: 824px) {
	.guests-message .contents .box .slide-message .frame {
		padding: 44px 20px 0;
	}
}

.guests-message .contents .box .slide-message .frame p {
	color: #4E3F38;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
}

@media screen and (max-width: 1000px) {
	.guests-message .contents .box .slide-message .frame p {
		font-size: 14.5px;
	}
}

@media screen and (max-width: 960px) {
	.guests-message .contents .box .slide-message .frame p {
		font-size: 14px;
	}
}

@media screen and (max-width: 940px) {
	.guests-message .contents .box .slide-message .frame p {
		font-size: 13px;
	}
}

@media screen and (max-width: 888px) {
	.guests-message .contents .box .slide-message .frame p {
		font-size: 12px;
	}
}

@media screen and (max-width: 800px) {
	.guests-message .contents .box .slide-message .frame p {
		font-size: 11px;
	}
}

.guests-message .contents .box .slide-message .slick-next {
	background: url(../img/arrow2_slide02.png) no-repeat;
	background-size: 100%;
	width: 49px;
	height: 49px;
	top: auto;
	top: -110px;
	right: 10%;
}

.guests-message .contents .box .slide-message .slick-prev {
	background: url(../img/arrow2_slide01.png) no-repeat;
	background-size: 100%;
	width: 49px;
	height: 49px;
	top: auto;
	top: -110px;
	left: 10%;
}
.guests-message .contents .box .slide-message .slick-next:before,
.guests-message .contents .box .slide-message .slick-prev:before {
	content: '';
}

.guests-message .contents .box .slide-message .slick-next:hover,
.guests-message .contents .box .slide-message .slick-prev:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	.guests-message {
		padding-top: 50px;
		margin-top: -50px;
	}
	.guests-message .contents {
		padding: 91px 0 60px;
	}
	.guests-message .contents h3 {
		font-size: 28px;
	}	
	.guests-message .scroll-text {
		height: 60px;
	}
	.guests-message .scroll-inner img {
		height: 60px;
	}
	.guests-message .contents .box .slide-message:nth-of-type(1) {
		margin-top: 40px;
	}
	.guests-message .contents .box .slide-message:nth-of-type(2) {
		margin-top: 0;
	}
	.guests-message .contents .box .slide-message .slick-next {
		width: 30px;
		height: 30px;
		top: auto;
		top: -61px;
		right: 5%;
	}
	.guests-message .contents .box .slide-message .slick-prev {
		width: 30px;
		height: 30px;
		top: auto;
		top: -61px;
		left: 5%;
	}
	.guests-message .contents .box .slide-message .frame {
		padding: 80px 20px 0;
		width: 100%;
		height: 410px;
	}	
	.guests-message .contents .box .slide-message .frame p {
		font-size: 14px;
	}	
}


/* ----------------------------------------------------
 provided-hotel
---------------------------------------------------- */
.provided-hotel {
	padding: 120px 0 160px;
}

.provided-hotel h2 {
	color: #8D1C25;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 46px;
	font-style: normal;
	font-weight: 500;
}

.provided-hotel .tab-area {
	max-width: 1000px;
	margin: 70px auto 0;
}

.provided-hotel .tab-nav {
	display: flex;
	gap: 0px;
	list-style: none;
	padding: 0;
	margin: 0;
	border-bottom: 2px solid #954844;
	cursor: pointer;
}

.provided-hotel .tab-nav li {
	width: 241px;
	height: 75px;
	padding: 12px 30px;
	border: 2px solid #954844;
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	background: #fdf7ef;
	color: #954844;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	font-weight: 500;
}
.provided-hotel .tab-nav li:hover {
	opacity: 0.8;
}


.provided-hotel .tab-nav li.active {
	background: #954844;
	color: #fff;
	border-bottom: 2px solid #fdf7ef;
}

.provided-hotel .tab-nav li:nth-of-type(2),
.provided-hotel .tab-nav li:nth-of-type(3),
.provided-hotel .tab-nav li:nth-of-type(4) {
	margin-left: 12px;
}


.provided-hotel .tab-contents .tab-panel {
	display: none;
}

.provided-hotel .tab-contents .tab-panel.active {
	display: block;
}

.provided-hotel .grid {
	display: flex;
	gap: 60px 30px;
	flex-wrap: wrap;
	margin-top: 50px;
}

.provided-hotel .grid .item {
	width: calc(33.333% - 20.33px);
	box-sizing: border-box;
	text-align: left;
}

.provided-hotel .grid .item .img-wrap {
	overflow: hidden;
}

.provided-hotel .grid .item .img-wrap img {
	max-width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.provided-hotel .grid .item:hover img {
	transform: scale(1.1);
}

.provided-hotel .grid .item p {
	display: block;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
	padding: 10px 0 0 6px;
	position: relative;
}
.provided-hotel .grid .item p::after {
	content: '';
	background: url(../img/arrow_slide02.png) no-repeat;
	background-size: 100%;
	width: 27px;
	height: 27px;
	position: absolute;
	top: 63%;
	right: -10px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.provided-hotel {
		padding: 100px 0 20px;
	}
	.provided-hotel h2 {
		font-size: 28px;
	}
	.provided-hotel .tab-area {
		max-width: 1000px;
		margin: 70px 15px 0;
	}
	.provided-hotel .tab-nav {
		flex-wrap: wrap;
		border-bottom: thick double #954844;
		padding-bottom: 15px;
	}
	.provided-hotel .tab-nav li {
		width: 48%;
		height: 55px;
		padding: 12px 5px;
		font-size: 17.467px;
		border-radius: 10px;
		margin-bottom: 10px;
		border: 1px solid #954844;
	}
	.provided-hotel .tab-nav li.active {
		border-bottom: none;
	}
	.provided-hotel .tab-nav li:nth-of-type(3) {
		margin-left: 0;
	}
	.provided-hotel .grid {
		display: block;
		gap: 60px 30px;
		flex-wrap: wrap;
		margin-top: 50px;
	}
	.provided-hotel .grid .item {
		width: 100%;
		margin-bottom: 35px;
	}
	.provided-hotel .grid .item p {
		font-size: 15px;
	}	
}


/* ----------------------------------------------------
 footer
---------------------------------------------------- */
footer {
	margin-top: 80px;
	padding-top: 90px;
	padding-bottom: 28px;
	background: #F1E8DB;
}

footer .sns {
	max-width: 826px;
	margin: 0 auto;
	border: 2px solid #934241;
	background: #fff;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	padding: 32px 0;
}

footer .sns .text {
	color: #934241;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 40px;
}

footer .sns .area_icon {
	display: flex;
	justify-content: center;
}

footer .sns .area_icon a {
	padding: 0 18px;
}

footer .area_note {
	max-width: 1000px;
	margin: 0 auto;
	padding: 56px 0;
}

footer .area_note ul.note li {
	color: #4E3F38;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.8;
}

footer .area_note ul.note.typeA li {
	text-align: center; /* ティザー用 */
}

footer .area_note ul.note li::before {
	content: '※';
}

footer .link a {
	display: block;
	text-align: center;
	color: #4E3F38;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
}

footer .link a::before,
footer .link a::after {
	content: '｜';
	padding: 0 10px;
}

footer .copy {
	color: #4E3F38;
	text-align: center;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
	footer {
		margin-top: 80px;
		padding: 0 15px;
		padding-top: 50px;
		padding-bottom: 28px;
	}
	footer .sns {
		display: block;
		padding: 16px 14px 31px;
	}
	footer .sns .text {
		font-size: 17.234px;
		line-height: 30.723px;
		text-align: center;
		padding-bottom: 20px;
	}
	footer .link a {
		font-size: 12px;
	}
	
}