@charset "UTF-8";
/* ============================================================
   対応業種について(page-industries.php / 2026)
   ・.ind-* 名前空間。基本スタイルはラッパー .ind-lp 配下だけに限定し、
     テーマ共通のヘッダー/フッター(.fp-*)へ影響させない。
   ・アニメーションは js/industries.js(GSAP + ScrollTrigger)。
     JS/GSAP不在・prefers-reduced-motion ではコンテンツは全て可視
     (初期非表示は JS 側でのみ設定する = グレースフルデグラデーション)。
   ・色は hero-front.css の :root(--fph-*)から取る。独自の色相を足さない。
   ============================================================ */
.ind-lp {
  /* --ind-head はヘッダー(.fp-header)の実高。追従インデックス(.ind-nav)の
     top と、アンカー着地時の scroll-margin-top の両方がこの値に依存する。
     ヘッダーの高さを変えたらここも必ず合わせること。 */
  --ind-head: 92px;
  --ind-navh: 58px;

  --navy: #243b65;
  --navy-deep: #1b2c4d;
  --ink: #1b2536;
  --ink-soft: #4c576c;
  --line: #dde5ee;
  --paper: #faf9f6;
  --accent: #2f6dad;
  --accent-deep: #2b5288;
  --accent-soft: #8fc2ec;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --en: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --min: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  --wrap: 1120px;

  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.95;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.ind-lp * { box-sizing: border-box; }
.ind-lp img { max-width: 100%; display: block; }
/* aの色は各コンポーネント側で上書きする。この行の詳細度は(0,1,1)で、
   単一クラス(0,1,0)より強い。そのため色を指定するリンク系のセレクタは
   必ず .ind-lp を前置して(0,2,0)にすること(前置を外すと黒に戻る)。 */
.ind-lp a { color: inherit; text-decoration: none; }
.ind-lp .en { font-family: var(--en); }
.ind-lp .mincho { font-family: var(--min); }

.ind-lp .ind-sp { display: none; }
@media (max-width: 767px) {
  .ind-lp .ind-pc { display: none; }
  .ind-lp .ind-sp { display: inline; }
}

/* ============================================================
   HERO
   ============================================================ */
.ind-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
  padding: calc(var(--ind-head) + 84px) 24px 92px;
}
/* 光の当たり方だけで奥行きを出す(画像を使わないので差し替え不要) */
.ind-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(63, 143, 208, 0.42) 0%, rgba(63, 143, 208, 0) 58%),
    radial-gradient(90% 80% at 92% 108%, rgba(47, 109, 173, 0.5) 0%, rgba(47, 109, 173, 0) 62%),
    linear-gradient(160deg, #1b2c4d 0%, #243b65 55%, #1b2c4d 100%);
}
.ind-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 0%, transparent 100%);
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 0%, transparent 100%);
}
.ind-hero__inr {
  position: relative;
  max-width: var(--wrap);
  margin-inline: auto;
}
.ind-hero__en {
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--accent-soft);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ind-hero__en::after {
  content: "";
  flex: 0 0 64px;
  height: 1px;
  background: rgba(143, 194, 236, 0.55);
}
.ind-hero__h1 {
  font-size: clamp(34px, 6.2vw, 62px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.03em;
  margin: 0 0 30px;
}
.ind-hero__lead {
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 500;
  line-height: 1.9;
  margin: 0 0 22px;
  max-width: 42em;
}
.ind-hero__lead b {
  font-weight: 700;
  color: #fff;
  box-shadow: inset 0 -0.5em 0 rgba(63, 143, 208, 0.42);
}
.ind-hero__sub {
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 46em;
}
@media (max-width: 767px) {
  .ind-hero { padding: calc(var(--ind-head) + 48px) 20px 60px; }
  .ind-hero__sub { font-size: 14px; line-height: 2; }
}

/* ============================================================
   業種インデックス(追従)
   ヘッダーは fixed(z-index:1001)。ここはその下をくぐらせる。
   ============================================================ */
.ind-nav {
  position: sticky;
  top: var(--ind-head);
  z-index: 900;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.ind-nav__list {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 24px;
  list-style: none;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ind-nav__list::-webkit-scrollbar { display: none; }
.ind-lp .ind-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  height: var(--ind-navh);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ind-nav__num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  transition: color 0.3s var(--ease);
}
.ind-lp .ind-nav__link:hover { color: var(--accent-deep); }
.ind-lp .ind-nav__link.is-current {
  color: var(--accent-deep);
  border-bottom-color: var(--accent);
}
.ind-nav__link.is-current .ind-nav__num { color: var(--accent); }
/* 福井は業種ではないため番号を振らない。左の区切り線で他の4つと分ける。
   .ind-lp を前置しているのは .ind-lp a { color: inherit } (0,1,1) に負けないため。 */
.ind-lp .ind-nav__link--fukui {
  margin-left: 12px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
  color: var(--accent-deep);
  font-weight: 600;
}
.ind-nav__pin { display: inline-flex; flex: 0 0 auto; color: var(--accent); }
.ind-nav__pin svg {
  width: 17px;
  height: 17px;
  display: block;
  /* viewBoxは24単位。17px表示だと属性の stroke-width="1.5" は実効0.94pxになり、
     1px未満でアンチエイリアスされて隣の太字より薄く見える。CSSは属性より
     優先されるので、ここで2.1に上げて実効1.5px前後にする。 */
  stroke-width: 2.1;
}
@media (max-width: 767px) {
  .ind-nav { top: 0; } /* SPはヘッダーが縮む/隠れるため画面上端に貼る */
  .ind-nav__list { padding: 0 12px; }
  .ind-nav__link { height: 50px; padding: 0 12px; font-size: 13px; }
  .ind-lp .ind-nav__link--fukui { margin-left: 6px; padding-left: 16px; }
}

/* ============================================================
   セクション共通
   ============================================================ */
.ind-sec {
  padding: 110px 24px;
  /* ヘッダー + 追従インデックスのぶんだけ着地位置を下げる。
     これが無いとアンカー遷移でラベル(01/Clinic)が隠れる。 */
  scroll-margin-top: calc(var(--ind-head) + var(--ind-navh));
}
.ind-sec--alt { background: var(--paper); }
.ind-sec__inr {
  max-width: var(--wrap);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .ind-sec { padding: 68px 20px; scroll-margin-top: 62px; }
}

/* 見出しまわり */
.ind-head { margin-bottom: 52px; }
.ind-head__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}
.ind-head__num {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-soft);
  letter-spacing: 0.02em;
}
.ind-head__en {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.ind-head__h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}
.ind-head__lead {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 2.05;
  color: var(--ink-soft);
  margin: 0;
  max-width: 44em;
}

