@charset "utf-8";
/* CSS Document */
/* 基本設定 */
/* h2 */
h2 {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 46px;
}
h2 span {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 40px;
}
/* h3 */
h3 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
}
/* p */
p {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
}
/* btn */
.btn1 {
  background-color: #D9B06A;
  width: 190px;
  border-radius: 50px;
  text-align: center;
}
.btn2 {
  background-color: #A5B8A4;
  width: 110px;
  border-radius: 50px;
  text-align: center;
  margin-top: 20px;
}
.btn1 a, .btn2 a {
  color: #F6F8F9;
  display: inline-block;
  padding: 20px;
  text-decoration: none;
}
.btn1 a:hover {
  transform: scale(1.1, 1.1);
}
.btn2 a:hover {
  transform: scale(1.1, 1.1);
}
/* background color */
#news {
  background-color: #F6F8F9;
}
#about {
  background-color: #2D3E50;
}
#map {
  background-color: #F6F8F9;
}
#stay {
  background-color: #2D3E50;
}
#food {
  background-color: #2D3E50;
}
#activity {
  background-color: #F6F8F9;
}
#gallary{
	background-color: #2D3E50;
}
footer {
  background-color: #F6F8F9;
}
/* 基本設定ここまで */

/* first view */
.firstview {
  max-width: 100%;
}
/* ヘッダー */
header {
  position: absolute;
  background-color: rgba(45, 62, 80, 0.5);
  width: 100%;
  height: 135px;
  border-radius: 0 0 50px 50px;
  z-index: 1;
}
nav ul li {
  display: inline-block;
  width: 80px;
  margin: 0 50px;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
}
nav a {
  position: relative;
  color: #F6F8F9;
  text-decoration: none;
  display: inline-block;
}
nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px; /* 文字のすぐ下に表示 */
  width: 100%;
  height: 2px;
  background-color: #F6F8F9;
  /* 最初は横幅ゼロ */
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
/* ホバー時にスケールアップ（中央から左右に伸びる） */
nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
#head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
}
#head_img {
  padding-left: 50px;
}
#head_nav {
  padding-right: 50px;
}
#fb {
  position: relative;
}

/* --- ハンバーガーボタン --- */
#hamburger {
  display: none; /* PCでは非表示 */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001; /* navより前に出す */
}
#hamburger span {
  display: block;
  height: 3px;
  background: #F6F8F9;
  border-radius: 2px;
}

/* --- スマホ用メニュー --- */
@media screen and (max-width: 768px) {
	header img{
		width: 50px;
		height: 50px;
	}
  nav ul {
    position: fixed;
    top: 135px; /* ヘッダーの高さ分 */
    right: -100%; /* 初期は画面外 */
    width: 200px;
    height: 100%;
    background: rgba(45, 62, 80, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: right 0.3s ease;
    padding-top: 30px;
  }
  nav ul li {
    display: block;
    margin: 20px 0;
    font-size: 20px;
  }

  /* ハンバーガーボタンはスマホ時だけ表示 */
  #hamburger {
    display: flex;
  }

  /* メニューが開いたときのスタイル */
  nav ul.active {
    right: 0;
  }
}

/* h1 */
h1 {
  text-align: center;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 64px;
  margin: 0 auto;
  color: #F6F8F9;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#h1text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  margin: 0 auto;
  color: #F6F8F9;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
	#fb img{
		height: 830px;
		width: auto;
	}
	h1{
		position: absolute;
		top: 45%;
	}
	#h1text{
		position: absolute;
		top: 50%;
	}
}
/* 固定btn */
#fixed_btn {
  position: fixed;
  top: 80%;
  right: 20px;
  z-index: 1;
}

/* news */

#news {
  background-color: #F6F8F9;
  padding: 60px 10%;
  text-align: center;
}
#news h2 {
  border-bottom: #1c1c1c solid 1px;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.news-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.news-item:hover {
  transform: translateY(-5px);
}
.news-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}
.news-title {
  font-size: 18px;
  font-weight: bold;
  color: #2D3E50;
  margin-bottom: 8px;
}
.news-text {
  font-size: 14px;
  color: #555;
}
.news-item a {
  display: block; /* a要素をカード全体に広げる */
  color: inherit; /* 文字色は親要素のまま */
  text-decoration: none; /* 下線を消す */
}
.news-item a:hover {
  text-decoration: none; /* hover時も下線なし */
}
#news .btn1 {
  margin: 20px auto;
}

/* about */

#about {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 610px;
}
#ab_image {
  padding: 20px;
}
#ab_image img {
  max-width: 100%;
}
#ab_text {
  display: inline-block;
  width: 500px;
  padding: 20px;
}
#ab_h2 {
  color: #F6F8F9;
  margin: 20px 0;
  border-bottom: #F6F8F9 solid 1px;
  text-align: center;
}
#ab_h2 span {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
}
#ab_p {
  color: #F6F8F9;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
	#about{
		display: block;
		
	}
	#ab_text{
		width: auto;
	}
	
}
/* areamap */

