@charset 'utf-8';

/* =========================
   Custom Tour page (base)
========================= */
.page__customTour .page__title h1 {
  font-size: 10rem;
}

.page__customTour .page__lead {
  line-height: 1.9;
}

/* 説明文 / 対象者のリスト */
.custom__description,
.custom__targetList {
  margin-top: 16px;
  padding-left: 1.2em;
  line-height: 1.9;
}

.custom__description li,
.custom__targetList li {
  margin: 6px 0;
}

/* =========================
   Custom Points
========================= */

.custom__pointList {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.custom__pointItem {
  background: #ffffff;
  border: 1px solid rgba(60, 40, 25, 0.12); /* 薄いブラウンの線 */
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.custom__pointIcon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(140, 110, 80, 0.10); /* 薄いブラウン */
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.custom__pointIcon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.custom__pointTitle {
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}

.custom__pointText {
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
  opacity: 0.9;
}

/* hover（PCでちょっとだけ気持ちよく） */
@media (hover: hover) {
  .custom__pointItem {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .custom__pointItem:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  }
}

/* =========================
   custom__cta
========================= */
.custom__ctaTitle {
  font-size: 2rem;
  font-weight: 700;
}

.custom__ctaText {
  margin-top: 1rem;
  line-height: 1.5;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
  .custom__pointList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .page__customTour .page__title h1 {
    font-size: min(13cqw, 4rem);
  }

  .custom__description,
  .custom__targetList {
    margin-top: 16px;
    padding-left: 1em;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .custom__description li,
  .custom__targetList li {
    margin: 0.75rem 0;
  }

  .custom__pointList {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .custom__pointItem {
    padding: 16px;
    width: 48%;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .custom__pointIcon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
  }

  .custom__pointIcon img {
    width: 26px;
    height: 26px;
  }

  .custom__pointTitle {
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 600;
  }

  .custom__ctaTitle {
    font-size: 1.5rem;
    font-weight: 700;
  }
}