@charset "UTF-8";
/* ========================================
   変数定義
   ======================================== */
/* ========================================
   ミックスイン定義
   ======================================== */
/* ========================================
   リセット
   ======================================== */
* {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  box-sizing: border-box;
}

/* ========================================
   基本設定
   ======================================== */
/* 本サイトはモバイルファーストである。各セクションの前半にSP版、後半にPC版のスタイルを記述する。 */
/*
 * rem単位計算基準（10px基準）
 * 1rem = 10px で計算しやすくするため、font-size: 62.5% を設定
 * 計算例: 16px → 1.6rem、24px → 2.4rem、32px → 3.2rem
 * ※以下のremコメントは省略（この説明を参照）
 */
html {
  font-size: 62.5%;
  /* 10px基準（16px × 0.625 = 10px） */
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1F1F1F;
  background-color: #f8fafc;
  background-image: url("../images/bg_wave@x4.png");
  background-size: 100% auto;
  background-position: center calc(100% + 50rem);
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* コンテナ */
}
body .container {
  max-width: 120rem;
  margin: 0 auto 0 auto;
  padding: 0 1rem 0 1rem;
}
body {
  /* セクション基本 */
}
body .section {
  padding: 4rem 0 4rem 0;
}
body .section-white {
  background: rgba(255, 255, 255, 0.75);
}
body .section-gray {
  background: #f8fafc;
}
@media (min-width: 768px) {
  body body {
    font-size: 1.6rem;
  }
  body .container {
    max-width: 96rem;
    padding: 0 2rem 0 2rem;
  }
}

/* pタグ全体の基本設定 */
p {
  line-height: 1.6;
  /* 明示的に指定（詰まって見えるのを防止） */
  margin: 0 0 1.6rem 0;
  /* 段落間隔 */
}

p:last-child {
  margin: 0 0 0 0;
  /* 最後のpタグは下余白なし */
}

/* 明朝体フォント */
.mincho {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HiraMinProN-W3", "HiraMinProN-W6", "MS Mincho", serif;
}

/* ========================================
   ヘッダー
   ======================================== */
#header {
  position: relative;
  z-index: 100;
}
#header .top-nav {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 300;
}
body.admin-bar #header .top-nav {
  top: 46px;
}
@media (min-width: 768px) {
  body.admin-bar #header .top-nav {
    top: 32px;
  }
}
#header .top-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1rem 1.2rem 1rem;
  min-height: 6rem;
}
#header .top-nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}
#header .top-nav .logo-img {
  width: 27.5rem;
  height: 3.3rem;
  flex-shrink: 0;
}
#header .top-nav .logo-sp {
  display: block;
}
#header .top-nav .logo-pc {
  display: none;
}
#header .top-nav .nav-right {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
#header .top-nav .nav-right .phone-number {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #1F1F1F;
  text-decoration: none;
  white-space: nowrap;
  display: none;
}
#header .top-nav .nav-right .contact-btn {
  background: none;
  border: 1px solid #1B2850;
  border-radius: 0;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
#header .top-nav .nav-right .contact-btn:hover {
  background-color: #1B2850;
}
#header .top-nav .nav-right .contact-btn:hover .contact-icon {
  filter: brightness(0) invert(1);
}
#header .top-nav .nav-right .contact-btn .contact-icon {
  width: 2.8rem;
  height: 2.8rem;
}
#header .top-nav .nav-right .hamburger-menu {
  background: none;
  border: none;
  padding: 0 0 0 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
#header .top-nav .nav-right .hamburger-menu .hamburger-line {
  width: 3.6rem;
  height: 0.6rem;
  background: #1B2850;
  border-radius: 0;
  transition: all 0.3s ease;
  transform-origin: center center;
}
#header .top-nav .nav-right .hamburger-menu .hamburger-line:nth-child(1) {
  transform: translateY(0) rotate(0deg);
}
#header .top-nav .nav-right .hamburger-menu .hamburger-line:nth-child(2) {
  opacity: 1;
}
#header .top-nav .nav-right .hamburger-menu .hamburger-line:nth-child(3) {
  transform: translateY(0) rotate(0deg);
}
#header .top-nav .nav-right .hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(1rem) rotate(45deg);
}
#header .top-nav .nav-right .hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
#header .top-nav .nav-right .hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-1rem) rotate(-45deg);
}
#header .top-nav .nav-right .hamburger-menu .menu-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1B2850;
  margin: 0 0 0 0;
}
@media (min-width: 768px) {
  #header .top-nav .container {
    padding: 1.6rem 0;
    min-height: 7rem;
  }
  #header .top-nav .logo-img {
    width: 40rem;
    height: 4.8rem;
  }
  #header .top-nav .logo-sp {
    display: none;
  }
  #header .top-nav .logo-pc {
    display: block;
  }
  #header .top-nav .nav-right {
    align-items: center;
  }
  #header .top-nav .nav-right .phone-number {
    display: flex;
  }
  #header .top-nav .nav-right .contact-btn {
    width: 6.4rem;
    height: 6.4rem;
  }
  #header .top-nav .nav-right .contact-btn .contact-icon {
    width: 4.4rem;
    height: 4.4rem;
  }
  #header .top-nav .nav-right .hamburger-menu {
    width: 6.4rem;
    height: auto;
    gap: 0.6rem;
    margin: 0.8rem 0 0 0;
  }
  #header .top-nav .nav-right .hamburger-menu .hamburger-line {
    width: 6.4rem;
    height: 1rem;
  }
  #header .top-nav .nav-right .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(1.6rem) rotate(45deg);
  }
  #header .top-nav .nav-right .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-1.6rem) rotate(-45deg);
  }
  #header .top-nav .nav-right .hamburger-menu .menu-text {
    font-size: 1.6rem;
    font-weight: 500;
    color: #1B2850;
    margin: 0 0 0 0;
  }
}
#header #hero {
  position: relative;
  height: 100vh;
  min-height: 60rem;
  background: url("../images/pixta_11740946_M.jpg") -46rem 0/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
#header #hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}
#header #hero .content {
  position: relative;
  z-index: 2;
  max-width: 39rem;
  padding: 0 0.1rem 0 0.1rem;
}
#header #hero .title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 1.6rem 0;
  line-height: 1.3;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
  letter-spacing: 0.125rem;
  padding: 0 0 0 0.6rem;
  position: relative;
  left: 0;
  top: -7.5rem;
}
#header #hero .subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.5);
  position: relative;
  left: 0;
  top: -8.125rem;
}
@media (min-width: 768px) {
  #header #hero {
    background: url("../images/pixta_11740946_M.jpg") 0 0/cover no-repeat;
  }
  #header #hero .content {
    max-width: 96rem;
  }
  #header #hero .title {
    font-size: 3.2rem;
    margin: 0 0 1.6rem 0;
  }
  #header #hero .subtitle {
    font-size: 1.6rem;
  }
}

/* ========================================
   メニューオーバーレイ
   ======================================== */
.menu-overlay {
  position: fixed;
  top: 6rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 6rem);
  background: rgba(255, 255, 255, 0.95);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
body.admin-bar .menu-overlay {
  top: calc(6rem + 46px);
  height: calc(100vh - 6rem - 46px);
}
@media (min-width: 768px) {
  body.admin-bar .menu-overlay {
    top: calc(8rem + 32px);
    height: calc(100vh - 8rem - 32px);
  }
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.menu-overlay .nav-menu {
  position: relative;
  width: 100%;
  max-width: 48rem;
  margin: 4rem auto 4rem auto;
  padding: 0 2rem 0 2rem;
}
.menu-overlay .nav-list {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.menu-overlay .nav-item {
  margin: 0 0 0 0;
  border-bottom: 1px solid rgba(27, 40, 80, 0.1);
}
.menu-overlay .nav-item:last-child {
  border-bottom: none;
}
.menu-overlay .nav-link {
  display: block;
  padding: 2rem 1.6rem 2rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1B2850;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.menu-overlay .nav-link:hover {
  background-color: rgba(108, 187, 90, 0.1);
  color: #6CBB5A;
}
.nav-item:first-child .menu-overlay .nav-link {
  border-radius: 0.8rem 0.8rem 0 0;
}
.nav-item:last-child .menu-overlay .nav-link {
  border-radius: 0 0 0.8rem 0.8rem;
}
.menu-overlay .nav-sublist {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  background-color: rgba(18, 184, 215, 0.05);
}
.menu-overlay .nav-subitem {
  margin: 0 0 0 0;
  border-bottom: 1px solid rgba(18, 184, 215, 0.1);
}
.menu-overlay .nav-subitem:last-child {
  border-bottom: none;
}
.menu-overlay .nav-sublink {
  display: block;
  padding: 1.4rem 1.6rem 1.4rem 3.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}
.menu-overlay .nav-sublink:hover {
  background-color: rgba(18, 184, 215, 0.1);
  color: #12B8D7;
}
.menu-overlay {
  /* ========================================
     📱➡️💻 PC版メニューオーバーレイ
     ======================================== */
}
@media (min-width: 768px) {
  .menu-overlay {
    top: 10rem;
    height: calc(100vh - 10rem);
  }
  .menu-overlay .nav-menu {
    max-width: 64rem;
    margin: 6rem auto 8rem auto;
  }
  .menu-overlay .nav-link {
    font-size: 1.8rem;
    padding: 1.4rem 2rem 1.4rem 2rem;
  }
}

/* ========================================
   新着情報
   ======================================== */
#news {
  background: #ffffff;
  padding: 2rem 1rem 0rem 1rem;
}
#news .news-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 0rem 0;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #1B2850;
}
#news .news-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#news .news-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#news .news-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 0 0;
  padding: 0.3rem 0 0 0;
}
#news .news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#news .news-item {
  padding: 1.6rem 0rem 1.6rem 1rem;
  border-bottom: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  position: relative;
}
#news .news-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #606060 0px, #606060 2px, transparent 2px, transparent 6px);
}
#news .news-item:last-child::after {
  background-image: none;
  background-color: #1B2850;
}
#news .news-date {
  margin: 0 0 0 0;
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
  width: 10rem;
}
#news .news-content {
  margin: 0 0 0 0;
  font-size: 1.4rem;
  color: #1F1F1F;
  line-height: 1.5;
  flex: 1;
}
#news {
  /* ========================================
     📱➡️💻 PC版レスポンシブ対応（768px以上）
     ======================================== */
}
@media (min-width: 768px) {
  #news {
    padding: 4.8rem 0 4.8rem 0;
  }
  #news .news-header {
    gap: 1.6rem;
    margin: 0 0 1rem 0;
  }
  #news .news-icon {
    width: 4rem;
    height: 4rem;
  }
  #news .news-title {
    font-size: 2.4rem;
  }
  #news .news-item {
    padding: 2.4rem 0 2.4rem 0;
  }
  #news .news-date {
    font-size: 1.6rem;
    width: 12rem;
  }
  #news .news-content {
    font-size: 1.6rem;
  }
}

