/* 全体設定 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f7f0fa;
  color: #2b2d42;
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ヘッダー */
.site-header {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 4px solid #7209b7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #7209b7;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.site-nav a {
  text-decoration: none;
  color: #2b2d42;
  font-weight: bold;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: #f72585;
}

/* ヒーローセクション */
.hero {
  /* ▼ ここを変更：背景画像を生成したイラストに変更 ▼ */
  /* 画像ファイル名は、保存した名前に合わせてください  */
  background-image: url("img/kuchisake-pop.jpg");

  /* ▼ 画像の表示設定 ▼ */
  background-size: cover;      /* 画面全体を覆うように拡大縮小 */
  background-position: center; /* 画像の中心を基準にする */
  background-repeat: no-repeat; /* 画像を繰り返さない */

  color: #ffffff;
  padding: 8rem 2rem; /* 画像を見せるために上下の余白を少し広げる */
  text-align: center;
  
  /* ▼ 文字を読みやすくするためのオーバーレイ（薄い膜）を追加 ▼ */
  position: relative; /* 子要素の配置基準にする */
}

/* ヒーローセクションのオーバーレイ（擬似要素） */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 紫ベースの薄いグラデーションを画像の上に重ねる */
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.6), rgba(76, 201, 240, 0.4));
  z-index: 1; /* 画像と文字の間に配置 */
}

/* ヒーローセクションのコンテンツ（文字など） */
.hero-content {
  max-width: 650px; /* 少し広げる */
  margin: 0 auto;
  position: relative; /* オーバーレイより上に表示させる */
  z-index: 2; /* 最前面に配置 */
}

/* タイトルの調整 */
.hero h1 {
  font-size: 3rem; /* 少し大きく */
  margin-bottom: 1rem;
  line-height: 1.2;
  /* 文字に影をつけて、画像の上でも読みやすくする */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 強調文字の調整 */
.highlight {
  color: #4cc9f0;
  /* 影を少し調整 */
  text-shadow: 2px 2px 0px #f72585, 2px 2px 4px rgba(0,0,0,0.5);
}

/* 説明文の調整 */
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  /* 文字に影をつける */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* バッジの調整 */
.badge {
  background: #f72585;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.badge {
  background: #f72585;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight {
  color: #4cc9f0;
  text-shadow: 2px 2px 0px #f72585;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: #f72585;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 0 #b5179e;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b5179e;
}

/* メインコンテンツ */
.container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 1.8rem;
  color: #7209b7;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* カードレイアウト */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border: 3px solid #2b2d42;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 5px 5px 0px #2b2d42;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-tag {
  position: absolute;
  top: -12px;
  left: 15px;
  padding: 0.2rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
}

.tag-spot { background: #ff477e; }
.tag-photo { background: #06d6a0; }
.tag-column { background: #118ab2; }

.card-img {
  height: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #2b2d42;
}

.card p {
  font-size: 0.85rem;
  color: #6c757d;
}

/* フッター */
.site-footer {
  background: #2b2d42;
  color: #ffffff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
  font-size: 0.85rem;
}

.site-footer p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.hero-header {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  /* ポップ＆オカルトテイストなグラデーション背景 */
  background: linear-gradient(135deg, #2b1055, #7597de);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 浮遊する背景エレメントの共通設定 */
.bg-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

/* パステル円形バブル 1 */
.circle-1 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ff7eb3, #ff758c);
  border-radius: 50%;
  top: 10%;
  left: 8%;
  animation: float 6s ease-in-out infinite;
}

/* パステル円形バブル 2 */
.circle-2 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #8ec5fc, #e0c3fc);
  border-radius: 50%;
  bottom: 5%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

/* ポップなキラキラ星 1 */
.star-1 {
  font-size: 3rem;
  color: #ffe600;
  top: 20%;
  right: 25%;
  animation: pulse 3s ease-in-out infinite;
}

/* ポップなキラキラ星 2 */
.star-2 {
  font-size: 2.5rem;
  color: #00ffff;
  bottom: 20%;
  left: 20%;
  animation: pulse 4s ease-in-out infinite 1s;
}

/* 上下にふわふわ漂うアニメーション */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
}

/* 明滅＆拡大縮小のアニメーション */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.9;
  }
}