@charset "UTF-8";

/* =========================================
   株式会社味園サポート 人材紹介LP（求職者向け）
   色を変えたいときは :root の変数だけ触ればOK
   ========================================= */

:root{
  --blue:        #2f6fd0;   /* メインカラー（ロゴの青） */
  --blue-dark:   #16357a;
  --blue-light:  #5b93e8;
  --tint:        #e9f1fd;   /* 薄い水色の背景 */
  --hero-tint:   #d6e7fa;   /* ヒーローのグラデーション色 */
  --tint-2:      #f5f8fe;
  --accent:      #7fb0ee;   /* 差し色（企業向けは黄ではなく青系） */
  --line-green:  #06c755;   /* LINEブランドカラー */
  --line-green-d:#05a948;
  --text:        #22282f;
  --text-sub:    #5c6672;
  --line:        #dde5f0;
  --white:       #ffffff;
  --radius:      12px;
  --shadow:      0 4px 20px rgba(31, 68, 128, .08);
  --header-h:    76px;
  --maxw:        1120px;
}

*,*::before,*::after{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body{
  margin:0;
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  font-size:16px;
  line-height:1.9;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:var(--blue); text-decoration:none; transition:opacity .2s; }
a:hover{ opacity:.75; }
ul,ol{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ margin:0; line-height:1.5; }
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }
table{ border-collapse:collapse; width:100%; }
strong{ font-weight:700; }

/* 共通のアイコンSVG（線画） */
svg{
  width:100%; height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.container{
  width:100%;
  max-width:var(--maxw);
  margin-inline:auto;
  padding-inline:24px;
}
.container--narrow{ max-width:840px; }

.sp{ display:none; }

/* ========== ボタン ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:16px 34px;
  border:2px solid var(--blue);
  border-radius:999px;
  background:var(--blue);
  color:var(--white);
  font-weight:700;
  font-size:15px;
  letter-spacing:.03em;
  cursor:pointer;
  transition:background .25s, color .25s, transform .25s, box-shadow .25s;
  text-align:center;
}
.btn:hover{
  opacity:1;
  background:var(--blue-dark);
  border-color:var(--blue-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(47,111,208,.3);
}
.btn__ico{ font-size:1.15em; line-height:1; }
.btn--lg{ padding:18px 40px; font-size:16.5px; }
.btn--sm{ padding:10px 20px; font-size:13.5px; }
.btn--wide{ width:100%; }
.btn--ghost{ background:transparent; color:var(--blue); }
.btn--ghost:hover{ background:var(--blue); color:var(--white); }
.btn--ghost-white{
  background:transparent;
  border-color:rgba(255,255,255,.9);
  color:#fff;
  flex-shrink:0;
}
.btn--ghost-white:hover{ background:#fff; color:var(--blue-dark); border-color:#fff; }
.btn--line{
  background:var(--line-green);
  border-color:var(--line-green);
}
.btn--line:hover{
  background:var(--line-green-d);
  border-color:var(--line-green-d);
  box-shadow:0 8px 22px rgba(6,199,85,.32);
}

/* ========== ヘッダー ========== */
.header{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--header-h);
  /* 企業向けはヘッダーを白で塗る（どんな写真に差し替えても読める） */
  background:#fff;
  z-index:100;
  transition:box-shadow .3s;
}
.header.is-scrolled{
  box-shadow:0 2px 14px rgba(31,68,128,.1);
}

.header__inner{
  max-width:1280px;
  height:100%;
  margin-inline:auto;
  padding-inline:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{ display:flex; align-items:center; gap:11px; color:var(--text); }
.logo__img{ width:48px; height:48px; object-fit:contain; flex-shrink:0; }
.logo__text{ display:flex; flex-direction:column; line-height:1.3; }
.logo__en{
  font-family:"Barlow",sans-serif;
  font-weight:700;
  font-size:16px;
  letter-spacing:.13em;
  color:var(--blue-dark);
}
.logo__ja{ font-size:10.5px; color:var(--text-sub); letter-spacing:.02em; }

.nav{ display:flex; align-items:center; gap:22px; }
.nav__list{ display:flex; gap:20px; }
.nav__list a{
  color:var(--text);
  font-size:13.5px;
  font-weight:500;
  position:relative;
  padding-bottom:4px;
  white-space:nowrap;
}
.nav__list a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--blue);
  transition:width .25s;
}
.nav__list a:hover{ opacity:1; color:var(--blue); }
.nav__list a:hover::after{ width:100%; }
.nav__cta{ white-space:nowrap; }

.hamburger{
  display:none;
  width:44px; height:44px;
  border:0; background:transparent;
  padding:0; cursor:pointer;
  position:relative;
}
.hamburger span{
  position:absolute;
  left:10px;
  width:24px; height:2px;
  background:var(--text);
  transition:transform .3s, opacity .3s;
}
.hamburger span:nth-child(1){ top:15px; }
.hamburger span:nth-child(2){ top:21px; }
.hamburger span:nth-child(3){ top:27px; }
.hamburger.is-open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* ========== ヒーロー ========== */
.hero{
  position:relative;
  margin-top:var(--header-h);
  min-height:max(72vh, 540px);
  display:flex;
  align-items:center;
  background:var(--hero-tint);
  overflow:hidden;
}
.hero__media{
  display:block;
  position:absolute;
  /* 写真は常にヒーローの右 72%。左 28% は水色のまま（画面サイズが変わっても一定） */
  inset:0 0 0 var(--photo-left);
  z-index:0;
  /* 写真の左端をなめらかに水色へ溶かす */
  -webkit-mask-image:linear-gradient(90deg, transparent 0%, #000 16%);
          mask-image:linear-gradient(90deg, transparent 0%, #000 16%);
}
.hero__media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:0% 45%;
}
/* 左からの水色グラデーション
   ▼ スーツの男性の出し具合は --veil-solid だけで調整できます
      小さくする → 男性がよく見える ／ 大きくする → 隠れる          */
.hero{
  --veil-solid: 25%;    /* グラデーション式のとき：水色べたの範囲 */
  --photo-left: 28%;    /* グラデーション式のとき：写真の左端 */
  --split-top: 41%;         /* きっちり分割のとき：境界の上端 */
  --split-bottom: 51%;      /* 斜め分割のとき：境界の下端 */
  --photo-left-split: 38%;  /* きっちり分割のとき：写真の枠の左端（大きいほど引いて見える） */
}
.hero__veil{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,
    var(--hero-tint)       0%,
    var(--hero-tint)       var(--veil-solid),
    rgba(214,231,250,.78)  calc(var(--veil-solid) +  5%),
    rgba(214,231,250,.55)  calc(var(--veil-solid) + 11%),
    rgba(214,231,250,.32)  calc(var(--veil-solid) + 18%),
    rgba(214,231,250,.15)  calc(var(--veil-solid) + 25%),
    rgba(214,231,250,.05)  calc(var(--veil-solid) + 31%),
    rgba(214,231,250,0)    calc(var(--veil-solid) + 37%));
}
.hero__inner{
  position:relative;
  z-index:2;
  width:100%;
  /* ヘッダーのロゴと左位置を揃える（ヘッダーは 1280px 幅） */
  max-width:1280px;
  margin-inline:auto;
  padding:48px 24px 56px;
}
.hero__body{ max-width:560px; }
.hero__label{
  font-family:"Barlow",sans-serif;
  font-weight:600;
  letter-spacing:.3em;
  font-size:13px;
  color:var(--blue);
  margin-bottom:18px;
}
.hero__title{
  font-size:clamp(26px, 3.2vw, 36px);
  font-weight:800;
  letter-spacing:.01em;
  line-height:1.4;
  color:var(--blue-dark);
  margin-bottom:26px;
}
.hero__lead{
  font-size:clamp(15px,1.6vw,17px);
  color:var(--text-sub);
  margin-bottom:36px;
}
.hero__lead strong{ color:var(--blue-dark); }
.hero__btns{ display:flex; flex-wrap:wrap; gap:14px; }

