/* CSS Document */ :root {
  /* ===== カラーバリエーション ===== */
  --color-main: #248a66; /* メインカラー */
  --color-accent: #e9546b; /* アクセント例（任意） */
  --color-bg: #f8f8f8; /* 背景色（例） */
  --color-text: #333; /* 文字色（例） */
}
html {
  background-color: #FFF;
}
/*背景曲線の山部分*/
.green-gradation-box {
  position: relative;
  padding-top: clamp(140px, calc(180 * (100vw / 1920)), 180px);
  padding-bottom: 65px;
  text-align: center;
  background-image: url(../img/index/mountain-image.webp);
  background-repeat: no-repeat;
  background-position: top center;
  /* background-size: 1600px auto; */
  background-size: contain;
}
/*●ボタン*/
.btn-outline {
  display: inline-block;
  border: 1px solid #000;
  padding: 1.2em 2em;
  text-decoration: none;
  color: #000;
  border-radius: 9999px;
  transition: background 0.3s;
  background-color: #fff;
  font-size: clamp(12px, 1.250vw, 24px) !important;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}
/*firstview*/
.first-view {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  aspect-ratio: 1919 / 818;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -60px;
}
.first-view h1{
    line-height: 0.5em;
}
/*slider共通*/
/* スライダー：3枚自動 ここから */
.slider-loop {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider-loop .slide-track {
  display: flex;
  gap: 2%;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: scrollLoop var(--duration, 200s) linear infinite;
}
.slider-loop img {
  /* 画像1枚あたりのサイズ。
    1025px以下では width:64%;
    441px以下からは width:80%; にしました。羽生 */
  width: 37.6%;
  aspect-ratio: 107 / 45;
  flex: 0 0 auto;
  display: block;
  object-fit: cover;
}
@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--distance)));
  }
}
/*event一覧用（TOP、イベント一覧）*/
.events-featured {
  max-width: 1512px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
}
.events-featured article {
  width: 52%;
  max-width: 800px;
}
.events-featured a {
  width: 100%;
  display: block;
}
.events-featured span {
  display: block;
}
.events-spacer {
  width: 22%;
}
.events-spacer img {
  width: 90%;
  max-width: 297px
}
/* ===============================
   Header Base
=============================== */
.site-header {
  background-color: #fff;
  width: 100%;
  position: sticky;
  z-index: 99;
  top: 0;
}
.header-inner {
  max-width: 1900px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.header-logo img {
  display: block;
  width: 130px;
  height: 90px;
}
/* ===============================
   Header Right Section
=============================== */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
/* ===============================
   Top Action Buttons（宿泊予約／FAQ／採用）
=============================== */
.header-actions {
  transform: translateY(-14px); /* 上に浮かせる */
}
.header-actions ul {
  display: flex;
  gap: 10px;
  margin: 0 0 2px;
  padding: 0;
  list-style: none;
}
.header-actions a {
  display: flex;
  font-size: clamp(14px, calc(13.272px + 0.0971vw), 15px);
  line-height: 1;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  width: 150px;
  height: 60px;
  align-items: center;
  justify-content: center;
}
.header-actions .reserve a {
  background-color: #63b57b;
}
.header-actions .faq a {
  background-color: #3eb4e6;
}
.header-actions .recruit a {
  background-color: #e96f3e;
}
.header-actions a:hover {
  filter: brightness(1.05);
}

/*ここからheader*/

/* ===============================
   Global Navigation Menu
=============================== */
/* WordPressが ul に header-menu を付けない場合にも対応 */
.header-nav > ul, .header-menu {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav > ul li, .header-menu li {
  display: block;
}
.header-nav > ul a, .header-menu a {
  display: block;
  font-size: clamp(13px, calc(12.272px + 0.1942vw), 16px);
  text-decoration: none;
  color: #000;
  padding: 6px 0;
  line-height: 1;
}
.header-nav > ul a:hover, .header-menu a:hover {
  opacity: 0.7;
}
.site-header {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  border-bottom: none !important;
}
/* 横並びを強制（どんな出力でも当たる） */
.site-header .header-nav ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  gap: 1vw;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .header-nav ul li {
  margin: 0;
}
.site-header .header-nav ul li a {
  display: block;
  font-size: clamp(13px, calc(12.272px + 0.1942vw), 16px);
  line-height: 1;
  text-decoration: none;
  color: #000;
  padding: 6px 0;
}
.site-header .header-nav ul li a:hover {
  opacity: .7;
}
/* ===============================
   Responsive
=============================== */
@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 14px;
  }
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 75%;
    position: fixed;
    right: 10px;
    top: 0;
}
    .header-nav > ul li, .header-menu li{
        display: inline-block;
        margin-right: 0.5em!important;
    }
    .site-header .header-nav ul li a{
        /*padding: 2px;*/
    }
    .site-header .header-nav ul{
        display: block!important;
    }
    .header-inner{
    display: block;
        padding-bottom: 30px;
    }
  .header-actions {
    transform: none;
    margin-top: 0px;
  }
  .header-actions ul {
    flex-wrap: wrap;
  }
  .header-menu {
    flex-wrap: wrap;
    gap: 14px;
  }
  .header-nav > ul, .header-menu {
    flex-wrap: wrap;
    gap: 14px;
  }
}
.sp-menu-logo {
  text-align: center;
  padding-bottom: 1em;
  max-width: 160px;
  margin: auto;
}
..sp-menu-logo img {
  display: block;
  margin: auto;
}
/* PC用はスマホで非表示 */
.pc-header {
  display: block;
}
.sp-header {
  display: none;
}
/* 表示切替（PC/スマホ） */
.pc-header {
  display: block;
}
.sp-header {
  display: none;
}
@media (max-width:768px) {
  .pc-header {
    display: none;
  }
  .sp-header {
    display: block;
  }
}
/* 視覚的に非表示（スクリーンリーダー用テキスト） */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.sp-menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
}
/* ヘッダー行 */
.sp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}
/* ハンバーガー */
.sp-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}
.sp-menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #222;
  margin: 4px auto;
  transition: .25s ease;
}
.sp-menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.sp-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.sp-menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
/* フルスクリーンオーバーレイ */
.sp-global-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(10px);

  /* 初期状態 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px); /* ←少し上から出てくる */
  transition: opacity .45s ease, transform .45s ease, visibility .45s;
}