/* ========================================
   当社の業務内容
   ======================================== */
#business .container {
  border: 1px solid #6CBB5A;
  margin: 1rem 1rem 1rem 1rem;
  padding: 1rem 1rem 1rem 1rem;
}
#business .container-after {
  border: 1px solid #12B8D7;
  margin: 0rem;
  padding: 1rem;
}
#business h2 {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  margin: 1rem 0 3.8rem 0;
  color: #1f2937;
  position: relative;
}
#business h2::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.1rem;
  background: radial-gradient(circle at center, #1F1F1F 0%, #1F1F1F 20%, #666666 40%, #999999 60%, rgba(153, 153, 153, 0.5) 80%, transparent 100%);
  border-radius: 1px;
}
#business h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 0.8rem 0;
  color: #1f2937;
}
#business .business-content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
#business .business-item {
  background: #ffffff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}
#business .business-image {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}
#business .business-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#business .business-text {
  padding: 2.4rem 2.4rem 2.4rem 2.4rem;
}
#business .business-text p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #374151;
}
#business {
  /* ========================================
     📱➡️💻 PC版レスポンシブ対応（768px以上）
     ======================================== */
}
@media (min-width: 768px) {
  #business .container {
    max-width: 100rem;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid #6CBB5A;
  }
  #business .container-after {
    border: 1px solid #12B8D7;
    margin: 0;
    padding: 1rem;
  }
  #business h2 {
    font-size: 2rem;
  }
  #business h3 {
    font-size: 1.8rem;
    margin: 0 0 2.4rem 0;
  }
  #business .business-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 92rem;
    margin: 0 auto;
  }
  #business .business-item {
    display: flex;
    flex-direction: column;
  }
  #business .business-image {
    height: 18rem;
  }
  #business .business-text {
    padding: 3.2rem 3.2rem 3.2rem 3.2rem;
    flex: 1;
  }
  #business .business-text p {
    font-size: 1.4rem;
  }
}

/* ========================================
   人材紹介事業について
   ======================================== */
#recruitment {
  padding: 0rem 0 0rem 0;
}
#recruitment .container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0em 1rem 0rem 1rem;
}
#recruitment .container-sp {
  max-width: 100rem;
  margin: 0 auto;
  padding: 2rem 1rem 2rem 1rem;
  border: 1px solid #6CBB5A;
}
#recruitment h2 {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  margin: 2rem 0 3.8rem 0;
  color: #1f2937;
  position: relative;
}
#recruitment h2::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.1rem;
  background: radial-gradient(circle at center, #1F1F1F 0%, #1F1F1F 20%, #666666 40%, #999999 60%, rgba(153, 153, 153, 0.5) 80%, transparent 100%);
  border-radius: 1px;
}
#recruitment #features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 0.8rem 0rem 0.8rem;
}
#recruitment #features .recruitment-feature {
  text-align: left;
  padding: 2.4em 3rem 3rem 3rem;
  background: #f8fafc;
  border-radius: 0.8rem;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
#recruitment #features .recruitment-feature-content {
  flex: 1;
}
#recruitment #features .recruitment-feature h3 {
  width: 100%;
  border: solid 1px #12B8D7;
  font-size: 1.6rem;
  font-weight: normal;
  color: #1F1F1F;
  margin: 0 0 0.8rem 0;
  line-height: 1.8;
  padding: 1.4rem 2rem 1.3rem 4.8rem;
  background-repeat: no-repeat;
  background-position: 1.4rem 1.8rem;
  background-size: 2.4rem 2.4rem;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  text-align: left;
}
#recruitment #features .recruitment-feature p {
  color: #4a5568;
  line-height: 2.2;
}
#recruitment #features .recruitment-feature .feature-h3-hearing {
  background-image: url("../images/icon_hearing.png");
  background-size: 2.3rem auto;
}
#recruitment #features .recruitment-feature .feature-h3-land {
  background-image: url("../images/icom_land.png");
  background-size: 1.8rem auto;
}
#recruitment #features .recruitment-feature .feature-h3-your {
  background-image: url("../images/icon_your.png");
  background-size: 2.4rem auto;
}
#recruitment #diagram {
  margin: 2rem 0 0 0;
}
#recruitment #diagram .container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 2em 1.6rem 2rem 1.6rem;
}
#recruitment #diagram h3 {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  margin: 0rem 0 3.8rem 0;
  color: #1f2937;
  position: relative;
}
#recruitment #diagram h3::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.1rem;
  background: radial-gradient(circle at center, #1F1F1F 0%, #1F1F1F 20%, #666666 40%, #999999 60%, rgba(153, 153, 153, 0.5) 80%, transparent 100%);
  border-radius: 1px;
}
#recruitment #diagram .diagram-image-container {
  text-align: center;
  margin: 0 auto 0 auto;
}
#recruitment #diagram .diagram-image {
  max-width: 100%;
  height: auto;
}
#recruitment #flow {
  margin: 4rem 0 0 0;
}
#recruitment #flow h3 {
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  margin: 2rem 0 3.8rem 0;
  color: #1f2937;
  position: relative;
}
#recruitment #flow h3::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.1rem;
  background: radial-gradient(circle at center, #1F1F1F 0%, #1F1F1F 20%, #666666 40%, #999999 60%, rgba(153, 153, 153, 0.5) 80%, transparent 100%);
  border-radius: 1px;
}
#recruitment #flow .flow-tab-input {
  display: none;
}
#recruitment #flow .flow-tab-buttons {
  display: flex;
  margin: 0 0 2rem 0;
}
#recruitment #flow .flow-tab-button {
  flex: 1;
  padding: 1.2rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid;
}
#recruitment #flow .flow-tab-jobseeker {
  background: #ffffff;
  border-color: #6CBB5A;
  color: #6CBB5A;
  border-radius: 0.8rem 0 0 0;
}
#recruitment #flow .flow-tab-company {
  background: #ffffff;
  border-color: #12B8D7;
  color: #12B8D7;
  border-radius: 0 0.8rem 0 0;
}
#recruitment #flow #tab-jobseeker:checked ~ .flow-tab-buttons .flow-tab-jobseeker {
  background: #6CBB5A;
  color: #ffffff;
}
#recruitment #flow #tab-company:checked ~ .flow-tab-buttons .flow-tab-company {
  background: #12B8D7;
  color: #ffffff;
}
#recruitment #flow .flow-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#recruitment #flow .flow-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  min-height: 30rem;
}
#recruitment #flow .flow-steps-wrapper {
  position: relative;
}
#recruitment #flow .flow-jobseeker .flow-steps-wrapper::before {
  content: "";
  position: absolute;
  left: 3.7rem;
  top: 3.7rem;
  width: 1px;
  height: calc(100% - 7.4rem);
  background: #6CBB5A;
  z-index: 1;
}
#recruitment #flow .flow-company .flow-steps-wrapper::before {
  content: "";
  position: absolute;
  left: 3.7rem;
  top: 3.7rem;
  width: 1px;
  height: calc(100% - 7.4rem);
  background: #12B8D7;
  z-index: 1;
}
#recruitment #flow .flow-company {
  display: none;
}
#recruitment #flow #tab-jobseeker:checked ~ .flow-container .flow-jobseeker {
  display: flex;
}
#recruitment #flow #tab-jobseeker:checked ~ .flow-container .flow-company {
  display: none;
}
#recruitment #flow #tab-company:checked ~ .flow-container .flow-jobseeker {
  display: none;
}
#recruitment #flow #tab-company:checked ~ .flow-container .flow-company {
  display: flex;
}
#recruitment #flow .flow-header {
  display: none;
}
#recruitment #flow .flow-step {
  display: flex;
  gap: 2.2rem;
  align-items: flex-start;
  padding: 0rem 0 2rem 0;
}
#recruitment #flow .flow-step:last-child {
  border-bottom: none;
  padding: 0 0 0 0;
}
#recruitment #flow .flow-step-number {
  flex-shrink: 0;
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: normal;
  font-size: 2.4rem;
  position: relative;
  z-index: 2;
}
#recruitment #flow .flow-jobseeker .flow-step-number {
  background: #6CBB5A;
}
#recruitment #flow .flow-company .flow-step-number {
  background: #12B8D7;
}
#recruitment #flow .flow-step-content {
  flex: 1;
}
#recruitment #flow .flow-step-content h4 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0.8rem 0 0.8rem 0;
}
#recruitment #flow .flow-step-content p {
  font-size: 1.4rem;
  line-height: 2.2;
  color: #374151;
  margin: 0;
}
#recruitment #flow .flow-inquiry {
  background: #6CBB5A;
  padding: 3rem 2rem 3rem 2rem;
  margin: 1rem 0 4rem 0;
  border-radius: 4px;
}
#recruitment #flow .flow-inquiry h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 1.5rem 0;
  position: relative;
}
#recruitment #flow .flow-inquiry h3::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: #ffffff;
}
#recruitment #flow .flow-inquiry p {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 2.5rem 0;
}
#recruitment #flow .flow-inquiry .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #ffffff;
  color: #1F1F1F;
  border: none;
  border-radius: 4px;
  padding: 1.2rem 2rem 1.2rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
