/* =========================================================
   REQUEST PAGE OVERRIDES
   TOPに影響させないため .page-request スコープ推奨
   body に class="page-request" を付けられるならベスト
   ========================================================= */

/* =========================
   HEADER - TOPと同じに戻す
   ========================= */

/* 念のため request でだけ header を初期化 */
.page-request .site-header{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,42,85,.08);
  box-shadow: 0 6px 20px rgba(11,42,85,.06);
}

.page-request .site-header .header-inner{
  max-width: var(--container);
}

/* =========================
   REQUEST HERO（上の水色グラデ）
   TOP寄せの余白と密度
   ========================= */

.page-request .section-request-intro{
  padding-top: 88px;   /* ヘッダー下に余裕 */
  padding-bottom: 56px;
}

/* タイトルをTOP寄りに強く */
.page-request .request-title{
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 1000;
  letter-spacing: .01em;
}

/* =========================
   「頼めること」カード群
   TOPカード風に寄せる
   ========================= */

/* 全体グリッドを少し詰める */
.page-request .request-services{
  margin-top: 32px;
}

/* 各カード共通（TOPのcardっぽく） */
.page-request .request-card{
  border-radius: 22px;
  border: 2px solid rgba(11,42,85,.18);
  background: #fff;
  box-shadow:
    10px 10px 0 rgba(6,48,85,.18),
    0 18px 44px rgba(11,42,85,.12);
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}

@media (hover:hover){
  .page-request .request-card:hover{
    transform: translateY(-3px);
    box-shadow:
      14px 14px 0 rgba(6,48,85,.22),
      0 28px 60px rgba(11,42,85,.16);
  }
}

/* サムネ（TOP寄せ：切り抜き感） */
.page-request .request-card-media{
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0,0,0,.04);
}

.page-request .request-card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
}

/* テキスト部 */
.page-request .request-card-body{
  padding: 16px 16px 18px;
}

.page-request .request-card-title{
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: .02em;
  margin: 0 0 6px;
}

.page-request .request-card-text{
  font-size: 12px;
  line-height: 1.6;
  color: rgba(11,42,85,.75);
  margin: 0;
}

/* タグ（ANIMATION / DESIGN など）をTOPっぽく */
.page-request .request-card-tag{
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .12em;
  background: rgba(11,42,85,.92);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(6,48,85,.45);
  margin-bottom: 8px;
}

/* =========================
   左：大ビジュアル / 右：説明
   レイアウトをTOP寄せに
   ========================= */

.page-request .request-main-visual{
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    14px 14px 0 rgba(6,48,85,.18),
    0 28px 70px rgba(11,42,85,.18);
}

/* 右説明の余白と読みやすさ */
.page-request .request-main-copy{
  padding-left: 12px;
}

.page-request .request-main-copy h3{
  font-size: 20px;
  font-weight: 1000;
  margin-bottom: 8px;
}

.page-request .request-main-copy p{
  font-size: 13px;
  line-height: 1.8;
  font-weight: 800;
  color: rgba(11,42,85,.8);
}

/* =========================
   SP最適化
   ========================= */

