@charset "UTF-8";
html {
  width: 100%;
  /*TOPに戻るボタン*/
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-size: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin: auto;
  padding: 0;
  align-items: center;
}

@media screen and (max-width: 650px) {
  body {
    font-family: "Noto Sans JP", sans-serif; /* 650px以下で切り替えるフォント */
  }
}
.side-m5 {
  margin-right: 5px;
  margin-left: 5px;
}

img {
  width: 100%;
}

.base-m {
  margin: 0 16px;
}

.bg-beige {
  background-color: #f5f3ec;
  width: 100%;
}

.bg-white {
  background-color: #fff;
}

.bg-red {
  background-color: #c72f2a;
}

.bg-mynavi {
  background-color: #00abeb;
}

.bg-blue {
  background-color: #1f5bc4;
}

h1 {
  font-size: 25px;
  font-weight: 500;
}

h2 {
  font-size: 20px;
  font-weight: 500;
}

h3 {
  font-size: 16px;
  font-weight: 500;
}

p {
  font-size: 16px;
  font-weight: 350;
}

h4 {
  font-size: 14px;
  font-weight: 400;
}

h5 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

h6 {
  font-size: 10px;
  font-weight: 300;
}

/*改行指示*/
.mobile-display {
  display: none;
}

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

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

.underline-lightly {
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 15px;
}

.note {
  line-height: 1.5;
  font-weight: 400;
}

.font-600 {
  font-weight: 600;
}

.vertical-line {
  border-left: 2px solid #2c6ee0; /* 縦線の太さと色 */
  padding-left: 7px; /* 縦線と文字の間隔 */
  padding-right: 0px;
}

.label-mark {
  color: #05ae8c;
  font-size: 12px;
  height: 16px;
  line-height: 14px;
  padding-right: 5px; /* ポチと文字の間に少しスペースを追加 */
  display: inline-block;
  vertical-align: middle;
  text-indent: 0.2rem;
}

.paragraph {
  margin: 0 0 10px 0;
  line-height: 1.7;
}

.description-list {
  padding: 15px 0 5px 0;
  border-top: 1px solid #c9c9c9;
}

.desc-title {
  text-indent: -0.5rem;
  margin: 20px 0 4px 0;
}

.mark-indent {
  padding-left: 1.35rem;
  text-indent: -0.5rem;
}

.indent {
  text-indent: 0.5rem;
}

.link-mark {
  color: blue;
  border-bottom: 1.5px solid blue; /* 下に青い線を引く */
  padding-bottom: 4px; /* 線とテキストの間隔を調整 */
}

.attention {
  color: #e52d27;
  font-weight: 500;
}

.unipro-color {
  color: #05ae8c;
}

.sangyo-color {
  color: #e25454;
}

.flower-color {
  color: #da3d81;
}

.tokuhan-color {
  color: #455adf;
}

.food-color {
  color: #eb8704;
}

.keiri-color {
  color: #ccb700;
}

.unipro-bgcolor {
  background-color: #05ae8c;
}

.sangyo-bgcolor {
  background: #e25454;
}

.flower-bgcolor {
  background: #da3d81;
}

.tokuhan-bgcolor {
  background: #455adf;
}

.food-bgcolor {
  background: #eb8704;
}

.keiri-bgcolor {
  background: #ccb700;
}

.unipro-line {
  padding: 8px 0;
  border-bottom: 3px solid #05ae8c;
}

.sangyo-line {
  padding: 8px 0;
  border-bottom: 3px solid #e25454;
}

.flower-line {
  padding: 8px 0;
  border-bottom: 3px solid #da3d81;
}

.tokuhan-line {
  padding: 8px 0;
  border-bottom: 3px solid #455adf;
}

.food-line {
  padding: 8px 0;
  border-bottom: 3px solid #eb8704;
}

.keiri-line {
  padding: 8px 0;
  border-bottom: 3px solid #ccb700;
}

.caption {
  display: block;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 15px;
}

.c-text {
  padding: 20px 0 0 0;
  line-height: 1.4;
}

