@charset "UTF-8";
/* =======================================================
   style.css
   いちのせき宿泊施設応援割 LP — 統合スタイルシート
   構成:
     1. Google Fonts import
     2. Design Tokens（CSS変数）
     3. Reset & Base
     4. 共通ユーティリティ
     5. 共通コンポーネント（サイドラベル / 見出し / intro / ボタン / ドット）
     6. #SCHEDULE    キャンペーンスケジュール
     7. #HOWTO      ご利用の流れ
     8. #HIGHLIGHT       おすすめスポット・温泉
     9. #GASTRONOMY  一関市の美食
    10. #EVENTS      期間中のイベント
    11. #IMPORTANT   注意事項・よくある質問
    13. Breakpoint 600px
    14. Breakpoint 1500px
    15. prefers-reduced-motion
======================================================= */

/* =====================================================
   2. Design Tokens
===================================================== */
:root {
  /* --- Color Palette --- */
  --color-bg:            #f5f0e6;   /* ページ基本背景（クリーム） */
  --color-bg-warm:       #ede5d8;   /* ウォームベージュ（howto・footer近辺） */
  --color-bg-muted:      #e8e5dc;   /* くすみグレージュ（注意事項セクション） */
  --color-bg-footer:     #e8dfd0;   /* フッター背景 */
  --color-bg-copy:       #ddd4c4;   /* コピーライト帯 */

  --color-surface:       #ffffff;   /* カード・パネル白 */
  --color-surface-q:     #f0ebe0;   /* FAQ Q行の薄ベージュ */
  --color-orange-pale:   #fdf3ed;   /* オレンジ系薄背景 */

  --color-sage:          #7c9b8a;   /* セージグリーン（メインアクセント） */
  --color-sage-light:    #D6DBC9;   /* セージ薄め */
  --color-sage-pale:     #dde8e2;   /* セージ最薄（バッジ背景等） */

  --color-orange:        #FF5800;   /* オレンジ（CTAボタン・強調） */

  --color-brown:         #4a2f1a;   /* ダークブラウン（見出し・サイドラベル） */
  --color-brown-light:   #90674A;   /* ミドルブラウン（サブテキスト・罫線） */

  --color-text:          #3a3028;   /* 本文テキスト */
  --color-muted:         #8a7f76;   /* 補足テキスト・キャプション */

  --color-border:        #d9cfc2;   /* 汎用ボーダー */
  --color-rule:          #c8b89a;   /* 見出し横罫線 */

  /* --- Border Radius --- */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-pill: 70px;

  /* --- Typography --- */
  --font-body:   'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'YuGothic', sans-serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;

}


/* =====================================================
   3. Reset & Base
===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--color-bg);
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 画像をコンテナいっぱいに埋めるケース用 */
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

ul, ol {
  list-style: none;
}


/* =====================================================
   4. 共通ユーティリティ
===================================================== */

/* 筆記体クラス */
.script {
  font-family: var(--font-script);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* タブのフェードイン */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* コンテンツ幅 */
.contets_inner {
  margin: 0 auto;
	padding: 6em 0;
  display: flex;
  flex-direction: column;
}

/* セクション共通パディング (SP) */
.wrap_s {
  position: relative;
  overflow: hidden;
}


/* =====================================================
   5. 共通コンポーネント
===================================================== */


/* --- intro テキスト --- */
.intro_text {
  text-align: center;
  font-size: 1em;
  line-height: 1.95;
}

/* --- ドット装飾 --- */
.dot_orange {
  color: var(--color-orange);
  margin-right: 5px;
  font-size: 12px;
}

.dot_sage {
  color: var(--color-sage);
  margin-right: 5px;
  font-size: 11px;
  vertical-align: middle;
}

/* --- 共通CTAボタン基底 --- */
.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

/*
.btn-base:hover {
  opacity: 0.87;
  transform: translateY(-2px);
}
*/

/* オレンジ塗り */
.btn--fill {
  background: var(--color-orange);
  color: #fff;
  border: 5px solid var(--color-orange);
}

/* オレンジアウトライン */
.btn--outline {
  background: transparent;
  color: var(--color-orange);
  border: 5px solid var(--color-orange);
}

/* セージ塗り */
.btn--sage {
  background: var(--color-sage);
  color: #fff;
  border: 2px solid var(--color-sage);
}

/* セクション下部 中央配置ボタンラッパー */
.link_btn {
  text-align: center;
}

.link_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  width: 100%;
  max-width: 555px;
  padding: 14px 32px;
	
  background: var(--color-orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.link_btn a:after {
	content: "";
	width: 30px;
	height: 30px;
	
	background-image: url("common/images/arrow_img_white.svg");
	background-repeat: no-repeat;
	background-position: center left 1em;
	
}
.link_btn a:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}


/* =====================================================
   セクションタイトル（共通）
   SP : 画面幅いっぱいの横書き
   PC : セクション右側に固定された縦書き
===================================================== */
h2.sec_title {
  /* デザイン・フォント設定 */
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  color: #fff;
  background-color: #9c6c4c;

  /* SP：画面幅いっぱいの横書き */
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.15em;
  padding: 20px 15px;
  margin: 0 0 1.5em;
  box-sizing: border-box;
}

/* PC：縦書きでコンテンツ右上に固定配置 */
@media (min-width: 1500px) {
  h2.sec_title {
    /* 縦書きの指定 */
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl; /* IE・旧Edge用 */

    position: absolute;
    top: -1em;
    /*
      コンテンツ幅(max-width: 1500px)を基準に、
      画面右端からコンテンツ右端までの距離を計算。
      画面幅が縮まってもコンテンツ右上に追従する。
    */
    right: max(2em, calc((100% - 1500px) / 2 + 0em));
    margin: 0;
    width: auto;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: left;
    font-size: 28px;
    padding: 40px 16px;
    letter-spacing: 0.2em;
	
	  z-index: 100;
  }
}


/* =====================================================
   メインビジュアル
===================================================== */
.mainvisual{
	max-width: 1400px;
	margin: 0 auto;
}

/* =====================================================
   6. #ABOUT  応援割について
===================================================== */
/* ーーーーーーーーーーーーーーー
			sp 
ーーーーーーーーーーーーーーー */
#ABOUT {
	
	width: 100%;
	background: var(--color-bg);
	padding: 0;
	margin-top: 2em;
	
  background-image: url("images/bg_about.jpg");
  background-position: center;
  border-top: 6px solid var(--color-brown-light); 
  border-bottom: 6px solid var(--color-brown-light);
}

