/* =============================================
   YOGO TRAIL PAGE
   ============================================= */

:root {
  --yt-green:  #2f5d34;
  --yt-dark:   #1e3820;
  --yt-gold:   #c9943a;
  --yt-bg:     #f8f7f2;
  --yt-bg2:    #f2ede4;
}

.yt-main { background: var(--yt-bg); }

/* ------------------------------------------
   HERO
   ------------------------------------------ */
.yt-hero {
  position: relative;
  height: 56vh;
  min-height: 340px;
  background-color: var(--yt-dark);
  background-image: url('../img/groundgolf/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,22,8,.65) 0%, rgba(8,22,8,.38) 60%, rgba(8,22,8,.55) 100%);
}
.yt-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.yt-hero__label {
  font-size: 11px;
  letter-spacing: 7px;
  font-weight: 700;
  opacity: .72;
  margin: 0 0 14px;
}
.yt-hero__h1 {
  margin: 0 0 14px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 60px);
  letter-spacing: 6px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.yt-hero__sub {
  font-size: clamp(13px, 1.5vw, 15px);
  opacity: .88;
  margin: 0;
  letter-spacing: 1px;
}

/* ------------------------------------------
   INFO CARDS
   ------------------------------------------ */
.yt-info { padding: 60px 0; }
.yt-info__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.yt-info__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.yt-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.yt-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #eef4ee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yt-green);
}
.yt-card__label {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #9aa890;
  margin-bottom: 6px;
}
.yt-card__val {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #33332c;
  margin-bottom: 4px;
}
.yt-card__val a {
  color: var(--yt-green);
  text-decoration: none;
}
.yt-card__note {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}

/* ------------------------------------------
   SCHEDULE
   ------------------------------------------ */
.yt-schedule { background: var(--yt-dark); padding: 80px 0; }
.yt-schedule__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
.yt-schedule__head {
  text-align: center;
  margin-bottom: 48px;
  color: #fff;
}
.yt-schedule__label {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  color: var(--yt-gold);
  margin: 0 0 10px;
}
.yt-schedule__h2 {
  margin: 0 0 12px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
  letter-spacing: 2px;
}
.yt-schedule__note {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  letter-spacing: .5px;
}
.yt-schedule__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.yt-schedule__item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.yt-schedule__month {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--yt-gold);
  flex-shrink: 0;
  min-width: 30px;
}
.yt-schedule__date {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}
.yt-schedule__dl {
  margin-top: 40px;
  text-align: center;
}
.yt-btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--yt-gold);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
}
.yt-btn-pdf:hover { background: #b07d28; }

/* ------------------------------------------
   DETAIL
   ------------------------------------------ */
.yt-detail { padding: 80px 0; }
.yt-detail__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}
.yt-detail__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.yt-detail__colhead { margin-bottom: 20px; }
.yt-detail__colhead--mt { margin-top: 40px; }
.yt-detail__col-en {
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #9aa890;
  margin: 0 0 6px;
}
.yt-detail__col-h3 {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 22px);
  color: #33332c;
  letter-spacing: 1px;
}
.yt-detail__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yt-green);
  background: #eef4ec;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin: 0 0 10px;
}
.yt-detail__sub--mt { margin-top: 20px; }

/* 持ち物リスト */
.yt-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  border-top: 1px solid #e5e1d8;
}
.yt-list li {
  border-bottom: 1px solid #e5e1d8;
  padding: 10px 6px;
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}
.yt-list li::before {
  content: '›';
  color: var(--yt-green);
  font-size: 18px;
  flex-shrink: 0;
}
.yt-list--optional li { color: #777; }
.yt-list--optional li::before { opacity: .5; }

/* レンタル */
.yt-rental {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.yt-rental li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.yt-rental__name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #33332c;
}
.yt-rental__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--yt-green);
}

/* 備考 */
.yt-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden;
}
.yt-notes li {
  padding: 14px 20px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #f0ede6;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.yt-notes li:last-child { border-bottom: none; }
.yt-notes li::before {
  content: '!';
  font-size: 11px;
  font-weight: 900;
  color: var(--yt-gold);
  background: rgba(201,148,58,.15);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.yt-detail__content { margin-top: 32px; line-height: 1.9; color: #444; font-size: 14px; }

/* ------------------------------------------
   CTA
   ------------------------------------------ */
.yt-cta { background: var(--yt-bg2); padding: 72px 40px; }
.yt-cta__inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.yt-cta__label {
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  color: #9aa890;
  margin: 0 0 12px;
}
.yt-cta__h2 {
  margin: 0 0 12px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 26px);
  color: #33332c;
}
.yt-cta__text {
  font-size: 14px;
  color: #666;
  margin: 0 0 28px;
}
.yt-cta__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yt-green);
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 1px;
  background: #fff;
  border: 1.5px solid #c6d8c0;
  padding: 16px 36px;
  border-radius: 9px;
  transition: background .2s;
}
.yt-cta__tel:hover { background: #eef4ec; }

/* ------------------------------------------
   Responsive
   ------------------------------------------ */
@media (max-width: 900px) {
  .yt-info__cards { grid-template-columns: repeat(2, 1fr); }
  .yt-schedule__grid { grid-template-columns: repeat(3, 1fr); }
  .yt-detail__cols { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .yt-info { padding: 40px 0; }
  .yt-info__inner { padding: 0 20px; }
  .yt-info__cards { grid-template-columns: 1fr; }
  .yt-schedule { padding: 52px 0; }
  .yt-schedule__inner { padding: 0 20px; }
  .yt-schedule__grid { grid-template-columns: repeat(2, 1fr); }
  .yt-detail { padding: 52px 0; }
  .yt-detail__inner { padding: 0 20px; }
  .yt-hero { height: auto; min-height: 280px; padding: 60px 20px; }
  .yt-cta { padding: 52px 20px; }
}
