/*Template designed by Saiyo Design — redesigned for ペッツオーライ 獣医師 LP*/

/*Webフォント
---------------------------------------------------------------------------------------------------------------------------*/
body, h1, h2, h3, h4, h5, h6, p, a, span, li, td, th, button, input, textarea, select, label {
  font-family: 'Lexend Deca', 'Zen Kaku Gothic New', sans-serif;
}

/*ページ背景
---------------------------------------------------------------------------------------------------------------------------*/
body {
  background: #fff;
  overflow-x: clip; /* hiddenだとstickyが壊れるためclipに変更 */
}
.scroll_top a {
  z-index: 500;
}
.hero_outer {
  overflow-x: clip;
  overflow-y: visible;
}
header {
  background: #fff;
  position: relative;
  z-index: 200;
  overflow: visible;
}

/* ハンバーガーボタン */
.hamburger_btn {
  display: none;
  position: static;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 300;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hamburger_btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--key_color_text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger_btn.open span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.hamburger_btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger_btn.open span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
/* page_blockのgrid 1fr列がmin-contentで広がらないようにする */
.page_box {
  min-width: 0;
}

/* メニューオープン時：スクロールしても×が消えないよう固定 */
.hamburger_btn.open {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 300;
}
/* メニューオープン中はヘッダーのENTRYボタンを非表示（×と被るのを防ぐ） */
body.menu-open .sp_header_entry {
  visibility: hidden;
}

/* SPナビオーバーレイ */
.sp_nav_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.97);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sp_nav_overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.sp_nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0;
}
.sp_nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.sp_nav ul li {
  border-bottom: 1px solid #eee;
  width: 100%;
}
.sp_nav ul li:first-child {
  border-top: 1px solid #eee;
}
.sp_nav_link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  letter-spacing: 1px;
}
.sp_nav_link span {
  display: block;
  font-size: 11px;
  color: var(--key_color_text);
  letter-spacing: 3px;
  margin-top: 4px;
}
.sp_nav_entry a {
  display: block;
  background-image: url("../img/bg_gradient_blue.png");
  background-size: cover;
  background-position: center;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 4px;
  padding: 16px 60px;
  border-radius: 40px;
  text-decoration: none;
}

/* SP header ENTRY button */
.sp_header_entry {
  display: none;
  background-image: url("../img/bg_gradient_blue.png");
  background-size: cover;
  background-position: center;
  background-color: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  .hamburger_btn {
    display: flex;
  }
  .sp_header_entry {
    display: inline-block;
  }
  .sp_nav_overlay {
    display: block;
  }
  /* 通常ナビを非表示 */
  .navi_box {
    display: none !important;
  }
  /* ヘッダーをロゴ＋ENTRY＋ハンバーガーの1行に */
  .header_block {
    grid-template-columns: 1fr auto 44px;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
  }
  /* SPヘッダー固定 */
  header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background: #fff;
  }
  body {
    padding-top: 68px;
  }
}
header *, header *::before, header *::after {
  border-left: none !important;
  outline: none !important;
}

/*左サイドバー（COMPANY / WORK / PEOPLE / RECRUIT）
---------------------------------------------------------------------------------------------------------------------------*/
.title_box {
  padding-top: 200px; /* 臨床経験〜ラベルの開始位置に揃える */
}
.title_box h2 {
  color: #333; /* 会社を知る → ダーク */
}
.title_box h3 {
  color: var(--key_color_text) !important;
  font-family: 'Lexend Deca', sans-serif !important;
  font-weight: 600 !important;
}
/* 「獣医療の可能性を広げる環境」サブテキスト → medium */
.title_box h2 span {
  font-weight: 500 !important;
}
/* 左メニューリスト（仕事を知る / 人を知る / 採用情報）→ medium */
.title_box ul li a {
  font-weight: 500 !important;
}

/*メインカラー（ティール）
---------------------------------------------------------------------------------------------------------------------------*/
:root {
  --key_color_text:        #6DC6D5;
  --key_color_back:        #6DC6D5;
  --key_color_light:       #E2F4F7;
  --key_color_mid:         #A8DDE5;
  --key_color_back_entry:  transparent;
  --key_color_back_entry_hover: transparent;
}

/* ナビゲーション文字サイズ */
nav ul li a {
  font-size: 20px !important;
  font-weight: 500 !important;
}
nav ul li a span {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 2px;
}

/* ENTRYボタン：ao_grad.png背景＋文字拡大 */
.entry_btn a {
  background-image: url("../img/bg_gradient_blue.png") !important;
  background-color: transparent !important;
  background-size: cover !important;
  background-position: center !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: 4px !important;
  border-radius: 10px !important;
  padding: 16px 36px !important;
}
.entry_btn a::before {
  background-image: url("../img/bg_gradient_blue.png") !important;
  background-color: transparent !important;
  background-size: cover !important;
  filter: brightness(0.9);
}

/*トップページのヒーロー画像（単一・オーバーレイなし）
---------------------------------------------------------------------------------------------------------------------------*/
.slide_hero {
  overflow: hidden; /* 犬の底辺を境界線でクリップ */
}
.slide_hero_img:nth-child(2) {
  background-image: url("../img/hero_fv.jpg");
  background-position: center 70%;
  opacity: 1;
  animation: none;
}
.slide_hero_img:nth-child(3),
.slide_hero_img:nth-child(4) {
  display: none;
}
/* オーバーレイなし */
.slide_hero::after {
  display: none;
}
.slide_hero_box { z-index: 2; }

