/* =========================================================
   day.css
   「出発日別ページ」(例: /fair/special/month/january/day/01.html)
   専用の追加スタイル。
   ========================================================= */

.dayPage {
  --dp-blue: #0b5fa5;
  --dp-blue-dark: #073e6d;
  --dp-blue-tint: #eaf3fb;
  --dp-accent: #ff7a3d;
  --dp-accent-dark: #d85a1f;
  --dp-text: #12263a;
  --dp-text-sub: #55677c;
  --dp-border: #dfe6ee;
  --dp-holiday: #d64545;
  --dp-holiday-bg: #fdeceb;
  --dp-saturday: #2f6fb0;
  --dp-white: #ffffff;
  color: var(--dp-text);
}

.dayPage__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.dayPage * { box-sizing: border-box; }

/* ---------- 見出し共通 ---------- */
.dayPage__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--dp-blue);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.dayPage__sectionTtl {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--dp-text);
}

.dayPage__sectionLead {
  font-size: 14px;
  color: var(--dp-text-sub);
  margin: 0 0 20px;
  line-height: 1.7;
}

.dayPage__section {
  padding: 40px 0;
}

.dayPage__section.-tint {
  background: var(--dp-blue-tint);
}

/* ---------- 日付ナビ（前日・翌日） ---------- */
.dayPage__dayNav {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 18px 0 32px; 
}

.dayPage .dayPage__dayNavLink {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 14px;
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--dp-text) !important;
  font-size: 12px;
  line-height: 1.5;
  transition: border-color .15s ease, background .15s ease;
}

.dayPage .dayPage__dayNavLink:hover {
  border-color: var(--dp-blue);
  background: var(--dp-blue-tint);
  color: var(--dp-blue) !important;
}

.dayPage__dayNavLink.-next { text-align: right; }

.dayPage__dayNavLabel {
  color: var(--dp-text-sub);
  font-size: 11px;
}

.dayPage__dayNavDate {
  font-weight: 700;
  font-size: 14px;
}

.dayPage__dayNavCurrent {
  flex: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dp-blue);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  text-align: center;
}

/* ---------- ヒーロー（チケット風カード） ---------- */
.dayPage__hero {
  background-image: url("https://www.orion-ski.jp/fair/special/month/january/day/img/day1920-600-001.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 0 60px;
}

.dayPage__hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 95, 165, 0.15);
  z-index: 1;
}

.dayPage__hero .dayPage__container {
  position: relative;
  z-index: 2;
}

.dayPage__ticket {
  display: flex;
  background: var(--dp-white);
  border-radius: 16px;
  border: 1px solid var(--dp-border);
  box-shadow: 0 15px 35px rgba(11, 95, 165, 0.2);
  overflow: hidden;
}

.dayPage__ticketDate {
  position: relative;
  min-width: 150px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(155deg, var(--dp-blue), var(--dp-blue-dark));
}

.dayPage__ticketDate .dayPage__month {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
}

.dayPage__ticketDate .dayPage__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  margin: 2px 0;
}

.dayPage__ticketDate .dayPage__weekday {
  font-size: 12px;
  background: rgba(255, 255, 255, .18);
  padding: 3px 12px;
  border-radius: 999px;
  margin-top: 4px;
}

.dayPage__ticketDivider {
  position: relative;
  border-left: 2px dashed rgba(255, 255, 255, .55);
  margin: 18px 0;
}

.dayPage__ticketDivider::before,
.dayPage__ticketDivider::after {
  content: "";
  position: absolute;
  left: -11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dp-blue-tint);
}

.dayPage__ticketDivider::before { top: -30px; }
.dayPage__ticketDivider::after { bottom: -30px; }

.dayPage__ticketInfo {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dayPage__holidayTag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--dp-holiday-bg);
  color: var(--dp-holiday);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.dayPage__ticketInfo h1 {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 8px;
  color: var(--dp-text);
}

