@charset "UTF-8";

/* ============================================
   index_pc.css（トップページ PC版）最終修正版
   ============================================ */

:root {
  --hero-fade-duration: 900ms;
  --hero-logo-fade: 1200ms;
  --pc-max-width: 1200px;
  --section-height: 520px;
  --bg-beige: #F0E8DF;
  --bg-white: #ffffff;
  --border-color: rgba(0,0,0,0.08);
}

body {
  background: #fff;
}
/* ============================================
   PC版：PC用 / SP用 見出しの出し分け
   ============================================ */

/* PCではPC版を表示 */
.pc-only {
  display: block;
}

/* PCではSP版を非表示 */
.sp-only {
  display: none !important;
}

/* ============================================
   1. ヒーローエリア
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #1a1a1a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(10,10,20,.55) 100%);
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity var(--hero-fade-duration) ease-in-out;
}

.hero__slide--a { z-index: 1; opacity: 0; }
.hero__slide--b { z-index: 2; opacity: 0; }

.hero__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.hero__logo {
  width: min(45vw, 400px);
  max-width: 80%;
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--hero-logo-fade) ease, transform var(--hero-logo-fade) ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.45)) drop-shadow(0 12px 32px rgba(0,0,0,.35));
}

.hero.is-logo-visible .hero__logo {
  opacity: 1;
}

.hero__scrollHint {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 4;
}

.hero__scrollHint span {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid rgba(255,255,255,.85);
  border-bottom: 1.5px solid rgba(255,255,255,.85);
  transform: rotate(45deg);
  animation: hero-bounce 1.4s infinite ease-in-out;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(-6px) rotate(45deg); opacity: .6; }
  50% { transform: translateY(4px) rotate(45deg); opacity: 1; }
}


/* ============================================
   0. 変数定義（グローバル）
   ============================================ */
:root {
  --pc-max-width: 1200px;
  --section-height: 600px;
  --bg-white: #fff;
  --bg-beige: #F0E8DF;
}

/* ============================================
   2. セクション1〜3（共通構造）
   ============================================ */

/* セクション背景（全幅） */
#stay-sec, #bbqsauna-sec, #alfa-sec {
  width: 100%;
  border-bottom: none;
}

#stay-sec {
  background: var(--bg-white);
  border-top: none;
}

#bbqsauna-sec {
  background: var(--bg-beige);
}

#alfa-sec {
  background: var(--bg-white);
}

/* 中身の枠（中央配置、2カラム） */
.section-inner {
  max-width: var(--pc-max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: var(--section-height);
}

/* 左右50/50 */
.section-inner > .section-harf {
  width: 50%;
  min-width: 0;
}

/* 左：テキスト */
.section-inner > .section-harf:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
}

/* テキストボックス共通 */
#stay-sec .contents-textbox,
#bbqsauna-sec .contents-textbox,
#alfa-sec .contents-textbox {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  margin: 30px 30px;
}

/* セクション見出し（共通） */
#stay-sec .section-heading,
#bbqsauna-sec .section-heading {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  text-align: left;
  position: relative;
}

#stay-sec .section-heading span,
#bbqsauna-sec .section-heading span {
  display: inline;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
  margin-left: 10px;
}

/* キャッチコピー */
.contents-copy {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* 本文 */
#stay-sec .letterfont,
#bbqsauna-sec .letterfont,
#alfa-sec .letterfont {
  font-size: 0.8rem;
  line-height: 1.9;
  color: #000;
  text-align: justify;
  letter-spacing: 0.03em;
}

.dec-text {
  font-weight: 600;
  color: #D32F2F;
}

#stay-sec .letterfont ruby,
#bbqsauna-sec .letterfont ruby,
#alfa-sec .letterfont ruby {
  ruby-position: over;
}
#stay-sec .letterfont rt,
#bbqsauna-sec .letterfont rt,
#alfa-sec .letterfont rt {
  font-size: 0.5rem;
  font-weight: 500;
  color: #666;
  white-space: pre;
  text-align: center;
}

