/* ============================================================
 * CENTERLIGHT site CSS  v5.9.0
 * Author: Center Light LLC
 * 設計方針:
 *   1. フルワイド方針を完全撤回。コンテンツ幅の角丸紺色ボックスに
 *   2. ChatGPT時代のインラインCSS(.cl-site-darkを100vw強制)を
 *      !importantで完全打ち消し
 *   3. ステップカードを一回り小型化し、1180px枠内に確実に収める
 *   4. WHYセクション内のJS tiltは除外(動きの干渉を排除)
 *   5. サービスカードの「弾ける」エフェクトは継続
 * ============================================================ */

/* ============================================================
 * インラインCSS打ち消し + コンテンツ幅角丸ボックス化
 * ------------------------------------------------------------
 * SWELLカスタマイザー追加CSS等に残存している下記コードを
 * 完全に上書きし、コンテンツ幅の角丸ボックスとして再構築:
 *   .cl-site-dark{ width:100vw !important; left:50% !important;
 *                  transform:translateX(-50%) !important; ... }
 * ============================================================ */
.cl-site-dark-full,
section.cl-site-dark-full{
    all: unset;
    display: block;
}

section.cl-site-section.cl-site-dark,
.cl-site-section.cl-site-dark,
section.cl-site-dark,
.cl-site-dark{
    /* インラインCSSの強制設定を全打ち消し */
    transform: none !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    min-width: 0 !important;

    /* コンテンツ幅の角丸ボックスに再設定 */
    max-width: 1180px !important;
    margin: 40px auto !important;
    padding: 72px 56px !important;
    border-radius: 32px !important;
    position: relative !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, #071327, #0f2d5f) !important;
    color: #fff !important;
    overflow: hidden !important;
}

:root{
    --cl-navy: #071327;
    --cl-blue: #1f5eff;
    --cl-sky:  #eef5ff;
    --cl-text: #101827;
    --cl-muted:#5f6b7a;
    --cl-line: #e8edf4;
    --cl-yellow:#ffd84d;
}

/* ---------- ルートコンテナ ----------
 * SWELLの.l-content{display:flex; justify-content:space-between}の
 * フレックス子要素として配置されるため、明示的にflex:1 1 100%と
 * width:100%を当てて、左寄せの限定幅になる事故を防止。
 * overflow-x:clipで横方向のはみ出しは抑制、縦方向は許容。
 */
.cl-site{
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    background: #fff;
    color: var(--cl-text);
    overflow-x: clip;
}
.cl-site *{ box-sizing: border-box; }
.cl-site a{ text-decoration: none; }

/* ============================================================
 * SWELLメインビジュアル(#main_visual)用テキストオーバーレイ
 * v5.9.0: 見本「伝わるカタチで、ビジネスを前へ。」キャッチ+CTAボタン版
 * 2行とも同サイズで力強く表示+紺色丸角ピルCTA
 * ============================================================ */
