/* =========
   ATTENTION page only
   ========= */

.content-block{
  padding: 30px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.section-title{
  color: #C9A24D;
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #C9A24D;
  display: inline-block;
  padding-bottom: 5px;
}

.intro-text{
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}

/* accordion */
details{
  margin-bottom: 20px;
  border: 1px solid rgba(201, 162, 77, 0.3);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  overflow: hidden;
}

summary{
  list-style: none;
  padding: 15px 20px;
  cursor: pointer;
  color: #C9A24D;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}

summary::-webkit-details-marker{ display: none; }
summary::after{ content: '＋'; font-size: 14px; color: #C9A24D; }

details[open] summary{
  border-bottom: 1px solid rgba(201, 162, 77, 0.2);
  background: rgba(201, 162, 77, 0.05);
}
details[open] summary::after{ content: 'ー'; }

.accordion-content{ padding: 20px; }

/* list */
.note-list{ list-style: none; padding: 0; margin: 0; }
.note-list li{
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}
.note-list li:last-child{ border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.en-warning{
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 4px;
  font-style: italic;
}

/* warning blocks */
.warning-block{
  border: 1px solid;
  margin: 30px 0;
  padding: 25px 20px;
  text-align: left;
  border-radius: 4px;
}

.warning-title{
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.warning-text{
  font-size: 13px;
  line-height: 1.8;
  color: #ddd;
}

.warning-red{
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.08);
}
.warning-red .warning-title{ color: #ff4444; }

.warning-gold{
  border-color: #C9A24D;
  background: rgba(201, 162, 77, 0.1);
}
.warning-gold .warning-title{ color: #C9A24D; }

.en-notice{
  font-size: 11px;
  line-height: 1.6;
  color: #aaa;
  margin: 15px 0;
  font-family: Arial, sans-serif;
}

.text-red{ color: #ff4444; }