/* ボタンエリア */
.contents-button-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
}

.contents-button {
  width: 250px;
  height: 50px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.contents-button:hover {
  background: #735A54;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

/* 右：画像側 */
.section-inner > .section-harf:last-child {
  display: flex;
  flex-direction: column;
}

/* 各セクションにおける画像の枠調整 */
#stay-sec .section-inner > .section-harf:last-child {
  border-left: none;
}
#bbqsauna-sec .section-inner > .section-harf:last-child {
  border-right: none;
}
#alfa-sec .section-inner > .section-harf:last-child {
  border-left: 1px solid #fff;
}

/* 画像共通設定 */
#stay-sec img,
#bbqsauna-sec img,
#alfa-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- 注意書き（赤文字） --- */
.note { 
  color: #D32F2F;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0px;
}
/* ============================================
   3. セクション1：Stay
   ============================================ */
#stay-sec .img-harf {
  flex: 1;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}

#stay-sec .img-harf:last-child {
  border-bottom: none;
}


/* ============================================
   4. セクション2：BBQ・Sauna
   ============================================ */
#bbqsauna-sec .section-inner {
  flex-direction: row-reverse;
}

#bbqsauna-sec .img-harf {
  flex: 1;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}

#bbqsauna-sec .img-harf:last-child {
  border-bottom: none;
}


/* ============================================
   5. セクション3：RADOHRE+α（見出しスタイル）
   ============================================ */

/* 見出しラッパー（横並びに） */
#alfa-sec .section-heading {
  display: flex;
  align-items: flex-end; /* 下揃え */
  justify-content: flex-start;
  gap: 12px;
  padding: 0 0 10px;
  text-align: left;
}

/* メインタイトル（RADOHRE + α） */
#alfa-sec .main-title-area {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* RADOHRE + */
#alfa-sec .main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

/* α とルビ（アルファ） */
#alfa-sec .alpha {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}

#alfa-sec .alpha rt {
  font-size: 0.6rem;
  color: #666;
  font-weight: 400;
  line-height: 1;
}

/* 英語タイトル（右に小さく） */
#alfa-sec .sub-en {
  font-size: 0.85rem;
  color: #999;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-right: auto;
  margin-bottom: 10px;
}

/* タブボタンエリア（現在のまま維持） */
#alfa-sec .tab-button-area {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

#alfa-sec .tab-button {
  width: 100%;
  position: relative;
  display: block;
  margin: 0px;
  padding: 8px 15px;
  background: #fff;
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

/* 下の罫線（通常は非表示） */
#alfa-sec .tab-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: #CCCCCC;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

/* active / hover 時 */
#alfa-sec .tab-button.active,
#alfa-sec .tab-button:hover {
  background: #F0E8DF;
}

#alfa-sec .tab-button.active::after,
#alfa-sec .tab-button:hover::after {
  opacity: 1;  background: #000;

}

#alfa-sec .tab-button .index_small {
  font-size: 0.8em;
  font-weight: 600;
  margin-left: 5px;
}

/* 画像エリア */
/* 上段：メイン画像（オーバーレイなし）- 60% */
#alfa-sec .img-harf:first-child {
  position: relative;
  flex: 0 0 65%;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}

#alfa-sec .img-harf:first-child img {
  transition: opacity 0.55s ease, transform 0.55s ease;
  transform: scale(1);
}

/* フェードアウト時 */
#alfa-sec .img-harf:first-child img.is-fading {
  opacity: 0;
  transform: scale(0.98);
}

/* フェードイン準備 */
#alfa-sec .img-harf:first-child img.is-enter {
  opacity: 0;
  transform: scale(1.02);
}

/* 下段：2枚の画像（オーバーレイあり）- 35% */
#alfa-sec .img-harf-row {
  flex: 0 0 35%;
  display: flex;
  width: 100%;
}

#alfa-sec .img-harf-row .img-harf {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-right: 1px solid #fff;
}

#alfa-sec .img-harf-row .img-harf:last-child {
  border-right: none;
  border-bottom: 1px solid #fff;
}

