/* =========================================
     ベース・リセット
     ========================================= */
  *,
  *::before,
  *::after { box-sizing: border-box; }

  :root {
    --sky-image: url("images/img01.jpg");
    /* カラー：白ベース＋淡い黄色・クリーム・ベージュで温かみ */
    --color-bg: #ffffff;          /* ほんのり温かい白 */
    --color-bg-soft: #fafaf7;     /* クリーム */
    --color-text: #000000;        /* 濃い黒 */
    --color-text-soft: #000000;   /* 濃い黒（旧：濃いグレーブラウン） */
    --color-text-mute: #000000;   /* 濃い黒（旧：淡いグレー） */
    --color-line: #ece7d8;        /* 淡いベージュライン */
    --color-accent: #f3e58a;      /* 淡い黄色（メイン装飾） */
    --color-accent-soft: #faf2bf; /* さらに淡い黄色 */
    --color-accent-pale: #fef9d9; /* 極淡黄色 */
    --color-warm: #fce8d8;        /* 淡いピーチ（アクセント） */
    --color-warm-pale: #fdf3e8;   /* 極淡オレンジ */

    /* フォント：すべて明朝体（Noto Serif JP） */
    --font-gothic: "Zen Kaku Gothic New", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;

    /* レイアウト */
    --sidebar-width: 280px;
    --header-height: 64px;
  }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    font-family: var(--font-gothic);
    font-weight: 700;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.95;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
  }
  a:hover { opacity: .7; }

  /* 本文中のテキストリンクは黒字＋下線で統一（フッター調） */
  .ew-body a,
  .ew-bio a,
  .ew-recruit a,
  .ew-post-content a,
  .ew-intro-link a {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: var(--color-text);
    text-underline-offset: 3px;
  }
  .ew-body a:hover,
  .ew-bio a:hover,
  .ew-recruit a:hover,
  .ew-post-content a:hover,
  .ew-intro-link a:hover {
    opacity: .7;
  }

  img { max-width: 100%; height: auto; display: block; }

  /* スクロール時のアンカー位置調整 */
  [id] { scroll-margin-top: 100px; }

  /* =========================================
     ヘッダー
     ========================================= */
  .ew-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-line);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
  }

  .ew-site-header__logo {
    font-family: var(--font-gothic);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--color-text);
    font-weight: 500;
  }

  .ew-site-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  /* 言語切り替え（仮表示） */
  .lang-switch {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--color-text-soft);
  }
  .lang-switch a {
    padding: 4px 6px;
    border-bottom: 1px solid transparent;
  }
  .lang-switch a:hover { border-bottom-color: var(--color-accent); }
  .lang-switch .sep { color: var(--color-text-mute); margin: 0 4px; }

  /* ハンバーガーボタン（PC・スマホ共通） */
  .ew-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    font-family: var(--font-gothic);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--color-text);
  }
  .ew-menu-toggle__icon {
    position: relative;
    width: 24px;
    height: 18px;
    flex-shrink: 0;
  }
  .ew-menu-toggle__icon span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--color-text);
    transition: transform .3s ease, opacity .3s ease, top .3s ease;
  }
  .ew-menu-toggle__icon span:nth-child(1) { top: 0; }
  .ew-menu-toggle__icon span:nth-child(2) { top: 8px; }
  .ew-menu-toggle__icon span:nth-child(3) { top: 16px; }
  .ew-menu-toggle[aria-expanded="true"] .ew-menu-toggle__icon span:nth-child(1) { top: 8px; transform: rotate(45deg); }
  .ew-menu-toggle[aria-expanded="true"] .ew-menu-toggle__icon span:nth-child(2) { opacity: 0; }
  .ew-menu-toggle[aria-expanded="true"] .ew-menu-toggle__icon span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

  /* =========================================
     サイドバー（ハンバーガー開閉式）
     ========================================= */
  .ew-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--color-bg);
    border-right: 1px solid var(--color-line);
    padding: calc(var(--header-height) + 20px) 28px 32px;
    overflow-y: auto;
    z-index: 90;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0);
  }
  .ew-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
  }

  .sidebar__title {
    font-family: var(--font-gothic);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--color-text);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line);
    font-weight: 500;
  }

  .ew-sidebar__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .ew-sidebar__nav li { margin: 0; }
  .ew-sidebar__nav a {
    display: block;
    padding: 12px 8px 12px 14px;
    font-family: var(--font-gothic);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--color-text);
    border-left: 2px solid transparent;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
  }
  .ew-sidebar__nav a:hover,
  .ew-sidebar__nav a:focus-visible {
    color: var(--color-text);
    border-left-color: var(--color-text);
    background: #f5f5f3;
    opacity: 1;
  }

  .ew-sidebar__group {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px dashed var(--color-line);
  }
  .ew-ew-sidebar__group-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--color-text-soft);
    margin: 0 0 6px 14px;
    font-weight: 500;
  }

  /* オーバーレイ */
  .ew-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .ew-sidebar-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* =========================================
     メインコンテンツ枠
     ========================================= */
  .main-wrap {
    padding-top: var(--header-height);
    min-height: 100vh;
  }

  /* =========================================
     ヒーローエリア（左：縦書きコンセプト / 右：自然画像3枚）
     ========================================= */
  .hero {
    position: relative;
    padding: 60px 24px 80px;
    max-width: 1120px;
    margin: 0 auto;
  }
  .hero__title {
    font-family: var(--font-gothic);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    letter-spacing: 0.1em;
    margin: 0 0 12px;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
  }
  .hero__subtitle {
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 0.98rem;
    letter-spacing: 0.15em;
    color: var(--color-text);
    margin: 0 0 50px;
    font-weight: 500;
  }

  /* メインビジュアル：2カラム（左：コンセプト言葉、右：画像3枚）
     画像側を控えめにして、左テキストとのバランスを取る */
  .hero-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(20px, 4vw, 60px);
    align-items: stretch;
    max-width: 880px;
    margin: 0 auto;
    min-height: clamp(360px, 48vw, 480px);
  }

  /* 左カラム：縦書き風コンセプト言葉群 */
  .hero-concept {
    position: relative;
    padding-left: clamp(20px, 4vw, 36px);
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  /* 左の縦罫線：コンセプト言葉群の長さに合わせる */
  .hero-concept::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 88px;
    width: 1.5px;
    background: var(--color-text);
  }

  /* 5つの言葉が縦に並ぶ */
  .concept-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 0.8vw, 10px);
  }

  /* 各言葉：漢字も送り仮名も同じサイズで揃える */
  .concept-word {
    font-family: var(--font-gothic);
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    letter-spacing: 0.15em;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.4;
    padding: 4px 8px 4px 0;
    position: relative;
    display: inline-flex;
    align-items: baseline;
    transition: transform .35s ease, color .25s ease;
  }
  .concept-word__main,
  .concept-word__sub {
    font-size: 1em;
    letter-spacing: 0.15em;
    color: var(--color-text);
    font-weight: 500;
  }

  /* リンク化された4つはホバー演出 */
  a.concept-word {
    cursor: pointer;
    outline: none;
    text-decoration: none;
  }
  a.concept-word:hover,
  a.concept-word:focus-visible {
    transform: translateX(6px);
    opacity: 1;
  }
  a.concept-word::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--color-text);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s ease;
  }
  a.concept-word:hover::after,
  a.concept-word:focus-visible::after {
    transform: scaleX(1);
  }
  a.concept-word:focus-visible {
    outline: 2px dashed var(--color-accent);
    outline-offset: 6px;
    border-radius: 4px;
  }

  /* 左下のキャッチコピー */
  .hero-catch {
    font-family: var(--font-gothic);
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    line-height: 2;
    letter-spacing: 0.08em;
    color: var(--color-text);
    font-weight: 500;
    margin: 0;
  }

  /* 右カラム：3枚の自然画像が縦に積み重なる（コンパクト） */
  .hero-images {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0;
    overflow: hidden;
    max-width: 280px;
    width: 100%;
    justify-self: end;
    align-self: stretch;
  }
  .hero-images__item {
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
  }
  .hero-images__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* （旧コンセプト円配置を上書きする為のリセット） */
  .word--tomoni, .word--warau, .word--tanoshi, .word--hazumu, .word--iyasu {
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }

  /* =========================================
     タイトル直下の本文（説明文）
     ========================================= */
  .intro-text {
    text-align: center;
    padding: 40px 24px 80px;
    font-family: var(--font-gothic);
    font-size: 1.05rem;
    line-height: 2.4;
    color: var(--color-text);
    max-width: 720px;
    margin: 0 auto;
    font-weight: 500;
  }
  .intro-text p { margin: 0; }

  /* タグ風のカテゴリチップ */
  .category-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    max-width: 880px;
    margin: 40px auto 0;
    padding: 0 24px;
  }
  .category-chips a {
    display: inline-block;
    padding: 10px 22px;
    background: var(--color-bg);
    border-radius: 999px;
    font-family: var(--font-gothic);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-text);
    font-weight: 500;
    border: 1px solid var(--color-text);
    transition: background .25s ease, transform .25s ease, color .25s ease;
  }
  .category-chips a:hover {
    background: var(--color-text);
    color: var(--color-bg);
    transform: translateY(-2px);
    opacity: 1;
  }

  /* =========================================
     最新情報・お知らせ
     ========================================= */
  .news-section {
    padding: 100px 24px 60px;
    max-width: 760px;
    margin: 0 auto;
  }
  .news-section__heading {
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 1.35rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    margin: 0 0 40px;
    color: var(--color-text);
  }
  .news-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 560px;
  }
  .news-list li {
    margin: 0;
    border-bottom: 1px dashed var(--color-line);
  }
  .news-list li:last-child { border-bottom: none; }
  .news-list a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 16px 8px;
    font-family: var(--font-gothic);
    font-size: 0.98rem;
    letter-spacing: 0.06em;
    color: var(--color-text);
    transition: background .25s ease;
  }
  .news-list a:hover {
    background: #f5f5f3;
    opacity: 1;
  }
  .news-list time {
    flex-shrink: 0;
    color: var(--color-text);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    min-width: 110px;
  }
  .news-list__title {
    text-decoration: underline;
    text-decoration-color: var(--color-text-mute);
    text-underline-offset: 4px;
  }
  .news-section__more {
    text-align: center;
    margin-top: 30px;
  }
  .news-section__more a {
    display: inline-block;
    padding: 6px 18px;
    font-family: var(--font-gothic);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--color-text-soft);
    border-bottom: 1px solid var(--color-text-mute);
  }
  .news-section__more a:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
    opacity: 1;
  }

  /* =========================================
     こんな空間を目指します
     ========================================= */
  .aim-section {
    text-align: center;
    padding: 80px 24px 80px;
  }
  .section-heading {
    font-family: var(--font-gothic);
    font-size: 1.35rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    margin: 0 0 40px;
    color: var(--color-text);
  }
  .aim-list {
    font-family: var(--font-gothic);
    font-size: 1.05rem;
    line-height: 2.6;
    color: var(--color-text);
    margin: 0 0 40px;
    font-weight: 500;
  }
  .aim-message {
    font-family: var(--font-gothic);
    font-size: 1.12rem;
    line-height: 2.4;
    letter-spacing: 0.15em;
    color: var(--color-text);
    font-weight: 500;
  }
  .aim-message .accent {
    font-size: 1.2rem;
    letter-spacing: 0.25em;
    font-weight: 500;
  }

  /* =========================================
     ESSENTIAL WORKSの由来
     ========================================= */
  .origin-section {
    padding: 80px 24px;
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
  }
  .origin-section__head {
    grid-column: 1 / -1;
    font-family: var(--font-gothic);
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    margin: 0 0 24px;
    font-weight: 500;
    color: var(--color-text);
  }
  .origin-section__body {
    font-family: var(--font-gothic);
    font-size: 1.02rem;
    line-height: 2.4;
    color: var(--color-text);
    font-weight: 500;
  }
  .origin-section__body p { margin: 0; }

  /* トーラス模様（金色・紫の幾何学装飾） */
  .torus-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    object-fit: contain;
  }

  /* =========================================
     怪我も病気も勲章セクション
     ========================================= */
  .badge-section {
    text-align: center;
    padding: 80px 24px 60px;
    background: var(--color-bg);
  }
  .badge-section__title {
    font-family: var(--font-gothic);
    font-size: clamp(1.4rem, 2.8vw, 1.7rem);
    letter-spacing: 0.35em;
    margin: 0 0 24px;
    font-weight: 500;
    color: var(--color-text);
  }
  .badge-section__title span { display: inline-block; margin: 0 12px; }
  .badge-section__sub {
    font-family: var(--font-gothic);
    font-size: 1.08rem;
    letter-spacing: 0.18em;
    color: var(--color-text);
    font-weight: 500;
  }

  /* =========================================
     下部コンセプトセクション
     ========================================= */
  .actions-section {
    padding: 60px 24px 100px;
    background: var(--color-bg);
  }
  .actions-section__lead {
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 0.85rem;
    color: var(--color-text-soft);
    margin: 0 auto 40px;
    max-width: 560px;
    line-height: 2;
  }
  .actions-grid {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 48px;
  }

  /* カードらしくならないよう、ホバー演出は付けない（クリック誘導と誤認させないため）。
     枠線も薄めで、余白で区切る印象に。 */
  .action-item {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 20px;
    align-items: center;
    padding: 24px 8px;
    background: transparent;
    border-bottom: 1px dashed var(--color-line);
  }
  /* 偶数列の見栄え調整（PC時のグリッド境界） */
  .action-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .action-item__title {
    font-family: var(--font-gothic);
    font-size: 1.45rem;
    letter-spacing: 0.15em;
    margin: 0 0 10px;
    font-weight: 500;
    color: var(--color-text);
  }
  .action-item__desc {
    font-family: var(--font-gothic);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text);
    margin: 0 0 8px;
    font-weight: 500;
  }
  .action-item__note {
    font-family: var(--font-gothic);
    font-size: 0.88rem;
    color: var(--color-text-soft);
    font-weight: 500;
  }

  /* ピクトグラム画像エリア */
  .action-item__icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  /* 背景は白を維持（柔らかい円の演出は削除） */
  .action-item__icon::before {
    content: none;
  }
  /* ピクトグラム本体：
     - 透過PNG（背景透過＋黒い絵柄）
     - filterで黒(#000) → 濃いグレーブラウン(#6e6a62)に変換
       透明部分はそのまま透明、黒部分のみが指定色に変化する
  */
  .action-item__icon-img {
    position: relative;
    z-index: 1;
    width: 78%;
    height: 78%;
    object-fit: contain;
    /* ピクトグラムの黒を文字色(#1a1816)相当の濃い黒へ統一。
       brightness(0)で完全に黒化したあと、ごくわずかに明るさを上げて#1a1816に揃える。 */
    filter: brightness(0) saturate(100%) brightness(0.12);
  }

  /* お問い合わせ導線 */
  .contact-cta {
    text-align: center;
    padding: 60px 24px 80px;
  }
  .contact-cta a {
    display: inline-block;
    padding: 16px 44px;
    border: 1.5px solid var(--color-text);
    border-radius: 999px;
    font-family: var(--font-gothic);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--color-text);
    background: var(--color-bg);
    transition: background .3s ease, color .3s ease;
  }
  .contact-cta a:hover {
    background: var(--color-text);
    color: var(--color-bg);
    opacity: 1;
  }

  /* =========================================
     フッター
     ========================================= */
  .ew-site-footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-line);
    padding: 60px 24px 40px;
  }
  .ew-site-footer__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
  }
  .ew-site-footer__brand {
    font-family: var(--font-gothic);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
    font-weight: 500;
    color: var(--color-text);
  }
  .ew-site-footer__contact {
    font-family: var(--font-gothic);
    font-size: 0.95rem;
    color: var(--color-text-soft);
  }
  .ew-site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
  }
  .ew-site-footer__nav a {
    display: block;
    padding: 6px 0;
    font-family: var(--font-gothic);
    font-size: 0.92rem;
    color: var(--color-text);
  }
  .ew-site-footer__notice {
    max-width: 1000px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--color-line);
    text-align: center;
    font-family: var(--font-gothic);
    font-size: 0.8rem;
    color: var(--color-text-soft);
    letter-spacing: 0.08em;
  }

  /* =========================================
     レスポンシブ
     ========================================= */
  @media (max-width: 1024px) {
    .actions-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }

  @media (max-width: 768px) {
    /* ヒーロー（スマホ：A案＝横並びを維持してそのまま縮小） */
    .hero {
      padding: 40px 16px 60px;
    }
    .hero__title {
      letter-spacing: 0.08em;
    }
    .hero__subtitle {
      font-size: 0.78rem;
      margin-bottom: 30px;
    }
    .hero-main {
      gap: 14px;
      min-height: 360px;
    }
    .hero-concept {
      padding-left: 14px;
    }
    .hero-concept::before {
      bottom: 70px;
    }
    .concept-stack {
      gap: 6px;
    }
    .hero-catch {
      font-size: 0.78rem;
      line-height: 1.9;
    }

    .ew-menu-toggle { font-size: 0; gap: 0; }
    .ew-menu-toggle__icon { width: 22px; height: 16px; }
    .ew-menu-toggle__icon span:nth-child(2) { top: 7px; }
    .ew-menu-toggle__icon span:nth-child(3) { top: 14px; }
    .ew-menu-toggle[aria-expanded="true"] .ew-menu-toggle__icon span:nth-child(1) { top: 7px; }
    .ew-menu-toggle[aria-expanded="true"] .ew-menu-toggle__icon span:nth-child(3) { top: 7px; }

    .ew-sidebar {
      width: 85%;
      max-width: 320px;
    }

    .lang-switch { font-size: 0.72rem; }

    .news-list a {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }
    .news-list time { min-width: 0; }

    .actions-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .action-item {
      grid-template-columns: 1fr 90px;
      padding: 20px 4px;
    }
    /* スマホ：1カラム表示時の境界線調整 */
    .action-item:nth-last-child(-n+2) {
      border-bottom: 1px dashed var(--color-line);
    }
    .action-item:last-child {
      border-bottom: none;
    }
    .action-item__icon { width: 90px; height: 90px; }

    .origin-section {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .origin-section__body {
      text-align: left;
    }
    .torus-image { margin: 0 auto; width: 160px; height: 160px; }

    .ew-site-footer__inner {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .ew-site-footer__nav { grid-template-columns: 1fr 1fr; }

    .badge-section__title span { display: inline-block; margin: 0 6px; }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 30px 14px 50px;
    }
    .concept-word {
      font-size: 1.6rem;
    }
    .concept-word__sub {
      font-size: 0.62em;
    }
    .hero-concept::before {
      bottom: 60px;
    }
    .hero-catch {
      font-size: 0.72rem;
    }
    .hero__title { letter-spacing: 0.15em; }
    .category-chips a { padding: 8px 16px; font-size: 0.72rem; }
    .badge-section__title { letter-spacing: 0.2em; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
    }
    html { scroll-behavior: auto; }
  }

  /* =========================================
     自然画像演出（葉・空・木）
     ========================================= */

  /* ヒーロー直下：葉の帯（フェード合成） */
  .nature-band {
    position: relative;
    width: 100%;
    height: clamp(180px, 26vw, 280px);
    overflow: hidden;
    margin: 0;
  }
  .nature-band__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* 上下を白にフェードして馴染ませる */
  .nature-band::before,
  .nature-band::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    pointer-events: none;
    z-index: 2;
  }
  .nature-band::before {
    top: 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
  }
  .nature-band::after {
    bottom: 0;
    background: linear-gradient(0deg, var(--color-bg) 0%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
  }
  /* 帯の上に重ねる詩的なテキスト */
  .nature-band__text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-align: center;
    font-family: var(--font-gothic);
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    letter-spacing: 0.3em;
    color: var(--color-text);
    font-weight: 500;
    line-height: 2.4;
    padding: 0 20px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.95), 0 0 24px rgba(255, 255, 255, 0.8);
  }

  /* ヒーローエリア自体に淡い空の背景（極めて控えめに） */
  .hero {
    position: relative;
  }
  .hero__sky-bg {
    position: absolute;
    inset: 0;
    background-image: var(--sky-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    /* 端を白にフェード */
    -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, rgba(0,0,0,0.7) 40%, transparent 80%);
    mask-image: radial-gradient(ellipse at center top, black 0%, rgba(0,0,0,0.7) 40%, transparent 80%);
  }
  .hero > *:not(.hero__sky-bg) {
    position: relative;
    z-index: 1;
  }

  /* 由来セクションの巨木画像 */
  .origin-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(74, 70, 62, 0.15);
  }

  /* スマホ対応 */
  @media (max-width: 768px) {
    .nature-band {
      height: 200px;
    }
    .origin-image {
      width: 140px;
      height: 140px;
      margin: 0 auto;
    }
    .nature-band__text {
      font-size: 0.8rem;
      letter-spacing: 0.25em;
    }
  }

  /* =========================================
     アーティスト向け導線（小さなブロック）
     ========================================= */
  .for-artists {
    max-width: 760px;
    margin: 80px auto 0;
    padding: 40px 32px;
    text-align: center;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    background: var(--color-bg);
  }
  .for-artists__heading {
    font-family: var(--font-gothic);
    font-size: 1.15rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 12px;
  }
  .for-artists__lead {
    font-family: var(--font-gothic);
    font-size: 0.98rem;
    color: var(--color-text);
    line-height: 2;
    margin: 0 0 20px;
    font-weight: 500;
  }
  .for-artists__link {
    display: inline-block;
    font-family: var(--font-gothic);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-text);
    transition: opacity .25s ease;
  }
  .for-artists__link::after {
    content: " →";
    transition: transform .25s ease;
    display: inline-block;
  }
  .for-artists__link:hover {
    opacity: 0.7;
  }
  .for-artists__link:hover::after {
    transform: translateX(4px);
  }

  /* アコーディオン化したコンセプト語 */
  .action-item--toggle .action-item__title{
    background:none;border:none;cursor:pointer;font:inherit;color:inherit;
    width:100%;text-align:inherit;padding:0;position:relative;
  }
  .action-item--toggle .action-item__title::after{
    content:"＋";margin-inline-start:.5em;font-size:.7em;color:var(--color-text-mute);
    transition:transform .2s;
  }
  .action-item--toggle .action-item__title[aria-expanded="true"]::after{content:"−";}
  .action-item__detail{
    overflow:hidden;max-height:0;opacity:0;
    transition:max-height .3s ease,opacity .3s ease,margin .3s ease;margin-top:0;
  }
  .action-item__detail.is-open{max-height:320px;opacity:1;margin-top:8px;}
  .action-item__en{
    font-size:.78rem;line-height:1.7;color:var(--color-text-mute);
    margin-top:6px;font-style:italic;
  }


  /* トップ内の対象者カード（折りたたみ） */
  .audience-section{max-width:880px;margin:48px auto;padding:0 24px;}
  .audience-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
  .audience-link{
    display:flex;align-items:center;justify-content:space-between;gap:12px;
    border:1.5px solid var(--color-text);border-radius:8px;
    padding:20px 24px;text-decoration:none;
    background:var(--color-bg);transition:background .25s ease,color .25s ease;
  }
  .audience-link:hover{background:var(--color-text);opacity:1;}
  .audience-link:hover .audience-link__title,
  .audience-link:hover .audience-link__arrow{color:var(--color-bg);}
  .audience-link__title{
    font-family:var(--font-gothic);font-weight:500;font-size:1rem;
    color:var(--color-text);letter-spacing:.04em;line-height:1.5;
  }
  .audience-link__arrow{font-size:1.1rem;color:var(--color-text);flex:0 0 auto;}
  @media(max-width:680px){.audience-grid{grid-template-columns:1fr;}}

