/* ===========================
   サイト全体の設定値（CSS変数）
   =========================== */
:root {
  --color-primary: #1e5bb6;
  --color-accent: #f97316;
  --color-cta: #e94560;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-light: #f5f7fa;
  --color-bg-strength: #f0fafe;
  --color-bg-schedule: #e8f4f9;
  --color-bg-check: #fef8e7;
  --color-bg-recruit: #f5f8fc;
  --header-height: 80px;
  --max-width: 1200px;
}

/* ===========================
   リセット
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   ベース設定
   =========================== */
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* ===========================
   共通レイアウト
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================
   共通セクション見出し
   =========================== */
.section-heading {
  position: relative;
  text-align: center;
  margin-bottom: 55px;
}

.section-heading__ja {
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.4;
}

.section-heading__en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.08);
  letter-spacing: 0.15em;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

/* サブ見出し（横棒つき） */
.section-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-subheading__line {
  width: 60px;
  height: 1px;
  background-color: var(--color-text);
}

.section-subheading__text {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text);
}

/* ===========================
   ヘッダー
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.header__nav-list a {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text);
  transition: color 0.3s;
}

.header__nav-list a:hover {
  color: var(--color-primary);
}

.header__entry-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 30px;
  transition: opacity 0.3s, transform 0.3s;
}

.header__entry-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.header__hamburger {
  display: none;
}

/* ===========================
   ヒーローセクション
   =========================== */
.hero {
  padding-top: var(--header-height);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   背景装飾エリア
   =========================== */
.bg-decorated {
  background-image: url('../images/bg-stripes-pc.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
}

/* ===========================
   動画メッセージエリア
   =========================== */
.message-video {
  padding: 80px 0 60px;
  text-align: center;
}

.message-video__frame {
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
}

.message-video__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.message-video__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2a;
  color: rgba(255, 255, 255, 0.7);
}

.message-video__play-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.message-video__placeholder-text {
  font-size: 14px;
}

/* ===========================
   STAR株式会社とは？セクション
   =========================== */
.about {
  padding: 60px 0 80px;
}

.about__description {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* ===========================
   事業内容カード
   =========================== */
.business-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.business-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.business-card__image {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.business-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.business-card__body {
  padding: 24px;
}

.business-card__description {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 20px;
}

.business-card__services {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.business-card__services-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 12px;
  padding-left: 12px;
  position: relative;
}

.business-card__services-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background-color: var(--color-primary);
}

.business-card__services-list {
  list-style: none;
  font-size: 13px;
  line-height: 2;
  color: var(--color-text);
}

.business-card__services-list li {
  padding-left: 1em;
  text-indent: -1em;
}

.business-card__services-list li::before {
  content: "・";
  margin-right: 2px;
}

/* ===========================
   STAR株式会社の強みセクション
   =========================== */
.strength {
  padding: 80px 0;
  background-color: var(--color-bg-strength);
}

.strength-subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.strength-subheading__text {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.strength-subheading__icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.strength-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.strength-card {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px 100px 24px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.strength-card__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
}

.strength-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strength-card__body {
  position: relative;
  z-index: 1;
}

.strength-card__title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 14px;
  line-height: 1.5;
}

.strength-card__description {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}

.strength-card__number {
  position: absolute;
  right: 24px;
  bottom: 10px;
  font-size: 90px;
  font-weight: bold;
  color: rgba(30, 91, 182, 0.1);
  line-height: 1;
  font-style: italic;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.05em;
}

/* ===========================
   仕事紹介セクション
   =========================== */
.work {
  padding: 80px 0 100px;
}

/* 営業職／マネージャー候補 */
.work-job {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 70px auto 80px;
}

.work-job__title {
  display: inline-block;
  background-color: #0f2571;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 12px 36px 12px 44px;
  margin-bottom: 24px;
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 22px 100%, 0 50%);
}

.work-job__description {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}

.work-job__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 業務内容 */
.work-tasks {
  max-width: 1000px;
  margin: 0 auto 80px;
}

.work-tasks__heading {
  font-size: 18px;
  font-weight: bold;
  color: #0f2571;
  margin-bottom: 24px;
  padding-left: 12px;
  position: relative;
}

.work-tasks__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background-color: #0f2571;
}