/* 下段画像のオーバーレイ */
#alfa-sec .img-harf-row .img-harf::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

#alfa-sec .img-harf-row .img-harf img {
  transition: opacity 0.55s ease, transform 0.55s ease;
  transform: scale(1);
}

/* フェードアウト時 */
#alfa-sec .img-harf-row .img-harf img.is-fading {
  opacity: 0;
  transform: scale(0.98);
}

/* フェードイン準備 */
#alfa-sec .img-harf-row .img-harf img.is-enter {
  opacity: 0;
  transform: scale(1.02);
}


/* ============================================
   6. 周辺観光セクション
   ============================================ */

/* セクション背景（全幅） */
#spot-sec{
  width: 100%;
  background: #F0E8DF;
  padding: 70px 0 0;
}

/* 見出し（中央） */
#spot-sec .section-heading {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
}

#spot-sec .section-heading span{
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #666;
  margin-left: 10px;
}

/* 中身 */
#spot-sec .spot-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px;
  text-align: center;
}

/* 上段：アイコン / 文 / アイコン */
#spot-sec .spot-top{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  margin-top: -20px;
  margin-left: 105px;
  margin-right: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* 罫線の上だけを薄く消す“細い帯” */
#spot-sec .spot-top::before{
  content: "";
  position: absolute;
  left: -40px;   /* 少し広めに */
  right: -40px;
  top: -10px;    /* 罫線にかぶる位置 */
  height: 14px;  /* ←ここを小さくすると消える範囲が減る */
  background: #F0E8DF;
  z-index: -1;   /* spot-topの“背景”として敷く */
}

#spot-sec .spot-icon{
  flex: 0 0 auto;
  background-color: #F0E8DF;
  padding: 5px;
}

#spot-sec .spot-text { 
  font-size: 0.65rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.10em;
  margin-left: -15px;
  padding-bottom: 3px;
}

#spot-sec .spot-text span{ 
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

#spot-sec .spot-icon img{
  width: 55px;
  height: auto;
}

/* 質問文（中央） */
#spot-sec .spot-question{
  text-align: center;
  margin-right: -15px;
}

#spot-sec .spot-q-ja{
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: 0.15em;
}

#spot-sec .spot-q-en{
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #666;
}

/* 説明文（中央寄せ、読みやすい行幅） */
#spot-sec .spot-desc{
  width: 100%;
  font-size: 0.8rem;
  max-width: 750px;
  text-align: center;
  margin: 0px auto 0px;
  padding: 0px;
  line-height: 1.6;
}

/* ボタン（ピンクのカプセル） */
#spot-sec .spot-contents-button-area{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 25px auto 35px;
  flex-wrap: wrap;
}

#spot-sec .spot-contents-button{
  min-width: 350px;
  height: 52px;
  padding: 0px;
  border-radius: 999px;
  background: #fab9d1;
  color: #000;
  font-weight: 600;
  font-size: 1.2rem;
  transition: opacity .2s ease, transform .2s ease;
}

#spot-sec .spot-contents-button:hover{
  background: #ffcdd7;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

/* Spot：画像ストリップ（自動で左へ流れる／正方形） */

/* 全幅エリア */
#spot-sec .spot-strip{
  width: 100%;
  margin-top: 50px;
}

/* 表示窓（はみ出し隠す） */
#spot-sec .spot-marquee{
  width: 100%;
  overflow: hidden;
  background: #fff; /* 画像の間の線の土台 */
}

/* 流れる本体 */
#spot-sec .spot-track{
  display: flex;
  gap: 1px;                 /* 画像間の細い線 */
  will-change: transform;
  animation: spot-marquee 22s linear infinite;
}

/* 正方形画像 */
#spot-sec .spot-slide{
  flex: 0 0 16.6667vw;      /* 画面幅に合わせて6枚見えるイメージ */
  max-width: 200px;         /* 大画面でデカくなりすぎ防止 */
  aspect-ratio: 1 / 1;      /*  正方形 */
  object-fit: cover;
  display: block;
}