li {
  list-style: none;
} /* 黒丸を消す */
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.f-column {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

@media (min-width: 650px) {
  h1 {
    font-size: 42px;
    font-weight: 700;
  }
  h2 {
    font-size: 29px;
    font-weight: 700;
  }
  h3 {
    font-size: 20px;
    font-weight: 700;
  }
  p {
    font-size: 20px;
    font-weight: 500;
  }
  h4 {
    font-size: 16px;
    font-weight: 400;
  }
  h5 {
    font-size: 14px;
    font-weight: 400;
  }
  h6 {
    font-weight: 400;
    line-height: 1.8;
  }
  .title-maximum {
    font-size: 55px;
  }
  .title-big {
    font-size: 50px;
  }
  .title-medium {
    font-size: 40px;
  }
  .title-small {
    font-size: 29px;
  }
  .caption {
    padding-top: 55px;
  }
  /*改行指示*/
  .pc {
    display: none;
  }
  /*改行指示*/
  .mobile-display {
    display: block;
  }
  .desc-title {
    margin: 20px 0 5px 0;
  }
}
@media (min-width: 1000px) {
  .title-maximum {
    font-size: 80px;
  }
  .title-big {
    font-size: 60px;
  }
}
/*--重要なボタン　to お問い合わせform/マイナビ--*/
.primary-btn {
  color: #fff;
  width: 220px;
  border-radius: 12px;
  padding: 10px 0;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 影を追加 */
  cursor: pointer; /* ポインタの表示 */
  transition: opacity 0.3s ease; /* 半透明化をスムーズに */
  font-size: 18px;
  font-weight: 700;
}

.primary-btn:hover {
  opacity: 0.8;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* ホバー時に影を強調 */
  transform: translateY(-1px); /* 少し浮いて見える効果 */
}

.primary-btn:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 押したときに影を小さく */
  transform: translateY(1px); /* ボタンが押し込まれたように見せる */
}

/*お問い合わせのボタン*/
.contact-btn {
  width: auto;
  color: #1f5bc4;
  text-decoration: none; /* 下線を消す */
  border-radius: 50px;
  box-shadow: none; /* 影を消す */
  padding: 5px 10px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  border: 2px solid #1f5bc4; /* 枠線の太さ・種類・色 */
}
.contact-btn-header {
  margin-left: auto;
  margin-right: 50px; /* デフォルト：小画面用 */
}
.contact-btn-footer {
  margin: 10px auto 0 17px;
}

.contact-btn:hover {
  color: #fff;
  background-color: #1f5bc4;
  border: 2px solid #1f5bc4; /* 枠線の太さ・種類・色 */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* ホバー時に影を強調 */
}

/*TOPに戻るボタン*/
#top-button {
  display: none; /* 初期状態では非表示 にしておく*/
}

.back-to-top-button {
  position: fixed;
  z-index: 100;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  text-decoration: none;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 影を追加 */
  display: block;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 109px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f062";
}

.back-to-top-button::before {
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-size: 30px;
  color: #05ae8c;
  line-height: 36px;
}

#topButton {
  display: none; /* 初期状態では非表示 */
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none; /* 透明時はクリックを無効に */
}

#topButton:hover {
  background-color: #0043a7;
}

/*1200px以上の時*/
@media (min-width: 1200px) {
  .back-to-top-button {
    bottom: -33px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 40px;
    margin-bottom: 117px;
  }
  .back-to-top-button::before {
    font-size: 36px;
    line-height: 60px;
  }
  .contact-btn-header {
    display: block;
    margin-right: 200px;
  }
}
/*コーポレートサイトにリンクするボタン*/
.primary-btn {
  color: #fff;
  width: 220px;
  border-radius: 12px;
  padding: 10px 0;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 影を追加 */
  cursor: pointer; /* ポインタの表示 */
  transition: opacity 0.3s ease; /* 半透明化をスムーズに */
  font-size: 18px;
  font-weight: 700;
}

.primary-btn:hover {
  opacity: 0.8;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* ホバー時に影を強調 */
  transform: translateY(-1px); /* 少し浮いて見える効果 */
}

.primary-btn:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 押したときに影を小さく */
  transform: translateY(1px); /* ボタンが押し込まれたように見せる */
}

header {
  position: fixed; /* ヘッダーを固定 */
  top: 0; /* 画面上部に配置 */
  left: 0; /* 左端に配置 */
  width: 100%; /* 横幅を画面いっぱいに広げる */
  z-index: 100; /* 他の要素の上に表示 */
  background-color: #fff;
  height: 60px;
}

main {
  margin-top: 60px;
  padding-bottom: 60px;
}

