@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
/********************************
* 数値のみを取り出す
* 参照：https://css-tricks.com/snippets/sass/strip-unit-function/
********************************/
/********************************
* pxをremに変換する関数
********************************/
/********************************
* 画面幅を基準にしたvwを返す関数
* @param $window_width 基準とする画面幅（px）
* @param $size その幅のときの要素のサイズ（px）
* 例: vw(768, 600) → 600px幅を768px基準でvwに → 約78vw
********************************/
/********************************
* モバイルファースト
********************************/
/********************************
* 共通padding
********************************/
/********************************
* カラー変数について
* 
* SCSS変数（$color-*）とCSS変数（:root --color-*）の比較
* 
* 【SCSS変数のメリット】
* - コンパイル時に処理される（パフォーマンス良好）
* - IDE補完が効く
* - ミックスイン・関数内で使用可能
* 
* 【CSS変数のメリット】
* - JavaScriptからアクセス・変更可能（テーマ切り替えなど）
* - ランタイムで変更可能
* - 開発者ツールで確認・デバッグしやすい
* - 将来的な拡張性が高い
* 
* このプロジェクトではCSS変数（:root）を採用

▼使い方
.header {
    background-color: var(--color-blue);
}
********************************/
:root {
  --color-blue: #95d2dd;
  --color-light-blue: #00aca8;
  --color-cyaan: #14aec6;
  --color-white: #fff;
  --color-black: #1f1715;
  --color-gray: #727171;
  --color-light-gray: #ececec;
  --color-dark-gray: #f6f6f6;
  --color-btn-border: #d5d5d6;
  --color-bg-gray: #f7f7f7;
}

/* 三角形＋ぼかし: clip-path と blur を別要素に分けないとぼかしが効かない */
/* iOSでblurが四角く浮く不具合対策: 親でレイヤーを安定化 */
.p-jobs-fv__info-area {
  --before-opacity: 0;
  --before-scale: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.p-jobs-fv__blur-wrap {
  position: absolute;
  top: -100%;
  right: -6%;
  width: 100%;
  min-height: 18.75rem;
  height: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
  opacity: var(--before-opacity);
  transform: translateZ(0) scale(var(--before-scale));
  transform-origin: right bottom;
  backface-visibility: hidden;
}
@media (min-width: 600px) {
  .p-jobs-fv__blur-wrap {
    top: -10.75rem;
    right: -3.75rem;
    min-height: min(78.125vw, 36.75rem);
  }
}
@media (min-width: 768px) {
  .p-jobs-fv__blur-wrap {
    top: -16rem;
    right: -5.75rem;
    min-height: 31.25rem;
  }
}
.p-jobs-fv__blur-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  background: radial-gradient(#88d4d2, #1a9b99);
}

/********************************
* hover　関連
********************************/
.header__nav-item a,
.swiper-button__title-link {
  transition: color 0.3s ease;
}
.header__nav-item a:hover,
.swiper-button__title-link:hover {
  color: var(--color-light-blue);
}

.p-jobs-message__btn,
.footer__btn {
  transition: all 0.3s ease;
}

.p-jobs-message__btn:hover {
  background: #61b9c9;
}

.footer__btn:hover {
  background: #e7e7e7;
}

/********************************
* 職種詳細ページ　パララックス
********************************/
.js-parallax {
  overflow: hidden;
}
.js-parallax img {
  height: calc(100% + 100px);
}

/********************************
* footer loop animation
********************************/
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.a-loop__wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: 4.5rem;
}
@media (min-width: 1200px) {
  .a-loop__wrap {
    margin-bottom: 12rem;
  }
}

.a-loop__text {
  padding-left: 1rem;
  animation: loop 10s linear infinite;
  flex-shrink: 0;
}
.a-loop__text img {
  display: block;
  width: auto;
  height: 2.75rem;
}
@media (min-width: 768px) {
  .a-loop__text img {
    height: 9rem;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

img {
  width: 100%;
}

textarea {
  resize: none;
}

.tab-br {
  display: none;
}
@media (min-width: 768px) {
  .tab-br {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media (min-width: 600px) {
  .sp-br {
    display: none;
  }
}

.br-sp {
  display: inline;
}
@media (min-width: 600px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media (min-width: 1200px) {
  .br-pc {
    display: block;
  }
}

.red-hat {
  font-family: "Red Hat Display", sans-serif;
}

/********************************
* 共通フォントサイズ
********************************/
/********************************
* ボタン
********************************/
.c-btn__long {
  display: inline-block;
  padding: 1.375rem 0;
  color: var(--color-white);
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .c-btn__long {
    padding: 2rem 0;
  }
}
.c-btn__long a {
  cursor: pointer;
}
.c-btn__long::before {
  content: "";
  position: absolute;
  right: 1.8em;
  width: 14px;
  height: 14px;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-btn__long::before {
    right: 1em;
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1200px) {
  .c-btn__long::before {
    right: 2em;
  }
}

.c-blue-btn-wrap {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(19.5rem, 1fr));
  gap: 1rem;
  max-width: 19.5rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .c-blue-btn-wrap {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 768px) {
  .c-blue-btn-wrap {
    max-width: 51.25rem;
    grid-template-columns: repeat(2, minmax(19.5rem, 1fr));
    gap: 1.25rem;
  }
}

.c-blue-btn {
  max-width: 25rem;
  background: var(--color-blue);
  border-radius: 3.125rem;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .c-blue-btn {
    font-size: 0.9375rem;
  }
}
.c-blue-btn a {
  position: relative;
  display: block;
}

.c-btn-detail__wrap {
  max-width: 10rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-btn-detail__wrap {
    max-width: 10rem;
    margin: 0 0 0 auto;
  }
}

.c-btn-detail__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-btn-border);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-btn-detail__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.c-btn-detail__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.4375rem;
  background-color: var(--color-gray);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: all 0.3s ease; /* 擬似要素は親のtransitionが効かないため */
}
.c-btn-detail__icon--white::before {
  background-color: var(--color-black);
}
.c-btn-detail__icon.c-btn-detail__icon--down::before {
  width: 0.625rem;
  height: 0.4375rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.c-btn-detail__text {
  position: relative;
  display: inline-block;
  padding-block-end: 2px;
}
.c-btn-detail__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background-color: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.c-btn-detail__text--white::after {
  background-color: var(--color-white);
}

.c-btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-black);
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .c-btn-detail {
    gap: 1.5rem;
  }
}
.c-btn-detail:hover {
  opacity: 0.8;
}
.c-btn-detail:hover .c-btn-detail__icon {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
}
.c-btn-detail:hover .c-btn-detail__icon::before {
  background-color: var(--color-white);
}
.c-btn-detail:hover .c-btn-detail__text::after {
  transform: scaleX(1);
}
.c-btn-detail--white:hover .c-btn-detail__icon {
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
}
.c-btn-detail--white:hover .c-btn-detail__icon::before {
  background-color: var(--color-blue);
}
.c-btn-detail--white:hover .c-btn-detail__text::after {
  background-color: var(--color-white);
}

.p-cr-step-like__btn-wrap .c-blue-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  padding: 1em 0;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .p-cr-step-like__btn-wrap .c-blue-btn a {
    height: 5rem;
  }
}

.p-cr-step-like__btn-wrap .c-btn__long {
  padding: 1em 0;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  .p-cr-step-like__btn-wrap .c-btn__long {
    font-size: 0.9375rem;
  }
}

.c-btn__long--crstp::before,
.c-btn__long--link-white::before {
  background: url("../img/common/link-icon.svg") no-repeat center center/contain;
}

/********************************
* 職種詳細　セクションタイトル
********************************/
/********************************
* 下層ページ　ページタイトル
********************************/
.c-page-header__text {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 1rem;
}
@media (min-width: 1200px) {
  .c-page-header__text {
    font-size: 5rem;
  }
}

.c-page-header__text-sub {
  font-size: 0.6875rem;
  font-weight: normal;
  line-height: 1.6;
}
@media (min-width: 1200px) {
  .c-page-header__text-sub {
    font-size: 0.875rem;
  }
}

.c-page-header__inner {
  width: 100%;
  margin-inline: auto;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .c-page-header__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 600px) {
  .c-page-header__inner {
    max-width: 49rem;
  }
}
@media (min-width: 1200px) {
  .c-page-header__inner {
    max-width: 66.25rem;
    margin: 0 auto;
  }
}

/********************************
* c-jobs-list（職種一覧コンポーネント）
********************************/
.c-jobs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.25rem;
  grid-auto-flow: row;
  max-width: 45rem;
  margin-inline: auto;
  padding-inline: 1.9375rem;
}
@media (min-width: 1200px) {
  .c-jobs-list {
    max-width: 72.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 3.375rem;
    padding-inline: 0;
  }
}

@media (min-width: 1200px) {
  .c-jobs-list-wrap {
    max-width: 77.5rem;
    margin-inline: auto;
    padding-block-start: 3.125rem;
  }
}

.c-jobs-list__item {
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-jobs-list__item:nth-child(2n) {
  margin-top: 0;
}
.c-jobs-list__item:nth-child(2n+1) {
  margin-top: 1.875rem;
}
@media (min-width: 1200px) {
  .c-jobs-list__item {
    /* 1段目: 段差を大きく */
    /* 2段目以降のみ段差を小さくして開始位置を上げる */
  }
  .c-jobs-list__item:nth-child(3n) {
    margin-top: 0;
  }
  .c-jobs-list__item:nth-child(3n+2) {
    margin-top: 4.5rem;
  }
  .c-jobs-list__item:nth-child(3n+1) {
    margin-top: 8.75rem;
  }
  .c-jobs-list__item:nth-child(3n):not(:nth-child(3)) {
    margin-top: -1.5rem;
  }
  .c-jobs-list__item:nth-child(3n+2):not(:nth-child(2)) {
    margin-top: 2.8125rem;
  }
  .c-jobs-list__item:nth-child(3n+1):not(:first-child) {
    margin-top: 7.1875rem;
  }
}
.c-jobs-list__item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* 画像の大きさは aspect-ratio で調整（scale は中心から拡大して切れやすいので非推奨） */
.c-jobs-list__item-img {
  --before-opacity: 0;
  --before-scale: 0;
  aspect-ratio: 350/460; /* 少し大きく: 460→500 など、小さく: 460→420 など */
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
}
@media (min-width: 1200px) {
  .c-jobs-list__item-img {
    margin-bottom: 1.3125rem;
  }
}
.c-jobs-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; /* 見せたい位置: center / top / 50% 30% など */
  display: block;
  transition: transform 0.5s ease;
}
.c-jobs-list__item-img:hover {
  --before-opacity: 1;
  --before-scale: 1;
}
.c-jobs-list__item-img:hover img {
  transform: scale(1.1);
}

.c-jobs-list__item-img-blur {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  filter: blur(70px);
  opacity: var(--before-opacity);
  transform: scale(var(--before-scale));
  transform-origin: right bottom;
  transition: opacity 0.6s ease, transform 0.6s ease;
  top: 15%;
  right: -60%;
}
@media (min-width: 1200px) {
  .c-jobs-list__item-img-blur {
    top: 15%;
    right: -60%;
  }
}
.c-jobs-list__item-img-blur::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  background: radial-gradient(#88d4d2, #1a9b99);
}

.c-jobs-list__item-title {
  margin: 0;
  /* 段差レイアウトで2段目以降がずれないよう、PC時は高さを揃える */
}

.c-jobs-list__item-title-text {
  font-size: 0.875rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 1200px) {
  .c-jobs-list__item-title-text {
    font-size: 1.25rem;
    margin: 0 0rem 12;
  }
}

.c-jobs-list__item-text {
  font-size: 0.625rem;
  line-height: 1.8;
  color: var(--color-black);
  margin: 0;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行で省略。3行にしたい場合は 3 に変更 */
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1200px) {
  .c-jobs-list__item-text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.c-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}
.c-modal:not([open]) {
  display: none;
}
.c-modal::backdrop {
  background: transparent;
}

.c-modal__close-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  transition: opacity 0.3s ease;
}
.c-modal__close-btn:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .c-modal__close-btn {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
  }
}

.c-modal__close-btn-txt {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .c-modal__close-btn-txt {
    font-size: 0.75rem;
  }
}

.c-modal__inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 66.25rem;
  z-index: 10000;
}

.c-modal__body {
  position: relative;
  width: 100%;
  padding-top: 13.25%;
}
.c-modal__body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/********************************
* 通常ヘッダー
********************************/
.header {
  position: relative;
  z-index: 1000;
  margin-bottom: 3rem;
}
@media (min-width: 1200px) {
  .header {
    margin-bottom: 0;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1200px) {
  .header__inner {
    padding: 3.1875rem 3.6875rem;
  }
}
.header__logo {
  position: relative;
  z-index: 2000;
  padding-right: 1.25rem;
  pointer-events: all;
  max-width: 11.5rem;
}
@media (min-width: 1200px) {
  .header__logo {
    max-width: 31.25rem;
  }
}
.header__logo img {
  width: 100%;
}
.header__nav {
  max-width: 50rem;
  width: 100%;
  display: none;
}
@media (min-width: 1200px) {
  .header__nav {
    display: block;
    padding-bottom: 1.5625rem;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.875rem;
}
@media (min-width: 1200px) {
  .header__nav-list {
    font-size: 0.875rem;
  }
}
.header__nav-item {
  font-size: 0.8125rem;
  margin: 0 0 0 0.5rem;
}
.header__nav-item--dropdown {
  position: relative;
}
.header__nav-item--dropdown:hover .header__dropdown, .header__nav-item--dropdown:focus-within .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__dropdown {
  position: absolute;
  top: 150%;
  left: -15%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.625rem 0;
  min-width: 8.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 3000;
}
.header__dropdown-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9375rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  color: #333;
  font-size: 0.875rem;
}
.header__dropdown-item a:hover {
  background-color: #f5f5f5;
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 1.5rem;
  height: 1.25rem;
  cursor: pointer;
  z-index: 2000;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 1200px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: all 0.3s ease;
}
.header__hamburger-line:not(:first-child) {
  margin-top: 5px;
}

/********************************
* 固定ヘッダー（スクロール時フェードイン）
********************************/
.header.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
  margin-bottom: 0;
}
.header.header--fixed.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header.header--fixed .header__inner {
  padding: 2rem 1.25rem;
}
@media (min-width: 1200px) {
  .header.header--fixed .header__inner {
    padding: 2rem 3.6875rem;
  }
}
.header.header--fixed .header__logo {
  max-width: 15.125rem;
}
@media (min-width: 1200px) {
  .header.header--fixed .header__logo {
    max-width: 24.125rem;
  }
}
.header.header--fixed .header__nav {
  padding-bottom: 0;
}