/* 画像(いまはサイト内の既存写真。Adobe Stock が揃ったら差し替える) */
.ind-visual { margin: 0 0 56px; }
.ind-visual__img {
  /* プレースホルダ(.ind-ph--wide)と同じ比率にしておく。ここがずれると
     差し替えのたびに前後の余白が動く。 */
  aspect-ratio: 7 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f7;
}
.ind-visual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ind-ph {
  position: relative;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, #e9edf3 0 12px, #eef2f7 12px 24px);
  border: 1px dashed #c3ceda;
  border-radius: 14px;
  color: #8a97a8;
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
  padding: 20px;
}
.ind-ph small { font-size: 11px; letter-spacing: 0.06em; opacity: 0.8; }
.ind-ph--wide { aspect-ratio: 7 / 3; }
@media (max-width: 767px) {
  .ind-visual { margin-bottom: 38px; }
  .ind-visual__img { aspect-ratio: 16 / 10; border-radius: 10px; }
  /* SPは枠が 16/10 になり、横長の写真は左右が約31%切り落とされる。
     ind_nursing.png は人物が左寄り(顔が横14〜43%の位置)なので、
     中央基準だと女性の顔が欠ける。この画像だけ左寄りに寄せる。 */
  #nursing .ind-visual__img img { object-position: 20% center; }
  .ind-ph--wide { aspect-ratio: 16 / 10; }
  .ind-ph { font-size: 12px; border-radius: 10px; }
}

