body {
  font-family: Arial, sans-serif;
  background-color: #1f1f1f;
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2a2a2a;
  padding: 10px 20px;
  border-bottom: 1px solid #444;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
}

.logo a {
  display: inline-block;
}

.logo img {
  width: 150px;
  height: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li a {
  color: #ffd700;
  text-decoration: none;
  padding: 10px;
}

nav ul li a:hover {
  color: #ffeb3b;
}

/* 「無料で占う」ボタンのスタイル */
.nav-button {
  background-color: #ffd700;
  color: #1f1f1f;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-left: 20px;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: #ffeb3b;
  color: #1f1f1f;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #2a2a2a;
  position: absolute;
  top: 60px;
  right: 20px;
  padding: 10px;
  border-radius: 10px;
}

.mobile-menu a {
  padding: 10px;
  color: #ffd700;
  text-decoration: none;
}

.mobile-menu a:hover {
  background-color: #444;
}

.content {
  max-width: 800px;
  margin: 20px auto;
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
  text-align: center;
  color: #d09b52;
}

h2 {
  color: #c0a16b;
  margin-top: 30px;
}

p {
  line-height: 1.8;
}

ul {
  list-style: disc;
  margin-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #2a2a2a;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 10px;
}

footer p {
  margin: 0;
  color: #fff;
}

/* ボタンのスタイル */
.cta-button {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 30px auto;
  padding: 15px;
  text-align: center;
  background-color: #ffd700;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease; /* スムーズなアニメーション */
}

.cta-button:hover {
  background-color: #ffeb3b;
  font-size: 20px; /* ホバー時のフォントサイズ */
  color: #1f1f1f; /* 文字色を変えない */
}

/* アイキャッチ画像のスタイル */
.eye-catching-image {
  width: 50%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
}

/* リンクのスタイルを調整 */
a {
  color: #d09b52;
  text-decoration: none;
  text-decoration: underline; /* 下線を表示 */
}

a:hover {
  color: #ffeb3b;
  text-decoration: underline; /* ホバー時も下線を維持 */
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: flex;
  }

  .eye-catching-image {
    width: 80%;
  }

  /* モバイルメニューの「無料で占う」ボタンスタイル */
  .mobile-menu a:first-child {
    background-color: #ffd700;
    color: #1f1f1f;
    border-radius: 30px;
    margin-bottom: 10px;
    text-align: center;
  }
}

/* 追加したスタイル */
.three-column-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.three-column-list a {
  width: calc(33.333% - 20px);
  box-sizing: border-box;
  text-decoration: none;
  color: #d09b52; /* サイトのリンク色に合わせました */
  background-color: #444; /* ダークテーマに合わせた背景色 */
  padding: 10px;
  border-radius: 5px;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.three-column-list a:hover {
  background-color: #ffd700;
  color: #1f1f1f;
}

@media (max-width: 768px) {
  .three-column-list a {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .three-column-list a {
    width: 100%;
  }
}

/* 追加部分開始 */
/* 新しいスタイル: info-box */
.info-box {
  background-color: #333;
  border-radius: 10px;
  padding: 1px 20px 20px 20px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.info-box h2 {
  color: #ffd700;
  margin-bottom: 15px;
}

.info-box p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.info-box .highlight {
  color: #ffd700;
  font-weight: bold;
}
/* 追加部分終了 */
