@charset "UTF-8";
/*---------------------------------------------
カスタムプロパティ
---------------------------------------------*/
:root {
  /* カラー */
  --color-black: #1a1a1a;
  --color-white: #ffffff;
  --color-gray: #949593;
  --color-accent: #e48500;
  --color-base: #29a6e1;
  --color-lgray: #f3f1f0;
  --color-lblue: #d3edf9;
  --color-offwhite: #f4f2f1;
  --color-wgray: #e4ded5;
  /* フォント */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en-1: "Oswald", sans-serif;
  --font-en-2: "Josefin Sans", sans-serif;
}

/*---------------------------------------------
メディアクエリ
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/*---------------------------------------------
リセット & 初期設定
---------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-ja);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 87.5%; /* 14px相当 */
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 100%; /* 16px相当 */
  }
}
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

body {
  background-color: var(--color-white);
  margin: 0;
  min-height: 100%;
  font-size: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

/* メディア要素 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* タイポグラフィ・リスト・リンクのリセット */
p, h1, h2, h3, h4, h5, h6, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  overflow-wrap: break-word;
}

ul, ol {
  padding: 0;
  list-style: none;
}

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

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* フォーム要素のリセット */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

::-moz-placeholder {
  opacity: 1;
  color: var(--color-gray);
}

::placeholder {
  opacity: 1;
  color: var(--color-gray);
}

/* アクセシビリティ */
:focus-visible {
  outline: 2px solid var(--color-base); /* テーマカラーに変更 */
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*---------------------------------------------
アニメーション (JS制御用クラス)
---------------------------------------------*/
[data-anime=fadeUp],
[data-anime=slideRight],
[data-anime=slideLeft] {
  opacity: 0;
}

[data-anime=fadeUp] {
  transform: translateY(30px);
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=fadeUp].is-active {
  opacity: 1;
  transform: translateY(0);
}

[data-anime=slideRight] {
  transform: translateX(-100%);
  transition: 0.5s ease transform, 0.5s ease opacity;
}

[data-anime=slideRight].is-active {
  opacity: 1;
  transform: translateX(0);
}

[data-anime=slideLeft] {
  transform: translateX(100%);
  transition: 0.5s ease transform, 0.5s ease opacity;
}

[data-anime=slideLeft].is-active {
  opacity: 1;
  transform: translateX(0);
}

/*---------------------------------------------
共通レイアウト (Common)
---------------------------------------------*/
@media screen and (min-width: 768px) {
  main {
    min-width: 1080px;
    overflow: hidden;
  }
}

.l-container {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .l-container {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;
  }
}

.l-inner {
  position: relative;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* flex utility */
.u-fbox_pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-fbox_pc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}

.u-fbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/*---------------------------------------------
文字
---------------------------------------------*/
h2, h3, h4, h5, h6, dt, dd, li {
  line-height: 1.4;
}

p {
  letter-spacing: 0.08em;
  line-height: 1.875;
}

.u-nowrap {
  white-space: nowrap;
}

/*---------------------------------------------
ボタン (Button) - 画像デザイン対応版
---------------------------------------------*/
/* 共通ボタンスタイル */
.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border-radius: 6px; /* ボタン全体の角丸 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
  }
}
.btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  filter: brightness(0.95);
}

/* 上段：マイクロコピー（白背景エリア） */
.btn-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  background-color: var(--color-white);
  padding: 8px 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .btn-sub {
    height: 3.5em;
  }
}

.btn-main {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}

