@charset "utf-8";
/* --- FVスライドショー＆レスポンシブCSS --- */
.fv-container-full {
  position: relative;
  width: 100%;
  background: #0f172a;
  overflow: hidden;
  margin-bottom: 25px;
}

.fv-hero-slider {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: fadeSlider 25s infinite ease-in-out;
  will-change: opacity;
}

.slide-bg:nth-child(1) {
  background-image: url('../../img/ski/img_1920x800_002.webp');
  background-position: center top;
  animation-delay: 0s;
}
.slide-bg:nth-child(2) {
  background-image: url('../../img/ski/img_1920x800_005.webp');
  background-position: center top;
  animation-delay: 5s;
}
.slide-bg:nth-child(3) {
  background-image: url('../../img/ski/img_1920x800_003.webp');
  background-position: center top;
  animation-delay: 10s;
}
.slide-bg:nth-child(4) {
  background-image: url('../../img/ski/img_1920x800_001.webp');
  animation-delay: 15s;
}
.slide-bg:nth-child(5) {
  background-image: url('../../img/ski/img_1920x800_004.webp');
  background-position: right top;
  animation-delay: 20s;
}
@keyframes fadeSlider {
  0%   { opacity: 0; }
  4%   { opacity: 1; } /* フェードイン完了 */
  20%  { opacity: 1; } /* 表示維持 */
  24%  { opacity: 0; } /* フェードアウト完了 */
  100% { opacity: 0; }
}

.fv-hero-slider::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0.0) 100%);
  z-index: 1;
  pointer-events: none;
}

.fv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text-bright {
  max-width: 520px;
}
.hero-season-tag {
  display: inline-block;
  background: #0284c7;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}
.hero-main-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}
.hero-main-title span {
  color: #0066cc;
  background: linear-gradient(135deg, #0066cc 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub-text {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 700;
  margin: 0;
}

.fv-search-bright {
  width: 380px;
}

.fv-search-bright-inner {
  background:#ffffff80;
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
  border: 1px solid #ffffff;
}

.badge-flex-bright {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.badge-bright {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
}
.badge-bright.red {
  background: #e11d48;
  color: #ffffff!important;
  border: none;
}

/* クイックトリガーボタン（モーダル展開式） */
.bright-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.bright-tab {
  background: #ffffff;
  border: 2px solid #0066cc;
  color: #0066cc;
  padding: 12px 8px;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.1);
}
.bright-tab:hover {
  background: #0066cc;
  color: #ffffff;
}

.tag-scroll-bright {
  max-width: 1100px;
  margin: -15px auto 0;
  padding: 0 20px 10px;
  position: relative;
  z-index: 3;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.tag-scroll-bright::-webkit-scrollbar { display: none; }
.chip-bright {
  flex: 0 0 auto;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none!important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

@media (max-width: 640px) {
  .fv-hero-slider {
    height: auto;
    padding: 24px 0 20px;
  }
  .fv-hero-slider::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(255, 255, 255, 0.85) 30%, rgb(15 23 42 / 20%) 100%);;
  }
  .fv-hero-inner {
    flex-direction: column;
    padding: 0 12px;
  }
  .hero-text-bright {
    max-width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
  .hero-main-title {
    font-size: 1.8rem;
  }
  .fv-search-bright {
    width: 100%;
    box-sizing: border-box;
  }
  .tag-scroll-bright {
    margin-top: 10px;
    padding: 0 12px 10px;
  }
}

/* スマホ固定バー */
.sticky-bottom-bar { display: none; }
@media (max-width: 768px) {
  .sticky-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 54px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.12);
    z-index: 9999;
    border-top: 1px solid #eee;
  }
  .sticky-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: bold;
    text-decoration: none; color: #333;
    cursor: pointer;
  }
  .sticky-btn-primary { background: #0066cc; color: #fff !important; }
  .sticky-btn-accent { background: #e6002d; color: #fff !important; }
  body { padding-bottom: 54px; }
}

/* --- モーダル (ポップアップダイアログ) スタイル --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 12px;
  box-sizing: border-box;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  border-radius: 14px;
  overflow-y: auto;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  position: relative;
  animation: modalFadeIn 0.25s ease-out;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-header {
  background: #0f2744;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}
.modal-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.modal-body {
  padding: 20px;
}

/* フォーム内レイアウト */
.opt-grid-main {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}
.opt-grid-sub {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  padding: 15px 0 !important;
}
@media (max-width: 650px) {
  .opt-grid-main { grid-template-columns: 1fr !important; }
  .opt-grid-sub { grid-template-columns: 1fr !important; }
}

.opt-col {
  display: flex;
  flex-direction: column;
}
.opt-col.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.opt-label {
  font-size: 0.85rem !important;
  font-weight: bold !important;
  color: #1e293b !important;
  margin-bottom: 6px !important;
}
.opt-select {
  width: 100% !important;
  height: 42px !important;
  padding: 0 36px 0 10px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 6px !important;
  background-color: #f8fafc !important;
  font-size: 0.9rem !important;
  color: #0f172a !important;
  box-sizing: border-box !important;
  outline: none !important;
  writing-mode: horizontal-tb !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230066cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 16px 16px !important;
}
.opt-select:disabled {
  background-color: #e2e8f0 !important;
  color: #94a3b8 !important;
  cursor: not-allowed !important;
}

input[type="date"].opt-select {
  background-image: none !important;
  padding-right: 10px !important;
  cursor: pointer !important;
}
input[type="date"].opt-select::-webkit-calendar-picker-indicator {
  display: block !important;
  cursor: pointer !important;
  opacity: 0.7 !important;
}

.opt-acd-box {
  margin-top: 15px;
  border-top: 1px dashed #cbd5e1;
  padding-top: 15px;
}
.opt-acd-check { display: none !important; }
.opt-acd-label {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 15px !important;
  background: #f1f5f9 !important;
  color: #0066cc !important;
  font-size: 0.85rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  border-radius: 6px;
}
.opt-acd-content {
  display: none;
}
.opt-acd-check:checked ~ .opt-acd-content {
  display: block;
}
.opt-acd-check:checked ~ .opt-acd-label .opt-arrow {
  transform: rotate(180deg) !important;
}

.opt-submit-bottom {
  margin-top: 20px;
  text-align: center;
}
.opt-btn-submit-large {
  width: 100% !important;
  height: 50px !important;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.1rem !important;
  font-weight: bold !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3) !important;
}
	
