@charset "utf-8";

/* =========================================
   Aboutページ専用スタイル
   ========================================= */

.about-container-limit { max-width: 1000px; margin: 0 auto; }

.about-card {
  background-color: #252525; border: 1px solid #444; border-radius: 12px;
  padding: 40px; margin-bottom: 40px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-section-title {
  font-size: 1.5rem; color: #ffffff; margin: 0 0 30px 0; padding-left: 15px;
  border-left: 5px solid var(--color-primary); line-height: 1.4; font-weight: bold;
}

.about-sub-title {
  font-size: 1.2rem; color: #fff; margin-top: 40px; margin-bottom: 15px;
  display: flex; align-items: center; gap: 10px;
}
.about-sub-title::before {
  content: ''; display: block; width: 6px; height: 6px;
  background-color: var(--color-primary); border-radius: 50%;
}

.about-divider { border: 0; height: 1px; background-color: #444; margin: 40px 0; }

.about-text { font-size: 1rem; line-height: 1.8; color: #e0e0e0; margin-bottom: 20px; }
.about-text strong { color: #fff; border-bottom: 1px solid #555; }

.rights-note {
  margin-top: 1.5em; padding-top: 1em; border-top: 1px solid #444; font-size: 0.95em; color: #ccc;
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }

.feature-item {
  background-color: #333; border: 1px solid #444; border-radius: 8px;
  padding: 20px; transition: transform 0.2s ease, border-color 0.2s;
}
.feature-item:hover { border-color: #666; transform: translateY(-2px); }

.feature-title {
  color: var(--color-primary); font-size: 1.1rem; font-weight: bold;
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.feature-desc { font-size: 0.9rem; color: #ccc; line-height: 1.6; margin: 0; }

.condition-box {
  background-color: #333; padding: 20px; border-radius: 8px;
  margin: 20px 0; border: 1px solid #444;
}
.condition-title { margin: 0 0 10px 0; font-weight: bold; color: #fff; }
.condition-desc { font-size: 0.95em; margin-bottom: 10px; }
.condition-list { margin: 0 0 15px 0; padding-left: 1.5em; color: #ddd; line-height: 1.6; }
.condition-sub-text { display: block; font-size: 0.9em; color: #aaa; margin-top: 5px; line-height: 1.5; }
.condition-note { font-size: 0.9em; color: #bbb; margin: 0; }

.dm-button-area { margin-top: 25px; text-align: center; }
.dm-button {
  display: inline-flex; align-items: center; gap: 8px; background-color: #000;
  color: #fff; padding: 12px 24px; border-radius: 30px; text-decoration: none;
  font-weight: bold; border: 1px solid #333; transition: background-color 0.2s, transform 0.2s;
}
.dm-button:hover { background-color: #222; transform: scale(1.05); text-decoration: none; }
.dm-icon { width: 18px; height: 18px; fill: currentColor; }

.update-log-container { margin-top: 10px; }
.update-row { display: flex; border-bottom: 1px solid #333; padding: 20px 0; }
.update-row:last-child { border-bottom: none; }

.update-date {
  width: 120px; flex-shrink: 0; font-family: 'Helvetica Neue', monospace;
  color: var(--color-primary); font-weight: bold; font-size: 0.95rem; padding-top: 2px;
}
.update-content { flex-grow: 1; }
.update-desc-text { margin: 5px 0 0 0; font-size: 0.95rem; color: #ddd; line-height: 1.6; }

.tag {
  display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 11px;
  font-weight: bold; color: #fff; letter-spacing: 0.05em; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.tag.new { background-color: #ff4d4f; }
.tag.update { background-color: var(--color-primary); color: #1a1a1a; }
.tag.fix { background-color: #2ecc71; color: #1a1a1a; }

@media (max-width: 768px) {
  .about-card { padding: 25px 20px; }
  .update-row { flex-direction: column; }
  .update-date { margin-bottom: 8px; border-left: 3px solid #444; padding-left: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
}