/* キャッチ＋犬を一体化するコンテナ */
.hero_left_block {
  position: absolute;
  bottom: 0;
  left: -20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 青あしらいSVGパネル
---------------------------------------------------------------------------------------------------------------------------*/
.hero_panel {
  position: relative;
  width: 500px;
  z-index: 3;
}
.hero_panel_bg {
  width: 100%;
  height: auto;
  display: block;
}
.hero_panel_content {
  position: absolute;
  bottom: 18%;
  left: 10%;
  right: 6%;
}
.hero_panel h2 {
  font-size: 39px;
  line-height: 1.4em;
  letter-spacing: 0.5px;
  color: #1a3c48;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: none;
}
.hero_panel .hero_sub {
  font-size: 21px;
  line-height: 1.6em;
  color: #1a3c48;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* 犬イラスト（ヒーロー下辺にまたがる）
---------------------------------------------------------------------------------------------------------------------------*/
.hero_dog {
  position: relative;
  width: 240px;
  height: auto;
  pointer-events: none;
  z-index: 4;
  align-self: flex-start;
  margin-top: -100px;
}

/* バッジ（追加.svg 単体）
---------------------------------------------------------------------------------------------------------------------------*/
.hero_badges_wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 0;
  padding: 0 40px;
}
.hero_badges_img {
  position: absolute;
  top: -155px;
  right: -70px;
  width: 480px;
  height: auto;
  z-index: 10;
}

@media screen and (max-width: 1000px) {
  .hero_left_block {
    left: 30px;
  }
  .hero_panel {
    width: 340px;
  }
  .hero_panel h2 {
    font-size: 26px;
    letter-spacing: 0px;
  }
  .hero_panel .hero_sub {
    font-size: 14px;
  }
  .hero_dog {
    width: 190px;
    margin-top: -80px;
  }
  .hero_badges_img {
    width: 280px;
    top: -120px;
    right: 16px;
  }
}
@media screen and (max-width: 480px) {
  .hero_left_block {
    left: 0px;
  }
  .hero_panel {
    width: 240px;
  }
  .hero_panel h2 {
    font-size: 19px;
    letter-spacing: 0px;
  }
  .hero_panel .hero_sub {
    font-size: 11px;
  }
  .hero_dog {
    width: 130px;
    margin-top: -60px;
  }
  .hero_badges_img {
    width: 210px;
    top: -110px;
    right: 5px;
  }
}

/*各カテゴリーのアイキャッチ画像
---------------------------------------------------------------------------------------------------------------------------*/
#company .eye_catch {
  background-image: url("../img/22367711_s.jpg");
  background-position: center bottom;
}
#work .eye_catch {
  background-image: url("../img/hero_slide1.jpg");
  background-position: center center;
}
#people .eye_catch {
  background-image: url("../img/hero_slide2.jpeg");
  background-position: center top;
}
#recruit .eye_catch {
  background-image: url("../img/hero_slide3.jpeg");
  background-position: center top;
}

/*パララックス画像
---------------------------------------------------------------------------------------------------------------------------*/
.parallax {
  background-image: url("../img/parallax.jpg");
  background-position: center;
}

/*ロゴ画像
---------------------------------------------------------------------------------------------------------------------------*/
.header_logo {
  max-height: 50px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  margin-left: 20px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .header_logo {
    max-height: 40px;
    max-width: 160px;
    margin-left: 0;
    margin-bottom: 10px;
  }
}

/*セクションラベル（PHILOSOPHY / FLOW / INTERVIEW）
---------------------------------------------------------------------------------------------------------------------------*/
.section_label_en {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: var(--key_color_text);
  letter-spacing: 2px;
  margin-bottom: 0.6em;
  border-left: 3px solid var(--key_color_back);
  padding-left: 10px;
}

/*獣医師の新しい働き方（4つの特徴）
---------------------------------------------------------------------------------------------------------------------------*/
.features_section {
  background: transparent;
  padding: 200px 0 20px;
}
.features_inner {
  padding: 0 40px 0 0;
  text-align: left;
  transform: scale(0.88);
  transform-origin: top left;
}
.features_label {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 0.2em;
}
.features_section *::before,
.features_section *::after {
  display: none !important;
}
.features_title {
  font-size: 34px;
  color: #333;
  font-weight: bold;
  margin-bottom: 60px;
  letter-spacing: 1px;
}
.features_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 72px;
}
.feature_card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-align: left;
}
.feature_card_img {
  background: transparent;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 24px;
  overflow: hidden;
}
.feature_card_img img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.feature_card h3::before,
.feature_card h3::after {
  display: none !important;
}
.feature_card h3 {
  font-size: 23px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
  margin-right: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  height: auto !important;
  border-radius: 0 !important;
  text-indent: 0 !important;
  z-index: auto !important;
  position: static !important;
  line-height: 1.5em;
  letter-spacing: 0.3px;
  writing-mode: initial;
}
.feature_card p {
  font-size: 15px;
  font-weight: 500;
  color: #777;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .features_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .features_inner {
    padding: 0 20px 0 10px;
  }
  .features_title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .feature_card_img img {
    height: 140px;
  }
}
@media screen and (max-width: 480px) {
  .features_section {
    padding: 40px 0 40px;
  }
  .features_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .feature_card_img {
    padding: 8px;
    margin-bottom: 10px;
  }
  .feature_card_img img {
    height: auto;
    width: 100%;
  }
  .feature_card h3 {
    font-size: 13px;
  }
}

/*PHILOSOPHY インフォグラフィック
---------------------------------------------------------------------------------------------------------------------------*/
/* PHILOSOPHYセクション 幅制御 */
.philosophy_copy,
.philosophy_diagram_wrap {
  padding-right: calc(12% + 40px) !important;
}
.philosophy_copy {
  margin-top: 12px !important;
  padding-left: 0 !important;
}

/* PHILOSOPHYセクション タイトル */
.philosophy_label_en {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--key_color_text);
  letter-spacing: 2px;
  margin-bottom: 0.4em;
  display: block;
}
.philosophy_label_ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0;
  margin-left: 8px;
}
.philosophy_h2 {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #222 !important;
  line-height: 1.5em !important;
  margin-bottom: 16px !important;
}