.about_wrap {
  width: 90%;
	margin: 0 auto;
}

.contets_inner.about {
  width: 100%;
  padding: 3em 0;
  display: flex;
  flex-direction: column; /* 縦並び */
  justify-content: center;
  align-items: center;
  gap: 32px; /* スマホ用に適度な間隔 */
}

.img_area{
	width: 100%;
}
.text_area p{
  font-size: 1.2em;
  text-align: left;
}
.text_area img {
  padding: 2em 0; /* スマホ用に余白を縮小 */
  margin: 0 auto;
}

.decoration_area {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}
.decoration_area img{
  width: 50%;
}


/* ーーーーーーーーーーーーーーー
			pc
ーーーーーーーーーーーーーーー */

@media (min-width: 1500px) {
  #ABOUT {
	 width: 100%;
	margin-top: 6em;
    position: relative;
    overflow: visible;
	  
	  z-index: 1;
    border-top: 10px solid var(--color-brown-light);
    border-bottom: 10px solid var(--color-brown-light);
  }
  .about_wrap {
  }

  .contets_inner.about {
    max-width: 1200px;
    padding: 3em 0;
    flex-direction: row;
    gap: 80px;
  }

  .text_area img {
    padding: 4em 0;
  }

  .decoration_area {
    gap: 1em;
  }
  .decoration_area img {
    width: 50%;
    padding: 1em;
  }
}

@media (min-width: 2000px) {
	/* 飾り文字	*/
	 #ABOUT::after{
	  content: "";
	  position: absolute; 
	  display: block;
	  width: 180px;       /* 飾り画像の横幅 */
	  height: 950px; /* 飾り画像の縦幅 */

	  top: 0;
	  right: 5%;

	  /* ── 背景画像の設定 ── */
	  background-image: url("images/bg_text_ICHINOSEKI.png"); 
	  background-size: contain;    /* 画像が潰れないように枠内に収める */
	  background-repeat: no-repeat; /* 1枚だけ表示（繰り返さない） */
	  background-position: center;
	  opacity: 0.8;           /* 20%くらいの薄さにすると背景に溶け込みます */

	  z-index: 5;             /* 背景のすぐ上、コンテンツの裏に敷く */
	}
}
/* =====================================================
   6. #SCHEDULE  キャンペーンスケジュール
===================================================== */

/* --- スマホ版（ベース記述：まずここが全員に適用される） --- */
#SCHEDULE {
  background: var(--color-bg);
  position: relative;
  width: 100%;
	padding: 0;
	margin-top: 4em;
}

.schedule_wrap {
  width: 90%;
  max-width: 1600px;
	margin: 0 auto;
  background-color: rgba(157, 178, 157, 0.2);
  border-radius: 20px;
}

.contets_inner.schedule {
  width: 100%;
  padding: 3em 16px;
  display: flex;
  flex-direction: column;
}

/* --- ガントチャート --- */
.schedule_img {
  border-radius: 0 0 20px 20px;
  padding: 24px 16px 20px;
}

.schedule_img__title {
  text-align: center;
  width: 100%; 
  max-width: 470px;
  margin: 0 auto 20px;
}
.schedule_img__title img {
  width: 100%;
  height: auto;
}

/* --- ガントチャート --- */
.schedule_img {
  border-radius: 0 0 20px 20px;
  padding: 28px 20px 20px;
}

/* =====================================================
   ガントチャート本体
   14列グリッド（7ヶ月 × 2分割 = 前半/後半で細かく配置）
   SP: 横スクロール / PC: 全幅表示

   列の対応:
     7月前  = col 1   7月後  = col 2
     8月前  = col 3   8月後  = col 4
     9月前  = col 5   9月後  = col 6
     10月前 = col 7   10月後 = col 8
     11月前 = col 9   11月後 = col 10
     12月前 = col 11  12月後 = col 12
     1月前  = col 13  1月後  = col 14

   第1弾: 7月頭〜8月末   → col 1 / 5
   第2弾: 8月半ば〜10月末 → col 4 / 9
   第3弾: 10月上旬〜1月末 → col 7 / 15
===================================================== */
.gantt {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gantt__inner {
  min-width: 480px;
  width: 100%;
}

/* ---- ヘッダー（月ラベル・7列） ---- */
.gantt__header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--color-sage);
  border-radius: 8px 8px 0 0;
}

.gantt__month {
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 4px;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.gantt__month:last-child { border-right: none; }

/* ---- ボディ ---- */
.gantt__body {
  position: relative;
  background: #fff;
  border: 1px solid #707070;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 縦グリッド線（7列で月境界を引く） */
.gantt__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  pointer-events: none;
  z-index: 0;
}
.gantt__gridline {
  border-right: 1px dashed rgba(112,112,112,0.5);
}
.gantt__gridline:last-child { border-right: none; }

/* ---- バー行（14列グリッド = 月×2） ---- */
.gantt__row {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  padding: 0 4px;
  position: relative;
  z-index: 1;
  height: 44px;
  min-height: 44px;
  align-items: center;
}

/* ---- バー共通：外枠（矢印型・色付き） ---- */
.gantt__bar {
  height: 100%;
  position: relative;
  overflow: hidden;
  /* 矢印型シェイプ（外枠） */
  clip-path: polygon(
    0 0,
    calc(100% - 14px) 0,
    100% 50%,
    calc(100% - 14px) 100%,
    0 100%
  );
}

/* ---- バー内側：実際の塗り＆テキストを持つレイヤー ---- */
.gantt__bar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  padding: 6px 26px 6px 14px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  /* 内側も同じ矢印型に。枠線分だけ小さくすることで
     外枠の色が縁取りのように見える */
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 50%,
    calc(100% - 12px) 100%,
    0 100%
  );
}
/* ---- テキスト ---- */
.gantt__bar-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: block;
  line-height: 1.3;

  text-align: center;
  color: #707070;
}

.gantt__bar-sub {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  opacity: 0.85;
  white-space: normal;
	
  text-align: center;
  color: #707070;
}

