/* --- ヒーローセクション全体 --- */
.hero-overlay {
  padding: 60px 20px; /* 上下に余白を持たせる */
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  min-height: 80vh;
}

/* メインタイトル H1 */
.hero-title {
  margin-bottom: 40px;
 font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2.2rem;
  line-height: 1.4;
  max-width: 900px;
}

.hero-subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  margin-top: 10px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* --- カードコンテナ（横並び調整） --- */
.cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

/* --- 新しいカード型リンク (旧 .cta-btn) --- */
.cta-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff, #fefce8); /* 清潔感のある白系グラデーション */
  color: #111;
  text-decoration: none;
  padding: 30px 25px;
  border-radius: 20px;
  width: 100%;
  max-width: 350px; /* カードの最大幅 */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
  text-align: left; /* テキストは左寄せが見やすい */
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff, #fde68a); /* ホバー時に少し黄色を強める */
}

/* カード内の見出し H2 */
.cta-heading {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #b45309; /* 落ち着いたオレンジ/ゴールド */
  border-bottom: 2px solid #fcd34d;
  display: inline-block;
  padding-bottom: 5px;
}

/* カード内の説明文やリスト */
.cta-card p, .cta-card ul {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  list-style: none; /* デフォルトのポッチを消す */
  padding: 0;
}

.cta-card ul li {
  margin-bottom: 8px;
}

/* カード内の一番下の「アクション」ラベル */
.btn-label {
  margin-top: auto; /* 説明文が短くてもボタン位置を下に揃える */
  background-color: #fcd34d;
  padding: 10px 20px;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}

.cta-card:hover .btn-label {
  background-color: #fbbf24;
}

/* --- 既存のスタイル（微調整） --- */
.experiences {
  padding: 80px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.card {
  background: #fff;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
  padding-bottom: 15px;
}

/* 訪問済みリンクの色固定（カード型リンク用） */
.cta-card, .cta-card:visited {
  color: #111;
}

.linkmap, .linkmap:visited {
  color: red !important;
}


/* 体験・商品紹介 ssssssssssssssssssssssssssssssssss*/
.experiences {
  padding: 80px 0;
  text-align: center;
  background-color: #f9f9f9;
}
.experiences h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.card {
  background: #fff;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  padding-bottom: 15px;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
}
.card p {
  padding: 0 15px 10px;
  font-size: 0.95rem;
}
.card a {
  display: inline-block;
  margin: 0 0 10px;
  color: #000000;
  text-decoration: none;
}
.lets {
  display: inline-block;
  margin: 0 0 10px;
  color: #fcd34d;
  text-decoration: none;
}
.card a:hover {
 background-color: #fde68a;
}
.special-experience a {
  display: inline-block;
  margin: 3px 5px;
}

/* 予約フォーム */
.booking {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}
.booking h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.booking form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.booking input, .booking select {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.booking button {
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #fcd34d;
  color: #111;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.booking button:hover {
  background-color: #fbbf24;
}
/*ヒーロ*/
.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background: linear-gradient(135deg, #fff7cc, #fde68a);
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.cta-img {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.cta-text span {
  display: block;
  font-size: 0.95rem;
}

.cta-text strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
}
a:visited {
  color: black;
}
.linkmap,
.linkmap:visited,
.linkmap:hover,
.linkmap:active {
    color: red;
    color: red;
}

.shou-logo {
  display: block; 
  margin: 0 auto 15px; 
  width: 250px; height: auto; 
  object-fit: contain
}
.google-card {
    font-size: 1.3rem;
  border: 6px solid #ff4d4f;
   background: linear-gradient(135deg, #e48f0e, #fefce8);
   text-align: center; 
}
.edit-input {
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 12px 18px;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  margin-bottom: 14px;
  /* 影でふわっと */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);

  /* アニメーション */
  transition: all 0.2s ease;
}

.edit-input:focus {
  outline: none;
  border-color: #ff7a00;   /* オレンジ系 */
  box-shadow: 0 0 0 3px rgba(255,122,0,0.2);
}
.error {
    color: red;
}
.linktxt {
  display: inline-block;
  /* --- 文字を中央に寄せる --- */
  text-align: center; 
  
  /* --- 余白とサイズ --- */
  padding: 5px 12px;
  font-size: 0.9rem;
  font-weight: bold;
  
  /* --- 見た目（色・枠線） --- */
  background-color: #ffffff;
  color: #b45309;
  border: 1px solid #fcd34d;
  border-radius: 50px;
  text-decoration: none;
  
  /* --- アニメーションと影 --- */
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ホバー時に少し色を変えるとよりボタンらしくなります */
.linktxt:hover {
  background-color: #fffbeb;
  border-color: #fbbf24;
}