/********************************
* ハンバーガーメニュー（オーバーレイ）
********************************/
.hamburger-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-blue);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hamburger-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hamburger-nav__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
}
.hamburger-nav__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.8125rem;
}
.hamburger-nav__logo {
  max-width: 8.5rem;
}
.hamburger-nav__logo img {
  width: 100%;
}
.hamburger-nav__logo-sub {
  font-size: 0.625rem;
  color: #333;
  margin-top: 0.25rem;
}
.hamburger-nav__close {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger-nav__close-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 0;
}
.hamburger-nav__close-line:nth-child(1) {
  transform: rotate(45deg);
}
.hamburger-nav__close-line:nth-child(2) {
  transform: rotate(-45deg);
}
.hamburger-nav__menu {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hamburger-nav__menu-item {
  border-bottom: 1px solid var(--color-black);
  padding: 0.8125rem 0;
  font-weight: normal;
}
.hamburger-nav__menu-item:first-child {
  border-top: 1px solid var(--color-black);
}
.hamburger-nav__menu-item > a {
  display: block;
  color: #333;
  font-size: 1.25rem;
  text-align: left;
}
.hamburger-nav__menu-item--dropdown {
  padding-bottom: 0.625rem;
}
.hamburger-nav__subtitle {
  font-size: 0.75rem;
  color: #333;
  margin-top: 0.5rem;
  font-weight: normal;
  text-align: left;
}
.hamburger-nav__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: #333;
  font-size: 1.25rem;
  cursor: pointer;
  text-align: left;
  padding: 0;
  position: relative;
}
.hamburger-nav__toggle-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  flex-shrink: 0;
  position: absolute;
  right: 1%;
  top: 100%;
  transform: translateY(-50%);
}
.hamburger-nav__toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.75rem;
  height: 0.125rem;
  background-color: #333;
  border-radius: 0.0625rem;
}
.hamburger-nav__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.125rem;
  height: 0.75rem;
  background-color: #333;
  border-radius: 0.0625rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-nav__menu-item--dropdown.is-open .hamburger-nav__dropdown {
  max-height: 5000px;
}
.hamburger-nav__menu-item--dropdown.is-open .hamburger-nav__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.hamburger-nav__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.hamburger-nav__job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4375rem;
  margin-top: 1rem;
}
.hamburger-nav__job-item {
  display: block;
  padding: 0.75rem 0;
  box-shadow: inset 0 0 0 1px #000;
  color: #333;
  font-size: 0.875rem;
  text-align: center;
  transition: background-color 0.3s ease;
  font-weight: normal;
}
.hamburger-nav__job-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.hamburger-nav__case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding-block-end: 1.875rem;
}
.hamburger-nav__case-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6875rem;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 1rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.hamburger-nav__case-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.hamburger-nav__case-image {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .hamburger-nav__case-image {
    width: 4rem;
    height: 4rem;
  }
}
.hamburger-nav__case-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hamburger-nav__case-content {
  text-align: center;
}
.hamburger-nav__case-label {
  font-size: 0.625rem;
  color: #333;
  margin-bottom: 0.25rem;
  font-weight: normal;
}
.hamburger-nav__case-name {
  font-size: 0.875rem;
  color: #333;
  font-weight: bold;
}
.hamburger-nav__career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding-block-end: 1.875rem;
}
.hamburger-nav__career-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6875rem;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 1rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.hamburger-nav__career-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.hamburger-nav__career-image {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .hamburger-nav__career-image {
    width: 4rem;
    height: 4rem;
  }
}
.hamburger-nav__career-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hamburger-nav__career-name {
  font-size: 0.875rem;
  color: #333;
  font-weight: bold;
  text-align: center;
}
.hamburger-nav__career-voice {
  display: block;
  padding-top: 1rem;
}
.hamburger-nav__career-voice .hamburger-nav__career-name {
  text-align: left;
}
.hamburger-nav__career-voice:last-child {
  margin-bottom: 1rem;
}
.hamburger-nav__footer {
  padding-top: 1.5rem;
  text-align: center;
}
.hamburger-nav__privacy {
  display: block;
  font-size: 0.75rem;
  color: #333;
  margin-bottom: 1rem;
}
.hamburger-nav__copy {
  font-size: 0.6875rem;
  color: #333;
}

/********************************
* メニューが開いている時はスクロール無効
********************************/
body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .header.header--fixed {
  background-color: transparent;
  box-shadow: none;
}

/********************************
* footer
********************************/
.footer__btn-wrap {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(19.5rem, 1fr));
  gap: 1.1875rem;
  max-width: 19.5rem;
  width: 100%;
  margin: 0 auto 5.1875rem;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .footer__btn-wrap {
    max-width: 51.25rem;
    grid-template-columns: repeat(2, minmax(19.5rem, 1fr));
    gap: 1rem 1.25rem;
    margin-bottom: 10.5rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .footer__btn-wrap {
    max-width: 56.25rem;
  }
}
.footer__btn {
  display: block;
  color: var(--color-black);
  border: 1px solid var(--color-btn-border);
  border-radius: 3.125rem;
  max-width: 25rem;
  position: relative;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .footer__btn {
    font-size: 0.9375rem;
  }
}
.footer__btn::before {
  background: url("../img/common/link-icon-black.svg") no-repeat center center/contain;
}
.footer__btn--line::after, .footer__btn--x::after {
  content: "";
  position: absolute;
  top: 1.5em;
  left: 1.8em;
  width: 25px;
  height: 24px;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer__btn--line::after, .footer__btn--x::after {
    top: 1.9em;
  }
}
@media (min-width: 1200px) {
  .footer__btn--line::after, .footer__btn--x::after {
    left: 4.2em;
    width: 30px;
    height: 30px;
  }
}
.footer__btn--line::after {
  background: url("../img/common/line.svg") no-repeat center center/contain;
}
@media (min-width: 768px) {
  .footer__btn--line::after {
    top: 1.95em;
  }
}
@media (min-width: 1200px) {
  .footer__btn--line::after {
    top: 1.75em;
  }
}
.footer__btn--x::after {
  background: url("../img/common/logo-black.png") no-repeat center center/contain;
  width: 20px;
  height: 25px;
}
@media (min-width: 1200px) {
  .footer__btn--x::after {
    width: 20px;
    height: 26px;
  }
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 768px) {
  .footer__inner {
    max-width: 77.5625rem;
    margin: 0 auto 1.5rem;
    padding-bottom: 3.75rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .footer__inner {
    justify-content: space-between;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  max-width: 18.75rem;
}
@media (min-width: 1200px) {
  .footer__left {
    max-width: 18.75rem;
    gap: 4.5625rem;
  }
}
.footer__logo {
  max-width: 14rem;
  width: 100%;
  margin: 0 auto;
}
.footer__address {
  text-align: center;
  line-height: 1.6;
  letter-spacing: 1px;
  padding-bottom: 1rem;
}
@media (min-width: 1200px) {
  .footer__address {
    text-align: left;
  }
}
.footer__address address {
  padding-bottom: 1.6875rem;
}
@media (min-width: 1200px) {
  .footer__address address {
    padding-bottom: 1.6875rem;
  }
}
.footer__address address, .footer__tel-text {
  font-size: 0.75rem;
  line-height: 1.7;
}
.footer__address-title {
  font-size: 1rem;
  padding-bottom: 0.3125rem;
}
.footer__right {
  display: none;
}
@media (min-width: 1200px) {
  .footer__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.625rem 1.5rem;
}
.footer__nav-item {
  font-size: 0.875rem;
}
.footer__nav-item--dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav-sublist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0;
  margin: 0;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 400;
}
.footer__nav-sublist li {
  position: relative;
  padding-left: 0.875rem;
}
.footer__nav-sublist li::before {
  content: "-";
  position: absolute;
  left: 0;
}
.footer__copy {
  padding-top: 1.5rem;
  padding-bottom: 1.875rem;
  border-top: 1px solid #ececec;
}
@media (min-width: 768px) {
  .footer__copy {
    padding: 3rem 0;
  }
}
.footer__copy-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 77.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .footer__copy-container {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0 2.5rem;
  }
}
.footer__copy-text {
  font-size: 0.875rem;
}
.footer__copy-text--privacy {
  font-size: 0.75rem;
}

.page-home .hero,
.page-home .top-jobs-list {
  background-color: var(--color-blue);
}

.page-home #header {
  background-color: var(--color-blue);
  margin-bottom: 0;
}

.page-home .footer {
  background-color: var(--color-white);
}

/********************************
* トップ FV（フェード＋ロゴ固定）
********************************/
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 0 3.8125rem;
}
@media (min-width: 768px) {
  .hero {
    padding-block: 1.5625rem 2.3125rem;
  }
}

/* ロゴは常に前面に固定（上中央・上に余白） */
.hero__logo {
  max-width: 19.5rem;
  width: 100%;
  margin: 3rem auto 2.5625rem;
}
@media (min-width: 600px) {
  .hero__logo {
    max-width: min(65.1041666667vw, 31.25rem);
    margin: 0 auto 2.5625rem;
  }
}
@media (min-width: 1200px) {
  .hero__logo {
    max-width: 41.875rem;
  }
}
.hero__logo img {
  display: block;
  width: 100%;
}