/* ---- 第1弾：7月頭〜8月末 col 1/5（塗りのみ・枠線なし） ---- */
.gantt__bar--1 {
  grid-column: 1 / 5;
  background: #FF5800;
}
.gantt__bar--1 .gantt__bar-inner {
  background: #FF5800;
  color: #fff;
  justify-content: center;
  align-items: center;
}
.gantt__bar--1 .gantt__bar-inner .gantt__bar-label {
  color: #fff;
}

/* ---- 第2弾：8月半ば〜10月末 col 4/9（白地・グレー枠） ---- */
.gantt__bar--2 {
  grid-column: 4 / 9;
  background: #707070;   /* 外枠の色 = 縁取り色 */
  padding: 2px;          /* この余白の分だけ枠線として見える */
}
.gantt__bar--2 .gantt__bar-inner {
  background: #E7E5DF;
  color: #707070;
	 align-items: center;
}

/* ---- 第3弾：10月上旬〜1月末 col 7/15（白地・グレー枠） ---- */
.gantt__bar--3 {
  grid-column: 8 / 15;
  background: #707070;
  padding: 2px;
}
.gantt__bar--3 .gantt__bar-inner {
  background: #E7E5DF;
  color: #707070;
	 align-items: center;
}


/* ---- 注意書き ---- */
.schedule_note {
  padding: 1em 0;
  font-size: 0.9em;
  font-weight: bold;
  text-align: left;
}

/* =====================================================
   ガントチャート レスポンシブ
===================================================== */
@media (min-width: 600px) {
  .gantt        { overflow-x: visible; }
  .gantt__inner { min-width: 0; }
  .gantt__month { font-size: 14px; padding: 11px 4px; }
  .gantt__bar-label { font-size: 14px; }
  .gantt__bar-sub   { font-size: 10px; }
  .gantt__row   { min-height: 48px; }
}

@media (min-width: 1500px) {
  .gantt__month { font-size: 15px; padding: 13px 8px; }
  .gantt__bar-inner { padding: 8px 30px 8px 16px; }
  .gantt__bar-label { font-size: 15px; }
  .gantt__bar-sub   { font-size: 11px; }
  .gantt__row   { min-height: 54px; }

.schedule_note {
  padding: 1em 0;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
}
}


/* --- タブ --- */
.schedule_tab_wrap {
  width: 80%;
  max-width: 623px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  background-color: #fff;
}

.schedule_tabs {
  display: flex;
  align-items: center;
}

.tab_btn {
  flex: 1;
  padding: 1em 0.5em;
  border: none;
  color: var(--color-muted);
  background: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.tab_btn--active { 
  background: var(--color-orange);
  border-color: var(--color-orange);
  border-radius: 20px;
  color: #fff;
}

.tab_panel { 
  display: none;
}
.tab_panel--active { 
  display: block;
  animation: fadeIn 0.3s ease;
}

/* --- パネルグリッド（スマホ版は1カラム縦並び） --- */
.panel_grid {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.panel_left {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.info_block {
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}
.info_block:first-child { 
  padding-top: 0;
}
.info_block:last-child  { 
  border-bottom: none;
}

.info_block__head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--color-surface);
  background: var(--color-sage);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.info_icon { 
  width: 45px;
}
.info_icon img {
  width: 100%;
  height: auto;
}

.info_block__body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text);
}

.info_block--count .info_block__body { 
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.count_num {
  font-size: 22px;
  font-weight: 400;
  color: var(--color-orange);
}
.count_num strong { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.count_note       { font-size: 11px; color: var(--color-muted); }

.panel_right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.coupon_section {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.coupon_section--target {
  border-color: #f0c4ac;
}

.coupon_section__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 8px;
}
.coupon_section__title--normal { background: var(--color-sage);   color: #fff; }
.coupon_section__title--target { background: var(--color-orange); color: #fff; }

.coupon_target { font-size: 12px; color: var(--color-muted); margin-bottom: 12px; line-height: 1.6; }
/* スマホ版：バッジを確実に縦1列に並べる */
.coupon_badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
}

.coupon_badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--color-sage-pale);
  border: 1px solid var(--color-sage-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  width: 100%; 
  box-sizing: border-box;
}
.coupon_badge--highlight        { 
	background: var(--color-sage-light);
	border-color: var(--color-sage); 
}
.coupon_badge--target           { 
	background: #fce4d8; 
	border-color: #f5b89a;

}
.coupon_badge--highlight-target { 
	background: #f5c2ad;
	border-color: var(--color-orange); 
}

.coupon_badge__amount { 
  font-size: 14px; 
  font-weight: 800;
  color: var(--color-brown); 
  letter-spacing: 0.02em; 
}
.coupon_badge__cond   { 
  font-size: 10px; 
  font-weight: bold;
  color: var(--color-muted); 
  text-align: center; 
  line-height: 1.4; 
}

.coupon_max { 
  max-width: 200px;
  font-size: 16px; 
  font-weight: bold;
  text-align: center; 
  color: var(--color-text); 
  margin: 0 auto;
  margin-bottom: 14px; 
  border-bottom: 2px solid var(--color-brown);
}
.coupon_max strong { 
  font-size: 28px; 
  font-weight: 800; 
  color: var(--color-orange); 
  letter-spacing: -0.02em; 
}

/* ボタン（スマホ用） */
.coupon_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 13px 20px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-sizing: border-box;
}
.coupon_btn:hover { 
  opacity: 0.85; 
  transform: translateY(-1px);
}
.coupon_btn--normal { 
  background: #fff;   
  color: var(--color-orange); 
  border: 5px solid var(--color-orange); 
}
.coupon_btn--normal::after{ 
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("common/images/arrow_img_orange.svg");
  background-repeat: no-repeat;
  background-position: center left 1em;
}
.coupon_btn--target { 
  background: var(--color-orange); 
  color: #fff; 
  border: 5px solid var(--color-orange); 
}
.coupon_btn--target::after{ 
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("common/images/arrow_img_white.svg");
  background-repeat: no-repeat;
  background-position: center left 1em;
}

/*   13. Breakpoint 600px（タブレット）*/
@media (min-width: 600px) {

  /* --- #SCHEDULE --- */
  #SCHEDULE { 
	  padding: 64px 32px;
	  padding-right: 80px;
	}

  .schedule_img { 
	  padding: 32px 28px 24px;
	}
  .tab_btn      { 
	  font-size: 15px; 
	  padding: 11px 16px;
	}
  .panel_grid   { 
	  padding: 28px;
	}
/*

  .onsen_gallery { margin: 0 -32px; gap: 6px; }
  .onsen_gallery__item { flex: 0 0 260px; }
  .onsen_gallery__item:first-child { margin-left: 32px; }
  .onsen_gallery__item:last-child  { margin-right: 32px; }
*/
}

