/* ===== 共通 ===== */
body {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  margin: 0;
  line-height: 1.8;
  color: #333;
  background: #ffffff;
}

section {
  padding: 70px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

h1, h2, h3 {
  line-height: 1.4;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

.center {
  text-align: center;
}

/* ===== ロゴ ===== */
.logo {
  margin: 0;
  line-height: 1;
}

.logo a {
  font-size: 18px;
  font-weight: bold;
  color: #0078a8;
  text-decoration: none;
}

/* ===== ヘッダー ===== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.global-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* ===== フッター ===== */
.site-footer {
  background: #f5f7f8;
  margin-top: 100px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
}

.copyright {
  font-size: 13px;
  color: #777;
}

/* ===== スマホ ===== */
@media screen and (max-width: 768px) {

  body {
    font-size: 15px;
  }

  section {
    padding: 50px 16px;
  }

  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .global-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .entry-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 16px 0;
  }
}

/* ===== ENTRY 共通 ===== */
.entry-area {
  padding: 80px 20px;
  background: #ffffff;
}

.entry-buttons {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.entry-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 260px;   /* ← これは残してOK */
  height: 64px;       /* ← 高さを固定（重要） */
  padding: 0;         /* ← paddingは完全に殺す */

  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  border-radius: 40px;
}


.entry-btn.new {
  background: linear-gradient(135deg, #1bb0e6, #0078a8);
   color: #ffffff;
}

.entry-btn.career {
  background: linear-gradient(135deg, #4a7bd0, #2b57a3);
   color: #ffffff;
   
  font-size: 18px;     /* ← interviewの .career を上書き */
  line-height: 1;      /* ← 見た目安定用（重要） */
}

 /* ENTRY スマホ対応 */
@media screen and (max-width: 768px) {
  .entry-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .entry-btn {
    width: 100%;
  }
}


/* ===== interview ===== */

.page-title {
  text-align: center;
  padding: 80px 20px 40px;
}

.interview-section {
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.interview-box {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.interview-box img {
  width: 320px;
  border-radius: 12px;
}

.career {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* ===== interview SP ===== */
@media screen and (max-width: 768px) {
  .interview-box {
    flex-direction: column;
  }

  .interview-box img {
    width: 100%;
    max-width: 400px;
  }
}