#recruitment #flow .flow-inquiry .btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid #6CBB5A;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
}
#recruitment #flow .flow-inquiry .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
#recruitment #flow .flow-inquiry .btn:hover::after {
  border-left-color: #dc2626;
}
#recruitment #flow .flow-inquiry-company {
  background: #12B8D7;
}
#recruitment #flow .flow-inquiry-company .btn::after {
  border-left-color: #12B8D7;
}
#recruitment #flow .flow-inquiry-company .btn:hover::after {
  border-left-color: #dc2626;
}
#recruitment {
  /* ========================================
     📱➡️💻 PC版レスポンシブ対応（768px以上）
     ======================================== */
}
@media (min-width: 768px) {
  #recruitment.section-pc-border {
    border: 1px solid #6CBB5A;
    padding: 2rem 2rem 2rem 2rem;
    margin: 2rem auto 2rem auto;
    max-width: 100rem;
  }
  #recruitment .container-sp {
    border: none;
    padding: 0;
  }
  #recruitment h2 {
    font-size: 2rem;
  }
  #recruitment #features {
    flex-direction: row;
    gap: 4rem;
    margin: 0 0 8rem 0;
  }
  #recruitment #features .recruitment-feature {
    flex: 1;
    padding: 4rem 3rem 2rem 3rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
  #recruitment #features .recruitment-feature h3 {
    width: 100%;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 1.2em 2rem 1.4rem 4.2rem;
    background-repeat: no-repeat;
    background-position: 1.4rem 2.2rem;
    min-height: 1.54rem;
    display: flex;
    align-items: center;
    text-align: left;
  }
  #recruitment #features .recruitment-feature .feature-h3-hearing {
    background-size: 1.77rem 1.54rem;
  }
  #recruitment #features .recruitment-feature .feature-h3-land {
    background-size: 1.26rem 1.54rem;
  }
  #recruitment #features .recruitment-feature .feature-h3-your {
    background-size: 1.76rem 1.54rem;
  }
  #recruitment #features .recruitment-feature p {
    font-size: 1.4rem;
  }
  #recruitment #diagram .container {
    background-color: rgba(255, 255, 255, 0.75);
  }
  #recruitment #diagram h3 {
    font-size: 2rem;
    margin: 2rem 0 3.8rem 0;
  }
  #recruitment #flow h3 {
    font-size: 2rem;
    margin: 2rem 0 3.8rem 0;
  }
  #recruitment #flow .flow-tab-buttons {
    display: none;
  }
  #recruitment #flow .flow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
  #recruitment #flow .flow-jobseeker,
  #recruitment #flow .flow-company {
    display: flex !important;
    flex-direction: column;
  }
  #recruitment #flow .flow-column {
    background-color: #ffffff;
  }
  #recruitment #flow .flow-steps-wrapper {
    flex: 1;
  }
  #recruitment #flow .flow-inquiry {
    margin: 1rem 0 0rem 0;
    flex-shrink: 0;
  }
  #recruitment #flow .flow-inquiry p {
    min-height: 6rem;
  }
  #recruitment #flow .flow-header {
    display: block;
    text-align: center;
    padding: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.6rem;
    border-radius: 0.8rem 0.8rem 0 0;
  }
  #recruitment #flow .flow-jobseeker .flow-header {
    background: #6CBB5A;
  }
  #recruitment #flow .flow-company .flow-header {
    background: #12B8D7;
  }
  #recruitment #flow .flow-step {
    border-bottom: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  #recruitment #flow .flow-jobseeker .flow-steps-wrapper::before {
    height: calc(100% - 12rem);
  }
  #recruitment #flow .flow-company .flow-steps-wrapper::before {
    height: calc(100% - 10rem);
  }
}

/* ========================================
   シグマ技術コンサルタントについて
   ======================================== */
#about .section {
  padding: 2rem 0 2rem 0;
}
#about .about-header {
  text-align: center;
  margin: 0 0 2rem 0;
}
#about .about-title {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HiraMinProN-W3", "HiraMinProN-W6", "MS Mincho", serif;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  color: #1F1F1F;
  margin: 0 auto 2rem auto;
  padding: 2.5rem 2rem 2.5rem 2rem;
  position: relative;
  display: block;
  width: 100%;
}
#about .about-title::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0px;
  right: 16px;
  bottom: 8px;
  border: 1px solid #6CBB5A;
  z-index: 1;
}
#about .about-title::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 16px;
  right: 0px;
  bottom: -8px;
  border: 1px solid #12B8D7;
  z-index: 2;
}
#about .about-symbol {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
#about .about-symbol .sigma-symbol {
  width: 5.4rem;
  height: 5.1rem;
  display: block;
  margin: 0 auto 0 auto;
}
#about .about-intro {
  text-align: left;
  margin: 0 1rem 2rem 1rem;
}
#about .about-intro p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1F1F1F;
}
#about .about-features .feature-item {
  display: flex;
  align-items: center;
  margin: 0 1rem 1.4rem 1rem;
}
#about .about-features .feature-item .feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../images/icon_hexa.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 1.5rem 0 0;
  flex-shrink: 0;
}
#about .about-features .feature-item p {
  font-size: 1.4rem;
  color: #1F1F1F;
  margin: 0;
}
#about .greeting-section {
  margin: 4rem 0 0 0;
  padding: 0 0.8rem 0 0.8rem;
}
#about .greeting-section h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HiraMinProN-W3", "HiraMinProN-W6", "MS Mincho", serif;
  font-size: 1.8rem;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
}
#about .greeting-section .greeting-content::after {
  content: "";
  display: table;
  clear: both;
}
#about .greeting-section .greeting-photo {
  float: right;
  margin: 0.2rem 0 1rem 2rem;
  text-align: center;
  width: 12rem;
}
#about .greeting-section .greeting-photo img {
  width: 12rem;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 4px;
}
#about .greeting-section .greeting-photo .representative-name {
  font-size: 1.2rem;
  color: #1F1F1F;
  margin: 0;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}
#about .greeting-section .greeting-text p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #1F1F1F;
  margin: 0 0 1.5rem 0;
}
#about .greeting-section .greeting-text p:last-child {
  margin: 0 0 0 0;
}
#about .company-info-section {
  margin: 4rem 0 0 0;
  padding: 0 1rem 0 1rem;
}
#about .company-info-section h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HiraMinProN-W3", "HiraMinProN-W6", "MS Mincho", serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
  border-bottom: 4px solid #000000;
  padding: 0 0 0.4rem 0;
}
#about .company-info-section .company-info-table {
  width: 100%;
  border-collapse: collapse;
}
#about .company-info-section .company-info-table tr {
  border-bottom: 1px solid #000000;
}
#about .company-info-section .company-info-table th,
#about .company-info-section .company-info-table td {
  font-size: 1.3rem;
  color: #1F1F1F;
  text-align: left;
  line-height: 1.6;
  vertical-align: top;
}
#about .company-info-section .company-info-table th {
  font-weight: bold;
  width: 30%;
  border-bottom: 1px solid #000;
  padding: 1.4rem 0rem 1.4rem 0rem;
}
#about .company-info-section .company-info-table td {
  padding: 1.4rem 0rem 1.4rem 1.4rem;
  width: 70%;
}
#about .coverage-section {
  display: none;
  margin: 4rem 0 0 0;
  padding: 0 1rem 0 1rem;
}
#about .coverage-section h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HiraMinProN-W3", "HiraMinProN-W6", "MS Mincho", serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
  border-bottom: 4px solid #000000;
  padding: 0 0 0.4rem 0;
}
#about .coverage-section p {
  font-size: 1.2rem;
  color: #1F1F1F;
  line-height: 1.6;
}
#about .employment-info-section {
  display: none;
  margin: 4rem 0 0 0;
  padding: 0 1rem 0 1rem;
}
#about .employment-info-section h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HiraMinProN-W3", "HiraMinProN-W6", "MS Mincho", serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #1F1F1F;
  margin: 0 0 2rem 0;
  border-bottom: 4px solid #000000;
  padding: 0 0 0.4rem 0;
}
#about .employment-info-section .employment-info-content .info-item {
  margin: 0 0 2rem 0;
}
#about .employment-info-section .employment-info-content .info-item:last-child {
  margin: 0 0 0 0;
}
#about .employment-info-section .employment-info-content .info-item h3 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HiraMinProN-W3", "HiraMinProN-W6", "MS Mincho", serif;
  font-size: 1.4rem;
  font-weight: normal;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
}
#about .employment-info-section .employment-info-content .info-item p {
  font-size: 1.2rem;
  color: #1F1F1F;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}
#about .employment-info-section .employment-info-content .info-item p:last-child {
  margin: 0 0 0 0;
}
#about {
  /* ========================================
     📱➡️💻 PC版レスポンシブ対応（768px以上）
     ======================================== */
}
@media (min-width: 768px) {
  #about .about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0 2rem 0;
  }
  #about.section-white {
    background: rgba(255, 255, 255, 0.9);
  }
  #about .about-title {
    font-size: 2.4rem;
    padding: 3rem 3rem 3rem 3rem;
  }
  #about .about-content .about-text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
  }
  #about .about-content .about-list {
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
  }
  #about .about-content .about-list li {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
  }
  #about .about-content .about-list li:last-child {
    margin: 0 0 0 0;
  }
  #about .about-symbol {
    margin: 14rem 0 14rem 0;
  }
  #about .coverage-section {
    display: block;
  }
  #about .employment-info-section {
    display: block;
  }
}

/* ========================================
    お問い合わせ
   ======================================== */