/* slickの等速暴走を防ぐための必須CSS */
.gallery_side .slick-track {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
/* ギャラリー全体の枠組みのリセット */
.gallery_side {
  display: block !important; /* Flexboxが残っているとslickと干渉するのでブロック化 */
  width: 100% !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 各スライド（画像を包む枠）の調整 */
.gallery_side li {
  padding: 0 5px;
  box-sizing: border-box;
}

/* 中の画像が枠いっぱいに広がるようにする */
.gallery_side li img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 前述の等速暴走防止の記述も合わせて残しておきます */
.gallery_side .slick-track {
  display: flex !important;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* PC */
@media (min-width: 1500px) {

  /* 共通追加パーツ */
  .wrap_s { 
    width: 100%;
  }
  .heading_ja { 
    font-size: 22px; 
  }

  /* セクション全体の上書き */
  #SCHEDULE {
    margin-top: 6em;
    position: relative;
    overflow: visible;
    padding: 80px 48px; 
    padding-right: 96px;
  }
  .contets_inner.schedule {
    max-width: 900px;
    padding: 6em 0;
    gap: 0px;
  }

  .schedule_img {
    padding: 28px 20px 20px;
  }
  .schedule_img__title {
  }
  .gantt img {
    min-width: 0;
  }

  .schedule_tab_wrap {
    width: 623px;
  }
  .tab_btn {
    padding: 1em 2em;
  }

  /* PC版：パネルグリッドを左右2カラムに展開 */
  .panel_grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 28px;
  }
  
  /* 左カラム：境界線と固定幅を適用 */
  .panel_left {
    flex: 0 0 300px;
    border-right: 1px solid var(--color-border);
    padding-right: 28px;
  }
  
  /* 右カラム：可変幅 */
  .panel_right {
    flex: 1;
  }

  /* クーポンバッジ：PC版では横並びにする */
  .coupon_badges {
    flex-direction: row;
    gap: 4px; /* 安全な単位に調整 */
  }

  /* 文字サイズ・カウント関連の上書き */
  .info_block__head { 
    font-size: 1em;
  }
  .count_num { 
    font-size: 20px;
  }
  .count_num strong {
    font-size: 32px;
  }
}


@media (min-width: 2000px) {
	/* 飾り文字	*/
	 #SCHEDULE::after{
	  content: "";
	  position: absolute; 
	  display: block;
	  width: 180px;       /* 飾り画像の横幅 */
	  height: 1000px; /* 飾り画像の縦幅 */

	  top: 20%;
	  left: 0%;

	  /* ── 背景画像の設定 ── */
	  background-image: url("images/bg_text_SCHEDULE.png"); 
	  background-size: contain;    /* 画像が潰れないように枠内に収める */
	  background-repeat: no-repeat; /* 1枚だけ表示（繰り返さない） */
	  background-position: center;
	  opacity: 0.8;           /* 20%くらいの薄さにすると背景に溶け込みます */

	  z-index: 5;             /* 背景のすぐ上、コンテンツの裏に敷く */
	}
	.schedule_img__title{
	  width: 100%;
	}
}
/* =====================================================
   7. #HOWTO  ご利用の流れ
===================================================== */

/* --- スマホ --- */
#HOWTO {
  margin-top: 4em;
  background: var(--color-bg);
  position: relative;
  width: 100%;
	padding: 0;
}

#HOWTO h2 {
}

.howto_wrap {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-bg-warm);
}

.contets_inner.howto {
  width: 100%;
  background: var(--color-bg-warm);
  gap: 40px;
  padding: 48px 16px 56px; /* スマホ用にパディングを調整 */
  display: flex;
  flex-direction: column;
}

/* --- ステップカード（スマホ版は1カラム） --- */
.howto_flex {
  display: grid;
  grid-template-columns: 1fr; /* スマホでは1列 */
  gap: 32px; /* 上下の数字バッジが被らないよう間隔を広めに確保 */
}

.flex_item {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 52px 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step_num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  background: var(--color-surface);
  color: var(--color-orange);
  
  font-size: 18px;
  font-weight: 800;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-style: italic;
}

.step_icon { 
  width: 64px; 
  height: 64px; 
  display: flex;
  align-items: center; 
  justify-content: center; 
  margin: 4px 0 0;
}
.step_icon svg { 
  width: 100%; 
  height: 100%; 
}

.step_title { 
  font-size: 15px; 
  font-weight: 800; 
  color: var(--color-brown);
  letter-spacing: 0.04em; 
  line-height: 1.4; 
}
.step_desc { 
  font-size: 13px; 
  color: var(--color-muted); 
  line-height: 1.85; 
  text-align: left; 
  width: 100%; 
}

/* --- CTAボタン群 --- */
.howto_btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  width: 100%;
}

.howto_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* スマホでは画面幅いっぱいにフィット（max-width内で制限） */
  max-width: 431px; /* 元の幅サイズを最大幅として設定 */
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-sizing: border-box;
}
.howto_btn:hover { 
  opacity: 0.85;
  transform: translateY(-2px);
}
.howto_btn--outline { 
  color: var(--color-orange); 
  border: 5px solid var(--color-orange); 
  background: #fff; 
}
.howto_btn--outline::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("common/images/arrow_img_orange.svg");
  background-repeat: no-repeat;
  background-position: center left 1em;
}
.howto_btn--fill { 
  color: #fff; 
  background: var(--color-orange); 
  border: 5px solid var(--color-orange); 
}
.howto_btn--fill::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("common/images/arrow_img_white.svg");
  background-repeat: no-repeat;
  background-position: center left 1em;
}


