/* リセットや基本設定 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fafafa;
  font-family: sans-serif;
  color: #333;
}

/* 注意事項セクション */
.notice-container {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px; /* 下部に余白 */
}
.notice-container h4 {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: bold;
  color: #666;
}
.notice-list {
  list-style-type: disc; /* 通常の● */
  padding-left: 20px;    /* 左余白 */
  font-size: 11px;
  line-height: 1.6;
  color: #444;
}
.notice-list li {
  margin-bottom: 5px;
}

/* リンク項目一覧（例：規約や特商法表示） */
.links-container {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

/* 個別リンクアイテム */
.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 13px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #ddd;
}
.link-item:last-child {
  border-bottom: none; /* 最後の項目は区切り線なし */
}


/* 右側の矢印 */
.arrow {
  font-size: 18px;
  color: #aaa;
}