.header-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/*ロゴ*/
.logo-flex {
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.otani-mark {
  width: 180px;
  margin-left: 10px;
  margin-bottom: 0px;
}

.header-recruit-site {
  color: #2c6ee0;
  font-weight: 700;
  display: inline;
  line-height: 60px;
}

.recruiting {
  width: 80px;
  margin-left: 8px;
  margin-bottom: -2px;
}

.mail {
  position: absolute;
  top: 50%;
  right: 66px;
  transform: translateY(-50%);
  color: #2c6ee0;
  font-size: 1.8rem;
  /*アイコンのホバー時アニメ*/
  transition: opacity 0.15s, transform 0.3s ease;
}
.mail:hover {
  transform: translateY(-50%) scale(1.15);
}
@media (min-width: 1200px) {
  .mail {
    right: 200px;
  }
}

.external-link {
  color: #2c6ee0;
  margin-left: 4px; /* ★ここで文字との距離を固定する */
  font-size: 0.8em; /* 文字より少し小さくするとバランスが良いです */
}

/*--entry-btn-mobile　モバイル画面用　据え置き「エントリー」タブ---------
---------------------------------------------------------------------*/
/* フッターボタンのコンテナ */
.footer-btn {
  position: fixed; /* 画面下部に固定 */
  bottom: 0; /* 下端に配置 */
  left: 0;
  width: 100%; /* 画面の横幅いっぱいに広げる */
  display: flex; /* 横並びにする */
  z-index: 30; /* 他の要素より上に配置 */
}

/* ボタンの共通スタイル */
.entry-btn-mobile {
  width: 50%; /* 画面の半分の幅 */
  height: 60px; /* 高さ */
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px; /* 縦中央揃え */
  text-decoration: none; /* 下線を消す */
  cursor: pointer; /* クリックできることを示す */
  transition: background-color 0.3s ease;
}

/* 左側のボタン（募集要項） */
.mobile-bosyu {
  background-color: #008461;
}

/* 右側のボタン（エントリー） */
.mobile-entry {
  background-color: #1f5bc4;
}

/* ホバー時の色変更 */
.mobile-bosyu:hover {
  background-color: #00a26f;
}

.mobile-entry:hover {
  background-color: #065ff9;
}

/*--entry-btn-pc PC画面用　据え置き「エントリー」ボタン-------------------
---------------------------------------------------------------------*/
.entry-btn-pc {
  display: none;
}

@media (min-width: 650px) {
  /*ロゴ*/
  .otani-mark {
    width: 180px;
  }
}
@media (min-width: 1000px) {
  main {
    padding-bottom: 55px;
  }
}
/*1200px以上の時*/
@media (min-width: 1200px) {
  header {
    height: 4.5vw;
  }
  main {
    margin-top: 4.5vw;
  }
  /*ロゴ*/
  .otani-mark {
    width: auto;
    height: 2.5em;
    margin-left: 20px;
    margin-bottom: 0px;
  }
  .header-recruit-site {
    line-height: 60px;
  }
  /*--entry-btn-mobile  元static-tab　モバイル画面用　据え置き「エントリー」タブ--*/
  .entry-btn-mobile {
    display: none;
  }
  /*--entry-btn-pc　PC画面用　据え置き「エントリー」ボタン--*/
  .entry-btn-pc {
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    position: fixed;
    z-index: 200; /* 他の要素の上に表示 */
    right: 0px; /* 右端に配置 */
    height: 45px;
    width: 175px;
    line-height: 45px; /* 高さと同じ値で中央揃え */
    border-radius: 40px 0 0 40px;
    padding: 0 0 0 35px;
  }
  .pc-bosyu {
    background-color: #008461;
    top: 12px;
  }
  .pc-entry {
    background-color: #1f5bc4;
    top: 67px;
  }
  .pc-bosyu:hover {
    background-color: #00a26f;
    transition-duration: 0.3s;
  }
  .pc-entry:hover {
    background-color: #065ff9;
    transition-duration: 0.3s;
  }
}
/* ==========================================
   ↓ここからスマホ用・新ハンバーガーメニュー用

   ========================================== */
@media (max-width: 1199px) {
  /* PC版を完全に消す */
  .pc-nav {
    display: none !important;
  }
  .sp-menu-container {
    position: relative;
  }
  .menu-icon {
    width: 34px;
    height: 30px;
    position: fixed; /* ← fixedにして常に左上固定 */
    top: 12px;
    right: 13px;
    cursor: pointer;
    z-index: 300 !important; /* 一番手前に出す */
    display: inline-block;
    /*カーソルのチカチカ防止*/
    cursor: pointer;
    user-select: none; /* テキスト選択カーソルを出さない */
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent; /* タップの影を消す */
    outline: none !important; /* 枠線を強制排除 */
  }
  .menu-icon span {
    pointer-events: none; /* span自体がクリック反応しないようにする（貫通させる） */
  }
  .menu-icon {
    border: none;
    box-shadow: none;
    /*アイコンのホバー時アニメ*/
    transition: transform 0.3s ease;
  }
  .menu-icon:hover {
    transform: scale(1.15);
  }
  .menu-icon span {
    display: block;
    height: 4px;
    margin: 6px 0;
    background: #2c6ee0;
    border-radius: 2px;
    transition: 0.4s;
  }
  /* ハンバーガーがXに変形 */
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  #menu-toggle:focus + .menu-icon {
    outline: none;
  }
  /* オーバーレイ背景 */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 1;
  }
  #menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto;
  }
  /* メニュー本体（右から出す） */
  .menu {
    position: fixed;
    top: 0;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 4;
    gap: 1vh;
    /* --- 中身を中央に寄せる --- */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* ★まず「一番小さい画面（479px以下）」の設定を基本にする */
    width: 85vw;
    right: -85vw;
    /* ★画面が「480px以上」になったら上書きする */
  }
}
@media (max-width: 1199px) and (min-width: 480px) {
  .menu {
    width: 80vw;
    right: -80vw;
  }
}
@media (max-width: 1199px) {
  /* --- リサイズ時のハンバーガーメニューのチラつきを制御　header.jsと連動 --- */
  body.is-resizing .menu {
    transition: none;
  }
  #menu-toggle:checked ~ .menu {
    right: 0; /* ← 開いたときは右0へ */
  }
  .menu ul {
    list-style: none;
    text-align: left;
    /* ★基本（スマホサイズ） */
    width: 80%;
    /* ★480px以上（タブレット寄り） */
  }
}
@media (max-width: 1199px) and (min-width: 480px) {
  .menu ul {
    width: 60%;
  }
}
@media (max-width: 1199px) {
  .menu li {
    width: 100%;
    margin: 0 0 2.5vh 0;
    color: #000;
    font-weight: 500;
    /* ★480px以上（タブレット寄り） */
  }
}
@media (max-width: 1199px) and (min-width: 481px) {
  .menu li {
    margin: 0 0 3vh 0;
  }
}
@media (max-width: 1199px) {
  .menu a {
    display: block;
    width: 100%;
    padding: 10px 0 10px 10px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .menu a:hover {
    color: #2c6ee0;
  }
  .menu .hamburger-btn a:hover {
    color: #fff;
  }
  .vertical-line {
    border-left: 3px solid #2c6ee0; /* 縦線の太さと色 */
  }
}
/*--募集要項ボタン　見た目--*/
.hamburger-btn-container {
  width: 100%;
  gap: 3vh;
}

.hamburger-btn {
  color: #fff;
  border-radius: 12px;
  text-align: center;
  font-weight: 400;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: opacity 0.3s ease; /* 半透明化をスムーズに */
  width: 60%;
  /* ★基本（スマホサイズ） */
  width: 80%;
  /* ★480px以上（タブレット寄り） */
}
@media (min-width: 480px) {
  .hamburger-btn {
    width: 60%;
  }
}
.hamburger-btn a {
  color: #fff !important; /* 未読の時も白 */
  text-decoration: none;
  display: block;
  width: 100%;
}
.hamburger-btn a:visited {
  color: #fff !important; /* 既読（クリック後）も白に固定 */
}
.hamburger-btn.works {
  background-color: #008461;
}
.hamburger-btn.entry {
  background-color: #1f5bc4;
}

.hamburger-btn:hover {
  color: #fff;
  opacity: 0.8;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px); /* Y 軸だけ変化 */
}