/* --- PC --- */
@media (min-width: 1500px) {
#HOWTO {
	width: 100%;
	padding: 0;
	margin: 0;
    margin-top: 6em;
	position: relative;
    overflow: visible;
  }
	
	.howto_wrap{
		padding-top: 7em;
		padding-bottom: 7em;
	}
  .contets_inner.howto {
    max-width: 900px;
    padding: 6em 0;
  }

  .howto_flex { 
	  grid-template-columns: repeat(4, 1fr); 
	  gap: 16px; 
	}
  .flex_item  { 
	  padding: 52px 16px 28px; 
	}
  .howto_btns { 
	  flex-direction: row;
	  justify-content: center;
	  gap: 20px;
	}
}

@media (min-width: 2000px) {
	/* 飾り文字	*/
	 #HOWTO::after{
	  content: "";
	  position: absolute; 
	  display: block;
	  width: 180px;       /* 飾り画像の横幅 */
	  height: 880px; /* 飾り画像の縦幅 */

	  top: 0;
	  right: 0;

	  /* ── 背景画像の設定 ── */
	  background-image: url("images/bg_text_HOWTOUSE.png"); 
	  background-size: contain;    /* 画像が潰れないように枠内に収める */
	  background-repeat: no-repeat; /* 1枚だけ表示（繰り返さない） */
	  background-position: center;
	  opacity: 0.8;           /* 20%くらいの薄さにすると背景に溶け込みます */

	  z-index: 5;             /* 背景のすぐ上、コンテンツの裏に敷く */
	}
	.schedule_img__title{
	  width: 100%;
	}
}

/* =====================================================
   8. #HIGHLIGHT  一関市の見どころ
===================================================== */

#HIGHLIGHT {
  background: var(--color-bg);
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 4em;
  overflow: visible;
}

/* 背景の大きな飾り画像（セクション全体の背面） */
.highlight_decoration {
  display: none;
}

/* 右上の飾り画像（::before） */
.highlight_wrap::before {
  display: none;
}

/* 左下の飾り画像（::after） */
.highlight_wrap::after {
  display: none;
}

@media (min-width: 900px) {
  .highlight_decoration {
    display: block;
    width: 70%;
    min-width: 1600px;
    position: absolute;
    top: 0;
    left: 15%;
    z-index: 0;
  }
}

/* --- 外枠ボーダー（茶色の角丸フレーム） --- */
.highlight_wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border: 6px solid var(--color-brown-light);
  border-radius: 20px;
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* 右上の飾り画像（::before） */
.highlight_wrap::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 1000px;
  height: 400px;
  background-image: url("images/highlight_decoration_right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
  pointer-events: none;
}

/* 左下の飾り画像（::after） */
.highlight_wrap::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 1000px;
  height: 1000px;
  background-image: url("images/highlight_decoration_left.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: -1;
  pointer-events: none;
}

.contets_inner.spots {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 16px 64px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px; /* おすすめスポットブロックと温泉ブロックの間隔 */
}

/* =====================================================
   おすすめスポット ブロック
===================================================== */
.spots_wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.spots_img__title {
  padding: 2em 0; /* スマホ用にややコンパクトに */
  text-align: center;
}
.spots_img__title img {
  max-width: 100%;
  height: auto;
}
.contets_inner.spots {
  width: 100%;
  max-width: 900px;
  padding: 48px 16px 64px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px; /* スマホ用に間隔を調整 */
}

/* --- 外枠フレーム --- */
.section_frame {
  position: relative;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 16px 48px; /* 左右パディングをスマホ用に微調整 */
}

/* --- スポットグリッド（スマホは1列） --- */
.spots_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.spot_card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74,47,26,.06);
  display: flex;
  flex-direction: column;
}

.spot_card__img {
   position: relative;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.spot_card__img img { 
  width: 100%;
  aspect-ratio: 4 / 3; 
  object-fit: cover; 
  display: block;
  transition: transform 0.4s ease; 
}

.spot_card__body { 
  padding: 16px 18px 20px; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}
.spot_card__name { 
  font-size: 15px; 
  font-weight: 800; 
  color: var(--color-brown); 
  letter-spacing: 0.04em; 
  display: flex; 
  align-items: center; 
}
.spot_card__desc { 
  font-size: 13px; 
  color: var(--color-text); 
  line-height: 1.9; 
}

/* --- 温泉カード --- */
.onsen_card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74,47,26,.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.onsen_card__body { 
  padding: 24px 20px 20px; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}
.onsen_card__name { 
  font-size: 15px; 
  font-weight: 800; 
  color: var(--color-brown); 
  letter-spacing: 0.04em; 
  display: flex; 
  align-items: center; 
}
.onsen_card__desc { 
  font-size: 13px; 
  color: var(--color-text); 
  line-height: 1.95; 
}
.onsen_card__img  { 
  position: relative;
  width: 100%;
  overflow: hidden;
}
.onsen_card__img img { 
  width: 100%; 
  aspect-ratio: 16 / 9; 
  object-fit: cover;
  display: block;
}

/* --- 温泉ギャラリー（横スクロール帯） --- */
.onsen_gallery {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -16px; /* 親要素のpadding（16px）を相殺 */
}
  .section_frame { padding: 48px 32px 56px; }

/* --- PC --- */
@media (min-width: 1500px) {

	#HIGHLIGHT{
		margin-top: 6em;
		position: relative;
		 overflow: visible !important; /* はみ出た部分を切り落とさずに表示 */
		z-index: 10;
	}
	#HIGHLIGHT h2.sec_title {
		position: absolute;
		top: -1em;
	}
  .spots_img__title {
    padding: 3em 0; 
  }

  .highlight_wrap {
    max-width: 1600px;
    margin: 0 auto;
    border: 10px solid var(--color-brown-light);
  }

  .contets_inner.spots {
    max-width: 900px;
    padding: 48px 16px 64px;
    gap: 56px;
  }

  .section_frame {
    padding: 40px 20px 48px;
  }

  .spots_grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .onsen_card          { flex-direction: row; align-items: stretch; }
  .onsen_card__body    { flex: 1; padding: 28px 24px; }
  .onsen_card__img     { flex: 0 0 45%; aspect-ratio: unset; min-height: 240px; }
  .onsen_card__img img { height: 100%; }


}

