@charset "UTF-8";

/* =========================================
   株式会社味園サポート 人材紹介LP（求職者向け）
   色を変えたいときは :root の変数だけ触ればOK
   ========================================= */

:root{
  --blue:        #2f6fd0;   /* メインカラー（ロゴの青） */
  --blue-dark:   #16357a;
  --blue-light:  #5b93e8;
  --tint:        #e9f1fd;   /* 薄い水色の背景 */
  --hero-tint:   #d6e7fa;   /* ヒーローのグラデーション色 */
  --tint-2:      #f5f8fe;
  --accent:      #f6c453;   /* 差し色（黄） */
  --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:linear-gradient(rgba(255,255,255,.55), rgba(255,255,255,0));
  z-index:100;
  transition:background .3s, box-shadow .3s, backdrop-filter .3s;
}
.header.is-scrolled{
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  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;
  min-height:88vh;
  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%; }
.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%;
  max-width:var(--maxw);
  margin-inline:auto;
  padding:calc(var(--header-h) + 40px) 24px 60px;
}
.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(30px, 4.6vw, 52px);
  font-weight:900;
  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(20,113,124,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(20,113,124,.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-warehouse-woman.jpg') center center / cover no-repeat;
  padding:88px 0;
  color:#fff;
  text-align:center;
}
.band::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, rgba(15,92,102,.95) 0%, rgba(15,92,102,.90) 55%, rgba(15,92,102,.62) 100%);
}
.band__inner{ position:relative; }
.band__sub{
  font-family:"Barlow",sans-serif;
  font-size:12px;
  letter-spacing:.26em;
  color:rgba(255,255,255,.85);
  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(15,92,102,.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-image:url('../images/band-warehouse-woman-sp.jpg');
         background-position:center; }   /* スマホは縦長の写真に差し替え */
  .band::before{ background:rgba(15,92,102,.90); }
  .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; }
}


/* ---- 日本語の改行を整える（1文字だけ次行に落ちるのを防ぐ） ---- */
.about__catch,
.sec-head__ja,
.lead-center,
.hero__lead,
.tagbox__note{ text-wrap:balance; }
.about__copy p,
.card p,
.job p,
.flow__item p,
.faq__a p{ text-wrap:pretty; }

/* スマホでは解除する改行 */
.pc{ display:inline; }
@media (max-width:900px){ .pc{ display:none; } }


/* =========================================
   求職者向けの「やわらかさ」調整　2026-09-12 追加
   ここから下を丸ごと削除すれば、元の見た目に戻ります。
   ========================================= */
:root{
  --radius: 20px;          /* 角を大きく丸める（元 12px） */
}

body{ line-height:2.05; }  /* 行間を広げる（元 1.9） */

/* 見出しの太さを落として、やわらかい印象にする */
.sec-head__ja{ font-weight:600; }
.hero__title { font-weight:700; }   /* 元 900 は太すぎるため */
.card__title { font-weight:600; }

/* 見出しの下に、差し色の黄色で短い線を引く */
.sec-head__ja::after{
  content:"";
  display:block;
  width:48px; height:3px;
  margin-top:18px; margin-inline:auto;
  border-radius:2px;
  background:var(--accent);
}

/* セクションの間を広げて、ゆったり見せる */
.section{ padding:112px 0; }
@media (max-width: 767px){
  .section{ padding:72px 0; }
  .sec-head__ja::after{ width:40px; margin-top:14px; }
}


/* 職種カードのアイコン（2026-09-12 追加）
   既存の svg{fill:none; stroke:currentColor; ...} がそのまま効くので、
   線の太さや色は他のアイコンと自動でそろいます。 */
.job__body h3{
  display:flex;
  align-items:center;
  gap:10px;
}
.job__icon{
  display:inline-flex;
  flex:none;
  width:28px;
  height:28px;
  color:var(--blue);
}


/* 2026-09-12 修正 */
.logo__ja{ white-space:nowrap; }

/* ヒーローのボタンと SCROLL の文字が重なっていたため、
   本文の下余白を増やして SCROLL の居場所を確保する */
.hero__inner{ padding-bottom:132px; }
.hero__scroll{ padding-bottom:28px; }
@media (max-width: 900px){
  .hero__scroll{ display:none; }   /* 狭い画面では隠す */
  .hero__inner{ padding-bottom:60px; }
}