.dayPage__ticketInfo p {
  font-size: 14px;
  color: var(--dp-text-sub);
  line-height: 1.8;
  margin: 0;
}

/* ---------- 共通・メイン検索ボタン ---------- */
.dayPage__mainSearch {
  text-align: center;
  margin: 30px 0;
}

.dayPage .dayPage__btn,
.dayPage a.dayPage__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dp-accent);
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255, 122, 61, 0.3);
  transition: all .2s ease;
}

.dayPage .dayPage__btn:hover,
.dayPage a.dayPage__btn:hover {
  background: var(--dp-accent-dark);
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* ---------- サマリー統計 ---------- */
.dayPage__summaryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.dayPage__summaryItem {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.dayPage__summaryLabel {
  font-size: 12px;
  color: var(--dp-text-sub);
  margin: 0 0 6px;
}

.dayPage__summaryValue {
  font-size: 16px;
  font-weight: 700;
  color: var(--dp-blue);
  margin: 0;
  line-height: 1.4;
}

.dayPage__tip {
  margin-top: 16px;
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-left: 4px solid var(--dp-accent);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--dp-text-sub);
  line-height: 1.8;
}

/* ---------- 出発地域から検索結果を見る ---------- */
.dayPage__regionGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.dayPage__regionCard {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 12px;
  padding: 18px 20px;
}

.dayPage__regionHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dp-border);
}

.dayPage__regionName {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.dayPage__regionNote {
  font-size: 11px;
  color: var(--dp-text-sub);
}

.dayPage__planList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dayPage__planItem { margin: 0; }

.dayPage .dayPage__planLink,
.dayPage a.dayPage__planLink {
  display: inline-block;
  font-size: 13px;
  color: var(--dp-blue) !important;
  background: var(--dp-blue-tint);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 14px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.dayPage .dayPage__planLink:hover,
.dayPage a.dayPage__planLink:hover,
.dayPage .dayPage__planLink:focus-visible {
  background: var(--dp-accent);
  border-color: var(--dp-accent-dark);
  color: #ffffff !important;
  outline: none;
}

.dayPage__searchNote {
  margin-top: 18px;
  font-size: 13px;
  color: var(--dp-text-sub);
}

.dayPage__searchNote a {
  color: var(--dp-blue);
  font-weight: 700;
}

/* ---------- 人気の出発地 ---------- */
.dayPage__depMainGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dayPage .dayPage__depMainBtn,
.dayPage a.dayPage__depMainBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--dp-blue);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 8px rgba(11, 95, 165, 0.15);
}

.dayPage .dayPage__depMainBtn:hover,
.dayPage a.dayPage__depMainBtn:hover {
  background: var(--dp-blue-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(11, 95, 165, 0.25);
}

.dayPage__popularDepGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dayPage__popularDepBlock {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 12px;
  padding: 16px;
}

.dayPage__popularDepArea {
  font-size: 15px;
  font-weight: 700;
  color: var(--dp-blue);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--dp-blue-tint);
}

.dayPage__popularDepArea a {
  color: inherit !important;
  text-decoration: none;
  display: block;
}

.dayPage__popularDepArea a:hover {
  opacity: 0.8;
}

.dayPage__popularDepList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dayPage .dayPage__popularDepItem a,
.dayPage a.dayPage__popularDepItemLink {
  display: block;
  font-size: 13px;
  color: var(--dp-text) !important;
  text-decoration: none;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
  position: relative;
}

.dayPage .dayPage__popularDepItem a::after {
  content: "›";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dp-text-sub);
}

.dayPage .dayPage__popularDepItem a:hover {
  background: var(--dp-blue);
  color: #ffffff !important;
}

.dayPage .dayPage__popularDepItem a:hover::after {
  color: #ffffff;
}

/* ---------- おすすめ特集 ---------- */
.dayPage__featureGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.dayPage .dayPage__featureCard,
.dayPage a.dayPage__featureCard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  transition: transform .2s ease, box-shadow .2s ease;
}

