

/* リセット --------------------------*/
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Helvetica', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.container {
  position: relative;
  max-width: 767px;     /* 最大幅（お好みで変更可） */
  margin: 0 auto;        /* 左右中央寄せ */
  padding: 0 5px;       /* スマホ時の左右余白 */
  box-sizing: border-box;
}

/* 小さい画面では、ハンバーガーを画面右端に固定したい */
@media (max-width: 767px) {
  .hamburger {
    position: fixed;
    right: 20px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ハンバーガー --------------------------*/
.hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  height: 4px;
  background: #333;
  border-radius: 2px;
}


/* モバイルメニュー --------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100%;
  background-color: rgba(255, 245, 225, 0.95); /* ← 黄色＋透明度85% */
  transition: right 0.3s ease;
  padding: 2em 1em;
  z-index: 1000;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu ul li {
  margin-bottom: 1.5em;
}
.mobile-menu ul li a {
  color: #000;
  font-size: 1.2em;
}


/* 背景スクロール無効 --------------------------*/
.no-scroll {
  overflow: hidden;
}


/* ヒーロー --------------------------*/
.hero {
  text-align: center;
  padding: 4em 1em 2em;
  background: linear-gradient(to bottom, #ff5f6d, #ffc371);
  color: #fff;
}
.hero h1 {
  font-size: 1.8em;
  margin-bottom: 1em;
}
.btn {
  display: inline-block;
  background: #fff;
  color: #e91e63;
  padding: 0.8em 1.6em;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: 2px solid #e91e63; /* ← 枠線を追加 */
}
.btn:hover {
  background: #fce4ec;
}


/* セクション --------------------------*/
.section {
  padding: 3em 2em;
}
.section.alt {
  background: #f5f5f5;
}
.section h2 {
  font-size: 1.4em;
  margin-bottom: 0.8em;
}
.section ul li {
  margin-bottom: 0.6em;
}


/* フッター --------------------------*/
.footer {
  text-align: center;
  padding: 2em 1em;
  font-size: 0.9em;
  color: #666;
}




/* 料金表スタイル */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 2em;
}
.pricing-table th,
.pricing-table td {
  border: 1px solid #ccc;
  padding: 1em;
  text-align: center;
  font-size: 0.95em;
}
.pricing-table thead {
  background-color: #e91e63;
  color: white;
}