@charset "utf-8";

/* 共通**************ここから*********************************
/* 基本設定： ページ全体 */
html {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

/* ***********レスポンシブ************************************************* */
@media screen and (max-width: 800px) {
  body {
    margin: 0 auto 0 auto;
  }
}



/*------メイン画像領域-------------------------------------------*/

.main-image {
  position: relative;
  width: 100%;
  overflow: hidden;

  top: 70px;


}

.main-image img {
  width: 100%;
  height: 550px;
  display: block;
}

.main-text-box {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  /* text-align: center; */
  color: #333;
  width: 90%;
}






/* 獅子吼高原のぼり口に広がる交流エリア*/

.main-text-box h1 {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-left: 10px;
  /* transform: translateX(-5%); */
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 2px 2px 10px rgb(255, 255, 255), -2px 2px 10px rgb(255, 251, 251),
    2px -2px 10px black, -2px -2px 10px black;
}

/* 「天気が良い日は、ぜひゴンドラに乗ってスカイ獅子吼へ。山頂からの眺めは最高です！*/
.main-text-box h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 230px;
  /* transform: translateX(%); */
  transform: translateY(0%);
  color: #fff;
  display: inline-block;
  padding: 0.1em 0.8em;
  text-shadow: 2px 2px 10px rgb(255, 255, 255), -2px 2px 10px rgb(255, 251, 251),
    2px -2px 10px black, -2px -2px 10px black;
}

/* 標高650mの高原から、教科書に出てくるような美しい扇状地が見渡せます。加賀平野から遠く日本海まで一望のもと。 */
.main-text-box p {
  font-size: 1.2rem;
  transform: translateY(100%);
  color: #fff;
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 10px;
  text-shadow: 2px 2px 10px rgb(255, 255, 255), -2px 2px 10px rgb(255, 251, 251), 2px -2px 10px black,
    -2px -2px 10px black;
}



.small-text-box {
  display: none;
}

@media screen and (max-width: 800px) {

  .main-image {
    position: relative;
  }

  .main-text-box {
    display: none;
  }

  .small-text-box {
    width: 500px;
    line-height: 1.8rem;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 2px 2px 10px rgb(255, 255, 255), -2px 2px 10px rgb(255, 251, 251), 2px -2px 10px black,
      -2px -2px 10px black;
    text-align: center;
  }

}





/* アイコン */



.icon-list li a:hover {
  opacity: 0.5;
}


.icon1 {
  width: 130px;
  /*100pxに画像の縮小*/
}

.icon2 {
  width: 130px;
  /*100pxに画像の縮小*/
}

.icon3 {
  width: 130px;
  /*100pxに画像の縮小*/
}

.icon4 {
  width: 130px;
  /*100pxに画像の縮小*/
}

.icon5 {
  width: 130px;
  /*100pxに画像の縮小*/
}

.icon6 {
  width: 130px;
  /*100pxに画像の縮小*/
}

.icon7 {
  width: 130px;
  /*100pxに画像の縮小*/
}




.icon {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* gap: 20px; */
  /* アイコン間の余白 */
  justify-content: center;
  /* 中央揃え（必要に応じて変更） */
}


.icon-list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  text-align: center;
  flex-direction: column;
  display: flex;
  margin: 0;
}

@media screen and (max-width: 800px) {
  .icon .icon-list {
    display: flex;
    flex-wrap: wrap;
    /* 各アイテムの間隔 */
    /* /* padding: 10px; */
    margin: 0;
    list-style: none;
    /* liの点を消す */


  }
}








/* ここから各コンテンツ紹介 */
/* 全体の基本スタイル */
.section {
  padding: 40px;
  background-color: #E0F7ED;
}

/* 偶数セクション用背景（薄黄色） */
.section:nth-of-type(odd) {
  background-color: #ffffff;
}

/* 横並びの基本設定 */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* 画像左用に反転 */
.section.reverse .container {
  flex-direction: row-reverse;
}

/* テキスト部分 */
.text-box {
  max-width: 500px;
  font-size: 16px;
  color: #222;
  line-height: 1.6;
}

/* 通常画像ボックス */

.image-box {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .image-box a:hover {
opacity: 0.8;
} */



.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: image-fade 20s infinite;
  transition: opacity 1s ease-in-out;
}