.hamburger-btn:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(2px); /* Y 軸を動かす */
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 左側に寄せる */
  padding: 15px 1.5rem 5px 1.5rem;
  margin-top: 7vh;
  width: 100%;
}
.contact-link i.mail {
  /* --- 強力なリセット --- */
  position: static !important; /* 画面中央に飛ばす原因(absolute)を解除 */
  transform: none !important; /* 中央寄せの計算を解除 */
  margin: 0 10px 0 0 !important; /* 文字との間にだけ隙間を作る */
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: middle;
}

/* ==========================================
   ↓ここからPC・ヘッダーメニュー用

   ========================================== */
/*1200px以上の時*/
@media (min-width: 1200px) {
  /* ハンバーガーメニューのボタンを非表示 */
  .sp-menu-container {
    display: none;
  }
  /* ナビゲーションメニューを横並びに */
  .main-nav {
    display: flex;
    align-items: center; /* 横並び */
    position: static; /* 固定位置を解除 */
    width: auto; /* 幅を自然に調整 */
    background: none; /* 背景色を削除（必要なら） */
    transition: none; /* アニメーションを無効化 */
    overflow: visible; /* オーバーフローを解除 */
    margin-left: 2vw;
  }
  /* ナビゲーション項目のスタイル */
  .main-nav li {
    margin: 0 0.6rem; /* 左右に余白を追加 */
  }
  .main-nav a {
    display: inline; /* リンクをインライン表示 */
    color: #474747;
    text-decoration: none; /* 下線を消す */
    font-size: 14px;
    font-weight: 700;
  }
  /*メニューをホバーしたとき*/
  .main-nav a:hover {
    color: #1f5bc4; /* ホバー時に文字を青色にする */
    background-color: none;
    font-weight: 700;
  }
  /* メニューを開閉するクラスを無効化 */
  .main-nav.open-menu {
    width: auto;
  }
}
/* チェックボックスにチェックが入っている時、bodyのスクロールを止める */
body:has(#menu-toggle:checked) {
  overflow: hidden;
}

footer {
  margin-bottom: 72px;
}

.footer-container {
  margin: 0 auto 50px auto;
  position: relative;
}