/* 追従インデックスからのアンカー遷移をなめらかに(このページでのみ読み込むCSS) */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   ポイント(H3)
   当初は2列のカードグリッドだったが、1セクションに最大6項目あるため
   文字の塊になって読めなかった。いまは「ラインアイコン + 1列 + 大きな余白」。
   ・1列にして本文の行長を 38em で止める(2列だと1行が短く、視線の折返しが多い)
   ・箱で囲わず、区切りは1本の罫線だけにして余白で separation を作る
   ・アイコンは page-industries.php の ind_icon() が吐くインラインSVG
     (24x24 / stroke / currentColor)。色は color を継ぐので --accent が乗る。
   ============================================================ */
.ind-points {
  list-style: none;
  margin: 0 0 72px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.ind-point {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  column-gap: 36px;
  align-items: start;
  padding: 48px 0 50px;
  border-bottom: 1px solid var(--line);
}
.ind-point__ic {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(47, 109, 173, 0.07);
}
.ind-point__ic svg {
  width: 30px;
  height: 30px;
  display: block;
  overflow: visible;
}
/* アイコンを囲むリング。GSAPが .is-on を付けたときだけ広がる */
.ind-point__ic::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  transform: scale(0.82);
}
/* js/industries.js が ScrollTrigger で .is-on を付ける。
   GSAP不在・低モーション時はJS側が即座に .is-on を付けるので、
   リングは開いた状態で表示される(消えたままにはならない)。 */
.ind-point.is-on .ind-point__ic::after {
  opacity: 0.42;
  transform: scale(1);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.ind-point__bd { padding-top: 3px; }
.ind-point__num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 12px;
  line-height: 1;
}
.ind-point__h3 {
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
  color: var(--navy);
}
.ind-point__tx {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 2.25;
  color: var(--ink-soft);
  margin: 0;
}

/* 本文中の強調(黄色のマーカー)。
   ・inline要素が複数行に折り返しても各行に引けるよう box-decoration-break: clone。
     これが無いと、2行目以降で下線の位置がずれる。
   ・下線の高さは em 基準なので、SPで文字が小さくなっても比率が崩れない。
   ・アニメーションは付けていない。JSに依存させると、JSの読み込みに
     失敗したときに下線が出ないため。 */
.ind-mk {
  font-weight: 700;
  color: var(--ink);
  background-image: linear-gradient(transparent 62%, rgba(255, 214, 51, 0.62) 62%);
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 0.08em;
}
@media (max-width: 900px) {
  .ind-point { grid-template-columns: 60px 1fr; column-gap: 26px; padding: 42px 0 44px; }
  .ind-point__ic { width: 60px; height: 60px; }
  .ind-point__ic svg { width: 27px; height: 27px; }
}
@media (max-width: 767px) {
  /* SPは横に並べると本文が細くなるので、アイコンを上に逃がす */
  .ind-points { margin-bottom: 48px; }
  .ind-point { grid-template-columns: 1fr; padding: 34px 0 38px; }
  .ind-point__ic { width: 52px; height: 52px; margin-bottom: 20px; }
  .ind-point__ic svg { width: 24px; height: 24px; }
  .ind-point__bd { padding-top: 0; }
  .ind-point__num { margin-bottom: 10px; }
  .ind-point__h3 { margin-bottom: 16px; }
  .ind-point__tx { font-size: 15px; line-height: 2.15; }
}

