@charset "UTF-8";


/*==========================================================================================

index

============================================================================================*/
/*=============================================

mainvisual

===============================================*/
.mainvisual {
	height: 70vh;
	position: relative;
	margin: 180px auto 0;
}
.mainvisual .inner {
	box-sizing: content-box;
	margin: 0 auto;
	bottom: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	z-index: 1;
}
.mainvisual .inner h2 {
	position: absolute; left: 5%; top: 50%; transform: translateY(-50%);
	color: #fff;
	font-size: 3.5em;
	font-weight: 700;
	text-align: left;
	line-height: 1.4;
	text-shadow: 0 0 10px rgba(0,0,0,.75);
	margin-bottom: 20px;
}

.mainvisual .inner p {
	color: #fff; background: rgba(0,0,0,.8);
	display: inline-block;
	margin: 0 auto; padding: .5em 1em;
	width: 50%;
	text-align: center;
}
.mainvisual .bg {
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.mainvisual .bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(90deg,#0003,#0000 70%);
}
.mainvisual .bg img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 1080px){
	.mainvisual {
		position: relative;
		margin: 80px auto 0;
	}
}

@media screen and (max-width: 640px){
	.mainvisual .inner h2 {
		font-size: 2em;
	}
}


/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
.js-fadeUp:nth-last-of-type(3n-1) {/* 2列目 */
    transition-delay: 0.2s;
}
.js-fadeUp:nth-last-of-type(3n-2) {/* 3列目 */
    transition-delay: 0.4s;
}


.visible{
position: relative;
overflow: hidden;
opacity: 0; transform: translateY(30px); }
.visible::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 101%;
	height: 100%;
	background: #000;
	background: rgba(255,255,255,0.7);
	transform-origin: right top;
	transition: 1s;
	z-index: 2;
}
.effect.visible::before {
    transform: scale(1, 0);
}
.effect {
  　animation-name: effect_anime;　/* アニメーション名 */
  　opacity: 1;　/* アニメーションが到達した状態 */
  　transition: 2.0s;　/* 0.5秒かけてアニメーションする */
  　transform: translateY(0px);　/* アニメーションが到達した状態 */
	transition-delay: 4.0s;
}
@keyframes effect_anime {
  0% {/* 初期値 */
    　opacity: 0;
    　　transform: translateY(30px);
  }
  100% {/* アニメーションが到達した状態 */
    　opacity: 1;
    　　transform: translateY(0px);
  }
}


/*=============================================

共通

===============================================*/
.index_head {
	color: #362417;
	line-height: 1.4;
	text-align: left;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	font-size: 2.4em;
	margin: 0 0 .5em;
}
.index_head .eng {
	display: block;
	font-size: .5em;
	font-weight: 600;
	line-height: 1.0;
}
.index__contents .index_head .eng_borderd {
	color: rgba(255,255,255,0);
	font-size: 4em;
	font-weight: 900;
	line-height: 1.0;
	-webkit-text-stroke: 1px #FFF;
	text-stroke: 1px #FFF;	
}

@media screen and (max-width: 640px){
	.index_head .eng_borderd {
		font-size: 2em;
	}
}

/*=============================================

index__intro

===============================================*/

.index__intro {
	padding: 50px 0 80px;
	margin: 0 !important;
	background-color: #FAF7F1;
	background-image: url("../images/bg_01.png");
	background-size: cover;
	background-attachment: fixed;
}

.index__intro > .inner { 
	width: 95%; max-width: 1060px;
	margin: 3em auto;
}

.index__intro > .inner h3 {
	text-align: center;
}
.index__intro > .inner h3 img {
	width: 130px; height: auto;
}
.index__intro > .inner p { 
	display: block; font-size: 1.5em; 
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;	
	margin: 1em auto;
}
.index__intro .wrap_faci {
	position: relative;
	margin: 5em 0 0;
}
.index__intro .wrap_faci::before {
	content: "";
	width: 95%;
	height: 100%;
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
	background: #FFF;	
}

.index__intro .wrap_faci .flex_s_b {
	margin-left: 5%;
	position: relative;
}

.index__intro .wrap_faci .inner {
	position: relative;
	border: solid 1px #ff0000;
}
.right{
	margin-right: calc(50% - 50vw) !important;
	border: solid 1px #000;
}
.index__intro .wrap_faci .txt_box {
	max-width: 530px;
	padding: 3em 3em;
}
a.btn_box {
	display: flex;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 50%;
	min-width: 240px;
	margin: 2em 0;
	padding: 1.5rem 4rem;
	font-weight: bold;
	border: 2px solid #467359;
	color: #467359;
	transition: 0.5s;
}
a.btn_box:hover {
	color: #fff;
	background: #467359;
}

.bnr_reserve {
	background-color: #EFE8DC;
	margin: 0 !important;
	padding: 3em 0;
}
.bnr_reserve a {
	transition: .3s;
}
.bnr_reserve a:hover {
	opacity: .6;
}



/*=============================================

index__sightseeing

===============================================*/
.index__sightseeing {
	margin-left: 5% !important;
}
.index__sightseeing .txt_box {
	max-width: 530px;
	padding: 3em 3em;
}


/*=========================
slick用
=========================*/
.slick-list {
  margin: 0 -15px;
}
.slick-slide {
  margin: 0 15px;
} 
.slick-prev
{
    left: -60px; top: 50%; transform: translateY(-55%);
	background: #666;
	border-radius: 50vh;
	width: 40px; height: 40px;
	font-weight: bold;
	z-index: +1;
}
.slick-next
{
	left: -60px; top: 50%; transform: translateY(55%);
    right: 20px;
	background: #666;
	border-radius: 50vh;	
	width: 40px; height: 40px;
	font-weight: bold;
	z-index: +1;
}
.slick-slide h4 {
  margin: 10px 0 0;
} 
.slick-slide a {
  text-decoration: none;
} 


/*=============================================

index__news

===============================================*/
.index__news {
	background: #fff;
	background-image: url("../images/bg_index_news.jpg");
	background-size: cover;
	background-attachment: fixed;	
	padding: 5em 0 8em;
}

.index__news .inner { margin-top: 30px !important; }

.index__news .index_head { 
	text-align: center; }



.tbl_news {
	width: 100%;
	border-collapse: collapse;
}



.tbl_news th,
.tbl_news td {
	padding: 10px 1em;
	border-bottom: dotted 1px #ccc;
	text-align: left;
	vertical-align: top;
}
.tbl_news th {
	color: #36395B;
	white-space: nowrap;
	width: 20%;
}

@media screen and (max-width: 640px){
	.tbl_news th { border-bottom: none; padding: 2em 10px 0; }
	.tbl_news td { padding: 0 10px 2em; }
	.tbl_news th,
	.tbl_news td { width: 100%; display: block; }	
}