@media (max-width: 680px){
  .page-request .section-request-intro{
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .page-request .request-title{
    font-size: 30px;
  }

  .page-request .request-main-copy{
    padding-left: 0;
  }
}


/* =========================================================
   REQUEST / "頼めること" をTOP寄せにする（このページ限定）
   HTML: .page-request + .section-world を前提
   ========================================================= */

/* セクションの密度をTOP寄せ */
.page-request .section-world{
  padding: 72px 0 84px;
}

/* 見出し周り（TOPと同じ空気） */
.page-request .section-world .section-head{
  margin-bottom: 18px;
}

/* BIGカード：TOPの大カードっぽく */
.page-request .section-world .card-big .card-whole{
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(11,42,85,.14);
  background: rgba(255,255,255,.92);
  box-shadow: 14px 14px 0 rgba(6,48,85,.14), 0 26px 70px rgba(11,42,85,.12);
}

.page-request .section-world .card-big .card-media{
  min-height: 300px;
}

.page-request .section-world .card-big .card-body{
  padding: 28px 30px;
}

/* 4枚カード：TOPのカード寄せ */
.page-request .section-world .top-services .card-whole{
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(11,42,85,.12);
  background: rgba(255,255,255,.94);
  box-shadow: 10px 10px 0 rgba(6,48,85,.14), 0 18px 44px rgba(11,42,85,.10);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

@media (hover:hover){
  .page-request .section-world .top-services .card-whole:hover{
    transform: translateY(-3px);
    border-color: rgba(11,42,85,.20);
    box-shadow: 14px 14px 0 rgba(6,48,85,.18), 0 28px 60px rgba(11,42,85,.14);
  }
}

/* サムネ比率をTOP寄せに統一 */
.page-request .section-world .top-services .card-media{
  aspect-ratio: 16 / 10;
}

.page-request .section-world .top-services .card-media img,
.page-request .section-world .card-big .card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

/* badge（ANIMATION等）をTOP寄せで濃く */
.page-request .section-world .badge-soft{
  background: rgba(11,42,85,.06);
  border-color: rgba(11,42,85,.20);
  color: #0b2a55;
}

/* テキストの密度 */
.page-request .section-world .card-title{
  font-weight: 1000;
  letter-spacing: .01em;
}

.page-request .section-world .card-text{
  color: rgba(11,42,85,.72);
  font-weight: 700;
}

.page-request .section-world .card-link{
  font-weight: 900;
  letter-spacing: .02em;
}

/* SPで詰まりすぎない */
@media (max-width: 640px){
  .page-request .section-world{ padding: 54px 0 64px; }
  .page-request .section-world .card-big .card-body{ padding: 18px 18px 20px; }
}


/* =========================================================
   REQUEST: 4 cards 揃える + ラベル強調 + 色アクセント
   ========================================================= */

/* 4枚カード：高さを揃える */
.page-request .section-world .top-services{
  align-items: stretch;
}

.page-request .section-world .top-services > .card{
  height: 100%;
}

.page-request .section-world .top-services .card-whole{
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr; /* media + body */
}

/* bodyを縦レイアウトにして、最後のリンクを下に固定 */
.page-request .section-world .top-services .card-body{
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.page-request .section-world .top-services .card-text{
  flex: 1; /* ここが伸びて全カードの下位置を揃える */
}

/* 「〜を見る」を下に寄せる */
.page-request .section-world .top-services .card-link{
  margin-top: 6px;
  font-weight: 1000;
  letter-spacing: .02em;
}

/* ===== ラベル（ILLUSTRATION等）を目立たせる ===== */
.page-request .section-world .top-services .badge-soft{
  height: 28px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .16em;

  border-width: 2px;
  box-shadow: 4px 4px 0 rgba(6,48,85,.18);
  transform: rotate(-4deg);
}

/* ===== 各カードに色（アクセント） =====
   ※HTMLにクラス足さずに「順番」で色付けする
*/
.page-request .section-world .top-services .card{
  --accent: var(--blue-600);
}

/* 1: ILLUSTRATION */
.page-request .section-world .top-services .card:nth-child(1){
  --accent: #2bb6ff;
}
/* 2: DESIGN */
.page-request .section-world .top-services .card:nth-child(2){
  --accent: #ff7a18;
}
/* 3: SIGN / SPACE */
.page-request .section-world .top-services .card:nth-child(3){
  --accent: #15c88b;
}
/* 4: PLAN */
.page-request .section-world .top-services .card:nth-child(4){
  --accent: #ff2a6d;
}

/* 枠・影にアクセントを混ぜる */
.page-request .section-world .top-services .card-whole{
  border: 2px solid color-mix(in srgb, var(--accent) 28%, rgba(11,42,85,.14));
  box-shadow:
    10px 10px 0 color-mix(in srgb, var(--accent) 18%, rgba(6,48,85,.14)),
    0 18px 44px rgba(11,42,85,.10);
}

/* 上端に“色帯”を入れる（TOP寄せの雑誌感） */
.page-request .section-world .top-services .card-whole::before{
  content:"";
  display:block;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 30%, #fff));
}

/* ラベル自体も色を使う（主役化） */
.page-request .section-world .top-services .card .badge-soft{
  background: color-mix(in srgb, var(--accent) 18%, rgba(255,255,255,.92));
  border-color: color-mix(in srgb, var(--accent) 40%, rgba(11,42,85,.22));
  color: #0b2a55;
}

/* タイトルも少しだけ色気 */
.page-request .section-world .top-services .card-title{
  font-weight: 1000;
}
.page-request .section-world .top-services .card-title .kw{
  color: color-mix(in srgb, var(--accent) 82%, #0b2a55);
}

/* =========================================================
   REQUEST: BIG ANIMATION - 紫アクセント版
   ========================================================= */

.page-request .section-world .card-big{
  --accent: #7a5cff; /* ANIMATION専用：紫 */
}

/* ラベル（ANIMATION） */
.page-request .section-world .card-big .badge-soft{
  background: color-mix(in srgb, var(--accent) 22%, #ffffff);
  border-color: color-mix(in srgb, var(--accent) 55%, rgba(11,42,85,.25));
  color: #2b1f55;

  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .16em;
  height: 28px;
  padding: 0 12px;

  box-shadow: 5px 5px 0 color-mix(in srgb, var(--accent) 30%, rgba(6,48,85,.35));
  transform: rotate(-4deg);
}

/* タイトルのキーワード（30秒で） */
.page-request .section-world .card-big .card-title .kw{
  color: var(--accent);
  font-weight: 1000;
}

/* 枠もうっすら紫寄せ */
.page-request .section-world .card-big .card-whole{
  border-color: color-mix(in srgb, var(--accent) 28%, rgba(11,42,85,.18));
}


/* =========================
   REQUEST: HERO BUTTON FIX
   ========================= */

.page-request .btn-primary{
  color: #ffffff !important;
  background: #0b2a55;
  border-color: transparent;
}
.page-request .btn-primary{
  font-weight: 1000;
  letter-spacing: .04em;
  box-shadow: 10px 10px 0 rgba(11,42,85,.35);
}

/* =========================
   REQUEST : GALLERY
   ========================= */

.section-request-gallery{
  background: linear-gradient(180deg, rgba(240,249,255,.8), #ffffff);
}

.request-gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.request-gallery-item{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(6,48,85,.18);
  box-shadow: 8px 8px 0 rgba(6,48,85,.18);
  transform: rotate(-.4deg);
}

.request-gallery-item:nth-child(even){
  transform: rotate(.4deg);
}

.request-gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.request-gallery-label{
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,42,85,.9);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 4px 4px 0 rgba(0,0,0,.35);
}

/* =========================================================
   REQUEST: EVERYTHING (All you can do)
   ========================================================= */

.request-everything{
  padding: 72px 0;
  background:
    radial-gradient(900px 420px at 18% 18%, rgba(40,200,255,.12), transparent 62%),
    radial-gradient(820px 380px at 82% 26%, rgba(255,42,109,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.80), rgba(246,248,251,1));
  border-top: 1px solid rgba(6,48,85,.10);
}

.everything-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.everything-box{
  position: relative;
  background: rgba(255,255,255,.92);
  border: 2px solid rgba(6,48,85,.16);
  border-radius: 22px;
  box-shadow: 10px 10px 0 rgba(6,48,85,.10), 0 18px 44px rgba(11,42,85,.10);
  padding: 18px 18px 16px;
  overflow: hidden;

  /* 高さ揃え */
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.everything-title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: .02em;
  color: #0b2a55;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.everything-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .14em;

  background: rgba(11,42,85,.94);
  color: #fff;
  box-shadow: 6px 6px 0 rgba(0,0,0,.18);
  border: 2px solid rgba(255,255,255,.80);
}

/* list */
.everything-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(11,42,85,.88);
  font-size: 13px;
  line-height: 1.65;

  /* 下に余白が残っても整う */
  flex: 1;
}

.everything-list li{
  position: relative;
  padding-left: 18px;
}

.everything-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 1000;
  opacity: .9;
}

/* うっすら色面（カテゴリごと） */
.everything-box::after{
  content:"";
  position:absolute;
  inset:-60px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(40,200,255,.28), transparent 62%);
  transform: rotate(-8deg);
  opacity: .55;
  pointer-events:none;
}

/* category colors */
.everything-box.is-anime::after{ background: radial-gradient(circle at 30% 30%, rgba(155,120,255,.28), transparent 62%); } /* 紫 */
.everything-box.is-illust::after{ background: radial-gradient(circle at 30% 30%, rgba(40,200,255,.28), transparent 62%); }
.everything-box.is-design::after{ background: radial-gradient(circle at 30% 30%, rgba(255,122,24,.26), transparent 62%); }
.everything-box.is-web::after{ background: radial-gradient(circle at 30% 30%, rgba(120,255,214,.22), transparent 62%); }
.everything-box.is-print::after{ background: radial-gradient(circle at 30% 30%, rgba(241,255,69,.22), transparent 62%); }
.everything-box.is-sign::after{ background: radial-gradient(circle at 30% 30%, rgba(6,48,85,.18), transparent 62%); }
.everything-box.is-plan::after{ background: radial-gradient(circle at 30% 30%, rgba(255,42,109,.20), transparent 62%); }
.everything-box.is-copy::after{ background: radial-gradient(circle at 30% 30%, rgba(107,122,144,.18), transparent 62%); }

/* pill accent per category (目立たせる) */
.everything-box.is-anime .everything-pill{ background: rgba(90,60,200,.92); }
.everything-box.is-illust .everything-pill{ background: rgba(15,111,184,.92); }
.everything-box.is-design .everything-pill{ background: rgba(255,122,24,.92); }
.everything-box.is-web   .everything-pill{ background: rgba(22,160,133,.92); }
.everything-box.is-print .everything-pill{ background: rgba(180,160,0,.92); }
.everything-box.is-sign  .everything-pill{ background: rgba(6,48,85,.92); }
.everything-box.is-plan  .everything-pill{ background: rgba(255,42,109,.92); }
.everything-box.is-copy  .everything-pill{ background: rgba(70,80,95,.92); }

/* footer */
.everything-footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(6,48,85,.18);
  display: grid;
  gap: 14px;
}

.everything-note{
  margin: 0;
  font-weight: 900;
  color: rgba(11,42,85,.82);
  line-height: 1.9;
}

.everything-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* responsive */
@media (max-width: 980px){
  .everything-grid{ grid-template-columns: 1fr; }
  .everything-box{ min-height: 0; }
}

/* =========================================================
   REQUEST: QUICK DIAGNOSIS (3 cards)
   ========================================================= */

.request-diagnosis{
  padding: 78px 0;
  background:
    radial-gradient(900px 460px at 16% 18%, rgba(155,120,255,.12), transparent 62%),
    radial-gradient(820px 420px at 84% 32%, rgba(40,200,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(246,248,251,1), rgba(255,255,255,.86));
  border-top: 1px solid rgba(6,48,85,.10);
}

.diag-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.diag-card{
  text-decoration:none;
  color: inherit;

  background: rgba(255,255,255,.94);
  border: 3px solid rgba(6,48,85,.18);
  border-radius: 24px;
  box-shadow: 14px 14px 0 rgba(6,48,85,.12), 0 18px 44px rgba(11,42,85,.10);
  overflow:hidden;

  padding: 18px 18px 16px;

  display:flex;
  flex-direction: column;
  min-height: 330px;

  transform: rotate(-.4deg);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, filter .16s ease;
}

.diag-card:nth-child(2){ transform: rotate(.35deg) translateY(6px); }
.diag-card:nth-child(3){ transform: rotate(-.15deg) translateY(2px); }

@media (hover:hover){
  .diag-card:hover{
    transform: translate(-4px,-4px) rotate(0deg);
    box-shadow: 20px 20px 0 rgba(6,48,85,.12), 0 26px 60px rgba(11,42,85,.14);
    border-color: rgba(6,48,85,.28);
    filter: saturate(1.03);
  }
}

.diag-top{ margin-bottom: 12px; }

.diag-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .14em;

  background: rgba(11,42,85,.94);
  color:#fff;
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 6px 6px 0 rgba(0,0,0,.18);
}

.diag-title{
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 1000;
  color:#0b2a55;
  letter-spacing: .01em;
}

.diag-lead{
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 900;
  color: rgba(11,42,85,.78);
}

.diag-list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 8px;

  color: rgba(11,42,85,.88);
  font-size: 13px;
  line-height: 1.6;

  flex: 1;
}