@media (min-width: 2000px) {
	/* 飾り文字	*/
	 #HIGHLIGHT::after{
	  content: "";
	  position: absolute; 
	  display: block;
	  width: 180px;       /* 飾り画像の横幅 */
	  height: 1000px; /* 飾り画像の縦幅 */

	  top: 25%;
	  left: 0;

	  /* ── 背景画像の設定 ── */
	  background-image: url("images/bg_text_HIGHLIGHTS.png"); 
	  background-size: contain;    /* 画像が潰れないように枠内に収める */
	  background-repeat: no-repeat; /* 1枚だけ表示（繰り返さない） */
	  background-position: center;
	  opacity: 0.8;           /* 20%くらいの薄さにすると背景に溶け込みます */

	  z-index: 5;             /* 背景のすぐ上、コンテンツの裏に敷く */
	}
}
/* =====================================================
   9. #GASTRONOMY  一関の美食
===================================================== */

#GASTRONOMY {
  background: var(--color-bg);
  position: relative;
  width: 100%;
	padding: 0;
	margin-top: 4em;
}

.gastronomy_wrap {
  width: 90%;
  margin: 0 auto;
background-image: 
  linear-gradient(rgba(237, 229, 216, 0.5), rgba(237, 229, 216, 0.5)), 
  url("images/bg_gastronomy.png");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}

.contets_inner.gastronomy {
  width: 100%;
  max-width: 900px;
  padding: 48px 16px 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* --- SP：反転せず、上画像・下テキストの一本道 --- */
.food_item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.food_item__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}
.food_item__img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.45s ease; 
}

.food_item__body { 
  padding: 24px 22px 28px; 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  justify-content: center; 
}

.food_item__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-brown);
  letter-spacing: 0.04em;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.food_item__sub  { 
	font-size: 13px;
	color: var(--color-brown-light); 
	letter-spacing: 0.08em;
	opacity: 0.8; 
	margin-top: -2px;
}
.food_item__desc { 
	font-size: 13px; 
	color: var(--color-text); 
	line-height: 1.95;
	margin-top: 4px; 
}


/* --- PC --- */
@media (min-width: 1500px) {
  
  #GASTRONOMY {
    width: 100%;
    margin-top: 6em;
    position: relative;
    overflow: visible;
  }

  .gastronomy_wrap {
    max-width: 1600px;
    margin: 0 auto;
  }

  .contets_inner.gastronomy {
    padding: 6em 0;
    gap: 40px; /* PC版のカード同士の間隔を少し広めに */
  }

  /* PC版：奇数を反転、偶数を通常にする */
  .food_item {
    flex-direction: row;
    min-height: 280px;
  }

  .food_item__img {
    width: 45%; 
    aspect-ratio: auto;
  }

  .food_item__body {
    width: 55%;
    padding: 40px;
  }
  .food_item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .food_item:nth-child(even) {
    flex-direction: row;
  }
}

@media (min-width: 2000px) {
  /* 飾り文字	*/
	 #GASTRONOMY::after{
	  content: "";
	  position: absolute; 
	  display: block;
	  width: 180px;       /* 飾り画像の横幅 */
	  height: 1000px; /* 飾り画像の縦幅 */

	  top: 20%;
	  right: 4%;

	  /* ── 背景画像の設定 ── */
	  background-image: url("images/bg_text_GASTRONOMY.png"); 
	  background-size: contain;    /* 画像が潰れないように枠内に収める */
	  background-repeat: no-repeat; /* 1枚だけ表示（繰り返さない） */
	  background-position: center;
	  opacity: 0.8;           /* 20%くらいの薄さにすると背景に溶け込みます */

	  z-index: 5;             /* 背景のすぐ上、コンテンツの裏に敷く */
		}

}

/* =====================================================
   10. #EVENTS  期間中のイベント
===================================================== */

#EVENTS {
  background: var(--color-bg);
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 4em;
}

.event_wrap {
  width: 90%;
  margin: 0 auto;
  background-color: #EEE0C7;
  border-radius: 20px;
}

.contets_inner.event {
  width: 100%;
  max-width: 900px;
  padding: 48px 16px 64px; /* スマホ用の安全な余白 */
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contets_inner.event > .intro_text {
  margin-bottom: 32px;
}

/* --- イベントグループ --- */
.event_group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}

/* --- 吹き出し --- */
.coupon_balloon {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 408px;
  margin: 0 auto;
  padding: 8px 0 4px;
}
.coupon_balloon img {
  max-width: 100%;
  height: auto;
}
.coupon_balloon__bubble {
  font-size: 15px; /* スマホ用の初期サイズ */
}

/* --- イベントカード --- */
.event_card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(74,47,26,.07);
  display: flex;
  flex-direction: column;
}

.event_card__img {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.event_card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* 月バッジ */
.month_badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--color-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  text-align: center;
  box-shadow: 0 2px 8px rgba(224,92,32,.35);
}

.event_card__body { 
  padding: 18px 18px 22px; 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}
.event_card__name { 
  font-size: 15px; 
  font-weight: 800; 
  color: var(--color-brown); 
  letter-spacing: 0.04em; 
  line-height: 1.5; 
  display: flex; 
  align-items: baseline; 
  flex-wrap: wrap; 
}
.event_card__desc { 
  font-size: 13px; 
  color: var(--color-text); 
  line-height: 1.92; 
}

/* フィーチャーカード（スマホは縦並び） */
.event_card--feature { 
  flex-direction: column; 
}

/* イベントグリッド（スマホは1列） */
.event_grid,
.event_grid--3col, 
.event_grid--2col { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 20px; 
}

/* CTAボタン群 */
.event_btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-top: 40px;
  width: 100%;
}

.event_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-sizing: border-box;
}
.event_btn:hover { 
  opacity: 0.85; 
  transform: translateY(-2px);
}
.event_btn--outline { 
  color: var(--color-orange); 
  border: 5px solid var(--color-orange); 
  background: #fff; 
}
.event_btn--outline::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("common/images/arrow_img_orange.svg");
  background-repeat: no-repeat;
  background-position: center left 1em;
}
.event_btn--fill { 
  color: #fff; 
  background: var(--color-orange); 
  border: 5px solid var(--color-orange); 
}
.event_btn--fill::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("common/images/arrow_img_white.svg");
  background-repeat: no-repeat;
  background-position: center left 1em;
}


