/* ベース設定 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

/* ヒーローセクション */
.hero {
    background-image: url('hero-background.png'); /* 画像パスを必要に応じて変更してください */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.9);
    text-align: center;
    padding: 20px;
}

h2 {
    background: #1d58b8;
    padding: 10px;
    border-radius: 5px;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #fa7816;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

.note {
    font-size: 14px;
    color: #ddd;
    margin-top: 10px;
}

/* セクション共通 */
.section {
    padding: 40px 20px;
    text-align: left;
}


/* 角丸画像 */
.image-radius {
    text-align: center;
    margin: 40px 0;
}

.image-radius img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* フォントサイズ */
span.fs08 {
    font-size: 0.8em;
}

/* 料金表 */
.price-card {
  max-width: 600px;
  margin: 3em auto;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.price-card h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
  color: #333;
}

.price-card table {
  width: 100%;
  border-collapse: collapse;
}

.price-card th,
.price-card td {
  padding: 1em;
  border-bottom: 1px solid #ddd;
}

.price-card th {
  background-color: #f8f8f8;
  font-weight: bold;
  color: #555;
}


.price-card .highlight {
  color: #e91e63;
  font-weight: bold;
}


@media screen and (max-width: 480px) {
  .price-table table,
  .price-table thead,
  .price-table tbody,
  .price-table th,
  .price-table td,
  .price-table tr {
    display: block;
  }

  .price-table thead tr {
    display: none;
  }

  .price-table td {
    position: relative;
    padding-left: 50%;
    text-align: left;
    border: none;
    border-bottom: 1px solid #ddd;
  }

  .price-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1em;
    top: 1em;
    font-weight: bold;
    white-space: nowrap;
  }
}


/* フッター */
.footer {
    background: #333;
    color: white;
    padding: 20px;
    font-size: 14px;
}

.footer a {
    color: #ffc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
