/* --------------------------------------------------------------
   style.css
   就労継続支援A型 サービス紹介
   ──────────────────────────────────────────────────────────────
   ❶ ルート変数
   ❷ リセット＋ベース
   ❸ レイアウト（.side／.content）
   ❹ 汎用ユーティリティ（見出し・ボタン・セクション余白など）
   ❺ 各ブロック専用スタイル
   ❻ レスポンシブ（PC ≥ 1024px）
-------------------------------------------------------------- */

/* ❶ ─── CSS カスタムプロパティ（色・共通寸法）────────────── */
:root {
  --c-text:      #464646; /* 基本文字色・ダークグリーン */
  --c-accent:    #E41C74; /* キーカラー・オレンジ */
  --c-bg:        #ffffff; /* 全体背景・白 */
  --c-side:      #F7F7F7; /* サイド帯背景 */
  --c-hero-bg:   #FDEDF3; /* ヒーロー背景・ダークブルー */
  --radius:      8px;     /* 基本角丸 */
  --shadow:      0 2px 4px rgba(0,0,0,0.06);
  --space-xs:    0.5rem;
  --space-s:     1rem;
  --space-m:     1.5rem;
  --space-l:     2rem;
  --space-xl:    3rem;
  --content-w:   375px;
  --fz-base:     16px;
  --fz-s:        0.875rem;
  --fz-l:        1.25rem;
  --fz-xl:       1.5rem;
}

/* ❷ ─── Reset & Base ────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; margin: 0; }
html { font-size: var(--fz-base); }

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 700; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.section { padding: var(--space-xl) var(--space-s); }


/* ❸ ─── レイアウト：左右固定エリア & 中央カラム ────────────── */
.side {
  display: none;
  background: var(--c-side);
}
.content {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  background: var(--c-bg);
}


/* ❹ ─── 汎用コンポーネント ─────────────────────────────── */
/* セクション見出し */
.sec-title {
  margin-bottom: var(--space-m);
  font-size: var(--fz-xl);
  text-align: center;
  color: var(--c-text);
  letter-spacing: 0.04em;
  position: relative;
  display: block;
  padding: 0.5em 1em;
}
.sec-title::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1em);
  height: 1.2em;
  background: var(--c-accent);
  border-radius: 1.2em;
  z-index: -1;
}

/* ボタン共通 */
.btn {
  display: inline-block;
  padding: var(--space-xs) var(--space-l);
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: var(--shadow);
  border: none;
}
.btn:hover { opacity: 0.8; }

/* バリエーション：Primary */
.btn.primary {
  background: var(--c-accent);
  color: #fff;
}

/* ❺ ─── 各ブロック専用スタイル ─────────────────────────── */
/* ハンバーガー（SP用） */
.hamburger {
  width: 40px; height: 40px;
  background:#E41C74;
  border: none;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}
.hamburger span {
  height: 3px;
  background: #fff;
  border-radius: 2px;
  width: 65%;
  margin: 0 auto;
  transition: transform 0.3s, opacity 0.3s;
}

/* ドロワーメニュー */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 70%;
  max-width: 280px;
  background: #fff;
  box-shadow: -4px 0 8px rgba(0,0,0,.08);
  transform: translateX(100%);
  transition: transform .4s ease;
  padding: var(--space-l) var(--space-m);
  z-index: 900;
}
.drawer.open { transform: translateX(0); }
.drawer ul li + li { margin-top: var(--space-s); }
.drawer a { font-weight: 600; }


/* Hero */
.hero {
  text-align: center;
  background: var(--c-hero-bg);
  color: #464646;
}
.hero-illust {
  margin: 0;
}
.hero-illust img {
  width: 100%;
  /* border-radius: var(--radius); */
}
.hero h1 {
  font-size: var(--fz-xl);
  line-height: 1.3;
  margin: var(--space-m) 0;
}
.hero .btn.primary {
  margin-bottom: var(--space-m);
}

