/* ============================================
   index_sp.css（SP版トップページ）

   【概要】
   - 840px以下のスマホ端末向けデザイン
   - トップページ「ご宿泊セクション」表示対応
   - index_pc.css をベースにレスポンシブ化
   ============================================ */
/* ============================================
   SP版：PC用 / SP用 見出しの出し分け
   ============================================ */

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

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


/* ============================================
   1. ヒーローエリア（.hero）
   ============================================ */
.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%);
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.9s ease-in-out;
  opacity: 0;
}

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

.hero__logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  opacity: 1;
}

.hero__scrollHint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
}

.hero__scrollHint span {
  display: block;
  width: 28px;
  height: 28px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollAnim 1.4s infinite ease;
}

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

/* --- 注意書き（赤文字） --- */
.note { 
  color: #D32F2F;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0px;
}

/* ============================================
   2. ご宿泊セクション（#stay-sec）
   ============================================ */
#stay-sec,
#alfa-sec,
#news-sec {
  background: #fff;
  padding: 40px 40px;
}

#bbqsauna-sec,
#spot-sec,
#access-sec {
  background: #F0E8DF;
  padding: 40px 40px;
}

/* ラッパー縦並び */
#stay-sec .section-inner,
#bbqsauna-sec .section-inner, 
#news-sec .section-inner, 
#access-sec .section-inner  {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* テキストブロック */
#stay-sec .contents-textbox,
#bbqsauna-sec .contents-textbox,
#alfa-sec .contents-textbox {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* セクション見出し（和文） */
#stay-sec .section-heading,
#bbqsauna-sec .section-heading,
#spot-sec .section-heading,
#news-sec .section-heading,
#access-sec .section-heading  {
  display: flex;
  flex-direction: column-reverse;  /* ← 逆順にするポイント！ */
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
  text-align: center;
}

/* 英文（span）は小さめに */
#stay-sec .section-heading span, 
#bbqsauna-sec .section-heading span, 
#spot-sec .section-heading span, 
#news-sec .section-heading span, 
#access-sec .section-heading span    {
  font-size: 0.85rem;
  color: #999;
  line-height: 0.5;
  font-weight: 400;
  letter-spacing: 0.15rem;
}

/* キャッチコピー */
#stay-sec .copyfont,
#bbqsauna-sec .copyfont {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

/* 説明テキスト */
#stay-sec .letterfont,
#bbqsauna-sec .letterfont {
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
  font-size: 0.9rem;
  line-height: 2;
  color: #333;
  text-align: left;
  text-align: justify;
}

#stay-sec .letterfont br,
#bbqsauna-sec .letterfont br{
  display: none;
}

/* 強調表示（人数） */
#stay-sec .letterfont .dec-text {
  font-weight: 700;
  color: #D32F2F;
}

/* ボタンエリア */
#stay-sec .contents-button-area, 
#bbqsauna-sec .contents-button-area{
  display: flex;
  flex-direction: column;
  align-items: center; /* ← 中央揃えの本命！ */
  gap: 20px;
  margin: 15px auto 15px;
  width: 100%;
}

/* 共通ボタン */
#stay-sec .contents-button, 
#bbqsauna-sec .contents-button {
  max-width: 400px;
  width: 100%;
  padding: 12px 50px;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  transition: 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin: 0 auto; 
}


#stay-sec .contents-button:hover, 
#bbqsauna-sec .contents-button:hover{
  background: #735A54;
  transform: translateY(-2px);
}

#stay-sec .section-inner > .section-harf:first-child,
#bbqsauna-sec .section-inner > .section-harf:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 画像ラップ */
#stay-sec .section-harf:last-child, 
#bbqsauna-sec .section-harf:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* 各画像 */
#stay-sec .img-harf img, 
#bbqsauna-sec .img-harf img {
  width: 100%;
  display: block;
  height: 250px;         
  object-fit: cover;  
  object-position: 10% 70%;    
}


