/* ダウンロードページスタイル */



.section-download {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.download__description {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.download__text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  text-align: left;
}

.download__box {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
}

.download__button-area {
  text-align: center;
}

.download__button {
  display: inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 18px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.download__button:hover {
  background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.download__icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 24px;
}

.download__note {
  margin-top: 15px;
  font-size: 13px;
  color: #666;
}

.download__subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-left: 12px;
  border-left: 4px solid #0066cc;
}

.download__notice {
  background: #fff9e6;
  border: 1px solid #ffd700;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}

.download__list {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.download__list li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.download__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #80CED7;
}

.download__contact {
  text-align: left;
  padding: 30px;
  background: #f0f8ff;
  border-radius: 8px;
}

.download__contact p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.download__tel {
  color: #0066cc;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}

.download__tel:hover {
  text-decoration: underline;
}

.download__link {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.download__link:hover {
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {

  .section-download {
    padding: 40px 15px;
  }

  .download__description {
    padding: 25px 20px;
  }

  .download__title {
    font-size: 22px;
  }

  .download__text {
    font-size: 14px;
  }

  .download__box {
    padding: 20px;
  }

  .download__button {
    font-size: 18px;
    padding: 15px 40px;
  }

  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc-none {
    display: none;
  }
}