/* 画像のみフェードで切り替え */
.hero__fv-swiper {
  max-width: 22rem;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  margin-block-end: 9.5625rem;
}
@media (min-width: 600px) {
  .hero__fv-swiper {
    max-width: min(84.6354166667vw, 40.625rem);
    margin-block-end: min(24.7395833333vw, 11.875rem);
  }
}
@media (min-width: 1200px) {
  .hero__fv-swiper {
    max-width: 64.5rem;
    margin-block-end: 15rem;
  }
}
.hero__fv-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__fv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/********************************
* コンセプト（MESSAGE）
********************************/
.hero__concept {
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero__concept {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.hero__concept-inner {
  max-width: 37.5rem;
  margin: 0 auto 5rem;
}
@media (min-width: 600px) {
  .hero__concept-inner {
    max-width: 50rem;
    margin: 0 auto 5rem;
  }
}
@media (min-width: 1200px) {
  .hero__concept-inner {
    margin: 0 auto 7.875rem;
  }
}

.hero__concept-title {
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media (min-width: 600px) {
  .hero__concept-title {
    font-size: min(7.8125vw, 3.75rem);
    margin-bottom: min(10.4166666667vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .hero__concept-title {
    font-size: 5rem;
    margin-bottom: 7rem;
  }
}

.hero__concept-lead {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 5.5625rem;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .hero__concept-lead {
    font-size: min(5.46875vw, 2.625rem);
    margin-bottom: min(8.4635416667vw, 4.0625rem);
  }
}
@media (min-width: 1200px) {
  .hero__concept-lead {
    font-size: 2.875rem;
    margin-bottom: 3rem;
  }
}

.hero__concept-body {
  position: relative;
  font-size: 0.8125rem;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  /* 下方向に透明化（続きを見るの上でフェードアウト） */
  /* 開いたときはグラデーションを消す */
}
@media (min-width: 1200px) {
  .hero__concept-body {
    font-size: 1rem;
  }
}
.hero__concept-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7.5rem;
  background: linear-gradient(to bottom, transparent, var(--color-blue));
  pointer-events: none;
}
.hero__concept.is-expanded .hero__concept-body::after {
  display: none;
}
.hero__concept-body p {
  margin-bottom: 0.75rem;
  line-height: 2.53;
}
@media (min-width: 600px) {
  .hero__concept-body p {
    margin-bottom: min(2.0833333333vw, 1rem);
  }
}
@media (min-width: 1200px) {
  .hero__concept-body p {
    margin-bottom: 3.5rem;
    line-height: 2.9;
  }
}
.hero__concept-body p:last-child {
  margin-bottom: 0;
}

/* 続きは初期非表示、開いたら表示 */
.hero__concept-rest {
  display: none;
  margin-top: 0.75rem;
}
.hero__concept.is-expanded .hero__concept-rest {
  display: block;
}

.hero__concept-more-wrap {
  text-align: center;
}

.hero__concept-more-trigger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font-size: 0.875rem;
  color: var(--color-gray);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  padding: 0;
}
.hero__concept-more-trigger:hover {
  color: var(--color-black);
}

/********************************
* スライドエリア
********************************/
.top-slide__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 142/90;
}
@media (min-width: 768px) {
  .top-slide__img {
    aspect-ratio: 380/240;
  }
}

.top-slide__swiper {
  overflow: hidden;
  /* ループ時の余白・重なりを防ぐため固定幅（auto だと複製スライドで幅がずれる） */
}
.top-slide__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.top-slide__swiper .swiper-slide {
  width: 8.875rem;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .top-slide__swiper .swiper-slide {
    width: min(28.3854166667vw, 13.625rem);
  }
}
@media (min-width: 1200px) {
  .top-slide__swiper .swiper-slide {
    width: 23.75rem;
  }
}

.top-slide__item {
  width: 100%;
  max-width: none;
}
@media (min-width: 1200px) {
  .top-slide__item {
    max-width: 27.3125rem;
  }
}

/********************************
* MOVIEエリア
********************************/
.top-move {
  padding: 6.1875rem 2.5rem 7.8125rem;
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .top-move {
    padding: 10.25rem 1.25rem min(22.1354166667vw, 10.625rem);
  }
}
@media (min-width: 1200px) {
  .top-move {
    padding: 10.25rem 1.25rem 13rem;
  }
}

.top-move__inner {
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .top-move__inner {
    max-width: min(117.1875vw, 56.25rem);
    padding-inline: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .top-move__inner {
    max-width: 71.25rem;
    padding-inline: 2.5rem;
  }
}

.top-move__title {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--color-black);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.top-move__subtitle {
  font-size: 1rem;
  color: var(--color-black);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.top-move__video {
  position: relative;
  overflow: hidden;
  background-color: var(--color-light-gray);
  margin: 0 calc(100% - 100vw);
}
@media (min-width: 768px) {
  .top-move__video {
    margin: 0 auto;
  }
}

.top-move__poster-wrap {
  position: relative;
  aspect-ratio: 16/7;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .top-move__poster-wrap {
    aspect-ratio: 16/9;
    max-width: 66.25rem;
    margin: 0 auto;
  }
}

.top-move__poster {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-move__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.top-move__play-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  clip-path: polygon(36% 26%, 36% 74%, 74% 50%);
}

.top-move__ttl-wrap {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .top-move__ttl-wrap {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  .top-move__ttl-wrap {
    margin-bottom: 4.5rem;
  }
}

.top-move__ttl {
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 auto 1.25rem;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .top-move__ttl {
    font-size: min(5.7291666667vw, 2.75rem);
  }
}
@media (min-width: 768px) {
  .top-move__ttl {
    font-size: 5rem;
    margin: 0 auto 0.5rem;
  }
}

.top-move__subttl {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .top-move__subttl {
    font-size: 1rem;
  }
}

/********************************
* top charmエリア
********************************/
.top-charm {
  background-color: var(--color-white);
  padding-bottom: 4.25rem;
}
@media (min-width: 600px) {
  .top-charm {
    padding-bottom: min(10.4166666667vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .top-charm {
    padding-bottom: 9.6875rem;
  }
}

.top-charm__inner {
  max-width: 22.375rem;
  margin-inline: auto;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .top-charm__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 600px) {
  .top-charm__inner {
    max-width: 32rem;
  }
}
@media (min-width: 768px) {
  .top-charm__inner {
    max-width: 77.5rem;
  }
}

.top-charm__header {
  margin-block-end: 3.1875rem;
}
@media (min-width: 768px) {
  .top-charm__header {
    margin-block-end: 2.75rem;
  }
}
@media (min-width: 1200px) {
  .top-charm__header {
    margin-block-end: 3.5625rem;
  }
}

.top-charm__title {
  font-size: 2.75rem;
  padding-bottom: 0;
}
@media (min-width: 600px) {
  .top-charm__title {
    font-size: min(6.5104166667vw, 3.125rem);
    padding-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .top-charm__title {
    font-size: 5rem;
    padding-bottom: 0.3rem;
  }
}

.top-charm__content {
  margin-inline: auto;
  padding-inline-start: 0;
}
@media (min-width: 768px) {
  .top-charm__content {
    max-width: 72.5rem;
    margin-inline: auto;
    padding-inline: 3rem;
  }
}

.top-charm__content-top-img {
  aspect-ratio: 375/240;
  margin: 0 calc((100vw - 100%) * -1);
  padding-block-end: 2.375rem;
}
@media (min-width: 500px) {
  .top-charm__content-top-img {
    margin: 0 calc((100vw - 125%) * -1);
  }
}
@media (min-width: 600px) {
  .top-charm__content-top-img {
    aspect-ratio: 1060/578;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .top-charm__content-top-img {
    padding-block-end: 1.25rem;
  }
}
.top-charm__content-top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-charm__img-wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-block: 3px 2.4375rem;
}
@media (min-width: 768px) {
  .top-charm__img-wrap {
    flex-direction: row;
    gap: 1.25rem;
    margin-block-end: min(5.3385416667vw, 2.5625rem);
    margin-block: 0 2.4375rem;
  }
}
@media (min-width: 1200px) {
  .top-charm__img-wrap {
    margin-block-end: 2.875rem;
  }
}

.top-charm__img-item {
  aspect-ratio: 340/237;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-charm__img-item {
    aspect-ratio: 340/260;
  }
}
.top-charm__img-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-charm__text-wrap {
  display: flex;
  flex-direction: column;
}

.top-charm__text-item {
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .top-charm__text-item {
    margin-bottom: 1.5rem;
  }
}

.top-charm__text-ttl {
  font-size: 1.25rem;
  margin-bottom: 1.5625rem;
}
@media (min-width: 1200px) {
  .top-charm__text-ttl {
    margin-bottom: 1.5rem;
  }
}

.top-charm__text {
  font-size: 0.8125rem;
  line-height: 1.58;
}
@media (min-width: 1200px) {
  .top-charm__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.top-charm__btn {
  align-self: center;
}
@media (min-width: 600px) {
  .top-charm__btn {
    align-self: flex-end;
  }
}

/********************************
* 職種を知る
********************************/
.top-jobs__list-wrap {
  max-width: 45rem;
  padding-inline: 1.9375rem;
}
@media (min-width: 1200px) {
  .top-jobs__list-wrap {
    max-width: 77.5rem;
    padding-inline: 2.5rem;
  }
}
.top-jobs__list-wrap .c-page-header__text {
  font-size: 2.75rem;
  line-height: 1.2;
  gap: 1rem;
  padding-bottom: 3.5625rem;
}
@media (min-width: 1200px) {
  .top-jobs__list-wrap .c-page-header__text {
    font-size: 5rem;
    padding-bottom: 4.75rem;
  }
}
.top-jobs__list-wrap .c-page-header__text-sub {
  font-size: 0.8125rem;
}
@media (min-width: 1200px) {
  .top-jobs__list-wrap .c-page-header__text-sub {
    font-size: 0.875rem;
  }
}

.top-jobs-list__inner {
  display: flex;
  flex-direction: column;
  padding-block: 5.5625rem 5.25rem;
}
@media (min-width: 768px) {
  .top-jobs-list__inner {
    max-width: 77.5rem;
    margin-inline: auto;
    padding-block: min(5.3385416667vw, 2.5625rem);
  }
}
@media (min-width: 1200px) {
  .top-jobs-list__inner {
    padding-block: 9.25rem;
  }
}

.page-jobs-list__container {
  padding-block-end: 3.375rem;
}
@media (min-width: 768px) {
  .page-jobs-list__container {
    padding-block-end: 3.125rem;
  }
}

.top-jobs-list__btn {
  align-self: center;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .top-jobs-list__btn {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 600px) {
  .top-jobs-list__btn {
    align-self: flex-end;
  }
}

.top-jobs-list__btn-icon {
  background-color: transparent;
  border: 1px solid var(--color-black);
}

/********************************
* ワークライフバランス
********************************/
.top-work-life-balance {
  padding: 5rem 0;
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .top-work-life-balance {
    padding: 3rem 1.25rem;
  }
}
@media (min-width: 1200px) {
  .top-work-life-balance {
    padding: 12rem 1.25rem 10.75rem;
  }
}

.top-work-life-balance__inner {
  max-width: 22rem;
  margin-inline: auto;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .top-work-life-balance__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 400px) {
  .top-work-life-balance__inner {
    max-width: 45rem;
  }
}
@media (min-width: 768px) {
  .top-work-life-balance__inner {
    max-width: 75.5rem;
    padding-inline: 1.25rem;
  }
}

.top-work-life-balance__content {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-areas: "text" "grid" "btn";
}
@media (min-width: 1000px) {
  .top-work-life-balance__content {
    grid-template-columns: 23.625rem 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "text grid" "btn grid";
    -moz-column-gap: 0;
         column-gap: 0;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .top-work-life-balance__content {
    -moz-column-gap: 7.8125rem;
         column-gap: 7.8125rem;
  }
}

.top-work-life-balance__text {
  grid-area: text;
  position: relative;
}
@media (min-width: 1200px) {
  .top-work-life-balance__text {
    margin-top: 2rem;
  }
}

.top-work-life-balance__text-wrap {
  margin-bottom: 2.5rem;
}
@media (min-width: 1200px) {
  .top-work-life-balance__text-wrap {
    margin-bottom: 2.5rem;
  }
}

.top-work-life-balance__title {
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  display: block;
}
@media (min-width: 768px) {
  .top-work-life-balance__title {
    margin-bottom: 0.75rem;
    line-height: 0.95;
  }
}
@media (min-width: 1200px) {
  .top-work-life-balance__title {
    margin-bottom: 1.5rem;
    font-size: 5rem;
  }
}

.top-work-life-balance__subtitle {
  font-size: 0.8125rem;
  color: var(--color-black);
  margin: 0 0 4.375rem;
  line-height: 1.5;
  letter-spacing: -1px;
}
@media (min-width: 600px) {
  .top-work-life-balance__subtitle {
    font-size: 1rem;
    margin: 0 0 min(8.3333333333vw, 4rem);
  }
}
@media (min-width: 1200px) {
  .top-work-life-balance__subtitle {
    margin: 0 0 5.6875rem;
  }
}

.top-work-life-balance__body {
  font-size: 0.8125rem;
  color: var(--color-black);
  margin: 0;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .top-work-life-balance__body {
    font-size: 1rem;
    line-height: 2;
  }
}

.top-work-life-balance__grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-inline-end: calc(100% - 92vw);
  padding-block-end: 2.625rem;
}
@media (min-width: 400px) {
  .top-work-life-balance__grid {
    margin-inline-end: calc(100% - 100vw);
  }
}
@media (min-width: 1001px) {
  .top-work-life-balance__grid {
    margin-inline-end: calc(100% - 56vw);
    padding-block-end: 0;
  }
}

.top-work-life-balance__grid-item {
  aspect-ratio: 171/131;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 600px) {
  .top-work-life-balance__grid-item {
    aspect-ratio: 415/315;
  }
}
.top-work-life-balance__grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-work-life-balance__btn-wrap {
  grid-area: btn;
  margin-top: 0.8125rem;
}
@media (min-width: 1200px) {
  .top-work-life-balance__btn-wrap {
    margin-top: 0.5rem;
  }
}

.top-work-life-balance__btn {
  grid-area: btn;
  justify-self: start;
  align-self: flex-start;
}

.top-work-life-balance__btn--pc {
  display: none;
}
@media (min-width: 1000px) {
  .top-work-life-balance__btn--pc {
    display: flex;
  }
}

.top-work-life-balance__btn--sp {
  display: flex;
  justify-self: center;
}
@media (min-width: 1000px) {
  .top-work-life-balance__btn--sp {
    display: none;
  }
}

/********************************
* キャリアステップ
********************************/
.top-career-step {
  padding: 2.25rem 0 2.5rem;
  background-color: var(--color-white);
}
@media (min-width: 600px) {
  .top-career-step {
    padding: min(5.2083333333vw, 2.5rem) 1.25rem min(13.0208333333vw, 6.25rem);
  }
}
@media (min-width: 1200px) {
  .top-career-step {
    padding: 3rem 1.25rem 12.1875rem;
  }
}

.top-career-step__inner {
  max-width: 25.5rem;
  margin-inline: auto;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .top-career-step__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 600px) {
  .top-career-step__inner {
    max-width: 25.5rem;
    padding-inline: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .top-career-step__inner {
    max-width: 66.5rem;
  }
}

.top-career-step__header {
  text-align: center;
  margin-bottom: 2.8125rem;
}
@media (min-width: 768px) {
  .top-career-step__header {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .top-career-step__header {
    margin-bottom: 4.1875rem;
  }
}

.top-career-step__title {
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .top-career-step__title {
    font-size: 5rem;
    margin-bottom: 0.75rem;
  }
}

.top-career-step__subtitle {
  font-size: 0.8125rem;
  color: var(--color-black);
  margin: 0 0 3.5rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .top-career-step__subtitle {
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
  }
}
@media (min-width: 1200px) {
  .top-career-step__subtitle {
    margin: 0 0 4.25rem;
  }
}

.top-career-step__lead {
  font-size: 0.8125rem;
  color: var(--color-black);
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .top-career-step__lead {
    font-size: 1rem;
    line-height: 2;
  }
}

.top-career-step__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1200px) {
  .top-career-step__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.top-career-step__card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.top-career-step__card-img-wrap {
  position: relative;
  padding-bottom: 0.625rem;
  overflow: hidden;
}

.top-career-step__card-img {
  display: block;
  aspect-ratio: 280/217;
  width: 17.5rem;
  margin: 0 auto 1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-career-step__card-img {
    aspect-ratio: 490/380;
    width: 30.625rem;
    height: auto;
  }
}
.top-career-step__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.top-career-step__card-img img:hover {
  transform: scale(1.05);
}

.top-career-step__card-caption {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 1.5rem;
  height: 78%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--color-black);
  background-color: rgba(255, 255, 255, 0.95);
  pointer-events: none;
}
@media (min-width: 768px) {
  .top-career-step__card-caption {
    height: 55%;
    font-size: 1rem;
    width: 1.5rem;
  }
}
.top-career-step__card-caption--left {
  top: -0.8125rem;
  left: 0;
  margin-left: 3.125rem;
}
@media (min-width: 1200px) {
  .top-career-step__card-caption--left {
    top: -1.25rem;
    margin-left: 2.6875rem;
  }
}
.top-career-step__card-caption--right {
  top: -0.8125rem;
  right: 0;
  margin-right: 3.125rem;
}
@media (min-width: 1200px) {
  .top-career-step__card-caption--right {
    top: -0.6875rem;
    margin-right: 3.5rem;
  }
}

.top-career-step__card-title {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--color-black);
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .top-career-step__card-title {
    font-size: 1.25rem;
  }
}

/********************************
* VOICE & DATA
********************************/
.top-voice {
  position: relative;
  padding: 2.75rem 0;
  margin-block-end: 5rem;
  overflow: hidden;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .top-voice {
    padding: 3rem 0;
    margin-block-end: min(21.3541666667vw, 10.25rem);
  }
}
@media (min-width: 1200px) {
  .top-voice {
    padding: 9rem 0 6.3125rem;
    margin-inline: auto;
    margin-block-end: 16.5625rem;
    max-width: 72.5rem;
  }
}

.top-voice::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/top/vd-bg.webp");
  background-size: 232%;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 0;
}
@media (min-width: 768px) {
  .top-voice::before {
    background-size: cover;
    background-position: center;
  }
}

.top-voice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.top-voice__inner {
  position: relative;
  z-index: 2;
  max-width: 66.25rem;
  margin: 0 auto;
  text-align: center;
  padding-inline: 1.9375rem;
}
@media (min-width: 1200px) {
  .top-voice__inner {
    padding-top: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .top-voice__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.top-voice__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  font-weight: 500;
  margin: 0 0 1rem;
}
@media (min-width: 1200px) {
  .top-voice__title {
    font-size: 4.75rem;
    margin: 0 0 1rem;
  }
}
.top-voice__title .small {
  font-size: 2rem;
  padding-inline: 0.5rem;
}
@media (min-width: 1200px) {
  .top-voice__title .small {
    font-size: 3.75rem;
  }
}

.top-voice__subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 2.5rem;
}
@media (min-width: 768px) {
  .top-voice__subtitle {
    margin: 0 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .top-voice__subtitle {
    font-size: 1rem;
    margin: 0 0 3rem;
  }
}

.top-voice__lead {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  max-width: 45rem;
  text-align: left;
}
@media (min-width: 600px) {
  .top-voice__lead {
    margin-bottom: min(7.2916666667vw, 3.5rem);
  }
}
@media (min-width: 1200px) {
  .top-voice__lead {
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 4.8125rem;
  }
}

.top-voice__btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  max-width: 32.5rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top-voice__btns {
    grid-template-columns: repeat(2, 1fr);
    max-width: min(83.3333333333vw, 40rem);
  }
}
@media (min-width: 1200px) {
  .top-voice__btns {
    max-width: 52.5rem;
    gap: 2.5rem;
  }
}

.top-voice__btn {
  display: block;
  width: 100%;
  padding: 1.9em 0;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-black);
  border-radius: 62.4375rem;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .top-voice__btn {
    font-size: 1rem;
  }
}
.top-voice__btn:hover {
  box-shadow: inset 0 0 0 3px var(--color-blue);
  color: var(--color-blue);
}

.p-jobs-fv {
  width: 100%;
  margin: 0 auto 4rem;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .p-jobs-fv {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 768px) {
  .p-jobs-fv {
    max-width: 86.25rem;
    margin: 0 auto 5.8125rem;
  }
}
@media (min-width: 1200px) {
  .p-jobs-fv {
    padding-top: 3.0625rem;
  }
}
.p-jobs-fv__container {
  position: relative;
}
.p-jobs-fv__content-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 15.625rem;
  width: 100%;
  background: var(--color-white);
  position: static;
}
@media (min-width: 1200px) {
  .p-jobs-fv__content-wrap {
    padding: 3.5rem 1.3125rem 2.8125rem;
    max-width: 21.25rem;
    position: absolute;
    bottom: 0;
  }
}
.p-jobs-fv__info-icon {
  display: block;
  width: 2.4375rem;
  height: 2.4375rem;
  background-color: #6fb8b6;
  border-radius: 50%;
}
@media (min-width: 600px) {
  .p-jobs-fv__info-icon {
    width: min(5.078vw, 3rem);
    height: min(5.078vw, 3rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs-fv__info-icon {
    width: 3rem;
    height: 3rem;
  }
}
.p-jobs-fv__title {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
@media (min-width: 1200px) {
  .p-jobs-fv__title {
    gap: 0.5625rem;
  }
}
.p-jobs-fv__title-text {
  font-size: 1.8125rem;
}
@media (min-width: 1200px) {
  .p-jobs-fv__title-text {
    font-size: 2.25rem;
  }
}
.p-jobs-fv__fv-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 3.6875rem;
}
@media (min-width: 1200px) {
  .p-jobs-fv__fv-wrap {
    margin-bottom: 0;
  }
}
.p-jobs-fv__info-area {
  max-width: 17.25rem;
  width: 100%;
  position: absolute;
  bottom: 10%;
  right: 5%;
}
@media (min-width: 600px) {
  .p-jobs-fv__info-area {
    max-width: min(143.8202247191vw, 33.375rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs-fv__info-area {
    max-width: 38rem;
    bottom: 4%;
    right: 4%;
  }
}
.p-jobs-fv__info {
  position: relative;
  text-align: right;
  z-index: 1;
  font-size: 0.75rem;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .p-jobs-fv__info {
    font-size: 0.875rem;
  }
}
.p-jobs-fv__info-wrap:not(:last-child) {
  margin-bottom: 1rem;
}
.p-jobs-fv__line:not(:last-child) {
  padding-bottom: 0.5rem;
}

/********************************
* 共通箇所
********************************/
.c-page-qa__title {
  position: relative;
  padding-left: 2.3em;
}
@media (min-width: 768px) {
  .c-page-qa__title {
    padding-left: 2em;
  }
}
.c-page-qa__title::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.1em;
  width: 1.55em;
  height: 1.4em;
  background: url("../img/svg/qa-icon.svg") no-repeat center center/contain;
}
@media (min-width: 768px) {
  .c-page-qa__title::before {
    left: 0;
    top: 0;
    width: 1.55em;
    height: 1.4em;
  }
}

.p-jobs-sec__title {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 1.3125rem;
}
@media (min-width: 768px) {
  .p-jobs-sec__title {
    font-size: clamp(1.3125rem, 2.916vw, 1.75rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs-sec__title {
    font-size: 1.75rem;
    padding-bottom: 1.6875rem;
  }
}

.p-jobs__text-size {
  font-size: 0.8125rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.7px;
}
@media (min-width: 768px) {
  .p-jobs__text-size {
    font-size: clamp(0.8125rem, 1.5625vw, 0.9375rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs__text-size {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

/********************************
* どんなお仕事？
********************************/
.p-jobs-work {
  width: 100%;
  margin: 0 auto 2.3125rem;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .p-jobs-work {
    padding: 0 min(4.16vw, 2rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs-work {
    max-width: 77.5rem;
    margin: 0 auto 9rem;
    padding: 0 2.5rem;
  }
}
.p-jobs-work__container {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin: 0 auto;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid #ececec;
}
@media (min-width: 1200px) {
  .p-jobs-work__container {
    flex-direction: row;
    gap: 7.5625rem;
    max-width: 66.25rem;
    padding-bottom: 3.875rem;
  }
}
.p-jobs-work__title-wrap {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-black);
  max-width: 14.375rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-jobs-work__title-wrap {
    font-size: clamp(1.3125rem, 2.916vw, 1.75rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs-work__title-wrap {
    font-size: 1.75rem;
  }
}
.p-jobs-work__content {
  width: 100%;
}
@media (min-width: 1200px) {
  .p-jobs-work__content {
    max-width: 41.5rem;
  }
}
.p-jobs-work__heading {
  padding-bottom: 1.25rem;
}
@media (min-width: 1200px) {
  .p-jobs-work__heading {
    padding-bottom: 0.875rem;
  }
}

/********************************
* 業務内容・志望動機
********************************/
.p-jobs-interview {
  max-width: 85.75rem;
  width: 100%;
  padding-left: 1.5625rem;
  margin: 0 0 7.1875rem 0;
}
@media (min-width: 600px) {
  .p-jobs-interview {
    padding-left: min(4.16vw, 2.5rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs-interview {
    padding-left: 2.5rem;
    margin: 0 0 11.875rem auto;
  }
}
@media (min-width: 1501px) {
  .p-jobs-interview {
    max-width: 93.75rem;
  }
}
.p-jobs-interview__container {
  display: grid;
  gap: 4.75rem;
  grid-template-columns: 1fr;
  grid-template-areas: "qa1" "image" "qa2";
}
@media (min-width: 960px) {
  .p-jobs-interview__container {
    grid-template-columns: 1fr 50%;
    gap: 3.75rem 7.6875rem;
    gap: 2.5rem;
    grid-template-areas: "qa1 image" "qa2 image";
  }
}
@media (min-width: 1200px) {
  .p-jobs-interview__container {
    grid-template-columns: 1fr minmax(45rem, 1fr);
  }
}
.p-jobs-interview__item {
  max-width: 37.5rem;
  padding-right: 2rem;
  padding-left: 0.5rem;
}
@media (min-width: 600px) {
  .p-jobs-interview__item {
    max-width: 100%;
    padding-right: min(4.16vw, 2rem);
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .p-jobs-interview__item {
    max-width: 30.5rem;
  }
}
@media (min-width: 1500px) {
  .p-jobs-interview__item {
    max-width: 100%;
  }
}
.p-jobs-interview__item:first-child {
  grid-area: qa1;
  margin: 0.3125rem 0 0 auto;
}
.p-jobs-interview__item:last-child {
  grid-area: qa2;
  margin: -1.25rem 0 0 auto;
}
@media (min-width: 1200px) {
  .p-jobs-interview__item:last-child {
    margin: -1rem 0 0 auto;
  }
}
.p-jobs-interview__item-text {
  line-height: 2;
  letter-spacing: 0.1px;
}
@media (min-width: 768px) {
  .p-jobs-interview__item-text {
    letter-spacing: 0.8px;
  }
}
.p-jobs-interview__img-wrap {
  grid-area: image;
  align-self: center;
  aspect-ratio: 350/340;
  height: 100%;
}
@media (min-width: 960px) {
  .p-jobs-interview__img-wrap {
    grid-row: 1/3;
    aspect-ratio: 720/700;
    margin-left: auto;
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1300px) {
  .p-jobs-interview__img-wrap {
    max-width: 100%;
  }
}
.p-jobs-interview__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* この職種や仙台市ならではの魅力・特色は
********************************/
.p-jobs-special {
  max-width: 77.5rem;
  width: 100%;
  margin: 0 auto 3.375rem;
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .p-jobs-special {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .p-jobs-special {
    margin: 0 auto 8.5625rem;
  }
}
.p-jobs-special__container {
  display: flex;
  flex-direction: column;
  gap: 4.375rem;
}
@media (min-width: 1200px) {
  .p-jobs-special__container {
    flex-direction: row;
    gap: 0.8125rem;
  }
}
.p-jobs-special__content-title {
  margin: 0.3125rem 0 0.5rem 0;
}
.p-jobs-special__img-wrap {
  display: block;
  aspect-ratio: 320/298;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .p-jobs-special__img-wrap {
    max-width: 37.5rem;
  }
}
@media (min-width: 1200px) {
  .p-jobs-special__img-wrap {
    aspect-ratio: 560/520;
    max-width: 35rem;
  }
}
.p-jobs-special__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-jobs-special__content {
  padding-right: 0.6875rem;
  padding-left: 0.6875rem;
}
@media (min-width: 1200px) {
  .p-jobs-special__content {
    max-width: 33.6875rem;
    margin-right: 3rem;
    padding-right: 0;
    padding-left: 3rem;
  }
}
.p-jobs-special__content-text {
  line-height: 2;
  letter-spacing: 0.3px;
}

/********************************
* 職場の雰囲気 / やりがいや達成感
********************************/
.p-jobs-atmosphere {
  max-width: 77.5rem;
  width: 100%;
  margin: 0 auto 6.5625rem;
}
@media (min-width: 1200px) {
  .p-jobs-atmosphere {
    margin: 0 auto 19.25rem;
  }
}
.p-jobs-atmosphere__container {
  display: flex;
  flex-direction: column;
  gap: 4.875rem;
}
@media (min-width: 1200px) {
  .p-jobs-atmosphere__container {
    gap: 8.25rem;
  }
}
.p-jobs-atmosphere__item {
  max-width: 62.8125rem;
  width: 100%;
  margin: 3px auto 0;
  padding-right: 2.1875rem;
  padding-left: 1.875rem;
}
@media (min-width: 600px) {
  .p-jobs-atmosphere__item {
    padding: 0 min(4.16vw, 2rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs-atmosphere__item {
    padding: 0 2.5rem;
  }
}
.p-jobs-atmosphere__item-title {
  letter-spacing: 0.4px;
  margin-bottom: 0.25rem;
}
.p-jobs-atmosphere__item-text {
  line-height: 2;
  letter-spacing: 0.3px;
}
.p-jobs-atmosphere__img-wrap {
  aspect-ratio: 375/258;
  width: 100%;
  padding: 0;
}
@media (min-width: 600px) {
  .p-jobs-atmosphere__img-wrap {
    padding: 0 min(4.16vw, 2rem);
  }
}
@media (min-width: 1200px) {
  .p-jobs-atmosphere__img-wrap {
    aspect-ratio: 1160/520;
    padding: 0 2.5rem;
  }
}
.p-jobs-atmosphere__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/********************************
* これから挑戦してみたいことは / 休暇制度や待遇面
********************************/
.p-jobs-challenge {
  max-width: 84.1875rem;
  width: 100%;
  margin-right: auto;
  padding: 0 0.3125rem 0 0;
  margin-bottom: 8.25rem;
}
@media (min-width: 1200px) {
  .p-jobs-challenge {
    padding: 0 2.5rem 0 0;
    margin-bottom: 13.0625rem;
  }
}
@media (min-width: 1501px) {
  .p-jobs-challenge {
    max-width: 93.75rem;
  }
}
.p-jobs-challenge__container {
  display: flex;
  flex-direction: column;
  gap: 4.75rem;
}
@media (min-width: 768px) {
  .p-jobs-challenge__container {
    flex-direction: row;
    gap: 2.75rem;
  }
}
@media (min-width: 1200px) {
  .p-jobs-challenge__container {
    align-items: flex-start;
    gap: 4.3125rem;
  }
}
.p-jobs-challenge__content-wrap {
  display: flex;
  flex-direction: column;
  gap: 5.75rem;
  max-width: 37.5rem;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media (min-width: 600px) {
  .p-jobs-challenge__content-wrap {
    flex: 1;
  }
}
@media (min-width: 1200px) {
  .p-jobs-challenge__content-wrap {
    gap: 5rem;
    max-width: 32.4375rem;
    padding: 0;
  }
}
.p-jobs-challenge__img-wrap {
  padding-right: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-jobs-challenge__img-wrap {
    padding-right: 0;
    flex: 1;
  }
}
.p-jobs-challenge__img {
  aspect-ratio: 720/640;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-jobs-challenge__item-title {
  margin: 0.3125rem 0 0 0;
}
.p-jobs-challenge__item-text {
  line-height: 2;
  letter-spacing: 0.8px;
}

/********************************
* 1日のスケジュール
********************************/
.p-jobs-schedule {
  background: var(--color-blue);
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-bottom: 6.5rem;
}
@media (min-width: 768px) {
  .p-jobs-schedule {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .p-jobs-schedule {
    margin-bottom: 11.25rem;
  }
}
.p-jobs-schedule__container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  max-width: 17.875rem;
  width: 100%;
  margin: 0 auto;
  padding: 7.1875rem 0 5.5rem;
}
@media (min-width: 600px) {
  .p-jobs-schedule__container {
    max-width: 22.875rem;
  }
}
@media (min-width: 1200px) {
  .p-jobs-schedule__container {
    max-width: 66.375rem;
    flex-direction: row;
    gap: 4.375rem;
    padding: 9.5625rem 0 6.5rem;
  }
}
.p-jobs-schedule__title {
  max-width: 20.625rem;
}
@media (min-width: 1200px) {
  .p-jobs-schedule__title {
    max-width: 20.625rem;
  }
}
.p-jobs-schedule__title-text {
  font-size: 2.1875rem;
  font-weight: normal;
  line-height: 1.4;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
@media (min-width: 1200px) {
  .p-jobs-schedule__title-text {
    font-size: 3rem;
  }
}
.p-jobs-schedule__title-sub {
  font-size: 1rem;
  color: var(--color-white);
}
.p-jobs-schedule__img-wrap {
  position: absolute;
  aspect-ratio: 72/228;
  max-width: 4.5rem;
  width: 100%;
  top: 71px;
  right: 5px;
}
@media (min-width: 600px) {
  .p-jobs-schedule__img-wrap {
    top: 71px;
    right: 5px;
  }
}
@media (min-width: 1200px) {
  .p-jobs-schedule__img-wrap {
    aspect-ratio: 143/455;
    max-width: 8.9375rem;
    width: 100%;
    top: 162px;
    right: 29px;
  }
}
.p-jobs-schedule__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-jobs-schedule__timeline {
  max-width: 28.125rem;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .p-jobs-schedule__timeline {
    margin: 0.5rem 0 0 0;
  }
}
.p-jobs-schedule__timeline-item {
  margin-bottom: 3.75rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 0;
}
.p-jobs-schedule__timeline-item:last-of-type .p-jobs-schedule__timeline-content::after {
  display: none;
}
.p-jobs-schedule__timeline-time {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  max-width: 3.6875rem;
  width: 100%;
}
@media (min-width: 768px) {
  .p-jobs-schedule__timeline-time {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.p-jobs-schedule__timeline-content {
  color: var(--color-white);
  font-size: 0.9375rem;
  line-height: 1.4;
  padding-left: 2.9em;
  padding-bottom: 1.8em;
  position: relative;
}
@media (min-width: 768px) {
  .p-jobs-schedule__timeline-content {
    padding-left: 2.5em;
    padding-bottom: 2em;
  }
}
.p-jobs-schedule__timeline-content::before {
  content: "";
  background: var(--color-white);
  width: 0.87em;
  height: 0.87em;
  position: absolute;
  left: 0;
  top: 0.2em;
  transform: translateX(-45%);
  border-radius: 100%;
}
@media (min-width: 768px) {
  .p-jobs-schedule__timeline-content::before {
    width: 0.75em;
    height: 0.75em;
    top: 0.4em;
  }
}
.p-jobs-schedule__timeline-content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1px;
  height: var(--line-height, 0);
  background: var(--color-white);
}
@media (min-width: 768px) {
  .p-jobs-schedule__timeline-content::after {
    top: 0.4em;
  }
}

.p-jobs-schedule__notes {
  font-size: 0.75rem;
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: 0.3px;
  margin-top: 1rem;
  text-align: left;
  max-width: 25rem;
  margin-left: auto;
}

/********************************
* オフの日の過ごし方
********************************/
.p-jobs-off {
  padding: 0 1.875rem;
  margin-bottom: 7.375rem;
}
@media (min-width: 1200px) {
  .p-jobs-off {
    margin-bottom: 10.8125rem;
  }
}
.p-jobs-off__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3.1875rem 2rem;
  border: 1px solid var(--color-gray);
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .p-jobs-off__container {
    flex-direction: row;
    gap: 3.1875rem;
    padding: 4.5rem 3.5rem 5rem;
    align-items: flex-start;
    max-width: 66.25rem;
  }
}
.p-jobs-off__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 1200px) {
  .p-jobs-off__profile {
    flex-shrink: 0;
  }
}
.p-jobs-off__profile-label {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
}
.p-jobs-off__profile-img-wrap {
  aspect-ratio: 128/139;
  max-width: 9rem;
  width: 100%;
  margin: 0 auto;
  padding-left: 0.8125rem;
}
@media (min-width: 600px) {
  .p-jobs-off__profile-img-wrap {
    max-width: 15.25rem;
  }
}
@media (min-width: 1200px) {
  .p-jobs-off__profile-img-wrap {
    aspect-ratio: 160/200;
    max-width: 9rem;
    margin: 16px 0 0 0;
    padding-left: 0;
  }
}
.p-jobs-off__profile-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-jobs-off__content {
  flex: 1;
}
@media (min-width: 1200px) {
  .p-jobs-off__content {
    flex: 2;
  }
}
.p-jobs-off__content-title {
  font-size: 1.375rem;
  font-weight: bold;
  color: var(--color-black);
  margin-bottom: 1.5625rem;
}
@media (min-width: 1200px) {
  .p-jobs-off__content-title {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}
.p-jobs-off__content-text {
  font-size: 0.8125rem;
  color: var(--color-black);
  line-height: 2;
}
@media (min-width: 1200px) {
  .p-jobs-off__content-text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.p-jobs-off__img-wrap {
  aspect-ratio: 230/160;
  max-width: 14.375rem;
  width: 100%;
  margin: 1rem auto 0;
}
@media (min-width: 600px) {
  .p-jobs-off__img-wrap {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .p-jobs-off__img-wrap {
    margin: 0;
    max-width: 14.375rem;
  }
}
.p-jobs-off__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-jobs-off__content-notes {
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
  text-align: right;
}

/********************************
* メッセージ
********************************/
.p-jobs-message {
  margin: 0 auto 3.8125rem;
}
@media (min-width: 1200px) {
  .p-jobs-message {
    max-width: 77.5rem;
    margin: 0 auto 9.25rem;
  }
}
.p-jobs-message__container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3.375rem;
}
@media (min-width: 1200px) {
  .p-jobs-message__container {
    margin-bottom: 9.25rem;
  }
}
.p-jobs-message__title {
  padding: 0 2rem;
}
.p-jobs-message__item-img-wrap {
  aspect-ratio: 375/340;
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-jobs-message__item-img-wrap {
    aspect-ratio: 1160/640;
    max-width: 72.5rem;
    margin: 0 auto;
  }
}
.p-jobs-message__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-jobs-message__item {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-jobs-message__item {
    padding: 0 2.5rem;
  }
}
.p-jobs-message__item-content {
  position: static;
  max-width: 41.875rem;
  width: 100%;
  padding: 0 1.875rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .p-jobs-message__item-content {
    position: absolute;
    bottom: -32.5097529259vw;
    left: -7.2821846554vw;
    max-width: 80.7542262679vw;
    height: 54.2262678804vw;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .p-jobs-message__item-content {
    bottom: -30rem;
    left: -4.5rem;
    max-width: 46.875rem;
    height: 46.875rem;
  }
}
.p-jobs-message__item-content::before {
  position: static;
}
@media (min-width: 768px) {
  .p-jobs-message__item-content::before {
    content: "";
    position: absolute;
    top: -14.3042912874vw;
    left: -1.6905071521vw;
    width: 80.7542262679vw;
    height: 54.2262678804vw;
    background: var(--color-white);
    opacity: 0.75;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .p-jobs-message__item-content::before {
    top: -130px;
    left: -50px;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .p-jobs-message__item-content--right {
    left: auto;
    right: -14.4343302991vw;
  }
}
@media (min-width: 1200px) {
  .p-jobs-message__item-content--right {
    left: auto;
    right: -4.5rem;
  }
}
.p-jobs-message__item-content--right::before {
  position: static;
}
@media (min-width: 768px) {
  .p-jobs-message__item-content--right::before {
    content: "";
    position: absolute;
    background: var(--color-white);
    opacity: 0.75;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    top: -13.0039011704vw;
    left: -0.6501950585vw;
  }
}
@media (min-width: 1200px) {
  .p-jobs-message__item-content--right::before {
    top: -130px;
    left: -50px;
  }
}
.p-jobs-message__item-text {
  position: static;
}
@media (min-width: 768px) {
  .p-jobs-message__item-text {
    position: absolute;
    top: 21%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
}

/********************************
* Swiper
********************************/
.p-jobs-swiper {
  background: var(--color-bg-gray);
  margin-bottom: 5.5625rem;
  padding-bottom: 3.6875rem;
}
@media (min-width: 1200px) {
  .p-jobs-swiper {
    margin-bottom: 16.5625rem;
    padding-bottom: 4.25rem;
  }
}
.p-jobs-swiper__container {
  max-width: 80rem;
  margin: 0 0 0 auto;
  padding: 3.6875rem 0 0 2rem;
}
@media (min-width: 1200px) {
  .p-jobs-swiper__container {
    max-width: 82.5rem;
    padding: 4.25rem 0 4rem 2.5rem;
  }
}
@media (min-width: 1501px) {
  .p-jobs-swiper__container {
    max-width: 96.875rem;
  }
}
.p-jobs-swiper__title {
  font-size: 1.75rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 1200px) {
  .p-jobs-swiper__title {
    font-size: 2.375rem;
    padding-bottom: 3.25rem;
  }
}
.p-jobs-swiper .swiper-wrapper {
  padding-bottom: 1.25rem;
}
@media (min-width: 1200px) {
  .p-jobs-swiper .swiper-wrapper {
    padding-bottom: 3.375rem;
  }
}
.p-jobs-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 79%;
  padding-right: 3rem;
}
@media (min-width: 768px) {
  .p-jobs-swiper .swiper-wrapper .swiper-slide {
    max-width: 21.1875rem;
    padding-right: 3.6875rem;
    width: 100%;
  }
}
@media (min-width: 1501px) {
  .p-jobs-swiper .swiper-wrapper .swiper-slide {
    max-width: 30rem;
  }
}
.p-jobs-swiper .swiper-slide__img-wrap {
  aspect-ratio: 224/289;
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .p-jobs-swiper .swiper-slide__img-wrap {
    aspect-ratio: 280/360;
    margin-bottom: 1rem;
  }
}
.p-jobs-swiper .swiper-slide__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-jobs-swiper .swiper-slide__content {
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .p-jobs-swiper .swiper-slide__content {
    font-size: 1.125rem;
  }
}
.p-jobs-swiper__button-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding: 0 1.25rem;
}
@media (min-width: 1200px) {
  .p-jobs-swiper__button-wrap {
    padding: 0 2.5rem;
  }
}
.p-jobs-swiper .swiper-pagination {
  position: relative;
  max-width: 96.5%;
  width: 100%;
  height: 0.0625rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.125rem;
  overflow: hidden;
  margin-bottom: 3.75rem;
}
.p-jobs-swiper .swiper-pagination.swiper-pagination-progressbar {
  background-color: rgba(0, 0, 0, 0.1);
}
.p-jobs-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--color-blue);
  height: 100%;
  border-radius: 0.125rem;
}
.p-jobs-swiper .swiper-button__wrap {
  display: flex;
  gap: 2.25rem;
  margin: 0 auto;
  max-width: 16rem;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .p-jobs-swiper .swiper-button__wrap {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  .p-jobs-swiper .swiper-button__wrap {
    max-width: 23rem;
    flex-direction: row;
    gap: 5.25rem;
  }
}
.p-jobs-swiper .swiper-button__wrap .swiper-button__content {
  display: flex;
  gap: 3.5rem;
}
.p-jobs-swiper .button__item {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s ease;
}
.p-jobs-swiper .button__item:hover {
  opacity: 0.8;
}
.p-jobs-swiper .button__item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.p-jobs-swiper .button__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.4375rem;
  background-color: #666;
}
.p-jobs-swiper .button__item.button-prev::before {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.p-jobs-swiper .button__item.button-next::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/********************************
* 共通項目
********************************/
.page-charm__dec-line {
  display: flex;
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  .page-charm__dec-line {
    margin-top: 4.375rem;
  }
}

@media (min-width: 1200px) {
  .page-charm__dec-line--sub {
    margin-top: 6.25rem;
  }
}

.line-blue {
  width: 33.4%;
  height: 0.0625rem;
  background-color: var(--color-blue);
}

.line-gray {
  width: 66.6%;
  height: 0.0625rem;
  background-color: var(--color-light-gray);
}

/********************************
* page-header
********************************/
.page-header__charm {
  background-color: var(--color-white);
}

.page-header__charm-inner {
  max-width: 78rem;
  width: 100%;
  margin: -1rem auto 0;
  padding-bottom: 1.375rem;
}
@media (min-width: 1200px) {
  .page-header__charm-inner {
    max-width: 77.5rem;
    margin: 1.375rem auto 0;
    padding-bottom: 0;
  }
}

.page-header__charm-title {
  letter-spacing: 1.4px;
}
@media (min-width: 1200px) {
  .page-header__charm-title {
    padding-bottom: 3.8125rem;
  }
}

/********************************
* fv-area
********************************/
.page-charm-fv {
  margin-bottom: 1.5rem;
}

.page-charm-fv__container {
  margin: 0 auto;
  padding-bottom: 3rem;
}
@media (min-width: 600px) {
  .page-charm-fv__container {
    max-width: 43.75rem;
  }
}
@media (min-width: 1200px) {
  .page-charm-fv__container {
    max-width: 77.5rem;
    margin: 0 auto 2.5rem;
    padding-bottom: 4.875rem;
  }
}

.page-charm-fv__img-wrap {
  max-width: 43.75rem;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .page-charm-fv__img-wrap {
    max-width: 77.5rem;
    padding: 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .page-charm-fv__img-wrap {
    padding: 0 2.5rem;
  }
}

.page-charm-fv__text-wrap {
  padding: 0 2rem;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .page-charm-fv__text-wrap {
    max-width: 43.75rem;
  }
}
@media (min-width: 1200px) {
  .page-charm-fv__text-wrap {
    max-width: 65rem;
  }
}

.page-charm-fv__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5625rem;
}
@media (min-width: 1200px) {
  .page-charm-fv__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.page-charm-fv__text {
  line-height: 1.55;
  font-size: 0.8125rem;
}
@media (min-width: 1200px) {
  .page-charm-fv__text {
    line-height: 2;
    font-size: 0.8125rem;
  }
}

/********************************
* content-area
********************************/
.page-charm-content {
  margin: 0 auto 2.375rem;
  padding: 0 2rem;
  /* 最後の section 以外に margin-bottom（section 同士が兄弟のためこちらで指定） */
}
@media (min-width: 600px) {
  .page-charm-content {
    max-width: 43.75rem;
  }
}
@media (min-width: 1200px) {
  .page-charm-content {
    max-width: 65rem;
    padding: 0 2.5rem;
  }
}
@media (min-width: 1200px) {
  .page-charm-content:not(:last-child) {
    margin: 0 auto 3.125rem;
  }
}

.page-charm-content--bottom {
  margin-bottom: 5.1875rem;
}
@media (min-width: 600px) {
  .page-charm-content--bottom {
    margin-bottom: min(26.953125vw, 12.9375rem);
  }
}
@media (min-width: 1200px) {
  .page-charm-content--bottom {
    margin-bottom: 17.25rem;
  }
}

.page-charm-content__inner {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.page-charm-content__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-black);
  margin-bottom: 1.8125rem;
}
@media (min-width: 1200px) {
  .page-charm-content__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.page-charm-content__top-wrap {
  margin-bottom: 2.3125rem;
}
@media (min-width: 1200px) {
  .page-charm-content__top-wrap {
    margin-bottom: 2rem;
  }
}

.page-charm-content__bottom-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .page-charm-content__bottom-wrap {
    gap: 2.375rem;
    flex-direction: row;
  }
}

.page-charm-content__img-large {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .page-charm-content__img-large {
    margin-bottom: 2rem;
  }
}

.page-charm figcaption {
  font-size: 0.6875rem;
  padding-block-start: 0.5rem;
  text-align: right;
}

.page-charm-content__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-charm-content__text {
  width: 100%;
}

.page-charm-content__text p {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-black);
  text-align: justify;
}
@media (min-width: 1200px) {
  .page-charm-content__text p {
    font-size: 1rem;
    line-height: 2;
  }
}

/********************************
* jobs-list
* レイアウト・カードは c-jobs-list コンポーネントで当たる
********************************/
.page-jobs-list {
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-block-end: 7.9375rem;
}
@media (min-width: 768px) {
  .page-jobs-list {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .page-jobs-list {
    margin-block-end: 23.25rem;
  }
}

@media (min-width: 1200px) {
  .p-jobs-list-header {
    padding-block-end: 2.5625rem;
  }
}

@media (min-width: 1200px) {
  .p-jobs-list__inner {
    max-width: 77.75rem;
    padding-block-start: 1.5625rem;
  }
}

.p-jobs-list__title {
  margin-block-start: -1rem;
  padding-block-end: 2.375rem;
}
@media (min-width: 1200px) {
  .p-jobs-list__title {
    margin-block-start: 0;
    padding-block-end: 0;
  }
}

.page-header--jimu {
  margin-block-start: -1rem;
  padding-block-end: 1.4rem;
}
@media (min-width: 768px) {
  .page-header--jimu {
    margin-block-start: 1.3125rem;
  }
}

@media (min-width: 1200px) {
  .page-header--jimu .page-header__inner {
    max-width: 77.5rem;
    padding-block-end: 2rem;
  }
}

.page-header--jimu-title {
  row-gap: 0.3125rem;
}

.tech-br {
  display: none;
}
@media (min-width: 600px) {
  .tech-br {
    display: block;
  }
}
@media (min-width: 1200px) {
  .tech-br {
    display: none;
  }
}

/********************************
* career-step
********************************/
.p-cr-step {
  max-width: 20.125rem;
  margin-inline: auto;
  margin-block-end: 4.5625rem;
}
@media (min-width: 400px) {
  .p-cr-step {
    max-width: 37.5rem;
    padding-inline: 1.25rem;
  }
}
@media (min-width: 600px) {
  .p-cr-step {
    padding-block-start: min(4.1666666667vw, 2rem);
    margin-block-end: min(13.1510416667vw, 6.3125rem);
  }
}
@media (min-width: 768px) {
  .p-cr-step {
    margin-block-end: min(19.2708333333vw, 9.25rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step {
    max-width: 63.25rem;
    padding-block-start: 3.5rem;
    margin-block-end: 10.75rem;
  }
}

.p-cr-step__container {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (min-width: 1200px) {
  .p-cr-step__container {
    gap: 2.5rem;
  }
}

.p-cr-step__image-wrap {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-block-end: 2.9375rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox: ネイティブスクロールバー非表示 */
  -ms-overflow-style: none;
}
.p-cr-step__image-wrap::-webkit-scrollbar {
  display: none; /* Chrome: ネイティブスクロールバー非表示 */
}
@media (min-width: 600px) {
  .p-cr-step__image-wrap {
    max-width: 45rem;
    margin-inline: auto;
    overflow-x: visible;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .p-cr-step__image-wrap {
    max-width: 70rem;
  }
}

/* 別要素のプログレスバー（スクロールに応じて #14aec6 で埋まる） */
.p-cr-step__image-wrap-progress {
  height: 0.0625rem;
  margin-inline: 1.25rem;
  margin-block-end: 2.3125rem;
  background-color: #e2e2e2;
  border-radius: 62.4375rem;
  overflow: hidden;
}
@media (min-width: 570px) {
  .p-cr-step__image-wrap-progress {
    display: none;
  }
}

.p-cr-step__image-wrap-progress__fill {
  display: block;
  height: 100%;
  width: 0%;
  background-color: var(--color-cyaan);
  border-radius: 62.4375rem;
  transition: width 0.1s ease-out;
}

.p-cr-step__image {
  width: 535px;
}
@media (min-width: 570px) {
  .p-cr-step__image {
    width: 100%;
  }
}
.p-cr-step__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-cr-step__text-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.p-cr-step__text-item {
  position: relative;
  padding-left: 1em;
}
@media (min-width: 768px) {
  .p-cr-step__text-item {
    padding-left: 1.1em;
  }
}
.p-cr-step__text-item::before {
  content: "●";
  position: absolute;
  left: 0.5em;
  top: 0.25em;
  color: #6fb8b6;
  font-size: 0.6em;
}
@media (min-width: 768px) {
  .p-cr-step__text-item::before {
    left: 0.1em;
    top: 0.25em;
    font-size: 0.9em;
  }
}

.p-cr-step__text-body {
  margin: 0;
  line-height: 1.8;
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  .p-cr-step__text-body {
    font-size: 0.8125rem;
    line-height: 2;
  }
}

.p-cr-step__text-nested-list {
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  .p-cr-step__text-nested-list {
    font-size: 0.8125rem;
  }
}

.p-cr-step__text-nested-item {
  line-height: 1.8;
}

/********************************
* profile
********************************/
.p-cr-step-prof {
  margin-block-end: 3.125rem;
}
@media (min-width: 600px) {
  .p-cr-step-prof {
    max-width: 45rem;
    margin-inline: auto;
    margin-block-end: min(13.1510416667vw, 6.3125rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-prof {
    max-width: 72rem;
    margin-block-end: 14rem;
  }
}

.p-cr-step-prof__inner {
  margin-inline: 0.9375rem;
  background-color: var(--color-blue);
}
@media (min-width: 600px) {
  .p-cr-step-prof__inner {
    margin-inline: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-prof__inner {
    margin-inline: auto;
  }
}

.p-cr-step-prof__container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  grid-template-areas: "img-area details-area" "biography-area biography-area";
  position: relative;
}
@media (min-width: 768px) {
  .p-cr-step-prof__container {
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "img-area details-area" "img-area biography-area";
  }
}

.p-cr-step-prof__img-area {
  grid-area: img-area;
  aspect-ratio: 109/165;
  width: 6.8125rem;
  position: absolute;
  top: -1.1875rem;
  left: 1.25rem;
}
@media (min-width: 600px) {
  .p-cr-step-prof__img-area {
    left: calc(50vw - 17rem);
  }
}
@media (min-width: 768px) {
  .p-cr-step-prof__img-area {
    width: min(22.65625vw, 10.875rem);
    top: -2.1875rem;
    left: min(2.0833333333vw, 1rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-prof__img-area {
    width: 13rem;
    top: -2.1875rem;
    left: 5.125rem;
  }
}

@media (min-width: 600px) {
  .p-cr-step-prof__img-area--tech {
    left: calc(50vw - 17rem);
  }
}
@media (min-width: 768px) {
  .p-cr-step-prof__img-area--tech {
    width: min(22.65625vw, 10.875rem);
    top: -2.1875rem;
    left: min(2.0833333333vw, 1rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-prof__img-area--tech {
    width: 15rem;
    top: -6.1875rem;
    left: 5.125rem;
  }
}

.p-cr-step-prof__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-cr-step-prof__details-area {
  grid-area: details-area;
  padding: 4.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media (min-width: 1200px) {
  .p-cr-step-prof__details-area {
    padding: 4.75rem 2.5rem 0;
    justify-content: center;
    gap: 3rem;
  }
}

.p-cr-step-prof__label,
.p-cr-step-prof__org-item {
  font-size: 0.6875rem;
}
@media (min-width: 1200px) {
  .p-cr-step-prof__label,
  .p-cr-step-prof__org-item {
    font-size: 0.875rem;
  }
}

.p-cr-step-prof__label {
  display: inline-block;
  background-color: var(--color-white);
  border-radius: 3.125rem;
  padding: 0.5rem;
  color: var(--color-cyaan);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.625rem;
}

.p-cr-step-prof__organization {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 0.5rem;
}

.p-cr-step-prof__org-item {
  color: #333;
  line-height: 1.6;
}

.p-cr-step-prof__heading {
  margin: 0;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
@media (min-width: 600px) {
  .p-cr-step-prof__heading {
    font-size: min(2.6041666667vw, 1.25rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-prof__heading {
    font-size: 1.6875rem;
    padding-left: 0.5rem;
  }
}

.p-cr-step-prof__heading-line {
  display: block;
}
@media (min-width: 500px) {
  .p-cr-step-prof__heading-line .br {
    display: none;
  }
}

.p-cr-step-prof__biography-area {
  grid-area: biography-area;
  padding: 6rem 1.25rem 3.1875rem;
}
@media (min-width: 500px) {
  .p-cr-step-prof__biography-area {
    padding: 8rem 1.25rem 3.1875rem;
  }
}
@media (min-width: 768px) {
  .p-cr-step-prof__biography-area {
    padding: 2.875rem 2.875rem 2.875rem 0;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-prof__biography-area {
    padding: 1.75rem 6rem 5.5rem 3rem;
  }
}

.p-cr-step-prof__biography-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 2;
  color: #333;
}
@media (min-width: 768px) {
  .p-cr-step-prof__biography-text {
    font-size: 0.9375rem;
  }
}

/********************************
* my career
********************************/
.p-cr-step-mycr {
  padding-left: 1rem;
}
@media (min-width: 600px) {
  .p-cr-step-mycr {
    max-width: 45rem;
    margin-inline: auto;
    margin-block-end: min(20.8333333333vw, 10rem);
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-mycr {
    max-width: 72.6875rem;
    margin-block-end: 14.6875rem;
  }
}
@media (min-width: 1501px) {
  .p-cr-step-mycr {
    margin-inline: auto;
  }
}

.p-cr-step-mycr__ttl {
  margin-block-end: -0.375rem;
}
@media (min-width: 1200px) {
  .p-cr-step-mycr__ttl {
    margin-block-end: -0.625rem;
  }
}

.p-cr-step-mycr__ttl-txt {
  font-size: 1.5rem;
}
@media (min-width: 600px) {
  .p-cr-step-mycr__ttl-txt {
    font-size: clamp(1.5rem, 3.90625vw, 1.875rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-mycr__ttl-txt {
    font-size: 2.5rem;
    margin-inline-start: -1.1875rem;
  }
}

.p-cr-step-mycr__image-wrap {
  width: 100%;
  margin-inline: auto;
  padding-block-end: 2.0625rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.p-cr-step-mycr__image-wrap::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1200px) {
  .p-cr-step-mycr__image-wrap {
    overflow-x: visible;
    padding-bottom: 0;
    margin-inline-start: 1.5rem;
  }
}
@media (min-width: 1501px) {
  .p-cr-step-mycr__image-wrap {
    margin-inline: auto;
  }
}

/* 別要素のプログレスバー（スクロールに応じて #14aec6 で埋まる） */
.p-cr-step-mycr__image-wrap-progress {
  height: 0.0625rem;
  margin-inline: 1.25rem;
  background-color: #e2e2e2;
  border-radius: 62.4375rem;
  overflow: hidden;
}
@media (min-width: 570px) {
  .p-cr-step-mycr__image-wrap-progress {
    display: none;
  }
}

.p-cr-step-mycr__image-wrap-progress__fill {
  display: block;
  height: 100%;
  width: 0%;
  background-color: var(--color-cyaan);
  border-radius: 62.4375rem;
  transition: width 0.1s ease-out;
}

.p-cr-step-mycr__image {
  width: 570px;
}
@media (min-width: 570px) {
  .p-cr-step-mycr__image {
    width: 100%;
  }
}
.p-cr-step-mycr__image img {
  width: 100%;
  height: auto;
  display: block;
}

/********************************
* 詳細
********************************/
.p-cr-step-detail {
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-block: 5.875rem 3.125rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-cr-step-detail {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 600px) {
  .p-cr-step-detail {
    max-width: 45rem;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-detail {
    max-width: 79.625rem;
    margin-block: 1.875rem 7.25rem;
  }
}

.p-cr-step-detail__container {
  display: flex;
  flex-direction: column;
  gap: 2.5625rem;
}
@media (min-width: 600px) {
  .p-cr-step-detail__container {
    gap: min(10.4166666667vw, 5rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-detail__container {
    gap: 9.5rem;
  }
}

.p-cr-step-detail__item {
  display: flex;
  gap: 3.6875rem;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .p-cr-step-detail__item {
    align-items: flex-start;
    justify-content: space-between;
    gap: 3.6875rem;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-detail__item {
    flex-direction: row;
    gap: 3.6875rem;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-detail__item:nth-child(3 of .p-cr-step-detail__item) {
    margin-block-start: 1.5625rem;
    gap: 2rem;
  }
}

.p-cr-step-detail__item--reverse {
  flex-direction: column;
}
@media (min-width: 1200px) {
  .p-cr-step-detail__item--reverse {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1200px) {
  .p-cr-step-detail__item--reverse .p-cr-step-detail__img-area {
    margin-inline-end: 4.1875rem;
  }
}

.p-cr-step-detail__img-area {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .p-cr-step-detail__img-area {
    width: 47%;
  }
}

.p-cr-step-detail__img--out {
  aspect-ratio: 355/315;
  margin-left: calc((50vw - 50%) * -1);
}
@media (min-width: 1200px) {
  .p-cr-step-detail__img--out {
    margin-left: calc((50vw - 100%) * -1);
  }
}
.p-cr-step-detail__img--out img {
  width: 100%;
  height: 100%;
}

.p-cr-step-detail__img-wrap {
  aspect-ratio: 320/297;
  padding-inline: 0.4375rem;
}
@media (min-width: 768px) {
  .p-cr-step-detail__img-wrap {
    aspect-ratio: 320/297;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-detail__img-wrap {
    padding-inline: 0;
  }
}

.p-cr-step-detail__img--max {
  margin-inline: calc((100vw - 100%) * -1);
  max-height: 21.75rem;
  overflow: hidden;
}
@media (min-width: 500px) {
  .p-cr-step-detail__img--max {
    margin-inline: auto;
    max-height: 100%;
  }
}
.p-cr-step-detail__img--max img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1200px) {
  .p-cr-step-detail__item:first-child .p-cr-step-detail__img-area {
    width: 47.5%;
  }
}

@media (min-width: 1200px) {
  .p-cr-step-detail__item:first-child .p-cr-step-detail__text-area {
    margin-inline-end: 3rem;
  }
}

@media (min-width: 1200px) {
  .p-cr-step-detail__item:nth-of-type(3) .p-cr-step-detail__img-area {
    margin-inline-start: 1rem;
  }
}

.p-cr-step-detail__text-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-inline: 0.8125rem;
}
@media (min-width: 1200px) {
  .p-cr-step-detail__text-area {
    width: 32.4375rem;
    gap: 2rem;
  }
}

.p-cr-step-detail__heading {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .p-cr-step-detail__heading {
    font-size: clamp(1.25rem, 3.125vw, 1.5rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-detail__heading {
    font-size: 1.75rem;
    gap: 0.1875rem;
  }
}

.p-cr-step-detail__heading-line {
  display: block;
}

.p-cr-step-detail__text-area--mg {
  margin-block-start: -1.3125rem;
  padding-block-end: 1rem;
}
@media (min-width: 768px) {
  .p-cr-step-detail__text-area--mg {
    margin-block-start: 0;
  }
}

.p-cr-step-detail__text-area--mg-bottom {
  margin-block-start: -1rem;
}
@media (min-width: 768px) {
  .p-cr-step-detail__text-area--mg-bottom {
    margin-block-start: 0;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-detail__text-area--mg-bottom {
    margin-inline-end: 3rem;
  }
}

.p-cr-step-detail__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 2;
  color: var(--color-black);
}
@media (min-width: 1200px) {
  .p-cr-step-detail__text {
    font-size: 0.9375rem;
  }
}

/********************************
* 好きな言葉
********************************/
.p-cr-step-like {
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-block-end: 3.125rem;
  margin-inline: auto;
  max-width: 45rem;
}
@media (min-width: 768px) {
  .p-cr-step-like {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 600px) {
  .p-cr-step-like {
    margin-block-end: min(16.9270833333vw, 8.125rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-like {
    max-width: 65.375rem;
    margin-block-end: 16rem;
  }
}

.p-cr-step-like__container {
  display: flex;
  flex-direction: row;
  padding: 0 0.75rem;
}
@media (min-width: 1200px) {
  .p-cr-step-like__container {
    align-items: flex-start;
    gap: 0;
  }
}

.p-cr-step-like__inner {
  margin-block-end: 2.875rem;
}
@media (min-width: 600px) {
  .p-cr-step-like__inner {
    margin-block-end: min(7.8125vw, 3.75rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-like__inner {
    margin-block-end: 6.875rem;
  }
}

.p-cr-step-like__text-wrap {
  position: relative;
  border: 1px solid #ddd;
  padding: 1.8125rem 0.5625rem;
  margin-right: 0.875rem;
  align-self: flex-start;
}
@media (min-width: 1200px) {
  .p-cr-step-like__text-wrap {
    max-width: 74.5%;
    margin-block-start: 7rem;
    padding: 4rem 5rem;
    display: flex;
    align-items: stretch;
    padding-right: 0;
  }
}

.p-cr-step-like__text-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1200px) {
  .p-cr-step-like__text-content {
    flex: 1;
    padding-right: 2rem;
    gap: 0.875rem;
  }
}
.p-cr-step-like__text-content .ttl-wrap {
  margin-inline-start: 0.5625rem;
}
@media (min-width: 1200px) {
  .p-cr-step-like__text-content .ttl-wrap {
    margin-block-start: -0.75rem;
    margin-block-end: 0.75rem;
    padding-inline-start: 0.5rem;
  }
}

.p-cr-step-like__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #000;
  margin-block-end: 0.6875rem;
}
@media (min-width: 1200px) {
  .p-cr-step-like__title {
    font-size: 1.125rem;
    margin-block-end: 1.6875rem;
  }
}

.p-cr-step-like__phrase {
  position: relative;
  margin: 0;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  letter-spacing: -0.05rem;
  padding-bottom: 0.125rem;
  display: inline-block;
  margin-inline-start: -0.1875rem;
  /* 添付画像2：淡い水色のブロック状アンダーライン（テキスト幅＋わずかにはみ出し） */
}
@media (min-width: 1200px) {
  .p-cr-step-like__phrase {
    font-size: 1.75rem;
  }
}
.p-cr-step-like__phrase::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.125rem;
  right: -0.125rem;
  height: 0.45em;
  background-color: #e0f2f7;
  z-index: -1;
}

.p-cr-step-like__desc {
  margin: 0;
  padding-inline: 0.5625rem;
  font-size: 0.75rem;
  line-height: 1.9;
  color: #333;
}
@media (min-width: 1200px) {
  .p-cr-step-like__desc {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

/* 好きな言葉：＞（四角に上・右だけborderをつけて45deg回転、画像の通り） */
.p-cr-step-like__arrow {
  display: block;
  position: relative;
  flex-shrink: 0;
  /* 20pxの四角、上と右だけborder、45deg回転で＞になる */
}
@media (min-width: 1200px) {
  .p-cr-step-like__arrow {
    width: 3rem;
    min-width: 3rem;
    height: 100%;
    min-height: 7.5rem;
    margin-left: -1px;
    background: transparent;
  }
}
.p-cr-step-like__arrow::before {
  content: "";
  position: absolute;
  background: #fff;
  background: #fff;
  border-right: 1px solid #ddd;
  border-left: none;
  border-bottom: none;
  box-sizing: border-box;
  top: calc(50vw - 23.3125rem);
  right: -20px;
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(45deg);
}
@media (min-width: 400px) {
  .p-cr-step-like__arrow::before {
    top: -9.3125rem;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-like__arrow::before {
    top: 50%;
    right: -20%;
    margin-top: -0.625rem;
  }
}

.p-cr-step-like__img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 4.5rem 0.6875rem 0 0;
  width: 100%;
}
@media (min-width: 400px) {
  .p-cr-step-like__img-wrap {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .p-cr-step-like__img-wrap {
    width: 50%;
    margin: 2.6875rem 0.5625rem 0 3.0625rem;
  }
}

.p-cr-step-like__img {
  aspect-ratio: 72/250;
  width: 4.5rem;
}
@media (min-width: 400px) {
  .p-cr-step-like__img {
    margin-inline-start: min(5.2083333333vw, 2.5rem);
  }
}
@media (min-width: 1200px) {
  .p-cr-step-like__img {
    aspect-ratio: 145/500;
    width: 9.0625rem;
  }
}
.p-cr-step-like__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1200px) {
  .p-cr-step-like__btn-wrap {
    max-width: 56.25rem;
    gap: 0.5rem 1.5rem;
  }
}

.p-wlb .header {
  margin-bottom: 2.0625rem;
}
@media (min-width: 1200px) {
  .p-wlb .header {
    margin-bottom: 1.3125rem;
  }
}

@media (min-width: 1200px) {
  .p-wld-header__inner {
    max-width: 77.25rem;
  }
}

.page-header--wlb-ttl {
  gap: 0.25rem;
}

/********************************
* wlb
********************************/
.p-wlb-container {
  margin-block-end: 4.375rem;
}
@media (min-width: 600px) {
  .p-wlb-container {
    margin-block-end: min(13.28125vw, 6.375rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb-container {
    margin-block-end: 11.25rem;
  }
}

.p-wlb__ct-work,
.p-wlb__ct-life,
.p-wlb__ct-osusume {
  margin-inline: auto;
}
@media (min-width: 600px) {
  .p-wlb__ct-work,
  .p-wlb__ct-life,
  .p-wlb__ct-osusume {
    max-width: min(78.125vw, 37.5rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-work,
  .p-wlb__ct-life,
  .p-wlb__ct-osusume {
    max-width: 100%;
  }
}

.p-wlb__p-link-wrap {
  padding-top: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-block-start: 1.375rem;
  padding-block-end: 2.1875rem;
}
@media (min-width: 768px) {
  .p-wlb__p-link-wrap {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 600px) {
  .p-wlb__p-link-wrap {
    margin-block-start: min(7.8125vw, 3.75rem);
    padding-block-end: min(5.859375vw, 2.8125rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__p-link-wrap {
    margin-block-start: 3.5625rem;
    padding-block-end: 4.875rem;
  }
}

.p-wlb__content {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 50rem;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .p-wlb__content {
    gap: 2.5rem;
    max-width: 55rem;
  }
}

.p-wlb__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0.5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-btn-border, #e0e0e0);
  width: 9.375rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
@media (min-width: 375px) {
  .p-wlb__card {
    width: min(75.2vw, 17.625rem);
  }
}
@media (min-width: 600px) {
  .p-wlb__card {
    width: 25.6875rem;
    padding: min(2.0833333333vw, 1rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__card {
    width: 25.6875rem;
    gap: 1.75rem;
    padding: 2rem;
  }
}
.p-wlb__card:hover {
  opacity: 0.9;
}

.p-wlb__card-img-wrap {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 600px) {
  .p-wlb__card-img-wrap {
    width: min(7.2916666667vw, 3.5rem);
    height: min(7.2916666667vw, 3.5rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__card-img-wrap {
    width: 5.625rem;
    height: 5.625rem;
  }
}

.p-wlb__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-wlb__card-body {
  flex: 1;
  min-width: 0;
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  .p-wlb__card-body {
    font-size: 0.875rem;
  }
}

.p-wlb__card-ttl {
  font-weight: 700;
  margin-block-end: 0.5rem;
  letter-spacing: 0.05em;
}
@media (min-width: 1200px) {
  .p-wlb__card-ttl {
    margin-block-end: 0.75rem;
  }
}

.p-wlb__card-dept {
  line-height: 1.6;
}
.p-wlb__card-dept:last-of-type {
  margin-block-end: 0;
}

.p-wlb__btn-icon {
  display: none;
}
@media (min-width: 530px) {
  .p-wlb__btn-icon {
    display: block;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  .p-wlb__btn-icon {
    margin-block-start: auto;
    margin-block-end: -0.5rem;
    margin-inline-end: -0.5rem;
  }
}

/********************************
* 共通箇所
********************************/
.p-wlb__ct-work-ttl-wrap,
.p-wlb__ct-life-ttl-wrap {
  margin-inline: auto;
  text-align: center;
}

.p-wlb__ct-work-ttl-sub,
.p-wlb__ct-life-ttl-sub {
  display: block;
  margin-block-start: 0.875rem;
}

.p-wlb__ct-work-bottom-text,
.p-wlb__ct-life-bottom-text {
  font-size: 0.6875rem;
  line-height: 2;
  letter-spacing: 0.2px;
  margin-block-end: 1rem;
  color: var(--color-black);
}
.p-wlb__ct-work-bottom-text:last-child,
.p-wlb__ct-life-bottom-text:last-child {
  margin-block-end: 0;
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-bottom-text,
  .p-wlb__ct-life-bottom-text {
    font-size: 0.8125rem;
    margin-block-end: 1.25rem;
  }
}

.p-wlb__ct-work-bottom,
.p-wlb__ct-life-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
  margin-block-start: 2.75rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-bottom,
  .p-wlb__ct-life-bottom {
    justify-content: space-between;
  }
}

.p-wlb__ct-work-bottom-lead,
.p-wlb__ct-life-bottom-lead {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-black);
}
@media (min-width: 600px) {
  .p-wlb__ct-work-bottom-lead,
  .p-wlb__ct-life-bottom-lead {
    font-size: min(2.34375vw, 1.125rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-bottom-lead,
  .p-wlb__ct-life-bottom-lead {
    font-size: 1.625rem;
  }
}

.p-wlb__ct-osusume {
  margin-block-start: 5rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-osusume {
    margin-block-start: 8rem;
  }
}

.p-wlb__ct-osusume-container {
  padding-inline: 1rem;
}

.p-wlb__ct-osusume-top {
  max-width: 11.25rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
  background: var(--color-blue);
}
.p-wlb__ct-osusume-ttl {
  margin: 0;
  line-height: 1;
}
.p-wlb__ct-osusume-ttl img {
  display: inline-block;
  vertical-align: middle;
  height: 1.5rem;
  width: auto;
}

/* 薄青のコンテンツボックス・2カラム */
.p-wlb__ct-osusume-body {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  border: 1px solid var(--color-black);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-block-start: -0.25rem;
  padding-block: 3rem 2.25rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-osusume-body {
    max-width: 52.5625rem;
    margin-inline: auto;
    flex-direction: row;
    align-items: stretch;
    padding-block: 1rem;
  }
}

.p-wlb__ct-osusume-text {
  min-width: 0;
  padding-inline: 1rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-osusume-text {
    padding: 1.6875rem 0 2rem 3rem;
    width: 57.5505350773%;
  }
}

.p-wlb__ct-osusume-spot-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.4px;
  margin-block-end: 0.5rem;
  color: var(--color-black);
}
.p-wlb__ct-osusume-spot-ttl span {
  padding-inline-start: 0.5rem;
  font-size: 0.8125rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-osusume-spot-ttl span {
    font-size: 1rem;
  }
}
@media (min-width: 600px) {
  .p-wlb__ct-osusume-spot-ttl {
    font-size: min(2.8645833333vw, 1.375rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-osusume-spot-ttl {
    font-size: 1.625rem;
    margin-block-end: 1.25rem;
  }
}

.p-wlb__ct-osusume-desc {
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  margin: 0;
  color: var(--color-black);
  padding-inline-start: 0.8125rem;
}

.p-wlb__ct-osusume-img-wrap {
  aspect-ratio: 259/173;
  width: 16.1875rem;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .p-wlb__ct-osusume-img-wrap {
    aspect-ratio: 240/160;
    width: 15rem;
    padding-block: 1.5625rem;
    margin-inline-start: 2.25rem;
  }
}
.p-wlb__ct-osusume-img-wrap img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-wlb__ct-osusume-img-caption {
  margin-block-start: 0.5rem;
  font-size: 0.75rem;
  text-align: right;
}

.p-wlb__ct-osusume-img {
  aspect-ratio: 259/173;
  width: 16.1875rem;
}
.p-wlb__ct-osusume-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/********************************
* ct-body
********************************/
.p-wlb__ct-body {
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .p-wlb__ct-body {
    max-width: 75rem;
  }
}

.p-wlb__ct-item-wrap {
  background: var(--color-blue);
  padding-block: 4.25rem 3.375rem;
}
@media (min-width: 600px) {
  .p-wlb__ct-item-wrap {
    padding-block: min(8.8541666667vw, 4.25rem) min(7.03125vw, 3.375rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-item-wrap {
    padding-block: 4.25rem 9.0625rem;
  }
}
.p-wlb__ct-item-wrap:not(:last-child) {
  margin-block-end: 6.375rem;
}

.p-wld-ct-body-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding-block-end: 1rem;
}
@media (min-width: 1200px) {
  .p-wld-ct-body-ttl {
    font-size: 1.25rem;
    padding-block-end: 1.1875rem;
  }
}

.p-wlb__ct-ttl-wrap {
  width: 9rem;
  margin-inline: auto;
  text-align: center;
  border-bottom: 1px solid var(--color-black);
}
@media (min-width: 768px) {
  .p-wlb__ct-ttl-wrap {
    width: 10rem;
  }
}

.p-wlb__ct-main {
  position: relative;
  display: grid;
  grid-template-columns: 11.375rem minmax(13.0208333333vw, 5rem);
  grid-template-rows: auto auto;
  grid-template-areas: "message img" "dept img";
  gap: 1.5rem;
  padding: 2.5rem 1.25rem;
  margin-inline: auto;
  max-width: 35rem;
  min-height: 25rem;
  /* CASE 01 の背景テキスト（後ろに配置・折り返しなし） */
}
@media (min-width: 376px) {
  .p-wlb__ct-main {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .p-wlb__ct-main {
    grid-template-columns: 14.375rem 7rem;
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-main {
    grid-template-columns: 39rem 7rem;
    max-width: 53.25rem;
    gap: 2.5rem;
    padding: 3.75rem 2.5rem;
    min-height: 31.25rem;
  }
}
.p-wlb__ct-main::after {
  content: "CASE 01";
  font-family: "Red Hat Display", sans-serif;
  white-space: nowrap;
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 0;
  align-self: center;
  justify-self: center;
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  bottom: 2.875rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-main::after {
    font-size: 12rem;
    bottom: -1.875rem;
  }
}
.p-wlb__ct-main--dept2::after {
  content: "CASE 02";
}

.p-wlb__ct-main-block--message {
  grid-area: message;
  position: relative;
  z-index: 1;
  align-self: end;
  /* 吹き出しSVG（281×183）が切れないよう最小サイズを確保 */
  min-width: 11.3125rem;
  min-height: 10.625rem;
  box-sizing: border-box;
  font-weight: bold;
  /* 吹き出しSVGを擬似要素で背景に配置（containで全体表示） */
}
@media (min-width: 1200px) {
  .p-wlb__ct-main-block--message {
    min-width: 17.5rem;
    min-height: 11.4375rem;
    padding: 2rem 2.5rem;
  }
}
.p-wlb__ct-main-block--message::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -85px;
  z-index: -1;
  background-image: url("../img/wr/hukidashi.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .p-wlb__ct-main-block--message::before {
    top: -70px;
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-main-block--message::before {
    top: 0;
  }
}

.p-wlb__ct-main-block.p-wlb__ct-main-block--dept {
  grid-area: dept;
  position: absolute;
  bottom: 8.6875rem;
  left: 3rem;
  z-index: 1;
  align-self: start;
}
@media (min-width: 600px) {
  .p-wlb__ct-main-block.p-wlb__ct-main-block--dept {
    bottom: 130%;
  }
}
@media (min-width: 768px) {
  .p-wlb__ct-main-block.p-wlb__ct-main-block--dept {
    left: 3.25rem;
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-main-block.p-wlb__ct-main-block--dept {
    bottom: 4rem;
    left: 6.25rem;
  }
}

.p-wlb__ct-main-img-wrap {
  grid-area: img;
  position: relative;
  z-index: 1;
  align-self: center;
  aspect-ratio: 100/315;
  width: 6.25rem;
  height: auto;
  margin-block-start: 1.1875rem;
  margin-inline-start: -1.1875rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-main-img-wrap {
    aspect-ratio: 143/450;
    width: 8.9375rem;
    margin-block-start: 0;
    margin-inline-start: 0;
    position: absolute;
    left: -13.5rem;
    bottom: -4rem;
  }
}
.p-wlb__ct-main-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-wlb__ct-main-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .p-wlb__ct-main-img {
    max-width: 22.5rem;
  }
}

/* テキストブロック */
.p-wlb__ct-main-block {
  margin-inline-start: 0.5rem;
  margin-block-start: 3.6875rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-main-block {
    max-width: 20rem;
    padding: 1.5rem 0;
    margin-inline-start: 6rem;
    margin-block-start: -3.5rem;
  }
}

.p-wlb__ct-main-block-txt {
  font-size: 0.625rem;
  text-align: center;
  line-height: 1.6;
  color: var(--color-black);
}
@media (min-width: 600px) {
  .p-wlb__ct-main-block-txt {
    font-size: min(1.6927083333vw, 0.8125rem);
  }
}
.p-wlb__ct-main-block-txt:last-child {
  margin-block-end: 0;
}
@media (min-width: 1200px) {
  .p-wlb__ct-main-block-txt {
    font-size: 1rem;
  }
}

.p-wlb__ct-main-block--dept .p-wlb__ct-main-block-txt {
  font-weight: 500;
  text-align: left;
}
@media (min-width: 768px) {
  .p-wlb__ct-main-block--dept .p-wlb__ct-main-block-txt {
    font-size: 0.875rem;
  }
}

.p-wlb__ct-work-ttl {
  text-align: center;
  padding-block-end: 2.0625rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-ttl {
    padding-block-end: 2.6875rem;
  }
}

.p-wlb__ct-work-ttl-wrap {
  width: 6.75rem;
}
@media (min-width: 600px) {
  .p-wlb__ct-work-ttl-wrap {
    width: min(14.9739583333vw, 7.1875rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-ttl-wrap {
    width: 8.75rem;
  }
}

.p-wlb__ct-work-img-wrap {
  aspect-ratio: 340/260;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 600px) {
  .p-wlb__ct-work-img-wrap {
    width: min(78.125vw, 37.5rem);
  }
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-img-wrap {
    aspect-ratio: 960/510;
    width: 60rem;
  }
}
.p-wlb__ct-work-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-wlb__ct-work-container {
  margin-block: 1.375rem 7.375rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-container {
    margin-block: 4rem 9.375rem;
  }
}

.p-wlb__ct-work-top {
  margin-block-end: 2.75rem;
}

.p-wlb__ct-work-bottom {
  flex-direction: column-reverse;
}

.p-wlb__ct-work-bottom {
  margin-block-start: 1.5rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-bottom {
    max-width: 55.625rem;
    margin-inline: auto;
    flex-direction: row;
    margin-block-start: 7.5rem;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .p-wlb__ct-work-bottom--right {
    width: 51.2359550562%;
  }
}

.p-wlb__ct-work-bottom-content,
.p-wlb__ct-life-bottom-content {
  padding-inline: 1.1875rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-bottom-content,
  .p-wlb__ct-life-bottom-content {
    padding-inline: 0;
  }
}

.p-wlb__ct-work-bottom-img-wrap {
  aspect-ratio: 290/370;
  width: 18.125rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-bottom-img-wrap {
    aspect-ratio: 360/460;
    width: 22.5rem;
  }
}
.p-wlb__ct-work-bottom-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-wlb__ct-work-bottom-lead {
  margin-block-end: 1.6875rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-work-bottom-lead {
    margin-block-end: 1.5rem;
  }
}

.p-wlb__ct-life-ttl-wrap {
  width: 5.1875rem;
  margin-block-end: 2.1875rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-life-ttl-wrap {
    width: 6.125rem;
    margin-block-end: 2.375rem;
  }
}

@media (min-width: 1200px) {
  .p-wlb__ct-life-ttl-sub {
    margin-block-start: 1.75rem;
  }
}

.p-wlb__ct-life-img-wrap {
  aspect-ratio: 340/260;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .p-wlb__ct-life-img-wrap {
    aspect-ratio: 960/510;
    width: 60rem;
  }
}
.p-wlb__ct-life-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-wlb__ct-life-bottom {
  margin-block-start: 3rem;
  margin-inline: auto;
  flex-direction: column-reverse;
}
@media (min-width: 1200px) {
  .p-wlb__ct-life-bottom {
    max-width: 52.5rem;
    margin-block-start: 8.75rem;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}

@media (min-width: 1200px) {
  .p-wlb__ct-life-bottom-content {
    padding-block-start: 1.6875rem;
  }
}

@media (min-width: 1200px) {
  .p-wlb__ct-life-bottom--right {
    width: 51.1904761905%;
  }
}

.p-wlb__ct-life-bottom-lead {
  margin-block-end: 1.25rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-life-bottom-lead {
    margin-block-end: 2rem;
  }
}

.p-wlb__ct-life-bottom-img-wrap {
  aspect-ratio: 290/354;
  width: 18.125rem;
}
@media (min-width: 1200px) {
  .p-wlb__ct-life-bottom-img-wrap {
    aspect-ratio: 360/440;
    width: 22.5rem;
  }
}
.p-wlb__ct-life-bottom-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice-br {
  display: none;
}
@media (min-width: 600px) {
  .voice-br {
    display: block;
  }
}

.voice-icon {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .voice-icon {
    display: none;
  }
}

.p-survey-header__inner {
  margin-block-start: -1rem;
}
@media (min-width: 1200px) {
  .p-survey-header__inner {
    max-width: 77.25rem;
    margin-block-start: 1.5rem;
  }
}

.page-header--survey-ttl {
  padding-bottom: 2.25rem;
  gap: 0.375rem;
}
@media (min-width: 1200px) {
  .page-header--survey-ttl {
    padding-bottom: 4.6875rem;
    gap: 0;
  }
}

.p-survey-container {
  background: rgba(149, 210, 221, 0.2);
  padding-block-end: 4.8125rem;
  margin-block-end: 5rem;
}
@media (min-width: 1200px) {
  .p-survey-container {
    padding-block-end: 9.25rem;
    margin-block-end: 16.75rem;
  }
}

.p-survey__inner {
  max-width: 72.5rem;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .p-survey__inner {
    max-width: 50rem;
    padding-top: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media (min-width: 600px) and (min-width: 768px) {
  .p-survey__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .p-survey__inner {
    max-width: 77.5rem;
  }
}

/********************************
* 見出し　コンテンツ
********************************/
.p-survey__ttl-container {
  display: grid;
  grid-template-areas: "ttl ttl" "txt img";
  grid-template-columns: 12.5rem 1fr;
  position: relative;
  max-width: 25.9375rem;
  margin-inline: auto;
  padding-inline: 1.6875rem;
  padding-block: 2.25rem 5.25rem;
}
@media (min-width: 768px) {
  .p-survey__ttl-container {
    max-width: 77.5rem;
    grid-template-areas: "ttl img" "txt img";
    grid-template-columns: min(54.0364583333vw, 25.9375rem) 1fr;
    padding-block: 6rem 2.75rem;
  }
}
@media (min-width: 1200px) {
  .p-survey__ttl-container {
    grid-template-columns: 45.125rem 1fr;
    padding-inline: 0;
  }
}

.p-survey__subttl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-black);
  display: block;
  margin: 0;
  line-height: 1.4;
  margin-block-start: 1rem;
}
@media (min-width: 768px) {
  .p-survey__subttl {
    font-size: 1rem;
    margin-block-start: 0.9375rem;
  }
}

.p-survey__ttl-txt-wrap {
  grid-area: txt;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-black);
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .p-survey__ttl-txt-wrap {
    font-size: 0.875rem;
  }
}

.p-survey__ttl-text-lead {
  position: relative;
  line-height: 1.8;
}
@media (min-width: 600px) {
  .p-survey__ttl-text-lead {
    padding-inline-start: 1em;
  }
  .p-survey__ttl-text-lead::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0.875rem;
  }
}

.p-survey__ttl-wrap {
  grid-area: ttl;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  line-height: 1.4;
  padding-block-end: 3rem;
}
@media (min-width: 768px) {
  .p-survey__ttl-wrap {
    font-size: 2rem;
    padding-block-end: 0;
  }
}
@media (min-width: 1200px) {
  .p-survey__ttl-wrap {
    font-size: 2.5rem;
    margin-block-end: 3.5rem;
  }
}

.p-survey__ttl-img-wrap {
  grid-area: img;
  aspect-ratio: 111/169;
  width: 6.9375rem;
  position: absolute;
  top: -2.9375rem;
  right: -0.3125rem;
}
@media (min-width: 600px) {
  .p-survey__ttl-img-wrap {
    aspect-ratio: 264/387;
    width: min(20.8333333333vw, 10rem);
    top: -20%;
    right: -18%;
  }
}
@media (min-width: 1200px) {
  .p-survey__ttl-img-wrap {
    width: 16.5rem;
    top: -7.875rem;
    right: 5.75rem;
  }
}
@media (min-width: 1200px) {
  .p-survey__ttl-img-wrap img {
    justify-self: start;
  }
}

.p-survey__img-row-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .p-survey__img-row-sec {
    flex-direction: row;
  }
}

.p-survey__img-row-sec-item,
.p-survey__img-single-sec-item {
  position: relative;
  /* インライン余白を消す（picture / img のデフォルトは inline のためベースライン隙間が出る） */
}
.p-survey__img-row-sec-item picture,
.p-survey__img-row-sec-item img,
.p-survey__img-single-sec-item picture,
.p-survey__img-single-sec-item img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.p-survey__img-ttl-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5625rem;
  height: 1.5625rem;
  background: var(--color-light-blue);
  color: var(--color-white);
  margin-inline-end: 0.5625rem;
  font-size: 0.625rem;
}
@media (min-width: 600px) {
  .p-survey__img-ttl-num {
    font-size: min(1.5625vw, 0.75rem);
  }
}
@media (min-width: 768px) {
  .p-survey__img-ttl-num {
    margin-inline-end: 0.5625rem;
  }
}
@media (min-width: 1200px) {
  .p-survey__img-ttl-num {
    width: 2.5rem;
    height: 2.5rem;
    margin-inline-end: 1rem;
    font-size: 1rem;
  }
}

.p-survey__img-ttl {
  position: absolute;
  top: 1.1875rem;
  left: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-survey__img-ttl {
    top: 1.875rem;
    left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .p-survey__img-ttl {
    top: 1.875rem;
    left: 1.875rem;
    font-size: 1.5rem;
  }
}

.p-survey__img-ttl-sub {
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--color-black);
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .p-survey__img-ttl-sub {
    font-size: 1rem;
  }
}

.p-survey__img-ttl--saiyou {
  display: flex;
  flex-direction: row;
}

.p-survey__img-ttl-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.375rem;
}
@media (min-width: 600px) {
  .p-survey__img-ttl-text-wrap {
    align-items: center;
    flex-direction: row;
  }
}

.p-survey__img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block-end: 4.5625rem;
}
@media (min-width: 600px) {
  .p-survey__img-container {
    gap: min(3.2552083333vw, 1.5625rem);
  }
}
@media (min-width: 1200px) {
  .p-survey__img-container {
    gap: 2.5rem;
  }
}

.p-survey__img-row-sec {
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .p-survey__img-row-sec {
    gap: min(3.2552083333vw, 1.5625rem);
  }
}
@media (min-width: 1200px) {
  .p-survey__img-row-sec {
    gap: 2.5rem;
  }
}

.p-survey__img-row-sec-item {
  aspect-ratio: 560/540;
  width: 100%;
  height: auto;
}

/********************************
* ボタンセクション（.top-voice__btn の見た目を利用）
********************************/
.p-survey__btn-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  max-width: 20rem;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .p-survey__btn-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
    max-width: 52.5rem;
    /* 3つ目を中央に1つだけ表示 */
  }
  .p-survey__btn-container a:nth-child(3) {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 50%;
  }
}

/********************************
* 全体共通
********************************/
.p-rec-header__inner {
  max-width: 77.5rem;
}

.p-rec-container,
.p-rec-sendai-data,
.p-rec-sendai-data__text-wrap--blue {
  background-color: #eaf6f8;
}

.p-rec-container,
.p-rec-sendai-data,
.p-rec-sendai-data__text-wrap {
  padding-inline: 1.6875rem;
}
@media (min-width: 768px) {
  .p-rec-container,
  .p-rec-sendai-data,
  .p-rec-sendai-data__text-wrap {
    padding-inline: 3rem;
  }
}
@media (min-width: 1200px) {
  .p-rec-container,
  .p-rec-sendai-data,
  .p-rec-sendai-data__text-wrap {
    padding-inline: 4rem;
  }
}

.p-rec-sendai-data__text-wrap {
  margin-block-end: 3.125rem;
}
@media (min-width: 600px) {
  .p-rec-sendai-data__text-wrap {
    margin-block-end: min(9.375vw, 4.5rem);
  }
}
@media (min-width: 1200px) {
  .p-rec-sendai-data__text-wrap {
    margin-block-end: 8.75rem;
  }
}

.p-rec-container__inner {
  max-width: 31.25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-rec-container__inner {
    max-width: 37.5rem;
  }
}
@media (min-width: 1200px) {
  .p-rec-container__inner {
    max-width: 72.5rem;
  }
}

.p-rec__dec-line {
  display: flex;
}

.p-rec .line-gray {
  width: 100%;
}
.p-rec .p-rec__ttl-wrap--table .grid-border .p-rec__dec-line {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.p-rec .p-rec__ttl-wrap--table .grid-border .p-rec__dec-line .line-blue,
.p-rec .p-rec__ttl-wrap--table .grid-border .p-rec__dec-line .line-gray {
  flex-shrink: 0;
}
.p-rec .p-rec__ttl-wrap--table .grid-border .p-rec__dec-line .line-gray {
  width: 66.6%;
}

.p-rec-conditions--white .p-rec-conditions__dt {
  border-bottom: none;
}
@media (min-width: 1200px) {
  .p-rec-conditions--white .p-rec-conditions__dt {
    border-bottom: 1px solid var(--color-white);
  }
}

/********************************
* 見出し
********************************/
.p-rec-container {
  padding-block-end: 5rem;
}
@media (min-width: 1200px) {
  .p-rec-container {
    padding-block-end: 5.25rem;
  }
}

.page-header--rec {
  margin-block-end: 3.25rem;
}
@media (min-width: 1200px) {
  .page-header--rec {
    margin-block-end: 3.5rem;
  }
}

.p-rec-header__inner {
  margin-block-start: -1rem;
}
@media (min-width: 1200px) {
  .p-rec-header__inner {
    margin-block-start: 1.25rem;
  }
}
.p-rec-header__inner .c-page-header__text-sub {
  margin-block-start: 0.5rem;
}

.p-rec__ttl-wrap--table {
  display: grid;
  grid-template-areas: "title" "border" "text";
  grid-template-columns: 1fr;
}
@media (min-width: 1200px) {
  .p-rec__ttl-wrap--table {
    grid-template-areas: "title text" "border border";
    grid-template-columns: 1fr;
    align-items: baseline;
  }
}
.p-rec__ttl-wrap--table .grid-title {
  grid-area: title;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-black);
  padding-block-end: 1.25rem;
}
.p-rec__ttl-wrap--table .grid-text {
  grid-area: text;
  font-size: 0.6875rem;
  font-weight: normal;
  letter-spacing: -0.9px;
  color: var(--color-black);
  padding-block-end: 2.25rem;
}
@media (min-width: 600px) {
  .p-rec__ttl-wrap--table .grid-text {
    font-size: min(1.6927083333vw, 0.8125rem);
  }
}
@media (min-width: 1200px) {
  .p-rec__ttl-wrap--table .grid-text {
    padding-block-end: 0;
  }
}
.p-rec__ttl-wrap--table .grid-border {
  padding-block-end: 1.5rem;
  padding-inline: 0;
  min-width: 0;
}
@media (min-width: 1200px) {
  .p-rec__ttl-wrap--table .grid-border {
    padding-block-end: 2rem;
  }
}

.p-rec__main-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-black);
  line-height: 1.4;
  padding-block: 2.5rem 6.1875rem;
}
@media (min-width: 600px) {
  .p-rec__main-ttl {
    font-size: min(3.90625vw, 1.875rem);
  }
}
@media (min-width: 1200px) {
  .p-rec__main-ttl {
    font-size: 2.5rem;
    padding-block: 6rem 4.75rem;
  }
}
.p-rec__main-ttl span {
  font-size: 0.875rem;
  color: var(--color-black);
}
@media (min-width: 768px) {
  .p-rec__main-ttl span {
    font-size: 1rem;
  }
}

.p-rec__ttl-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: bold;
  margin-block-end: 1.375rem;
}
@media (min-width: 600px) {
  .p-rec__ttl-item {
    font-size: min(2.6041666667vw, 1.25rem);
  }
}
@media (min-width: 768px) {
  .p-rec__ttl-item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.625rem;
  }
}
@media (min-width: 768px) {
  .p-rec__ttl-item {
    font-size: 1.5rem;
    margin-block-end: 1.25rem;
  }
}

.p-rec-table {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .p-rec-table {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.p-rec-table__col {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .p-rec-table__col {
    flex: 1 1 0;
    min-width: 0;
  }
}

.p-rec-table__section {
  margin-block-end: 1.25rem;
}
.p-rec-table__section--mayor {
  --section-color: #00b8ee;
}
.p-rec-table__section--council {
  --section-color: #c3d72c;
}
.p-rec-table__section--ward {
  --section-color: #5fc0c6;
}
.p-rec-table__section--fire {
  --section-color: #ec6d81;
}
.p-rec-table__section--enterprise {
  --section-color: #b979b0;
}
.p-rec-table__section--admin {
  --section-color: #f7b52c;
}

.p-rec-table__section--admin dl dt {
  margin-block-end: 0.5rem;
}
.p-rec-table__section--admin dl dt:last-child {
  margin-block-end: 0;
}

.p-rec-table__section-header {
  background-color: var(--section-color);
  color: #fff;
  font-weight: bold;
  padding: 0.625rem 0.9375rem;
  margin: 0;
  font-size: 1.1875rem;
  letter-spacing: 1.5px;
}
@media (min-width: 1200px) {
  .p-rec-table__section-header {
    font-size: 1.375rem;
  }
}

.p-rec-table__dl {
  padding: 0.9375rem 1.25rem;
  margin: 0;
  background-color: #fff;
}
.p-rec-table__dl dt {
  color: var(--section-color);
  font-weight: bold;
  text-decoration: underline;
  font-size: 1rem;
  margin-block-end: 0.0625rem;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .p-rec-table__dl dt {
    font-size: 1.1875rem;
  }
}
.p-rec-table__dl dt:last-child {
  margin-block-end: 0;
}
.p-rec-table__dl dd {
  padding: 0;
  font-size: 0.75rem;
  color: var(--color-black);
  margin-block-end: 0.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-rec-table__dl dd {
    font-size: 0.875rem;
  }
}

/********************************
* 採用データ
********************************/
.p-rec-sendai-data {
  padding-block-end: 3rem;
  margin-block-end: 3rem;
}
@media (min-width: 600px) {
  .p-rec-sendai-data {
    padding-block-end: min(9.375vw, 4.5rem);
    margin-block-end: min(9.375vw, 4.5rem);
  }
}
@media (min-width: 1200px) {
  .p-rec-sendai-data {
    padding-block-end: 10.75rem;
    margin-block-end: 8rem;
  }
}

.p-rec-sendai-data__img-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-block-start: 1.25rem;
}
@media (min-width: 768px) {
  .p-rec-sendai-data__img-item-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.75rem;
  }
}
.p-rec-sendai-data__img-item-wrap:first-child {
  margin-block-start: 1.25rem;
}

@media (min-width: 768px) {
  .p-rec-sendai-data__img-item-wrap:not(:first-child) {
    padding-block-start: 2.5rem;
  }
}

@media (min-width: 768px) {
  .p-rec-sendai-data__img-item--mt {
    margin-block-start: -3.5rem;
  }
}

/********************************
* 勤務条件
********************************/
.p-rec-conditions {
  margin-top: 2rem;
}

.p-rec-conditions__dl {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .p-rec-conditions__dl {
    grid-template-columns: 12.5rem 1fr;
  }
}

.p-rec-conditions__dt {
  margin: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--color-black);
  line-height: 1.4;
  padding-block-end: 0.5625rem;
}
@media (min-width: 1200px) {
  .p-rec-conditions__dt {
    font-size: 1.125rem;
    border-bottom: 1px solid var(--color-light-gray);
  }
}

.p-rec-conditions__dd {
  margin: 0;
  padding: 0 0 1.5625rem;
  margin-block-end: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: var(--color-black);
}
@media (min-width: 1200px) {
  .p-rec-conditions__dd {
    font-size: 0.9375rem;
    margin-block-end: 0;
  }
}

.p-rec-conditions__dd--shounin {
  padding-block-end: 0;
}
@media (min-width: 1200px) {
  .p-rec-conditions__dd--shounin {
    padding-block-end: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .p-rec-conditions__dt,
  .p-rec-conditions__dd {
    padding: 1.75rem 0;
  }
}

.p-rec-conditions__dl .p-rec-conditions__dd:not(:last-child) {
  border-bottom: 1px solid var(--color-light-gray);
}

.p-rec-conditions__dd--line {
  border-bottom: none !important;
}

.p-rec-conditions__dl .p-rec-conditions__dt:first-of-type {
  padding-top: 0;
}

@media (min-width: 768px) {
  .p-rec-conditions__dl .p-rec-conditions__dt:last-of-type,
  .p-rec-conditions__dl .p-rec-conditions__dd:last-of-type {
    border-bottom: none;
  }
}

.p-rec-conditions__dl .p-rec-conditions__dd:last-of-type {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .p-rec-conditions__dl .p-rec-conditions__dd:first-of-type {
    padding-top: 0;
  }
}

.p-rec-conditions__text {
  display: block;
  line-height: 1.5;
}

.p-rec-conditions__note {
  display: block;
}

.p-rec-conditions__lead {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-black);
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-rec-conditions__lead {
    font-size: 0.8125rem;
  }
}

.p-rec-conditions__sub-dl {
  margin: 0;
  padding: 0;
}

.p-rec-conditions__sub-dt {
  margin: 1rem 0 0;
  font-weight: bold;
  color: var(--color-black);
  font-size: 0.875rem;
}
.p-rec-conditions__sub-dt:first-child {
  margin-top: 0;
}

.p-rec-conditions__sub-dd {
  margin: 0.25rem 0 0;
  color: var(--color-black);
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-rec-conditions__img-wrap--pc {
  margin-block-start: -1.5rem !important;
  padding-block-end: 2.5rem !important;
  border-bottom: 1px solid var(--color-light-gray) !important;
}

.p-rec-conditions__img-wrap {
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .p-rec-conditions__img-wrap {
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
  }
}
@media (min-width: 1200px) {
  .p-rec-conditions__img-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.p-rec-conditions__img-wrap--sp {
  grid-template-columns: 1fr;
  place-content: center;
  gap: 0.5rem;
  padding-block-end: 2.5rem;
  margin-block-end: 0;
}
@media (min-width: 768px) {
  .p-rec-conditions__img-wrap--sp {
    display: none;
  }
}

.p-rec-conditions__dl > .p-rec-conditions__img-wrap--pc {
  display: none;
}
@media (min-width: 768px) {
  .p-rec-conditions__dl > .p-rec-conditions__img-wrap--pc {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-rec-conditions__dl > .p-rec-conditions__img-wrap--pc img {
    width: 100%;
    height: auto;
    min-width: 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (min-width: 1200px) {
  .p-rec-conditions__dl > .p-rec-conditions__img-wrap--pc {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/********************************
* 初任給ボックス（3つ）
********************************/
.p-rec-salary-boxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .p-rec-salary-boxes {
    flex-direction: row;
    gap: 1.25rem;
    justify-content: center;
  }
}

.p-rec-salary-boxes__item {
  background-color: var(--color-blue);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  text-align: center;
  color: var(--color-black);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-rec-salary-boxes__item {
    flex: 1 1 0;
    max-width: 17.5rem;
  }
}

.p-rec-salary-boxes__main {
  display: block;
  font-size: 1.125rem;
}

.p-rec-salary-boxes__note {
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--color-gray);
}

/********************************
* 研修制度テーブル
********************************/
.p-rec-conditions--training {
  margin-top: 2rem;
}

.p-rec-conditions__list {
  margin: 0.75rem 0 0;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.p-rec-conditions__list li {
  color: var(--color-black);
  line-height: 1.4;
}
.p-rec-conditions__list li::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-light-blue);
  border-radius: 50%;
  position: absolute;
  left: 0;
  margin-block-start: 0.3em;
}
.p-rec-conditions__list strong {
  display: inline-block;
  padding-block-end: 0.5rem;
}

/********************************
* 昇任（横スクロール・説明文・昇任制度）
********************************/
.p-rec-sendai-data__text-wrap--blue {
  padding-block: 3rem 3.75rem;
  margin-block-end: 5rem;
}
.p-rec-sendai-data__text-wrap--blue .p-rec-conditions__dl .p-rec-conditions__dd:not(:last-child) {
  border-bottom: 1px solid var(--color-white);
}
.p-rec-sendai-data__text-wrap--blue .p-rec-promotion__careerup {
  border-top: 1px solid var(--color-white);
}

.p-rec-promotion__subttl {
  margin: 0 0 0.75rem;
  font-weight: bold;
  color: var(--color-black);
}

.p-rec-promotion__flow-wrap-inner {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .p-rec-conditions__dl > .p-rec-promotion__flow-wrap {
    grid-column: 1/-1;
  }
}

.p-rec-conditions__dd.p-rec-promotion__flow-wrap {
  gap: 0;
}
.p-rec-conditions__dd.p-rec-promotion__flow-wrap p {
  line-height: 1.6;
}

.p-rec-promotion__flow-img {
  display: block;
  width: 54rem;
  height: auto;
}
@media (min-width: 1200px) {
  .p-rec-promotion__flow-img {
    width: 100%;
    min-width: 0;
    margin-block-end: 1.875rem;
  }
}

.p-rec-promotion__mb {
  margin-bottom: 1.75rem;
}

.p-rec-promotion__note p {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-black);
  line-height: 1.7;
}
.p-rec-promotion__note p:last-child {
  margin-bottom: 0;
}

.p-rec-promotion__careerup {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-light-gray);
}

.p-rec-promotion__careerup-ttl {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-black);
}

.p-rec-promotion__text-light-blue {
  color: var(--color-light-blue);
}

.p-rec-conditions__dl--mb {
  margin-bottom: 6.0625rem;
}
@media (min-width: 768px) {
  .p-rec-conditions__dl--mb {
    margin-bottom: 16.8125rem;
  }
}