@charset "utf-8";
/* CSS Document */
/* RECRUIT */
.hod-recruit-body{
  background: #071430;
  color: #fff;
}
/* =========================
   RECRUIT HERO（冒頭）
========================= */


.recruit-hero__lead{
  margin: 0 0 80px;
  font-size: 17px;
  letter-spacing: .10em;
  opacity: .9;
}

.recruit-hero__desc{
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
  opacity: .85;
line-height: 3;
letter-spacing: 0.2em;
}

.recruit-hero__img{
  margin: 60px auto 0px;
}

.recruit-hero__img img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* SP */
@media (max-width: 768px){
  .recruit-hero{
    padding-top: 12px;
  }
  .recruit-hero__img{
width: 100%;
margin: 60px auto 100px;
  }
}



/* =========================
   募集要項（線テーブル）完全再現
========================= */
.sec-head{
  display: flex;
  align-items: baseline;
  gap: 22px;
  justify-content: flex-start; /* 左寄せ */
  width: min(760px, 100%);     /* テーブル幅と同じ */
margin: 0px 0 180px;      /* テーブルと同じ中央配置 */
}
.sec-head__jp{
  margin: 0;
  font-size: 17px;
  letter-spacing: .22em;
  opacity: .95;
}
.sec-head__en{
  font-size: 12px;
  letter-spacing: .28em;
  opacity: .55;
}

/* 中央に置く “線テーブル” */
.jd-table{

  margin: 0 auto;
}