.work-tasks__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-task-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.work-task-card__header {
  background-color: #0f2571;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  padding: 12px;
}

.work-task-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.work-task-card__description {
  padding: 20px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text);
}

/* 1日の流れ */
.work-schedule {
  background-color: var(--color-bg-schedule);
  border-radius: 8px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.work-schedule__heading {
  background: linear-gradient(to right, #1e3a8a 0%, #1e5bb6 50%, #14b8a6 100%);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  padding: 14px;
}

.work-schedule__body {
  padding: 32px;
}

.work-schedule__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.work-schedule__step {
  position: relative;
  text-align: center;
}

.work-schedule__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--color-primary);
  transform: translateY(-50%);
}

.work-schedule__time {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.work-schedule__label {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.work-schedule__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.work-schedule__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-schedule__description {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text);
  text-align: left;
}

/* 注釈（枠外・右寄せ・左揃え） */
.work-schedule__note-wrap {
  max-width: 1000px;
  margin: 16px auto 0;
  text-align: right;
}

.work-schedule__note {
  display: inline-block;
  text-align: left;
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===========================
   社員の声セクション
   =========================== */
.voice {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e5bb6 50%, #14b8a6 100%);
  color: #fff;
}

.voice .section-heading__ja {
  color: #fff;
}

.voice .section-heading__en {
  color: rgba(255, 255, 255, 0.2);
}

.voice-carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.voice-carousel__viewport {
  overflow: hidden;
  border-radius: 8px;
}

.voice-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.voice-card {
  flex: 0 0 100%;
  width: 100%;
  background-color: #fff;
  color: var(--color-text);
  padding: 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.voice-card__profile {
  text-align: center;
}

.voice-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: var(--color-bg-light);
}

.voice-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-card__info {
  text-align: center;
}

.voice-card__name {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

.voice-card__role {
  font-size: 12px;
  color: var(--color-text-light);
}

.voice-card__role span + span::before {
  content: "・";
}

.voice-card__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.voice-qa__question {
  font-size: 14px;
  font-weight: bold;
  color: #0f2571;
  padding-left: 12px;
  position: relative;
  margin-bottom: 6px;
}

.voice-qa__question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background-color: #0f2571;
}

.voice-qa__answer {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* カルーセル矢印ボタン */
.voice-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 2;
}

.voice-carousel__btn:hover {
  background-color: rgba(255, 255, 255, 0.45);
}

.voice-carousel__btn--prev {
  left: -70px;
}

.voice-carousel__btn--next {
  right: -70px;
}

.voice-carousel__arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.voice-carousel__arrow--left {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.voice-carousel__arrow--right {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* インジケーター（ドット） */
.voice-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.voice-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s, transform 0.3s;
}

.voice-carousel__dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.voice-carousel__dot.is-active {
  background-color: #fff;
  transform: scale(1.2);
}

/* ===========================
   適性チェックセクション
   =========================== */
.check {
  padding: 80px 0 100px;
  background-color: #fff;
}

/* イントロエリア */
.check-intro {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 0px;
}

.check-intro__icon {
  justify-self: center;
}

.check-intro__icon img {
  width: 100%;
  max-width: 90px;
  height: auto;
}

.check-intro__text {
  text-align: center;
}

.check-intro__lead {
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.check-intro__title {
  font-size: 26px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.check-intro__title-highlight {
  display: inline-block;
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 2px;
}

.check-intro__description {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.check-intro__description strong {
  color: var(--color-primary);
  font-weight: bold;
}

.check-intro__people {
  justify-self: center;
}

.check-intro__people img {
  width: 100%;
  height: auto;
}

/* 強調テキスト（青下線） */
.check-highlight {
  color: var(--color-primary);
  font-weight: bold;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 1px;
}

/* チェック項目リスト */
.check-list {
  max-width: 850px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #c5dcf5;
  border-radius: 12px;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 10px;
  border-bottom: 1px solid #e8f0f5;
  cursor: pointer;
  transition: background-color 0.2s;
}

.check-list__item:hover {
  background-color: #f8fbfd;
}

.check-list__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.check-list__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 12px;
  flex-shrink: 0;
  background-color: #fff;
}

.check-list__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.check-list__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text);
}

/* CTAエリア */
.check-cta {
  max-width: 850px;
  margin: 40px auto 0;
  background-color: var(--color-bg-check);
  border-radius: 12px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.check-cta__bubble {
  width: 130px;
  height: 130px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.check-cta__bubble-icon {
  width: 36px;
  height: auto;
  margin-bottom: 4px;
}

.check-cta__bubble-text {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-text);
}

.check-cta__bubble-text strong {
  display: inline-block;
  font-size: 15px;
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 2px;
}

.check-cta__body {
  flex: 1;
}

.check-cta__heading {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 8px;
}

.check-cta__description {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.check-cta__btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.check-cta__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===========================
   募集要項セクション
   =========================== */
.recruit {
  padding: 80px 0 100px;
  background-color: #f0fafe;
}

.recruit-info {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 50px;
}

.recruit-info__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid #dde6ed;
  align-items: start;
}

.recruit-info__row:last-child {
  border-bottom: none;
}

.recruit-info__label {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text);
  padding-left: 14px;
  position: relative;
}

.recruit-info__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background-color: var(--color-primary);
}

.recruit-info__content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
}

.recruit-info__text {
  margin-bottom: 12px;
}

.recruit-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.recruit-info__list li {
  display: flex;
  flex-direction: column;
}

.recruit-info__list-title {
  display: block;
  padding-left: 16px;
  position: relative;
  font-weight: bold;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 2px;
}

.recruit-info__list-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  background-color: var(--color-primary);
}