.btn-apply {
  background: linear-gradient(to right, #ffc000, #e48500);
}
.btn-apply .btn-sub {
  color: var(--color-accent); /* #e48500 */
}

.btn-register {
  background: linear-gradient(to right, #63bff3, #1587d6);
}
.btn-register .btn-sub {
  color: var(--color-base); /* #29a6e1 */
}

/*---------------------------------------------
hero-section
---------------------------------------------*/
.hero-section {
  position: relative;
  background-color: var(--color-base);
  background-position: center;
  background-size: cover;
  padding-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .hero-section {
    min-height: 1635px;
    background: url(../img/hero_bg_pc.webp) repeat-x;
    background-position: center top;
    background-size: 1344px;
    padding-top: 46px;
    padding-bottom: 0;
    /* ★追加: 左右のオーバーレイ（半透明の膜） */
  }
  .hero-section::before, .hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(50% - 672px);
    background-color: rgba(41, 166, 225, 0.8);
    z-index: 1;
  }
  .hero-section::before {
    left: 0;
  }
  .hero-section::after {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero-section h1 {
    width: 100vw;
    height: 100vw;
    background: url(../img/hero_bg_sp.webp) no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-section h1 img {
    width: 54vw;
  }
}
@media screen and (min-width: 768px) {
  .hero-section h1 {
    width: 308px;
    margin: 0 auto 270px auto;
  }
}
.hero-section .hero-content {
  text-align: center;
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* ★背景から浮かせるための影を追加 */
}
@media screen and (max-width: 767px) {
  .hero-section .hero-content {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -10vw;
    padding: 30px 15px; /* 上下の余白を少し広げました */
  }
}
@media screen and (min-width: 768px) {
  .hero-section .hero-content {
    width: 826px;
    margin-left: auto;
    margin-right: auto;
    padding: 70px 60px;
  }
}
.hero-section .hero-content h2 {
  line-height: 1;
  white-space: nowrap;
  margin-left: -0.25em;
  margin-right: -0.25em;
  font-size: min(10vw, 90px);
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}
.hero-section .hero-content .catchphrase {
  font-size: clamp(1.1rem, 4vw + 0.5rem, 1.9rem);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: clamp(0.05em, 0.3vw, 0.25em);
  text-indent: clamp(0.05em, 0.3vw, 0.25em);
  margin-top: 1.5em;
}
.hero-section .hero-content .intro-text {
  font-size: clamp(1rem, 3vw + 0.2rem, 1.3rem);
  font-weight: 600;
  line-height: 1.8;
  margin-top: clamp(2em, 4vw, 3em);
  margin-bottom: clamp(2em, 3.5vw, 2.5em);
}
.hero-section .hero-content .intro-text .note {
  font-size: clamp(0.75rem, 2vw, 0.8rem);
  font-weight: 400;
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .hero-section .hero-content .cta-area {
    justify-content: space-between;
  }
}
.hero-section .hero-content .cta-area .btn {
  width: 100%;
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .hero-section .hero-content .cta-area .btn:not(:first-child) {
    margin-top: 20px;
  }
}

/*---------------------------------------------
floating-cta (追従エリア)
---------------------------------------------*/
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-wgray);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  /* 右側のボタンエリア */
}
.floating-cta.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-cta .l-container {
  padding: 0;
  width: 100%;
}
.floating-cta .l-container {
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .floating-cta .l-inner {
    max-width: 1080px;
  }
}
.floating-cta .floating-cta-inner {
  display: flex;
  align-items: stretch;
}
.floating-cta .floating-header {
  background-color: var(--color-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .floating-cta .floating-header {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .floating-cta .floating-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 50vw;
    height: 100%;
    background-color: var(--color-base);
  }
  .floating-cta .floating-header::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 24px solid var(--color-base);
    z-index: 2;
  }
}
.floating-cta .floating-header .fh-title {
  display: inline-block;
  background-color: var(--color-white);
  border: 3px solid var(--color-black);
  padding: 6px 16px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  white-space: nowrap;
}
.floating-cta .floating-header .fh-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.floating-cta .btn {
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .floating-cta .btn-sub {
    height: auto;
    min-height: 4em;
  }
}
.floating-cta .cta-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 20px 40px;
}
@media screen and (max-width: 767px) {
  .floating-cta .cta-area {
    flex-direction: row;
    gap: 10px;
    padding: 10px 15px;
  }
}
.floating-cta .cta-area .btn {
  margin: 0 !important;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .floating-cta .cta-area .btn {
    max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .floating-cta .cta-area .btn {
    padding: 6px;
  }
}

/* --- 追従エリア内のスマホ用ボタンテキスト調整 --- */
@media screen and (max-width: 767px) {
  .floating-cta .btn-sub {
    font-size: 0.65rem;
    padding: 4px 6px;
    margin-bottom: 6px;
    border-radius: 3px;
  }
  .floating-cta .btn-main {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    margin-top: 0;
  }
}
/*---------------------------------------------
共通セクションレイアウト (.l-section)
---------------------------------------------*/
.l-section {
  padding-top: 12vw;
  padding-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/*---------------------------------------------
共通セクションタイトル (.section-title)
---------------------------------------------*/
.section-title {
  text-align: center;
}
.section-title .sub-heading {
  display: inline-block;
  background-color: var(--color-base);
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw + 0.7rem, 2rem);
  padding: 0.25em 0.5em;
  border-radius: 6px;
  position: relative;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.section-title .sub-heading::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid var(--color-base);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
@media screen and (max-width: 767px) {
  .section-title .sub-heading::after {
    border-top-width: 8px;
    border-left-width: 8px;
    border-right-width: 8px;
  }
}
.section-title h2 {
  color: var(--color-base);
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(2rem, 4.5vw + 1rem, 4rem);
  margin-top: -0.6rem;
}
.section-title h2 .st-lead {
  display: inline-block;
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw + 0.6rem, 1.75rem);
  margin-bottom: 0.1em;
}
.section-title h2 .st-small {
  font-size: 0.65em;
}
.section-title .note {
  font-size: 0.9em;
  text-align: right;
}

/*---------------------------------------------
共通モジュール：矢印付きリンクボタン (.c-link-wrap)
※旧 .case-link / .section-link
---------------------------------------------*/
.c-link-wrap {
  text-align: center;
}
.c-link-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-base);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  padding: 15px 50px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(41, 166, 225, 0.2);
  transition: all 0.3s ease;
  /* 太い矢印（SVG） */
}
.c-link-wrap a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>') no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-link-wrap a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(41, 166, 225, 0.3);
    filter: brightness(1.05);
  }
  .c-link-wrap a:hover::after {
    transform: translateX(6px);
  }
}
.c-link-wrap a:active {
  transform: translateY(1px);
  box-shadow: 0 2px 3px rgba(41, 166, 225, 0.2);
  filter: brightness(0.95);
}
.c-link-wrap a:active::after {
  transform: translateX(6px);
}