/* PHILOSOPHYインフォグラフィック SVG */
.philosophy_diagram_wrap {
  margin: 20px 0 40px;
}
.philosophy_diagram_img {
  width: 100%;
  height: auto;
  display: block;
}
.philosophy_diagram_img--sp {
  display: none;
}
/* SP上部表示用の図：PC非表示 */
.philosophy_diagram_wrap--sp-top {
  display: none;
}
@media screen and (max-width: 640px) {
  .philosophy_diagram_img--pc { display: none; }
  .philosophy_diagram_img--sp { display: block; }
  /* SP上部の図を表示、元の図は非表示 */
  .philosophy_diagram_wrap--sp-top { display: block; margin-top: 12px !important; margin-bottom: 16px !important; padding-right: 0 !important; }
  .philosophy_diagram_wrap:not(.philosophy_diagram_wrap--sp-top) .philosophy_diagram_img--sp { display: none; }
}
.philosophy_diagram {
  background: var(--key_color_light);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 0 20px 0 40px;
}
.philosophy_diagram_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pd_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.pd_icon {
  font-size: 40px;
  line-height: 1;
}
.pd_item p {
  font-size: 13px;
  font-weight: bold;
  color: #555;
  text-align: center;
  margin: 0;
}
.pd_balloon {
  background: #fff;
  border: 2px solid var(--key_color_back);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--key_color_text);
  font-weight: bold;
  white-space: nowrap;
}
.pd_chat_icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.pd_service {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(33,168,191,0.18);
  min-width: 160px;
}
.pd_logo_img {
  width: 100px;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 8px;
}
.pd_logo_wrap {
  display: flex;
  justify-content: center;
}
.pd_count {
  font-size: 12px;
  color: #888;
  line-height: 1.6em;
}
.pd_count span {
  font-size: 18px;
  font-weight: bold;
  color: var(--key_color_text);
  display: block;
}
.pd_count small {
  font-size: 10px;
}
.pd_arrow {
  font-size: 28px;
  color: var(--key_color_text);
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .philosophy_diagram {
    margin: 0 0 0 0;
    padding: 24px 16px;
  }
  .pd_arrow {
    transform: rotate(90deg);
  }
  .philosophy_diagram_inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .pd_balloon {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/*DATA 社内データ
---------------------------------------------------------------------------------------------------------------------------*/
/* DATAセクション全体の幅制御 */
.data_section_wrap {
  padding-right: calc(12% + 40px) !important;
  margin-top: 80px;
}

/* DATAタイトル */
.data_label_en {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--key_color_text);
  letter-spacing: 2px;
  margin-bottom: 0.3em;
  display: block;
  position: relative;
  top: -10px;
}
.data_label_ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0;
  margin-left: 8px;
}
.data_subtitle_v2 {
  font-size: 14px;
  color: #555;
  line-height: 1.8em;
  margin-top: 30px;
  margin-bottom: 32px;
}

/* カードグリッド v2 */
.data_grid_v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  row-gap: 28px;
}
.data_card_v2 {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: url("../img/assets/bg_section_frame2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 330 / 286;
}
.data_card_v2--grad {
  background-image: url("../img/assets/bg_section_frame3.png");
}
/* グラデーションカードの数値テキストをより濃い青に */
.data_card_v2--grad .data_card_v2_bottom .data_v2_num,
.data_card_v2--grad .data_card_v2_bottom .data_v2_num_lg,
.data_card_v2--grad .data_card_v2_bottom .data_v2_unit,
.data_card_v2--grad .data_card_v2_bottom .data_v2_prefix,
.data_card_v2--grad .data_card_v2_bottom .data_v2_dammy {
  color: #21A8BF;
}
/* SVG imgは不要 */
.data_card_v2_bgsvg {
  display: none;
}
.data_card_v2_top {
  background: transparent;
  padding: 8% 12px 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: none;
  min-height: 145px;
}
.data_card_v2_bottom {
  background: transparent;
  padding: 8% 12px 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
}
.data_icon_svg {
  width: 60px;
  height: auto;
}
.data_icon_img {
  width: 28%;
  max-width: 80px;
  height: auto;
  display: block;
}
/* 多用な働き方実践率アイコン（icon-05）: 横長SVGなので高さ基準で拡大 */
.data_grid_v2 .data_card_v2:nth-child(5) .data_icon_img {
  height: 54px;
  width: auto;
  max-width: none;
}
.data_card_v2_label {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.4em;
  margin-top: 6px;
}
.data_v2_vals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.data_v2_val_item {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
/* 在籍専門家数用: タグ上・数字下の縦積み2列 */
.data_v2_val_item--stacked {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}
.data_v2_val_item--stacked .data_v2_num_wrap {
  justify-content: center;
}
.data_v2_val_item--stacked .data_v2_tag {
  margin-right: 16px;
}
.data_v2_num_wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.data_v2_tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--key_color_text);
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  line-height: 1.5;
}
.data_v2_prefix {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.data_v2_num {
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  font-family: 'Lexend Deca', sans-serif;
}
.data_v2_num_lg {
  font-size: 60px;
}
.data_v2_unit {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.data_v2_dammy {
  font-size: 38px !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
  color: #fff;
}
.data_v2_note {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.6em;
  margin-top: 2px;
}
.data_v2_note--below {
  display: block;
  font-size: 12px;
  color: #555;
  text-align: left;
  line-height: 1.6em;
  margin-top: 8px;
}
/* グラデーションカード（累計相談数・運営年数・リモート勤務率）のテキスト */
.data_card_v2--grad .data_v2_num,
.data_card_v2--grad .data_v2_unit,
.data_card_v2--grad .data_v2_prefix {
  color: var(--key_color_text);
}
.data_card_v2--grad .data_v2_tag {
  color: var(--key_color_text);
  background: rgba(33,168,191,0.15);
}
.data_card_v2--grad .data_v2_note {
  color: #555;
}
.data_card_v2--grad .data_v2_dammy {
  color: var(--key_color_text);
}

.data_subtitle {
  font-size: 13px;
  color: #888;
  margin: -10px 0 20px 40px;
  letter-spacing: 1px;
}
.data_grid_new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-left: 20px;
  margin-top: 0;
}
.data_card_new {
  background: var(--key_color_back);
  border-radius: 16px;
  padding: 28px 20px 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.data_card_new::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.data_card_wide {
  grid-column: span 1;
}
.data_card_accent {
  background: #197D8E;
}
.data_card_title {
  font-size: 12px;
  font-weight: bold;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  line-height: 1.5em;
  margin-bottom: 4px;
}
.data_card_values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.data_val_divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}
.data_val_item {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.data_val_prefix {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.data_val_num {
  font-size: 44px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.data_val_unit {
  font-size: 16px;
  font-weight: bold;
  color: rgba(255,255,255,0.9);
}
.data_val_label {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  width: 100%;
  text-align: center;
}
.data_dammy {
  font-size: 22px !important;
  letter-spacing: 2px;
}
.data_note {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5em;
  text-align: center;
  margin-top: 6px;
}
@media screen and (max-width: 1000px) {
  .data_grid_new {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
    gap: 12px;
  }
  .data_subtitle {
    margin-left: 20px;
  }
  .data_val_num {
    font-size: 36px;
  }
  .data_card_new {
    padding: 20px 14px 16px;
  }
}
@media screen and (max-width: 480px) {
  .data_grid_new {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .data_val_num {
    font-size: 28px;
  }
  .data_card_title {
    font-size: 11px;
  }
}

/* COMPANYセクション：title_boxをfeatures_innerの「臨床経験…」テキストに揃える */
#company .title_box {
  padding-top: 200px;
}

/* PEOPLEセクション：左メニューを写真上端に揃え、セクション上部に余白を設ける */
#people .title_box {
  padding-top: 80px;
}
/* PEOPLEセクション: 写真直下に白背景ボックス（右上角R） */
#people .page_box .copy {
  background-color: #FFF;
  border-top-right-radius: 50px;
  padding: 40px 40px 40px 10px;
  margin-top: 0;
}
#people .page_box {
  padding-top: 80px;
}

/* RECRUITセクション：左メニューを写真上端に揃える */
#recruit .title_box {
  padding-top: 80px;
}
#recruit .page_box {
  padding-top: 80px;
}