.cl-mv-overlay{
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(90deg,
        rgba(7,19,39,.62) 0%,
        rgba(7,19,39,.42) 40%,
        rgba(7,19,39,.18) 70%,
        rgba(7,19,39,.00) 100%);
}
.cl-mv-overlay a,
.cl-mv-overlay button{
    pointer-events: auto;
}
.cl-mv-inner{
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.cl-mv-copy{
    max-width: 60%;
}
.cl-mv-h1{
    margin: 0;
    color: #fff;
    font-weight: 900;
    font-size: clamp(28px, 4.4vw, 58px);
    line-height: 1.28;
    letter-spacing: -.02em;
    text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.cl-mv-h1 .cl-mv-line1,
.cl-mv-h1 .cl-mv-line2{
    display: block;
    color: #fff;
    font-weight: 900;
    font-size: inherit;
    margin: 0;
}
.cl-mv-sub{
    margin: 22px 0 0;
    color: #fff;
    font-weight: 700;
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.85;
    letter-spacing: .005em;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.cl-mv-actions{
    margin-top: 32px;
}
.cl-mv-btn{
    display: inline-flex;
    align-items: center;
    background: rgba(7,19,39,.85);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    min-height: 48px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    box-shadow: 0 12px 30px rgba(7,19,39,.4);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.cl-mv-btn:hover{
    background: rgba(7,19,39,.95);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(7,19,39,.55);
}
.cl-mv-btn > span{
    margin-left: 12px;
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1;
}

@media (max-width: 960px){
    .cl-mv-copy{ max-width: 78%; }
    .cl-mv-h1{ font-size: clamp(22px, 5vw, 38px); }
    .cl-mv-sub{ font-size: 13px; }
    .cl-mv-actions{ margin-top: 24px; }
}
@media (max-width: 640px){
    .cl-mv-inner{ padding: 0 22px; }
    .cl-mv-copy{ max-width: 100%; }
    .cl-mv-h1{ font-size: 22px; line-height: 1.32; }
    .cl-mv-sub{ font-size: 12.5px; margin-top: 14px; }
    .cl-mv-actions{ margin-top: 20px; }
    .cl-mv-btn{ padding: 11px 22px; min-height: 42px; font-size: 13px; }
}

/* ---------- ヒーロー ---------- */
.cl-site-hero{
    position: relative;
    margin: 0 auto;
    padding: 72px 20px 54px;
    background:
        radial-gradient(circle at 78% 18%, rgba(31,94,255,.18), transparent 28%),
        linear-gradient(180deg, #f7faff 0%, #fff 72%);
    overflow: hidden; /* 軌道装飾のはみ出しはヒーロー内に閉じ込める */
}
.cl-site-hero-inner{
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr);
    gap: 48px;
    align-items: center;
}
.cl-site-kicker{
    margin: 0 0 12px;
    color: var(--cl-blue);
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 800;
}
.cl-site-hero h1{
    margin: 0;
    font-size: clamp(30px, 4.5vw, 54px);
    line-height: 1.3;
    letter-spacing: -.025em;
    color: var(--cl-text);
    font-weight: 800;
}
.cl-site-hero h1 .cl-site-h1-line1,
.cl-site-hero h1 .cl-site-h1-line2{
    display: block;
}
.cl-site-hero h1 .cl-site-h1-line1{
    color: var(--cl-muted);
    font-weight: 700;
    font-size: .68em;
    margin-bottom: 10px;
    letter-spacing: -.02em;
}
.cl-site-hero h1 .cl-site-h1-line2{
    color: var(--cl-text);
}
.cl-site-lead-sub{
    margin: 22px 0 0;
    color: var(--cl-blue);
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: .01em;
}
.cl-site-lead{
    margin: 20px 0 0;
    color: var(--cl-muted);
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.95;
}
.cl-site-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}
.cl-site-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cl-site-btn:hover{ transform: translateY(-2px); }
.cl-site-btn-primary{
    background: var(--cl-navy);
    color: #fff;
    box-shadow: 0 16px 34px rgba(7,19,39,.18);
}
.cl-site-btn-ghost{
    background: #fff;
    color: var(--cl-navy);
    border: 1px solid var(--cl-line);
    box-shadow: 0 12px 26px rgba(15,23,42,.08);
}
.cl-site-trust{
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 26px;
    max-width: 680px;
}
.cl-site-trust span{
    background: #fff;
    border: 1px solid var(--cl-line);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    color: #334155;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .01em;
}
.cl-site-hero-panel{
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    background: linear-gradient(145deg, #071327, #12356d);
    box-shadow: 0 28px 70px rgba(7,19,39,.24);
    overflow: hidden;
}
.cl-site-orbit{
    position: absolute;
    inset: 70px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    animation: clSpin 18s linear infinite;
}
.cl-site-orbit:before,
.cl-site-orbit:after{
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,216,77,.88);
    box-shadow: 0 0 36px rgba(255,216,77,.45);
}
.cl-site-orbit:before{ width:16px; height:16px; left:20px;  top:58px; }
.cl-site-orbit:after { width:10px; height:10px; right:38px; bottom:44px; background:#8ec5ff; }

.cl-site-panel-card{
    position: absolute;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.cl-site-panel-card span{
    display: block;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    margin-bottom: 8px;
}
.cl-site-panel-card strong{
    display: block;
    color: #0f172a;
    line-height: 1.55;
    font-size: 18px;
}
.cl-site-panel-card.is-main{ left:36px; right:36px; top:54px; padding:28px; }
.cl-site-panel-card.is-main strong{ font-size:26px; }
.cl-site-panel-card.is-01{ left:38px;  bottom:104px; width:220px; }
.cl-site-panel-card.is-02{ right:34px; bottom:164px; width:230px; }
.cl-site-panel-card.is-03{ right:72px; bottom:36px;  width:210px; }

/* ---------- 通常セクション(1180px幅) ---------- */
.cl-site-section{
    max-width: 1180px;
    margin: 0 auto;
    padding: 78px 20px;
}
.cl-site-section-head{
    max-width: 760px;
    margin: 0 0 34px;
}
.cl-site-section-head h2{
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.18;
    letter-spacing: -.035em;
    margin: 0 0 14px;
}
.cl-site-section-head p{
    color: var(--cl-muted);
    line-height: 1.95;
    margin: 0;
    font-size: 16px;
}

/* ---------- サービスカード ---------- */
.cl-site-service-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}
.cl-site-service-card{
    position: relative;
    background: #fff;
    border: 1px solid var(--cl-line);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 46px rgba(15,23,42,.07);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.cl-site-service-card:before{
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--cl-sky);
}
.cl-site-service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(15,23,42,.12);
}
.cl-site-service-card span{
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: var(--cl-navy);
    color: #fff;
    font-weight: 900;
    margin-bottom: 22px;
}
.cl-site-service-card h3{
    position: relative;
    font-size: 22px;
    margin: 0 0 14px;
}
.cl-site-service-card p{
    position: relative;
    color: var(--cl-muted);
    line-height: 1.9;
    margin: 0;
}

/* ============================================================
 * TECH STACK セクション(WordPress / ヘッドレス / インフラ)
 * ============================================================ */
.cl-site-tech-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}
.cl-site-tech-card{
    position: relative;
    background: #fff;
    border: 1px solid var(--cl-line);
    border-radius: 20px;
    padding: 34px 28px 30px;
    box-shadow: 0 10px 32px rgba(15,23,42,.04);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}
/* カード上端の細いアクセントライン(大人デザイン) */
.cl-site-tech-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, #1f5eff 0%, rgba(31,94,255,0) 100%);
    border-radius: 2px;
    opacity: .75;
    transition: opacity .3s ease, left .3s ease, right .3s ease;
}
.cl-site-tech-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15,23,42,.08);
    border-color: rgba(31,94,255,.18);
}
.cl-site-tech-card:hover::before{
    left: 0;
    right: 0;
    opacity: 1;
}

