/* ========================================
   基本設定
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
  color: #333333;
  background: #fff;
}

a {
  color: #1b294b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.pc {
  display: inline;
}

.sp {
  display: none;
}

/* ========================================
   共通パーツ（余白控えめ）
======================================== */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #1b294b;
}

.btn-primary {
  display: inline-block;
  background: #f9c51d;
  color: #1b294b;
  padding: 15px 35px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus {
  color: #000;
}

.btn-primary:hover {
  background: #e6b820;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #1b294b;
  padding: 15px 35px;
  border: 2px solid #1b294b;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary,
.btn-secondary:link,
.btn-secondary:visited,
.btn-secondary:active,
.btn-secondary:focus {
  color: #1b294b;
}

.btn-secondary:hover {
  background: #1b294b;
  color: #fff;
  text-decoration: none;
}

/* ========================================
   ファーストビュー（余白控えめ）
======================================== */
.hero-section {
  background: #fff;
  text-align: center;
  padding: 40px 20px 25px;
}

.hero-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1b294b;
}

.hero-title::after {
  content: "";
  display: block;
  width: 25%;
  height: 3px;
  background: #f9c51d;
  margin: 12px auto 0;
  opacity: 0.8;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* ========================================
   こんなお悩み
======================================== */
.concerns-section {
  background: #fff;
}

.concerns-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.concern-item {
  padding: 12px 18px;
  margin-bottom: 10px;
  background: #eef2f4;
  border-left: 4px solid #1b294b;
  border-radius: 4px;
  font-size: 15px;
  color: #333333;
}

.concern-item::before {
  content: "✓ ";
  color: #1b294b;
  font-weight: bold;
  margin-right: 8px;
}

/* ========================================
   サービスの特徴
======================================== */
.features-section {
  background: #eef2f4;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 30px 20px; /* 25px → 30px */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #1b294b;
  text-align: center; /* 追加 */
  transition: all 0.3s; /* 追加 */
  text-decoration: none; /* 追加 */
  display: block; /* 追加 */
}

.feature-card:hover {
  /* 新規追加 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.feature-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 15px; /* 12px → 15px */
  color: #1b294b;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0; /* 追加 */
}

/* アイコン画像用 */
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* リンクテキスト用 */
.feature-link {
  display: inline-block;
  margin-top: 15px;
  color: #1b294b;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s;
}

.feature-card:hover .feature-link {
  color: #ffce27;
  text-decoration: none;
}

/* ========================================
   FAQ
======================================== */
.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #f3f3f2;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1b294b;
  font-size: 15px;
}

.faq-question::after {
  content: "▼";
  font-size: 11px;
  color: #181b26;
}

.faq-answer {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.faq-question {
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

/* ========================================
   転職の心構え
======================================== */
.mindset-section {
  background: #eef2f4;
}

.mindset-intro {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.mindset-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}

.mindset-questions {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 40px;
}

.mindset-question {
  padding: 15px 20px 15px 60px;
  margin-bottom: 12px;
  background: #fff;
  border-left: 4px solid #ffce27;
  border-radius: 6px;
  font-size: 15px;
  color: #333333;
  position: relative;
}

.mindset-question::before {
  content: "Q";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #ffce27;
  color: #1b294b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.mindset-message {
  max-width: 800px;
  margin: 0 auto;
  padding: 25px 30px;
  background: linear-gradient(135deg, #1b294b 0%, #2a848a 100%);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mindset-message p {
  font-size: 15px;
  line-height: 1.9;
  color: #fff;
  margin: 0;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: inline;
  }

  .section-wrap {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .hero-section {
    padding: 40px 15px 0px;
  }

  .hero-title {
    font-size: 24px;
	margin-bottom: 30px;
  }

  .hero-title::after {
    width: 40%;
    margin: 8px auto 0;
  }

  .hero-lead {
    font-size: 14px;
	margin-bottom: 0px;
  }

  .hero-meta {
	margin-bottom: 8px;
  }

/* 3. ボタンのレイアウトは「1段＋2段並列」 */
  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列のグリッド */
    gap: 10px; /* ボタン同士の隙間を狭く */
  }

  /* メインCVボタン（黄色）は全幅を維持 */
  .btn-primary {
    grid-column: 1 / -1; /* 1列目から最後まで（全幅） */
    padding: 14px 10px;  /* 縦を少しスリムに */
    font-size: 16px;
  }

  /* 二次ボタン（白抜き）をコンパクトに横並び */
  .btn-secondary {
    grid-column: span 1;  /* 1列分（半分）の幅 */
    padding: 12px 5px;   /* 左右パディングを最小限に */
    font-size: 14px;     /* 文字を少し小さくして1行に収める */
	letter-spacing: -0.02em;
    display: flex;       /* 文字を中央に寄せるため */
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* 勝手に改行させない */
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-icon {
	width: 80px;
	height: 80px;
  }

  .feature-title {
	margin-bottom: 15px;
  }

  .feature-link {
	margin-top: 8px;
  }
}
