/* =========================================================
   Bassin’Heaven スタッフ同行ツアー 個別ページ【汎用】
   /stafftour/template/tour.css

   ※ template_tour.html をコピーして作る全ての企画ページで
     共通に使う。企画ごとの内容差はHTML側で吸収する設計の
     ため、このファイルは原則さわらない。
     クラスはすべて tour- で始まり、他ページに影響しない。
     共通デザイン（ヘッダー・フッター・ボタン等）は site.css。
   ========================================================= */

/* =========================================================
   1. ページ全体
   ========================================================= */
.tour-main{
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 5%, rgba(209,178,104,.09), transparent 27%),
    radial-gradient(circle at 88% 55%, rgba(27,102,99,.07), transparent 26%),
    var(--page-dark);
}

.tour-main::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
}

.tour-main > *{
  position: relative;
  z-index: 1;
}

/* =========================================================
   2. パンくず
   ========================================================= */
.tour-breadcrumb{
  margin-top: var(--header-h);
  background: #0D110E;
  border-bottom: 1px solid rgba(247,244,236,.08);
}

.tour-breadcrumb ol{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 11px 0;
  list-style: none;
  color: rgba(247,244,236,.62);
  font-size: 12.5px;
  letter-spacing: .04em;
}

.tour-breadcrumb li{
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.tour-breadcrumb li + li::before{
  content: "›";
  color: rgba(209,178,104,.55);
}

.tour-breadcrumb a{
  color: var(--brass-light);
  transition: color .2s ease;
}

.tour-breadcrumb a:hover{
  color: #E8CF8B;
}

/* =========================================================
   3. ヒーロー
   ========================================================= */
.tour-hero{
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0A0D0B;
}

.tour-hero__pic{
  display: block;
}

/* 写真の主役位置はHTML側の style="--hero-pos: 左右% 上下%;" で
   ページごとに調整する（スマホ用は --hero-pos-sp） */
.tour-hero__image{
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--hero-pos, 55% 35%);
  background: #10140F;   /* 写真未設定でも枠が保てるように */
  filter: saturate(.94) contrast(1.05) brightness(.85);
}

.tour-hero__shade{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(7,9,8,.98) 0%,
      rgba(7,9,8,.92) 30%,
      rgba(7,9,8,.62) 48%,
      rgba(7,9,8,.18) 70%,
      rgba(7,9,8,.08) 100%
    ),
    linear-gradient(
      0deg,
      rgba(7,9,8,.46),
      transparent 46%
    );
}

.tour-hero__inner{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 560px;
}

.tour-hero__copy{
  width: min(620px, 58%);
  padding-block: 56px;
  color: #FFF;
}

.tour-hero__file{
  margin: 0 0 14px;
  color: rgba(209,178,104,.85);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .22em;
}

.tour-hero__title{
  margin: 0;
  color: #FFF;
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .07em;
  text-shadow: 0 4px 24px rgba(0,0,0,.68);
}

.tour-hero__title span{
  display: block;
  margin-bottom: 8px;
  color: rgba(247,244,236,.92);
  font-size: .44em;
  letter-spacing: .16em;
}

.tour-hero__catch{
  margin: 16px 0 0;
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: .12em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.tour-hero__status{
  margin: 18px 0 0;
}

.tour-hero__lead{
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
  text-shadow: 0 2px 12px rgba(0,0,0,.72);
}

.tour-hero__actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}

.tour-hero__more{
  padding-bottom: 3px;
  color: rgba(247,244,236,.82);
  font-size: 13.5px;
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(209,178,104,.5);
  transition: color .2s ease;
}

.tour-hero__more:hover{
  color: var(--brass-light);
}

/* =========================================================
   4. 遠征データ帯
   ▼ 項目数が4でも6でも崩れないよう、縦罫線ではなく
     真鍮のティック（短い横線）で区切る自動整列グリッド
   ========================================================= */
.tour-specs{
  background: #0C0F0D;
  border-top: 1px solid rgba(209,178,104,.28);
  border-bottom: 1px solid rgba(247,244,236,.07);
}

.tour-specs__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 4px 26px;
  padding-block: 16px 15px;
}

.tour-specs__item{
  padding: 2px 0 3px;
}

.tour-specs__key{
  position: relative;
  margin: 0 0 4px;
  padding-top: 7px;
  color: rgba(209,178,104,.7);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
}