.footer-info {
  margin: 50px 16px 0 16px;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.footer-list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.footer-nav-container {
  margin-bottom: 50px;
}

.footer-otani {
  color: #2c6ee0;
  font-weight: 600;
  margin-left: 18px;
}

.footer-nav {
  margin: 20px;
  color: #474747;
  text-decoration: none; /* 下線を消す */
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.footer-nav:hover {
  color: #1f5bc4;
}

.footer-border {
  height: 20px;
  gap: 0px;
}

/**/
.hover-area {
  padding: 20px;
  text-align: center;
}

.hover-area h4 {
  text-decoration: none;
  transition: text-decoration 0.3s ease-in-out, text-decoration-thickness 0.3s ease-in-out;
  text-decoration-color: rgb(223, 255, 96);
}

.hover-area:hover h4 {
  text-decoration: underline;
  text-decoration-thickness: 3px; /* アンダーラインの太さを5pxに */
  text-decoration-color: rgb(223, 255, 96);
}

/*Corporate website　& 個人情報保護方針*/
/*--Copyright--*/
.copyright {
  color: #c1c1c1;
  text-align: right;
  font-size: 12px;
  margin: 40px 20px 0 0;
}

.it-recruit {
  color: #474747;
  margin-top: 5px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 7px;
}

.it-banner-img {
  width: 150px;
}

.entry-pc-bottom {
  display: none;
}

/* ウィンドウマークのスタイル */
.window-mark {
  width: 18px;
  height: auto;
  opacity: 0.7;
  vertical-align: middle; /* アイコンがテキストとずれないようにする */
}

.corporate-text {
  line-height: 1; /* 高さを文字にぴったり合わせ */
}

/* コーポレートボタン 共通スタイル */
.corporate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 250px;
  color: #474747;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 14px;
  border: 2px solid #474747;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.corporate-btn p {
  margin: 0; /* デフォルトの余白を消す */
  line-height: 1; /* 必要なら高さ調整 */
}

.corporate-btn:hover {
  color: #fff;
  background-color: #c72f2a;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* スマホ向け（幅767px以下） */
@media (max-width: 767px) {
  .corporate-btn {
    position: static;
    transform: none;
    margin: 20px auto 0;
    display: block;
    text-align: center;
    max-width: 300px;
  }
}
/* タブレット・PC向け（幅768px以上） */
@media (min-width: 768px) {
  .corporate-btn {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    margin: -60px 0;
  }
  .footer-container {
    margin: 0 auto 100px auto;
  }
}
/* デスクトップ向け（幅1200px以上） */
@media (min-width: 1200px) {
  footer {
    position: relative;
    margin-bottom: 30px;
  }
  .corporate-btn {
    bottom: -80px;
    margin: 20px 0;
  }
}
.wrapper-1000 {
  max-width: 100%; /* フル幅を使用 */
  padding: 0 16px; /* 16pxのパディングは維持 */
}

.card {
  padding: 17px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

@media (min-width: 1000px) {
  .wrapper-1000 {
    max-width: 1000px; /* 最大幅を1000pxに設定 */
    margin: 0 auto; /* コンテンツを中央揃え */
    padding: 0 16px; /* 左右に16pxの余白を設定 */
    box-sizing: border-box; /* パディングを含む幅計算 */
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  26% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* 各スライドの共通アニメーション */
.hero-image {
  opacity: 0; /* 初期状態で非表示 */
  animation: fade 25s infinite;
  animation-fill-mode: both; /* アニメーションの状態を保持 */
}

/* それぞれのスライドに個別の遅延時間を設定 */
.hero-image:nth-child(1) {
  animation-delay: 0s;
}

.hero-image:nth-child(2) {
  animation-delay: 5s;
}

.hero-image:nth-child(3) {
  animation-delay: 10s;
}

.hero-image:nth-child(4) {
  animation-delay: 15s;
}

.hero-image:nth-child(5) {
  animation-delay: 20s;
}

/*---------------------------------
  ホバーしたときにズームインする
  ---------------------------------*/
.zoom-box {
  overflow: hidden;
  transition-property: transform;
  transition-timing-function: ease-in-out;
}
.zoom-box:hover {
  scale: 1.03;
  transition: 1s;
}

/*---------------------------------
  ホバーしたときにズームアウトする
  ---------------------------------*/
.zoom-out-box {
  overflow: hidden;
  transition-property: transform;
  transition-timing-function: ease-in-out;
}
.zoom-out-box:hover {
  scale: 0.97;
  transition: 1s;
}

/*---------------------------------
  ホバーしたときにアンダーラインが引かれる
  ---------------------------------*/
.line-box {
  display: block;
  position: relative; /* 必要に応じて基準を設定 */
  overflow: hidden; /* 子要素がはみ出さないように設定 */
  margin: 0 auto; /* 親要素内で中央に配置 */
  box-sizing: border-box; /* パディングやボーダーを幅に含める */
  max-width: 100%; /* 画面幅に応じて制限 */
}
.line-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; /* ラインを左端に固定 */
  display: block;
  width: 0; /* 初期状態では非表示 */
  transition: width 0.3s;
  border-bottom: 4px solid #05ae8c;
  transition: width 0.3s ease-in-out; /* スムーズなアニメーション */
}
.line-box:hover::after {
  width: 100%;
}
.line-box:not(:hover)::after {
  width: 0; /* ホバー解除時に左端から縮む */
}

.line-position {
  display: inline-block;
}

/*---------------------------------
  ホバーしたときにアンダーラインが引かれる 左から右に向かって下線が消える
  ---------------------------------*/
/*---------------------------------
  ホバー時に左から右へ線が引かれ、
  ホバーを離すと左から右に消える
---------------------------------*/
.flowing-line {
  position: relative;
  text-decoration: none;
}

.flowing-line::before {
  content: "";
  position: absolute;
  bottom: 19px; /* テキストの下に配置 */
  right: 0;
  width: 40%;
  height: 3px;
  background-color: #fff;
  transform: scaleX(0); /* 初期状態で線を隠す */
  transform-origin: left; /* 左端からアニメーション開始 */
  transition: transform 0.3s ease-in-out;
}

.flowing-line:hover::before {
  transform: scaleX(1); /* 左から右へ線を伸ばす */
}

.flowing-line:not(:hover)::before {
  transform: scaleX(0); /* 左から右へ線を消す */
  transform-origin: right; /* 右端から縮む */
}

/*---------------------------------
  フワフワアニメーション
  ---------------------------------*/
.fuwafuwa {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

.keyframe1 {
  animation-name: anim_v;
}

@keyframes anim_v {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 10px);
  }
}
@media (min-width: 650px) {
  /*---------------------------------
  ホバーしたときにズームする
  ---------------------------------*/
  .zoom-box {
    overflow: hidden;
    transition-property: transform;
    transition-timing-function: ease-in-out;
    transform-origin: center;
  }
  .zoom-box:hover {
    scale: 1.03;
    transition: 1s;
  }
}
body {
  background-color: #fff;
}

main {
  padding-bottom: 0;
}

#interview-top {
  position: relative;
  padding-top: 170px; /* 固定ヘッダーの高さ分 */
  margin-top: -100px; /* ヘッダーの高さと同じだけ上にずらす */
}

.pc {
  display: none;
}

#member-choice-link {
  scroll-margin-top: 80px; /* ヘッダーの高さに合わせる */
}

#member-article-link {
  scroll-margin-top: 100px; /* ヘッダーの高さに合わせる */
}