/* ============================================
   4. RADOHRE +αアルファ（#alfa-sec）
   ============================================ */
/* SP専用 */
#alfa-sec .section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

#alfa-sec .sub-en {
  font-size: 0.85rem;
  color: #999;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

#alfa-sec .main-title-area {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

#alfa-sec .main-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}

#alfa-sec .alpha {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}

#alfa-sec .alpha ruby {
  ruby-position: over;
}
#alfa-sec .alpha rt {
  font-size: 0.5rem;
  color: #666;
}

/* キャッチコピー */
#alfa-sec .copyfont {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

/* 説明テキスト */
#alfa-sec .letterfont {
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
  font-size: 0.9rem;
  line-height: 2;
  color: #333;
  text-align: left;
  text-align: justify;
}

#alfa-sec .letterfont br{
  display: none;
}

/* ボタンエリア */
#alfa-sec .contents-button-area{
  display: flex;
  flex-direction: column;
  align-items: center; /* ← 中央揃えの本命！ */
  gap: 20px;
  margin: 15px auto 15px;
  width: 100%;
}

/* 共通ボタン */
#alfa-sec .contents-button {
  max-width: 400px;
  width: 100%;
  padding: 12px 50px;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  transition: 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin: 0 auto; 
}

#alfa-sec .contents-button:hover{
  background: #735A54;
  transform: translateY(-2px);
}

#alfa-sec .section-inner > .section-harf:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* タブボタンエリア（スマホ横並びでも崩れにくく） */
#alfa-sec .tab-button-area {
  display: flex;
  flex-wrap: wrap; /* ← 折り返し対応 */
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

/* タブボタン */
#alfa-sec .tab-button {
  flex: 1; /* ← 均等に並ぶ */
  min-width: 90px; /* ← 折り返し制御 */
  padding: 10px 12px;
  background: #fff;
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

/* 下の罫線（通常は非表示） */
#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;

}
/* 小さい注記（最大00人） */
#alfa-sec .tab-button .index_small {
  font-size: 0.75em;
  font-weight: 500;
  margin-left: 4px;
}


/* メイン画像（上段） */
#alfa-sec .img-harf:first-child {
  width: 100%;
  aspect-ratio: 16 / 9; /* ← 縦横比で高さ調整 */
  overflow: hidden;
  border-bottom: 1px solid #fff;
  margin-top: 30px;
}

#alfa-sec .img-harf:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* アニメーション効果 */
#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枚画像（非表示） */
#alfa-sec .img-harf-row {
  display: none;
}

/* ============================================
   6. 周辺観光セクション（#spot-sec）
   ============================================ */

/* 中身のラッパー：縦並びレイアウト */
#spot-sec .spot-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 10px;
}

#spot-sec .spot-top {
	margin-bottom: -10px;
}

/* 上段：ハート + テキスト + カーミン */
#spot-sec .spot-icon {
  flex: 0 0 auto;
  padding: 0px;

  display: flex;               /* 横並びにする */
  justify-content: center;     /* 横方向中央揃え */
  align-items: center;         /* 縦方向中央揃え */
  gap: 10px;                   /* 各要素の間隔 */
}

/* アイコン画像（ハート／カーミン） */
#spot-sec .spot-icon img {
  width: 45px;
  height: auto;
  display: block;
  padding: 10px 0;
}

/* 中央のテキストブロック */
#spot-sec .spot-text {
  width: 170px;
  margin: 0 auto;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  padding-bottom: 0px;
}

/* 強制改行を無効に */
#spot-sec .spot-text br {
  display: none;
}

/* 太字の強調テキスト */
#spot-sec .spot-text span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* 質問見出し（中央） */
#spot-sec .spot-question {
  text-align: center;
  margin: 0;
}

/* 日本語タイトル */
#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%;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 2;
  color: #333;
  text-align: justify;
  padding: 0px;
}

/* 強制改行を無効に */
#spot-sec .letterfont br {
  display: none;
}

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