.tour-specs__key::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: rgba(209,178,104,.55);
}

.tour-specs__val{
  margin: 0;
  color: rgba(247,244,236,.92);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
}

/* =========================================================
   5. セクションラベル（FILE 01…）
   ========================================================= */
.tour-label{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
  color: rgba(247,244,236,.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
}

.tour-label > span:first-child{
  color: var(--brass-light);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .14em;
}

.tour-label::after{
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(209,178,104,.45), transparent);
}

/* =========================================================
   6. FILE 01｜この釣行について
   ========================================================= */
.tour-about{
  padding: 58px 0 54px;
}

.tour-about__grid{
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.tour-about__statement{
  margin: 0;
  color: #FFF;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .07em;
}

.tour-about__copy p{
  max-width: 46em;
  margin: 18px 0 0;
  color: rgba(247,244,236,.78);
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: .03em;
}

.tour-about__facts{
  margin: 0;
}

.tour-about__facts > div{
  display: grid;
  grid-template-columns: 108px minmax(0,1fr);
  gap: 18px;
  align-items: baseline;
  padding: 14px 4px;
  border-top: 1px solid rgba(247,244,236,.13);
}

.tour-about__facts > div:last-child{
  border-bottom: 1px solid rgba(247,244,236,.13);
}

.tour-about__facts dt{
  color: var(--brass-light);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
}

.tour-about__facts dd{
  margin: 0;
  color: rgba(247,244,236,.9);
  font-size: 14.5px;
  line-height: 1.7;
  letter-spacing: .02em;
}

/* 写真帯（2〜3枚。枚数が変わっても自動で整列） */
.tour-strip{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.tour-strip figure{
  margin: 0;
}

.tour-strip__media{
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(247,244,236,.10);
  border-radius: 6px;
  background: #1A211A;
}

.tour-strip__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.tour-strip figure:hover .tour-strip__media img{
  transform: scale(1.04);
}

.tour-strip figcaption{
  margin-top: 6px;
  color: rgba(247,244,236,.6);
  font-size: 11px;
  letter-spacing: .06em;
}

/* =========================================================
   7. FILE 02｜予定行程（タイムライン）
   ========================================================= */
.tour-log{
  padding: 56px 0 50px;
  border-top: 1px solid rgba(247,244,236,.07);
}

.tour-log__list{
  position: relative;
  margin: 0;
  padding: 4px 0 4px 76px;
  list-style: none;
}

/* 縦のレール */
.tour-log__list::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 29px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(209,178,104,.55) 5%,
    rgba(209,178,104,.55) 95%,
    transparent 100%
  );
}

.tour-log__item{
  position: relative;
  padding: 4px 0 34px;
}

.tour-log__item:last-child{
  padding-bottom: 8px;
}

/* レール上のノード */
.tour-log__item::before{
  content: "";
  position: absolute;
  top: 13px;
  left: -54px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--brass-light);
  border-radius: 50%;
  background: #10140F;
  box-shadow: 0 0 0 4px rgba(209,178,104,.12);
}

.tour-log__day{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 6px;
}

.tour-log__daylabel{
  color: rgba(209,178,104,.7);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
}

.tour-log__daynum{
  color: var(--brass-light);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  letter-spacing: .04em;
}

.tour-log__flag{
  align-self: center;
  margin-left: 6px;
  padding: 4px 12px;
  color: #FFD9CF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  border: 1px solid rgba(220,73,48,.62);
  border-radius: 4px;
  background: rgba(185,41,25,.35);
}

.tour-log__heading{
  margin: 0 0 8px;
  color: #FFF;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
}

.tour-log__body > p:not(.tour-data),
.tour-log__text > p:not(.tour-data){
  margin: 0;
  max-width: 62ch;
  color: rgba(247,244,236,.74);
  font-size: 13.5px;
  line-height: 1.95;
  letter-spacing: .025em;
}

/* 写真を添える日（tour-log__body--media を付けた時だけ2カラム） */
.tour-log__body--media{
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 26px;
  align-items: center;
}

.tour-log__media{
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(247,244,236,.12);
  border-radius: 8px;
  background: #1A211A;
}