/* --- ★ PC版（画面幅1500px以上のデスクトップ環境で上書き） --- */
@media (min-width: 1500px) {
  
  #EVENTS {
    width: 100%;
    margin-top: 6em;
    position: relative;
    overflow: visible;
    padding: 72px 32px 80px;
    padding-right: 80px;
  }

  .event_wrap {
    max-width: 1600px;
    margin: 0 auto;
  }

  .contets_inner.event {
    padding: 6em 0;
  }

  .coupon_balloon {
    width: 408px;
  }

  /* PC版：フィーチャーカードの横並び展開（追加分を反映） */
  .event_card--feature { 
    flex-direction: row; 
    align-items: stretch; 
    min-height: 220px; 
  }
  .event_card--feature .event_card__img { 
    flex: 0 0 52%; 
  }
  .event_card--feature .event_card__img img { 
    aspect-ratio: unset; 
    height: 100%; 
  }
  .event_card--feature .event_card__body { 
    flex: 1; 
    padding: 28px 24px; 
    justify-content: center; 
  }

  /* PC版：通常イベントグリッド2列（追加分を反映） */
  .event_grid--3col { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
  }
.event_grid--2col { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
  }

  /* PC版：CTAボタン横並びと幅（追加分を反映） */
  .event_btns { 
    flex-direction: row; 
    justify-content: center; 
    gap: 20px; 
  }
  .event_btn { 
    width: auto;
    min-width: 430px; 
  }
}

/* --- ★ 大型ディスプレイ向けPC版（さらに広い画面用の追加上書き） --- */
@media (min-width: 1500px) {
  #EVENTS { 
    padding: 80px 56px 88px; 
    padding-right: 104px; 
  }

  .event_card--feature { 
    min-height: 260px; 
  }
  .event_card--feature .event_card__img { 
    flex: 0 0 55%; 
  }
  
  .event_card__body { 
    padding: 20px 22px 26px; 
  }
  
  .coupon_balloon__bubble { 
    font-size: 18px; 
    padding: 18px 48px; 
  }
  
  .month_badge { 
    font-size: 13px;
    padding: 6px 12px;
  }
}

@media (min-width: 2000px) {
	
	  /* 飾り文字	*/
	 #EVENTS::after{
	  content: "";
	  position: absolute; 
	  display: block;
	  width: 180px;       /* 飾り画像の横幅 */
	  height: 1000px; /* 飾り画像の縦幅 */

	  top: 50%;
	  left: 0;

	  /* ── 背景画像の設定 ── */
	  background-image: url("images/bg_text_EVENT.png"); 
	  background-size: contain;    /* 画像が潰れないように枠内に収める */
	  background-repeat: no-repeat; /* 1枚だけ表示（繰り返さない） */
	  background-position: center;
	  opacity: 0.8;           /* 20%くらいの薄さにすると背景に溶け込みます */

	  z-index: 5;             /* 背景のすぐ上、コンテンツの裏に敷く */
	}
}
/* =====================================================
   11. #IMPORTANT  注意事項・よくある質問
===================================================== */

/* --- スマホ版（ベース記述：まずここが全員に適用される） --- */
#IMPORTANT {
  background: var(--color-bg);
  position: relative;
  overflow: visible;
  width: 100%;
  padding: 0;
  margin-top: 4em;
}

.important_wrap {

  width: 100%;
  padding: 0;
  background: var(--color-sage-light);
}

.contets_inner.important {
  width: 100%;
  max-width: 900px;
  gap: 40px;
  padding: 48px 16px 64px;
  display: flex;
  flex-direction: column;
}

.attention_wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 8px 24px;
  box-shadow: 0 2px 16px rgba(74,47,26,.06);
}

.attention_list { 
  display: flex; 
  flex-direction: column; 
}

.attention_row {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.attention_row:last-child { 
  border-bottom: none; 
}

.attention_row dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brown);
  letter-spacing: 0.04em;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.attention_row dd { 
  font-size: 13px; 
  color: var(--color-text); 
  line-height: 1.9; 
}

/* --- FAQ --- */
.faq_img__title {
  padding: 2em 0; 
  text-align: center;
}
.faq_img__title img {
  max-width: 100%;
  height: auto;
}

.faq_list { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}

.faq_item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(74,47,26,.07);
}

.faq_q {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--color-surface-q);
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}
.faq_q p { 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--color-brown); 
  line-height: 1.7; 
  letter-spacing: 0.02em; 
}

.faq_a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 20px;
  background: var(--color-surface);
}
.faq_a p { 
  font-size: 13px; 
  color: var(--color-text); 
  line-height: 1.92; 
}

.faq_label { 
  font-size: 15px; 
  font-weight: 800; 
  letter-spacing: 0.04em; 
  flex-shrink: 0; 
  line-height: 1; 
  padding-top: 2px; 
}
.faq_label--q { color: var(--color-brown); }
.faq_label--a { color: var(--color-sage); }


@media (min-width: 2000px) {

	  /* 飾り文字	*/
	 #IMPORTANT::after{
	  content: "";
	  position: absolute; 
	  display: block;
	  width: 180px;       /* 飾り画像の横幅 */
	  height: 1000px; /* 飾り画像の縦幅 */

	  top: 30%;
	  right: 4%;

	  /* ── 背景画像の設定 ── */
	  background-image: url("images/bg_text_IMPORTANT.png"); 
	  background-size: contain;    /* 画像が潰れないように枠内に収める */
	  background-repeat: no-repeat; /* 1枚だけ表示（繰り返さない） */
	  background-position: center;
	  opacity: 0.8;           /* 20%くらいの薄さにすると背景に溶け込みます */

	  z-index: 5;             /* 背景のすぐ上、コンテンツの裏に敷く */
	}

}
/* =====================================================
   12. #CONTACT  実施主体・お問い合わせ先
===================================================== */

/* --- スマホ版（ベース記述：まずここが全員に適用される） --- */
#CONTACT {
  position: relative;
  width: 100%;
  padding: 0;
  margin-top: 4em;
}

.contact_wrap {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  background-color: #ECE1D2;
  border-radius: 20px;
}

.contets_inner.contact {
  width: 100%;
  max-width: 900px;
  gap: 20px;
  padding: 48px 16px 64px;
  display: flex;
  flex-direction: column;
}
.contets_inner.contact .intro_text{
  text-align: left;
}

/* --- 実施主体 --- */
.sponsored_title {
	margin-top: 2em;
}
.sponsored_wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 8px 24px;
  box-shadow: 0 2px 16px rgba(74,47,26,.06);
}

.sponsored_list { 
  display: flex; 
  flex-direction: column; 
}