/* 制作実績(600×600の正方形) */
.ind-works { margin-top: 8px; }
.ind-works__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin: 0 0 18px;
  padding-left: 13px;
  border-left: 3px solid var(--accent);
  line-height: 1.6;
}
.ind-works__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ind-works__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
.ind-works__grid--1 { grid-template-columns: repeat(1, 1fr); max-width: 320px; }
.ind-work__img {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ind-work__img img { width: 100%; height: 100%; object-fit: cover; }
.ind-work:hover .ind-work__img {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(27, 37, 54, 0.12);
}
/* 正方形版がまだ img/ に無い実績 */
.ind-work__img--todo {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(45deg, #e9edf3 0 12px, #eef2f7 12px 24px);
  border-style: dashed;
  border-color: #c3ceda;
  color: #8a97a8;
  font-size: 11px;
  text-align: center;
  line-height: 1.8;
  padding: 14px;
}
.ind-work__name {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 12px 0 0;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .ind-works__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ind-works__grid--1 { grid-template-columns: 1fr; max-width: 240px; }
  .ind-work__name { font-size: 12px; margin-top: 9px; }
}

/* 薬剤師会(薬局セクション内のサブブロック) */
.ind-sub {
  margin-top: 64px;
  padding: 46px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.ind-sec--alt .ind-sub { background: #fff; }
.ind-sub__h3 {
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 18px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.ind-sub__tx {
  font-size: 15px;
  line-height: 2.05;
  color: var(--ink-soft);
  margin: 0 0 34px;
  max-width: 46em;
}
.ind-works--sub { margin-bottom: 30px; }
.ind-lp .ind-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-deep);
  border-bottom: 1px solid rgba(43, 82, 136, 0.3);
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ind-lp .ind-link:hover { gap: 16px; border-bottom-color: var(--accent-deep); }
.ind-link__arw { font-family: var(--en); }
@media (max-width: 767px) {
  .ind-sub { margin-top: 44px; padding: 30px 22px; border-radius: 12px; }
  .ind-sub__tx { font-size: 14px; margin-bottom: 26px; }
  .ind-link { font-size: 14px; }
}

/* 実績が少ないことをそのまま書く注記(介護施設) */
.ind-note {
  margin-top: 44px;
  padding: 32px 34px;
  background: #f2f7fc;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.ind-note__head {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.65;
}
.ind-note p {
  font-size: 15px;
  line-height: 2.05;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 767px) {
  .ind-note { margin-top: 32px; padding: 24px 20px; }
  .ind-note p { font-size: 14px; }
}

/* ============================================================
   福井バナー
   ============================================================ */
.ind-fukui {
  padding: 0 24px;
  /* 追従インデックスから #fukui に飛んだときにヘッダーとインデックスの
     下に潜り込まないようにする。値は .ind-sec と揃えること。 */
  scroll-margin-top: calc(var(--ind-head) + var(--ind-navh));
}
.ind-lp .ind-fukui__box {
  position: relative;
  overflow: hidden;
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 54px 56px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(100% 140% at 100% 0%, rgba(63, 143, 208, 0.45) 0%, rgba(63, 143, 208, 0) 60%),
    linear-gradient(140deg, #243b65 0%, #1b2c4d 100%);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ind-lp .ind-fukui__box:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(27, 37, 54, 0.22);
}
.ind-fukui__en {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent-soft);
  margin: 0 0 10px;
}
.ind-fukui__h2 {
  font-size: clamp(23px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
  line-height: 1.4;
}
.ind-fukui__lead {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  max-width: 40em;
}
.ind-fukui__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.35s var(--ease), gap 0.35s var(--ease);
}
.ind-lp .ind-fukui__box:hover .ind-fukui__btn {
  background: rgba(255, 255, 255, 0.12);
  gap: 18px;
}
.ind-fukui__arw { font-family: var(--en); }
@media (max-width: 900px) {
  .ind-lp .ind-fukui__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    padding: 38px 26px;
  }
  .ind-fukui__btn { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  .ind-fukui { padding: 0 20px; scroll-margin-top: 62px; }
  .ind-fukui__lead { font-size: 14px; }
}

/* ============================================================
   全国対応
   ============================================================ */
.ind-nation {
  padding: 104px 24px 116px;
  background: var(--paper);
}
.ind-nation .ind-head__label { margin-bottom: 18px; }
.ind-nation__body { margin-top: 30px; max-width: 44em; }
.ind-nation__body p {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 2.15;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.ind-nation__body p:last-child { margin-bottom: 0; }
@media (max-width: 767px) {
  .ind-nation { padding: 64px 20px 72px; }
  .ind-nation__body p { font-size: 14px; line-height: 2; }
}