/* === サイドバー表示の確実化（Cocoon競合対策・優先上書き） === */
.ew-sidebar{
  z-index: 99999 !important;
  background: #ffffff !important;
}
.ew-sidebar.is-open{
  transform: translateX(0) !important;
}
#sidebarOverlay, .ew-sidebar-overlay{
  z-index: 99990 !important;
}
.ew-site-header{
  z-index: 100000 !important;
}

  .aim-essence{
    font-family:var(--font-gothic);
    font-size:1.7rem;
    letter-spacing:.35em;
    font-weight:500;
    color:var(--color-text);
    margin:36px 0 0;
    text-align:center;
  }
  .recruit-list li:last-child{border-bottom:none;}
  .recruit-list li:last-child{border-bottom:none;}

  /* こんな方々を募っています（トップ） */
  .recruit-section{
    padding:20px 24px 80px !important;
    max-width:760px;
    margin:0 auto !important;
    text-align:center !important;
  }
  .recruit-section .section-heading{
    text-align:center !important;
  }
  .recruit-list{
    list-style:none !important;
    margin:0 auto !important;
    padding:0 !important;
    max-width:620px;
    font-family:var(--font-gothic);
    font-weight:500;
    text-align:left !important;
  }
  .recruit-list li{
    font-size:1.02rem;
    line-height:2;
    color:var(--color-text);
    padding:14px 0;
    border-bottom:1px dashed var(--color-line);
    text-align:left !important;
  }
  .recruit-list li:last-child{border-bottom:none;}