#map {
  display: flex; /* フレックスボックス化 */
  flex-direction: column; /* 縦並び */
  align-items: center; /* 横中央揃え */
  text-align: center; /* テキストも中央 */
  padding: 60px 20px; /* 上下に余白を追加 */
}
#map h2 {
  border-bottom: #1c1c1c solid 1px;
  margin-bottom: 20px;
}
#map img {
  max-width: 100%; /* はみ出さないように */
  height: auto;
  margin: 20px 0;
}
#map .btn1 {
  margin-top: 20px;
}

/* stay */

#stay {
  padding: 60px 20px;
}
#stay img {
  padding: 20px;
}
#stay h2 {
  color: #F6F8F9;
  margin: 0 auto 20px auto; /* ブロック要素を中央に */
  display: block;
  width: fit-content; /* テキストの幅に合わせる */
  border-bottom: #F6F8F9 solid 1px;
}
#stay .btn1{
	margin: 60px auto 0 auto;
}
.st_flex1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 940px;
  margin: 50px auto;
  background-color: rgba(246, 248, 249, 0.5);
}
.st_flex1 img {
  padding: 20px;
}
.st_flex2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 940px;
  margin: 0 auto;
  flex-direction: row-reverse; /* 左右を反転 */
  background-color: rgba(246, 248, 249, 0.5);
}
.st_flex2 img {
  padding: 20px;
}
.st_flex_text {
  color: #F6F8F9;
  padding: 20px;
}
.st_flex_text h3 {
  margin: 20px 0;
}
.st_flex_text p {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .st_flex1,
  .st_flex2 {
    display: block;       /* 横並び→縦並び */
    width: 100%;          /* 親幅にフィット */
    margin: 20px auto;    /* 上下に余白 */
  }

  .st_flex1 img,
  .st_flex2 img {
    width: 90%;          /* 画像を画面幅いっぱいに */
    height: auto;         /* 縦横比を維持 */
    padding: 0;           /* 余白をリセット（好みで調整） */
  }

  .st_flex_text {
    padding: 20px;
  }
}
/* Food */
#food{
	padding-bottom: 50px;
}
#food h2{
	color: #F6F8F9;
	display: block;
	width: fit-content;
	margin: 50px auto;
	border-bottom: #F6F8F9 solid 1px;
}
#food h3{
	color: #F6F8F9;
	display: block;
	width: fit-content;
	margin: 50px auto;
}
#food p{
	color: #F6F8F9;
	display: block;
	margin: 50px auto;
}
#food #text{
	width: 700px;
	margin: auto;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #food #text {
    width: 90%;           /* 画面幅の90%に調整 */
    margin: 0 auto;       /* 中央寄せ */
  }

  #food p {
    width: 100%;          /* fit-contentを解除 */
    margin: 20px 0;       /* 上下に余白だけ設定 */
    word-break: normal;   /* 自然な改行 */
    white-space: normal;  /* 自動改行を許可 */
  }
}
/* activity */

#activity h2{
	display: block;
	width: fit-content;
	margin: 0 auto 50px auto;
	border-bottom: #1c1c1c solid 1px;
	padding-top: 50px;
}
#ac-flex {
  display: flex;          /* flexbox化 */
  flex-wrap: wrap;        /* 折り返しを有効化 */
  justify-content: center;/* 横並び中央寄せ */
  gap: 20px;              /* 要素間の余白 */
	padding-bottom: 100px;
}
#ac-flex a {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  display: block;
}

#ac-flex img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease; /* アニメーション */
}

#ac-flex img:hover {
  opacity: 0.7; /* 透明度を下げる */
	transform: scale(1.05);    /* 少し拡大 */
}
@media screen and (max-width: 768px) {
	#ac-flex a {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
/* gallary */
#gallary{
	height: 690px;
}
#gallary h2{
	color: #F6F8F9;
	display: block;
	width: fit-content;
	margin: 0 auto 100px auto;
	border-bottom: #F6F8F9 solid 1px;
	padding-top: 100px;
}
.slider {
  width: 100%;         /* 表示領域の幅 */
  overflow: hidden;
  margin: 50px auto;
}

.slide-track {
  display: flex;
  gap: 30px;
}

.slide img {
  width: 200px;
  height: 200px;
  display: block;
}
#gallary .btn1{
	margin: 100px auto 0 auto;
}

/* footer */

footer p{
	text-align: center;
	padding-bottom:10px;
}
#sns{
	display: flex;
	justify-content: center;
	gap: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
}
/* フェードアップ用初期状態 */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

/* 表示時に適用される状態 */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}