/* タグ(CMS / MODERN / INFRA): 大人のミニマルデザイン */
.cl-site-tech-tag{
    display: inline-block;
    background: rgba(31,94,255,.06);
    color: #1f5eff;
    border: 1px solid rgba(31,94,255,.18);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .22em;
    padding: 5px 12px 4px;
    border-radius: 4px;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.cl-site-tech-card h3{
    font-size: 19px;
    line-height: 1.5;
    margin: 0 0 14px;
    color: var(--cl-text);
    letter-spacing: -.01em;
}
.cl-site-tech-card p{
    color: var(--cl-muted);
    line-height: 1.85;
    font-size: 13.5px;
    margin: 0;
}

/* ============================================================
 * NEWS / お知らせセクション(縦並びリスト)
 * ============================================================ */
.cl-site-news-list{
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--cl-line);
}
.cl-site-news-item{
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 22px 8px;
    border-bottom: 1px solid var(--cl-line);
    color: var(--cl-text);
    text-decoration: none;
    transition: background .25s ease, padding .25s ease;
}
.cl-site-news-item:hover{
    background: rgba(31,94,255,.025);
    padding-left: 16px;
}
.cl-site-news-item time{
    color: var(--cl-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    font-variant-numeric: tabular-nums;
}
.cl-site-news-item h3{
    margin: 0;
    font-size: 15.5px;
    line-height: 1.55;
    font-weight: 700;
    color: var(--cl-text);
    letter-spacing: -.005em;
}
.cl-site-news-arrow{
    color: var(--cl-blue);
    font-size: 18px;
    font-weight: 700;
    opacity: .6;
    transition: transform .3s ease, opacity .3s ease;
}
.cl-site-news-item:hover .cl-site-news-arrow{
    opacity: 1;
    transform: translateX(4px);
}

/* ============================================================
 * WHY CENTERLIGHT  コンテンツ幅角丸ボックス設計
 * ------------------------------------------------------------
 * フルワイド方針撤回。max-width:1180pxの角丸紺色ボックスとして
 * 配置。本体定義は上の!important打ち消し部で済んでいるため、
 * ここでは内側要素のスタイルのみ定義。
 * ============================================================ */

/* 内側コンテンツの中央寄せ */
.cl-site-dark > .cl-site-section-head,
.cl-site-dark > .cl-site-flow,
section.cl-site-dark > .cl-site-section-head,
section.cl-site-dark > .cl-site-flow{
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.cl-site-dark .cl-site-section-head{
    text-align: center;
    margin-bottom: 36px;
}
.cl-site-dark .cl-site-section-head h2{
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(28px, 2.6vw, 44px);
    line-height: 1.45;
    letter-spacing: .03em;
}
.cl-site-dark .cl-site-section-head p{
    color: rgba(255,255,255,.84);
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-size: 14px;
}

/* 4ステップカード(小型化版) */
.cl-site-flow{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}
.cl-site-flow > div{
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    padding: 18px 16px;
    color: #fff;
    min-width: 0;
}
.cl-site-flow strong{
    display: block;
    color: var(--cl-yellow);
    font-size: 12px;
    margin-bottom: 8px;
    letter-spacing: .04em;
}
.cl-site-flow span{
    display: block;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
}
.cl-site-flow p{
    margin: 0;
    color: #d7e0ef;
    line-height: 1.7;
    font-size: 12.5px;
}

/* ============================================================
 * サービスカード: shine効果 + ティルト + 数字バッジ弾けエフェクト
 * ============================================================ */
.cl-site-service-card{
    transform-style: preserve-3d;
    will-change: transform;
}
.cl-site-service-card.cl-shine{
    position: relative;
    isolation: isolate;
}
.cl-site-service-card.cl-shine::after{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255,255,255,0) 40%,
        rgba(31,94,255,.18) 50%,
        rgba(255,255,255,0) 60%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: left .7s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
    z-index: 2;
}
.cl-site-service-card.cl-shine:hover::after{
    left: 125%;
}

/* ============================================================
 * 数字バッジ「弾ける」エフェクト
 * ------------------------------------------------------------
 * 3層構造:
 *   1. バッジ本体 → 回転+スケールbounce
 *   2. ::before → 波紋拡散1(青)
 *   3. ::after  → 波紋拡散2(黄、遅延)
 * ============================================================ */
.cl-site-service-card span{
    position: relative;
    overflow: visible;
}

/* 波紋拡散1: 青、即発火 */
.cl-site-service-card span::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--cl-blue);
    transform: scale(1);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