.dayPage .dayPage__featureCard:hover,
.dayPage a.dayPage__featureCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11, 95, 165, 0.15);
}

.dayPage__featureImg {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background-color: var(--dp-blue-tint);
}

.dayPage__featureTtl {
  font-size: 15px;
  font-weight: 700;
  color: var(--dp-text);
  padding: 14px 16px;
  margin: 0;
  line-height: 1.5;
}

/* ---------- スキー場・ゲレンデから探す ---------- */
.dayPage__gelandeSearch {
  background: var(--dp-blue-tint);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 40px;
  text-align: center;
}

.dayPage__gelandeSearchTtl {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--dp-blue-dark);
}

.dayPage__gelandeSearchBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

/* 一体型カプセル検索バー */
.dayPage .search-form {
  display: flex;
  width: 100%;
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dayPage .search-form:focus-within {
  border-color: var(--dp-blue);
  box-shadow: 0 0 0 3px rgba(11, 95, 165, 0.15);
}

.dayPage .search-form__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--dp-text);
  outline: none;
  min-width: 0;
}

.dayPage .search-form__input::placeholder {
  color: #8c9ba5;
}

.dayPage .search-form__button {
  border: none;
  border-left: 1px solid #d0d7de;
  background: #f4f6f8;
  color: #24292f;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.dayPage .search-form__button:hover {
  background: #e8ecf0;
  color: var(--dp-blue);
}

.dayPage__gelandeLinkWrap {
  margin-top: 4px;
}

.dayPage .dayPage__gelandeBtn,
.dayPage a.dayPage__gelandeBtn {
  display: inline-block;
  background: var(--dp-blue);
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.dayPage .dayPage__gelandeBtn:hover,
.dayPage a.dayPage__gelandeBtn:hover {
  background: var(--dp-blue-dark);
  transform: translateY(-2px);
}

/* ---------- おすすめスキー場 ---------- */
.dayPage__gelandeGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.dayPage .dayPage__gelandeCard,
.dayPage a.dayPage__gelandeCard {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  transition: transform .2s ease, box-shadow .2s ease;
}

.dayPage .dayPage__gelandeCard:hover,
.dayPage a.dayPage__gelandeCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11, 95, 165, 0.15);
}

.dayPage__gelandeImg {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background-color: var(--dp-blue-tint);
}

.dayPage__gelandeName {
  font-size: 14px;
  font-weight: 700;
  color: var(--dp-text);
  padding: 14px 12px;
  margin: 0;
  text-align: center;
}