.recruit-info__list-desc {
  display: block;
  padding-left: 16px;
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===========================
   代表メッセージセクション
   =========================== */
.message {
  padding: 80px 0 100px;
  background-color: #fff;
}

.message-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.message-content__profile {
  text-align: center;
}

.message-content__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: var(--color-bg-light);
}

.message-content__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-content__name {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

.message-content__role {
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

.message-content__heading {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.message-content__text {
  font-size: 13px;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.message-content__text:last-child {
  margin-bottom: 0;
}

/* ===========================
   エントリーCTAセクション
   =========================== */
.entry {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e5bb6 50%, #14b8a6 100%);
  color: #fff;
  overflow: hidden;
}

.entry__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.15em;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.entry__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.entry__heading {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS Mincho", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.entry__lead {
  font-size: 14px;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.entry__btn {
  display: inline-block;
  padding: 18px 60px;
  background-color: #ffd643;
  color: var(--color-text);
  font-size: 18px;
  font-weight: bold;
  border-radius: 40px;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.entry__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===========================
   会社概要セクション
   =========================== */
.company {
  padding: 80px 0 100px;
  background-color: #fff;
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.company-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.company-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.company-info {
  display: flex;
  flex-direction: column;
}

.company-info__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e8eb;
  align-items: start;
}

.company-info__row:first-child {
  padding-top: 0;
}

.company-info__row:last-child {
  border-bottom: none;
}

.company-info__label {
  font-size: 13px;
  font-weight: bold;
  color: var(--color-primary);
}

.company-info__data {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text);
}

/* ===========================
   フッター
   =========================== */
.footer {
  background-color: #0d1d8c;
  color: #fff;
  padding: 30px 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer__logo img {
  height: 44px;
  width: auto;
}

.footer__copyright {
  justify-self: center;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.footer__spacer {
  /* 右側の余白用 */
}

/* ===========================
   エントリーフォームセクション
   =========================== */
.entry-form {
  padding: 80px 0 100px;
  background-color: #f0fafe;
}

.form {
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 50px;
}

.form__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #eef2f5;
  align-items: start;
}

.form__row:first-child {
  padding-top: 0;
}

.form__label {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text);
  padding-top: 12px;
  line-height: 1.5;
}

.form__label-br {
  display: none;
}

.form__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

.form__badge--required {
  background-color: var(--color-cta);
  color: #fff;
}

.form__badge--optional {
  background-color: #9aa5b1;
  color: #fff;
}

.form__field {
  display: flex;
  flex-direction: column;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccd4dc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color 0.3s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #aab2bb;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 12px;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

.form__radio input {
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form__submit {
  text-align: center;
  margin-top: 36px;
}

.form__btn {
  display: inline-block;
  padding: 16px 64px;
  background-color: var(--color-accent) !important;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.form__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


/* ===========================
   スマホ対応（767px以下）
   =========================== */
@media (max-width: 767px) {

  .container {
    padding: 0 16px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading__ja {
    font-size: 22px;
  }

  .section-heading__en {
    font-size: 38px;
    letter-spacing: 0.05em;
  }

  .section-subheading__line {
    width: 40px;
  }

  .section-subheading__text {
    font-size: 18px;
  }

  .header__inner {
    padding: 0 16px;
  }

  .header__logo img {
    height: 32px;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-bg);
    transform: translateX(100%);
    transition: transform 0.3s;
    padding: 40px 20px;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    gap: 24px;
  }

  .header__entry-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 12px;
  }

  .header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: transform 0.3s, opacity 0.3s;
  }

  .header__hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .bg-decorated {
    background-image: url('../images/bg-stripes-sp.png');
  }

  .message-video {
    padding: 50px 0 40px;
  }

  .about {
    padding: 40px 0 60px;
  }

  .about__description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .about__description br {
    display: none;
  }

  .business-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .business-card__body {
    padding: 20px;
  }

  .business-card__description {
    font-size: 13px;
  }

  .business-card__services-list {
    font-size: 12px;
  }

  .strength {
    padding: 50px 0;
  }

  .strength-subheading {
    margin-bottom: 30px;
    gap: 8px;
  }

  .strength-subheading__text {
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .strength-subheading__icon {
    width: 28px;
  }

  .strength-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }

  .strength-card__image {
    max-width: 220px;
    margin: 0 auto;
  }

  .strength-card__title {
    font-size: 17px;
    text-align: center;
  }

  .strength-card__description {
    font-size: 13px;
  }

  .strength-card__number {
    font-size: 50px;
    right: 12px;
    bottom: 8px;
  }

  /* 仕事紹介セクション */
  .work {
    padding: 50px 0 60px;
  }

  .work-job {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px auto 50px;
  }

  .work-job__title {
    font-size: 16px;
    padding: 10px 28px 10px 36px;
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 18px 100%, 0 50%);
  }

  .work-job__description {
    font-size: 13px;
  }

  .work-job__description br {
    display: none;
  }

  .work-tasks {
    margin-bottom: 50px;
  }

  .work-tasks__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-schedule__heading {
    font-size: 17px;
  }

  .work-schedule__body {
    padding: 20px;
  }

  .work-schedule__timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-schedule__step:not(:last-child)::after {
    top: auto;
    bottom: -28px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }

  .work-schedule__image {
    max-width: 240px;
    margin: 0 auto 12px;
  }

  .work-schedule__note-wrap {
    text-align: left;
  }

  .work-schedule__note {
    display: block;
    font-size: 10px;
  }

  /* 社員の声セクション */
  .voice {
    padding: 50px 0 60px;
  }

  .voice-carousel {
    padding: 0 12px;
  }

  .voice-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .voice-card__profile {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
    text-align: left;
  }

  .voice-card__photo {
    margin-bottom: 0;
  }

  .voice-card__info {
    text-align: left;
  }

  .voice-card__name {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .voice-card__role span {
    display: block;
  }

  .voice-card__role span + span::before {
    content: none;
  }

  .voice-qa__question {
    font-size: 13px;
  }

  .voice-qa__answer {
    font-size: 11px;
  }

  .voice-carousel__btn {
    width: 36px;
    height: 36px;
  }

  .voice-carousel__btn--prev {
    left: -8px;
  }

  .voice-carousel__btn--next {
    right: -8px;
  }

  .voice-carousel__dots {
    margin-top: 20px;
  }

  /* 適性チェックセクション */
  .check {
    padding: 50px 0 60px;
  }

  .check-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 0;
    text-align: center;
  }

  .check-intro__icon {
    display: none;
  }

  .check-intro__title {
    font-size: 20px;
  }

  .check-intro__description br {
    display: none;
  }

  .check-intro__people img {
    max-width: 180px;
    margin: 0 auto;
  }

  .check-list {
    grid-template-columns: 1fr;
    padding: 12px 16px;
  }

  .check-list__item {
    padding: 14px 6px;
    gap: 10px;
  }

  .check-list__item:nth-last-child(-n+2) {
    border-bottom: 1px solid #e8f0f5;
  }

  .check-list__item:last-child {
    border-bottom: none;
  }

  .check-list__num {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .check-list__text {
    font-size: 12px;
  }

  .check-list__text br {
    display: none;
  }

  .check-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }

  .check-cta__bubble {
    width: 110px;
    height: 110px;
    margin: 0 auto;
  }

  .check-cta__body {
    text-align: center;
  }

  .check-cta__heading {
    font-size: 16px;
  }

  .check-cta__description br {
    display: none;
  }

  .check-cta__btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  /* 募集要項セクション */
  .recruit {
    padding: 50px 0 60px;
  }

  .recruit-info {
    padding: 10px 20px;
  }

  .recruit-info__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .recruit-info__label {
    font-size: 15px;
  }

  .recruit-info__content {
    font-size: 13px;
  }

  .recruit-info__list-title {
    font-size: 13px;
  }

  .recruit-info__list-desc {
    font-size: 12px;
  }
	
/* 代表メッセージセクション */
  .message {
    padding: 50px 0 60px;
  }

  .message-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .message-content__photo {
    max-width: 240px;
    margin: 0 auto 16px;
  }

  .message-content__heading {
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
  }
	.message-content__heading br {
    display: none;
  }
  .message-content__heading br:last-of-type {
    display: inline;
  }

  .message-content__text {
    font-size: 13px;
  }

  /* エントリーCTAセクション */
  .entry {
    padding: 50px 0;
  }

  .entry__bg-text {
    font-size: 80px;
  }

  .entry__heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .entry__heading br {
    display: none;
  }

  .entry__lead {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .entry__btn {
    padding: 14px 36px;
    font-size: 15px;
  }
	
	/* 会社概要セクション */
  .company {
    padding: 50px 0 60px;
  }

  .company-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-map {
    aspect-ratio: 4 / 3;
  }

  .company-info__row {
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 12px 0;
  }

  .company-info__label {
    font-size: 12px;
  }

  .company-info__data {
    font-size: 12px;
  }

  /* フッター */
  .footer {
    padding: 24px 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    justify-items: center;
  }

  .footer__logo img {
    height: 36px;
  }

  .footer__spacer {
    display: none;
  }
	
	/* エントリーフォームセクション */
  .entry-form {
    padding: 50px 0 60px;
  }

  .form {
    padding: 24px 20px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .form__label {
    padding-top: 0;
    font-size: 13px;
  }

  .form__label-br {
    display: none;
  }

  .form__input,
  .form__select,
  .form__textarea {
    font-size: 16px; /* iOSの自動ズーム防止 */
    padding: 10px 12px;
  }

  .form__radio-group {
    padding-top: 4px;
    gap: 10px 18px;
  }

  .form__radio {
    font-size: 13px;
  }

  .form__btn {
    padding: 14px 48px;
    font-size: 15px;
  }
}