.tour-log__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* データチップ */
.tour-data{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.tour-data__chip{
  padding: 5px 11px;
  color: var(--brass-light);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  border: 1px solid rgba(209,178,104,.4);
  border-radius: 4px;
  background: rgba(8,11,9,.5);
}

/* 山場の日（--peak） */
.tour-log__item--peak::before{
  border-color: #F0CC72;
  box-shadow:
    0 0 0 5px rgba(209,178,104,.18),
    0 0 18px rgba(209,178,104,.35);
}

.tour-log__item--peak .tour-log__daynum{
  font-size: 42px;
  color: #F0CC72;
}

.tour-log__item--peak .tour-log__heading{
  font-size: clamp(24px, 2.4vw, 30px);
}

.tour-log__item--peak .tour-log__body > p:not(.tour-data),
.tour-log__item--peak .tour-log__text > p:not(.tour-data){
  max-width: 64ch;
  color: rgba(247,244,236,.84);
  font-size: 14.5px;
}

.tour-log__note{
  margin: 24px 0 0;
  color: rgba(247,244,236,.5);
  font-size: 11.5px;
  text-align: center;
  letter-spacing: .035em;
}

/* =========================================================
   8. FILE 03｜釣り方とタックル
   ▼ ブロック数が1でも3でも自動で整列するカードグリッド
   ========================================================= */
.tour-tackle{
  padding: 56px 0 50px;
  border-top: 1px solid rgba(247,244,236,.07);
}

.tour-tackle__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.tour-tackle__block{
  padding: 24px 26px 20px;
  background:
    linear-gradient(110deg, rgba(209,178,104,.05), transparent 45%),
    rgba(18,23,19,.92);
  border: 1px solid rgba(209,178,104,.28);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

.tour-tackle__name{
  margin: 0 0 6px;
  padding-bottom: 10px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(209,178,104,.4);
}

.tour-tackle__specs{
  margin: 0;
}

.tour-tackle__specs > div{
  display: grid;
  grid-template-columns: 78px minmax(0,1fr);
  gap: 14px;
  align-items: baseline;
  padding: 11px 2px;
}

.tour-tackle__specs > div + div{
  border-top: 1px solid rgba(247,244,236,.10);
}

.tour-tackle__specs dt{
  color: var(--brass-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.tour-tackle__specs dd{
  margin: 0;
  color: rgba(247,244,236,.88);
  font-size: 13.5px;
  line-height: 1.75;
  letter-spacing: .02em;
}

.tour-tackle__note{
  margin: 26px 0 0;
  color: rgba(247,244,236,.55);
  font-size: 12.5px;
  text-align: center;
  letter-spacing: .03em;
}

/* =========================================================
   9. FILE 04｜装備・持ち物と現地情報
   ========================================================= */
.tour-gear{
  padding: 56px 0 50px;
  border-top: 1px solid rgba(247,244,236,.07);
}

.tour-gear__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px 34px;
}

.tour-gear__cat{
  margin: 0 0 12px;
  padding-bottom: 9px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(209,178,104,.4);
}

.tour-gear__list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-gear__list li{
  position: relative;
  padding-left: 15px;
  color: rgba(247,244,236,.78);
  font-size: 13px;
  line-height: 1.8;
}

.tour-gear__list li + li{
  margin-top: 7px;
}

.tour-gear__list li::before{
  content: "・";
  position: absolute;
  left: 0;
  color: var(--brass-light);
  font-weight: 700;
}

/* 現地の気候・注意事項ボックス */
.tour-climate{
  margin-top: 38px;
  padding: 24px 28px 20px;
  border: 1px solid rgba(209,178,104,.4);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(209,178,104,.09), rgba(209,178,104,.03) 55%, transparent);
}

.tour-climate__eyebrow{
  margin: 0 0 8px;
  color: rgba(209,178,104,.8);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: .2em;
}

.tour-climate__facts{
  margin: 0;
}

.tour-climate__facts > div{
  display: grid;
  grid-template-columns: 110px minmax(0,1fr);
  gap: 16px;
  align-items: baseline;
  padding: 11px 2px;
}

.tour-climate__facts > div + div{
  border-top: 1px solid rgba(247,244,236,.10);
}

.tour-climate__facts dt{
  color: var(--brass-light);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
}

.tour-climate__facts dd{
  margin: 0;
  color: rgba(247,244,236,.88);
  font-size: 13.5px;
  line-height: 1.8;
  letter-spacing: .02em;
}

/* =========================================================
   10. FILE 05｜お見積りと旅行条件
   ========================================================= */
.tour-terms{
  padding: 56px 0 52px;
  border-top: 1px solid rgba(247,244,236,.07);
}

.tour-terms__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.tour-terms__col{
  padding: 24px 26px 22px;
  border-radius: 10px;
}

.tour-terms__col--in{
  background:
    linear-gradient(110deg, rgba(209,178,104,.05), transparent 45%),
    rgba(18,23,19,.92);
  border: 1px solid rgba(209,178,104,.28);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

.tour-terms__col--out{
  background: rgba(13,17,14,.7);
  border: 1px solid rgba(247,244,236,.13);
}

.tour-terms__title{
  margin: 0 0 12px;
  padding-bottom: 10px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(209,178,104,.35);
}

.tour-terms__col--out .tour-terms__title{
  border-bottom-color: rgba(247,244,236,.18);
}

.tour-terms__list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-terms__list li{
  position: relative;
  padding-left: 20px;
  color: rgba(247,244,236,.82);
  font-size: 13.5px;
  line-height: 1.8;
}

.tour-terms__list li + li{
  margin-top: 8px;
}

.tour-terms__col--in .tour-terms__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brass-light);
  font-weight: 700;
}

.tour-terms__col--out .tour-terms__list li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(247,244,236,.45);
}

