

    :root{
      --bg:#0b0b0c; --card:#111113; --ink:#e9e9ea; --muted:#8b8b90; --accent:#c5a253; --radius:18px; --max:1080px; --shadow:0 10px 30px rgba(0,0,0,.25)
    }
    html,body{height:100%}
    body{margin:0; font-family:'Noto Sans JP', system-ui, -apple-system, Segoe UI, Roboto, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif; background:#fff; color:#222; line-height:1.65}

    /* Layout */
    .wrap{max-width:var(--max); margin:auto; padding:0 20px}
    header{position:sticky; top:0; background:#fff; border-bottom:1px solid #eee; z-index:50}
    .nav{display:flex; align-items:center; justify-content:space-between; min-height:64px; gap:12px}
    .brand{display:flex; gap:10px; align-items:center; font-weight:800; letter-spacing:.04em}
    .brand-badge{width:34px; height:34px; border-radius:10px; background:linear-gradient(135deg,#1b1b1d 0%,#0b0b0c 60%,#1a1a1a 100%); position:relative; box-shadow:var(--shadow)}
    .brand-badge:after{content:""; position:absolute; inset:1px; border-radius:9px; background:radial-gradient(120% 120% at 0% 100%,rgba(197,162,83,.45),transparent 40%), linear-gradient(180deg,#151516,#0b0b0c); border:1px solid rgba(197,162,83,.45)}
    .links{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
    .links a{color:#111; text-decoration:none; font-weight:600; padding:10px 12px; border-radius:10px}
    .btn{display:inline-flex; align-items:center; gap:8px; padding:12px 18px; border-radius:12px; background:var(--bg); color:#fff; text-decoration:none; border:1px solid rgba(255,255,255,.06); box-shadow:var(--shadow); min-height:48px}
    .btn:hover{transform:translateY(-1px)}
    .btn-outline{background:#fff; color:#111; border:1px solid #ddd}

    /* Hero */
    .hero{background:linear-gradient(180deg,#0b0b0c,#121213); color:#fff; padding:72px 0 64px}
    .hero .wrap{display:grid; grid-template-columns:1.15fr .85fr; gap:24px; align-items:center}
    .kicker{color:var(--accent); font-weight:800; letter-spacing:.12em; text-transform:uppercase; font-size:.85rem}
    .hero h1{margin:.3rem 0 1rem; font-size:clamp(28px,5vw,44px); line-height:1.15}
    .lead{color:#d8d8db; font-size:clamp(15px,2.3vw,18px)}
    .cta-row{display:flex; gap:12px; margin-top:22px; flex-wrap:wrap}
    .glass{background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03)); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); padding:20px}
    .hero-card{display:grid; gap:10px}
    .hero-list{display:grid; gap:8px; color:#cfcfd4; font-size:.95rem}
    .hero-list li{list-style:none; display:flex; gap:10px; align-items:flex-start}
    .dot{width:8px; height:8px; border-radius:50%; background:var(--accent); margin-top:.5em}

    /* Sections */
    section{padding:72px 0}
    .sec-title{font-size:clamp(22px,3.6vw,32px); margin:0 0 14px}
    .muted{color:#666}
    .grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
    .card{background:#fff; border:1px solid #eee; border-radius:var(--radius); padding:22px; box-shadow:0 8px 20px rgba(0,0,0,.04)}
    .card h3{margin:0 0 8px; font-size:1.1rem}

    .plan{border:1.2px solid #e8e8e8; border-radius:22px; padding:26px; background:#fff; box-shadow:0 10px 24px rgba(0,0,0,.05)}
    .plan.badge{position:relative}
    .plan.badge:before{content:"推奨"; position:absolute; top:-12px; right:18px; background:var(--accent); color:#111; font-weight:800; border-radius:999px; padding:6px 10px; font-size:.78rem; box-shadow:var(--shadow)}
    .plan h3{margin:0 0 6px; font-size:1.25rem}
    .plan .desc{color:#666; margin:0 0 14px}
    .ul{display:grid; gap:10px; margin:12px 0 16px}
    .ul li{list-style:none; display:flex; gap:10px}
    .check{width:18px; height:18px; border-radius:6px; background:var(--accent); display:inline-block; margin-top:3px}
    .price{font-weight:900; font-size:1.6rem; margin:12px 0}

    .flow{display:grid; grid-template-columns:repeat(6,1fr); gap:10px}
    .step{background:#fff; border:1px solid #eee; border-radius:16px; padding:14px; text-align:center}
    .step small{display:block; color:#888}

    .band{background:#121213; color:#fff; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
    .band .cols{display:grid; grid-template-columns:1.2fr .8fr; gap:20px}

    .faq{display:grid; grid-template-columns:1fr; gap:12px}
    .faq-item{border:1px solid #eee; border-radius:14px; padding:16px; background:#fff}
    .faq-item summary{font-weight:700; cursor:pointer}

    footer{background:#0b0b0c; color:#c9c9ce; padding:40px 0; font-size:.95rem}
    footer a{color:#e8e8ea; text-decoration:none}

    /* --- Mobile tweaks --- */
    @media (max-width: 900px){
      .hero .wrap{grid-template-columns:1fr}
      .grid-3{grid-template-columns:1fr}
      .flow{grid-template-columns:repeat(3,1fr)}
      .band .cols{grid-template-columns:1fr}
      header .nav{min-height:unset; padding:8px 0; gap:10px; flex-wrap:wrap}
      .links{width:100%}
      .links a{flex:1 1 calc(50% - 6px); text-align:center; border:1px solid #eee}
      .cta-row .btn{flex:1 1 100%; justify-content:center}
      .btn, input, textarea, button{min-height:48px}
    }
    @media (max-width: 600px){
      .wrap{padding:0 14px}
      section{padding:56px 0}
      .hero{padding:56px 0 48px}
      .sec-title{line-height:1.2}
      .price{font-size:1.35rem}
      .flow{grid-template-columns:repeat(2,1fr)}
      .plan{padding:20px}
      .card{padding:18px}
      .btn{padding:12px 14px}
      .links a{flex:1 1 100%}
    }
	  
	  /* --- 暗背景セクション内の文字色調整 --- */
.band .plan {
  background: transparent; /* 背景は暗色のまま */
  color: #fff; /* 全体文字を白に */
  border-color: rgba(255,255,255,0.2);
}

.band .plan h3,
.band .plan .desc,
.band .ul li span {
  color: #fff; /* タイトル・説明・リスト文字を白 */
}

.band .check {
  background: var(--accent); /* チェックアイコンはそのまま強調色 */
}


	  
	  /* 暗背景セクションのビジネス出版枠ボタン＆価格の色修正 */
.band .plan.badge {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.band .plan.badge .price {
  color: #fff;
}

.band .plan.badge .btn {
  background: #fff;
  color: #111;
  border: none;
}
	  
/* 実績：バッジ＆区分 */
.badges{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:6px}
.badge{display:inline-block;padding:4px 8px;border-radius:999px;font-size:.78rem;font-weight:700}
.badge-kdp{background:#eef5ff;color:#144a9b;border:1px solid #cfe0ff}
.badge-trad{background:#fff3d6;color:#6b4a00;border:1px solid #f3d49a}

.works-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.work-card{background:#fff;border:1px solid #eee;border-radius:16px;box-shadow:0 8px 20px rgba(0,0,0,.04);overflow:hidden;display:flex;flex-direction:column}
.work-cover{position:relative;aspect-ratio:3/4;background:#f5f5f7;display:block}
.work-cover img{width:100%;height:100%;object-fit:cover;display:block}
.work-body{padding:14px 14px 16px}
.work-title{font-weight:700;margin:0 0 6px;font-size:1.05rem;line-height:1.35}
.work-meta{color:#666;font-size:.9rem;margin:0 0 10px}
.work-desc{color:#444;font-size:.95rem;margin:0 0 14px}
.work-actions{margin-top:auto;display:flex;gap:10px;flex-wrap:wrap}
.work-actions .btn{min-height:40px;padding:10px 14px;border-radius:10px}

/* 暗背景内に置く場合の調整（必要なら） */
.band .work-card{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.12)}
.band .work-title,.band .work-meta,.band .work-desc{color:#fff}
.band .work-actions .btn{background:#fff;color:#111;border:none}
	  
/* 差別化メッセージの強調ボックス */
.differentiator{
  background:#fffbe8;
  border-left:4px solid var(--accent);
  padding:12px 14px;
  border-radius:12px;
  color:#4a3b00;
  font-weight:600;
  margin:8px 0 16px;
  line-height:1.6;
}
/* 暗背景セクション用（band内に置く場合） */
.band .differentiator{
  background:rgba(255,255,255,.08);
  border-left-color:var(--accent);
  color:#fff;
}	  
	  
	  /* ---- 書影カード：切れない＆縦枠ひろめ ---- */
.work-card{display:flex;flex-direction:column;height:auto}

.work-cover{
  display:flex;
  align-items:center;
  justify-content:center;
  /* 既存の aspect-ratio 指定を無効化 */
  aspect-ratio: unset !important;
  min-height: 260px;          /* 縦枠を拡大（好みに応じて調整） */
  padding: 10px;               /* 余白 */
  background:#fff;
  border-radius:12px;
  overflow:hidden;             /* 角丸を有効に */
}

.work-cover img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit: contain;         /* 上下左右とも切らない */
  object-position: center;
  display:block;
}

/* 画面が広い時はさらに縦枠を大きく */
@media (min-width: 900px){
  .work-cover{ min-height: 520px; }
}

/* グリッドの最小幅も少し広げて見やすく */
.works-grid{ grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); }


/* 募集枠のレスポンシブレイアウト */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 720px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .plans-grid .btn,
  .plans-grid .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .plans-grid .plan {
    padding: 20px;
    border-radius: 18px;
  }
}

/* 暗背景での視認性 */
.band .plan {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.band .plan .desc,
.band .plan .price,
.band .ul li span {
  color: #fff;
}
.band .plan .btn {
  background: #fff;
  color: #111;
  border: none;
}
.band .plan .btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
	  
/* 問い合わせ：代表プロフィールつき */
.contact-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:20px}
@media (max-width: 900px){.contact-grid{grid-template-columns:1fr}}
.profile-card{background:#fff;border:1px solid #eee;border-radius:18px;box-shadow:0 8px 20px rgba(0,0,0,.06);padding:18px;display:grid;grid-template-columns:96px 1fr;gap:14px}
.profile-card img{width:96px;height:96px;border-radius:12px;object-fit:cover;background:#f4f4f6}
.profile-name{font-weight:800;margin:0}
.profile-title{color:#666;margin:.25rem 0 .6rem}
.profile-points{margin:0;padding-left:1.1em;color:#333}
.profile-points li{margin:.25rem 0}
.band .profile-card{background:rgba(255,255,255,.97)}

@media (max-width: 768px) {
  nav.links {
    display: none;
  }
	  
	  

<!-- 余白をさらに詰めたい場合の最小スタイル（必要なら調整） -->

  /* ギャラリー詰めレイアウト（PC/スマホ共通） */
  #works-all .works-grid{ gap:6px; }
  #works-all .work-card{ margin:0; padding:0; background:transparent; border:none; box-shadow:none; }
  #works-all .work-cover{ margin:0; padding:0; line-height:0; }
  #works-all .work-cover img{ display:block; width:100%; height:auto; margin:0; border-radius:3px; }
  #works-all .work-body{ padding:2px 0 0; margin:0; }
  #works-all .work-title{ font-size:.78rem; line-height:1.2; margin:2px 0 0; text-align:center; }

  /* 画面幅で列数調整 */
  @media (min-width:1200px){ #works-all .works-grid{ grid-template-columns:repeat(6,1fr); } }
  @media (min-width:900px) and (max-width:1199.98px){ #works-all .works-grid{ grid-template-columns:repeat(5,1fr); } }
  @media (min-width:600px) and (max-width:899.98px){ #works-all .works-grid{ grid-template-columns:repeat(4,1fr); } }
  @media (max-width:599.98px){ #works-all .works-grid{ grid-template-columns:repeat(3,1fr); gap:4px; } #works-all .work-title{ font-size:.7rem; } }