/* カプセルボタン */
#spot-sec .spot-contents-button {
  min-width: 350px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  background: #fab9d1;
  color: #000;
  font-weight: 600;
  font-size: 1.2rem;
  transition: opacity 0.2s ease, transform 0.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-sec .spot-strip {
  margin-left: -40px;
  margin-right: -40px;
  width: calc(100% + 80px);
  margin-top: 40px;
}

/* 表示枠（オーバーフロー隠す） */
#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;
}

/* スライド1枚：正方形 */
#spot-sec .spot-slide {
  flex: 0 0 16.6667vw;  /* 画面幅の1/6で表示 */
  max-width: 200px;     /* 拡大しすぎ防止 */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* アニメーション定義 */
@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公式埋め込み／スマホ対応：横スクロール）
   ============================================ */

/* ---------- INSTAGRAM ラベル ---------- */
#news-sec .insta-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 20px auto 10px;
  text-align: center;
}

#news-sec .insta-logo {
  width: 20px;
  height: auto;
  display: block;
}

/* ---------- 埋め込み 横スクロール ---------- */
#news-sec .insta-embed-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding: 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* ---------- Instagram埋め込み：カード風 ---------- */
#news-sec .insta-embed-grid .instagram-media {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;

  background: #fff;
  border-radius: 10px;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}

#news-sec .insta-embed-grid .instagram-media:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* ---------- 一覧リンク ---------- */
#news-sec .insta-more {
  margin-top: 30px;
  text-align: center;
}

#news-sec .insta-more a {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  text-decoration: underline solid 1px #666;
  text-underline-offset: 8px;
}

/* ============================================
   8. セクション6：アクセス情報
   ============================================ */

/* アクセス全体：下の余白を詰める */
#access-sec {
  color: #000;
  padding-bottom: 0px;
}

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

/* 内部レイアウト（横並び＋SP折り返し） */
.access-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* 中央：施設情報（ラドーレ神河の見出し） */
#access-sec .access-center {
  padding: 0;
  margin: auto;
  text-align: center;
  max-width: 600px;
}

/* サブテキスト（小さめ、細字） */
#access-sec .access-sub {
  margin: 0 0 3px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* 住所ブロック全体は左寄せ */
.access-address {
  text-align: left;
  margin: 0;  
  font-size: 1rem;
  padding: 0;
}

/* 郵便番号だけ左寄せ（補強） */
.access-address p:first-child {
  text-align: left;
}

/* メインタイトル（RADOHRE 神河） */
#access-sec .access-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
}

/* ルビの位置 */
#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-box {
  background: #fff;
  padding: 5px 25px 20px;
  margin: 20px auto 0px;
}

/* 各項目のタイトル（電車でのアクセスなど） */
.access-box-title {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 0px;
}

/* タイトル横の棒アイコン */
.access-box-title .title-icon {
  width: 6px;
  height: 14px;
  margin-right: 8px;
}

/* 各アクセス説明文 */
.access-box-text {
  font-size: 0.85rem;
  margin-left: 16px;
  line-height: 1.6;
}

/* ============================================
   650pxまでの微調整のレスポンシブ
============================================ */
@media screen and (max-width: 650px) {
	
/* 画像 */
#access-sec .access-img { margin-bottom: 15px; }
	
/* 中央エリア */
#access-sec .access-center { margin-left: 20px; margin-right: 20px; }
	
/* メインタイトル（RADOHRE 神河） */
#access-sec .access-title { font-size: 1.4rem; }
	
/* サブテキスト（小さめ、細字） */
#access-sec .access-sub { font-size: 0.8rem; }

/* 住所ブロック全体は左寄せ */
.access-address { font-size: 0.95rem; }
	
/* アクセス情報ボックス */
.access-box { margin: 15px auto 0px; }
}

/* Googleマップ：横幅いっぱいに広げる */
#access-sec .map-embed {
  margin: 0 auto;
  margin-left: -40px;
  margin-right: -40px;
  width: calc(100% + 80px);
  max-width: none;
}

