/* =========
   RECRUIT page only
   ========= */

.section-title{
  color: #C9A24D;
  font-size: 26px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-weight: 300;
  text-align: center;
}

.recruit-hero{
  padding: 50px 20px;
  border-bottom: 1px solid rgba(201,162,77,0.1);
}

.catch{
  font-size: 15px;
  line-height: 2.2;
  color: #ccc;
  letter-spacing: 0.05em;
}

/* environment */
.env-section{
  padding: 60px 20px;
  background: rgba(201, 162, 77, 0.05);
}

.env-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}

.env-item{
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 77, 0.2);
}

.env-item h4{
  color: #C9A24D;
  margin: 0 0 10px;
  font-size: 16px;
}

.env-item p{
  font-size: 13px;
  color: #bbb;
  margin: 0;
  line-height: 1.6;
}

/* benefit card */
.special-benefit{
  padding: 40px 15px;
  max-width: 600px;
  margin: 0 auto;
}

.benefit-card{
  border: 2px solid #C9A24D;
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 35px 20px;
  border-radius: 4px;
}

.benefit-card h3{
  color: #C9A24D;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-align: center;
}

.limit{
  font-size: 12px;
  color: #ff5555;
  margin-bottom: 30px;
  font-weight: bold;
  display: block;
  text-align: center;
}

.benefit-row{
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
}

.no-border{ border-bottom: none; }

.benefit-label{
  display: block;
  font-size: 13px;
  color: #C9A24D;
  margin-bottom: 10px;
  font-weight: bold;
}

.benefit-value{
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
}

.gold-large{
  color: #C9A24D;
  font-size: 28px;
  font-weight: bold;
  margin: 0 4px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(201, 162, 77, 0.3);
}

.row-note{
  font-size: 11px;
  color: #888;
  margin-top: 10px;
  line-height: 1.5;
}

/* concept */
.recruit-points{
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.course-category{
  color: #C9A24D;
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.1em;
}

.point-item{
  margin-bottom: 35px;
  padding-left: 20px;
  border-left: 1px solid #C9A24D;
}

.point-item strong{
  color: #C9A24D;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.point-item p{
  font-size: 14px;
  line-height: 1.8;
  color: #bbb;
  margin: 0;
}

/* FAQ */
.recruit-qa{
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.qa-item{
  margin-bottom: 15px;
  border: 1px solid rgba(201, 162, 77, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.qa-item summary{
  list-style: none;
  padding: 18px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.qa-item summary::-webkit-details-marker{ display: none; }
.qa-item summary::after{ content: '＋'; color: #C9A24D; font-size: 12px; }
.qa-item[open] summary::after{ content: 'ー'; }

.qa-content{
  padding: 15px 18px 18px;
  font-size: 13px;
  line-height: 1.8;
  color: #bbb;
  border-top: 1px solid rgba(201, 162, 77, 0.1);
}

.qa-content strong{ color: #C9A24D; }

/* contact */
.contact-area{
  padding: 40px 20px;
  background: rgba(255,255,255,0.02);
  text-align: center;
}

.benefit-msg{
  color: #C9A24D;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.notice{
  font-size: 12px;
  color: #666;
}

.recruit-notes{
  padding: 40px 20px;
  font-size: 12px;
  color: #888;
  line-height: 2.0;
  text-align: center;
}

.recruit-line-btn{
  display:block;
  margin:22px auto 0;
  max-width:360px;
  padding:16px 20px;
  text-align:center;
  border-radius:999px;
  font-size:15px;
  letter-spacing:.12em;
  font-weight:600;

  color:#000;
  background:linear-gradient(180deg,#C9A24D,#a8873c);
  box-shadow:
    0 6px 20px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.35);

  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.recruit-line-btn:hover{
  transform:translateY(-1px);
  box-shadow:
    0 8px 26px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.45);
  opacity:.95;
}

.recruit-line-btn:active{
  transform:scale(.98);
}