/*スキーツアー・スノボツアー ビジュアルコンテンツUI */
.ski-portal-wrapper {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* セクションタイトル（メリハリ演出） */
.ski-sec-header {
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2.5px solid #0066cc;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.ski-sec-title-main {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.ski-sec-title-main i {
  color: #0066cc;
  font-size: 1.2rem;
}

.ski-sec-sub {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}
/* スマホ（SP）時のみサブタイトルを次の行に配置 */
@media (max-width: 640px) {
  .ski-sec-header {
    flex-direction: column;  /* 縦並びに変更 */
    align-items: flex-start; /* 左揃え */
    gap: 4px;                /* タイトルとサブタイトルの間隔 */
  }

  .ski-sec-sub {
    display: block;          /* 次の行へ改行 */
    margin-top: 2px;
  }
}
/* ===================================================
   1. 行きたいゲレンデから探す（全10ゲレンデ完全展開）
=================================================== */
/* ゲレンデセクション全体コンテナ */
.resort-section-wrapper {
  max-width: 1100px;
  margin: 30px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* セクションタイトル（明るいブルーベース） */
.resort-sec-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0284c7;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 3px solid #38bdf8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.resort-sec-title i {
  color: #0284c7;
}

/* --- グリッドレイアウト構造（PC版） --- */
/* 1段目：3カラム構造 (苗場・石打丸山・上越国際・GALA湯沢・舞子・湯沢中里) */
.resort-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

/* 2段目：4カラム構造 (神立・湯沢パーク・岩原・湯沢高原) */
.resort-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* --- 明るいビジュアルカードデザイン --- */
.resort-bg-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
  text-decoration: none!important;
  padding: 12px;
  box-sizing: border-box;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

/* オーバーレイ */
.resort-bg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 20%, rgba(255, 255, 255, 0.95) 90%);
  z-index: 1;
  transition: all 0.25s ease;
}

.resort-bg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.22);
}

.resort-bg-card:hover::before {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.1) 0%, rgba(255, 255, 255, 0.98) 85%);
}

/* カード内コンテンツ（明るい白ベースの浮き上がりテキスト） */
.resort-card-info {
  position: relative;
  z-index: 2;
/*  background: rgba(255, 255, 255, 0);*/
  backdrop-filter: blur(2px);
  padding: 8px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.resort-area-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  display: block;
}

.resort-name-main {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.2;
}

.resort-sub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.resort-sub-tag {
  font-size: 0.5rem;
  font-weight: 600;
  background: #e0f2fe;
  color: #0369a1;
  padding: 2px 6px;
  border-radius: 2px;
}

/* --- スマホ(SP)レスポンシブ対応 --- */
@media (max-width: 640px) {
  .resort-grid-3col,
  .resort-grid-4col {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .resort-grid-3col {
    margin-bottom: 10px;
  }
  .resort-bg-card {
    height: 140px;
    padding: 8px;
  }
  .resort-name-main {
    font-size: 0.9rem;
  }
}

/* ===================================================
   2. タイプ・交通手段から探す（デザイン切替でメリハリ）
=================================================== */
.plan-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 12px;
  text-decoration: none!important;
  color: #1e293b;
  transition: all 0.2s ease;
}

.plan-type-card:hover {
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
  transform: translateY(-2px);
}

.plan-type-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.plan-type-info h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.plan-type-info p {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.3;
}

/* ===================================================
   3. お得な特典＆キャンペーン（インパクトバナー）
=================================================== */
.campaign-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.campaign-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e11d48 0%, #fda4af 100%);
  color: #ffffff!important;
  padding: 16px 20px;
  border-radius: 10px;
  text-decoration: none!important;
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.2);
  transition: all 0.25s ease;
}

.campaign-banner-card.blue-theme {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.2);
}

.campaign-banner-card:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.campaign-info h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 900;
}

.campaign-info p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.95;
}

.campaign-btn {
  background: #ffffff;
  color: #e11d48;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.campaign-banner-card.blue-theme .campaign-btn {
  color: #0284c7;
}

/* ===================================================
   レスポンシブ (スマホSP表示対応)
=================================================== */
@media (max-width: 960px) {
  .resort-full-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .resort-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .resort-card-thumb {
    height: 80px;
  }
  .resort-card-name {
    font-size: 0.82rem;
  }

  .plan-type-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .campaign-banner-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}