/* 波紋拡散2: 黄、ディレイ発火 */
.cl-site-service-card span::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid var(--cl-yellow);
    transform: scale(1);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

/* ホバー時: バッジ本体が弾ける動き */
.cl-site-service-card:hover span{
    animation: cl-badge-burst 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    background: var(--cl-blue);
}
/* ホバー時: 波紋1拡散 */
.cl-site-service-card:hover span::before{
    animation: cl-badge-ring-blue 0.7s ease-out forwards;
}
/* ホバー時: 波紋2拡散(遅延) */
.cl-site-service-card:hover span::after{
    animation: cl-badge-ring-yellow 0.9s ease-out 0.12s forwards;
}

@keyframes cl-badge-burst{
    0%   { transform: rotate(0deg) scale(1); }
    25%  { transform: rotate(-14deg) scale(1.3); }
    55%  { transform: rotate(10deg) scale(0.88); }
    80%  { transform: rotate(-3deg) scale(1.12); }
    100% { transform: rotate(-6deg) scale(1.08); }
}
@keyframes cl-badge-ring-blue{
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(2.4); opacity: 0; }
}
@keyframes cl-badge-ring-yellow{
    0%   { transform: scale(1);   opacity: 0.7; }
    60%  { opacity: 0.4; }
    100% { transform: scale(3);   opacity: 0; }
}

