/* Reset some basic elements */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header styling */
header {
  background: #76c7c0;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Navigation styling */
nav {
  background: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Main section styling */
main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

section {
  margin-bottom: 20px;
}

.centered-section {
  text-align: center;
  margin: 0 auto;
  width: 80%; /* セクションの幅を指定します。必要に応じて調整してください。 */
  padding: 20px;
}

/* 初回特別価格を太く赤字にする */
.special-price {
  color: red;
  font-size: 28px;
}

/* 通常価格に赤の打ち消し線（二重線）を入れる */
.regular-price {
  color: red;
  position: relative;
  text-decoration: line-through;
  text-decoration-color: red;
}

/* 二重線を実現するための疑似要素 */
.regular-price::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-bottom: 1px solid red;
  transform: translateY(-50%);
}


/* Footer styling */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}