.sp-global-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sp-nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 24px 28px;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.sp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  margin-bottom: 10px;
}
.sp-nav-list li {
  padding: 3px 0;
  margin: 0;
  border-bottom: 1px #ccc solid;
}
.sp-nav-list a {
  display: inline-block;
  font-size: clamp(15px, 4vw, 23px);
  line-height: 1.2;
  text-decoration: none;
  color: #111;
  padding: 6px 16px;
}
.sp-nav-list li.highlight a {
  border: 1px solid #9D8566;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
}
/* オーバーレイ中はスクロール固定 */
body.menu-open {
  overflow: hidden;
}
.sp-reserve {
  border-bottom: none !important;
}
.sp-faq {
  border-bottom: none !important;
}
.sp-recruit {
  border-bottom: none !important;
}
.sp-reserve a {
  background-color: #63b57b;
  color: #fff;
  border-radius: 99px;
  width: 50%;
}
.sp-faq a {
  background-color: #3eb4e6;
  color: #fff;
  border-radius: 99px;
  width: 50%;
}
.sp-recruit a {
  background-color: #e96f3e;
  color: #fff;
  border-radius: 99px;
  width: 50%;
}

/*headerここまで*/
/*ここからfooter*/

/* ===== Footer layout ===== */
.aoi-footer {
  padding: 60px 20px 40px;
    background-color: #248a66;
}
.aoi-footer__inst {
  display: flex;
  /*grid-auto-flow: column;*/
  /*gap: 156px;*/
  /*width: fit-content;*/
  margin: 0 auto 72px;
    width: 96%;
    max-width: 700px;
  padding: 0;
  list-style: none;
    justify-content: space-between;
}
    .aoi-footer__inst li{
        display: flex;
            align-items: center;
    justify-content: center;
    }
.aoi-footer__inst img {
  display: block;
  width: 80%;  object-fit: cover; border-radius: 50%;
    aspect-ratio: 1 / 1;
}

/* 本文2カラム */
.aoi-footer__body {
  display: grid;
  grid-template-columns: 740fr 561fr; /* 右カラムは地図幅に固定 */
  gap: 32px;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

/* 左側（ロゴ＋テキスト） */
.aoi-footer__left { color: #fff;display: flex;justify-content: space-between;/*width: 56%;*/}           /* 必要なら色を調整 */
.aoi-footer__logo { margin-bottom: 16px;width: 35%; }
.aoi-footer__logo img { display:block; width:162px; height:auto; }
.aoi-footer__text{width: 62%;}
    .aoi-footer__text p{font-size: clamp(11px, 1.146vw, 22px) !important;margin: 0;line-height: 1.5em;color:#fff;}
/* 右側（地図） */
.aoi-footer__map{/*width:43%;*/}
.aoi-footer__map iframe { display:block; max-width: 561px; width:100%; height:453px; }
/*料金・営業時間*/
.aoi-footer__btn a{padding: 15px 2em;border: 1px solid #fff;color: #fff;margin: 35px 0 0 0;    display: inline-block;}
/* レスポンシブ */
@media (max-width: 860px) {
  .aoi-footer__body {
display: flex;
      flex-direction: column-reverse;
  }
  .aoi-footer__map,.aoi-footer__map iframe {
    width: 100%;
    height: 160px;         /* モバイルはやや低めに */
  }
    .aoi-footer__inst img{
        width: 80%;
        aspect-ratio: 1 / 1;

    }
}


/**/

.event-h2box {
  display: block;
  margin: 0px;

  color: #231815;
}