.hero__scroll{
  position:absolute;
  left:max(24px, calc((100vw - var(--maxw))/2 + 24px));
  bottom:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding-bottom:60px;
}
.hero__scroll span{
  font-family:"Barlow",sans-serif;
  font-size:10.5px;
  letter-spacing:.22em;
  color:var(--blue-dark);
  writing-mode:vertical-rl;
}
.hero__scroll::after{
  content:"";
  width:1px; height:44px;
  background:linear-gradient(var(--blue-dark), rgba(22,53,122,0));
}

/* ヒーロー直下の3つの訴求 */
.hero-points{
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.hero-points ul{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
}
.hero-points li{
  padding:22px 24px;
  display:flex;
  flex-direction:column;
  line-height:1.6;
  position:relative;
}
.hero-points li + li::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  transform:translateY(-50%);
  width:1px; height:44px;
  background:var(--line);
}
.hero-points strong{ font-size:15.5px; color:var(--blue-dark); }
.hero-points span{ font-size:12.5px; color:var(--text-sub); }

/* ========== セクション共通 ========== */
.section{ padding:96px 0; }
.section--tint{ background:var(--tint-2); }

.sec-head{ text-align:center; margin-bottom:52px; }
.sec-head__en{
  font-family:"Barlow",sans-serif;
  font-weight:600;
  font-size:13px;
  letter-spacing:.26em;
  color:var(--blue-light);
  margin-bottom:8px;
}
.sec-head__ja{
  font-size:clamp(22px,3vw,32px);
  font-weight:700;
  color:var(--blue-dark);
  position:relative;
  padding-bottom:20px;
}
.sec-head__ja::after{
  content:"";
  position:absolute;
  left:50%; bottom:0;
  transform:translateX(-50%);
  width:48px; height:3px;
  background:var(--blue);
  border-radius:2px;
}
.sec-head--light .sec-head__en{ color:rgba(255,255,255,.78); }
.sec-head--light .sec-head__ja{ color:#fff; }
.sec-head--light .sec-head__ja::after{ background:rgba(255,255,255,.85); }

.lead-center{
  text-align:center;
  color:var(--text-sub);
  margin-bottom:48px;
}
.lead-center strong{ color:var(--blue-dark); }

/* ========== はじめての方へ ========== */
.about{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:56px;
  align-items:center;
}
.about__catch{
  font-size:clamp(18px,2.1vw,22px);
  font-weight:700;
  color:var(--blue-dark);
  line-height:1.7;
  margin-bottom:22px;
}
.about__copy p{ color:var(--text-sub); }
.about__copy strong{ color:var(--blue-dark); }

.about__img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:0 12px 32px rgba(22,53,122,.16);
  aspect-ratio:4/3;
  object-fit:cover;
  margin-bottom:20px;
}

.match{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--tint);
  border-radius:var(--radius);
  padding:24px 20px;
}
.match__side{ text-align:center; flex:1; }
.match__icon{
  display:block;
  width:52px; height:52px;
  margin:0 auto 10px;
  color:var(--blue);
}
.match__side p{ font-size:14px; font-weight:700; color:var(--blue-dark); margin:0; }
.match__link{ flex:0 0 84px; text-align:center; }
.match__link span{ display:block; height:2px; background:var(--blue-light); margin-bottom:6px; }
.match__link em{
  font-family:"Barlow",sans-serif;
  font-style:normal;
  font-size:11px;
  letter-spacing:.14em;
  color:var(--blue);
}
.about__note{
  font-size:13px;
  color:var(--text-sub);
  text-align:center;
  margin-top:14px;
}

/* ========== 選ばれる理由 ========== */
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}
.card{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:34px 32px 30px;
  position:relative;
  border-top:4px solid var(--blue);
  transition:transform .3s, box-shadow .3s;
}
.card:hover{ transform:translateY(-4px); box-shadow:0 12px 30px rgba(31,68,128,.14); }
.card__num{
  font-family:"Barlow",sans-serif;
  font-weight:700;
  font-size:40px;
  line-height:1;
  color:var(--tint);
  position:absolute;
  top:20px; right:24px;
}
.card__icon{
  display:block;
  width:44px; height:44px;
  color:var(--blue);
  margin-bottom:14px;
}
.card__title{
  font-size:19px;
  font-weight:700;
  color:var(--blue-dark);
  margin-bottom:14px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.card p{ font-size:14.5px; color:var(--text-sub); margin:0; }

/* ========== 募集職種 ========== */
.jobs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:56px;
}
.job{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
  overflow:hidden;
  transition:border-color .3s, transform .3s, box-shadow .3s;
}
.job:hover{
  border-color:var(--blue-light);
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(31,68,128,.14);
}
.job__photo{ overflow:hidden; }
.job__photo img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  transition:transform .5s ease;
}
.job:hover .job__photo img{ transform:scale(1.05); }
.job__body{ padding:26px 26px 28px; }
.job h3{
  font-size:20px;
  color:var(--blue-dark);
  margin-bottom:14px;
  padding-bottom:12px;
  border-bottom:2px solid var(--tint);
}
.job p{ font-size:14px; color:var(--text-sub); margin-bottom:16px; }
.job__tags{ display:flex; flex-wrap:wrap; gap:6px; }
.job__tags li{
  background:var(--tint);
  color:var(--blue-dark);
  font-size:11.5px;
  font-weight:700;
  padding:4px 12px;
  border-radius:999px;
}

.tagbox{
  background:var(--tint);
  border-radius:var(--radius);
  padding:40px 36px;
}
.tagbox__title{
  font-size:15px;
  font-weight:700;
  color:var(--blue-dark);
  padding-left:12px;
  border-left:4px solid var(--blue);
  margin-bottom:16px;
}
.tags{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.tags li{
  background:var(--white);
  border:1px solid var(--blue-light);
  color:var(--blue-dark);
  font-size:13.5px;
  font-weight:500;
  padding:7px 18px;
  border-radius:999px;
}
.tags--alt li{ background:var(--blue); border-color:var(--blue); color:#fff; }
.tagbox__note{ font-size:14px; color:var(--text-sub); margin:0; }

/* ========== 写真バンド（中間CTA） ========== */
.band{
  position:relative;
  background:url('../images/band.jpg') center 35% / cover no-repeat;
  padding:88px 0;
  color:#fff;
  text-align:center;
}
.band::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, rgba(22,53,122,.92) 0%, rgba(22,53,122,.72) 55%, rgba(22,53,122,.42) 100%);
}
.band__inner{ position:relative; }
.band__sub{
  font-family:"Barlow",sans-serif;
  font-size:12px;
  letter-spacing:.26em;
  color:rgba(255,255,255,.7);
  margin-bottom:12px;
}
.band__title{
  font-size:clamp(21px,3.2vw,32px);
  font-weight:700;
  line-height:1.55;
  margin-bottom:18px;
}
.band__text{
  font-size:15px;
  color:rgba(255,255,255,.9);
  margin-bottom:32px;
}
.band .btn{
  background:#fff;
  border-color:#fff;
  color:var(--blue-dark);
}
.band .btn:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:var(--text);
  box-shadow:0 8px 22px rgba(0,0,0,.25);
}

/* ========== 流れ ========== */
.flow__visual{
  margin:0 0 48px;
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
}
.flow__visual img{
  width:100%;
  aspect-ratio:16/6;
  object-fit:cover;
}
.flow__visual figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  background:linear-gradient(transparent, rgba(22,53,122,.85));
  color:#fff;
  font-size:13.5px;
  padding:38px 24px 16px;
}

.flow{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.flow__item{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px 26px;
  position:relative;
}
.flow__item::after{
  content:"";
  position:absolute;
  top:50%; right:-16px;
  width:0; height:0;
  border-left:9px solid var(--blue-light);
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
}
.flow__item:nth-child(3n)::after,
.flow__item:last-child::after{ display:none; }

.flow__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  font-family:"Barlow",sans-serif;
  font-weight:700;
  font-size:16px;
  margin-bottom:14px;
}
.flow__item h3{ font-size:18px; color:var(--blue-dark); margin-bottom:10px; }
.flow__item p{ font-size:14px; color:var(--text-sub); margin:0; }