.order-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  background-color: #fff;
  width: 90vw;
  margin: 0 auto 2rem auto;
  padding: 1rem;
}

.order-title {
  text-align: center;
}
.order-title h2 {
  font-size: 1.6rem;
  font-weight: 600;
}
.order-title span {
  font-size: 1rem;
  font-weight: 400;
}

.order-button {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-button h3 {
  font-weight: 700;
}

.order-button a {
  font-size: 1.25rem;
  font-weight: bold;
  height: 35px;
}
.order-button a:hover {
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
}

.motif-parent {
  display: none;
}
.motif-parent .motif {
  display: none;
}

.gray {
  color: #6c757d;
}

.mobile-headline {
  text-align: end;
  padding-right: 2rem;
  padding-top: 0px;
}

.article-header {
  display: flex;
  position: relative;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.article-contents {
  display: flex;
  position: relative;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 0 9.6rem;
}

.article {
  background-color: #fff;
  width: 100%;
}

.article-contents-inner {
  background-color: #fff;
  width: 95vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1rem 150px 1rem;
  z-index: 10;
}
.article-contents-inner .article-title {
  margin: 20px 0;
}
.article-contents-inner .article-title h2 {
  margin-bottom: 10px;
}
.article-contents-inner .article-title h1 {
  margin-bottom: 1rem;
}
.article-contents-inner .article-title h3 {
  margin-bottom: 1rem;
}
.article-contents-inner .job-img {
  width: calc(100% + 2rem); /* padding左右分（1rem × 2）を加える */
  margin-left: -1rem;
  margin-right: -1rem;
  height: auto; /* アスペクト比を保ちつつ高さを自動調整 */
  display: block; /* インラインスペース除去 */
  margin-bottom: 80px;
}
.article-contents-inner .paragraph {
  margin-bottom: 3rem;
  line-height: 1.7;
}
.article-contents-inner .paragraph h2 {
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.article-contents-inner .paragraph p {
  line-height: 2.2;
  margin-bottom: 1.5rem;
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
}

.recruit-link-parent {
  position: relative;
}

.button-recruit-link {
  position: absolute;
  display: inline-block;
  margin: 3rem 0;
  padding: 12px 24px;
  background-color: #fff;
  border: 2px solid #2c6ee0;
  color: #1f5bc4;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  top: -100px;
  right: 0rem;
}
.button-recruit-link:hover {
  background-color: #2c6ee0;
  color: #fff;
}

.schedule {
  background-color: #f5f3ec;
  width: 100%;
  max-width: 770px;
  margin: 0 auto 100px auto;
  padding: 2rem 1.2rem 1.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.schedule .flow {
  margin-bottom: 20px;
}
.schedule .flow h2 {
  margin-bottom: 1.7rem;
}
.schedule .flow .schedule-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.schedule .flow .schedule-item .time {
  font-weight: 700;
  width: 70px;
  flex-shrink: 0;
  color: #6c757d;
  padding-top: 0.2rem;
}
.schedule .flow .schedule-item .task {
  font-weight: 500;
  color: #6c757d;
  line-height: 1.6;
  padding-left: 0.25rem;
}
.schedule .fukidashi {
  width: 260px;
  margin: 0px 10vw 17px auto;
}
.schedule .fukidashi .speech-bubble {
  position: relative;
  background: white;
  border-radius: 60px;
  font-size: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.schedule .fukidashi .speech-bubble h5 {
  line-height: 1.5;
  color: #474747;
}
.schedule .fukidashi .speech-bubble.bubble-customer {
  padding: 15px 15px 15px 15px;
  right: 20px;
  bottom: -1vh;
  margin-bottom: 65px;
}
.schedule .fukidashi .speech-bubble.bubble-customer::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50px;
  border-width: 14px 20px 0;
  border-style: solid;
  border-radius: 51px;
  border-color: white transparent transparent transparent;
  transform: rotate(143deg);
}
.schedule .fukidashi .speech-bubble.bubble-member {
  padding: 15px 20px 15px 20px;
  left: 2vw;
  top: -2vh;
}
.schedule .fukidashi .speech-bubble.bubble-member::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50px;
  border-width: 14px 20px 0;
  border-style: solid;
  border-radius: 51px;
  border-color: white transparent transparent transparent;
  transform: rotate(-143deg);
}
.schedule .fukidashi .speech-bubble {
  position: relative;
  background: white;
  border-radius: 20px;
  font-size: 14px;
  text-align: left;
  margin: 0;
}
.schedule .fukidashi .speech-bubble.bubble-sekkei {
  padding: 10px 15px;
  left: 4vw;
  bottom: 4px;
  flex-direction: column;
}
.schedule .fukidashi .speech-bubble.bubble-sekkei h5 {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #474747;
}
.schedule .fukidashi .speech-bubble.bubble-sekkei::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 50px;
  border-width: 14px 20px 0;
  border-style: solid;
  border-radius: 51px;
  border-color: white transparent transparent transparent;
  transform: rotate(-143deg);
}

.circle-wrapper {
  position: relative;
  width: 300px;
  height: 310px;
  margin: 0 auto;
}
.circle-wrapper .bg-circle {
  position: absolute;
  width: 175px;
  height: 175px;
  border-radius: 50%;
  top: -15px;
  left: -20%;
  transform: translateX(50mm);
  z-index: 1;
}
.circle-wrapper .image-circle {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  top: 32px;
  left: 37%;
  transform: translateX(-50%);
  z-index: 2;
}
.circle-wrapper .image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.all-color {
  color: #000;
}

h3.unipro-color {
  color: #05ae8c;
}
h3.unipro-color:hover {
  border-bottom: 2px solid #05ae8c;
  padding-bottom: 4px;
}

h3.sangyo-color {
  color: #e25454;
}
h3.sangyo-color:hover {
  border-bottom: 2px solid #e25454;
  padding-bottom: 4px;
}

h3.food-color {
  color: #eb8704;
}
h3.food-color:hover {
  border-bottom: 2px solid #eb8704;
  padding-bottom: 4px;
}

h3.flower-color {
  color: #da3d81;
}
h3.flower-color:hover {
  border-bottom: 2px solid #da3d81;
  padding-bottom: 4px;
}

.member-choice {
  background-color: #fff;
  margin: 0 auto;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  padding: 2rem 1rem;
  margin-bottom: 0px;
}

.member {
  display: block;
  margin: 0 1rem 0.5rem;
  padding: 0.5rem;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}
.member:hover {
  box-shadow: 0 0 5px rgb(177, 177, 177);
}

.choice-img {
  display: none;
}

.heading-area {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 90%;
  margin: 0.5rem auto;
}
.heading-area h5 {
  font-weight: 700;
}

.heading-order {
  display: flex;
  gap: 10px;
  margin-bottom: 0.3rem;
}

.unipro-headline h1 {
  color: #000;
}
.unipro-headline h2,
.unipro-headline h3 {
  color: #05ae8c;
}

.sangyo-headline h1 {
  color: #000;
}
.sangyo-headline h2,
.sangyo-headline h3 {
  color: #e25454;
}

.food-headline h1 {
  color: #000;
}
.food-headline h2,
.food-headline h3 {
  color: #eb8704;
}

.f-headline h1 {
  color: #000;
}
.f-headline h2,
.f-headline h3 {
  color: #da3d81;
}

.more-interview {
  position: relative;
  scroll-behavior: smooth;
}

.more-interview-message {
  position: absolute;
  display: inline-block;
  width: 240px;
  margin: 50px auto;
  padding: 12px 30px;
  background-color: #fff;
  border: 2px solid #008461;
  color: #008461;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.more-interview-message:hover {
  background-color: #008461;
  color: #fff;
}

/*レスポンシブディスプレイが450px以上の時-----------------------------------------------*/
@media (min-width: 450px) {
  .motif-parent {
    display: block;
    position: relative;
  }
  .motif-parent .motif {
    display: block;
    position: absolute;
    z-index: 6;
    width: auto;
    height: 77px;
    bottom: 20vw;
    right: -1px;
  }
  .article-contents-inner {
    background-color: #fff;
    width: 95vw;
    max-width: 940px;
    padding: 1rem 1rem 200px 1rem;
    z-index: 10;
  }
  .member {
    height: auto;
    min-height: 250px;
    margin: auto;
    padding: auto;
  }
  .member-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 0 auto;
    padding: 1rem;
  }
  .choice-img {
    display: block;
    background-color: rgb(191, 211, 238);
    width: 90%;
    height: 140px;
    margin: 0.5rem auto 0.2rem auto;
    object-fit: cover;
    object-position: center;
  }
  #member-article-link {
    scroll-margin-top: 70px;
  }
}
@media (min-width: 500px) {
  .mobile {
    display: none;
  }
}
@media (min-width: 640px) {
  .schedule .fukidashi {
    width: 300px;
    margin: 0px 5vw -55px auto;
  }
  .schedule .fukidashi .speech-bubble.bubble-customer {
    right: 20px;
    bottom: 12vh;
    margin-bottom: 15px;
  }
  .schedule .fukidashi .speech-bubble.bubble-member {
    top: -10vh;
  }
  .schedule .fukidashi .speech-bubble.bubble-sekkei {
    bottom: 9vh;
  }
}
@media (min-width: 650px) {
  .schedule .fukidashi {
    width: 300px;
    margin: -174px 5vw 17px auto;
  }
  .schedule .fukidashi .speech-bubble.bubble-customer {
    right: 20px;
    bottom: 12vh;
    margin-bottom: 15px;
  }
  .schedule .fukidashi .speech-bubble.bubble-member {
    top: -10vh;
  }
  .schedule .fukidashi .speech-bubble.bubble-sekkei {
    bottom: 0vh;
  }
  .member-grid {
    padding: 5rem 3rem;
  }
}
@media (min-width: 800px) {
  .paragraph {
    width: 770px;
    margin: 0 auto;
  }
  .motif-parent {
    position: relative;
  }
  .motif-parent .motif {
    bottom: 7px;
    right: 12px;
  }
}
/*レスポンシブディスプレイが1000px以上の時-----------------------------------------------*/
@media (min-width: 1000px) {
  .pc {
    display: block;
  }
  .unipro-line,
  .sangyo-line,
  .food-line .flower-line {
    display: none;
  }
  .mobile-headline h2,
  .mobile-headline h5 {
    display: none;
  }
  .article {
    position: relative;
    z-index: 50;
  }
  .article-contents-inner .article-title {
    margin: 22px auto 20px 30px;
  }
  .article-contents-inner .paragraph {
    width: 760px;
    margin: 0 auto;
    margin-bottom: 5rem;
  }
  .article-bg {
    position: absolute;
    height: 460px;
    width: 100%;
    z-index: -50;
    top: -70px;
  }
  .order-container {
    align-items: flex-end;
    width: 1000px;
  }
  .member-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 1000px;
    margin: 0 auto 70px auto;
  }
  .order-title {
    margin: 0 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .order-title h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
  }
  .order-title span {
    font-size: 1rem;
    font-weight: 400;
  }
  .order-button {
    flex-direction: row;
    gap: 50px;
  }
  .button-recruit-link {
    right: 1rem;
  }
  #member-choice-link {
    scroll-margin-top: 4.5vw;
  }
  #member-article-link {
    scroll-margin-top: 100px;
  }
}
/*レスポンシブディスプレイが１200px以上の時-----------------------------------------------*/
@media (min-width: 1200px) {
  #member-article-link {
    scroll-margin-top: 18vh;
  }
}/*# sourceMappingURL=interview.css.map */