/* 旅行条件 */
.tour-terms__conditions{
  margin: 30px 0 0;
}

.tour-terms__conditions > div{
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 18px;
  align-items: baseline;
  padding: 13px 4px;
  border-top: 1px solid rgba(247,244,236,.13);
}

.tour-terms__conditions > div:last-child{
  border-bottom: 1px solid rgba(247,244,236,.13);
}

.tour-terms__conditions dt{
  color: var(--brass-light);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
}

.tour-terms__conditions dd{
  margin: 0;
  color: rgba(247,244,236,.88);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
}

/* 旅行代金（個別見積り） */
.tour-terms__price{
  max-width: 560px;
  margin: 30px auto 0;
  padding: 26px 24px 24px;
  text-align: center;
  background:
    linear-gradient(110deg, rgba(209,178,104,.05), transparent 45%),
    rgba(18,23,19,.92);
  border: 1px solid rgba(209,178,104,.28);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

.tour-terms__pricetitle{
  margin: 0 0 10px;
  padding-bottom: 9px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(209,178,104,.3);
}

.tour-terms__pricetext{
  margin: 0;
  color: rgba(247,244,236,.82);
  font-size: 13.5px;
  line-height: 1.95;
}

/* =========================================================
   11. 同行スタッフ
   ========================================================= */
.tour-staff{
  padding: 54px 0 48px;
  border-top: 1px solid rgba(247,244,236,.07);
  background:
    radial-gradient(circle at 85% 20%, rgba(209,178,104,.08), transparent 40%),
    transparent;
}

.tour-staff__grid{
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0,1fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}

.tour-staff__media{
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(209,178,104,.35);
  border-radius: 11px;
  background: #1A211A;
}

.tour-staff__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-staff__label{
  margin: 0 0 6px;
  color: rgba(209,178,104,.75);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}

.tour-staff__name{
  margin: 0 0 10px;
  color: #FFF;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 600;
  letter-spacing: .12em;
}

.tour-staff__quote{
  margin: 0 0 12px;
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: .06em;
}

.tour-staff__text{
  margin: 0;
  color: rgba(247,244,236,.8);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .03em;
}

/* =========================================================
   11-b. GUIDE NOTE（量産する個別ページ用の軽い版）
   ▼ 顔写真＋経歴の全文は一覧トップ(index.html)に1回だけ置き、
     個別ページはこの釣行への一言だけにする。
     全ページで同じ自己紹介が繰り返されるのを避けるため
   ========================================================= */
.tour-guide{
  padding: 44px 0 40px;
  border-top: 1px solid rgba(247,244,236,.07);
}

.tour-guide__inner{
  max-width: 780px;
  padding-left: 22px;
  border-left: 2px solid rgba(209,178,104,.55);
}

.tour-guide__label{
  margin: 0 0 10px;
  color: rgba(209,178,104,.85);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: .2em;
}

.tour-guide__text{
  margin: 0;
  color: rgba(247,244,236,.86);
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 2.05;
  letter-spacing: .04em;
}

.tour-guide__sign{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  margin: 16px 0 0;
  color: rgba(247,244,236,.6);
  font-size: 12.5px;
  letter-spacing: .06em;
}

.tour-guide__sign a{
  padding-bottom: 2px;
  color: var(--brass-light);
  border-bottom: 1px solid rgba(209,178,104,.45);
  transition: color .2s ease;
}

.tour-guide__sign a:hover{
  color: #E8CF8B;
}

/* =========================================================
   12. 最終問い合わせ
   ========================================================= */
.tour-cta{
  padding: 56px 0 44px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(209,178,104,.14), transparent 52%),
    #0D110E;
  border-top: 1px solid rgba(209,178,104,.24);
}

