/* ── リセット ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── ベース ── */
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
    "Yu Gothic", "YuGothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  background-color: #f5f5f5;
}

/* ── コンテナ ── */
.container {
  max-width: 860px;
  margin: 60px auto;
  padding: 48px 48px 56px;
  background-color: #ffffff;
}

/* ── ページタイトル ── */
.page-title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #222222;
  margin-bottom: 28px;
}

/* ── 区切り線 ── */
.divider {
  border: none;
  border-top: 1px solid #cccccc;
  margin-bottom: 36px;
}

/* ── テンプレートブロック ── */
.template-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* テンプレート名 */
.template-name {
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
  display: flex;
  align-items: center;
  gap: 6px;
}

.template-name .icon {
  color: #222222;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* 入稿案内文 */
.delivery-note {
  font-size: 1rem;
  color: #333333;
}

/* 注意書きリスト */
.notes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notes li {
  font-size: 0.875rem;
  color: #555555;
  padding-left: 1em;
  position: relative;
}

.notes li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ── ダウンロードボタン ── */
.btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.btn-download {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 48px;
  border-radius: 100px;
  transition: opacity 0.2s ease;
}

.btn-download:hover {
  opacity: 0.75;
}

/* ── レスポンシブ ── */
@media (max-width: 600px) {
  .container {
    margin: 0;
    padding: 32px 20px 40px;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .btn-download {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}
