@charset "UTF-8";

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--hiragino: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;

	/* color */
	--blk: 98, 95, 95;
	--wht: 255, 255, 255;
	--brw: 188, 130, 87;
	--lightBlue: 220, 241, 244;
	--mainColor: 193, 174, 137;
	--periodColor: 98, 95, 95;
	--textColor: 112, 112, 112;
}

/* reset add
----------------------------------- */
body,h1, h2, h3, h4, h5, h6 {
	font-size: 16px;
	font-weight: normal;
}

ul {
	list-style: none;
}

a:hover {
	opacity: 0.8;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
br.pc {
	display: inline-block;
}
br.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}	
	br.pc {
		display: none;
	}
	br.sp {
		display: inline-block;
	}
}

/*
	#reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
	word-wrap: break-word;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset, img {
	border: 0;
}

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

a {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}
a:hover {
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


/* common
----------------------------------- */
body {
	background: rgb(var(--wht));
	line-height: 1.5;
	color: #343131;
	font-family: var(--mincho);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {}

.w890 {
	max-width: 890px;
	margin: 0 auto;
}

.w950 {
	max-width: 950px;
	margin: 0 auto;
}

a.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background: #00B2C1;
	background: linear-gradient(180deg, rgba(0, 178, 193, 1) 0%, rgba(232, 248, 249, 1) 160%);
	color: #fff;
	width: 400px;
	height: 80px;
	font-size: 20px;
	font-weight: 500;
	position: relative;
}
a.btn::after {
	content: '';
	background: url(../img/arrow_btn.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 11px;
	height: 18px;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	a.btn {
		width: 270px;
		height: 60px;
		font-size: 15px;
	}
	a.btn::after {
		width: 8px;
		height: 12px;
		right: 10px;
	}
}

/* バーガーメニュー
---------------------------------------- */
.header {
	display: none;
}

@media screen and (max-width: 768px) {
	.header {
		height: 50px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		z-index: 300;
	}
	.logo {
		font-weight: 700;
		padding-left: 14px;
	}
	.hamburger-menu {
		width: 50px;
		height: 50px;
		position: relative;
		border: none;
		background: #79c4d1;
		appearance: none;
		padding: 0;
		cursor: pointer;
		position: fixed;
		top: 10px;
		right: 10px;
		z-index: 10000;
	}
	.hamburger-menu__bar {
		display: inline-block;
		width: 64%;
		height: 3px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: .5s;
	}
	.hamburger-menu__bar:first-child {
		top: 10px;
	}
	.hamburger-menu__bar:nth-child(2) {
		top: 18px;
	}
	.hamburger-menu__bar:nth-child(3) {
		top: 26px;
	}
	.hamburger-menu__label {
		position: absolute;
		bottom: 4px;
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		font-size: 11px;
		font-weight: bold;
		pointer-events: none;
	}
	.hamburger-menu--open .hamburger-menu__bar {
		top: 50%;
	}
	.hamburger-menu--open .hamburger-menu__bar:first-child {
		transform: translateX(-50%) translateY(-50%) rotate(45deg);
	}
	.hamburger-menu--open .hamburger-menu__bar:nth-child(3) {
		transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	}
	.hamburger-menu--open .hamburger-menu__bar:nth-child(2),
	.hamburger-menu--open .hamburger-menu__label {
		display: none;
	}
	.navigation {
		display: block;
		background: #79c4d1;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		transform: translateX(100%);
		transition: transform 0.5s ease;
		z-index: 9999;
	}
	.navigation.navigation--open {
		transform: translateX(0);
	}
	.navigation::before {
		content: '';
		background: url(../img/menu_Limg_sp.webp) no-repeat;
		background-size: 100%;
		width: 70%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	.navigation__list {
		text-align: center;
		list-style: none;
		padding: 70px 0 0;
		margin: 0 20px;
		position: relative;
		z-index: 1000;
	}
	.navigation__list-item {
		border-bottom: solid 1px #fff;
	}
	.navigation__list-item:last-child {
		border-bottom: none;
	}
	.navigation__link {
		font-family: var(--gothic);
		color: #fff;
		font-size: 18px;
		font-weight: 700;
		text-decoration: none;
		display: block;
		padding: 14px 0;
		transition: .5s;
	}
}

/* スライド
---------------------------------------- */
.sliderArea {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 0 25px;
}
.sliderArea.w300 {
	max-width: 300px;
}
.slick-slide {
	margin: 0 5px;
}
.slick-slide img {
	width: 100%;
	height: auto;
}
.slick-prev, .slick-next {
	z-index: 1;
}
.slick-prev:before, .slick-next:before {
	color: #000;
}
.slick-slide {
	transition: all ease-in-out .3s;
}
.slick-active {
	opacity: 1;
}
.slick-current {
	opacity: 1;
}
.thumb {
	margin: 20px 0 0;
}
.thumb .slick-slide {
	cursor: pointer;
}
.thumb .slick-slide:hover {
	opacity: .7;
}

/* アコーディオン
---------------------------------------- */
.accordion_one {
	max-width: 1024px;
	margin: 0 auto;
}
.accordion_one .accordion_header {
	background-color: #db0f2f;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	padding: 20px 11%;
	text-align: center;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
}
.accordion_one:nth-of-type(2) .accordion_header {
	background-color: #ff9a05;
}
.accordion_one:nth-of-type(3) .accordion_header {
	background-color: #1c85d8;
}
.accordion_one .accordion_header:hover {
	opacity: .8;
}
.accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 5%;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}
.accordion_one .accordion_header .i_box .one_i {
	display: block;
	width: 18px;
	height: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}
.accordion_one .accordion_header.open .i_box {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.accordion_one .accordion_header .i_box .one_i:before, .accordion_one .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.accordion_one .accordion_header .i_box .one_i:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}
.accordion_one .accordion_header.open .i_box .one_i:before {
	content: none;
}
.accordion_one .accordion_header.open .i_box .one_i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.accordion_one .accordion_inner {
	display: none;
	padding: 30px 30px;
	border-left: 2px solid #db0f2f;
	border-right: 2px solid #db0f2f;
	border-bottom: 2px solid #db0f2f;
	box-sizing: border-box;
}
.accordion_one:nth-of-type(2) .accordion_inner {
	border-left: 2px solid #ff9a05;
	border-right: 2px solid #ff9a05;
	border-bottom: 2px solid #ff9a05;
}
.accordion_one:nth-of-type(3) .accordion_inner {
	border-left: 2px solid #1c85d8;
	border-right: 2px solid #1c85d8;
	border-bottom: 2px solid #1c85d8;
}
.accordion_one .accordion_inner .box_one {
	height: 300px;
}
.accordion_one .accordion_inner p.txt_a_ac {
	margin: 0;
}
@media screen and (max-width: 1024px) {
	.accordion_one .accordion_header {
		font-size: 18px;
	}
	.accordion_one .accordion_header .i_box {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}
@media screen and (max-width: 767px) {
	.accordion_one .accordion_header {
		font-size: 16px;
		text-align: left;
		padding: 15px 60px 15px 15px;
	}
}

/* opening-animation
---------------------------------------- */
#opening-animation {
	background: rgb(var(--blk));
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 1;
	position: relative;
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	z-index: 2000;
}

#main-content {
	opacity: 0;
	display: none;
	transition: opacity 2s ease-out;
}