/* RECRUITリード文 */
.recruit_lead {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  padding: 24px calc(12% + 40px) 0 0;
  margin: 0;
}

/* RECRUITタブ */
.recruit_layout {
  padding-right: calc(12% + 40px) !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  margin-top: 40px !important;
}
/* タブボタン */
.tab_buttons {
  display: flex;
  gap: 6px;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
}
.tab_btn {
  flex: 1;
  background: #EBEBEB;
  color: #888;
  border: none;
  padding: 20px 12px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  transition: background 0.2s, color 0.2s;
}
.tab_btn.active {
  background: var(--key_color_text);
  color: #FFF;
}
.tab_content {
  display: none;
  background: var(--key_color_light);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.tab_content.active {
  display: block;
}

/* テーブルの罫線：::before で左右インセット */
#recruit .table_recruit th {
  border-top: none;
  padding-left: 27px;
  padding-right: 16px;
  position: relative;
}
#recruit .table_recruit {
  margin-left: 0 !important;
}
#recruit .table_recruit td {
  border-top: none;
  padding-right: 27px;
  position: relative;
}
#recruit .table_recruit tr:first-child th,
#recruit .table_recruit tr:first-child td {
  padding-top: 38px;
}
#recruit .table_recruit tr:last-child th,
#recruit .table_recruit tr:last-child td {
  padding-bottom: 38px;
}
/* th側：青ティール、左端を文字位置(27px)から */
#recruit .table_recruit tr:not(:first-child) th::before {
  content: '';
  position: absolute;
  top: 0;
  left: 27px;
  right: 0;
  height: 1.5px;
  background: var(--key_color_mid);
}
/* td側：白、右端を左と同じ余白(27px)で揃える */
#recruit .table_recruit tr:not(:first-child) td::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 27px;
  height: 1px;
  background: #fff;
}

/* 採用フロー */
.recruit_flow {
  margin-bottom: 0;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
}
.recruit_flow_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  z-index: 0;
}
.recruit_flow_label {
  display: none;
}
.recruit_flow_steps {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}
.recruit_step {
  background: transparent;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  padding: 12px 4px;
  text-align: center;
  position: relative;
  flex: 98;
  white-space: normal;
  border-right: none;
  clip-path: none;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* 最初のステップはSVGの矢印分だけ広い */
.recruit_flow_steps .recruit_step:first-child {
  flex: 112;
}
.recruit_step::after {
  display: none;
}
.recruit_step--last {
  background: transparent;
}
.recruit_step small {
  display: block;
  font-size: 8px;
  font-weight: normal;
  opacity: 0.9;
  white-space: normal;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .recruit_layout {
    padding-right: 16px !important;
  }
  .tab_btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .recruit_step {
    font-size: 11px;
    padding: 8px 3px;
  }

  /* 募集要項テーブル SP：見出し上・本文下の縦積みレイアウト */
  #recruit .table_recruit,
  #recruit .table_recruit tbody { display: block !important; }
  #recruit .table_recruit tr {
    display: block !important;
  }
  #recruit .table_recruit th {
    display: block !important;
    width: 100% !important;
    padding: 10px 16px 2px 16px !important;
    box-sizing: border-box;
    border: none !important;
    font-size: 13px !important;
  }
  #recruit .table_recruit th br {
    display: none !important;
  }
  #recruit .table_recruit td {
    display: block !important;
    width: 100% !important;
    padding: 2px 16px 10px 16px !important;
    box-sizing: border-box;
    border: none !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }
  #recruit .table_recruit tr:first-child th { padding-top: 24px !important; }
  #recruit .table_recruit tr:first-child td { padding-top: 2px !important; }
  #recruit .table_recruit tr:last-child th { padding-bottom: 2px !important; }
  #recruit .table_recruit tr:last-child td { padding-bottom: 24px !important; }
  /* 罫線：th側のみ左右インセット＋グラデーション、td側は非表示 */
  #recruit .table_recruit tr:not(:first-child) th::before {
    left: 16px !important;
    right: 16px !important;
    background: linear-gradient(to right, var(--key_color_text) 0%, var(--key_color_text) 50%, #fff 50%, #fff 100%) !important;
  }
  #recruit .table_recruit tr:not(:first-child) td::before {
    display: none !important;
  }
  /* 採用フロー：テキストを少し右にずらす */
  .recruit_flow_steps {
    padding-left: 5px;
  }
  /* 採用情報リード文：右の余白を他に合わせる */
  .recruit_lead {
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  /* td内のrecruit_flowがテーブルを広げないよう、tdをブロック化 */
  td:has(.recruit_flow) {
    display: block;
    overflow: hidden;
    max-width: calc(100vw - 80px);
  }
  .recruit_flow {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  /* imgは非表示にしてCSSバックグラウンドとして使う */
  .recruit_flow_bg {
    display: none;
  }
  /* stepsにSVGを背景として直接適用（一体でスクロール） */
  .recruit_flow_steps {
    width: 640px;
    height: 80px;
    display: flex;
    align-items: center;
    background-image: url('../img/assets/flow.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: static;
    z-index: auto;
  }
  .recruit_flow_steps .recruit_step,
  .recruit_flow_steps .recruit_step:first-child {
    font-size: 12px;
    flex: 1 0 70px;
    padding: 8px 6px;
  }
  .recruit_step--last {
    flex: 1 0 70px !important;
  }
}

/* WORKセクション：左WORK文字を写真上端（セクション上端）に揃える */
#work .title_box {
  padding-top: 80px;
}
/* DATA→WORKの余白（sectionレベル） */
#work .page_box {
  padding-top: 80px;
}