.flow__cta{
  text-align:center;
  margin-top:48px;
}
.flow__cta p{ font-size:15px; color:var(--text-sub); margin-bottom:18px; }

/* ========== よくある質問 ========== */
.faq__item{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--white);
  margin-bottom:12px;
  overflow:hidden;
}
.faq__item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 56px 20px 56px;
  font-size:16px;
  font-weight:700;
  color:var(--blue-dark);
  position:relative;
  transition:background .2s;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary:hover{ background:var(--tint-2); }
.faq__item summary::before{
  content:"Q";
  position:absolute;
  left:20px; top:50%;
  transform:translateY(-50%);
  font-family:"Barlow",sans-serif;
  font-size:19px;
  color:var(--blue);
}
.faq__item summary::after{
  content:"";
  position:absolute;
  right:24px; top:50%;
  width:11px; height:11px;
  border-right:2px solid var(--blue);
  border-bottom:2px solid var(--blue);
  transform:translateY(-70%) rotate(45deg);
  transition:transform .25s;
}
.faq__item[open] summary::after{ transform:translateY(-30%) rotate(-135deg); }
.faq__a{
  padding:0 24px 22px 56px;
  position:relative;
}
.faq__a::before{
  content:"A";
  position:absolute;
  left:20px; top:0;
  font-family:"Barlow",sans-serif;
  font-size:19px;
  color:var(--blue-light);
}
.faq__a p{ font-size:14.5px; color:var(--text-sub); margin:0; }

/* ========== 運営会社 ========== */
.company{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:32px;
  align-items:center;
  margin-bottom:48px;
}
.company__photo img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  aspect-ratio:16/10;
  object-fit:cover;
}
.company__caption{
  font-size:12.5px;
  color:var(--text-sub);
  text-align:center;
  margin-top:10px;
}
.philosophy{ display:grid; gap:16px; }
.philosophy__item{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px 30px;
}
.philosophy__item h3{
  font-size:20px;
  color:var(--blue-dark);
  margin-bottom:10px;
  display:inline-block;
  border-bottom:3px solid var(--accent);
  padding-bottom:4px;
}
.philosophy__item p{ font-size:14.5px; color:var(--text-sub); margin:0; }

.profile{
  background:var(--white);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  overflow:hidden;
}
.profile th,.profile td{
  border-bottom:1px solid var(--line);
  padding:18px 24px;
  font-size:15px;
  text-align:left;
  vertical-align:top;
}
.profile th{
  width:190px;
  background:var(--blue);
  color:#fff;
  font-weight:700;
  border-bottom:1px solid rgba(255,255,255,.25);
}
.profile tr:last-child th,
.profile tr:last-child td{ border-bottom:0; }

/* ========== お問い合わせ ========== */
.contact{
  background:linear-gradient(150deg,var(--blue) 0%, var(--blue-dark) 100%);
  color:#fff;
}
.contact__lead{ text-align:center; margin-bottom:44px; color:rgba(255,255,255,.94); }

/* 3つの窓口 */
.ways{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:56px;
}
.way{
  background:#fff;
  border-radius:var(--radius);
  padding:32px 24px 28px;
  text-align:center;
  color:var(--text);
  border-top:5px solid var(--blue);
  transition:transform .3s, box-shadow .3s;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.way:hover{
  opacity:1;
  transform:translateY(-5px);
  box-shadow:0 14px 32px rgba(0,0,0,.2);
}
.way--line{ border-top-color:var(--line-green); }
.way__icon{
  width:46px; height:46px;
  color:var(--blue);
  margin-bottom:14px;
}
.way--line .way__icon{ color:var(--line-green); }
.way--line .way__icon svg{ fill:currentColor; stroke:none; }
.way__label{ font-size:13px; color:var(--text-sub); margin-bottom:4px; }
.way__value{
  font-size:23px;
  font-weight:700;
  color:var(--blue-dark);
  letter-spacing:.02em;
  line-height:1.4;
  margin-bottom:10px;
}
.way--line .way__value{ color:var(--line-green-d); }
.way__note{ font-size:12.5px; color:var(--text-sub); line-height:1.7; margin-top:auto; }

/* フォーム */
.formwrap{
  background:#fff;
  border-radius:var(--radius);
  padding:44px 48px;
  max-width:760px;
  margin-inline:auto;
  color:var(--text);
}
.formwrap__title{
  font-size:21px;
  color:var(--blue-dark);
  text-align:center;
  margin-bottom:28px;
  padding-bottom:16px;
  border-bottom:2px solid var(--blue);
}
.field{ margin-bottom:18px; }
.field--half{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.field label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
  color:var(--blue-dark);
}
.req{
  background:#e0453c;
  color:#fff;
  font-size:10.5px;
  font-weight:700;
  padding:2px 7px;
  border-radius:3px;
  letter-spacing:.04em;
}
.field input,.field textarea,.field select{
  width:100%;
  border:1px solid var(--line);
  border-radius:6px;
  padding:12px 14px;
  font-size:15px;
  font-family:inherit;
  color:var(--text);
  background:var(--tint-2);
  transition:border-color .2s, background .2s;
}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none;
  border-color:var(--blue);
  background:#fff;
}
.field textarea{ resize:vertical; }
.contact__formnote{
  font-size:12px;
  color:var(--text-sub);
  margin-top:14px;
  text-align:center;
  line-height:1.8;
}

/* ========== 企業様向け ========== */
.forbiz{
  background:var(--blue-dark);
  color:#fff;
  padding:48px 0;
}
.forbiz__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.forbiz__label{
  font-family:"Barlow",sans-serif;
  font-size:11.5px;
  letter-spacing:.24em;
  color:rgba(255,255,255,.6);
  margin-bottom:6px;
}
.forbiz__title{ font-size:22px; margin-bottom:10px; }
.forbiz__text{
  font-size:14px;
  color:rgba(255,255,255,.82);
  max-width:640px;
  margin:0;
}

/* ========== フッター ========== */
.footer{
  background:#1a2230;
  color:rgba(255,255,255,.8);
  padding:56px 0 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  padding-bottom:40px;
}
.footer__logo{
  width:58px; height:58px;
  object-fit:contain;
  background:#fff;
  border-radius:8px;
  padding:4px;
  margin-bottom:12px;
}
.footer__brand p{ font-size:14px; margin:0 0 4px; }
.footer__addr{ font-size:12.5px; color:rgba(255,255,255,.55); }
.footer__nav{
  display:grid;
  grid-template-columns:repeat(2,auto);
  gap:8px 40px;
}
.footer__nav a{ color:rgba(255,255,255,.8); font-size:13.5px; }
.footer__nav a:hover{ color:#fff; opacity:1; }
.copyright{
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  font-size:12px;
  color:rgba(255,255,255,.5);
  padding:18px 0;
  margin:0;
}

/* ========== スマホ固定CTA ========== */
.fixedcta{
  display:none;
  transform:translateY(110%);
  transition:transform .3s ease;
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:95;
  padding:8px;
  gap:8px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px);
  box-shadow:0 -2px 14px rgba(0,0,0,.12);
}
.fixedcta.is-visible{ transform:translateY(0); }
.fixedcta__btn{
  flex:1;
  text-align:center;
  padding:13px 6px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  color:#fff;
}
.fixedcta__btn:hover{ opacity:.9; }
.fixedcta__btn--form{ background:var(--blue); }
.fixedcta__btn--line{ background:var(--line-green); }

/* ========== ページトップ ========== */
.pagetop{
  position:fixed;
  right:24px; bottom:24px;
  width:48px; height:48px;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  box-shadow:0 4px 14px rgba(31,68,128,.3);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .3s, transform .3s, visibility .3s;
  z-index:90;
}
.pagetop.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }

/* ========== スクロールアニメーション ========== */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-shown{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* =========================================
   レスポンシブ
   ========================================= */
@media (max-width:1080px){
  .nav__list{ gap:15px; }
  .nav__list a{ font-size:12.5px; }
  .logo__ja{ display:none; }
}

@media (max-width:900px){
  :root{ --header-h:64px; }

  .hamburger{ display:block; }
  .nav{
    position:fixed;
    inset:var(--header-h) 0 auto 0;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:#fff;
    padding:8px 24px 28px;
    box-shadow:0 12px 24px rgba(31,68,128,.12);
    transform:translateY(-125%);
    transition:transform .35s ease;
    max-height:calc(100vh - var(--header-h));
    overflow-y:auto;
  }
  .nav.is-open{ transform:translateY(0); }
  .nav__list{ flex-direction:column; gap:0; }
  .nav__list li{ border-bottom:1px solid var(--line); }
  .nav__list a{ display:block; padding:16px 4px; font-size:15px; }
  .nav__list a::after{ display:none; }
  .nav__cta{ margin-top:20px; }

  /* スマホは「写真が上／文字とボタンが下」 */
  .header{ background:rgba(255,255,255,.95); backdrop-filter:blur(8px); }
  .hero{
    display:block;
    min-height:0;
    padding-top:var(--header-h);
  }
  .hero__media{ position:relative; inset:auto; -webkit-mask-image:none; mask-image:none; }
  .hero__media img{ height:auto; aspect-ratio:1/.88; object-position:50% 18%; }
  .hero__media::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height:34%;
    background:linear-gradient(180deg, rgba(214,231,250,0), var(--hero-tint));
  }
  .hero__veil{ display:none; }
  .hero__inner{ padding:28px 24px 44px; }
  .hero__body{ max-width:none; }
  .hero__title{ margin-bottom:18px; }
  .hero__lead{ margin-bottom:26px; }
  .hero__btns{ flex-direction:column; }
  .hero__btns .btn{ width:100%; }
  .hero__scroll{ display:none; }
  .hero-points ul{ grid-template-columns:1fr; }
  .hero-points li{ padding:14px 24px; flex-direction:row; align-items:baseline; gap:12px; }
  .hero-points li + li::before{ width:calc(100% - 48px); height:1px; left:24px; top:0; transform:none; }
  .sp{ display:inline; }

  .section{ padding:64px 0; }
  .sec-head{ margin-bottom:40px; }

  .about{ grid-template-columns:1fr; gap:32px; }
  .about__figure{ max-width:520px; margin-inline:auto; }
  .cards{ grid-template-columns:1fr; gap:20px; }
  .jobs{ grid-template-columns:1fr; max-width:520px; margin-inline:auto; }
  .band{ padding:64px 0; background-position:center; }
  .band::before{ background:rgba(22,53,122,.86); }
  .flow__visual img{ aspect-ratio:16/9; }
  .flow{ grid-template-columns:1fr; }
  .flow__item::after{
    top:auto; right:auto;
    bottom:-16px; left:50%;
    transform:translateX(-50%);
    border-left:7px solid transparent;
    border-right:7px solid transparent;
    border-top:9px solid var(--blue-light);
    border-bottom:0;
  }
  .flow__item:nth-child(3n)::after{ display:block; }
  .flow__item:last-child::after{ display:none; }
  .company{ grid-template-columns:1fr; }
  .ways{ grid-template-columns:1fr; }
  .way{ flex-direction:row; align-items:center; text-align:left; gap:18px; flex-wrap:wrap; }
  .way__icon{ margin-bottom:0; flex-shrink:0; }
  .way__label{ display:block; width:100%; margin:0; order:-1; }
  .way__value{ margin-bottom:0; }
  .way__note{ width:100%; margin-top:6px; }

  .formwrap{ padding:32px 26px; }
  .profile th,.profile td{ display:block; width:100%; }
  .profile th{ padding:10px 20px; }
  .profile td{ padding:16px 20px; }

  .forbiz__inner{ flex-direction:column; align-items:flex-start; }
  .footer__inner{ flex-direction:column; gap:28px; }
  .footer{ padding-bottom:64px; }

  /* スマホ固定CTAを表示 */
  .fixedcta{ display:flex; }
  .pagetop{ bottom:80px; right:16px; }
}

@media (max-width:480px){
  body{ font-size:15px; }
  .container{ padding-inline:18px; }
  .hero__inner{ padding-inline:18px; }
  .btn{ padding:14px 22px; font-size:14px; }
  .btn--lg{ padding:16px 24px; font-size:15px; }
  .card,.philosophy__item{ padding:26px 22px; }
  .tagbox{ padding:28px 20px; }
  .formwrap{ padding:26px 20px; }
  .field--half{ grid-template-columns:1fr; }
  .faq__item summary{ font-size:14.5px; padding:16px 44px 16px 46px; }
  .faq__a{ padding:0 20px 18px 46px; }
  .footer__nav{ grid-template-columns:1fr; }
}


/* =========================================
   企業向けページ 固有のスタイル
   ========================================= */

/* ---- ヒーローの見せ方 3種（body のクラスで切り替え） ----
   何もつけない        … グラデーション（求職者向けと同じ）
   .hero--diagonal    … 斜めにきっちり分割
   .hero--split       … 垂直にきっちり分割
------------------------------------------------------------ */

/* 斜めにきっちり分割 */
.hero--diagonal .hero__veil{
  background:var(--hero-tint);
  clip-path:polygon(0 0, var(--split-top) 0, var(--split-bottom) 100%, 0 100%);
}
.hero--diagonal .hero__media{
  -webkit-mask-image:none; mask-image:none;
  inset:0 0 0 var(--photo-left-split);
}
.hero--diagonal .hero__media img{ object-position:50% 28%; }
/* 境界にごく細い線を入れて「きっちり」感を出す */
.hero--diagonal .hero__edge{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(var(--blue-light), var(--blue-light));
  clip-path:polygon(
    var(--split-top) 0, calc(var(--split-top) + 3px) 0,
    calc(var(--split-bottom) + 3px) 100%, var(--split-bottom) 100%);
  opacity:.55;
}

/* 垂直にきっちり分割 */
.hero--split .hero__veil{
  background:var(--hero-tint);
  clip-path:polygon(0 0, var(--split-top) 0, var(--split-top) 100%, 0 100%);
}
.hero--split .hero__media{ -webkit-mask-image:none; mask-image:none; inset:0 0 0 var(--photo-left-split); }
.hero--split .hero__media img{ object-position:50% 28%; }
.hero--split .hero__edge{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:var(--blue-light);
  clip-path:polygon(var(--split-top) 0, calc(var(--split-top) + 3px) 0,
                    calc(var(--split-top) + 3px) 100%, var(--split-top) 100%);
  opacity:.55;
}

/* ヒーローを低くしたため、SCROLL表示は非表示（ボタンと重なるため） */
.hero__scroll{ display:none; }

/* ---- 採用のお悩み ---- */
.issues{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px 28px;
  margin-bottom:36px;
}
.issues li{
  position:relative;
  padding:16px 18px 16px 52px;
  background:var(--tint-2);
  border:1px solid var(--line);
  border-radius:8px;
  font-size:15px;
  line-height:1.7;
}
.issues li::before{
  content:"";
  position:absolute;
  left:20px; top:22px;
  width:16px; height:9px;
  border-left:3px solid var(--blue);
  border-bottom:3px solid var(--blue);
  transform:rotate(-45deg);
}
.issues__note{
  text-align:center;
  font-size:15px;
  color:var(--text-sub);
}

