/* ツアーポイント用スタイル */
:root{
  --bg:#0b0b0d;
  --card:#141416;
  --accent:#ed9629; /* ヴィジュアル系らしい差し色 */
  --muted:#bfbfbf;
  --glass: rgba(255,255,255,0.03);
  --max-width:1100px;
  --radius:14px;
  --gap:20px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}
.tour-points{
  color: #333333;
  position: relative;
  overflow: hidden;
	padding: 30px 60px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f9f7f3;
 border-radius: 20px; /* ←これ追加 */
	margin-top: 20px;
}

.tour-points::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
	background:#fdfcfa;
}

.tour-points .wrap{
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;

  /* グラデーション背景 */
  background: linear-gradient(
    90deg,
    #6ec5e9,
    #6aa8e0,
    #7aa6d9,
    #9bb0d3,
    #7bcfa8
  );
}

/* 横スクロールの親 */
.flow-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: flow 20s linear infinite;
}

/* 流れる文字 */
.flow-text {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-right: 80px;
	color: white;
}

/* 無限ループ */
@keyframes flow {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(-50%);
  }
}

@keyframes infiniteFlow {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(-50%);
  }
}

/* 下ライン */
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 220px;
  height: 6px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #6ec5e9,
    #6aa8e0,
    #7aa6d9,
    #9bb0d3,
    #7bcfa8
  );
}

.shisetu-title {
  font-size: 28px;
  letter-spacing: 0.08em;
  margin: 0 0 15px 0;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  backdrop-filter: blur(6px);
  border-radius: 30px;
}

/* 下のふんわりグラデーションライン */
.shisetu-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 120px;
  height: 5px;
  border-radius: 10px;
background: linear-gradient( 90deg, #6ec5e9, #6aa8e0, #7aa6d9, #9bb0d3, #7bcfa8 );
}

.lead{
  color:var(--muted);
  margin: 6px 0 28px 0;
}

/* 画像エリア */
.point-images{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  max-width:900px;      /* ← 好きな幅に固定 */
  width:100%;
}

.point-images img{
  width:100%;
  height:250px;
display: flex;
  border-radius:10px;
  transition: transform .3s ease;
	
}

/* グリッド */
.points-grid{
  list-style:none;
  display:grid;
  grid-template-columns: 1fr; 
  gap: var(--gap);
  padding:0;
  margin:0;
}

.sauna-highlight {
  position: relative;   /* ← これが重要 */
  color: #000000;
  font-weight: 600;
  font-size: 25px;
  display: inline-block; /* ← これもつけると安定 */
}

.sauna-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;          /* ← 文字幅に合わせる */
  height: 5px;
  border-radius: 10px;
  background: #CCE0BB;
}
.sauna-marker{
  font-weight: bold;
  background: linear-gradient(
    transparent 80%,
    rgba(255,122,24,0.7) 65%,
    rgba(255,0,0,0.7) 100%
  );
}

@media (max-width:800px){
  .points-grid{ grid-template-columns: 1fr; }
}

/* カード */
.point-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), var(--glass));
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding:18px;
  display:flex;
  gap:16px;
  align-items:stretch; 
  position:relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  outline: none;
}


/* アイコン */
.point-card .icon{
  width:64px;
  height:64px;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  flex: 0 0 64px;
}

/* テキスト */
.point-title{
  margin: 0 0 6px 0;
  font-size:18px;
  color:#000;
  font-weight:700;
}
.point-desc{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

/* バッジ */
.badge{
  position:absolute;
  right:14px;
  top:14px;
  background:linear-gradient(90deg,var(--accent), #8b1f57);
  color:#fff;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:0.04em;
  box-shadow: 0 4px 12px rgba(199,43,107,0.14);
}

/* CTA */
.cta{
  text-align:center;
  margin-top:28px;
}
.btn-primary{
  display:inline-block;
  background:linear-gradient(90deg,var(--accent), #9b2a62);
  color:#fff;
  padding:12px 22px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:0.06em;
  box-shadow: 0 8px 20px rgba(155,42,98,0.18);
  transition: transform .18s ease;
}
.btn-primary:hover,
.btn-primary:focus{
  transform: translateY(-3px);
}

/* 小さい著作表記 */
.credit{
  text-align:center;
  color:#6d6d6d;
  font-size:12px;
  margin-top:10px;
}

@media (max-width: 768px){
  .point-images{
    grid-template-columns: 1fr; /* ← 1列にする */
  }

  .point-images img{
    height:220px; /* 少し高さを抑えてもOK */
  }
	
	.point-title{
    font-size: 16px;
    line-height: 1.7;
  }

  .point-card{
    padding: 15px;
  }

  .tour-points{
    padding: 25px 15px;
  }
	
	 .section-title {
    height: 45px;          /* 高さを少しコンパクトに */
    border-radius: 12px;
  }

  .flow-wrap {
    animation: flow 12s linear infinite; /* 少し速く（スマホはテンポ重視） */
  }

  .flow-text {
    font-size: 20px;       /* 小さめに */
    letter-spacing: 0.15em; /* 詰める */
    margin-right: 40px;    /* 余白も縮小 */
  }
}