/* ループ：1セット分（6枚+gap）だけ左へ */
@keyframes spot-marquee{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* 動きを減らしたい設定の人には停止 */
@media (prefers-reduced-motion: reduce){
  #spot-sec .spot-track{ animation: none; }
}


/* ============================================
   7. セクション5：News（Instagram公式埋め込み）   ============================================ */

/* ---------- セクション全体 ---------- */
#news-sec{
  width: 100%;
  background: #fff;
  padding: 70px 0 90px;
}

/* ---------- 見出し ---------- */
#news-sec .section-heading{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
}

#news-sec .section-heading span{
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #666;
  margin-left: 10px;
}

/* ---------- 中身 ---------- */
.news-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 35px 0 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.news-block {
  background: #fff;
  padding: 0;
}

.news-block-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  color: #000;
  text-align: center;
}

.news-instagram-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.news-instagram-header .instagram-logo {
  width: 23px;
  height: auto;
  object-fit: contain;
}

.news-instagram-header .news-block-title {
  margin-bottom: 0;
}

/* お知らせエリアのスタイル */
.news-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e0e0e0;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 15px;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.news-item:hover {
  background-color: #f8f8f8;
}

.news-date {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.news-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.news-item:hover .news-text {
  color: #735A54;
}

/* Instagramエリアのスタイル */
.news-instagram-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  align-items: start;
}

/* Instagram埋め込みウィジェットのスタイル調整 */
.news-instagram-items .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: #fff;
  border-radius: 10px;
  overflow: hidden !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-instagram-items .instagram-media:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-instagram-item,
.instagram-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  display: block;
  background: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-instagram-item:hover,
.instagram-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-instagram-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-placeholder .insta-ph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E1306C, #C13584, #833AB4, #5851DB, #405DE6);
  opacity: 0.3;
}

/* 一覧をみるリンク */
.news-more {
  text-align: center;
  margin-top: 30px;
}

.news-more a {
  display: inline-block;
  border: 1px solid #000;
  padding: 12px 60px;
  color: #000;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  transition: all 0.35s ease;
}

.news-more a:hover {
  background: #735A54;
  color: #fff;
  border: 1px solid #735A54;
}


/* ============================================
   8. Access 
============================================ */
#access-sec {
  width: 100%;
  background: #F0E8DF;
  padding: 70px 0 0;
}

/* 見出し */
#access-sec .section-heading {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 22px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
}

#access-sec .section-heading span {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #666;
  margin-left: 10px;
}

/* メインエリア：3カラム */
#access-sec .access-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0px 0;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  grid-template-rows: auto;
  gap: 10px;
  align-items: start;
}

/* 左カラム：画像のみ */
#access-sec .access-left {
  grid-column: 1;
  grid-row: 1;
}

#access-sec .access-img {
  width: 100%;
  display: block; 
  height: 200px;       /* 高さ固定 */
  object-fit: cover;   /* トリミング */
}

/* 中央カラム：施設情報（画像の下に配置） */
#access-sec .access-center {
  grid-column: 2;
  grid-row: 1;
  padding: 0;
  white-space: nowrap;  /* 折り返さない */
  margin-left: 10px;
  margin-right: 25px;
  background: transparent;
  align-self: center; 
}

#access-sec .access-sub {
  margin: 0 0 3px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

#access-sec .access-title {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  white-space: nowrap; /* 改行しない */
}

#access-sec .access-title ruby {
  ruby-position: over;
}

#access-sec .access-title rt {
  font-size: 0.6rem;
  text-align: center;
  font-weight: 500;
  color: #666;
}

#access-sec .access-address {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

/* 右カラム：アクセス方法BOX（画像と同じ高さ） */
#access-sec .access-right {
  grid-column: 3;
  grid-row: 1;
  background: #fff;
  padding: 20px;
  border-radius: 0;
  min-width: 0; /* なりゆき幅 */
  flex-direction: column;
  display: flex;
  justify-content: center; /* 垂直方向：中央 */
  align-items: center; /* 水平方向：中央 */
  align-self: stretch; /* 画像の高さに合わせる */
}