/*---------------------------------------------
先輩社員の声 (.interview-section)
---------------------------------------------*/
.interview-section {
  /*---------------------------------------------
    履歴・退職理由などのリスト (dt / dd)
  ---------------------------------------------*/
}
.interview-section .case-card {
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .interview-section .case-card {
    margin-top: 120px;
  }
}
.interview-section .case-header {
  text-align: center;
  margin-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .interview-section .case-header {
    margin-bottom: 120px;
  }
}
.interview-section .case-label-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1em;
  margin-bottom: 2em;
}
.interview-section .case-label-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  border: 4px solid var(--color-black);
  border-bottom: none;
}
.interview-section .case-label-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  border: 4px solid var(--color-black);
  border-top: none;
}
.interview-section .case-label-wrap .cl-tail {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background-color: var(--color-white);
  border-right: 4px solid var(--color-black);
  border-bottom: 4px solid var(--color-black);
  z-index: 2;
}
.interview-section .case-label-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-base);
  line-height: 1;
  margin-bottom: 0.5em;
}
.interview-section .case-label-box .cl-en {
  font-family: var(--font-en-1);
  /* スマホ(約19px) 〜 PC(1.65rem) */
  font-size: clamp(1.2rem, 2.5vw + 0.5rem, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.interview-section .case-label-box .cl-num {
  font-family: var(--font-en-1);
  /* スマホ(約48px) 〜 PC(4.2rem) */
  font-size: clamp(3rem, 8vw + 0.5rem, 4.2rem);
  font-weight: 600;
}
.interview-section .person-name {
  /* スマホ(約17px) 〜 PC(1.5rem) */
  font-size: clamp(1.1rem, 2.5vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  position: relative;
  z-index: 3;
}
.interview-section .person-name span {
  font-size: 0.65em;
}
.interview-section .case-title {
  /* スマホ(約24px) 〜 PC(3rem) */
  font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  margin-bottom: 1em;
}
.interview-section .img-wrap {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .interview-section .img-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .interview-section .img-wrap {
    width: max(100vw, 1080px);
    margin-left: calc(50% - max(50vw, 540px));
    margin-right: calc(50% - max(50vw, 540px));
  }
}
.interview-section .img-wrap picture, .interview-section .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.interview-section .case-summary {
  font-weight: 700;
  /* スマホ(約16px) 〜 PC(1.44rem) */
  font-size: clamp(1rem, 2vw + 0.5rem, 1.44rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: left;
}
.interview-section .case-details {
  display: grid;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 60px;
}
@media screen and (min-width: 768px) {
  .interview-section .case-details {
    grid-template-columns: 200px 1fr;
    gap: 30px 50px;
  }
}
.interview-section .case-details dt {
  position: relative;
  color: var(--color-base);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
  /* 共通の括弧ベース（PCは左右、SPは上下） */
  /* 上/左 の括弧 */
  /* 下/右 の括弧 */
  /* 矢印（尖り部分） */
}
@media screen and (max-width: 767px) {
  .interview-section .case-details dt {
    width: 180px;
    margin: 0 auto;
    padding: 15px 10px; /* 上下括弧のために上下の余白を多めに取る */
  }
}
@media screen and (min-width: 768px) {
  .interview-section .case-details dt {
    padding: 10px 20px;
  }
}
.interview-section .case-details dt::before, .interview-section .case-details dt::after {
  content: "";
  position: absolute;
  border: 3px solid var(--color-base);
}
@media screen and (max-width: 767px) {
  .interview-section .case-details dt::before {
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    border-bottom: none; /* 下線を消して「上括弧」にする */
  }
}
@media screen and (min-width: 768px) {
  .interview-section .case-details dt::before {
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    border-right: none; /* 右線を消して「左括弧」にする */
  }
}
@media screen and (max-width: 767px) {
  .interview-section .case-details dt::after {
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    border-top: none; /* 上線を消して「下括弧」にする */
  }
}
@media screen and (min-width: 768px) {
  .interview-section .case-details dt::after {
    right: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    border-left: none; /* 左線を消して「右括弧」にする */
  }
}
.interview-section .case-details dt .dt-inner::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  z-index: 2; /* ★追加：括弧の線よりも前面に出して隠れないようにする */
}
@media screen and (max-width: 767px) {
  .interview-section .case-details dt .dt-inner::after {
    /* スマホ：下向き矢印 */
    bottom: -5px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
    border-right: 3px solid var(--color-base);
    border-bottom: 3px solid var(--color-base);
  }
}
@media screen and (min-width: 768px) {
  .interview-section .case-details dt .dt-inner::after {
    /* PC: 右向き矢印 */
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-top: 3px solid var(--color-base);
    border-right: 3px solid var(--color-base);
  }
}
.interview-section .case-details dd {
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
  /* dd内の強調span（水色文字等）があればここで色指定 */
}
.interview-section .case-details dd span {
  color: var(--color-base);
}

/*---------------------------------------------
福利厚生 (.benefits-section)
---------------------------------------------*/
.benefits-section {
  background-color: var(--color-lgray);
  padding-top: 12vw;
  padding-bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .benefits-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.benefits-section .benefits-list {
  margin-top: 9vw;
  margin-bottom: 6vw;
}
@media screen and (min-width: 768px) {
  .benefits-section .benefits-list {
    margin-top: 90px;
    margin-bottom: 60px;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.benefits-section .benefit-item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .benefits-section .benefit-item {
    margin-bottom: 40px;
  }
  .benefits-section .benefit-item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .benefits-section .benefit-item {
    width: 28%;
  }
}
.benefits-section .benefit-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .benefits-section .benefit-item h3 {
    min-height: 3em;
  }
}
.benefits-section .benefit-item .bi-img {
  margin: 0 auto 20px;
  max-width: 260px;
}
.benefits-section .benefit-item p {
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.8;
}

/*---------------------------------------------
キャリアサポート (.career-support-section)
---------------------------------------------*/
.career-support-section {
  background-color: var(--color-lgray);
}
.career-support-section .support-content {
  margin-top: 9vw;
  margin-bottom: 6vw;
}
@media screen and (min-width: 768px) {
  .career-support-section .support-content {
    margin-top: 90px;
    margin-bottom: 60px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .career-support-section .support-content .sc-img {
    width: 100%;
    margin-bottom: 30px; /* スマホ時の下余白 */
  }
  .career-support-section .support-content .sc-img img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .career-support-section .support-content .sc-img {
    width: 48%; /* 2カラムの幅 */
  }
}
@media screen and (min-width: 768px) {
  .career-support-section .support-content .sc-text {
    width: 48%; /* 2カラムの幅 */
    margin-top: -0.5em;
  }
}
.career-support-section .support-content .sc-text p {
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.career-support-section .support-content .sc-text p:last-child {
  margin-bottom: 0;
}

/*---------------------------------------------
共通：コメントブロック (.comment-block)
---------------------------------------------*/
/* ※福利厚生とキャリアサポートで共通で使用します */
.comment-block {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 4px solid var(--color-base);
  max-width: 100%;
  /* 右側に人がいるパターン（福利厚生） */
  /* 左側に人がいるパターン（キャリア） */
}
@media screen and (max-width: 767px) {
  .comment-block {
    width: 100%;
    margin: 0 auto 6vw;
  }
}
@media screen and (min-width: 768px) {
  .comment-block {
    margin: 0 auto 60px;
    width: 100%;
  }
}
.comment-block .cb-bubble {
  background-color: var(--color-white);
  color: var(--color-base);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  padding: 20px 30px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  margin-bottom: 30px; /* 青い線から少し浮かす */
  line-height: 1.6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* ほんのり影をつける */
}
.comment-block .cb-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.comment-block .cb-person {
  width: clamp(140px, 25vw, 220px);
  flex-shrink: 0;
}
.comment-block.type-right {
  /* ★追加: 人物の位置を下げる */
}
.comment-block.type-right .cb-bubble {
  margin-right: 20px;
}
.comment-block.type-right .cb-bubble::after {
  right: -14px;
  border-left: 15px solid var(--color-white);
}
.comment-block.type-right .cb-person {
  transform: translateY(20px);
}
@media screen and (min-width: 768px) {
  .comment-block.type-right .cb-person {
    transform: translateY(40px);
  }
}
.comment-block.type-left .cb-bubble {
  margin-left: 20px;
}
.comment-block.type-left .cb-bubble::after {
  left: -14px;
  border-right: 15px solid var(--color-white);
}
@media screen and (max-width: 767px) {
  .comment-block .cb-bubble {
    padding: 15px 20px;
    margin-bottom: 20px;
    /* スマホ時は変な位置での改行を防ぎ自然に折り返す */
  }
  .comment-block .cb-bubble br {
    display: none;
  }
  .comment-block.type-right .cb-bubble {
    margin-right: 10px;
  }
  .comment-block.type-left .cb-bubble {
    margin-left: 10px;
  }
}

/*---------------------------------------------
人事担当者からのメッセージ (.message-section)
---------------------------------------------*/
.message-section {
  background-color: var(--color-base);
  color: var(--color-white);
  padding-top: 12vw;
  padding-bottom: 0;
  /* タイトル周りの余白 */
  /* h2を .sub-heading と同じ形状で「色を反転（白背景・青文字）」にする */
  /* テキストエリア */
  /* はみ出し画像ラッパー */
}
@media screen and (min-width: 768px) {
  .message-section {
    padding-top: 120px;
  }
}
.message-section .section-title {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .message-section .section-title {
    margin-bottom: 60px;
  }
}
.message-section .message-title {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-base);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw + 0.7rem, 2rem);
  padding: 0.25em 0.5em;
  border-radius: 6px;
  position: relative;
  letter-spacing: 0.1em;
  margin: 0;
  /* 下向きの白い三角形 */
}
.message-section .message-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid var(--color-white);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
@media screen and (max-width: 767px) {
  .message-section .message-title::after {
    border-top-width: 8px;
    border-left-width: 8px;
    border-right-width: 8px;
  }
}
.message-section .message-content {
  margin: 0 auto;
  padding-bottom: 12vw;
}
@media screen and (max-width: 767px) {
  .message-section .message-content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .message-section .message-content {
    width: 580px;
    padding-bottom: 80px;
  }
}
.message-section .message-content p {
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 1.5em;
  text-align: left;
}
.message-section .message-content p:last-child {
  margin-bottom: 0;
}
.message-section .img-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .message-section .img-wrap {
    height: 560px; /* PC時は高さ固定 */
    overflow: hidden;
  }
}
.message-section .img-wrap picture, .message-section .img-wrap img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .message-section .img-wrap picture, .message-section .img-wrap img {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .message-section .img-wrap picture, .message-section .img-wrap img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 25%;
       object-position: center 25%;
  }
}

/*---------------------------------------------
よくある質問 (.faq-section)
---------------------------------------------*/
.faq-section {
  /* デザイン通りの黒いシンプルな見出し */
  /* 質問 (dt) のブロック */
}
.faq-section .faq-title {
  text-align: center;
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .faq-section .faq-title {
    margin-bottom: 60px;
  }
}
.faq-section .faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-section .faq-item {
  margin-bottom: 8px; /* Q&Aセット同士の余白 */
}
.faq-section .faq-q {
  display: flex;
  background-color: var(--color-lblue); /* 水色背景 */
  position: relative;
  /* Qのアイコンボックス */
  /* Qのテキスト */
}
.faq-section .faq-q .icon-q {
  width: clamp(50px, 12vw, 75px);
  flex-shrink: 0;
  background-color: var(--color-base); /* 濃い青背景 */
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-en-1);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}
.faq-section .faq-q .q-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 20px; /* 右側はトグル用に余白を広めに */
  font-weight: 700;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.6;
}
.faq-section .faq-a-inner {
  display: flex;
  background-color: var(--color-offwhite); /* 薄いグレー背景 */
  /* Aのアイコンボックス（背景透過で文字だけ青） */
  /* Aのテキスト */
}
.faq-section .faq-a-inner .icon-a {
  width: clamp(50px, 12vw, 75px);
  flex-shrink: 0;
  color: var(--color-base);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-en-1);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}