.sponsored_row {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.sponsored_row:last-child { 
  border-bottom: none; 
}

.sponsored_row dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brown);
  letter-spacing: 0.04em;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.sponsored_row dd { 
  font-size: 13px; 
  color: var(--color-text); 
  line-height: 1.9; 
}

/* --- 観光情報問い合わせ先 --- */
.tourist_title{
	margin-top: 2em;
}
.tourist_wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 8px 24px;
  box-shadow: 0 2px 16px rgba(74,47,26,.06);
}

.tourist_list { 
  display: flex; 
  flex-direction: column; 
}

.tourist_row {
  display: flex;
  flex-direction: column; /* スマホでは縦並び */
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.tourist_row:last-child { 
  border-bottom: none; 
}

.tourist_row dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brown);
  letter-spacing: 0.04em;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tourist_row dd { 
  font-size: 13px; 
  color: var(--color-text); 
  line-height: 1.9; 
}
.address{
	font-weight: normal;
}

/* PC */
@media (min-width: 1500px) {
  #CONTACT { 
    width: 100%;
    margin-top: 6em;
    position: relative;
    overflow: visible;
  }

  .contets_inner.contact {
    max-width: 900px;
    gap: 1;
    padding: 64px 20px 80px;
  }
	.contets_inner.contact .intro_text{
	  text-align: center;
	}

  /* 実施主体・お問い合わせ先 */
  .sponsored_row { 
    flex-direction: row; 
    align-items: baseline; 
    gap: 0; 
  }
  .sponsored_row dt { 
    flex: 0 0 400px; 
  }
  .sponsored_row dd { 
    flex: 1; 
  }
  .sponsored_wrap { 
    padding: 8px 40px; 
  }

  /* 実施主体・お問い合わせ先 */
  .tourist_row { 
    flex-direction: row; 
    align-items: baseline; 
    gap: 0; 
  }
  .tourist_row dt { 
    flex: 0 0 400px; 
  }
  .tourist_row dd { 
    flex: 1; 
  }
  .tourist_wrap { 
    padding: 8px 40px; 
  }

}

@media (min-width: 2000px) {

	  /* 飾り文字	*/
	 #CONTACT::after{
	  content: "";
	  position: absolute; 
	  display: block;
	  width: 180px;       /* 飾り画像の横幅 */
	  height: 900px; /* 飾り画像の縦幅 */

	  top: -5em;
	  left: 0;

	  /* ── 背景画像の設定 ── */
	  background-image: url("images/bg_text_CONTACT.png"); 
	  background-size: contain;    /* 画像が潰れないように枠内に収める */
	  background-repeat: no-repeat; /* 1枚だけ表示（繰り返さない） */
	  background-position: center;
	  opacity: 0.8;           /* 20%くらいの薄さにすると背景に溶け込みます */

	  z-index: 5;             /* 背景のすぐ上、コンテンツの裏に敷く */
	}

}



/* =======================================================
   共通設定（PC・スマホ共通のベース）
======================================================= */
.floating-banner {
  position: fixed;
  z-index: 999;
  display: flex;
  box-sizing: border-box;
}

.floating-banner__link {
  text-decoration: none;
  display: block;
  width: 100%;
}

/* ボタンの内側の枠組み（背景色や文字の調整） */
.banner_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: transform 0.2s ease, background-color 0.2s ease;
 
}

.banner_inner p {
  margin: 0;
  font-weight: 500;
  color: ver(--color-brown);
}

/* 「GET！」などの強調太文字 */
.banner_inner p strong {
  font-weight: 700;
  font-size: 1.3em;
}

/* クーポン小さなアイコン画像 */
.banner_inner img {
  display: block;
  height: auto;
}

/* 1つ目のボタン（通常クーポン：オレンジ背景に白文字） */
.floating-banner__link:nth-child(1) .banner_inner {
  background-color: #ffffff;
  color: var(--color-orange);
  border: 2px solid var(--color-orange);
}

/* 2つ目のボタン（重点クーポン：白背景にオレンジ文字＋枠線） */
.floating-banner__link:nth-child(2) .banner_inner {
  background-color: var(--color-orange);
  color: #ffffff;
  border: 2px solid var(--color-orange);
}



/* =======================================================
   1. スマホ版（SP）の設定：画面下部に「横並び」
======================================================= */
@media (max-width: 900px) {
	.SPonly{
		display: flex;
	}
	.PConly{
		display: none;
	}
  .floating-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: transparent;/* --color-bg 透過 */
    gap: 0; /* ボタン同士の隙間 */
    
    /* スクロール出現アニメーション（下からニョキッ） */
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

  /* JavaScriptと連動して出現 */
  .floating-banner.fixed-top {
    transform: translateY(0);
  }

  .floating-banner__link {
    flex: 1; /* 2つのボタンを50%ずつ均等に分ける */
  }

  .banner_inner {
    height: 80px;
    border-radius: var(--radius-md); /* 程よい丸み */
    padding: 1em 8px;
    gap: 6px; /* 文字と画像の隙間 */
  }

  .banner_inner p {
    font-size: 11px; /* スマホで2つのボタンが溢れないように小さめ */
	 font-weight: bold;
    line-height: 1.3;
  }
  .banner_inner img {
    width: 50px;
  }
}


/* =======================================================
   2. PC版の設定：画面の右横に「縦書き・縦並び」で固定
======================================================= */
@media (min-width: 901px) {
	.SPonly{
		display: none;
	}
	.PConly{
		display: block;
	}
	
  .floating-banner {
    right: -2em;   /* 画面右端からの距離 */
    bottom: 30em;  /* 画面下端からの距離 */
    	
	width: 181px;
    height: 246px;
  }

	/* ホバーアニメーションの土台 */
  .floating-banner.PConly .floating-banner__link {
    display: block;
    width: 100%;
    /* 動きを滑らかにするための設定（0.2秒かけて変化） */
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
  }
   .floating-banner.PConly .floating-banner__link {
   	 width: 100%; /* PC用のアドバンスサイズ */
	  margin: 0.5em;
  }

  /* 画像単体のリセット */
  .floating-banner.PConly .floating-banner__link img {
    width: 100%;
    height: auto;
    display: block;
  }

  .floating-banner.PConly .floating-banner__link:hover {
    transform: translateY(-6px); 
  }
	
}