/*仕事の流れ（FLOW）タブなし
---------------------------------------------------------------------------------------------------------------------------*/
/* FLOWレイアウト：幅ルール統一 */
.flow_layout {
  padding-right: calc(12% + 40px) !important;
  margin-top: 24px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* FLOW見出し */
.flow_outer {
  margin-top: 80px;
}

/* WORKセクション: 写真直下に白背景ボックス（右上角R） */
#work .flow_outer {
  background-color: #FFF;
  border-top-right-radius: 50px;
  margin-top: 0;
  padding: 40px 0 40px 0;
}

/* FLOW見出し */
.flow_label_en {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--key_color_text);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.flow_label_ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  letter-spacing: 2px;
  margin-left: 12px;
}

.flow_steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  margin-bottom: 48px;
  position: relative;
}

/* フロー間コネクターライン */
.flow_connector {
  width: 20px;
  height: 36px;
  background: var(--key_color_mid);
  margin: 0 auto;
  opacity: 0.3;
}
.flow_step {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2.5px solid #D0EEF3;
  max-height: 200px;
}
.flow_step_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}
.flow_step_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  display: block;
}
.flow_step_content {
  padding: 12px 20px 12px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flow_step_num {
  font-size: 80px;
  font-weight: bold;
  font-style: italic;
  color: var(--key_color_light);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
  position: relative;
}
.flow_step_content h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 0.4em;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.4em;
}
.flow_step_content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6em;
}

/* 契約社員の追加業務 */
.keiyaku_duties {
  background: transparent;
  border-radius: 0;
  padding: 32px 0;
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}
.keiyaku_duties_intro {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  line-height: 1.8em;
}
.keiyaku_duties ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.keiyaku_duties ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.7em;
  padding-left: 1.4em;
  position: relative;
}
.keiyaku_duties ul li::before {
  content: "■";
  color: var(--key_color_text);
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 0.3em;
}

@media screen and (max-width: 1000px) {
  .flow_step {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .flow_step_img {
    height: 160px;
    aspect-ratio: unset;
  }
  .flow_step_content {
    padding: 16px 20px 16px;
  }
  .flow_step_num {
    font-size: 60px;
  }
  .flow_step_content h4 {
    font-size: 17px;
  }
  .keiyaku_duties {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .flow_steps {
    gap: 0;
  }
  .flow_step {
    gap: 0;
  }
  .flow_step_img {
    aspect-ratio: 16 / 9;
  }
  .flow_step_num {
    display: none;
  }
  .flow_step_content {
    padding: 16px 20px 20px;
  }
  .flow_step_content h4 {
    font-size: 15px;
  }
}

/*INTERVIEW見出し
---------------------------------------------------------------------------------------------------------------------------*/
.interview_label_en {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--key_color_text);
  letter-spacing: 2px;
  margin-bottom: 0;
}
.interview_label_ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  letter-spacing: 2px;
  margin-left: 12px;
}

/*INTERVIEWタブセクション（グラデーション青背景）
---------------------------------------------------------------------------------------------------------------------------*/
.interview_tabs_section {
  background: #fff;
  padding: 0 40px;
  margin-right: calc(12% + 40px);
  position: sticky;
  top: 0;
  z-index: 40;
  transform: none !important; /* fade_in.upのtransformがstickyを壊すため強制解除 */
  opacity: 1 !important;
}
.interview_tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 20px;
}
.interview_tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 16px;
  background: #ebebeb;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transition: background 0.2s;
}
.interview_tab .itab_role {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888;
  white-space: nowrap;
}
.interview_tab .itab_name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #888;
}
.interview_tab .itab_desc {
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
}
.interview_tab.active {
  background: var(--key_color_text);
}
.interview_tab.active .itab_role,
.interview_tab.active .itab_name,
.interview_tab.active .itab_desc {
  color: #fff;
}

/*INTERVIEWコンテンツエリア（薄いブルー背景：プロフィール＋Q&A）
---------------------------------------------------------------------------------------------------------------------------*/
.interview_content_section {
  background: var(--key_color_light);
  padding-bottom: 48px;
  margin-right: calc(12% + 40px);
}
.interview_content_section .layout {
  margin-top: 0 !important;
  margin-left: 40px !important;
  margin-right: 40px !important;
  padding-top: 40px;
}
.people_voice_box {
  align-items: center;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  margin-bottom: 40px;
}
.people_voice_box .order1 { order: 1 !important; }
.people_voice_box .order2 { order: 2 !important; }
.people_voice_box h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 16px;
}
.people_voice_name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}
.people_voice_name span {
  font-size: 0.6em;
  font-weight: normal;
}
.people_voice_since {
  font-size: 13px;
  color: #777;
  margin: 0;
}
.img_mb img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  display: block;
}

/*Q&Aボックス（白ベタ・黒文字、背景は薄いブルー）
---------------------------------------------------------------------------------------------------------------------------*/
.interview_qa {
  margin-bottom: 32px;
  position: relative;
}
.interview_qa_q {
  background: #fff;
  border: none;
  border-radius: 8px;
  text-align: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  text-indent: 0 !important;
}
.interview_qa_q::before {
  display: none !important;
}
.interview_qa p {
  font-size: 14px;
  color: #555;
  line-height: 1.9em;
  margin-bottom: 0;
}

/*SCHEDULEセクション（薄いブルー背景）
---------------------------------------------------------------------------------------------------------------------------*/
/* タイムライン縦線：border-leftを全行::beforeに置き換えて位置を統一 */
.schedule_section .table_timeline td {
  border-left: none !important;
  position: relative;
}
.schedule_section .table_timeline td::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--key_color_back);
}
/* 最初の行のみドット位置（top:28px）から縦線を開始 */
.schedule_section .table_timeline tr:first-child td::before {
  top: 28px;
}
/* 最終行：上からドット中心まで線を引く（下には出さない） */
.schedule_section .table_timeline tr:last-child td::before {
  bottom: auto;
  height: 28px;
}