.tour-cta__title{
  margin: 0;
  color: #FFF;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .08em;
}

.tour-cta__text{
  margin: 14px 0 0;
  color: rgba(247,244,236,.78);
  font-size: 14px;
  letter-spacing: .04em;
}

.tour-cta__actions{
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.tour-cta__actions .staff-button{
  min-width: 300px;
  min-height: 54px;
  font-size: 16px;
}

/* 安心表示（登録旅行業・協会正会員） */
.tour-cta__trust{
  margin: 16px 0 0;
  color: rgba(247,244,236,.6);
  font-size: 11.5px;
  letter-spacing: .06em;
}

.tour-cta__back{
  margin: 24px 0 0;
}

.tour-cta__back a{
  padding-bottom: 2px;
  color: rgba(247,244,236,.72);
  font-size: 13px;
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(247,244,236,.3);
  transition: color .2s ease, border-color .2s ease;
}

.tour-cta__back a:hover{
  color: var(--brass-light);
  border-color: rgba(209,178,104,.6);
}

.tour-cta .staff-note{
  margin-top: 20px;
}

/* =========================================================
   13. タブレット
   ========================================================= */
@media (max-width: 1023px){
  .tour-hero__copy{
    width: min(560px, 68%);
  }

  .tour-about__grid{
    gap: 34px;
  }

  .tour-log__body--media{
    grid-template-columns: minmax(0,1fr) 240px;
    gap: 20px;
  }

  .tour-tackle__grid{
    grid-template-columns: 1fr;
  }

  .tour-gear__grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* =========================================================
   14. スマートフォン
   ========================================================= */
@media (max-width: 767px){
  .tour-breadcrumb ol{
    padding: 9px 0;
    font-size: 11.5px;
  }

  /* ヒーロー：スマホは写真を切らずに全部見せ、文字はその下に置く
     （文字を写真に重ねると、縦長画面では被写体がほぼ隠れてしまうため） */
  .tour-hero{
    display: block;
    min-height: 0;
  }

  .tour-hero__image{
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: var(--hero-ratio-sp, 4 / 3);
    object-position: var(--hero-pos-sp, center);
    filter: saturate(.98) contrast(1.02);
  }

  .tour-hero__shade{
    display: none;
  }

  .tour-hero__inner{
    display: block;
    min-height: 0;
  }

  .tour-hero__copy{
    width: 100%;
    padding: 26px 0 30px;
  }

  .tour-hero__file{
    font-size: 11px;
  }

  .tour-hero__title{
    font-size: clamp(32px, 9.4vw, 43px);
  }

  .tour-hero__lead{
    font-size: 12.5px;
    line-height: 1.9;
  }

  .tour-hero__lead br{
    display: none;
  }

  .tour-hero__actions{
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 22px;
  }

  .tour-hero__more{
    align-self: center;
  }

  /* 遠征データ帯：2カラム */
  .tour-specs__grid{
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    padding-block: 14px 13px;
  }

  .tour-specs__val{
    font-size: 12.5px;
  }

  /* セクションラベル */
  .tour-label{
    gap: 12px;
    margin-bottom: 22px;
    font-size: 12px;
  }

  /* この釣行について */
  .tour-about{
    padding: 40px 0 40px;
  }

  .tour-about__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tour-about__statement{
    font-size: 25px;
  }

  .tour-about__copy p{
    font-size: 13.5px;
  }

  .tour-about__facts > div{
    grid-template-columns: 86px minmax(0,1fr);
    gap: 12px;
    padding: 12px 2px;
  }

  .tour-about__facts dd{
    font-size: 13px;
  }

  .tour-strip{
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  /* 予定行程 */
  .tour-log{
    padding: 40px 0 36px;
  }

  .tour-log__list{
    padding-left: 44px;
  }

  .tour-log__list::before{
    left: 15px;
  }

  .tour-log__item{
    padding-bottom: 28px;
  }

  .tour-log__item::before{
    top: 10px;
    left: -36px;
  }

  .tour-log__daynum{
    font-size: 26px;
  }

  .tour-log__heading{
    font-size: 17.5px;
  }

  .tour-log__body > p:not(.tour-data),
  .tour-log__text > p:not(.tour-data){
    font-size: 12.8px;
  }

  .tour-log__body--media{
    display: block;
  }

  .tour-log__media{
    margin-top: 12px;
  }

  .tour-log__item--peak .tour-log__daynum{
    font-size: 34px;
  }

  .tour-log__item--peak .tour-log__heading{
    font-size: 21px;
  }

  .tour-log__item--peak .tour-log__body > p:not(.tour-data),
  .tour-log__item--peak .tour-log__text > p:not(.tour-data){
    font-size: 13.5px;
  }

  .tour-log__flag{
    font-size: 10px;
    padding: 3px 9px;
  }

  /* 釣り方とタックル */
  .tour-tackle{
    padding: 40px 0 36px;
  }

  .tour-tackle__block{
    padding: 20px 18px 16px;
  }

  .tour-tackle__specs > div{
    grid-template-columns: 68px minmax(0,1fr);
    gap: 10px;
  }

  .tour-tackle__specs dd{
    font-size: 13px;
  }

  .tour-tackle__note{
    font-size: 11.5px;
  }

  /* 装備・持ち物 */
  .tour-gear{
    padding: 40px 0 38px;
  }

  .tour-gear__grid{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tour-gear__group{
    padding: 20px 2px;
  }

  .tour-gear__group + .tour-gear__group{
    border-top: 1px solid rgba(247,244,236,.13);
  }

  .tour-gear__group:first-child{
    padding-top: 0;
  }

  .tour-climate{
    margin-top: 28px;
    padding: 18px 16px 14px;
  }

  .tour-climate__facts > div{
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px 2px;
  }

  /* お見積りと旅行条件 */
  .tour-terms{
    padding: 40px 0 40px;
  }

  .tour-terms__col{
    padding: 20px 18px 18px;
  }

  .tour-terms__conditions > div{
    grid-template-columns: 108px minmax(0,1fr);
    gap: 12px;
    padding: 12px 2px;
  }

  .tour-terms__conditions dd{
    font-size: 13px;
  }

  .tour-terms__price{
    margin-top: 24px;
    padding: 22px 18px 20px;
  }

  /* 同行スタッフ */
  .tour-staff{
    padding: 38px 0 34px;
  }

  .tour-staff__grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tour-staff__media{
    max-width: 240px;
    margin-inline: auto;
  }

  .tour-staff__label,
  .tour-staff__name,
  .tour-staff__quote{
    text-align: center;
  }

  .tour-staff__text{
    font-size: 13px;
  }

  /* GUIDE NOTE */
  .tour-guide{
    padding: 32px 0 30px;
  }

  .tour-guide__inner{
    padding-left: 16px;
  }

  .tour-guide__text{
    font-size: 14px;
    line-height: 1.95;
  }

  /* 最終問い合わせ */
  .tour-cta{
    padding: 40px 0 34px;
  }

  .tour-cta__title{
    font-size: 23px;
  }

  .tour-cta__text{
    font-size: 12.5px;
  }

  .tour-cta__actions .staff-button{
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 15px;
  }

  .tour-cta__trust{
    font-size: 10.5px;
    line-height: 1.8;
  }
}

@media (max-width: 390px){
  .tour-hero__title{
    font-size: 30px;
  }

  .tour-specs__val{
    font-size: 11.5px;
  }
}

/* =========================================================
   15. 動きを減らす設定
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  .tour-strip figure:hover .tour-strip__media img{
    transform: none;
  }
}

/* =========================================================
   16. タブレット幅での区切り調整（1023px以下・補足）
   ========================================================= */
@media (max-width: 1023px) and (min-width: 768px){
  .tour-terms__conditions > div{
    grid-template-columns: 130px minmax(0,1fr);
  }
}