/* ---------- スノボ＆スキーツアータイプ ---------- */
.dayPage__tourtypeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.dayPage .dayPage__tourtypeCard,
.dayPage a.dayPage__tourtypeCard {
  display: flex;
  flex-direction: column;
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.dayPage .dayPage__tourtypeCard:hover,
.dayPage a.dayPage__tourtypeCard:hover {
  transform: translateY(-4px);
  border-color: var(--dp-blue);
  box-shadow: 0 8px 20px rgba(11, 95, 165, 0.15);
}

.dayPage__tourtypeTtl {
  font-size: 16px;
  font-weight: 700;
  color: var(--dp-blue);
  margin: 0 0 10px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dayPage__tourtypeTtl::after {
  content: "›";
  font-size: 20px;
  color: var(--dp-accent);
}

.dayPage__tourtypeDesc {
  font-size: 13px;
  color: var(--dp-text-sub);
  line-height: 1.7;
  margin: 0;
}

/* ---------- FAQ ---------- */
.dayPage__faqList {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dayPage__faqItem {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 10px;
  padding: 4px 18px;
}

.dayPage__faqItem summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 28px 14px 0;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}

.dayPage__faqItem summary::-webkit-details-marker { display: none; }

.dayPage__faqItem summary::before {
  content: "Q";
  color: var(--dp-blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-right: 10px;
}

.dayPage__faqItem summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 20px;
  color: var(--dp-blue);
  transition: transform .15s ease;
}

.dayPage__faqItem[open] summary::after { transform: rotate(45deg); }

.dayPage__faqAnswer {
  font-size: 13px;
  color: var(--dp-text-sub);
  line-height: 1.8;
  padding: 0 0 16px;
  margin: 0;
}

/* ---------- フッター信頼度向上ブロック ---------- */
.dayPage__footerTrust {
  padding: 32px 20px;
  background: #f8f9fa;
  border-top: 1px solid var(--dp-border);
  border-bottom: 1px solid var(--dp-border);
  text-align: center;
  margin-top: 40px;
}

.dayPage__footerTrustInner {
  max-width: 800px;
  margin: 0 auto;
}

.dayPage__footerBanners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dayPage__footerBannerLink {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.dayPage__footerBannerLink:hover {
  opacity: 0.8;
}

.dayPage__footerBannerImg {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.dayPage__footerTrustInfo {
  font-size: 13px;
  line-height: 1.8;
  color: var(--dp-text-sub);
  margin: 0;
}

.dayPage__footerTrustInfo strong {
  color: var(--dp-text);
  font-size: 14px;
}

/* ---------- フッター画像型SNSアイコン用スタイル（追加） ---------- */
.footer-share__img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  transition: opacity 0.15s ease;
}

.footer-share__item a:hover .footer-share__img {
  opacity: 0.8;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 960px) {
  .dayPage__container { padding: 0 5vw; }
  .dayPage__section { padding: 28px 0; }
  .dayPage__ticket { flex-direction: column; }
  .dayPage__ticketDate { flex-direction: row; gap: 10px; padding: 16px; }
  .dayPage__ticketDate .dayPage__num { font-size: 40px; }
  .dayPage__ticketDivider { display: none; }
  .dayPage__summaryGrid { grid-template-columns: repeat(2, 1fr); }
  .dayPage__regionGrid { grid-template-columns: 1fr; }
  .dayPage__dayNavDate { font-size: 13px; }
  .dayPage__depMainGrid { grid-template-columns: repeat(2, 1fr); }
  .dayPage__popularDepGrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dayPage__dayNav { margin-bottom: 24px; }
  .dayPage__hero { padding: 40px 0 30px; }
  .dayPage__gelandeGrid { grid-template-columns: repeat(2, 1fr); }
  .dayPage__tourtypeGrid { grid-template-columns: repeat(2, 1fr); }
  .dayPage .dayPage__btn, .dayPage a.dayPage__btn { padding: 14px 24px; font-size: 16px; width: 100%; }
}

@media (max-width: 600px) {
  .dayPage__depMainGrid { grid-template-columns: 1fr; }
  .dayPage__popularDepGrid { grid-template-columns: 1fr; }
  .dayPage__tourtypeGrid { grid-template-columns: 1fr; }
  .dayPage .search-form__button { padding: 0 20px; }
  .dayPage__footerBanners { gap: 16px; }
  .dayPage__footerBannerImg { height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .dayPage * { transition: none !important; }
}
/* ---------- スキー場マッチングバナー ---------- */
.dayPage__matchingBox {
  margin: 0 0 40px;
  text-align: center;
}

.dayPage .dayPage__matchingBtn,
.dayPage a.dayPage__matchingBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
  padding: 18px 28px;
  background: linear-gradient(135deg, #0b5fa5 0%, #1e88e5 100%);
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(11, 95, 165, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dayPage .dayPage__matchingBtn:hover,
.dayPage a.dayPage__matchingBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 95, 165, 0.35);
  background: linear-gradient(135deg, #073e6d 0%, #1565c0 100%);
}

.dayPage__matchingBtnArrow {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 600px) {
  .dayPage .dayPage__matchingBtn,
  .dayPage a.dayPage__matchingBtn {
    font-size: 15px;
    padding: 15px 18px;
  }
}