/* SCHEDULEタイムライン文字色 */
.schedule_section .table_timeline th h4 {
  color: var(--key_color_text);
  font-weight: 700;
  font-size: 18px;
}
.schedule_section .table_timeline td h4 {
  color: #333;
  font-weight: 700;
}
.schedule_section .table_timeline td p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.schedule_section {
  background: var(--key_color_light);
  padding: 20px 40px 80px;
  margin-top: 0;
  margin-right: calc(12% + 40px);
}
.schedule_section .layout {
  margin-top: 0 !important;
}
.schedule_label_en {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--key_color_text);
  letter-spacing: 2px;
  margin-bottom: 48px;
  display: block;
}
.schedule_label_ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  letter-spacing: 2px;
  margin-left: 12px;
}
@media screen and (max-width: 1000px) {
  .interview_tabs_section {
    padding: 0 20px;
    margin-right: 0;
    top: 68px; /* SP固定ヘッダー分オフセット */
  }
  .tab_buttons {
    top: 68px; /* SP固定ヘッダー分オフセット */
  }
  .interview_tabs {
    padding-top: 2px;
  }
  #people .page_box .copy {
    padding-bottom: 12px !important;
  }
  .interview_content_section {
    margin-right: 0;
    padding-right: 20px;
  }
  .schedule_section {
    padding: 16px 0 60px 24px;
    margin-right: 0;
  }
  .interview_content_section .layout {
    padding-top: 20px;
  }
  .interview_content_section {
    padding-bottom: 20px;
  }
  .people_voice_box h2 {
    font-size: 20px;
  }
  /* interview SP: 写真上・テキスト下（縦1列） */
  .people_voice_box {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .people_voice_box .order1 { order: 2 !important; }
  .people_voice_box .order2 { order: 1 !important; }
  /* RECRUIT 左メニュー SP: 写真上端に揃える */
  #recruit .title_box {
    padding-top: 0;
  }
  #recruit .page_box {
    padding-top: 0;
  }
  /* FLOW・INTERVIEW 上余白を詰める */
  .flow_outer {
    margin-top: 32px;
  }
  #work .flow_outer {
    margin-top: 0;
    border-top-right-radius: 20px;
    padding: 24px 0 24px 0;
  }
  #people .page_box .copy {
    padding-top: 32px;
    border-top-right-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .interview_tab .itab_name {
    font-size: 18px;
  }
  .interview_tab .itab_role {
    font-size: 13px;
    letter-spacing: 0;
  }
  .interview_tab {
    padding: 14px 8px;
    gap: 4px;
  }
}

