/* assets/css/hod-about.css */
#profile{display:none;}

.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:200px;
  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;
min-height:100%;
}

/* 左固定アンカー（PC） */
.hod-sidemenu{
  position: sticky;
  top: calc(var(--hod-header-h) + 30px);
  align-self: start;
  padding-top: 0px;
}
.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{
  height: calc(100svh - var(--hod-header-h));
  overflow: auto;
  padding:0px 6px 120px;
}

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

/* ========== Content styles ========== */
.hod-section{ padding: 100px 0;
margin:100px auto;}
.hod-section--intro{ border-top: none; padding-top: 0px;margin-top: 0; }

.hod-h1{
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: .22em;
}
.hod-lead{
  margin: 0;
  color: #fff;
line-height: 3;
letter-spacing: 0.2em;
  font-size: 15px;
}

.hod-h2{
  margin: 0 0 180px;
  font-size: 17px;
  letter-spacing: .22em;
  opacity: .9;
}

.hod-p{
  color: #fff;
  line-height: 3;
letter-spacing: 0.2em;
  font-size: 15px;
  margin: 18px 0 0;
}

.hod-list{
  margin: 18px 0 0;
  padding-left: 18px;
  color: #fff;
  line-height: 2.0;
  font-size: 15px;
}

.hod-profile{
  display:grid;
  grid-template-columns: 1fr 260px;
  gap: 125px;
  align-items: start;
}
.hod-profile__photo{
  margin: 0;
  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;
margin-bottom:80px;
}
.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__spanchors{ display:block; }
  .hod-about__layout{
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    gap: 0;
    padding: 120px 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;
margin: 0 auto;}
	
.hod-section {
    padding: 80px 0;
    margin: 20px auto;
}
.hod-section--intro {
    padding-top: 0px;
    margin-top: 0;
	padding-bottom:20px;
	}}

/* =========================
   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;
  line-height: 3;
letter-spacing: 0.2em;
  opacity: .85;
}
.hod-company__row dd{
  margin: 0;
  font-size: 15px;
  line-height: 3;
letter-spacing: 0.2em;
  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: 3;
letter-spacing: 0.2em;
  opacity: .9;
}

/* 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;
  }
	
	.hod-h2{
		margin-bottom:100px;
	}
}
/* =========================
   ABOUT：右カラムのスクロールバー非表示
========================= */
.hod-content{
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE / Edge legacy */
}
.hod-content::-webkit-scrollbar{
  display: none;               /* Chrome / Safari */
}
/* 最後のセクションだけ、下パディングを少なめに */
.hod-recruit-body .hod-section:last-of-type, .hod-sectioncontactlast {
  padding-bottom: 0px;
margin-bottom: 0;
}

/* ===== SP：ABOUT上部メニューを追従（固定） ===== */
@media (max-width: 768px){
  .hod-about__spanchors{
    position: sticky;
    top: 56px; /* ← 固定ヘッダーの高さに合わせて調整 */
    z-index: 50;
    background:#071430;
    padding: 30px 12px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,.12);
padding;15px 0 15px 0;
justify-content: space-around;
  }

  .hod-about__spanchors a{
    color:#fff;
    font-size: 12px;
    letter-spacing: .16em;
    text-decoration: none;
    opacity: .85;
	margin-right:0;  
  }

.hod-about {
	padding-top: 80px;}
  }

#about-us{
    padding-top: 70px;
    margin-top: -70px;
}

}