.diag-list li{
  position: relative;
  padding: 10px 10px 10px 30px;
  border-radius: 14px;
  background: rgba(11,42,85,.04);
  border: 1px dashed rgba(6,48,85,.18);
}

.diag-list li::before{
  content:"✓";
  position:absolute;
  left: 12px;
  top: 9px;
  font-weight: 1000;
  color: rgba(11,42,85,.85);
}

.diag-cta{
  margin-top: 12px;
  font-weight: 1000;
  letter-spacing: .06em;
  color: rgba(11,42,85,.92);
  display:flex;
  justify-content:flex-end;
}

/* color accents per type */
.diag-card::after{
  content:"";
  position:absolute;
  inset:-60px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  opacity: .60;
  pointer-events:none;
  transform: rotate(-8deg);
}

.diag-card.is-a::after{ background: radial-gradient(circle at 30% 30%, rgba(241,255,69,.22), transparent 62%); }
.diag-card.is-b::after{ background: radial-gradient(circle at 30% 30%, rgba(40,200,255,.22), transparent 62%); }
.diag-card.is-c::after{ background: radial-gradient(circle at 30% 30%, rgba(155,120,255,.22), transparent 62%); }

.diag-card.is-a .diag-pill{ background: rgba(180,160,0,.92); }
.diag-card.is-b .diag-pill{ background: rgba(15,111,184,.92); }
.diag-card.is-c .diag-pill{ background: rgba(90,60,200,.92); }

/* bottom */
.diag-bottom{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(6,48,85,.18);
  display:grid;
  gap: 14px;
}

.diag-note{
  margin: 0;
  font-weight: 900;
  color: rgba(11,42,85,.82);
  line-height: 1.9;
}

.diag-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* responsive */
@media (max-width: 980px){
  .diag-grid{ grid-template-columns: 1fr; }
  .diag-card{
    min-height: 0;
    transform: none;
  }
  .diag-card:nth-child(2),
  .diag-card:nth-child(3){ transform:none; }
}