/*エントリーフォーム（刷新）
---------------------------------------------------------------------------------------------------------------------------*/
.entry_block {
  background-image: url("../img/bg_gradient_blue2.png") !important;
  background-color: transparent !important;
  background-size: cover !important;
  background-position: center center !important;
  margin-top: 280px !important;
  padding: 80px 0 100px !important;
  text-align: left !important;
}
.entry_inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 172px 0 300px;
}
.entry_heading {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 72px !important;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 6px;
  margin: 0 0 16px 0;
  line-height: 1;
  text-align: center;
}
.entry_desc {
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 48px;
  text-align: center;
}
.entry_form_block {
  max-width: 100%;
  margin: 0;
  text-align: left;
}
.form_group {
  margin-bottom: 24px;
}
.form_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.form_group label.form_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.form_required {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  background: #0062A2;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.form_group input[type="text"],
.form_group input[type="tel"],
.form_group input[type="email"],
.form_group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  outline: none;
}
.form_group input:focus,
.form_group textarea:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}
.form_group input::placeholder,
.form_group textarea::placeholder,
.form_birth_y::placeholder,
.form_birth_md::placeholder {
  color: #aaa;
}
.form_group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
/* チェックボックス・ラジオボタン */
.form_check_group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.form_check_label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 15px;
  cursor: pointer;
}
.form_check_label input[type="checkbox"],
.form_check_label input[type="radio"] {
  display: none;
}
.form_check_custom {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.form_check_label input[type="radio"] + .form_check_custom {
  border-radius: 50%;
}
.form_check_label input:checked + .form_check_custom {
  background: #2196a8;
  border-color: #2196a8;
}
.form_check_label input:checked + .form_check_custom::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
/* 生年月日 */
.form_birth_group {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 15px;
}
.form_birth_y {
  width: 120px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #333;
  box-sizing: border-box;
}
.form_birth_md {
  width: 80px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #333;
  box-sizing: border-box;
  text-align: left;
}
/* 送信ボタン */
.form_submit {
  text-align: center;
  margin-top: 40px;
}
.form_submit button {
  display: inline-block;
  padding: 20px 80px;
  background: #0062A2;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 3px;
  font-family: inherit;
  transition: 0.3s;
}
.form_submit button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ============================================================
   レスポンシブ（タブレット: max-width 1000px）
   ============================================================ */
@media screen and (max-width: 1000px) {

  /* --- COMPANYの左メニューを「臨床経験を」テキストに揃える --- */
  #company .title_box {
    padding-top: 40px;
  }

  /* --- PHILOSOPHY --- */
  .philosophy_copy,
  .philosophy_diagram_wrap {
    padding-right: 20px !important;
  }
  .philosophy_copy {
    padding-left: 0 !important;
  }
  .philosophy_diagram_wrap {
    margin-top: 8px !important;
  }
  .philosophy_label_en {
    font-size: 22px;
  }
  .philosophy_label_ja {
    font-size: 14px;
  }
  .philosophy_h2 {
    font-size: 22px !important;
    white-space: normal !important;
  }

  /* --- DATA v2 --- */
  .data_section_wrap {
    padding-right: 20px !important;
  }
  .data_label_en {
    font-size: 22px;
  }
  .data_label_ja {
    font-size: 14px;
  }
  .data_grid_v2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .data_card_v2_top {
    padding: 16px 10px 8px;
  }
  .data_card_v2_bottom {
    padding: 8px 10px 16px;
  }

  /* --- features --- */
  .features_inner {
    transform: scale(1);
    padding: 0 20px 0 0;
  }
  .feature_card_img {
    padding: 0 !important;
  }
  .features_label {
    font-size: 15px;
  }
  .features_title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .features_grid {
    gap: 24px 16px;
  }
  .feature_card h3 {
    font-size: 18px;
  }
  .feature_card p {
    font-size: 13px;
  }

  /* --- 左メニューの大文字（COMPANY/WORK等）：スマホでは極薄グレーに --- */
  .title_box h3 {
    color: #e8e8e8 !important;
  }

  /* --- FLOW・INTERVIEW：右余白をDATAの6BOXに合わせる --- */
  .flow_layout {
    padding-right: 16px !important;
    margin-right: 0 !important;
  }
  .interview_tabs_section {
    padding: 0 16px;
  }
  .interview_content_section {
    padding-left: 0;
    padding-right: 0;
  }
  .interview_content_section .layout {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .keiyaku_duties {
    padding: 20px 0;
  }

  /* --- Q&A：白BOX縦中央 / 上下パディング詰め --- */
  .interview_qa_q {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px !important;
    margin-bottom: 20px;
    min-height: unset;
    line-height: 1.4;
  }
  .interview_qa p {
    margin-top: 16px;
    padding-top: 0;
  }
}

/* ============================================================
   レスポンシブ（タブレット小〜スマホ横: max-width 640px）
   DATA は2列にする
   ============================================================ */
@media screen and (max-width: 640px) {
  .data_grid_v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ============================================================
   レスポンシブ（スマホ: max-width 480px）
   ============================================================ */
@media screen and (max-width: 480px) {

  /* --- FV: 青背景SVGのみ位置調整（テキスト・犬はそのまま） --- */
  .hero_panel_bg {
    transform: translateY(-10px);
  }
  .hero_panel_content {
    bottom: 26%;
  }
  .hero_badges_img {
    top: -70px;
  }
  .hero_badges_wrap {
    padding: 0 12px;
    height: 70px;
  }

  /* --- PHILOSOPHY --- */
  .philosophy_label_en {
    font-size: 18px;
  }
  .philosophy_h2 {
    font-size: 18px !important;
    line-height: 1.6em !important;
  }
  .philosophy_copy {
    margin-top: 32px !important;
  }
  .philosophy_diagram_wrap {
    padding-right: 16px !important;
    margin-top: 8px !important;
  }
  .philosophy_diagram_wrap--sp-top {
    padding-right: 0 !important;
  }
  /* --- COMPANY / DATA 上余白・見出し下余白 --- */
  .philosophy_diagram_wrap:not(.philosophy_diagram_wrap--sp-top) {
    margin-bottom: 0 !important;
  }
  #company_info {
    padding-top: 16px !important;
  }
  #data {
    padding-top: 24px !important;
  }
  /* COMPANY見出し下余白を詰める */
  #company_info .copy {
    padding-bottom: 12px !important;
  }
  /* DATA見出し下余白を詰める */
  .data_label_en {
    font-size: 18px;
    margin-bottom: 0.1em !important;
  }
  .data_subtitle_v2 {
    font-size: 13px;
    padding-right: 20px !important;
    margin-top: 12px !important;
    margin-bottom: 20px !important;
  }

  /* --- COMPANY本文・テーブル右余白 --- */
  .company_info_lead {
    padding-right: 20px !important;
  }
  .table_company_wrap {
    padding-right: 20px !important;
  }
  /* テーブル：見出し｜値の横並び（1組1行）レイアウト */
  .table_company,
  .table_company tbody {
    display: block !important;
  }
  .table_company tr {
    display: flex !important;
    flex-wrap: wrap !important;
    border: none !important;
    padding: 0 !important;
  }
  .table_company th,
  .table_company td {
    display: block !important;
    box-sizing: border-box !important;
    padding: 8px 8px 8px 0 !important;
    font-size: 13px !important;
    border: none !important;
    border-bottom: 1px solid #aaaaaa !important;
    width: auto !important;
  }
  /* 値列は薄いグレー */
  .table_company td {
    border-bottom-color: #e0e0e0 !important;
  }
  /* 最終行は下線なし */
  .table_company tr:last-child th,
  .table_company tr:last-child td {
    border-bottom: none !important;
  }
  /* 見出し：固定幅 */
  .table_company th {
    flex: 0 0 100px !important;
    min-width: 0 !important;
    font-weight: bold !important;
    color: #333 !important;
  }
  /* 値：calc(100% - 見出し幅)を指定して1行1組に強制 */
  .table_company td {
    flex: 1 0 calc(100% - 100px) !important;
    min-width: 0 !important;
    color: #555 !important;
  }
  /* 2組目（同行内の2つ目ペア）：罫線はborder-bottomで統一 */
  .table_company th:nth-child(3) {
    padding-left: 0 !important;
    flex-basis: 100px !important;
  }
  /* URL文字サイズ縮小・はみ出し防止 */
  .table_company .td_url {
    font-size: 10px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  /* ::before の線をすべて無効化 */
  .table_company th::before,
  .table_company td::before {
    display: none !important;
  }

  /* --- DATA v2 --- */
  .data_section_wrap {
    padding-right: 0 !important;
    margin-top: 40px;
    padding-bottom: 0;
  }
  .data_grid_v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-right: 10px;
  }
  .data_card_v2 {
    aspect-ratio: unset;
    height: 148px;
    min-height: 0;
    overflow: hidden;
  }
  .data_card_v2_top {
    flex: none;
    justify-content: flex-end;
    padding: 10px 8px 14px;
    height: 90px;
    min-height: 0;
  }
  .data_card_v2_bottom {
    flex: 1;
    padding: 6px 8px 10px;
    justify-content: center;
  }
  .data_icon_img {
    width: 36px;
  }
  .data_card_v2_label {
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.3em;
  }
  /* note：グリッド外・フル幅（SP専用） */
  .data_v2_note--below {
    display: block;
    font-size: 10px;
    color: #555;
    text-align: left;
    line-height: 1.6em;
    margin-top: 6px;
    padding-right: 20px !important;
  }
  .data_v2_num {
    font-size: 22px;
  }
  .data_v2_num_lg {
    font-size: 26px;
  }
  .data_v2_dammy {
    font-size: 18px !important;
  }
  .data_v2_tag {
    font-size: 10px;
    padding: 2px 8px;
  }
  .data_v2_unit {
    font-size: 12px;
  }
  /* 在籍専門家数：獣医師・トレーナーを横並びに */
  .data_grid_v2 .data_card_v2:first-child .data_v2_vals {
    flex-wrap: nowrap;
    gap: 6px;
  }
  .data_grid_v2 .data_card_v2:first-child .data_v2_val_item--stacked {
    flex: 1;
  }
  .data_v2_val_item--stacked .data_v2_tag {
    margin-right: 0;
  }
  /* 多用な働き方実践率アイコン（SPでは小さく） */
  .data_grid_v2 .data_card_v2:nth-child(5) .data_icon_img {
    height: 28px;
    width: auto;
  }
  /* ユーザー満足度カード：アイコンは上から、ラベルは自然に下に続く */
  .data_grid_v2 .data_card_v2:nth-child(3) .data_card_v2_top {
    justify-content: flex-start;
    padding-top: 10px;
    padding-bottom: 0;
  }

  /* --- COMPANY SP: メニューリンクと「臨床経験を新たな形で活かす」の高さ揃え --- */
  #company .title_box {
    padding-top: 0;
  }
  #company .page_box {
    padding-top: 0;
  }

  /* --- features --- */
  .features_section {
    padding: 0 0 40px;
  }
  .features_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features_label {
    font-size: 13px;
  }
  .features_title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .feature_card_img img {
    height: auto;
  }
  .feature_card h3 {
    font-size: 16px;
  }
  .feature_card p {
    font-size: 13px;
  }

  /* --- セクションラベル統一（SP: 全セクション同サイズ・改行表示） --- */
  .philosophy_label_en,
  .data_label_en,
  .flow_label_en,
  .interview_label_en,
  .schedule_label_en {
    font-size: 22px;
    display: block;
    margin-bottom: 0.3em;
  }
  .philosophy_label_ja,
  .data_label_ja,
  .flow_label_ja,
  .interview_label_ja,
  .schedule_label_ja {
    display: block;
    margin-left: 0;
    font-size: 12px;
    line-height: 1.5;
  }
  .schedule_label_en {
    margin-bottom: 0.3em;
  }
}