#contact.section-white {
  background: rgba(255, 255, 255, 0.45);
}
#contact .container {
  padding: 0 0rem 0 0rem;
}
#contact .contact-title {
  background-image: url("../images/pixta_37612010_M.jpg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0 2rem 0;
  width: 100%;
  height: 14.4rem;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact .contact-title h2 {
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.28rem;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
#contact .contact-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
#contact .contact-phone-info {
  margin: 4rem 0 0rem 0;
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
  text-align: center;
}
#contact .contact-phone-info:last-child {
  margin: 0 0 0 0;
}
#contact .contact-phone-info .contact-label {
  font-size: 1.4rem;
  color: #333;
  padding: 0 1rem 0rem 0;
  font-weight: normal;
  vertical-align: middle;
}
#contact .contact-phone-info .phone-number-img {
  height: 1.6rem;
  vertical-align: middle;
  display: inline-block;
  vertical-align: -0.3rem;
}
#contact .contact-phone-info .contact-phone-pc {
  display: none;
}
#contact .contact-phone-info .contact-phone-sp {
  display: block;
}
#contact .contact-form-section {
  margin: 3.6rem 0 0 0;
  padding: 0 2rem 0 2rem;
}
#contact .contact-form-section .contact-form-title {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.18rem;
  color: #000;
  margin: 0 0 1.5rem 0;
  padding: 0 0 0.6rem 0;
  border-bottom: 1px solid #000;
}
#contact .contact-form-section .contact-form .submit-btn {
  display: block;
  margin: 3rem auto 0 auto;
}
#contact {
  /* ========================================
     📱➡️💻 PC版お問い合わせレスポンシブ対応（768px以上）
     ======================================== */
}
@media (min-width: 768px) {
  #contact.section-white {
    background: rgba(255, 255, 255, 0.65);
  }
  #contact .contact-title {
    height: 18.4rem;
    border: 1px solid #c8c8c8;
  }
  #contact .contact-title::before {
    width: 95%;
    height: 80%;
    background: rgba(255, 255, 255, 0.85);
  }
  #contact .contact-phone-info {
    font-size: 2rem;
    margin: 3rem 0 0rem 0;
    font-weight: normal;
  }
  #contact .contact-phone-info .contact-label {
    font-size: 1.4rem;
  }
  #contact .contact-phone-info .phone-number-img {
    height: 2rem;
  }
  #contact .contact-phone-info .contact-phone-sp {
    display: none;
  }
  #contact .contact-phone-info .contact-phone-pc {
    display: block;
    text-align: center;
    margin: 8rem 0 6rem 0;
  }
  #contact .contact-phone-info .contact-phone-pc p {
    margin: 0 0 1rem 0;
  }
  #contact .contact-phone-info .contact-phone-pc .contact-phone-pc-number {
    margin: 0 0 0.6rem 0;
  }
  #contact .contact-phone-info .contact-phone-pc .contact-phone-pc-business-hours {
    font-size: 1.4rem;
  }
  #contact .contact-phone-info .contact-phone-pc .contact-phone-pc-text {
    font-size: 1.4rem;
    margin: 0rem 0 2rem 0;
  }
  #contact .contact-phone-info .contact-phone-pc .contact-phone-number {
    font-weight: bold;
  }
  #contact .contact-phone-info .contact-phone-pc .contact-business-hours {
    font-size: 1.4rem;
  }
  #contact .contact-form-section .contact-form-title {
    margin: 0 0 3.6rem 0;
  }
  #contact .contact-form-section .contact-form .form-group,
  #contact .contact-form-section .contact-form .mfp_parent_error {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 0 3.2rem 0;
  }
  #contact .contact-form-section .contact-form .form-group .form-label,
  #contact .contact-form-section .contact-form .mfp_parent_error .form-label {
    flex: 0 0 14rem;
    margin: 0;
    padding: 0.6rem 0 0 0;
    background-color: transparent;
    border: none;
  }
  #contact .contact-form-section .contact-form .form-group .form-input,
  #contact .contact-form-section .contact-form .form-group .form-textarea,
  #contact .contact-form-section .contact-form .mfp_parent_error .form-input,
  #contact .contact-form-section .contact-form .mfp_parent_error .form-textarea {
    flex: 1;
    width: auto;
  }
  #contact .contact-form-section .contact-form .form-group .mfp_err,
  #contact .contact-form-section .contact-form .mfp_parent_error .mfp_err {
    flex-basis: 100%;
    margin-left: 16rem;
  }
  #contact .contact-form-section .contact-form .form-group .form-textarea,
  #contact .contact-form-section .contact-form .mfp_parent_error .form-textarea {
    height: 24rem;
    resize: vertical;
  }
  #contact .contact-form-section .contact-form .form-submit-btn {
    margin: 2rem 8rem 0 16rem;
    width: calc(100% - 16rem);
  }
}

/* ========================================
    固定TOPボタン
   ======================================== */
.top-btn-fixed {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  background-color: transparent;
  background-image: url("../images/icon_ToTOP.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.top-btn-fixed:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}

/* ========================================
   フッター
   ======================================== */
.footer {
  margin: 2rem auto 0 auto;
  padding: 4.8rem 2rem 1.6rem 2rem;
  position: relative;
}
.footer .container {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 0 auto 0 auto;
}
.footer .container .footer-bottom {
  text-align: center;
  padding: 0.6rem 2rem 0.6rem 2rem;
}
.footer .container .footer-bottom p {
  font-size: 1.2rem;
  color: #1F1F1F;
  margin: 0;
}
.footer {
  /* ========================================
     📱➡️💻 PC版フッターレスポンシブ対応（768px以上）
     ======================================== */
}
@media (min-width: 768px) {
  .footer .container {
    max-width: 100%;
    margin: 0 auto 0 auto;
  }
}

/* ========================================
   ページ別スタイルのインポート
   ======================================== */
/* ========================================
   Mailform Pro カスタマイズ
   ======================================== */
form#mailformpro .form-group {
  margin: 0 0 3rem 0;
}
form#mailformpro .form-label {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
}
form#mailformpro .form-label.required::after {
  content: "※";
  color: #da8888;
  margin: 0 0 0 0.5rem;
}
form#mailformpro .form-input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  border: 1px solid #d1d5db;
  border-radius: 0.4rem;
  background-color: #ffffff;
  transition: border-color 0.3s;
}
form#mailformpro .form-input:focus {
  outline: none;
  border-color: #6CBB5A;
}
form#mailformpro .form-input::placeholder {
  color: #9ca3af;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form#mailformpro .form-input:focus::placeholder {
  opacity: 0;
}
form#mailformpro .form-textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border: 1px solid #bebebe;
  border-radius: 0.4rem;
  background-color: #ffffff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
  resize: vertical;
  transition: border-color 0.3s;
  height: 21.6rem;
  min-height: 21.6rem;
  overflow-y: auto;
}
form#mailformpro .form-textarea:focus {
  outline: none;
  border-color: #6CBB5A;
}
form#mailformpro .form-textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form#mailformpro .form-textarea:focus::placeholder {
  opacity: 0;
}
form#mailformpro button.submit-btn.mfp_element_submit,
form#mailformpro button.submit-btn {
  width: 100%;
  max-width: 60rem;
  padding: 1.8rem 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #1f1f1f;
  background-image: none;
  background: #1f1f1f;
  border: 1px solid #bebebe;
  border-radius: 0.4rem;
  cursor: pointer;
  text-shadow: none;
  transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
}
form#mailformpro button.submit-btn.mfp_element_submit:hover,
form#mailformpro button.submit-btn:hover {
  background-color: #2d2d2d;
  background-image: none;
  background: #2d2d2d;
  border-color: #d1d5db;
  transform: translateY(-2px);
}
form#mailformpro button.submit-btn.mfp_element_submit:active,
form#mailformpro button.submit-btn:active {
  transform: translateY(0);
}

.mfp_err {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.3rem;
  min-height: 0;
}

.mfp_parent_error {
  border: solid 2px #da8888;
}

.problem {
  background-color: #fef0f0;
}

@media (min-width: 768px) {
  form#mailformpro .mfp_parent_error {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0;
    border-bottom: 1px solid #d1d5db;
    min-height: 6rem;
  }
  form#mailformpro .mfp_parent_error .form-label {
    flex: 0 0 26rem;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    padding: 2.5rem 2.5rem;
    margin: 0;
    border-right: 1px solid #d1d5db;
  }
  form#mailformpro .mfp_parent_error > .form-input,
  form#mailformpro .mfp_parent_error > .address-group,
  form#mailformpro .mfp_parent_error > .radio-group,
  form#mailformpro .mfp_parent_error > .birthday-group,
  form#mailformpro .mfp_parent_error > .checkbox-sections-wrapper,
  form#mailformpro .mfp_parent_error > .textarea-wrapper,
  form#mailformpro .mfp_parent_error > .privacy-policy-section {
    flex: 1;
    padding: 2.5rem 3.5rem;
  }
  form#mailformpro .mfp_parent_error .mfp_err {
    flex: 0 0 100%;
    padding: 0.3rem 3.5rem 0.3rem 29.5rem;
  }
  form#mailformpro .mfp_parent_error .mfp_err:empty {
    display: none;
  }
}
/* ========================================
   確認画面のスタイル
   ======================================== */
.confirm-notice {
  text-align: center;
  margin: 0 0 2rem 0;
  font-size: 1.4rem;
  color: #1F1F1F;
}
.confirm-notice p {
  margin: 0;
}

div#mfp_phase_confirm {
  display: none;
  padding: 2rem 2rem 4rem 2rem;
  background-color: #f9f9f9;
}

div#mfp_phase_confirm_inner {
  max-width: 80rem;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}
div#mfp_phase_confirm_inner h4 {
  font-size: 2rem;
  color: #333333;
  text-align: center;
  margin: 0 0 3rem 0;
  font-weight: bold;
}

div#mfp_confirm_table {
  margin: 0 0 3rem 0;
}
div#mfp_confirm_table table {
  width: 100%;
  border-collapse: collapse;
}
div#mfp_confirm_table th {
  background-color: #f0f0f0;
  padding: 1.5rem;
  text-align: left;
  font-weight: bold;
  color: #333333;
  border-bottom: 2px solid #dddddd;
  width: 30%;
}
div#mfp_confirm_table td {
  padding: 1.5rem;
  color: #666666;
  border-bottom: 1px solid #eeeeee;
}
div#mfp_confirm_table tr.mfp_colored {
  background-color: #fafafa;
}
div#mfp_confirm_table tr.mfp_achroma {
  background-color: #ffffff;
}

div.mfp_buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0 0 0;
}
div.mfp_buttons button#mfp_button_send {
  width: 100%;
  max-width: 28rem;
  padding: 1.8rem 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  background: #1f1f1f;
  background-image: none;
  border: 1px solid #bebebe;
  border-radius: 0.4rem;
  cursor: pointer;
  text-shadow: none;
  transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
}
div.mfp_buttons button#mfp_button_send:hover {
  background: #2d2d2d;
  background-image: none;
  border-color: #d1d5db;
  transform: translateY(-2px);
}
div.mfp_buttons button#mfp_button_send:active {
  transform: translateY(0);
}
div.mfp_buttons button#mfp_button_cancel {
  width: 100%;
  max-width: 28rem;
  padding: 1.8rem 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  background: #d3d3d3;
  background-image: none;
  border: 1px solid #bebebe;
  border-radius: 0.4rem;
  cursor: pointer;
  text-shadow: none;
  transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
}
div.mfp_buttons button#mfp_button_cancel:hover {
  background: #bfbfbf;
  background-image: none;
  border-color: #a0a0a0;
  transform: translateY(-2px);
}
div.mfp_buttons button#mfp_button_cancel:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  div.mfp_buttons button#mfp_button_send,
  div.mfp_buttons button#mfp_button_cancel {
    font-size: 2rem;
    padding: 2rem 4rem;
    max-width: 30rem;
  }
}
/* ========================================
   PC版共通スタイル
   ======================================== */
@media (min-width: 768px) {
  form#mailformpro .form-label {
    font-size: 1.5rem;
  }
  form#mailformpro .form-input {
    font-size: 1.4rem;
  }
  form#mailformpro .form-textarea {
    font-size: 1.4rem;
    height: 19.2rem;
    min-height: 19.2rem;
    width: 100%;
  }
  form#mailformpro .submit-btn {
    font-size: 2rem;
    padding: 2rem 8rem;
    max-width: 70rem;
  }
}
/* ========================================
   求職相談フォーム（inquiry_job.html）
   ======================================== */