/* 上の線（最初の1本） */
.jd-dl{
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.jd-row{
  display: grid;
  grid-template-columns: 160px 1fr;   /* 左：項目／右：内容 */
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.jd-th{
  margin: 0;
  font-size: 12px;
  letter-spacing: .32em;
  opacity: .78;
  padding-left: 6px;
}

.jd-td{
  margin: 0;
  font-size: 15px;
  line-height: 2.0;
  letter-spacing: .06em;
  opacity: .92;
}

/* SP：幅と行間を整える */
@media (max-width: 768px){
.sec-head{
margin-bottom: 100px;
content: flex-start; /* SPは左寄せの方が読みやすい */
  }
  .jd-row{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }
  .jd-th{
    padding-left: 0;
  }
}


/* =========================
   OUR CULTURE（添付③再現）
========================= */
.culture{
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px; /* 右が縦長写真 */
  gap: 56px;
  align-items: start;
}

.culture__text{
  padding-top: 8px;
}

.culture__title{
    margin: 0 0 50px;
    font-size: 17px;
    letter-spacing: .10em;
    opacity: .92;
    font-weight: normal;
}

.culture__p{
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 3;
letter-spacing: 0.2em;
  opacity: .86;
}

.culture__img{
  margin: 0;
  width: 100%;
}

.culture__img img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

/* SP：縦積み */
@media (max-width: 768px){
  .culture{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .culture__img{
    width: min(360px, 100%);
    margin: 0 auto;
  }
}



/* RECRUIT */




.hod-about-body { margin: 0; }
/*.hod-about-body, .hod-about-body * { box-sizing: border-box; }*/

:root{
  --hod-bg: #071430;
  --hod-text: rgba(255,255,255,.92);
  --hod-muted: rgba(255,255,255,.70);
  --hod-line: rgba(255,255,255,.14);
  --hod-header-h: 76px;
}

body.hod-about-body{
  background: var(--hod-bg);
  color: var(--hod-text);

}

/* ========== Layout ========== 
.hod-about{
  padding-top: var(--hod-header-h);
  min-height: 100svh;
}*/

/* SPアンカー（上部に追従なし）
.hod-about__spanchors{
  display:none;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.hod-about__spanchors a{
  color: var(--hod-text);
  text-decoration:none;
  font-size: 12px;
  letter-spacing: .10em;
  margin-right: 14px;
  opacity: .9;
}
.hod-about__spanchors a:hover{ opacity:1; } */


/*.hod-about__layout{
  width: min(1200px, calc(100vw - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 40px 0 60px;
}

/* 左固定アンカー（PC）
.hod-sidemenu{
  position: sticky;
  top: calc(var(--hod-header-h) + 30px);
  align-self: start;
  padding-top: 40px;
}
.hod-sidemenu__title{
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .85;
  margin-bottom: 18px;
}
.hod-sidemenu__nav{
  display:grid;
  gap: 12px;
}
.hod-sidemenu__nav a{
  color: var(--hod-muted);
  text-decoration:none;
  font-size: 12px;
  letter-spacing: .18em;
}
.hod-sidemenu__nav a:hover{ color: var(--hod-text); } */

/* 右：この中だけスクロール（PC） 
.hod-content{
  
  overflow: auto;
  padding: 40px 6px 120px;
}*/

/* 右側スクロールバー見た目はデフォルトでOK（指定しない） */

/* ========== Content styles ========== 
.hod-section{ padding: 50px 0; border-top: 1px solid rgba(255,255,255,.06); }
.hod-section--intro{ border-top: none; padding-top: 30px; }*/

.hod-h1{
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: .22em;
}
/*.hod-lead{
  margin: 0;
  max-width: 720px;
  color: var(--hod-muted);
  line-height: 2.0;
  font-size: 15px;
}*/

/*.hod-h2{
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .9;
}*/

.hod-p{
  color: var(--hod-muted);
  line-height: 2.0;
  font-size: 15px;
  margin: 18px 0 0;
}

.hod-list{
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--hod-muted);
  line-height: 2.0;
  font-size: 15px;
}

.hod-profile{
  display:grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}
.hod-profile__photo{
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.hod-profile__photo img{ width:100%; height:auto; display:block; }

.hod-name{
  display:flex;
  align-items: baseline;
  gap: 12px;
}
.hod-name__jp{ font-size: 14px; letter-spacing: .08em; }
.hod-name__en{ font-size: 10px; letter-spacing: .20em; opacity: .7; }

.hod-card{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  padding: 18px 18px;
  background: rgba(255,255,255,.02);
}
.hod-dl{ margin:0; }
.hod-dl > div{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hod-dl > div:first-child{ border-top: none; }
.hod-dl dt{ color: rgba(255,255,255,.78); font-size: 12px; letter-spacing: .10em; }
.hod-dl dd{ margin:0; color: var(--hod-muted); font-size: 15px; line-height: 1.8; }

.hod-steps{
  margin: 0;
  padding-left: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.hod-steps li{
  display:flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  color: var(--hod-muted);
  font-size: 15px;
}
.hod-steps li span{
  display:inline-flex;
  width: 34px; height: 26px;
  align-items:center; justify-content:center;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--hod-text);
  font-size: 12px;
  letter-spacing: .12em;
}

.hod-about__footer{
  padding: 28px 0 0;
  opacity: .75;
  font-size: 11px;
}


@media (max-width: 768px){
  :root{ --hod-header-h: 66px; }


 /*  .hod-header__nav{ display:none; }
  .hod-burger{ display:inline-flex; align-items:center; justify-content:center; }
 .hod-about__layout{
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 0 60px;
  }*/

  .hod-sidemenu{ display:none; }
 /* .hod-content{
    height: auto;
    overflow: visible;
    padding: 18px 0 80px;
  }
*/
  .hod-profile{ grid-template-columns: 1fr; }
  .hod-profile__photo{ max-width: 320px; }
}

/* =========================
   Section head (会社概要 / サービスフロー)
=========================
.hod-sectionhead{
  display:flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 18px;
}
.hod-h2sub{
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .65;
  text-transform: uppercase;
}
 */
/* =========================
   COMPANY (添付1の線テーブル)
========================= 
.hod-company{
  margin-top: 8px;
}
.hod-company__dl{
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hod-company__row{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hod-company__row dt{
  font-size: 12px;
  letter-spacing: .18em;
  opacity: .85;
}
.hod-company__row dd{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  opacity: .92;
}
.hod-company__mail{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.hod-company__map{
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.hod-company__map iframe{
  width: 100%;
  height: 240px;
  border: 0;
  display:block;
}

/* SP */
@media (max-width: 768px){
  .hod-company__row{
    grid-template-columns: 120px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .hod-company__map iframe{ height: 220px; }
}

/* =========================
   FLOW (添付2/3の縦タイムライン)
========================= */
.hod-flow{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  position: relative;
}

/* 縦ライン */
.hod-flow::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.18);
}

.hod-flow__item{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  position: relative;
}

.hod-flow__dot{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  color: #071430;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: .06em;
  position: relative;
  z-index: 2;
  margin-left: 0; /* left aligned */
}

.hod-flow__title{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .12em;
}
.hod-flow__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  opacity: .9;
}
.tel-btn{
align-items: center;
gap: 8px;
color: #fff;
padding: 8px 14px;
border-radius: 4px;
text-decoration: none;
font-size: 20px;
line-height: 1;
display: block;
margin-bottom: 50px;
}

.tel-btn:hover {
  opacity:.5;
}

.tel-btn__icon svg {
  width:24px;
  height:24px;
}

.tel-btn__number {
  letter-spacing:.05em;
}

/* SP微調整 */
@media (max-width: 768px){
  .hod-flow__item{
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .hod-flow::before{ left: 17px; }
  .hod-flow__dot{ width: 34px; height: 34px; font-size: 10px; }
}
/* ⑦（最後）だけ下の線を消す */
.hod-flow__item:last-child::after{
  content:"";
  position:absolute;
  left: 18px;
  top: 36px;          /* ドットの下から */
  bottom: 0;
  width: 1px;
  background: #071430; /* 背景色でマスク */
  z-index: 1;
}

/* SP調整 */
@media (max-width: 768px){
  .hod-flow__item:last-child::after{
    left: 17px;
  }

}
/* =========================
   ABOUT：右カラムのスクロールバー非表示
========================= 
.hod-content{
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE / Edge legacy */
}*/
.hod-content::-webkit-scrollbar{
  display: none;               /* Chrome / Safari */
}

/* ====== RECRUIT：一番下の空白を減らす ====== */

/* 右カラムの下パディングを小さく */
.hod-recruit-body .hod-content {
  padding-bottom: 40px;   /* 120px → 40pxくらいに */
}



/* Contact Form 7 の下マージンもゼロにしておくとさらに締まる */
.hod-recruit-body .wpcf7 {
  margin-bottom: 0;
}
.hod-recruit-body .wpcf7-form {
  margin-bottom: 0;
}

/* =======================================
   RECRUIT系（recruit / recruittest）：PCでは中スクロールをやめる
   ページ全体でスクロールさせる
======================================= */
@media (min-width: 769px) {
  body.hod-recruit-body .hod-about {
    min-height: 100vh;
  }

  body.hod-recruit-body .hod-about__layout {
    height: auto;
  }

  body.hod-recruit-body .hod-content {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;       /* ← パネルスクロールOFF */
 
  }

  body.hod-recruit-body .hod-sidemenu {
    position: static;        /* stickyをやめるならここもstatic */
  }
}