/* バッジ自体のトランジション(ホバー外し時の戻り) */
.cl-site-service-card span{
    transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s ease;
}

/* prefers-reduced-motion 配慮 */
@media (prefers-reduced-motion: reduce){
    .cl-site-service-card.cl-shine::after,
    .cl-site-service-card:hover span,
    .cl-site-service-card:hover span::before,
    .cl-site-service-card:hover span::after,
    .cl-site-flow > div,
    .cl-site-service-card{
        animation: none;
        transition: none;
        transform: none;
    }
    .cl-reveal{
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- WORKS 見出し行 ---------- */
.cl-site-head-row{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    max-width: none;
}
.cl-site-textlink{
    display: inline-flex;
    border-bottom: 2px solid var(--cl-navy);
    color: var(--cl-navy);
    font-weight: 900;
    white-space: nowrap;
    padding-bottom: 5px;
}

/* ---------- お問い合わせ ---------- */
.cl-site-contact{
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap: 28px;
    align-items: center;
    background: #f7faff;
    border: 1px solid var(--cl-line);
    border-radius: 36px;
    margin-bottom: 80px;
}
.cl-site-contact h2{
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.22;
    letter-spacing: -.035em;
    margin: 0 0 16px;
}
.cl-site-contact p{
    color: var(--cl-muted);
    line-height: 1.9;
}
.cl-site-contact-box{
    background: #fff;
    border: 1px solid var(--cl-line);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 44px rgba(15,23,42,.08);
}
.cl-site-contact-box p{
    margin: 14px 0 0;
    font-size: 14px;
}
.cl-site-contact-box a:not(.cl-site-btn){
    color: var(--cl-navy);
    font-weight: 700;
}
.cl-site-contact-note{
    color: var(--cl-muted) !important;
    font-size: 12.5px !important;
    margin-top: 16px !important;
}

/* ============================================================
 * メアド非表示セーフティ(迷惑メール対策)
 * ------------------------------------------------------------
 * ヘッダー/フッター領域のmailto:リンクと、メアドを含むテキスト要素を
 * 念のため非表示にする。
 * 主たる対策はSWELL設定(コールバー/インフォバー/CTA設定)で
 * メアド入力欄を空にすること。本ブロックは保険。
 * ============================================================ */
.l-header a[href^="mailto:"],
.l-header .c-callBtn[href^="mailto:"],
.l-header__cta a[href^="mailto:"],
.c-infoBar a[href^="mailto:"],
#header a[href^="mailto:"],
#header .mail,
#header .email{
    display: none !important;
}

/* ---------- スクロール表示アニメ ---------- */
.cl-reveal{
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
.cl-reveal.is-visible{
    opacity: 1;
    transform: none;
}

/* ---------- 制作実績一覧(ショートコード) ---------- */
.cl-work-list{ padding: 0; }
.cl-work-list-card{
    transition: transform .25s ease, box-shadow .25s ease;
}
.cl-work-list-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 22px 54px rgba(15,23,42,.12);
}

@keyframes clSpin{ to { transform: rotate(360deg); } }

/* ============================================================
 * 制作実績ページタイトル(セーフCSS)
 * ============================================================ */
.clw-page-head,
.cl-safe-page-title{
    width: 100%;
    max-width: none;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding: 92px 20px 60px;
    background:
        radial-gradient(circle at 50% 0%, rgba(31,94,255,.10), transparent 36%),
        linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.clw-page-en,
.cl-safe-page-en{
    display: block;
    text-align: center;
    color: #2452ff;
    font-size: 18px;
    letter-spacing: .24em;
    font-weight: 800;
    margin: 0 auto 16px;
    width: 100%;
}
.clw-page-jp,
.cl-safe-page-jp{
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    color: #2b2b2b;
    font-family: "Sugi","A1ゴシック","Zen Kaku Gothic New","Noto Sans JP","Hiragino Sans","Yu Gothic",sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 4.2vw, 54px);
    line-height: 1.3;
    letter-spacing: .02em;
    writing-mode: horizontal-tb;
    text-rendering: geometricPrecision;
    font-feature-settings: "palt" 1;
}
.clw-page-note,
.cl-safe-page-note{
    max-width: 760px;
    margin: 24px auto 0;
    text-align: center;
    color: #5f6b7a;
    line-height: 2;
    font-size: 16px;
}
.clw-main,
.cl-safe-work-main{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px 96px;
}

/* ============================================================
 * html/body 横スクロール抑止(セーフティ装置)
 * SafariやFirefoxでも確実に100vwはみ出しを抑える
 * ============================================================ */
html{
    overflow-x: clip;
}
body{
    overflow-x: clip;
}

/* ============================================================
 * レスポンシブ
 * ============================================================ */
@media (max-width: 1100px){
    .cl-site-dark .cl-site-flow{
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 960px){
    .cl-site-hero-inner{ grid-template-columns: 1fr; }
    .cl-site-hero-panel{ min-height: 430px; }
    .cl-site-service-grid,
    .cl-site-tech-grid,
    .cl-site-flow{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    .cl-site-contact{ grid-template-columns: 1fr; }
    .cl-site-head-row{ display: block; }
    .cl-site-textlink{ margin-top: 18px; }

    section.cl-site-section.cl-site-dark,
    .cl-site-section.cl-site-dark,
    section.cl-site-dark,
    .cl-site-dark{
        margin: 30px 16px !important;
        padding: 56px 32px !important;
        max-width: calc(100% - 32px) !important;
        border-radius: 24px !important;
    }
}

@media (max-width: 640px){
    .cl-site-hero{ padding: 46px 16px 34px; }
    .cl-site-hero h1{ font-size: 32px; line-height: 1.25; }
    .cl-site-hero h1 .cl-site-h1-line1{ font-size: 18px; }
    .cl-site-h1-break{ display: none; }
    .cl-site-lead-sub{ font-size: 15px; }
    .cl-site-actions{ display: grid; }
    .cl-site-btn{ width: 100%; }
    .cl-site-hero-panel{ min-height: 390px; border-radius: 26px; }
    .cl-site-panel-card{ border-radius: 20px; padding: 16px; }
    .cl-site-panel-card.is-main{ left: 18px; right: 18px; top: 24px; }
    .cl-site-panel-card.is-main strong{ font-size: 20px; }
    .cl-site-panel-card.is-01{ left: 18px;  bottom: 112px; width: 190px; }
    .cl-site-panel-card.is-02{ right: 16px; bottom: 174px; width: 190px; }
    .cl-site-panel-card.is-03{ right: 26px; bottom: 26px;  width: 180px; }
    .cl-site-orbit{ inset: 58px; }

    .cl-site-section{ padding: 54px 16px; }
    .cl-site-service-grid,
    .cl-site-tech-grid,
    .cl-site-flow{ grid-template-columns: 1fr; }
    .cl-site-service-card{ padding: 24px; }
    .cl-site-tech-card{ padding: 24px 22px; }

    .cl-site-news-item{
        grid-template-columns: 1fr auto;
        gap: 4px 16px;
        padding: 18px 6px;
    }
    .cl-site-news-item time{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        font-size: 12px;
    }
    .cl-site-news-item h3{
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        font-size: 14.5px;
    }
    .cl-site-news-arrow{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    section.cl-site-section.cl-site-dark,
    .cl-site-section.cl-site-dark,
    section.cl-site-dark,
    .cl-site-dark{
        padding: 44px 22px !important;
        margin: 24px 12px !important;
        max-width: calc(100% - 24px) !important;
        border-radius: 20px !important;
    }
    .cl-site-dark .cl-site-section-head h2{
        font-size: 24px;
        line-height: 1.55;
        text-align: center;
    }
    .cl-site-dark .cl-site-section-head p{
        text-align: left;
    }

    .cl-site-contact{
        border-radius: 26px;
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 58px;
    }
    .cl-site-contact-box{ padding: 22px; }
    .cl-site-trust span{ font-size: 12px; }

    .clw-page-jp,
    .cl-safe-page-jp{ font-size: 30px; }
}