/* ---- 費用について ---- */
.fee{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-bottom:32px;
}
.fee__item{
  background:var(--white);
  border:1px solid var(--line);
  border-top:4px solid var(--blue);
  border-radius:var(--radius);
  padding:32px 30px;
}
.fee__item h3{
  font-size:21px;
  color:var(--blue-dark);
  margin-bottom:14px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.fee__item p{ font-size:14.5px; color:var(--text-sub); margin:0; }
.fee__note{
  text-align:center;
  font-size:13.5px;
  color:var(--text-sub);
  background:var(--tint);
  border-radius:8px;
  padding:20px 24px;
}

/* ---- 問い合わせ窓口を2つに ---- */
.ways--2{
  grid-template-columns:repeat(2,1fr);
  max-width:760px;
  margin-inline:auto;
}

/* ---- スマホ固定CTA ---- */
.fixedcta__btn--tel{ background:var(--blue-dark); }

/* ---- 経営理念の下線を青系に ---- */
.philosophy__item h3{ border-bottom-color:var(--accent); }

@media (max-width:900px){
  .issues{ grid-template-columns:1fr; }
  .fee{ grid-template-columns:1fr; }
  .ways--2{ grid-template-columns:1fr; }
  /* スマホでは分割をやめ、写真の下に文字（求職者向けと同じ挙動） */
  .hero--diagonal .hero__veil,
  .hero--split .hero__veil{ clip-path:none; }
  .hero--diagonal .hero__edge,
  .hero--split .hero__edge{ display:none; }
}


/* =========================================
   企業向け：清潔感を出すためのレイアウト差し替え
   （求職者向けとの差別化。線を細く・余白を広く）
   ========================================= */

/* ---- 1) 選ばれる理由：横組みの行 ---- */
.reasons{
  border-top:1px solid var(--line);
  max-width:960px;
  margin-inline:auto;
}
.reason{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:0 32px;
  align-items:start;
  padding:36px 8px;
  border-bottom:1px solid var(--line);
}
.reason__num{
  font-family:"Barlow",sans-serif;
  font-weight:600;
  font-size:34px;
  line-height:1;
  color:var(--blue-light);
  letter-spacing:.04em;
  padding-top:4px;
}
.reason__body h3{
  font-size:20px;
  font-weight:700;
  color:var(--blue-dark);
  margin-bottom:10px;
}
.reason__body p{
  font-size:14.5px;
  color:var(--text-sub);
  margin:0;
  max-width:68ch;
}

/* ---- 2) 費用について：濃紺のアクセント ---- */
.section--navy{
  background:var(--blue-dark);
  color:#fff;
}
.section--navy .fee__item{
  background:transparent;
  border:1px solid rgba(255,255,255,.28);
  border-top:1px solid rgba(255,255,255,.28);
  border-radius:var(--radius);
  padding:36px 34px;
}
.section--navy .fee__item h3{
  color:#fff;
  border-bottom-color:rgba(255,255,255,.28);
}
.section--navy .fee__item p{ color:rgba(255,255,255,.86); }
.section--navy .fee__note{
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.8);
}

/* ---- 3) 流れ：縦のタイムライン ---- */
.timeline{
  position:relative;
  max-width:800px;
  margin-inline:auto;
  padding-left:6px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:21px; top:14px; bottom:14px;
  width:1px;
  background:var(--line);
}
.tl{
  position:relative;
  display:grid;
  grid-template-columns:44px 1fr;
  gap:0 28px;
  padding:0 0 40px;
}
.tl:last-child{ padding-bottom:0; }
.tl__num{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px; height:32px;
  margin-left:0;
  border-radius:50%;
  background:var(--white);
  border:1px solid var(--blue);
  color:var(--blue);
  font-family:"Barlow",sans-serif;
  font-weight:600;
  font-size:13px;
}
.tl__body h3{
  font-size:18px;
  color:var(--blue-dark);
  margin-bottom:8px;
  padding-top:4px;
}
.tl__body p{
  font-size:14.5px;
  color:var(--text-sub);
  margin:0;
}

/* ---- 日本語の改行を整える（1文字だけ次行に落ちるのを防ぐ） ---- */
.about__catch,
.sec-head__ja,
.lead-center,
.issues__note,
.fee__note{ text-wrap:balance; }
.about__copy p,
.reason__body p,
.tl__body p,
.job p,
.fee__item p{ text-wrap:pretty; }

