body {
  margin: 0;
  font-family: "Yu Gothic", sans-serif;
  background: #fff6f8;
  color: #444;
  text-align: center;
}

/* ヘッダー */
header {
  padding: 20px;
}

.header-deco {
  width: 250px;
}

h1 {
  margin: 10px 0;
}

/* メイン枠 */
main {
  max-width: 700px;
  margin: auto;
  padding: 10px;
}

/* 上部ボックス */
.top-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* イラスト */
.illustration img {
  width: 200px;
}

/* メニュー */
.menu {
  margin-top: 20px;
}

.btn {
  display: block;
  margin: 10px auto;
  padding: 12px;
  width: 70%;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

.pink { background: #ffd1dc; }
.yellow { background: #ffe4b5; }
.green { background: #c8f0d8; }
.blue { background: #cde7ff; }

/* 説明 */
.description {
  margin: 20px 0;
  line-height: 1.8;
  font-size: 14px;
}

/* お問い合わせ */
.contact {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* リボン */
.ribbon {
  width: 180px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* リスト */
.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin: 10px 0;
}

/* メールアイコン */
.contact img {
  vertical-align: middle;
  width: 20px;
  margin-right: 8px;
}

/* 花 */
.flower {
  width: 120px;
  margin-top: 10px;
}

/* フッター */
footer {
  margin: 20px;
  font-size: 12px;
}





/* 上部ナビ */
.menu-top {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.menu-top a {
  background: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  color: #555;
  font-size: 13px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* カード */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* レッスン項目 */
.lesson-block {
  margin-bottom: 15px;
}

.lesson-block h3 {
  margin-bottom: 5px;
  color: #e8a0a8;
}

/* 料金表 */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.price-table th,
.price-table td {
  border: 1px solid #eee;
  padding: 8px;
  font-size: 14px;
}

.price-table th {
  background: #ffe4ec;
}

.note {
  font-size: 12px;
  margin-top: 10px;
}

/* お問い合わせ */
.contact {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.ribbon {
  width: 180px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}



/* プロフィール */
.profile-card {
  text-align: center;
}

/* 上部 */
.profile-top {
  margin-bottom: 20px;
}

.profile-img {
  width: 160px;
  margin-bottom: 10px;
}

/* セクション */
.profile-section {
  text-align: left;
  margin-bottom: 20px;
}

.profile-section h3 {
  color: #e8a0a8;
  margin-bottom: 5px;
}





/* 活動紹介 */
.activity {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* カード */
.activity-card {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
}

/* 画像 */
.activity-card img {
  width: 100%;
  border-radius: 15px;
}

/* タイトル */
.activity-card h3 {
  margin: 10px 0 5px;
  color: #e8a0a8;
}

/* PC時だけ横並び */
@media (min-width: 600px) {
  .activity {
    grid-template-columns: repeat(2, 1fr);
  }
}