/* 各画像の表示タイミング */
.image1 {
  animation-delay: 0s;
}

.image2 {
  animation-delay: 5s;
}

.image3 {
  animation-delay: 10s;
}

.image4 {
  animation-delay: 15s;
}

/* フェードアニメーション */
@keyframes image-fade {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}




/* 利用料金tableここから */
.price-table {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #fff;
  /* 枠線が重ならないようにする */
}

.price-table td,
.price-table th {
  border: 1px solid #000;
  /* text-align: center; */
  padding: 10px;
}

.price-table .time {
  color: #fff;
  font-weight: bold;
  background-color: #42c78d;
}

/* .price-table tr:first-child {
	background-color: #42c78d;

} */
/* 利用料金tableここまで */




/*  BBQ情報ここから */

.facility-box {
  background: #fff;
  border: 3px solid #42c78d;
  border-radius: 8px;
  padding: 15px 20px;
  max-width: 800px;
  margin: auto;
}

.facility-title {
  background: #42c78d;
  color: #fff;
  padding: 10px;
  margin: -15px -20px 15px;
  font-size: 20px;
}

.section-title {
  font-size: 18px;
  margin-top: 20px;
  border-left: 5px solid #42c78d;
  padding-left: 8px;
}

.check-title {
  font-size: 16px;
  margin-top: 15px;
  padding-left: 24px;
  position: relative;
}

.check-title::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4caf50;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.price-table th {
  background: #42c78d;
  color: #000;
  border: 1px solid #d4d3d3;
  padding: 8px;
}

.price-table td {
  border: 1px solid #d4d3d3;
  /* padding: 8px; */
  vertical-align: top;
  font-weight: bold;
  color: #333;
  font-size: 1.05rem;
}

.note {
  font-size: 13px;
  color: #555;
  margin-top: 4px;
}

/* BBQ情報ここまで */








/*----gallery領域-----------------------------------------------------*/

.gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel {
  display: flex;
  width: calc(100% * 10);
  /* 画像枚数に応じて変更 */
  animation: slide 30s linear infinite;
  list-style: none;
  padding: 0;
  margin: 0;
}

.item {
  flex: 0 0 auto;
  width: 300px;
  /* 表示領域に合わせて調整 */
}

.item img {
  width: 100%;
  height: 280px;
  display: block;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1400px);
  }
}


/* レスポンシブ */

/* ヘッダー */

@media screen and (max-width: 800px) {
  body {
    margin: 0 auto 0 auto;
  }
}



/* ********************************************************** */

img {
  max-width: 100%;
}

/* ヘッダー領域 */
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);

}

/* コンテナ */
header .header-container {
  display: flex;
  /* Flexboxでレイアウト */
  justify-content: space-between;
  /* 左右に分ける */
  align-items: center;
  /* 垂直方向に中央揃え */
  width: 100%;
  height: 70px;

}

/* ロゴボックス */
.logo-box {
  display: inline-block;
  margin-top: 5px;
  margin-left: 5px;
}

.headA img {
  max-width: 500px;

}

/* ナビゲーション */
#navi {
  display: flex;
  /* ナビゲーションアイテムを横並びに */
  align-items: center;
  /* 垂直方向に中央揃え */
  /* color: #a94442; */
  color: #000;

}

#navi ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  /* color: #a94442; */
  color: #000;
  display: flex;
  /* リストアイテムを横並びに */
}

#navi>ul>li {
  position: relative;
}

#navi>ul>li>a {
  /* color: #a94442; */
  color: #000;
  padding: 15px 20px;
  display: block;
  text-decoration: none;
}

#navi>ul>li:hover>a {
  background-color: rgba(0, 0, 0, 0.2);
}

/* ドロップダウンメニュー */
#navi>ul>li>.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  min-width: 200px;
}

#navi>ul>li:hover>.dropdown {
  display: block;
}

#navi>ul>li>.dropdown>li>a {
  /* color: rgb(90, 33, 33); */
  color: #000;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
  padding: 10px;
  display: block;
  text-decoration: none;
}

#navi>ul>li>.dropdown>li>a:hover {
  background-color: rgba(0, 0, 0, 0.2);

}


