

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* ==================================================================
【Attractions】ヘッダー下の文章
================================================================== */
/* 初期状態（非表示） */
.Attractions-intro-text-1 {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  max-width: 1125px;       
  margin: 100px auto 60px;    
  font-size: 14px;
  line-height: 1.6;
  text-align: center;

  opacity: 0;
  transition: opacity 2s ease;

}

/* 表示状態 */
.Attractions-intro-text-1.show {
  opacity: 1;
}


.Attractions-intro-text-1 h2 {
  font-size: 25px;
  margin: 10px 0px 20px 0px;
  color: #5C4433;
}

.Attractions-intro-text-1 p {
  margin: 6px 0;
}
@media (max-width: 768px) {
  .Attractions-intro-text-1 {
    position: relative;
    top: -90px;
    width: 90%; 
    margin: 130px auto 0px;
  }
  .Attractions-intro-text-1 h2 {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .Attractions-intro-text-1 {
    position: relative;
    top: -30px;
    width: 800px; 
  }
}





/* ==================================================================
【Attractions】各周辺観光スポット（パソコン）
================================================================== */
/* =========================
   全体レイアウト
========================= */
.spot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  justify-items: center;
  box-sizing: border-box;
}
/* =========================
   カード外枠（額縁風）
========================= */
/* 初期状態（非表示） */
.spot-card {
  background: linear-gradient(135deg, #e8e3da, #f5f2ec);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 1030px;
  width: 100%;
  transition: 0.3s ease;
  border: 1px solid #d6d0c6;
  margin-bottom: 70px;

  opacity: 0;
  transform: translateY(60px);
  transition: 
    opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2s cubic-bezier(0.22, 1, 0.36, 1);

}

/* 表示時 */
.spot-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   画像
========================= */
.frame-inner img {
  width: 89%;
  height: 620px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
  justify-items: center;
  padding-top: 50px;
  padding-bottom: 10px;
}
/* =========================
   テキスト部分
========================= */
.spot-content {
  padding: 15px 5px 5px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.spot-content h3 {
  margin: 10px 0;
  font-size: 18px;

}
/* 説明文 */
.description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: left;
}
/* 住所 */
.address {
  font-size: 12px;
  margin-bottom: 10px;
}
.address::before {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: #ccc;
  margin: 0 auto 10px;
}
/* リンク */
.spot-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
/* Map / Web Site のリンク */
.link {
  font-size: 12px;
  color: #222;
  text-decoration: underline;
  text-underline-offset: 3px; /* 下線を少し離して上品に */
  cursor: pointer;
  transition: 0.2s ease;
}
/* ホバー時 */
.link:hover {
  opacity: 0.7;
}
/* 区切りのスラッシュ */
.divider {
  margin: 0 12px;
  color: #999;
  font-size: 14px;
  user-select: none; /* 選択できないようにする（地味に重要） */
}
.spot-links.no-address-line {

  border-top: 1px solid #ccc;

  width: 60%;
  margin: 0 auto 0px;

  padding-top: 10px;
  padding-bottom: 0px;



}






/* ==================================================================
【Attractions】各周辺観光スポット（スマホ）
================================================================== */
@media (max-width: 768px) {
/* 初期状態（非表示） */
  .spot-card {
    width: 95%;
    margin: 0 auto;
    justify-items: center;
    box-sizing: border-box;
    margin-bottom: 40px;
  }
  /* 画像をスマホサイズに最適化 */
  .frame-inner img {
    width: 100%;
    height: 220px;   /* ←ここが重要（620pxは大きすぎる） */
    padding-top: 10px;
    padding-bottom: 5px;
  }
  /* テキスト幅を広げる */
  .spot-content {
    width: 95%;
    padding: 10px 0;
  }
  /* 見出し調整 */
  .spot-content h3 {
    font-size: 16px;
  }
  /* 説明文も少し小さく */
  .description {
    font-size: 13px;
  }
  /* 区切り線を少し短く */
  .address::before {
    width: 80%;
  }
  .address {
    font-size: 11px;
  }
  /* リンクサイズ調整 */
  .link {
    font-size: 11px;
  }
  .spot-links.no-address-line {
    width: 80%;
  }
}




/* ==================================================================
【Attractions】各周辺観光スポット（タブレット）
================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  /* カード全体 */
  .spot-card {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  /* 画像（スマホより少し大きく） */
  .frame-inner img {
    width: 95%;
    height: 550px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  /* テキストエリア */
  .spot-content {
    width: 90%;
    padding: 12px 0;
  }
  /* 見出し */
  .spot-content h3 {
    font-size: 17px;
  }
  /* 説明文 */
  .description {
    font-size: 13.5px;
  }
  /* 区切り線 */
  .address::before {
    width: 80%;
  }
  /* 住所 */
  .address {
    font-size: 11.5px;
  }
  /* リンク */
  .link {
    font-size: 11.5px;
  }
  .spot-links.no-address-line {
    width: 80%;
  }
}







/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */





