#access-sec .access-box-title {
  margin: 0px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-start;
}

#access-sec .title-icon {
  margin: 7px 5px 0 0;
}

#access-sec .access-box-title:not(:first-child) {
  margin-top: 10px;
}

#access-sec .access-box-text {
  margin: 0px;
  padding-left: 12px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #000;
}

#access-sec .access-box-text:last-child {
  margin-bottom: 0;
}

/* Googleマップ */
#access-sec .map-embed {
  max-width: 100%;
  margin: 35px auto 0;
  padding: 0px;
}

#access-sec .map-embed iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}


#page-top {
  padding-top: 20px;
  padding-bottom: 15px;
}


/* ============================================
   950px〜1100px：レスポンシブ
============================================ */
@media screen and (min-width: 950px) and (max-width: 1100px) {

  /* セクション1〜3：左右比率（テキスト6：画像4） */
  .section-inner > .section-harf { min-width: 0; }

  .section-inner > .section-harf:first-child{
    flex: 6;
    width: auto;
    margin: 0;
    padding: 50px 0 0;
  }

  .section-inner > .section-harf:last-child{
    flex: 4;
    width: auto;
  }

  #stay-sec .section-heading,
  #bbqsauna-sec .section-heading,
  #alfa-sec .section-heading{
    padding: 0 0 10px;
    font-size: 1.5rem;
  }

  /* サブ見出し */
  .contents-copy{
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0;
    margin-bottom: 0;
  }

  /* 本文（キャッチコピーと左端揃え） */
  #stay-sec .letterfont,
  #bbqsauna-sec .letterfont,
  #alfa-sec .letterfont{
    font-size: 0.8rem;
    margin-left: 0;
    line-height: 1.8;
    color: #000;
    text-align: justify;
    letter-spacing: 0.03em;
  }

  #stay-sec .contents-textbox,
  #bbqsauna-sec .contents-textbox,
  #alfa-sec .contents-textbox{
    width: 100%;
    max-width: 430px;
    margin: 0 40px;
    padding-bottom: 0;
  }

  .contents-button-area{
    transform: scale(0.9);
    margin-top: 0;
  }

  /* 周辺観光：セクション全体に左右paddingを入れない（隠れ防止） */
  #spot-sec{ padding: 50px 0 0; }

  #spot-sec .section-heading{ padding: 0 40px 20px; }
  #spot-sec .spot-inner{ padding: 0 40px; }

  /* 見出しに被って隠れるのを防ぐ（この幅では食い込み弱め） */
  #spot-sec .spot-top{ margin-top: -6px; }

  #spot-sec .spot-contents-button-area{
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 20px;
  }

  #spot-sec .spot-contents-button{
    transform: scale(0.9);
    min-width: 0;
    flex: 1;
    max-width: 350px;
  }

  /* 画像ストリップは全幅表現 */
  #spot-sec .spot-strip{
    margin-left: -40px;
    margin-right: -40px;
    margin-top: 0;
    width: calc(100% + 80px);
  }

  /* 新着情報 */
  #news-sec{ padding: 50px 40px; }

  #news-sec .insta-embed-grid{
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  /* アクセス */
  #access-sec{ padding: 50px 40px 0; }

  #access-sec .access-inner{
    padding: 30px 0 0;
    grid-template-columns: 300px 1fr auto;
    gap: 10px;
  }

  #access-sec .access-img{ display: block; height: 200px; }

  #access-sec .access-center{ margin-right: 30px; align-self: center; }

  #access-sec .access-sub{
    font-size: 0.8rem;
    letter-spacing: 0;
    line-height: 1.5;
  }

  #access-sec .access-right{ padding: 0px 25px; }

  #access-sec .access-title{
    margin: 0 0 10px;
    font-size: 1.3rem;
    letter-spacing: 0.07em;
    line-height: 1.0;
  }

  #access-sec .access-address{
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.07em;
  }

  #access-sec .access-box-title{
    font-size: 0.85rem;
    letter-spacing: 0;
  }

  #access-sec .access-box-text{ font-size: 0.7rem; }

  #access-sec .map-embed{
    margin: 30px auto 0;
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
    max-width: none;
  }

  #access-sec .map-embed iframe{ height: 200px; }
}