#count-up {
	color: rgb(var(--wht));
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 80px;
	font-variant-numeric: tabular-nums;
	letter-spacing: normal;
}

#count-up span {
	width: 48px;
	text-align: center;
	display: inline-block;
}

#skip-button {
	background: #4D4D4D;
	padding: 10px;
	color: #fff;
	font-family: var(--mr-eaves);
	font-size: 1.15rem;
	border: none;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	#opening-animation {
		height: 100vh;
		height: 100dvh;
	}
}

/* 共通
---------------------------------------- */
.wrap-fx{
	display: flex;
	justify-content: center;
}


/* ----------------------------------------------------
	footer
---------------------------------------------------- */
footer {
	font-family: var(--gothic);
	background: #d6f3f5;
	padding-top: 94px;
	color: #3f3c3c;
}

footer .container {
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

footer .container ul.list {
	max-width: 1090px;
	margin: 0 auto;
	font-size: 14px;
	text-align: left;
}

footer .container ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

footer .container ul.note li::before {
	content: "※";
}

footer .container .line {
	max-width: 660px;
	margin: 50px auto;
	border-radius: 10px;
	padding: 20px;
	background-color: #fff;
}

footer .container .line h3{
	font-size: 19px;
	color: #00b900;
	font-weight: bold;
	text-align: center;
}

footer .container .line .wrap-flex{
	display: flex;
	border-top: 1px solid #754C24;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding: 20px 0;
}

footer .container .line .wrap-flex img{
	width: 20%;
	margin-right: 20px;
}

footer .container .line .wrap-flex p{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 1.2;
}

footer .container .line .wrap-flex p .small{
	font-size: 20px;
}

footer .container .line .wrap-flex p .underline{
	background: linear-gradient(transparent 30%, #FFE646 80%);
}

footer .container .line .wrap-flex p.note{
	font-size: 14px;
	color: #000;
	font-weight: 400;
	margin-bottom: 10px;
}

footer .container .line a.btn{
	background: #00b900;
	color: #fff;
	text-decoration: none;
	display: block;
	width: 320px;
	height: auto;
	margin: 0 auto;
	text-align: center;
	padding: 10px 0;
	font-size: 18px;
	position: relative;
}
footer .container .line a.btn::after{
	content: '→';
	position: absolute;
	width: 10px;
	height: 10px;
	right: 20px;
	display: inline;
	background: none;
	top: auto;
	transform: none;
	-webkit-transform: none;
	-ms-transform: none;
}
footer .container .line a.btn:hover{
	opacity: 0.9;
}

footer .container .reserve,
footer .container .address {
	max-width: 990px;
	margin: 0 auto;
	text-align: center;
}

footer .container .reserve {
	border-bottom: 1px solid #000;
	padding-bottom: 30px;
}

footer .container .address {
	padding-top: 30px;
}

footer .container .reserve h2 {
	font-size: 24px;
	font-weight: 400;
}

footer .container .reserve .title,
footer .container .reserve a.tel {
	color: #3f3c3c;
	font-family: "futura-pt", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 46.73px;
}

footer .container .address dt {
	font-size: 24px;
	font-weight: bold;
}

footer .container .address dd {
	font-size: 17px;
}

footer .container .address dd a.tel {
	pointer-events: none;
	color: #3e3939;
	text-decoration: none;
}

footer .container .address .guide {
	font-size: 15px;
	margin-bottom: 50px;
}

footer .container .sns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}

footer .container .sns li {
	margin: 0 1em;
}

footer .container .sns li a img {
	width: auto;
	height: 4vw;
}

footer .map {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	overflow: hidden;
}

footer .map iframe {
	width: 100%;
}

.footer__hotelNav {
	padding: 55px 0;
	line-height: 1;
	color: #333;
	display: flex;
	justify-content: center;
}
.footer__hotelNav::before {
	content: "｜";
}
.footer__hotelNav li::after {
	content: "｜";
}

.footer__hotelNav li {
	margin: 0;
	text-indent: 0;
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: #3f3c3c;
	text-decoration: none;
	display: inline-block;
}

.footer .copy {
	background: #fff;
	padding: 10px 0;
	font-size: 17px;
	text-align: center;
	color: #3f3c3c;
}

@media screen and (max-width: 768px) {
	footer {
		padding-top: 50px;
	}
	footer .container .line h3 {
		font-size: 17px;
		padding-bottom: 6px;
	}
	footer .container .line .wrap-flex {
		display: block;
		padding: 20px 35px;
		text-align: center;
	}
	footer .container .line .wrap-flex img {
		width: 60%;
		margin: 20px 0;
	}
	footer .container .line .wrap-flex p {
		text-align: left;
	}
	footer .container .line a.btn {
		width: 74vw;
	}
	footer .container .reserve h2 {
		font-size: 20px;
	}
	footer .container .reserve .title,
	footer .container .reserve a.tel {
		font-size: 35px;
	}
	footer .container .reserve .time {
		font-size: 15px;
	}
	footer .container .address dt {
		font-size: 21px;
	}
	footer .container .address dd {
		font-size: 15px;
	}
	footer .container .address .guide {
		font-size: 13px;
		margin-bottom: 20px;
	}
	footer .container .sns li {
		margin: 0 10px;
	}
	footer .container .sns li a img {
		width: 31px;
		height: 31px;
	}
	footer .map iframe {
		width: 100%;
		height: 260px;
	}
	.footer__hotelNav li a {
		padding: 0 2px;
		font-size: 10px;
	}
	.footer__hotelNav {
		padding: 35px 0;
	}
	.footer__hotelNav::before,
	.footer__hotelNav li::after {
		font-size: 14px;
		margin-top: 3px;
	}
	.footer .copy {
		font-size: 10px;
	}
	footer .container ul.list {
		font-size: 12px;
	}
}

@media screen and (max-width: 375px) {
	.footer__hotelNav {
		display: block;
		text-align: center;
		font-size: 12px;
	}
	.footer__hotelNav li:nth-of-type(1) {
		margin-bottom: 20px;
	}
	.footer__hotelNav li::before {
		content: "｜";
	}
	.footer__hotelNav::before {
		content: '';
	}
	.footer__hotelNav li a {
		font-size: 14px;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	background: rgba(var(--mainColor), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 0.5em;
	bottom: 0.5em;
	z-index: 10;
	transform: rotate(-180deg);
}

#pageTop a svg {
	width: 20px;
	height: auto;
}

/* ----------------------------------------------------
fadeIn
---------------------------------------------------- */
/*
透明度が変化
------------------------------ */
.fadeBlock {
opacity: 0;
transition: all 1.5s;
}

.fadeBlock.fadeIn {
opacity: 1;
}

.title_fadeIn {
animation-name: fadeInAnime;
animation-duration: 3s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeInAnime{
from {
	opacity: 0;
}

to {
	opacity: 1;
}
}


/*
下から
------------------------------ */
.fadeBottom {
transform: translateY(100px);
}

.fadeBottom.fadeIn {
transform: translateY(0);
}

/*
上から
------------------------------ */
.fadeTop {
transform: translateY(-100px);
}

.fadeTop.fadeIn {
transform: translateY(0);
}


/*
右から
------------------------------ */
.fadeRight {
transform: translateX(100px);
}

.fadeRight.fadeIn {
transform: translateX(0);
}

/*
左から
------------------------------ */
.fadeLeft {
transform: translateX(-100px);
}

.fadeLeft.fadeIn {
transform: translateX(0);
}

/* ----------------------------------------------------
object
---------------------------------------------------- */
.object {
animation: korokoro 2.5s linear 0s infinite;
}

@keyframes korokoro {
10% {
	-webkit-transform: rotate(-10deg);
}

20% {
	-webkit-transform: rotate(8deg);
}

30% {
	-webkit-transform: rotate(-5deg);
}

40% {
	-webkit-transform: rotate(4deg);
}

50% {
	-webkit-transform: rotate(-3deg);
}

60% {
	-webkit-transform: rotate(2deg);
}

70% {
	-webkit-transform: rotate(-1deg);
}

80% {
	-webkit-transform: rotate(1deg);
}

90% {
	-webkit-transform: rotate(-1deg);
}

100% {
	-webkit-transform: rotate(0deg);
}
}