/* About (サービス紹介) */
.about .about-text {
  font-size: var(--fz-s);
  text-align: center;
  margin-bottom: var(--space-m);
}
.about .program {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 280px;
  text-align: center;
}
.about .program li {
  background: var(--c-accent);
  color: #fff;
  margin-bottom: var(--space-s);
  padding: var(--space-s);
  border-radius: var(--radius);
}

/* Facility (事業所紹介) */
.features .about-illust {
  margin-bottom: var(--space-m);
}
.features .about-illust img {
  width: 100%;
  border-radius: var(--radius);
}

/* Works (仕事内容) */
.jobs-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  align-items: center;
  margin-top: var(--space-s);
}

.job-card {
  background: var(--c-accent);
  color: #fff;
  padding: var(--space-m);
  border-radius: var(--radius);
  text-align: center;
  width: 100%;
  max-width: 280px;
  box-shadow: var(--shadow);
}

.job-card h3 {
  margin-bottom: var(--space-s);
  font-size: var(--fz-l);
}

.job-card p {
  font-size: var(--fz-s);
  line-height: 1.6;
}

/* Flow (1日の流れ) */
.flow .flow-steps {
  counter-reset: step;
}
.flow .flow-steps li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-m);
  font-size: var(--fz-s);
  line-height: 1.6;
  padding-top: var(--space-xs);
}
.flow .flow-steps .num {
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
}

/* Process (ご利用までの流れ) */
.process .process-step {
  margin-bottom: var(--space-l);
}
.process-step .step-title {
  font-size: var(--fz-l);
  color: var(--c-text);
  margin-bottom: var(--space-xs);
}
.process-step .step-text {
  font-size: var(--fz-s);
  line-height: 1.6;
  color: var(--c-text);
}
.step-title {
  text-align: center;
}

/* Access */
.access .map-wrapper {
  margin-bottom: var(--space-m);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.access .address {
  font-size: var(--fz-s);
  text-align: center;
}

/* Contact */
.contact .lead {
  text-align: center;
  margin-bottom: var(--space-m);
  font-size: var(--fz-s);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.contact-form label {
  font-size: var(--fz-s);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.contact-form input,
.contact-form textarea {
  padding: var(--space-xs);
  border: 1px solid #363636;
  border-radius: var(--radius);
}

/* Footer */
.site-footer {
  background: var(--c-hero-bg);
  color: #464646;
  padding: var(--space-l) var(--space-s);
  text-align: center;
  margin-top: var(--space-m);
}
.site-footer small {
  display: block;
  font-size: var(--fz-s);
}

/* ❻ ─── PC レスポンシブ設定 (min-width: 1024px) ─────────── */
@media (min-width: 1024px) {
  .side {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-l) var(--space-m);
    overflow: hidden;
    position: fixed;
    top: 0; bottom: 0;
    width: calc((100vw - var(--content-w)) / 2);
    z-index: 0;
  }
  .side.left  { left: 0; }
  .side.right { right: 0; }

  .side-inner img{
  max-width: 30%;
}
.side-inner {
  display: flex;
  flex-direction: column;
  align-items: center;    /* 横方向中央揃え */
  text-align: center;     /* テキストも中央揃え */
}

  body { overflow: hidden; }
  .content {
    height: 100vh;
    overflow-y: auto;
  }

  #hamburger { display: none; }

  .pc-nav {
    text-align: center;
  }
  .pc-nav ul {
    display: inline-block;
    list-style: none;
    margin: 0; padding: 0;
    text-align: left;
  }
  .pc-nav li + li { margin-top: var(--space-s); }
  .pc-nav a {
    display: inline-block;
    position: relative;
    padding-left: 1.25em;
    font-size: var(--fz-s);
    font-weight: 600;
    color: var(--c-text);
  }
  .pc-nav a::before {
    content: '';
    position: absolute;
    left: 0; top: 0.6em;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
  }
  .pc-nav a:hover { background: rgba(255,255,255,0.1); }
}