.faq-section .faq-a-inner .a-text {
  flex: 1;
  padding: 15px 20px;
  font-weight: 700;
  word-break: break-all;
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.8;
  margin: 0;
}
.faq-section .faq-a-inner .a-text span {
  font-weight: 400;
}
.faq-section .faq-a-inner .a-text span img {
  width: 200px;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .faq-section .faq-a-inner .a-text span img {
    width: 240px;
  }
}

/*---------------------------------------------
フッター (.site-footer)
---------------------------------------------*/
.site-footer {
  background-color: var(--color-wgray); /* デザイン通りのライトグレー */
  color: var(--color-black);
  padding: 20px 15px;
  /* ★重要：floating-cta（追従エリア）に隠れないように、下部に巨大な余白を設ける */
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .site-footer {
    padding: 25px 40px;
    padding-bottom: 205px;
  }
}
.site-footer .l-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  /* PC時はリンクを左、コピーライトを右に配置 */
}
@media screen and (min-width: 768px) {
  .site-footer .l-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}
.site-footer .footer-links a {
  font-size: 0.8125rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
  /* リンク前の「＞」アイコンをCSSで描画 */
}
.site-footer .footer-links a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color-black);
  border-right: 2px solid var(--color-black);
  transform: rotate(45deg);
  margin-right: 8px;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .site-footer .footer-links a:hover {
    opacity: 0.6;
  }
}
.site-footer .copyright {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-en-1), sans-serif; /* デザインの書体に寄せる */
}
/*# sourceMappingURL=style.css.map */