/* アクティブ線付けるやつ */
#navi ul li a.active {
  border-bottom: solid 1px #a94442;
  color: #000;

}



/* ******ナビゲーションレスポンシブデザイン ************************************************************/

.headC {
  /* 800px以下で表示するため */
  display: none;
  /* 背景と枠消してアイコンだけ見せる */
  background: none;
  border: none;
  font-size: 24px;
  /* マウスオーバーのときにクリックできる*/
  cursor: pointer;
  /* 他のレイアウトとかぶらんようにする*/
  margin-right: 20px;
  z-index: 101;
}

/* レスポンシブ時に表示 */
@media screen and (max-width: 1100px) {

  /* トップロゴの大きさ */

  .headA {
    max-width: 90%;
    max-height: 60px;
  }


  .headC {
    display: block;
    margin-left: auto;
  }

  #navi ul {
    flex-direction: column;
    align-items: center;
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #fff;
    width: 100%;
  }

  #navi.nav-open ul {
    display: flex;
  }

  #navi>ul>li {
    text-align: center;
  }

  #navi>ul>li>.dropdown {
    position: static;
  }

  /* 2階層目（ドロップダウン）を完全に非表示 */
  #navi>ul>li>.dropdown {
    display: none !important;
  }

}


/* 共通**************ここまで*******


/*--- フッター領域 --------------------------------------------------------*/
footer {
  width: 100%;
  height: auto;
  margin-top: 30px;
  background-image: url(../images/footer-copy.webp);
  background-repeat: repeat-x;
  background-size: contain;
  color: #a94442;
}

footer .footer-container {
  padding-top: 200px;
  padding-bottom: 40px;

}


footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}


.footA .footer-text h2 {

  margin-bottom: 10px;
}

.footB {
  flex: 0 0 100%;
}

.footC {
  flex: 0 0 100%;
}


/* フッターA領域 */
.footA {
  display: flex;
  margin-bottom: 30px;

}

.footA h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 3rem;
  letter-spacing: 0.2em;
}

.footA p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
}

.footA a {
  /* color: rgb(90, 33, 33); */
  color: #000;
  text-decoration: none;
}

.footA .footer-right {
  display: flex;
  flex-direction: column;

}

.footA .sns-icon {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.footA .sns-icon img {
  width: 100px;
  height: 100px;
}




.footA .sns-icon a:hover {
  opacity: 0.8;
}


/* フッターB領域 */
.footB .footB_menu {
  margin-bottom: 20px;
}

.footB h3 a {
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: solid 1px #a94442;
  font-size: 1.2rem;
  color: #a94442;
  ;
}

.footB ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footB a {
  display: block;
  padding: 5px;
  /* color: rgb(90, 33, 33); */
  color: #000;
  font-size: 0.8rem;
  text-decoration: none;
  line-height: 1.5rem;
}

.footB a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}


.footB {
  display: flex;
}

.footB .footB_menu {
  flex: 1;
  margin-right: 20px;
}



/* フッターC領域 */
.footC {
  font-size: 12px;
  text-align: center;
  color: #000;
}



/* *****レスポンシブ **********************************/
@media screen and (max-width: 800px) {
  footer .footer-container {
    padding-top: 100px;
  }

  footer .footer-container .footB {
    flex-direction: column;
    width: 100%;
    /* padding: 0 15px; */
    text-align: center;
  }

  .footB .footB_menu {
    margin-bottom: 0px;
  }

  footer .footer-container .footB h3 a {
    display: inline-block;
    width: 70%;
  }

  footer .footer-container .footB ul li {
    display: none;
  }

  footer .footer-container .footA {
    flex-direction: column;
    width: 100%;

    text-align: center;

  }

  footer .footer-container .footA img {
    width: 50%;
    margin: 0 auto 0 auto;

  }

  .footA .sns-icon {
    gap: 0px;
  }

  .footA .sns-icon a {
    width: 100%;
    height: 100%;

  }

}

/* --右下のgotop--------------------------- */
.gotop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;

}

.gotop:hover {
  opacity: 0.8;
}

.gotop img {
  width: 100px;
  height: 100px;
}

/* レスポンシブ *****************************************************************************/
@media screen and (max-width: 800px) {
  .gotop {
    display: none;
  }
}