/*会社概要セクション
---------------------------------------------------------------------------------------------------------------------------*/
#company_info {
  padding-top: 48px;
}
#data {
  padding-top: 48px;
}
#company_info .copy {
  padding-left: 0;
  padding-bottom: 30px;
  margin-top: 0;
}
.company_info_lead {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0 0 32px 0;
  padding-right: calc(12% + 40px);
}
.table_company_wrap {
  padding-right: calc(12% + 40px);
}
.table_company {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.table_company th {
  white-space: nowrap;
  width: 120px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  text-align: left;
  padding: 16px 16px 16px 0;
  vertical-align: top;
  border-top: none;
  position: relative;
}
.table_company th:nth-child(3) {
  padding-left: 24px;
}
.table_company td {
  font-size: 14px;
  color: #555;
  padding: 16px 16px 16px 0;
  vertical-align: top;
  border-top: none;
  position: relative;
}
/* 罫線：th=濃いグレー、td=薄いグレー（左右ブロック共通） */
.table_company tr:not(:first-child) th:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: #c0c0c0;
}
.table_company tr:not(:first-child) td:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: #e0e0e0;
}
.table_company tr:not(:first-child) th:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 0;
  height: 1px;
  background: #c0c0c0;
}
.table_company tr:not(:first-child) td:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: #e0e0e0;
}
@media screen and (max-width: 1000px) {
  .company_info_lead {
    padding-right: 0;
  }
  .table_company th,
  .table_company td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
  .table_company tr:not(:first-child) th::before {
    display: block;
  }
  .table_company tr:not(:first-child) td::before {
    display: none;
  }
}

/* プライバシーポリシーBOX */
.form_privacy_box {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
}
.form_privacy_text {
  font-size: 12px;
  color: #555;
  line-height: 1.8;
}
.form_privacy_section {
  margin-top: 8px;
}
.form_privacy_heading {
  display: block;
  font-weight: bold;
  margin-bottom: 2px;
}
.form_privacy_link {
  color: #0062A2;
  text-decoration: underline;
}
.form_privacy_agree {
  margin-top: 4px;
  font-weight: bold;
}

/* ENTRYセクション レスポンシブ */
@media screen and (max-width: 1000px) {
  .entry_inner {
    padding: 0 40px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .entry_block {
    margin: 100px 0 0 !important;
    border-radius: 0 !important;
  }
  .entry_inner {
    padding: 0 24px 0 24px;
  }
  /* stickyサイドバーがentry_blockに被るのを防ぐ（entryセクションのみ無効化） */
  #entry .title_box .sticky {
    position: static !important;
  }
  /* その他セクション：モバイルでも追従 */
  .title_box .sticky {
    position: sticky !important;
    top: 96px !important;
  }
  .entry_block {
    position: relative;
    z-index: 10;
  }
  .entry_heading {
    font-size: 64px !important;
    letter-spacing: 6px;
  }
  .entry_desc {
    font-size: 14px;
  }
  .form_check_group {
    gap: 16px;
    flex-wrap: wrap;
  }
  .form_birth_group {
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
  }
  .form_birth_y {
    width: 90px;
    padding: 12px 10px;
  }
  .form_birth_md {
    width: 58px;
    padding: 12px 8px;
  }
}
@media screen and (max-width: 480px) {
  .entry_block {
    margin: 80px 0 0 !important;
  }
  .entry_inner {
    padding: 0 20px 0 20px;
  }
  .entry_heading {
    font-size: 64px !important;
    letter-spacing: 6px;
  }
  .form_submit button {
    width: 100%;
    padding: 18px 20px;
  }
}

/* fade_in: transitionを無効化（animationと競合して2回ふわっとなるため） */
.fade_in {
  transition: none;
}

/* フッター Copyright 中央揃え */
.footer_block {
  text-align: center !important;
}
.copyright {
  display: block !important;
  text-align: center !important;
  width: 100%;
}
