@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');

/* ---------------- 基本設定 ---------------- */
* { margin:0; padding:0; box-sizing:border-box; }
body {
//  font-family: 'Plus Jakarta Sans', sans-serif;
 font-family: 'Aoboshi One', cursive;
  background:#fff5f0; /* 暖色系ベース */
  color:#333;
  line-height:1.6;
  min-height:100vh;
}

/* ---------------- カラー定義 ---------------- */
:root {
  --orange:#FFA94D;
  --pink:#FF6F91;
  --lightorange:#FFD8A8;
  --lightpink:#FFE3EC;
}

/* ---------------- ヘッダー ---------------- */
header {
  background: rgba(255,169,77,0.1);
  backdrop-filter: blur(10px);
  padding:20px 0;
  text-align:center;
  color: #ff7043;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid rgba(255,169,77,0.2);
}
header h1 { font-size:2.4em; margin-bottom:5px; }
header nav a {
  color: var(--orange);
  margin:0 15px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
   font-size:1em;

}
header nav a:hover { opacity:0.7; }

/* ---------------- ヒーロー ---------------- */
.hero {
  text-align:center;
  padding:50px 20px;
  position:relative;
  color: #ff7043;
}
.hero::after {
  content:'';
  position:absolute; top:0; left:0; width:100%; height:100%;
  background: rgba(255,169,77,0.08);
  backdrop-filter: blur(5px);
  z-index:0;
}
.hero-content { position:relative; z-index:1; max-width:800px; margin:auto; color: var(--orange);  }
.hero h2 { font-size:2em; margin-bottom:20px; color: var(--orange);  }
.hero p { font-size:1.2em; margin-bottom:30px; }
.hero img { width:100%; max-height:400px; object-fit:cover; margin-top:30px; border-radius:20px; }

/* ---------------- ボタン ---------------- */
.btn {
  display:inline-block; padding:16px 32px;
  background: rgba(255,111,145,0.15);
  color: var(--pink);
  border-radius:16px; font-weight:700; font-size:1em;
  transition:0.3s;
  backdrop-filter: blur(5px);
  text-decoration:none;
  margin:5px;
}
.btn:hover { background: rgba(255,111,145,0.3); }

/* ---------------- セクション ---------------- */
section { max-width:1000px; margin:30px auto; padding:0 20px; }
section h2 { font-size:2.2em; text-align:center; margin-bottom:40px; color:  #ff7043; }

section a {
    color: var(--orange);
    margin: 0 15px;
    transition: 0.3s;
}


/* ---------------- カード ---------------- */
.cards { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:30px; }
.card {
  background: rgba(255,169,77,0.05);
  border-radius:20px;
  padding:25px;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow:0 12px 35px rgba(0,0,0,0.1); }
.card h3 { margin-bottom:12px; font-size:1.4em; color: var(--orange); }
.card img { width:100%; border-radius:15px; margin-bottom:15px; }

/* ---------------- フッター ---------------- */
footer {
  text-align:center; padding:30px 20px;
  background: rgba(255,169,77,0.08);
  color: var(--orange);
  border-top:1px solid rgba(255,169,77,0.2);
}
footer a { color: var(--pink); text-decoration:none; }