/* =========================================
   全テキストを太字に（一括上書き）
   各ページのインライン<style>の font-weight より
   優先させるため !important を付与
   ========================================= */
  body,
  body * {
    font-weight: 700 !important;
  }
/* ==========================================================
   倉内七さんの名前：日本語表示 / 英語表示（GTranslate）切り替え
   GTranslateが翻訳を有効にすると <html> タグに
   translated-ltr / translated-rtl が自動付与される仕組みを利用。
   ========================================================== */

/* デフォルト（日本語）：漢字表記のみ表示 */
.ew-lang-en {
  display: none;
}
.ew-lang-ja {
  display: inline;
}

/* GTranslateで翻訳が有効な場合：ローマ字表記のみ表示 */
html.translated-ltr .ew-lang-ja,
html.translated-rtl .ew-lang-ja {
  display: none;
}
html.translated-ltr .ew-lang-en,
html.translated-rtl .ew-lang-en {
  display: inline;
}
/* ==========================================================
   トップページ：日本語 / 英語固定表記の切り替え（GTranslate）
   ・右側コンセプト（共に/笑う/楽しむ/弾む/癒す ⇄ together./Laugh/enjoy/excited/heal）
   ・怪我も病気も勲章 ⇄ injuries and illnesses are Gold Medal ！
   上の .ew-lang-ja / .ew-lang-en は inline 前提のため、
   flex レイアウトが必要なコンセプト縦並びだけ表示形式を上書きする。
   ========================================================== */

/* コンセプト縦並び：日本語版は flex、英語版は既定で非表示 */
.concept-stack.ew-lang-ja {
  display: flex;
}
.concept-stack.ew-lang-en {
  display: none;
}

/* 翻訳が有効なとき：日本語版を隠し、英語版を flex で表示 */
html.translated-ltr .concept-stack.ew-lang-ja,
html.translated-rtl .concept-stack.ew-lang-ja {
  display: none;
}
html.translated-ltr .concept-stack.ew-lang-en,
html.translated-rtl .concept-stack.ew-lang-en {
  display: flex;
}

/* 英語コンセプトは送り仮名が無いぶん送り仮名スパンの余白が出ないよう整える */
.concept-stack.ew-lang-en .concept-word {
  letter-spacing: 0.04em;
}