/* 地図の高さ・上下余白除去 */
#access-sec .map-embed iframe {
  display: block;
  width: 100%;
  height: 200px;
  margin: 0 !important;
  border: none;
}

/* 「TOPへ戻る」ボタンの上の余白を詰める */
#page-top {
  margin-top: 0 !important;
}

/* ============================================
   415pxまでの微調整のレスポンシブ
============================================ */
@media screen and (max-width: 415px) {
	
#stay-sec, #bbqsauna-sec, #alfa-sec, #news-sec { padding: 40px 30px; }
#spot-sec, #access-sec { padding: 40px 30px 0px; }
	
/* 見出し */
#stay-sec .section-heading,
#bbqsauna-sec .section-heading,
#alfa-sec .section-heading,
#spot-sec .section-heading,
#news-sec .section-heading,
#access-sec .section-heading { font-size: 1.3rem; }

/* キャッチコピー */
#stay-sec .copyfont,
#bbqsauna-sec .copyfont,
#alfa-sec .copyfont { font-size: 0.95rem; }

/* 説明テキスト */
#stay-sec .letterfont,
#bbqsauna-sec .letterfont,
#alfa-sec .letterfont,
#spot-sec .letterfont { font-size: 0.8rem; line-height: 1.7; }

/* ボタンエリア */
#stay-sec .contents-button-area, 
#bbqsauna-sec .contents-button-area,
#alfa-sec .contents-button-area	{ margin: 10px auto 0px; }
	
/* 共通ボタン */
#stay-sec .contents-button, 
#bbqsauna-sec .contents-button, 
#alfa-sec .contents-button { padding: 10px 30px; font-size: 0.9rem; }
	
/* タブボタンエリア（flex） */
#alfa-sec .tab-button-area {
  gap: 15px;
  margin-bottom: 18px;
  flex-wrap: wrap; /* ← 折り返しを許可（重要） */
}

/* 各タブボタン */
#alfa-sec .tab-button {
  flex: 1 1 auto;           /* ← 固定幅ではなく、伸縮する */
  min-width: 30%;           /* ← 最小幅指定（必要なら調整） */
  max-width: 100%;          /* ← はみ出さないように制限 */
  padding: 6px 10px;        /* ← 横のpaddingを少し詰める */
  font-size: 0.85rem;
  text-align: center;
  white-space: normal;      /* ← 折り返しOKにする（重要） */
  word-break: break-word;   /* ← 単語途中でも折り返し */
}
/* スクロールする画像ストリップ（全幅） */
#spot-sec .spot-strip {
  margin-left: -30px;
  margin-right: -30px;
  width: calc(100% + 60px);
  margin-top: 25px;
}
	
/* セクション全体の余白調整 */
#spot-sec .spot-inner { gap: 20px; }

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

/* 質問文（中央） */
#spot-sec .spot-question { padding: 0 10px; }
	
/* 日本語 */
#spot-sec .spot-q-ja { font-size: 1rem; margin-bottom: 5px; }
	
/* 質問文（中央） */
#spot-sec .spot-q-en { font-size: 0.75rem; }

/* カプセルボタンの幅調整 */
 #spot-sec .spot-contents-button { 
	min-width: 280px;
    font-size: 0.9rem;
    height: 45px;
  }
/* スライド1枚：正方形 */
#spot-sec .spot-slide { max-width: 150px; }

/* 各アクセス説明文 */
.access-box-text { font-size: 0.75rem; }


/* ============================================
   新着情報セクション（SP）
   ============================================ */
.news-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 35px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.news-block {
  background: #fff;
}

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

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

.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;
  flex-direction: column;
  gap: 10px;
  padding: 18px 12px;
  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.75rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.news-text {
  font-size: 0.9rem;
  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: 1fr;
  gap: 15px;
  margin-bottom: 25px;
  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(-3px);
  box-shadow: 0 5px 15px 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(-3px);
  box-shadow: 0 5px 15px 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: 25px;
}

.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;
}

}