/* ============================================
   841px〜949px：レスポンシブ
============================================ */
@media screen and (min-width: 841px) and (max-width: 949px) {

  /* セクション1〜3：左右比率（テキスト6：画像4） */
  .section-inner > .section-harf { min-width: 0; }

  .section-inner > .section-harf:first-child{
    flex: 6;
    width: auto;
    margin: 0;
    padding: 50px 0 0;
  }

  .section-inner > .section-harf:last-child{
    flex: 4;
    width: auto;
  }

  #stay-sec .section-heading,
  #bbqsauna-sec .section-heading,
  #alfa-sec .section-heading,
  #spot-sec .section-heading,
  #news-sec .section-heading,
  #access-sec .section-heading{
    padding: 0 0 10px;
    font-size: 1.5rem;
  }

  /* サブ見出し */
  .contents-copy{
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0;
    margin-bottom: 0;
  }

  /* 本文（キャッチコピーと左端揃え） */
  #stay-sec .letterfont,
  #bbqsauna-sec .letterfont,
  #alfa-sec .letterfont{
    font-size: 0.75rem;
    margin-left: 0;
    line-height: 1.8;
    color: #000;
    text-align: justify;
    letter-spacing: 0.03em;
  }

  #stay-sec .contents-textbox,
  #bbqsauna-sec .contents-textbox,
  #alfa-sec .contents-textbox{
    width: 100%;
    max-width: 430px;
    margin: 0 40px;
    padding-bottom: 0;
  }

  .contents-button-area{
    transform: scale(0.9);
    margin-top: 0;
  }

  /* 周辺観光：左右paddingは内側で持つ（隠れ防止） */
  #spot-sec{ padding: 30px 40px 0; }
  #spot-sec .spot-inner{background: none;}
  /* 見出しに被って隠れるのを防ぐ */
  #spot-sec .spot-top{ margin-top: -10px; margin-left: 80px; background: none;}
  #spot-sec .spot-desc{ line-height: 1.8; font-size: 0.75rem; }
  #spot-sec .spot-strip{
    margin-left: -40px;
    margin-right: -40px;
    margin-top: 0;
    width: calc(100% + 80px);
  }
  #spot-sec .spot-contents-button-area { transform: scale(0.8); }

  /* 新着情報 */
  #news-sec{ padding: 50px 40px; }
  #news-sec .insta-text{
	  font-size: 1.2rem;
	  margin-top: 20px;
	  margin-bottom: 20px;
	}
  #news-sec .insta-logo{ width: 20px; }
  #news-sec .insta-embed-grid{
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
	
  /* アクセス */
  #access-sec{ padding: 50px 40px 0; }
  #access-sec .access-inner { width: 100%; grid-template-columns: 200px 1fr auto; }
  #access-sec .access-img{ display: block; height: 150px; }
  #access-sec .access-center{ margin-right: 15px; align-self: center; }
  #access-sec .access-sub{
    font-size: 0.8rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
  #access-sec .access-right{ padding: 15px; }
  #access-sec .access-title{
    margin: 0 0 10px;
    font-size: 1.3rem;
    letter-spacing: 0.07em;
    line-height: 1.0;
  }
  #access-sec .access-address{
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.07em;
  }
  #access-sec .access-box-title{ font-size: 0.85rem; letter-spacing: 0; }
  #access-sec .access-box-text{ font-size: 0.7rem; }
  #access-sec .map-embed{
    margin: 30px auto 0;
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
    max-width: none;
  }
  #access-sec .map-embed iframe{ height: 200px; }
  #page-top { padding-top: 10px; padding-bottom: 8px; }
}



/* ============================================
   END OF FILE
   ============================================ */