/* ヒーロー下の3点：アイコンを丸で囲む（2026-09-12） */
.hp__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px; height:42px;
  border-radius:50%;
  background:var(--tint);
  color:var(--blue);
  margin-bottom:10px;
}
.hp__icon svg{ width:22px; height:22px; }


/* もう一方のサイトへの案内帯（フッターの手前） */
.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 追加
   ここから下を丸ごと削除すれば、元の色に戻ります。

   考え方：薄くするのは「面」だけ。文字の色は変えていません。
   全部を淡くすると読みにくくなり、かえって安っぽく見えるためです。

   差し色が黄色(--accent)なので、下地を「青く薄める」より
   「温める」ほうが黄色がなじみ、やさしい印象になります。
   ========================================= */
:root{
  --tint:      #f6f2ea;   /* 薄い下地：青みの水色 -> 温かいベージュ */
  --tint-2:    #fbf8f2;   /* さらに薄い下地 */
  --hero-tint: #dfeaf7;   /* ヒーローの空色：少しだけ彩度を落とす */
  --line:      #e8e2d8;   /* 区切り線：青みを抜いて柔らかく */
  --shadow:    0 6px 24px rgba(120,105,75,.09);   /* 影：青い影 -> 温かく薄い影 */
}

/* ページの下地をごくわずかに温かい白にする */
body{ background:#fffdf9; }


/* =========================================================
   2026-09-12 追加
   1) ヒーロー下の3つの訴求：文字そのものを丸で囲む
   2) 「採用をお考えの企業様へ」の重複を解消（crossnav 廃止）
   3) 生成りになじむ青へ、彩度だけ少し落とす
   ========================================================= */

/* --- 3) 色：青の“鮮やかさ”だけを落とす。役割と配置は一切変えない --- */
:root{
  --blue:        #3a6db6;   /* #2f6fd0 から彩度を落とし、生成りとケンカしないように */
  --blue-dark:   #1d3d72;
  --blue-light:  #86aad9;
}

/* --- 1) ヒーロー下の訴求を丸で囲む --- */
.hero-points{ padding:34px 0 40px; }
.hero-points ul{
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  justify-items:center;
}
.hero-points li{ padding:0; display:block; }
.hero-points li + li::before{ display:none; }   /* 縦の区切り線は丸と相性が悪いので消す */

.hp__circle{
  width:clamp(150px, 17.5vw, 188px);
  aspect-ratio:1 / 1;
  box-sizing:border-box;
  padding:16px 14px;
  border-radius:50%;
  background:var(--white);
  border:1.5px solid var(--blue-light);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hp__circle .hp__icon{          /* アイコンの丸い下地はやめて、文字と一緒に丸の中へ */
  width:26px; height:26px;
  background:none;
  border-radius:0;
  margin-bottom:7px;
}
.hp__circle .hp__icon svg{ width:26px; height:26px; }
.hero-points strong{ font-size:14.5px; line-height:1.45; }
.hero-points .hp__sub{ font-size:11.5px; line-height:1.5; margin-top:5px; }

/* --- 2) 企業様向けの帯に、人材紹介サイトへのリンクを同居させる --- */
.forbiz__actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.forbiz__link{
  color:#fff;
  font-size:13.5px;
  padding-bottom:2px;
  border-bottom:1px solid rgba(255,255,255,.5);
}
.forbiz__link:hover{ opacity:.75; }

@media (max-width:640px){
  .hero-points ul{ grid-template-columns:1fr; gap:16px; }
  .hp__circle{ width:176px; }
  /* スマホでもボタンとリンクは中央に（2026-09-16 ご指示） */
  .forbiz__actions{ align-items:center; align-self:stretch; }
}


/* =========================================================
   2026-09-12 配色の切り替え（求職者向け）
   #658CC7 ＋ #FFFDF9 ＋ #EAF1F8 ＋ #8FB8B5
   → 安心・相談しやすい・やわらかい
   ※ 9/12 午前に入れたベージュ系（#f6f2ea）は、この指定に置き換わります。
   ========================================================= */
:root{
  --blue:        #658CC7;   /* 企業向けと同じ青＝同じ会社であることの担保 */
  --blue-dark:   #3F5875;   /* 白文字を乗せる面 */
  --blue-light:  #9DB9DE;
  --accent:      #8FB8B5;   /* やわらかい緑みの差し色 */
  --tint:        #EAF1F8;   /* 淡い水色の面 */
  --tint-2:      #FFFDF9;   /* あたたかい白の面 */
  --hero-tint:   #EAF1F8;
  --line:        #E2E8F0;
  --shadow:      0 6px 24px rgba(63,88,117,.10);
}
body{ background:#FFFDF9; }

/* ヒーロー下の丸は、やわらかい緑みの線で囲む */
.hp__circle{ border-color:var(--accent); background:#fff; }

/* 白文字を乗せる面だけは濃い方の青にする（読みやすさの確保） */
.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 ／ 背景 #FFFDF9 ／ アクセント #FFD95A ＋ #FF8F70
   → 明るい・前向き・親しみ
   ========================================================= */
:root{
  --blue:        #658CC7;   /* 企業向けと同じ青＝同じ会社であることの担保 */
  --blue-dark:   #355786;   /* 白文字を乗せる面（オフィシャルのメインと同じ色） */
  --blue-light:  #9DB9DE;
  --accent:      #FFD95A;   /* 差し色1：黄 */
  --accent-2:    #FF8F70;   /* 差し色2：コーラル */
  --tint:        #EAF2FA;
  --tint-2:      #FFFDF9;
  --hero-tint:   #EAF2FA;
  --line:        #E6E3DC;
  --shadow:      0 6px 24px rgba(53,87,134,.10);
}
body{ background:#FFFDF9; }

/* ヒーロー下の丸：線は黄、アイコンはコーラル */
.hp__circle{ border-color:var(--accent); background:#fff; }
.hp__circle .hp__icon{ color:var(--accent-2); }


/* =========================================================
   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(--accent);
  color:var(--text);
  border-color:var(--accent);
}

/* 白ベタの帯の中のボタンは、もとの指定を優先する */
.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 ＋ ヒーローをふわっと切り替え
   ・企業向けだけ青を明るくしたため、やわらかいはずの求職者向けが
     かえってくすんで見えていました。青を企業向けと同じに揃えます
   ・背景のあたたかい白は残します（ここが企業向けとの違い）
   ・差し色は黄の1色に絞り、コーラルはやめます
   ========================================================= */
:root{
  --blue:        #2E86DE;   /* 企業向けと同じ明るい青に揃える */
  --blue-dark:   #355786;   /* 白文字を乗せる面（白との比 7.35:1） */
  --blue-light:  #8FC0F0;
  --accent:      #FFD95A;   /* 差し色は黄の1色 */
  --accent-2:    #FFD95A;   /* コーラルをやめ、黄に統一 */
  --tint:        #EAF2FA;
  --tint-2:      #FFFDF9;
  --hero-tint:   #EAF2FA;
  --line:        #E6E3DC;
  --shadow:      0 6px 24px rgba(46,134,222,.10);
}
body{ background:#FFFDF9; }

/* ヒーロー下の丸：線は黄のまま、アイコンはコーラルをやめて青に */
.hp__circle{ border-color:var(--accent); background:#fff; }
.hp__circle .hp__icon{ color:var(--blue); }

/* --- ヒーローの写真をふわっと切り替える（企業向けの左送りとは別の動き） --- */
.hero__media{ overflow:hidden; }
.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 運営会社の見せ方（求職者向け）
   求職者が知りたいのは「どんな会社で働くことになるのか」。
   写真を大きく、理念3つを主役にします。表は省略せず下に置きます。
   ========================================================= */
.company-photo-wide{ margin:0 0 34px; }
.company-photo-wide img{
  width:100%;
  aspect-ratio:21/9;
  object-fit:cover;
  border-radius:14px;
}

.philosophy__intro{
  text-align:center;
  font-size:16px;
  font-weight:700;
  color:var(--blue-dark);
  margin:0 0 24px;
}

.philosophy--big{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:38px;
}
.philosophy--big .philosophy__item{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-top:4px solid var(--accent);
  border-radius:14px;
  padding:34px 26px 28px;
  box-shadow:var(--shadow);
}
.philosophy__no{
  position:absolute;
  top:14px; right:18px;
  font-family:"Barlow",sans-serif;
  font-size:30px;
  font-weight:700;
  line-height:1;
  color:var(--accent);
}
.philosophy--big .philosophy__item h3{
  font-size:19px;
  color:var(--blue-dark);
  margin:0 0 12px;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}
.philosophy--big .philosophy__item p{
  font-size:14.5px;
  line-height:1.9;
  color:var(--text-sub);
  margin:0;
  word-break:auto-phrase;
}

@media (max-width:860px){
  .philosophy--big{ grid-template-columns:1fr; gap:14px; }
  .company-photo-wide img{ aspect-ratio:16/9; }
}


/* =========================================================
   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 求職者向けフォームの追加項目
   ・ご希望の勤務地
   ・折り返しのご連絡方法（ラジオボタン）
   ========================================================= */
.radios{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  padding:4px 0 2px;
}
.radio{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  cursor:pointer;
  color:var(--text);
}
.radio input[type="radio"]{
  width:19px;
  height:19px;
  accent-color:var(--blue);
  cursor:pointer;
}

/* LINEを外したので、相談方法は2つ・固定ボタンは1本になる */
.ways{ grid-template-columns:repeat(2, 1fr); }
.fixedcta__btn{ flex:1; }

@media (max-width:640px){
  .ways{ grid-template-columns:1fr; }
  .radios{ gap:8px 18px; }
}


/* =========================================================
   2026-09-16 求職者向け 配色 v4（ティール／青緑）
   ・青が強すぎたので、緑寄りにずらしてやわらげる
   ・黄をクリーム寄りに落とし、けんかしないようにする
   ・企業向け（#2E86DE）とはっきり違う色にして、2サイトを区別する
   ========================================================= */
:root{
  --blue:        #1E9BA8;
  --blue-dark:   #14717C;
  --blue-light:  #7FC9D1;
  --accent:      #FFD98E;
  --accent-2:    #FFD98E;
  --tint:        #E6F4F5;
  --tint-2:      #FDFCF8;
  --hero-tint:   #E6F4F5;
  --line:        #E2E8E7;
  --shadow:      0 6px 24px rgba(20,113,124,.10);
}
body{ background:#FDFCF8; }

/* 変数を通していなかった箇所も合わせる */
.btn:hover,
.btn:not(.btn--ghost):not(.btn--ghost-white):not(.btn--line):hover{
  background:#0F5C66;
  border-color:#0F5C66;
}
.footer{ background:#14252A; }

/* ヒーロー下の丸：線はクリーム、アイコンはティール */
.hp__circle{ border-color:var(--accent); background:#fff; }
.hp__circle .hp__icon{ color:var(--blue); }


/* =========================================================
   「働き方から選ぶ」── 押せるタグ（2026-09-16）
   押すと、ページ下のお問い合わせフォームの「ご相談内容」に入ります。
   画面は動きません。移動するのは「この条件で相談する」を押したときだけです。
   ========================================================= */
.chips{ display:flex; flex-wrap:wrap; gap:10px; margin:0 0 32px; padding:0; list-style:none; }
.chips button{
  font:inherit; font-size:13.5px; font-weight:500; cursor:pointer;
  background:var(--white); border:1.5px solid var(--blue-light); color:var(--blue-dark);
  padding:9px 18px; border-radius:999px;
  display:inline-flex; align-items:center; gap:8px;
  transition:background .15s, border-color .15s, color .15s;
}
.chips button::before{ content:"＋"; font-size:13px; opacity:.75; }
.chips button:hover{ border-color:var(--blue); background:#F2FAFB; }
.chips button:focus-visible{ outline:3px solid var(--blue); outline-offset:2px; }
.chips button[aria-pressed="true"]{
  background:var(--blue-dark); border-color:var(--blue-dark); color:#fff;
}
.chips button[aria-pressed="true"]::before{ content:"✓"; opacity:1; }

.chips__status{
  display:flex; flex-wrap:wrap; align-items:center; gap:14px;
  font-size:13px; color:var(--text-sub); margin:0 0 24px;
}
.chips__status b{ color:var(--blue-dark); font-size:14px; }
.chips__go{
  font-size:13.5px; font-weight:700; text-decoration:none;
  background:var(--blue-dark); color:#fff; border-radius:999px; padding:10px 22px;
}
.chips__go:hover{ background:#0F5C66; color:#fff; }
.chips__go[hidden]{ display:none; }

@media (max-width:600px){
  .chips{ gap:8px; }
  .chips button{ padding:8px 15px; font-size:13px; }
  .chips__go{ width:100%; text-align:center; }
}
@media (prefers-reduced-motion: reduce){
  .chips button{ transition:none; }
}


/* =========================================================
   日本語の折り返し（2026-09-16）

   スマホで「提供し／ています」「ではあ／りません」のように
   語の途中で切れていたので、文節で折り返すようにします。
   企業向け（hr）には入っていたのに、こちらには抜けていました。

   word-break:auto-phrase … 日本語の文節を見て改行位置を決める
   text-wrap:balance      … 各行の長さをそろえる（中央寄せの短い文に効く）
   text-wrap:pretty       … 最終行に1文字だけ残るのを避ける
   ========================================================= */

/* 見出し・短い中央寄せの文 ── 行の長さをそろえる */
.hero__title,
.about__catch,
.sec-head__ja,
.lead-center,
.band__title,
.card__title,
.flow__item h3,
.tagbox__title,
.faq__q{
  word-break:auto-phrase;
  text-wrap:balance;
}

/* 本文 ── 最終行に1文字だけ残らないようにする */
.hero__lead,
.about__copy p,
.about__note,
.philosophy__intro,
.card p,
.job p,
.flow__item p,
.faq__a p,
.band__text,
.tagbox__note,
.chips__status,
.company__caption,
.contact__lead,
.contact__formnote,
.forbiz__text,
.way__note,
.hp__sub,
.footer__addr,
.company td,
.company th{
  word-break:auto-phrase;
  text-wrap:pretty;
}


/* =========================================================
   スマホの「流れ」の写真（2026-09-16）

   横長（16:6）の写真を 16:9 に切るため、左右が切れます。
   中央だと男性しか映らず、相手の女性が入りません。
   右端に寄せて、向かい合っている様子が分かるようにします。
   ========================================================= */
@media (max-width:900px){
  .flow__visual img{ object-position:100% center; }
}


/* =========================================================
   ロゴ（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 ご指示）

   理由
   ・読む人を待たせる（文字が出そろうまで時間がかかる）
   ・JSが読み込めなかったとき、本文が見えないままになる問題も同時に解決する
   ・ヒーローの切り替えや商品の帯など、動きはすでに十分ある

   戻したいときは、この下の数行を消してください。
   HTMLとJSは触っていないので、それだけで元どおりになります。
   ========================================================= */
.reveal,
.reveal.is-visible,
.reveal.is-shown{
  opacity:1;
  transform:none;
  transition:none;
}


/* =========================================================
   ボタンの上の吹き出し「＼ まずは相談から、でも大丈夫 ／」（2026-09-17）

   ボタンを押す直前に、気持ちをほぐす一言を添えます。
   吹き出しはボタンの真上・中央にそろえます。
   ========================================================= */
.cta{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.cta__lead{
  margin:0;
  font-size:14px;
  font-weight:700;
  letter-spacing:.04em;
  color:var(--blue-dark);
  white-space:nowrap;
}
/* 帯（濃いティールの上）では白で */
.band .cta__lead{ color:#fff; }

/* スマホではボタンを横いっぱいに（ヒーローの既存の指定と合わせる） */
@media (max-width:900px){
  .hero__btns .cta{ width:100%; }
  .hero__btns .cta .btn{ width:100%; }
}
@media (max-width:360px){
  .cta__lead{ font-size:13px; letter-spacing:0; }
}


/* =========================================================
   会社概要の表：左側（濃い色の見出し）の区切り線が消えていた（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）
   「主な募集職種」のカードと同じ線の太さ・描き方
   ========================================================= */
.flow__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.flow__head .flow__num{ margin-bottom:0; }
.flow__ico{ display:inline-flex; width:46px; height:46px; color:var(--blue); }
.flow__ico svg{ width:100%; height:100%; }


/* =========================================================
   ヒーロー下の「3つの丸」をLP風に（2026-09-17・B案）
   いちばん伝えたい言葉を大きく、上に黄色の「POINT」の札。
   見本：docs/_demo/3つの丸_LP風.html
   ========================================================= */
.hero-points{ padding:52px 0 44px; }
.hero-points ul{ gap:32px; }
.hp__circle{
  position:relative;
  width:200px;
  padding:18px 14px 14px;
  background:#fff;
  border:4px solid var(--blue-dark);
  box-shadow:0 12px 28px rgba(20,113,124,.15);
}
.hero-points .hp__point{
  position:absolute;
  top:-16px; left:50%;
  transform:translateX(-50%);
  background:var(--accent);
  color:var(--blue-dark);
  font-family:"Barlow",sans-serif;
  font-weight:700;
  font-size:13px;
  letter-spacing:.14em;
  line-height:1;
  padding:7px 16px;
  border-radius:999px;
  white-space:nowrap;
}
.hero-points .hp__big{
  font-size:44px;
  font-weight:900;
  color:var(--blue-dark);
  line-height:1.1;
  letter-spacing:-.01em;
}
.hero-points .hp__big small{ font-size:22px; font-weight:900; }
.hero-points .hp__big--long{ font-size:34px; }
.hero-points strong{ font-size:14.5px; color:var(--text); margin-top:6px; line-height:1.4; }
.hero-points .hp__sub{ font-size:11.5px; color:var(--text-sub); margin-top:3px; line-height:1.5; }

@media (max-width:640px){
  .hero-points ul{ gap:38px; }
  .hp__circle{ width:200px; }
}


/* =========================================================
   ヒーロー1枚目（面談）の見せる位置（2026-09-17）
   横長に広げた写真なので、右寄りを見せて女性を左へ寄せる。
   100%まで寄せると男性が見えなくなるため、60%。
   ※スマホも同じ写真になりました（下の「スマホのヒーロー」を参照）。
   ========================================================= */
@media (min-width: 901px){
  .hero__media img.hero__img--interview{ object-position:60% 45%; }
}


/* =========================================================
   ヒーローのグラデーションが青く見えていた（2026-09-17 ご指摘）
   無地の部分は緑がかった --hero-tint（#E6F4F5）なのに、
   写真へ溶け込む部分だけ、青い配色だったころの色（#D6E7FA）が残っていました。
   同じ緑がかった色でグラデーションさせます。
   ========================================================= */
.hero__veil{
  background:linear-gradient(90deg,
    var(--hero-tint)        0%,
    var(--hero-tint)        var(--veil-solid),
    rgba(230,244,245,.78)   calc(var(--veil-solid) +  5%),
    rgba(230,244,245,.55)   calc(var(--veil-solid) + 11%),
    rgba(230,244,245,.32)   calc(var(--veil-solid) + 18%),
    rgba(230,244,245,.15)   calc(var(--veil-solid) + 25%),
    rgba(230,244,245,.05)   calc(var(--veil-solid) + 31%),
    rgba(230,244,245,0)     calc(var(--veil-solid) + 37%));
}
@media (max-width:900px){
  .hero__media::after{
    background:linear-gradient(180deg, rgba(230,244,245,0), var(--hero-tint));
  }
}


/* =========================================================
   流れの写真を差し替え（2026-09-17）flow.jpg → flow-2.jpg
   新しい写真は横長（2.1:1）。パソコンの枠（16:6）では上下が切れるので、
   男性の頭の上に余白が残るよう、少し上寄りを見せる。
   スマホは既存の「右寄せ（100%）」のまま＝女性の背中がいちばん多く入る。
   ========================================================= */
@media (min-width:901px){
  .flow__visual img{ object-position:50% 30%; }
}

/* =========================================================
   ヒーローの見出しに、ふわっとした影（2026-09-17 ご依頼）
   写真と重なると読みにくいので、うしろの無地と同じ淡い色（--hero-tint）で
   文字のまわりをぼかして、文字が浮き上がって見えるようにする。
   ========================================================= */
.hero__title,
.hero__lead,
.hero .cta__lead{
  text-shadow:
    0 0 2px  rgba(230,244,245,.95),
    0 0 8px  rgba(230,244,245,.9),
    0 0 16px rgba(230,244,245,.85),
    0 0 28px rgba(230,244,245,.7);
}


/* =========================================================
   スマホのヒーロー（2026-09-17 ご指摘）
   ・1枚目：スマホだけ古い写真（hero-interview-sp.jpg）のままで、
     男性と女性の間が空いていた → パソコンと同じ hero-interview-4.jpg にし、
     男性の頭と女性の顔が両方入る位置（35%）。
   ・3枚目（5人の写真）：左右の真ん中（50%）だと5人が右に寄り、
     右端の人が切れていた → 5人のまとまりが真ん中に来る75%。
   ========================================================= */
@media (max-width:900px){
  .hero__media img.hero__img--interview{ object-position:35% 50%; }
  .hero__media img.hero__img--staff{ object-position:75% 50%; }
}


/* =========================================================
   ヘッダーの上の細い帯（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;
  }
}