/* ---- 会社概要の表：外枠をきちんと出す ---- */
.profile{
  border-collapse:separate;
  border-spacing:0;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.profile th,
.profile td{ border:0; border-bottom:1px solid var(--line); }
.profile th{ border-right:1px solid rgba(255,255,255,.3); }
.profile tr:last-child th,
.profile tr:last-child td{ border-bottom:0; }

/* ---- お悩みカード：文字が1〜2字だけ折り返さないように ---- */
.issues{
  max-width:1000px;
  margin-inline:auto;
  gap:16px 24px;
}
.issues li{
  text-wrap:balance;
  padding:18px 20px 18px 54px;
}

/* ---- 全体：影を抑えてヘアライン主体に（清潔感） ---- */
.job{ box-shadow:none; }
.job:hover{ box-shadow:0 6px 18px rgba(31,68,128,.08); }
.philosophy__item,
.profile{ box-shadow:none; border:1px solid var(--line); }
.company__photo img{ box-shadow:none; }
.about__img{ box-shadow:none; }
.section{ padding:104px 0; }

@media (max-width:900px){
  .reason{ grid-template-columns:64px 1fr; gap:0 18px; padding:26px 4px; }
  .reason__num{ font-size:26px; }
  .timeline::before{ left:16px; }
  .tl{ grid-template-columns:34px 1fr; gap:0 18px; padding-bottom:28px; }
  .tl__num{ width:26px; height:26px; font-size:11px; }
  .section{ padding:64px 0; }
}

/* スマホでは解除する改行 */
.pc{ display:inline; }
@media (max-width:900px){ .pc{ display:none; } }

/* キャッチコピーは2行とも中央揃え（スマホでは通常の折り返しに戻す） */
.about__catch{ text-align:center; }
.about__catch__2{ display:block; }
@media (max-width:900px){
  .about__catch{ text-align:left; }
  .about__catch__2{ display:inline; }
}


/* 2026-09-12 修正 */
.logo__ja{ white-space:nowrap; }


/* もう一方のサイトへの案内帯（フッターの手前） */
.crossnav{
  background:var(--tint);
  border-top:1px solid var(--line);
  padding:56px 0;
  text-align:center;
}
.crossnav__title{
  font-size:19px;
  font-weight:700;
  color:var(--blue-dark);
  margin-bottom:8px;
}
.crossnav__lead{
  font-size:14.5px;
  color:var(--text-sub);
  margin-bottom:22px;
}
.crossnav__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 32px;
  border-radius:999px;
  border:1px solid var(--blue);
  color:var(--blue);
  background:var(--white);
  font-size:15px;
  font-weight:700;
  transition:background .3s, color .3s;
}
.crossnav__btn:hover{ background:var(--blue); color:#fff; }
.crossnav__btn::after{ content:""; width:18px; height:1px; background:currentColor; }


/* =========================================================
   2026-09-12 配色の切り替え（企業向け）
   #658CC7 ＋ #3F5875 ＋ 白  → 信頼・誠実・きちんとしている
   ※ 色の役割と配置は変えていません。色の値だけ差し替えです。
   ========================================================= */
:root{
  --blue:        #658CC7;   /* 見出し・アイコン・罫 */
  --blue-dark:   #3F5875;   /* 白文字を乗せる面（ボタン・濃紺帯） */
  --blue-light:  #9DB9DE;
  --accent:      #9DB9DE;
  --tint:        #EDF2F9;
  --tint-2:      #F7FAFD;
  --hero-tint:   #DCE7F3;
  --line:        #DCE4EF;
  --shadow:      0 4px 20px rgba(63,88,117,.10);
}

/* 白文字を乗せる面だけは濃い方の青にする（読みやすさの確保） */
.btn,
.btn--ghost:hover,
.tags--alt li,
.flow__num,
.profile th,
.pagetop,
.fixedcta__btn--form,
.crossnav__btn:hover{
  background:var(--blue-dark);
  border-color:var(--blue-dark);
}
.btn:hover{ background:#32465f; border-color:#32465f; }
.btn--ghost{ color:var(--blue-dark); border-color:var(--blue-dark); }


/* =========================================================
   2026-09-12 配色 v2（企業向け人材紹介）
   メイン #658CC7 ／ 背景 #F7FAFD ／ アクセント #173B70
   → 誠実・安心・仕事ができる
   ========================================================= */
:root{
  --blue:        #658CC7;   /* 見出し・アイコン・罫 */
  --blue-dark:   #173B70;   /* アクセント。白文字を乗せる面はすべてこの色 */
  --blue-light:  #9DB9DE;
  --accent:      #173B70;
  --tint:        #EAF2FA;
  --tint-2:      #F7FAFD;
  --hero-tint:   #DCE7F3;
  --line:        #DCE4EF;
  --shadow:      0 4px 20px rgba(23,59,112,.10);
}
body{ background:#F7FAFD; }

/* アクセントが濃紺になったので、その上の文字は白にする */
.band .btn:hover{ color:#fff; }


/* =========================================================
   2026-09-12 ボタンの修正
   直前に入れた `.btn` の一括上書きが、LINEボタンの緑と
   枠だけのボタンまで塗りつぶしていました。塗りボタンだけに限定します。
   ========================================================= */

/* 塗りボタン（modifier なし）だけを濃い色にする */
.btn:not(.btn--ghost):not(.btn--ghost-white):not(.btn--line){
  background:var(--blue-dark);
  border-color:var(--blue-dark);
  color:#fff;
}
.btn:not(.btn--ghost):not(.btn--ghost-white):not(.btn--line):hover{
  background:#2A4569;
  border-color:#2A4569;
}

/* LINE は LINE の緑に戻す */
.btn--line{
  background:var(--line-green);
  border-color:var(--line-green);
  color:#fff;
}
.btn--line:hover{
  background:var(--line-green-d);
  border-color:var(--line-green-d);
  color:#fff;
  box-shadow:0 8px 22px rgba(6,199,85,.32);
}
.fixedcta__btn--line{ background:var(--line-green); }

/* 枠だけのボタンを戻す */
.btn--ghost{
  background:transparent;
  color:var(--blue-dark);
  border-color:var(--blue-dark);
}
.btn--ghost:hover{
  background:var(--blue-dark);
  color:#fff;
  border-color:var(--blue-dark);
}

/* 濃い帯の上の枠ボタンは見えにくいので、白ベタにする */
.btn--ghost-white{
  background:#fff;
  color:var(--blue-dark);
  border-color:#fff;
}
.btn--ghost-white:hover{
  background:var(--tint);
  color:var(--blue-dark);
  border-color:var(--tint);
}

/* 白ベタの帯の中のボタンは、もとの指定を優先する */
.band .btn:not(.btn--line):not(.btn--ghost):not(.btn--ghost-white){
  background:#fff;
  border-color:#fff;
  color:var(--blue-dark);
}


/* =========================================================
   2026-09-12 配色 v3（企業向け人材紹介）明るい版
   admic.jp の明るさの正体＝「純白 ＋ 鮮やかな1色 ＋ グレー」。
   中間の濁った色と濃紺がひとつも無いことが効いていました。
   そこで 1) 背景を純白に 2) 濃紺のアクセントをやめる
        3) メインの青の鮮やかさを上げる、の3点を変えます。
   ========================================================= */
:root{
  --blue:        #2E86DE;   /* メイン。鮮やかさ 49% -> 79% */
  --blue-dark:   #1B5FA8;   /* 白文字を乗せる面（6.46:1） */
  --blue-light:  #8FC0F0;
  --accent:      #00A0E9;   /* 鮮やかな空色。線・アイコン・ホバー */
  --tint:        #EAF4FD;   /* 淡い面 */
  --tint-2:      #FFFFFF;   /* 面は白のまま＝明るさの要 */
  --hero-tint:   #E4F1FE;
  --line:        #DCE6F2;
  --shadow:      0 4px 20px rgba(46,134,222,.10);
}
body{ background:#FFFFFF; }   /* 色付きの下地をやめる */

/* 塗りボタンのホバーも明るい側へ */
.btn:not(.btn--ghost):not(.btn--ghost-white):not(.btn--line):hover{
  background:#17518F;
  border-color:#17518F;
}
/* アクセントが空色に戻ったので、その上の文字は濃い色にする */
.band .btn:hover{ color:var(--text); }


/* =========================================================
   2026-09-12 サービス概要の本文を差し替え
   ・お悩みの声（3つ）
   ・「私たち自身も採用する側だからこそ」の強調ブロック
   ========================================================= */
.voices{
  list-style:none;
  margin:20px 0 24px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.voices li{
  position:relative;
  padding:12px 18px 12px 46px;
  background:var(--tint);
  border-radius:8px;
  font-size:14.5px;
  font-weight:500;
  color:var(--blue-dark);
}
.voices li::before{
  content:"“";
  position:absolute;
  left:18px; top:10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:26px;
  line-height:1;
  color:var(--accent);
}
.about__lead{
  margin:24px 0;
  padding:24px 26px;
  background:#fff;
  border:1px solid var(--line);
  border-left:4px solid var(--blue);
  border-radius:0 10px 10px 0;
  box-shadow:var(--shadow);
}
.about__lead p{ margin:0 0 12px; font-size:15.5px; line-height:1.95; }
.about__lead p:last-child{ margin:0; }
.about__close{
  font-size:17.5px;
  font-weight:700;
  color:var(--blue-dark);
  margin:26px 0 10px;
}
@media (max-width:640px){
  .about__lead{ padding:20px; }
  .about__close{ font-size:16px; }
  .voices li{ font-size:14px; padding:11px 14px 11px 40px; }
}


/* =========================================================
   2026-09-12 ヒーローの写真をゆっくり切り替える
   4枚を1.6秒かけてクロスフェード。動きを減らす設定の方には出しません。
   ========================================================= */
.hero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.6s ease;
}
.hero__slide.is-active{ opacity:1; }
.hero__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
@media (prefers-reduced-motion: reduce){
  .hero__slide{ transition:none; }
}
/* スマホでは写真が高さを持つので、入れ物側に比率を持たせる */
@media (max-width:900px){
  .hero__media{ position:relative; aspect-ratio:1 / .88; }
  .hero__media img{ height:100%; aspect-ratio:auto; }
}


/* =========================================================
   2026-09-12 ヒーローを「左へ流れるスライド」に変更
   ふわっと重なる（クロスフェード）のをやめ、
   新しい写真が右から入り、古い写真が左へ抜けます。
   ========================================================= */
.hero__media{ overflow:hidden; }   /* はみ出した写真を隠す */

.hero__slide{
  opacity:1;                       /* フェードはやめる */
  transform:translateX(100%);      /* 標準の位置は「右の外」 */
  transition:transform .75s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.hero__slide.is-active{ transform:translateX(0); }      /* 表示中 */
.hero__slide.is-prev  { transform:translateX(-100%); }  /* 左へ抜ける */

/* 左へ抜けた写真を、右の外へ戻すときだけ動きを切る */
.hero__slide.no-anim{ transition:none; }

@media (prefers-reduced-motion: reduce){
  .hero__slide{ transition:none; }
}


/* =========================================================
   2026-09-12 お悩みの帯の重なりを修正／「だからこそ」を引用ふうに
   ・前回 content に書いたエスケープが壊れていて、
     引用符ではなく「制御文字＋C」の2文字になっていました（□ の正体）
   ・エスケープを使わず、引用符そのものを書きます
   ========================================================= */

/* お悩みの帯：引用符を正しい1文字に直す */
.voices li::before{
  content:"“";
  left:16px;
  top:8px;
  font-size:24px;
  opacity:.85;
}

/* 「だからこそ〜」を、大きな引用符ではさんだ引用ふうに */
.about__lead{
  position:relative;
  margin:30px 0;
  padding:40px 34px 34px 60px;
  background:#fff;
  border:1px solid var(--line);      /* 左だけ太い青の線をやめる */
  border-radius:12px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.about__lead::before,
.about__lead::after{
  position:absolute;
  font-family:Georgia,"Times New Roman",serif;
  font-size:76px;
  line-height:1;
  color:var(--blue-light);
  pointer-events:none;
}
.about__lead::before{
  content:"“";
  left:14px;
  top:10px;
  opacity:.6;
}
.about__lead::after{
  content:"”";
  right:18px;
  bottom:-14px;
  opacity:.4;
}
.about__lead p{ position:relative; }   /* 文字を引用符より前に */

@media (max-width:640px){
  .about__lead{ padding:34px 20px 26px 40px; }
  .about__lead::before,
  .about__lead::after{ font-size:56px; }
  .about__lead::before{ left:8px; top:8px; }
}


/* =========================================================
   2026-09-12 サービス概要を「中央の導入」＋「画像との2カラム」に分割
   前半（キャッチと導入文）は中央、
   後半（味園サポートは〜）から画像と並べます。
   ========================================================= */
.about-intro{
  max-width:760px;
  margin:0 auto 56px;
  text-align:center;
}
.about-intro .about__catch{
  text-align:center;
  margin-bottom:24px;
}
.about-intro .about__catch__2{ display:block; }

/* キャッチ以外の本文だけ、色と行間をそろえる */
.about-intro p:not(.about__catch){
  color:var(--text-sub);
  text-wrap:pretty;
}
.about-intro p:not(.about__catch) + p{ margin-top:18px; }

@media (max-width:640px){
  .about-intro{ margin-bottom:36px; }
  .about-intro p:not(.about__catch){ text-align:left; }  /* 長い文は左そろえのほうが読みやすい */
  .about-intro .about__catch__2{ display:inline; }
}


/* =========================================================
   2026-09-12 日本語の改行位置を整える
   「提供し／ています」「ではあ／りません」のように
   語の途中で切れていたので、文節で折り返すようにします。
   word-break:auto-phrase … 日本語の文節を見て改行位置を決める
   text-wrap:balance      … 各行の長さをそろえる（中央寄せの文に効く）
   text-wrap:pretty       … 最終行が1文字だけ残るのを避ける
   ※ 対応していないブラウザでは今までどおりの改行になるだけで、崩れません
   ========================================================= */
.about__catch{
  word-break:auto-phrase;
  text-wrap:balance;
}
.about-intro p:not(.about__catch){
  word-break:auto-phrase;
  text-wrap:balance;
}
.about__copy p,
.about__lead p,
.about__close{
  word-break:auto-phrase;
  text-wrap:pretty;
}
.sec-head__ja,
.hero__title,
.hero__lead{
  word-break:auto-phrase;
}


/* ページ全体の本文にも、同じ文節改行を効かせる（既存のセレクタに合わせる） */
.lead-center,
.issues__note,
.fee__note,
.issues li,
.job p,
.fee__item p,
.tl__body p,
.faq__item p,
.philosophy__item p,
.forbiz__text,
.company__caption,
.about__note{
  word-break:auto-phrase;
}


/* =========================================================
   2026-09-12 運営会社の見せ方（企業向け）
   企業が知りたいのは「取引先として信頼できるか」。
   数字と許可番号を前に出します。理念カードは会社サイトに譲りました。
   ========================================================= */
.facts{
  list-style:none;
  margin:0 0 34px;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.facts li{
  background:var(--tint);
  border-radius:12px;
  padding:28px 24px;
  text-align:center;
}
.facts__num{
  display:block;
  font-family:"Barlow",sans-serif;
  font-size:clamp(38px,5vw,52px);
  font-weight:700;
  line-height:1;
  color:var(--blue);
  letter-spacing:.01em;
}
.facts__num small{
  font-size:.42em;
  font-weight:600;
  margin-left:.15em;
  color:var(--blue-dark);
}
.facts__label{
  display:block;
  margin-top:12px;
  font-size:13.5px;
  line-height:1.7;
  color:var(--text-sub);
  word-break:auto-phrase;
}

.license{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 18px;
  margin:0 0 34px;
  padding:20px 26px;
  border:1px solid var(--blue-light);
  border-left:4px solid var(--blue);
  border-radius:10px;
  background:#fff;
}
.license__label{ font-size:13px; color:var(--text-sub); }
.license__num{
  font-family:"Barlow",sans-serif;
  font-size:22px;
  font-weight:700;
  color:var(--blue-dark);
  letter-spacing:.04em;
}
.license__note{
  flex-basis:100%;
  font-size:12.5px;
  color:var(--text-sub);
}

@media (max-width:768px){
  .facts{ grid-template-columns:1fr; gap:12px; }
  .facts li{ display:flex; align-items:center; gap:18px; text-align:left; padding:18px 20px; }
  .facts__num{ font-size:34px; flex:none; }
  .facts__label{ margin-top:0; }
}


/* =========================================================
   2026-09-14 運営会社は「許可番号」を主役にする
   規模の数字（従業員数・事業数）は、人材紹介の取引先を探す企業から見ると
   規模の判断材料になってしまうため出しません。
   代わりに、無許可業者との区別がつく唯一の公的な証明を大きく見せます。
   ========================================================= */
.license{
  display:block;
  text-align:center;
  margin:0 0 40px;
  padding:36px 30px;
  border:2px solid var(--blue);
  border-left:2px solid var(--blue);   /* 左だけ太い指定を打ち消す */
  border-radius:14px;
  background:var(--tint);
  box-shadow:none;
}
.license__label{
  display:block;
  font-size:13.5px;
  font-weight:700;
  letter-spacing:.1em;
  color:var(--blue-dark);
  margin-bottom:12px;
}
.license__num{
  display:block;
  font-family:"Barlow",sans-serif;
  font-size:clamp(30px, 5vw, 44px);
  font-weight:700;
  line-height:1.1;
  letter-spacing:.06em;
  color:var(--blue-dark);
}
.license__note{
  display:block;
  margin-top:16px;
  font-size:13.5px;
  color:var(--text-sub);
  word-break:auto-phrase;
}
@media (max-width:640px){
  .license{ padding:26px 20px; }
  .license__num{ font-size:26px; }
}


/* =========================================================
   2026-09-14 運営会社：写真（実在の証明）と許可番号（資格の証明）を横に並べる
   求職者向けは「写真を上に大きく＋理念カード」なので、並べ方で見え方を分けています。
   ========================================================= */
.company-proof{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:stretch;
  margin-bottom:40px;
}
.company-proof__photo{
  margin:0;
  display:flex;
  flex-direction:column;
}
.company-proof__photo img{
  width:100%;
  flex:1;
  min-height:0;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:14px;
}
.company-proof__photo figcaption{
  margin-top:10px;
  font-size:12.5px;
  color:var(--text-sub);
  text-align:center;
  word-break:auto-phrase;
}

/* 横並びの中では、許可番号の外側の余白を持たせない */
.company-proof .license{
  margin:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

@media (max-width:860px){
  .company-proof{ grid-template-columns:1fr; gap:20px; }
  .company-proof__photo img{ aspect-ratio:16/9; }
}


/* =========================================================
   2026-09-14 許可番号の枠を小さくする
   ・大きすぎた（表にも同じ行があるため、主張しすぎだった）
   ・注記が右上に飛ぶ不具合も直す
     （横並び用に flex-direction:column を当てたことで、
       注記の flex-basis:100% が高さとして効いていたため）
   写真を上、その下に細い帯、という並びにします。
   ========================================================= */
.company-proof{
  display:block;              /* 横並びをやめる */
  margin-bottom:40px;
}
.company-proof__photo{
  max-width:760px;
  margin-inline:auto;
}
.company-proof__photo img{
  aspect-ratio:16/9;
}

/* 許可番号は、写真の下の細い帯に */
.company-proof .license{
  display:flex;
  flex-direction:row;         /* column をやめる（注記の飛び出しもこれで直る） */
  flex-wrap:wrap;
  align-items:baseline;
  justify-content:center;
  gap:4px 14px;
  width:fit-content;
  max-width:100%;
  margin:22px auto 0;
  padding:14px 26px;
  border:1px solid var(--blue-light);
  border-radius:10px;
  background:#fff;
  text-align:center;
}
.company-proof .license .license__label{
  display:inline;
  margin:0;
  font-size:12.5px;
  letter-spacing:.06em;
}
.company-proof .license .license__num{
  display:inline;
  font-size:19px;
  letter-spacing:.04em;
}
.company-proof .license .license__note{
  flex-basis:100%;
  margin-top:2px;
  font-size:12px;
  text-align:center;
}

@media (max-width:640px){
  .company-proof .license{ padding:12px 18px; }
  .company-proof .license .license__num{ font-size:17px; }
}


/* =========================================================
   2026-09-14 お問い合わせの確認画面（contact.php）
   ========================================================= */
.confirm-table{ margin:26px 0 34px; }
.confirm-table td .muted{ color:var(--text-sub); }
.confirm-btns{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  margin-top:8px;
}
.form-errors{
  margin:0 0 26px;
  padding:18px 22px;
  border:1px solid #d9534f;
  border-left:4px solid #d9534f;
  border-radius:8px;
  background:#fdf3f3;
}
.form-errors p{ margin:0 0 8px; color:#b0413e; }
.form-errors ul{ margin:0; padding-left:1.3em; font-size:14px; }
.form-errors li{ margin-bottom:4px; }

/* 迷惑メール対策の欄。人には見えないが、機械は埋めてしまう */
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px; height:1px;
  overflow:hidden;
}
@media (max-width:640px){
  .confirm-btns{ flex-direction:column; }
  .confirm-btns .btn{ width:100%; }
}


/* =========================================================
   不具合の修正（2026-09-16）── スマホでヒーローの写真がずれる

   斜め分割のとき、写真の枠に inset:0 0 0 38% を付けています。
   スマホでは .hero__media{ position:relative } に切り替わりますが、
   この inset が残るため、写真が画面幅の38%だけ右にずれていました。
   スマホでは inset を打ち消します。
   ========================================================= */
@media (max-width:900px){
  .hero--diagonal .hero__media,
  .hero--split .hero__media{ inset:auto; }
}


/* =========================================================
   ロゴ（2026-09-16 ご指示）

   ・文字色をロゴマークに合わせた紺にそろえる（マークの濃い部分は #091C58〜#04124E）
   ・スマホで隠れていた「人材紹介事業部」などの説明を出す
     1080px以下で隠していたのは、その幅ではメニューが横に並んでいて
     場所がなかったため。900px以下はハンバーガーになるので場所があります。
   ========================================================= */
.logo__en{ color:#0B2358; }

@media (max-width:900px){
  .logo__ja{ display:block; }
}
/* 小さい画面でも収まるように、少しだけ小さくする */
@media (max-width:400px){
  .logo__img{ width:40px; height:40px; }
  .logo__en{ font-size:14.5px; letter-spacing:.10em; }
  .logo__ja{ font-size:10px; }
}


/* =========================================================
   会社概要の「事業所」（2026-09-16 ご指示）

   【本社】〒596-0825　大阪府岸和田市土生町6-10-11 を1行で書いていたため、
   スマホで「6-10-／11」のように番地の途中で切れていました。
   名前・郵便番号・住所を、それぞれ1行にします。
   ========================================================= */
.addr{ display:block; }
.addr + .addr{ margin-top:14px; }
.addr__name,
.addr__zip,
.addr__line{ display:block; }
.addr__name{ font-weight:600; }
.addr__zip{ font-size:.92em; opacity:.85; }
.addr__line{ word-break:auto-phrase; }


/* =========================================================
   文のかたまりを切らない（2026-09-16 ご指示）

   「承っ／ております。」のように、意味の途中で改行されるのを防ぎます。
   本文の段落を、読点・句点ごとに <span class="nb"> で包みました。

   display:inline-block にすると、そのかたまりが行に入りきらないときは
   まるごと次の行へ送られます。かたまりの途中では切れません。
   （かたまり自体が1行より長いときだけ、中で折り返します）

   word-break:auto-phrase と違い、どのブラウザでも同じように効きます。
   ========================================================= */
.nb{
  display:inline-block;
  /* かたまり自体が1行より長いときの保険。
     やむをえず中で折り返すときも、文節の切れ目を選びます（Chrome・Edge） */
  word-break:auto-phrase;
}


/* =========================================================
   不具合の修正（2026-09-16）── スマホでヒーローの上に水色の帯が出る

   ヘッダーは position:fixed なので、.hero{ margin-top:var(--header-h) }
   ですでに下へずらしてあります。
   ところがスマホ用に padding-top:var(--header-h) も足していたため、
   ヘッダーの高さ（64px）ぶん、よけいに空いていました。
   そこが .hero の背景色（水色）で塗られて、帯に見えていました。
   ========================================================= */
@media (max-width:900px){
  .hero{ padding-top:0; }
}


/* =========================================================
   スクロールで「ふわっと出てくる」動きをやめる（2026-09-16 ご指示）

   理由
   ・読む人を待たせる（文字が出そろうまで時間がかかる）
   ・JSが読み込めなかったとき、本文が見えないままになる問題も同時に解決する
   ・ヒーローの切り替えや商品の帯など、動きはすでに十分ある

   戻したいときは、この下の数行を消してください。
   HTMLとJSは触っていないので、それだけで元どおりになります。
   ========================================================= */
.reveal,
.reveal.is-visible,
.reveal.is-shown{
  opacity:1;
  transform:none;
  transition:none;
}


/* =========================================================
   会社概要の表：左側（濃い色の見出し）の区切り線が消えていた（2026-09-17）

   「白文字を乗せる面は濃い色に」の指定で border-color も背景と同じ色にしていたため、
   見出し側の横線（と縦線）が背景に溶けて見えなくなっていました。
   白を少し透かした線にして、右側の白い欄の線と同じ位置に見えるようにします。
   ========================================================= */
.profile th{
  border-bottom-color:rgba(255,255,255,.24);
  border-right-color:rgba(255,255,255,.24);
}
.profile tr:last-child th{ border-bottom-color:transparent; }


/* =========================================================
   流れの6ステップにアイコンを追加（2026-09-17）
   ========================================================= */
.tl__head{ display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.tl__head h3{ margin-bottom:0; padding-top:0; }
.tl__ico{ display:inline-flex; flex:none; width:34px; height:34px; color:var(--blue); }
.tl__ico svg{ width:100%; height:100%; }


/* =========================================================
   ヘッダーの上の細い帯（2026-09-17）
   企業様向け ⇔ 求職者向けのページを行き来する文字リンク。
   ページの一番上にいるときだけ見せて、スクロールしてヘッダーが
   付いてくるとき（.is-scrolled）は帯をたたんで、じゃまにならないようにする。
   ※パソコンだけ。スマホは帯を出さず、メニューの中にリンク（.nav__switch）。
   見本：docs/_demo/反対側へのリンク.html
   ========================================================= */
:root{ --topbar-h:30px; --header-h:106px; }
html{ scroll-padding-top:calc(var(--header-h) - var(--topbar-h) + 12px); }
.header{ transition:height .3s, background .3s, box-shadow .3s, backdrop-filter .3s; }
.topbar{
  height:var(--topbar-h);
  background:var(--blue-dark);
  overflow:hidden;
  transition:height .3s, visibility .3s;
}
.topbar__inner{
  max-width:1280px; height:var(--topbar-h);
  margin-inline:auto; padding-inline:24px;
  display:flex; align-items:center; justify-content:flex-end;
}
.topbar a{
  color:#fff; font-size:12.5px; font-weight:700; line-height:1;
  display:inline-flex; align-items:center; gap:6px;
}
.topbar a:hover{ text-decoration:underline; text-underline-offset:3px; }
.header__inner{ height:calc(100% - var(--topbar-h)); transition:height .3s; }

.header.is-scrolled{ height:calc(var(--header-h) - var(--topbar-h)); }
.header.is-scrolled .topbar{ height:0; visibility:hidden; }
.header.is-scrolled .header__inner{ height:100%; }

/* スマホは一番上に帯を出さず、メニュー（≡）の中にリンクを入れる（2026-09-17 ご相談で変更） */
.nav__switch{ display:none; }
@media (max-width:900px){
  :root{ --topbar-h:0px; --header-h:64px; }
  .topbar{ display:none; }
  .header.is-scrolled{ height:var(--header-h); }
  .nav__switch{
    display:block;
    margin-top:18px;
    padding:12px 4px;
    text-align:center;
    font-size:14px;
    font-weight:700;
    color:var(--blue-dark);
    text-decoration:underline;
    text-underline-offset:4px;
  }
}