body:has(#inquiry-form) {
  /* ========================================
   ヒーローセクション（求職相談フォームページ専用）

   【重要】style.scss の #header #hero を継承・上書き
   継承元: style.scss 599-667行目

   上書き必須プロパティ：
   - height, min-height（トップページは 100vh / 60rem）
   - .title の position, top, left（トップページは relative / -7.5rem / 0）
   - .subtitle の position, top, left（トップページは relative / -8.125rem / 0）
   ======================================== */
}
body:has(#inquiry-form) #header #hero {
  height: 20rem;
  min-height: auto;
  background-image: url("../images/bg_inquiry_job_header.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #ffffff;
}
body:has(#inquiry-form) #header #hero .content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1rem 0 1rem;
}
body:has(#inquiry-form) #header #hero .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
  letter-spacing: 0.125rem;
  position: static;
  top: auto;
  left: auto;
}
body:has(#inquiry-form) #header #hero .subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.5);
  margin: 0 2rem 0 2rem;
  position: static;
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  body:has(#inquiry-form) #header #hero .title {
    font-size: 2.8rem;
    margin: 0 0 1.2rem 0;
  }
  body:has(#inquiry-form) #header #hero .subtitle {
    font-size: 1.6rem;
  }
}
body:has(#inquiry-form) {
  /* ========================================
   フォームセクション全体
   ======================================== */
}
body:has(#inquiry-form) #inquiry-form.section-white {
  background-color: rgba(255, 255, 255, 0);
}
body:has(#inquiry-form) #inquiry-form.section {
  padding: 2rem 0 0rem 0;
}
body:has(#inquiry-form) {
  /* ========================================
   フォーム導入文
   ======================================== */
}
body:has(#inquiry-form) .form-intro {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 2rem 1.5rem 2rem;
  margin: 0 0 2rem 0;
  border-radius: 0.8rem;
}
body:has(#inquiry-form) .form-intro p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1F1F1F;
  margin: 0 0 1.5rem 0;
}
body:has(#inquiry-form) .form-intro p:last-child {
  margin: 0;
}
body:has(#inquiry-form) {
  /* ========================================
   フォーム注意事項セクション
   ======================================== */
}
body:has(#inquiry-form) .form-notice {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem 1.5rem 2rem 1.5rem;
  margin: 0 0 2rem 0;
  border-radius: 0.8rem;
}
body:has(#inquiry-form) .form-notice .notice-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1B2850;
  margin: 0 0 1.5rem 0;
  padding: 0 0 0.8rem 0;
  border-bottom: 1px solid #6CBB5A;
}
body:has(#inquiry-form) .form-notice .notice-list {
  list-style: none;
  padding: 0 0 0 0;
  margin: 1.5rem 0 1.5rem 0;
}
body:has(#inquiry-form) .form-notice .notice-list li {
  position: relative;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #1F1F1F;
}
body:has(#inquiry-form) .form-notice .notice-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #6CBB5A;
}
body:has(#inquiry-form) .form-notice .notice-list li:last-child {
  margin: 0;
}
body:has(#inquiry-form) {
  /* ========================================
   応募用メールフォームコンテナ
   ======================================== */
}
body:has(#inquiry-form) .form-container {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #6CBB5A;
  border-radius: 0.8rem;
  padding: 2rem 2.2rem 2rem 2.2rem;
  margin: 2rem 0 2rem 0;
}
body:has(#inquiry-form) .form-container .form-section-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 2rem 0;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #6CBB5A;
  text-align: center;
}
@media (min-width: 768px) {
  body:has(#inquiry-form) .form-container {
    padding: 3rem 2rem 3rem 2rem;
    margin: 3rem 0 3rem 0;
  }
  body:has(#inquiry-form) .form-container .form-section-title {
    font-size: 2.2rem;
    margin: 0 0 3rem 0;
    padding: 0 0 1.5rem 0;
  }
}
body:has(#inquiry-form) {
  /* ========================================
   フォーム全体
   ======================================== */
}
body:has(#inquiry-form) .inquiry-job-form {
  max-width: 100%;
  margin: 0 auto;
}
body:has(#inquiry-form) {
  /* サブラベル */
}
body:has(#inquiry-form) .sub-label {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0.5rem 0 0;
}
body:has(#inquiry-form) {
  /* ========================================
   住所グループ
   ======================================== */
}
body:has(#inquiry-form) .address-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body:has(#inquiry-form) .address-group .zip-code-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body:has(#inquiry-form) .address-group .zip-code-wrapper .sub-label {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #1F1F1F;
  flex-shrink: 0;
}
body:has(#inquiry-form) .address-group .zip-code-wrapper .zip-input {
  max-width: 12rem;
  flex: 1;
}
body:has(#inquiry-form) {
  /* ========================================
   ラジオボタングループ
   ======================================== */
}
body:has(#inquiry-form) .radio-group {
  display: flex;
  gap: 2rem;
}
body:has(#inquiry-form) {
  /* 性別専用のレイアウト（ラベル右にラジオボタン） */
}
body:has(#inquiry-form) .form-group:has(.radio-group) {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
}
body:has(#inquiry-form) .form-group:has(.radio-group) .form-label {
  margin: 0 0 0 0;
  flex-shrink: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
body:has(#inquiry-form) .form-group:has(.radio-group) {
  /* 性別ラベル専用のスタイル（カスケード内で定義） */
}
body:has(#inquiry-form) .form-group:has(.radio-group) .radio-label-select2 {
  margin: 0 0rem 0.8rem 0;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #1F1F1F;
}
body:has(#inquiry-form) .form-group:has(.radio-group) .radio-group {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}
body:has(#inquiry-form) .form-group:has(.radio-group) {
  /* ラジオボタンラベル専用のスタイル（カスケード内で定義） */
}
body:has(#inquiry-form) .form-group:has(.radio-group) .radio-label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #1F1F1F;
  cursor: pointer;
  line-height: 1;
}
body:has(#inquiry-form) .form-group:has(.radio-group) .radio-label input[type=radio] {
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem 0 0;
  cursor: pointer;
  accent-color: #6CBB5A;
  vertical-align: middle;
}
body:has(#inquiry-form) .form-group:has(.radio-group) .radio-label span {
  line-height: 1;
  vertical-align: middle;
}
body:has(#inquiry-form) {
  /* ========================================
   生年月日グループ
   ======================================== */
}
body:has(#inquiry-form) .birthday-group {
  display: flex;
  gap: 1rem;
}
body:has(#inquiry-form) {
  /* ========================================
   セレクトボックス
   ======================================== */
}
body:has(#inquiry-form) .form-group .form-select {
  flex: 1;
  padding: 1.2rem;
  font-size: 1.6rem;
  border: 1px solid #d1d5db;
  border-radius: 0.4rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s;
  /* ブラウザ標準の下矢印を非表示にして、カスタム矢印を配置 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.6rem 1.6rem;
  padding-right: 3.5rem;
}
body:has(#inquiry-form) .form-group .form-select:focus {
  outline: none;
  border-color: #6CBB5A;
}
body:has(#inquiry-form) {
  /* ========================================
   スキルセクション
   ======================================== */
}
body:has(#inquiry-form) .skill-section {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #cfcfcf;
  border-radius: 0.8rem;
  padding: 2rem 1.5rem 0;
  margin: 2rem 0;
}
body:has(#inquiry-form) .skill-section .skill-section-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 2rem 0;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #374151;
  text-align: center;
}
body:has(#inquiry-form) {
  /* ========================================
   扱えるソフトセクション
   ======================================== */
}
body:has(#inquiry-form) .software-section {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #cfcfcf;
  border-radius: 0.8rem;
  padding: 2rem 1.5rem 0;
  margin: 2rem 0;
}
body:has(#inquiry-form) .software-section .software-section-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 2rem 0;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #374151;
  text-align: center;
}
body:has(#inquiry-form) {
  /* ========================================
   チェックボックスセクション
   ======================================== */
}
body:has(#inquiry-form) .checkbox-section {
  margin: 0 0 2rem 0;
  padding: 2rem 1.5rem;
  border: 2px dotted #d1d5db;
  border-radius: 0.4rem;
}
body:has(#inquiry-form) .checkbox-section .checkbox-section-title {
  font-size: 1.3rem;
  font-weight: normal;
  color: #374151;
  background-color: rgba(108, 187, 90, 0.1);
  padding: 0.6rem 1rem;
  margin: 0 0 1.5rem 0;
  border-radius: 0.4rem;
  border-left: 3px solid #6CBB5A;
  text-align: left;
}
body:has(#inquiry-form) {
  /* チェックボックスグループ */
}
body:has(#inquiry-form) .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body:has(#inquiry-form) .form-group .checkbox-label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #1F1F1F;
  cursor: pointer;
}
body:has(#inquiry-form) .form-group .checkbox-label input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  margin: 0 0.8rem 0 0;
  cursor: pointer;
  accent-color: #6CBB5A;
}
body:has(#inquiry-form) {
  /* 文字数制限表示 */
}
body:has(#inquiry-form) .char-limit {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0.5rem 0 0 0;
  text-align: right;
}
body:has(#inquiry-form) {
  /* ========================================
   個人情報保護方針セクション
   ======================================== */
}
body:has(#inquiry-form) .privacy-policy-section {
  margin: 0 0 2rem 0;
}
body:has(#inquiry-form) .privacy-policy-section .privacy-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 1.5rem 0;
}
body:has(#inquiry-form) .privacy-policy-section .privacy-content {
  max-height: 40rem;
  overflow-y: scroll;
  padding: 2rem;
  border: 3px solid #12B8D7;
  border-radius: 0.4rem;
  background-color: #ffffff;
}
body:has(#inquiry-form) .privacy-policy-section .privacy-content .privacy-subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 0.8rem 0;
}
body:has(#inquiry-form) .privacy-policy-section .privacy-content .privacy-subtitle:first-child {
  margin: 0 0 0.8rem 0;
}
body:has(#inquiry-form) .privacy-policy-section .privacy-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
}
body:has(#inquiry-form) .privacy-policy-section .privacy-content address {
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
}
body:has(#inquiry-form) .privacy-policy-section .privacy-content address .phone-number-img {
  height: 1.3rem;
  vertical-align: middle;
}
body:has(#inquiry-form) .privacy-policy-section .privacy-content .policy-note {
  font-size: 1.2rem;
  color: #666;
}
body:has(#inquiry-form) {
  /* ========================================
   同意チェックボックス
   ======================================== */
}
body:has(#inquiry-form) .consent-wrapper {
  margin: 3rem 0 3rem 0;
}
body:has(#inquiry-form) .consent-checkbox {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: 0.4rem;
}
body:has(#inquiry-form) .consent-checkbox input[type=checkbox] {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 1rem 0 0;
  cursor: pointer;
  accent-color: #6CBB5A;
}
body:has(#inquiry-form) .consent-checkbox span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
}
body:has(#inquiry-form) {
  /* ========================================
   送信ボタン
   ======================================== */
}
body:has(#inquiry-form) .form-submit {
  text-align: center;
  margin: 4rem 0 0 0;
}
body:has(#inquiry-form) {
  /* ========================================
   PC版レイアウト
   ======================================== */
}
@media (min-width: 768px) {
  body:has(#inquiry-form) .form-intro,
  body:has(#inquiry-form) .form-notice {
    margin: 0 0 4rem 0;
  }
  body:has(#inquiry-form) .inquiry-job-form {
    max-width: 100%;
    background-color: #ffffff;
  }
  body:has(#inquiry-form) {
    /* PC版：2カラムレイアウト */
  }
  body:has(#inquiry-form) .form-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border-bottom: 1px solid #d1d5db;
    align-items: stretch;
    min-height: 6rem;
  }
  body:has(#inquiry-form) .form-group:last-of-type {
    border-bottom: 1px solid #d1d5db;
  }
  body:has(#inquiry-form) .form-group .mfp_err {
    flex: 0 0 100%;
    padding: 0.3rem 3.5rem 0.3rem 29.5rem;
    min-height: 0;
  }
  body:has(#inquiry-form) .form-group .mfp_err:empty {
    display: none;
  }
  body:has(#inquiry-form) {
    /* 左カラム：ラベルエリア */
  }
  body:has(#inquiry-form) .form-label {
    flex: 0 0 26rem;
    background-color: #f5f5f5;
    padding: 2.5rem 2.5rem;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    border-right: 1px solid #d1d5db;
  }
  body:has(#inquiry-form) {
    /* 右カラム：入力エリア（直接の子要素） */
  }
  body:has(#inquiry-form) .form-group > .form-input,
  body:has(#inquiry-form) .form-group > .address-group,
  body:has(#inquiry-form) .form-group > .radio-group,
  body:has(#inquiry-form) .form-group > .birthday-group,
  body:has(#inquiry-form) .form-group > .checkbox-sections-wrapper,
  body:has(#inquiry-form) .form-group > .textarea-wrapper,
  body:has(#inquiry-form) .form-group > .privacy-policy-section {
    flex: 1;
    padding: 2.5rem 3.5rem;
  }
  body:has(#inquiry-form) {
    /* 住所グループの調整 */
  }
  body:has(#inquiry-form) .address-group .zip-code-wrapper {
    margin: 0 0 1rem 0;
    gap: 0.8rem;
  }
  body:has(#inquiry-form) .address-group .zip-code-wrapper .sub-label {
    font-size: 1.5rem;
  }
  body:has(#inquiry-form) .address-group .zip-code-wrapper .zip-input {
    max-width: 25rem;
  }
  body:has(#inquiry-form) .address-group .form-input {
    max-width: none;
  }
  body:has(#inquiry-form) {
    /* ラジオボタングループ */
  }
  body:has(#inquiry-form) .radio-group {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  body:has(#inquiry-form) {
    /* PC版：性別専用のレイアウト調整 */
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) {
    min-height: 6rem;
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) .form-label {
    flex: 0 0 26rem;
    background-color: #f5f5f5;
    padding: 2.5rem 2.5rem;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    border-right: 1px solid #d1d5db;
    line-height: 1.4;
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) {
    /* PC版：性別ラベル専用のスタイル（カスケード内で定義） */
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) .radio-label-select2 {
    flex: 0 0 26rem;
    background-color: #f5f5f5;
    padding: 2.5rem 2.5rem;
    margin: 0 0 0 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    border-right: 1px solid #d1d5db;
    line-height: 1;
    font-weight: normal;
    color: #1F1F1F;
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) .radio-group {
    flex: 1;
    padding: 2.5rem 3.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) {
    /* PC版：ラジオボタンラベル専用のスタイル（カスケード内で定義） */
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) .radio-label {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #1F1F1F;
    cursor: pointer;
    line-height: 1;
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) .radio-label input[type=radio] {
    width: 2rem;
    height: 2rem;
    margin: 0 0.5rem 0 0;
    cursor: pointer;
    accent-color: #6CBB5A;
    vertical-align: middle;
  }
  body:has(#inquiry-form) .form-group:has(.radio-group) .radio-label span {
    line-height: 1;
    vertical-align: middle;
  }
  body:has(#inquiry-form) {
    /* 生年月日グループ */
  }
  body:has(#inquiry-form) .birthday-group {
    max-width: 60rem;
    gap: 1.5rem;
  }
  body:has(#inquiry-form) {
    /* PC版：セレクトボックス */
  }
  body:has(#inquiry-form) .form-select {
    padding: 1.5rem;
    font-size: 1.5rem;
    background-position: right 1.2rem center;
    background-size: 1.8rem 1.8rem;
    padding-right: 4rem;
  }
  body:has(#inquiry-form) {
    /* PC版：スキルセクション */
  }
  body:has(#inquiry-form) .skill-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
  }
  body:has(#inquiry-form) .skill-section .skill-section-title {
    font-size: 2rem;
    margin: 0 0 3rem 0;
    padding: 0 0 1.5rem 0;
  }
  body:has(#inquiry-form) {
    /* PC版：扱えるソフトセクション */
  }
  body:has(#inquiry-form) .software-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
  }
  body:has(#inquiry-form) .software-section .software-section-title {
    font-size: 2rem;
    margin: 0 0 3rem 0;
    padding: 0 0 1.5rem 0;
  }
  body:has(#inquiry-form) {
    /* チェックボックスセクション */
  }
  body:has(#inquiry-form) .checkbox-section {
    padding: 0;
    border: 2px dotted #d1d5db;
    margin: 0 0 2.5rem 0;
  }
  body:has(#inquiry-form) .checkbox-section .checkbox-section-title {
    margin: 0 0 2rem 0;
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
    font-weight: normal;
    color: #374151;
    background-color: rgba(108, 187, 90, 0.1);
    border-radius: 0.4rem;
    border-left: 3px solid #6CBB5A;
    text-align: left;
  }
  body:has(#inquiry-form) {
    /* チェックボックスグループ */
  }
  body:has(#inquiry-form) .checkbox-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    padding: 0 2rem 2rem 2rem;
  }
  body:has(#inquiry-form) .checkbox-group .checkbox-label {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 14rem;
  }
  body:has(#inquiry-form) {
    /* テキストエリア */
  }
  body:has(#inquiry-form) .form-textarea {
    min-height: 20rem;
  }
  body:has(#inquiry-form) {
    /* 文字数制限 */
  }
  body:has(#inquiry-form) .char-limit {
    margin: -2rem 0 0 0;
    padding: 0 0 0 0;
  }
  body:has(#inquiry-form) {
    /* テキストエリアラッパー */
  }
  body:has(#inquiry-form) .textarea-wrapper {
    padding: 0;
  }
  body:has(#inquiry-form) {
    /* 個人情報保護方針セクション */
  }
  body:has(#inquiry-form) .privacy-policy-section {
    padding: 0;
  }
  body:has(#inquiry-form) .privacy-policy-section .privacy-content {
    max-height: 35rem;
    padding: 2.5rem;
    border: 4px solid #12B8D7;
  }
  body:has(#inquiry-form) {
    /* 同意チェックボックスラッパー */
  }
  body:has(#inquiry-form) .consent-wrapper {
    margin: 4rem 0 4rem 0;
  }
  body:has(#inquiry-form) {
    /* 同意チェックボックス */
  }
  body:has(#inquiry-form) .consent-checkbox {
    padding: 2rem;
    justify-content: center;
  }
  body:has(#inquiry-form) .consent-checkbox span {
    font-size: 1.8rem;
  }
  body:has(#inquiry-form) {
    /* 送信ボタン */
  }
  body:has(#inquiry-form) .submit-btn {
    font-size: 2rem;
    padding: 2rem 8rem;
    max-width: 70rem;
  }
}

/* ========================================
   求人相談フォーム（recruitment.html）
   ======================================== */
/*
 * 基本的なフォームスタイルはinquiry_job.scssと共通
 * ここにはrecruitment.html固有のスタイルのみを記述
 */
body:has(#recruitment-form) {
  /* ========================================
   ヒーローセクション（企業向け求人相談フォームページ専用）

   【重要】style.scss の #header #hero を継承・上書き
   継承元: style.scss 599-667行目

   上書き必須プロパティ：
   - height, min-height（トップページは 100vh / 60rem）
   - .title の position, top, left（トップページは relative / -7.5rem / 0）
   - .subtitle の position, top, left（トップページは relative / -8.125rem / 0）
   ======================================== */
}
body:has(#recruitment-form) #header #hero {
  height: 20rem;
  min-height: auto;
  background-image: url("../images/img_bg_recruitment_firefly.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
body:has(#recruitment-form) #header #hero .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
  letter-spacing: 0.125rem;
  position: static;
  top: auto;
  left: auto;
}
body:has(#recruitment-form) #header #hero .subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.5);
  margin: 0 2rem 0 2rem;
  position: static;
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  body:has(#recruitment-form) #header #hero .title {
    font-size: 2.8rem;
    margin: 0 0 1.2rem 0;
  }
  body:has(#recruitment-form) #header #hero .subtitle {
    font-size: 1.6rem;
  }
}
body:has(#recruitment-form) {
  /* ========================================
   フォームセクション全体
   ======================================== */
}
body:has(#recruitment-form) #recruitment-form.section-white {
  background-color: rgba(255, 255, 255, 0);
}
body:has(#recruitment-form) #recruitment-form.section {
  padding: 2rem 0 0rem 0;
}
body:has(#recruitment-form) {
  /* ========================================
   フォーム導入文
   ======================================== */
}
body:has(#recruitment-form) .form-intro {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 2rem 1.5rem 2rem;
  margin: 0 0 2rem 0;
  border-radius: 0.8rem;
}
body:has(#recruitment-form) .form-intro p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1F1F1F;
  margin: 0 0 1.5rem 0;
}
body:has(#recruitment-form) .form-intro p:last-child {
  margin: 0;
}
body:has(#recruitment-form) {
  /* ========================================
   フォーム注意事項セクション
   ======================================== */
}
body:has(#recruitment-form) .form-notice {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem 1.5rem 2rem 1.5rem;
  margin: 0 0 2rem 0;
  border-radius: 0.8rem;
}
body:has(#recruitment-form) .form-notice .notice-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1B2850;
  margin: 0 0 1.5rem 0;
  padding: 0 0 0.8rem 0;
  border-bottom: 1px solid #6CBB5A;
}
body:has(#recruitment-form) .form-notice .notice-list {
  list-style: none;
  padding: 0 0 0 0;
  margin: 1.5rem 0 1.5rem 0;
}
body:has(#recruitment-form) .form-notice .notice-list li {
  position: relative;
  padding: 0 0 0 1.5rem;
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #1F1F1F;
}
body:has(#recruitment-form) .form-notice .notice-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #6CBB5A;
}
body:has(#recruitment-form) .form-notice .notice-list li:last-child {
  margin: 0;
}
body:has(#recruitment-form) {
  /* ========================================
   求人相談メールフォームコンテナ
   ======================================== */
}
body:has(#recruitment-form) .form-container {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #6CBB5A;
  border-radius: 0.8rem;
  padding: 2rem 2.2rem 2rem 2.2rem;
  margin: 2rem 0 2rem 0;
}
body:has(#recruitment-form) .form-container .form-section-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 2rem 0;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #6CBB5A;
  text-align: center;
}
@media (min-width: 768px) {
  body:has(#recruitment-form) .form-container {
    padding: 3rem 2rem 3rem 2rem;
    margin: 3rem 0 3rem 0;
  }
  body:has(#recruitment-form) .form-container .form-section-title {
    font-size: 2.2rem;
    margin: 0 0 3rem 0;
    padding: 0 0 1.5rem 0;
  }
}
body:has(#recruitment-form) {
  /* ========================================
   フォーム全体
   ======================================== */
}
body:has(#recruitment-form) .inquiry-job-form {
  max-width: 100%;
  margin: 0 auto;
}
body:has(#recruitment-form) {
  /* サブラベル */
}
body:has(#recruitment-form) .sub-label {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0.5rem 0 0;
}
body:has(#recruitment-form) {
  /* ========================================
   住所グループ
   ======================================== */
}
body:has(#recruitment-form) .address-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body:has(#recruitment-form) .address-group .zip-code-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body:has(#recruitment-form) .address-group .zip-code-wrapper .sub-label {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #1F1F1F;
  flex-shrink: 0;
}
body:has(#recruitment-form) .address-group .zip-code-wrapper .zip-input {
  max-width: 12rem;
  flex: 1;
}
body:has(#recruitment-form) {
  /* ========================================
   ラジオボタングループ
   ======================================== */
}
body:has(#recruitment-form) .radio-group {
  display: flex;
  gap: 2rem;
}
body:has(#recruitment-form) {
  /* ========================================
   セレクトボックス
   ======================================== */
}
body:has(#recruitment-form) .form-group .form-select {
  flex: 1;
  padding: 1.2rem;
  font-size: 1.4rem;
  border: 1px solid #d1d5db;
  border-radius: 0.4rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s;
  /* ブラウザ標準の下矢印を非表示にして、カスタム矢印を配置 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.6rem 1.6rem;
  padding-right: 3.5rem;
}
body:has(#recruitment-form) .form-group .form-select:focus {
  outline: none;
  border-color: #6CBB5A;
}
body:has(#recruitment-form) {
  /* ========================================
   チェックボックスセクション
   ======================================== */
}
body:has(#recruitment-form) .checkbox-section {
  margin: 0 0 2rem 0;
  padding: 2rem 1.5rem;
  border: 2px dotted #d1d5db;
  border-radius: 0.4rem;
}
body:has(#recruitment-form) .checkbox-section .checkbox-section-title {
  font-size: 1.3rem;
  font-weight: normal;
  color: #374151;
  background-color: rgba(108, 187, 90, 0.1);
  padding: 0.6rem 1rem;
  margin: 0 0 1.5rem 0;
  border-radius: 0.4rem;
  border-left: 3px solid #6CBB5A;
  text-align: left;
}
body:has(#recruitment-form) {
  /* チェックボックスグループ */
}
body:has(#recruitment-form) .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body:has(#recruitment-form) {
  /* より具体的なセレクタで優先度を上げる */
}
body:has(#recruitment-form) .form-group .checkbox-label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #1F1F1F;
  cursor: pointer;
}
body:has(#recruitment-form) .form-group .checkbox-label input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  margin: 0 0.8rem 0 0;
  cursor: pointer;
  accent-color: #6CBB5A;
  vertical-align: middle;
}
body:has(#recruitment-form) .form-group .checkbox-label span {
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
}
body:has(#recruitment-form) {
  /* 文字数制限表示 */
}
body:has(#recruitment-form) .char-limit {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0.5rem 0 0 0;
  text-align: right;
}
body:has(#recruitment-form) {
  /* ========================================
   個人情報保護方針セクション
   ======================================== */
}
body:has(#recruitment-form) .privacy-policy-section {
  margin: 0 0 2rem 0;
}
body:has(#recruitment-form) .privacy-policy-section .privacy-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 1.5rem 0;
}
body:has(#recruitment-form) .privacy-policy-section .privacy-content {
  max-height: 40rem;
  overflow-y: scroll;
  padding: 2rem;
  border: 3px solid #12B8D7;
  border-radius: 0.4rem;
  background-color: #ffffff;
}
body:has(#recruitment-form) .privacy-policy-section .privacy-content .privacy-subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1F1F1F;
  margin: 0 0 0.8rem 0;
}
body:has(#recruitment-form) .privacy-policy-section .privacy-content .privacy-subtitle:first-child {
  margin: 0 0 0.8rem 0;
}
body:has(#recruitment-form) .privacy-policy-section .privacy-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
}
body:has(#recruitment-form) .privacy-policy-section .privacy-content address {
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #1F1F1F;
  margin: 0 0 1rem 0;
}
body:has(#recruitment-form) .privacy-policy-section .privacy-content address .phone-number-img {
  height: 1.3rem;
  vertical-align: middle;
}
body:has(#recruitment-form) .privacy-policy-section .privacy-content .policy-note {
  font-size: 1.2rem;
  color: #666;
}
body:has(#recruitment-form) {
  /* ========================================
   同意チェックボックス
   ======================================== */
}
body:has(#recruitment-form) .consent-wrapper {
  margin: 3rem 0 3rem 0;
}
body:has(#recruitment-form) .consent-checkbox {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #f8fafc;
  border-radius: 0.4rem;
}
body:has(#recruitment-form) .consent-checkbox input[type=checkbox] {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 1rem 0 0;
  cursor: pointer;
  accent-color: #6CBB5A;
}
body:has(#recruitment-form) .consent-checkbox span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1F1F1F;
}
body:has(#recruitment-form) {
  /* ========================================
   送信ボタン
   ======================================== */
}
body:has(#recruitment-form) .form-submit {
  text-align: center;
  margin: 4rem 0 0 0;
}
body:has(#recruitment-form) {
  /* ========================================
   PC版レイアウト
   ======================================== */
}
@media (min-width: 768px) {
  body:has(#recruitment-form) .form-intro,
  body:has(#recruitment-form) .form-notice {
    margin: 0 0 4rem 0;
  }
  body:has(#recruitment-form) .inquiry-job-form {
    max-width: 100%;
    background-color: #ffffff;
  }
  body:has(#recruitment-form) {
    /* PC版：2カラムレイアウト */
  }
  body:has(#recruitment-form) .form-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border-bottom: 1px solid #d1d5db;
    align-items: stretch;
    min-height: 6rem;
  }
  body:has(#recruitment-form) .form-group:last-of-type {
    border-bottom: 1px solid #d1d5db;
  }
  body:has(#recruitment-form) .form-group .mfp_err {
    flex: 0 0 100%;
    padding: 0.3rem 3.5rem 0.3rem 29.5rem;
    min-height: 0;
  }
  body:has(#recruitment-form) .form-group .mfp_err:empty {
    display: none;
  }
  body:has(#recruitment-form) {
    /* 左カラム：ラベルエリア */
  }
  body:has(#recruitment-form) .form-label {
    flex: 0 0 26rem;
    background-color: #f5f5f5;
    padding: 2.5rem 2.5rem;
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    border-right: 1px solid #d1d5db;
  }
  body:has(#recruitment-form) {
    /* 右カラム：入力エリア（直接の子要素） */
  }
  body:has(#recruitment-form) .form-group > .form-input,
  body:has(#recruitment-form) .form-group > .address-group,
  body:has(#recruitment-form) .form-group > .radio-group,
  body:has(#recruitment-form) .form-group > .birthday-group,
  body:has(#recruitment-form) .form-group > .checkbox-sections-wrapper,
  body:has(#recruitment-form) .form-group > .textarea-wrapper,
  body:has(#recruitment-form) .form-group > .privacy-policy-section {
    flex: 1;
    padding: 2.5rem 3.5rem;
  }
  body:has(#recruitment-form) {
    /* 入力フィールド */
  }
  body:has(#recruitment-form) .form-input {
    max-width: 55rem;
  }
  body:has(#recruitment-form) {
    /* 住所グループの調整 */
  }
  body:has(#recruitment-form) .address-group .zip-code-wrapper {
    margin: 0 0 1rem 0;
    gap: 0.8rem;
  }
  body:has(#recruitment-form) .address-group .zip-code-wrapper .sub-label {
    font-size: 1.5rem;
  }
  body:has(#recruitment-form) .address-group .zip-code-wrapper .zip-input {
    max-width: 25rem;
  }
  body:has(#recruitment-form) .address-group .form-input {
    max-width: none;
  }
  body:has(#recruitment-form) {
    /* ラジオボタングループ */
  }
  body:has(#recruitment-form) .radio-group {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  body:has(#recruitment-form) {
    /* PC版：セレクトボックス */
  }
  body:has(#recruitment-form) .form-select {
    padding: 1.5rem;
    font-size: 1.5rem;
    background-position: right 1.2rem center;
    background-size: 1.8rem 1.8rem;
    padding-right: 4rem;
  }
  body:has(#recruitment-form) {
    /* チェックボックスセクション */
  }
  body:has(#recruitment-form) .checkbox-section {
    padding: 0;
    border: 2px dotted #d1d5db;
    margin: 0 0 2.5rem 0;
  }
  body:has(#recruitment-form) .checkbox-section .checkbox-section-title {
    margin: 0 0 2rem 0;
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
    font-weight: normal;
    color: #374151;
    background-color: rgba(108, 187, 90, 0.1);
    border-radius: 0.4rem;
    border-left: 3px solid #6CBB5A;
    text-align: left;
  }
  body:has(#recruitment-form) {
    /* チェックボックスグループ（採用の課題用：2列レイアウト） */
  }
  body:has(#recruitment-form) .checkbox-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    padding: 0 2rem 2rem 2rem;
  }
  body:has(#recruitment-form) .checkbox-group .checkbox-label {
    flex: 0 0 calc(50% - 1rem);
    min-width: 14rem;
    align-items: flex-start;
  }
  body:has(#recruitment-form) .checkbox-group .checkbox-label input[type=checkbox] {
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem;
    margin: 0.2rem 0.8rem 0 0;
  }
  body:has(#recruitment-form) .checkbox-group .checkbox-label span {
    line-height: 1.4;
  }
  body:has(#recruitment-form) {
    /* テキストエリア */
  }
  body:has(#recruitment-form) .form-textarea {
    min-height: 20rem;
  }
  body:has(#recruitment-form) {
    /* 文字数制限 */
  }
  body:has(#recruitment-form) .char-limit {
    margin: -2rem 0 0 0;
    padding: 0 0 0 0;
  }
  body:has(#recruitment-form) {
    /* テキストエリアラッパー */
  }
  body:has(#recruitment-form) .textarea-wrapper {
    padding: 0;
  }
  body:has(#recruitment-form) {
    /* 個人情報保護方針セクション */
  }
  body:has(#recruitment-form) .privacy-policy-section {
    padding: 0;
  }
  body:has(#recruitment-form) .privacy-policy-section .privacy-content {
    max-height: 35rem;
    padding: 2.5rem;
    border: 4px solid #12B8D7;
  }
  body:has(#recruitment-form) {
    /* 同意チェックボックスラッパー */
  }
  body:has(#recruitment-form) .consent-wrapper {
    margin: 4rem 0 4rem 0;
  }
  body:has(#recruitment-form) {
    /* 同意チェックボックス */
  }
  body:has(#recruitment-form) .consent-checkbox {
    padding: 2rem;
    justify-content: center;
  }
  body:has(#recruitment-form) .consent-checkbox span {
    font-size: 1.8rem;
  }
  body:has(#recruitment-form) {
    /* 送信ボタン */
  }
  body:has(#recruitment-form) .submit-btn {
    font-size: 2rem;
    padding: 2rem 8rem;
    max-width: 70rem;
  }
}

/* ========================================
   プライバシーポリシー（privacy_policy.html）
   ======================================== */
body:has(#privacy-policy) {
  /* ========================================
   ヒーローセクション（プライバシーポリシーページ専用）

   【重要】style.scss の #header #hero を継承・上書き
   継承元: style.scss 599-667行目

   上書き必須プロパティ：
   - height, min-height（トップページは 100vh / 60rem）
   - .title の position, top, left（トップページは relative / -7.5rem / 0）
   - .subtitle の position, top, left（トップページは relative / -8.125rem / 0）
   ======================================== */
}
body:has(#privacy-policy) #header #hero {
  height: 20rem;
  min-height: auto;
  background-image: url("../images/bg_privacy_policy.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
body:has(#privacy-policy) #header #hero .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0rem 0 1.2rem 0;
  line-height: 1.3;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
  letter-spacing: 0.125rem;
  padding: 0 0 0 0rem;
  position: relative;
  left: 0;
  top: -2rem;
}
body:has(#privacy-policy) #header #hero .subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.5);
  position: relative;
  left: 0;
  top: -2.5rem;
  margin: 0 2rem 0 2rem;
}
@media (min-width: 768px) {
  body:has(#privacy-policy) #header #hero .title {
    font-size: 2.8rem;
    margin: 0 0 1.2rem 0;
  }
  body:has(#privacy-policy) #header #hero .subtitle {
    font-size: 1.6rem;
  }
}
body:has(#privacy-policy) {
  /* ========================================
   ポリシーコンテンツ
   ======================================== */
  /* ポリシーコンテナ */
}
body:has(#privacy-policy) .policy-container {
  padding: 0 1rem 0 1rem;
}
body:has(#privacy-policy) {
  /* ポリシーセクション */
}
body:has(#privacy-policy) .policy-section {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem 1.5rem 2rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0.8rem;
}
body:has(#privacy-policy) .policy-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1B2850;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #6CBB5A;
}
body:has(#privacy-policy) .policy-section p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #1F1F1F;
  margin-bottom: 1.5rem;
}
body:has(#privacy-policy) .policy-section p:last-child {
  margin-bottom: 0;
}
body:has(#privacy-policy) .policy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 1.5rem 0;
}
body:has(#privacy-policy) .policy-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #1F1F1F;
}
body:has(#privacy-policy) .policy-section ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #6CBB5A;
}
body:has(#privacy-policy) address {
  font-style: normal;
}
body:has(#privacy-policy) address .policy-phone {
  display: inline-block;
  font-size: 1.4rem;
  color: #333;
}
body:has(#privacy-policy) address .policy-phone .phone-number-img {
  height: 1.6rem;
  vertical-align: middle;
  margin-left: 0.5rem;
}
body:has(#privacy-policy) {
  /* PC版レスポンシブ対応 */
}
@media (min-width: 768px) {
  body:has(#privacy-policy) .policy-container {
    padding: 0 4rem 0 4rem;
    max-width: 100rem;
    margin: 0 auto 0 auto;
  }
  body:has(#privacy-policy) .policy-section {
    padding: 3rem 4rem 3rem 4rem;
    margin-bottom: 3rem;
  }
  body:has(#privacy-policy) .policy-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  body:has(#privacy-policy) .policy-section p {
    font-size: 1.5rem;
    line-height: 1.9;
  }
  body:has(#privacy-policy) .policy-section ul li {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  body:has(#privacy-policy) address .policy-phone {
    font-size: 1.6rem;
  }
  body:has(#privacy-policy) address .policy-phone .phone-number-img {
    height: 1.8rem;
  }
}

/* ========================================
   お問い合わせ完了ページ（page-thanks.php）

   【スコープ】body:has(#thanks-page) 配下
   【ヒーロー継承元】style.scss の #header #hero
   ======================================== */
body:has(#thanks-page) {
  /* ========================================
     ヒーローセクション（送信完了ページ専用）

     【上書きプロパティ】
     - height, min-height（トップページは 100vh / 60rem）
     - .title の position, top, left（トップページは relative / -7.5rem / 0）
     ======================================== */
}
body:has(#thanks-page) #header #hero {
  height: 20rem;
  min-height: auto;
  background-image: url("../images/bg_inquiry_job_header.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
body:has(#thanks-page) #header #hero .title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 1.2rem 0;
  line-height: 1.3;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
  letter-spacing: 0.125rem;
  position: relative;
  left: 0;
  top: -2rem;
}
@media (min-width: 768px) {
  body:has(#thanks-page) #header #hero .title {
    font-size: 2.8rem;
    margin: 0 0 1.2rem 0;
  }
}
body:has(#thanks-page) {
  /* ========================================
     メインコンテンツ全体（policy-container 準拠）
     ======================================== */
}
body:has(#thanks-page) .thanks-container {
  padding: 0 1rem 4rem;
  text-align: center;
}
body:has(#thanks-page) .thanks-container .thanks-inner {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0.8rem;
}
body:has(#thanks-page) {
  /* ========================================
     チェックアイコン
     ======================================== */
}
body:has(#thanks-page) .thanks-icon-wrap {
  margin-bottom: 2.4rem;
}
body:has(#thanks-page) .thanks-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #f0fdf4;
  border: 3px solid #4CAF50;
}
body:has(#thanks-page) .thanks-check-svg {
  width: 4.8rem;
  height: 4.8rem;
}
body:has(#thanks-page) .thanks-check-svg polyline {
  stroke: #4CAF50;
}
body:has(#thanks-page) {
  /* ========================================
     受付番号
     ======================================== */
}
body:has(#thanks-page) .thanks-receipt {
  font-size: 1.4rem;
  color: #1F1F1F;
  margin-bottom: 2rem;
  line-height: 1.8;
}
body:has(#thanks-page) .thanks-receipt-number {
  color: #e53e3e;
  font-weight: bold;
}
body:has(#thanks-page) {
  /* ========================================
     完了見出し
     ======================================== */
}
body:has(#thanks-page) .thanks-heading {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1B2850;
  margin-bottom: 1.6rem;
  line-height: 1.4;
}
body:has(#thanks-page) {
  /* ========================================
     説明テキスト
     ======================================== */
}
body:has(#thanks-page) .thanks-desc {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #1F1F1F;
  margin-bottom: 3.2rem;
}
body:has(#thanks-page) .thanks-desc-br {
  display: none;
}
body:has(#thanks-page) {
  /* ========================================
     ボタン
     ======================================== */
}
body:has(#thanks-page) .thanks-btn-wrap {
  margin-bottom: 4rem;
}
body:has(#thanks-page) .thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #12B8D7;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  padding: 1.4rem 3.2rem;
  border-radius: 1rem;
  transition: all 0.3s;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1), 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
}
body:has(#thanks-page) .thanks-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
body:has(#thanks-page) .thanks-btn-icon {
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}
body:has(#thanks-page) {
  /* ========================================
     メールが届かない場合ボックス
     ======================================== */
}
body:has(#thanks-page) .thanks-notice-box {
  text-align: left;
  background-color: #eff6ff;
  border: 2px solid #dbeafe;
  border-radius: 0.8rem;
  padding: 2rem 2.4rem;
}
body:has(#thanks-page) .thanks-notice-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #193cb8;
  margin-bottom: 1rem;
  padding-left: 1.4rem;
  position: relative;
}
body:has(#thanks-page) .thanks-notice-title::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #2b7fff;
  position: absolute;
  left: 0;
  top: 0.55em;
}
body:has(#thanks-page) .thanks-notice-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(20, 71, 230, 0.8);
  margin: 0;
}
body:has(#thanks-page) {
  /* ========================================
     PC版レスポンシブ対応
     ======================================== */
}
@media (min-width: 768px) {
  body:has(#thanks-page) .thanks-container {
    padding: 0 4rem 6rem;
    max-width: 100rem;
    margin: 2rem auto 0 auto;
  }
  body:has(#thanks-page) .thanks-container .thanks-inner {
    padding: 3rem 4rem;
    margin-bottom: 3rem;
  }
  body:has(#thanks-page) .thanks-icon-circle {
    width: 9.6rem;
    height: 9.6rem;
  }
  body:has(#thanks-page) .thanks-check-svg {
    width: 5.6rem;
    height: 5.6rem;
  }
  body:has(#thanks-page) .thanks-receipt {
    font-size: 1.6rem;
  }
  body:has(#thanks-page) .thanks-heading {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  body:has(#thanks-page) .thanks-desc {
    font-size: 1.6rem;
  }
  body:has(#thanks-page) .thanks-desc-br {
    display: block;
  }
  body:has(#thanks-page) .thanks-btn {
    font-size: 1.6rem;
    padding: 1.6rem 4rem;
  }
  body:has(#thanks-page) .thanks-btn-icon {
    width: 2rem;
    height: 2rem;
  }
  body:has(#thanks-page) .thanks-notice-box {
    padding: 2.4rem 3.2rem;
  }
  body:has(#thanks-page) .thanks-notice-title {
    font-size: 1.6rem;
  }
  body:has(#thanks-page) .thanks-notice-text {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
