html { font-size: 62.5%; }

body {
	position: relative;
	margin: 0;
	background: #ffffff;
	color: #333333;
	font-size: 1.8rem;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	line-height: 2;
	overflow-x: hidden;
}

/* common
 ----------------------------------------------- */
a {
	color: #001aac;
	text-decoration: none;
	-webkit-transition: all .3s;
	transition: all .3s;
}

a:hover {
	opacity: 0.8;
}

p { margin:0; }
.serif { font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }
.pc { display: block; }
.sd { display: none; }

h2 {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto 30px auto;
	color: #255b35;
	font-family: 'EB Garamond', serif;
	font-size: 4.8rem;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
}

h2 span {
	display: block;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.2rem;
}

.move01 {
	animation: fade 7.0s;
	animation-fill-mode: forwards;
	opacity: 1;
}

.move02 {
	animation: bottom-to-top 2s;
	animation-fill-mode: forwards;
	opacity: 1;
}

.move03 {
	animation: top-to-bottom 3s;
	animation-fill-mode: forwards;
	opacity: 1;
}

/* fade */
@keyframes fade {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* 下から上 */
@keyframes bottom-to-top {
	0% {
		opacity: 0;
		transform: translateY(50px);/* Y軸方向に50px */
	}
	100% {
		opacity: 1;
		transform: translateY(0);/* Y軸方向に0px */
	}
}

@keyframes top-to-bottom {
	0% {
		opacity: 0;
		transform: translateY(-60px);/* Y軸方向に-60px */
	}
	60% {
		opacity: 0;
		transform: translateY(-60px);/* Y軸方向に-60px */
	}
	100% {
		opacity: 1;
		transform: translateY(0);/* Y軸方向に0px */
	}
}

.background {
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	position: fixed;
	background-position: center center;
	opacity: 0;
	background-size: cover;
	transition: all 0.5s;
}

.show .background {
	opacity: 1;
}

#content01_bg { background-image: url(https://www.img-ikyu.com/contents/dg/special/2020/00002000/image/bg01.jpg?auto=compress,format&lossless=0&q=75); }
#content02_bg { background-image: url(https://www.img-ikyu.com/contents/dg/special/2020/00002000/image/bg02.jpg?auto=compress,format&lossless=0&q=75); }
#content03_bg { background-image: url(https://www.img-ikyu.com/contents/dg/special/2020/00002000/image/bg03.jpg?auto=compress,format&lossless=0&q=75); }

/* header
 ----------------------------------------------- */

header {
	position: relative;
	width: 100%;
	height: 100vh;
}

header nav {
	display: flex;
	align-items: center;
	justify-content: start;
	position: relative;
	width: calc(100% - 100px);
	height: 100px;
	margin: 0 auto;
	z-index: 9999;
}

header nav ul {
	display: flex;
	margin: 20px 0 0 40px;
	font-family: 'EB Garamond', serif;
	font-weight: 500;
}

header nav ul li {
	display: inline-block;
	position: relative;
	margin: 0 30px 0 0;
	list-style: none;
	overflow-x: hidden;
}

header nav ul li a {
	display: inline-block;
	position: relative;
	padding-left: 15px;
	color: #333333;
}

header nav ul li a:hover {
	opacity: 1;
}

header nav ul li a::before {
	position: absolute;
	top: calc(50% - 4px);
	left: -30px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	content: "";
	transform: rotate(45deg);
	-webkit-transition: all .5s;
	transition: all .5s;
}

header nav ul li a:hover::before {
	left: 0;
}

header nav h1 {
	width: 404px;
	height: 64px;
	margin: 0;
}

header .logo-ikyu {
	position: absolute;
	top: 33px;
	right: 5px;
	width: 120px;
	z-index: 1;
}

header .logo-ikyu img {
	display: block;
}

header .txt {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: calc(100% - 100px);
	height: 100px;
	margin: auto;
	color: #ffffff;
	line-height: 1.5;
	text-align: center;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	z-index: 9;
}

header .txt .catch {
	margin: 0;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 3.6rem;
	font-weight: bold;
	letter-spacing: 0.05em;
}

header .ss-slider {
	position: relative;
	width: calc(100% - 100px);
	height: calc(100vh - 150px);
	border-radius: 8px;
	z-index: 1;
}

header .ss-slider::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	content: "";
	z-index: 9;
}

header .ss-slider .swiper-slide {
	position: relative;
}

header .ss-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover;'
}

header .fade {
	opacity: 0;
}

@media (max-width: 1300px) { /*1300px以下*/
	header nav ul {
		display: none;
	}
}

/* about
 ----------------------------------------------- */

#about {
	display: flex;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0;
	z-index: 99;
}

#about .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1400px;
	margin: 0 auto;
	z-index: 1;
}

#about .inner.bottom-to-top {
	opacity: 0;
}

#about .inner h2 {
	position: relative;
	z-index: 1;
}

#about .inner > .img,
#about .inner .hotel {
	width: calc((100% / 2) - 25px);
}

#about .inner > .img {
	border-radius: 8px;
	overflow: hidden;
}

#about .inner > .img img {
	display: block;
}

#about .inner .hotel {
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
	justify-content: flex-start;
}

#about .inner .hotel h3 {
	width: 100%;
	margin: 20px 0 0;
	font-size: 2.4rem;
	line-height: 1.3;
	text-align: center;
}

#about .inner .hotel h3 img {
	display: block;
	margin: 0 auto 20px;
}

