/* --- LPの既存スタイルに影響しないよう、クラス名でカプセル化しています --- */
.dl-container {
  max-width:650px;
  margin:30px 0;
  font-family:sans-serif;
}

/* 2. アコーディオンの開閉設定 */
.dl-accordion-content {
  max-height: 0; /* 最初は高さを0にして非表示 */
  overflow: hidden;
  transition: max-height 0.4s ease-out, margin-top 0.4s ease-out; /* なめらかに開閉 */
  opacity: 0;
  background-color: #f9f9f9;
  border-radius: 6px;
  text-align: left;
}
/* アコーディオンが開いた状態のクラス */
.dl-accordion-content.is-open {
  max-height: 1000px; /* 十分な高さを確保（コンテンツに応じて調整） */
  opacity: 1;
  margin-top: 24px;
  border: 1px solid #e1e1e1;
}

/* 3. 中身のダウンロードコンテンツの装飾 */
.dl-content-inner {
  padding: 24px;
}
.dl-section-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 12px;
  color: #333;
}
.dl-agreement-text {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}
.dl-agreement-text a {
  color: #0070f3;
  text-decoration: underline;
}

/* エリア1：ZIPダウンロードボタン */
.dl-zip-btn {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 24px;
}
.dl-zip-btn:hover {
  background-color: #218838;
}

/* 区切り線 */
.dl-divider {
  border: 0;
  border-top: 1px dashed #ccc;
  margin: 24px 0;
}

/* エリア2：延長フォーム */
.dl-form-group {
  margin-bottom: 12px;
}
.dl-form-group label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #444;
}
.dl-input-text, .dl-select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.dl-submit-btn {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 15px;
}
.dl-submit-btn:hover {
  background-color: #111;
}

/* エリア3：リソースリンク */
.dl-resource-links {
  margin-top: 16px;
  font-size: 14px;
}
.dl-resource-links a {
  color: #0070f3;
  text-decoration: none;
  margin-right: 15px;
}
.dl-resource-links a:hover {
  text-decoration: underline;
}