#about .inner .hotel .location {
	width: 100%;
	margin: 0 0 20px;
	font-size: bold;
	text-align: center;
}

#about .inner .hotel .introduction {
	width: 100%;
	margin: 0 20px 30px;
}

#about .inner .hotel .img {
	border-radius: 8px;
	overflow: hidden;
}

#about .inner .hotel .img img {
	display: block;
}

/* topics
 ----------------------------------------------- */

#topics {
	position: relative;
	width: 100%;
	margin: 0 auto 100px auto;
	z-index: 99;
}

#topics .inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

#topics .topics {
	width: calc((100% / 2) - 25px);
}

#topics .topics.bottom-to-top {
	opacity: 0;
}

#topics .topics .img {
	margin: 0 auto 30px;
	border-radius: 8px;
	overflow: hidden;
}

#topics .topics .img img {
	display: block;
}

#topics .topics .txt {
	margin: 0 20px;
}

#topics .topics .txt h3 {
	display: block;
	margin: 0 auto 10px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

#topics .topics .txt p {
}

/* plan
 ----------------------------------------------- */

#plan {
	position: relative;
	width: 100%;
	margin: 0 auto 100px auto;
	z-index: 99;
}

#plan .plan {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 50px;
	padding: 0 50px;
}

#plan .plan:nth-of-type(2) {
	flex-direction: row-reverse;
}

#plan .plan.bottom-to-top {
	opacity: 0;
}

#plan .plan > div {
	width: calc((100% / 2) - 25px);

}

#plan .plan .plan-slider {
	margin: 0;
	border-radius: 8px;
}

#plan .plan .plan-slider .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover;';
}

#plan .plan .plan-slider .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.5;
}

#plan .plan .plan-slider .swiper-pagination-bullet-active {
	opacity: 1;
}

#plan .plan .txt {
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	/*padding: 0 50px 0 0;*/
}

#plan .plan:nth-of-type(2) .txt {
	/*padding: 0 0 0 50px;*/
}

#plan .plan .txt h3 {
	width: 100%;
	margin: 0 0 30px;
	font-size: 2.4rem;
	font-weight: normal;
	text-align: center;
}

#plan .plan .txt h3 span {
	display: inline-block;
	position: relative;
	margin: 0 0 30px;
	border-bottom: 1px solid #3b6f4a;
	color: #255b35;
	font-family: 'Allura', cursive;
	font-size: 2.8rem;
	line-height: 1.5;
}

/* 料金BOX */
.btn {
	width: 80%;
	margin: 0 auto 20px;
	letter-spacing: 0;
	line-height: 1.5;
}

.btn a {
	display: flex;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	height: 80px;
	background: #255b35;
	border-radius: 8px;
	color: #ffffff;
	font-size: 1.6rem;
	text-align: center;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.btn a:hover {
	opacity: 0.8;
}

.btn b {
	font-size: 2.0rem;
}

.off {
	display: block;
	width: 100%;
	font-size: 2.0rem !important;
}

.off strong {
	font-size: 1.2rem !important;
	display: block;
}

.shousai {
	font-size: 1.6rem !important;
	display: block;
}

.shousai .ll {
	display: none !important;
}

.shousai .s {
	font-size: 1.2rem !important;
}

.after_point_rate {
	font-size: 2.0rem !important;
}

/* photo gallery
	----------------------------------------------- */

#pg {
	position: relative;
	width: 100%;
	margin: 0 auto 100px;
}

#pg .pg-slider {
	width: calc(100% - 100px);
	max-width: 1400px;
}

#pg .pg-slider.bottom-to-top {
	opacity: 0;
}

#pg .pg-slider .swiper-slide {
	cursor: move;
	border-radius: 8px;
	overflow: hidden;
}

#pg .pg-slider .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover;';
}

#pg .pg-slider .swiper-button-next {
}

#pg .pg-slider .swiper-button-prev {
}

#pg .pg-swiper-pagination .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.4;
}

#pg .pg-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

/* access
 ----------------------------------------------- */

#access {
	position: relative;
	width: 100%;
	padding: 100px 0 100px;
	background: #255b35;
	background-blend-mode: multiply;
}

#access h2 {
	color: #ffffff;
}

#access #gglmap {
	width: 100%;
	max-width: 1400px;
	height: 600px;
	margin: 0 auto;
	border-radius: 8px;
	letter-spacing: 0;
}

/* footer
 ----------------------------------------------- */

footer {
	position: relative;
	width: 100%;
	padding: 0 0 50px;
	background: #255b35;
	background-blend-mode: multiply;
	text-align: center;
}

footer .pr {
	margin: 0 auto 20px;
	color: #ffffff;
	font-size: 1.2rem;
}

footer .logo-ikyu {
	width: 100%;
}

footer .logo-ikyu a {
}

footer .logo-ikyu a:hover {
	opacity: 0.3;
}

footer .copyright {
	width: 100%;
	color: #ffffff;
	font-size: 1.2rem;
	letter-spacing: 0;
}

/* page top
 ----------------------------------------------- */

.pagetop {
	display: none;
}

.pagetop a {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	z-index: 9999;
}

.pagetop a::before {
	position: fixed;
	right: 30px;
	bottom: 10px;
	width: 30px;
	height: 30px;
	border-top: 3px solid #336f45;
	border-right: 3px solid #336f45;
	mix-blend-mode: multiply;
	content: "";
	transform: rotate(-45deg);
	z-index: 9999;
}

