/* --- Common Style for CKGWORKS SITE --- */


/* --- Styles from index.html --- */
/* --- SP Only (モバイルのみ表示) --- */
    .sp-only {
      display: none;
    }

    /* --- 基本設定 --- */
    :root {
      --black: #0a0a0a;
      --white: #ffffff;
      --blue: #0044CC;
      --grid-color: rgba(0, 0, 0, 0.04);
      --font-main: 'Manrope', sans-serif;
      --font-display: 'Syncopate', sans-serif;
      --font-jp: 'Noto Sans JP', sans-serif;
      --font-tech: 'Space Mono', monospace;
    }

    body {
      margin: 0;
      background-color: var(--white);
      color: var(--black);
      font-family: var(--font-jp);
      overflow-x: hidden;
      cursor: auto;
      background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    a {
      text-decoration: none;
      color: inherit;
      cursor: auto;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

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

    * {
      box-sizing: border-box;
    }

    /* --- ローダー & カーソル --- */
    #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--black);
      z-index: 99999;
      display: flex;
      justify-content: center;
      align-items: center;
      transform-origin: top;
    }

    .loader-text {
      color: #fff;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      opacity: 0;
    }

    #cursor {
      display: none !important;
    }

    body.is-hovering #cursor {
      display: none !important;
    }

    /* --- ヘッダー & ナビ --- */
    header {
      position: fixed;
      width: 100%;
      top: 0;
      padding: 30px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 200;
      mix-blend-mode: difference;
      color: #fff;
    }

    .logo {
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: -0.05em;
      font-size: 1.5rem;
    }

    .logo span {
      font-size: 0.8rem;
      font-family: var(--font-tech);
      opacity: 0.7;
      margin-left: 10px;
      font-weight: 400;
    }

    .menu-trigger {
      font-family: var(--font-display);
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: flex-end;
    }

    .line {
      width: 30px;
      height: 2px;
      background: #fff;
      transition: 0.3s;
    }

    .fs-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--black);
      z-index: 150;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.5s;
    }

    .fs-menu.active {
      visibility: visible;
      opacity: 1;
    }

        .fs-nav-list {
      text-align: center;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .fs-nav-item {
      margin: 15px 0;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .fs-nav-list {
        display: block;
      }
    }

    .fs-link {
      display: block;
      font-family: var(--font-main);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 4rem);
      color: #fff;
      text-transform: uppercase;
      line-height: 1;
      transform: translateY(100%);
      transition: color 0.3s;
    }

    .fs-link:hover {
      color: transparent;
      -webkit-text-stroke: 1px #fff;
    }

    .fs-sub {
      display: block;
      font-family: var(--font-jp);
      font-size: 0.8rem;
      color: #888;
      margin-top: 5px;
      font-weight: 500;
      letter-spacing: 0.1em;
      transform: translateY(100%);
    }

    /* --- ヒーロー & セクション --- */
    .hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
      overflow: hidden;
    }

    .hero-content {
      width: 100%;
      max-width: 1400px;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .hero-line {
      display: block;
      overflow: hidden;
      line-height: 0.85;
    }

    .big-text {
      display: block;
      font-family: var(--font-display);
      font-size: clamp(3rem, 13vw, 15rem);
      font-weight: 800;
      text-transform: uppercase;
      color: var(--black);
      /* 濃い黒に変更 */
      letter-spacing: -0.04em;
      transform: translateY(110%);
      will-change: transform;
      z-index: 0;
    }

    .text-blue {
      color: var(--blue);
      /* 濃い青に変更 */
    }

    /* Hero Catchphrase Overlay */
    .hero-tagline {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      z-index: 10;
      text-align: center;
      width: 100%;
      max-width: 900px;
      opacity: 0;
    }

    .tagline-box {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 40px 60px;
      border-radius: 4px;
      display: inline-block;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .tagline-main {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      line-height: 1.5;
      margin-bottom: 15px;
      color: var(--black);
    }

    .tagline-sub {
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: var(--blue);
      font-weight: 700;
      font-family: var(--font-jp);
      white-space: nowrap;
    }

    /* キャッチコピー行アニメーション */
    .tagline-line {
      display: block;
      overflow: hidden;
    }

    .js-tagline-text {
      display: block;
      transform: translateY(110%);
      opacity: 0;
      will-change: transform, opacity;
    }

    /* スマブラ風十字アニメーション */
    .smash-cross {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: 9;
      pointer-events: none;
      overflow: hidden;
    }

    .cross-line {
      position: absolute;
      background: linear-gradient(90deg, transparent, var(--blue), #fff, var(--blue), transparent);
      height: 4px;
      width: 200%;
      left: -50%;
      top: 50%;
      transform-origin: center;
      opacity: 0;
    }

    .cross-line.line1 {
      transform: rotate(25deg) translateY(-50%);
    }

    .cross-line.line2 {
      transform: rotate(-25deg) translateY(-50%);
    }

    .cross-flash {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(0, 68, 204, 0.3) 50%, transparent 70%);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
    }

    .hero-meta {
      position: absolute;
      font-family: var(--font-tech);
      font-size: 0.8rem;
      color: #666;
      top: 50%;
      transform: translateY(-50%);
    }

    .meta-left {
      left: 0;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      border-left: 1px solid #ddd;
      padding-left: 10px;
    }

    .meta-right {
      right: 0;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      border-right: 1px solid #ddd;
      padding-right: 10px;
    }

    section {
      padding: 150px 40px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .section-header {
      margin-bottom: 80px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      border-bottom: 2px solid #000;
      padding-bottom: 20px;
    }

    .sec-title {
      font-family: var(--font-display);
      font-size: 3rem;
      margin: 0;
      line-height: 1;
    }

    .sec-sub {
      font-family: var(--font-tech);
      color: var(--blue);
    }

    /* --- CONCEPT SECTION --- */
    .concept-area {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .concept-title {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .concept-text {
      font-size: 1rem;
      line-height: 2;
      color: #555;
      margin-bottom: 0;
    }

    /* --- SERVICES SECTION (Result Oriented Update) --- */
    .services-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid #ddd;
      border-left: 1px solid #ddd;
    }

    .service-item {
      padding: 50px;
      border-right: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      transition: 0.3s;
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
    }

    .service-item:hover {
      background: var(--black);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    .service-item:hover h3 {
      color: #fff;
      border-bottom-color: #fff;
    }

    .service-item:hover .spec-label {
      color: #888;
    }

    .service-item:hover .spec-label.win {
      color: #4facfe;
    }

    .service-item:hover .spec-text {
      color: #fff;
    }

    .service-item:hover .link-arrow {
      color: #fff;
    }

    .service-item:hover .recommend-badge {
      background: #4facfe;
    }

    .service-item h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 2px solid var(--black);
    }

    /* Result Oriented List Styles */
    .service-spec-list {
      margin-top: auto;
      margin-bottom: 30px;
    }

    .spec-row {
      display: flex;
      margin-bottom: 15px;
      font-size: 0.9rem;
      line-height: 1.6;
      align-items: baseline;
    }

    .spec-label {
      font-family: var(--font-tech);
      font-weight: 700;
      width: 50px;
      flex-shrink: 0;
      font-size: 0.8rem;
      color: #999;
    }

    .spec-label.win {
      color: var(--blue);
    }

    .spec-text {
      color: #333;
      font-weight: 500;
    }

    /* サービスメリットリスト */
    .service-merit {
      list-style: none;
      padding: 0;
      margin: 0 0 30px 0;
    }

    .service-merit li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px;
      font-size: 0.9rem;
      color: #333;
    }

    .service-merit li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--blue);
      font-weight: 700;
    }

    .service-item p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    /* リンク用矢印 */
    .link-arrow {
      margin-top: auto;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--black);
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .service-item:hover .link-arrow {
      opacity: 1;
      transform: translateY(0);
      color: #fff;
    }

    /* おすすめバッジ */
    .recommend-badge {
      font-family: var(--font-tech);
      font-size: 0.75rem;
      color: #fff;
      background: var(--blue);
      padding: 4px 10px;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 15px;
      letter-spacing: 0.05em;
      border-radius: 2px;
      align-self: flex-start;
    }

    /* --- REASONS SECTION (USP) --- */
    .reasons-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .reason-card {
      padding: 20px;
    }

    .reason-num {
      font-family: var(--font-display);
      font-size: 3rem;
      color: #eee;
      line-height: 1;
      margin-bottom: 10px;
    }

    .reason-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 15px;
      border-left: 3px solid var(--blue);
      padding-left: 15px;
    }

    .reason-desc {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.7;
    }

    .works-preview {
      text-align: center;
      padding: 50px 0;
    }

    .big-link {
      font-family: var(--font-display);
      font-size: clamp(2rem, 7vw, 7rem);
      font-weight: 800;
      line-height: 1;
      border-bottom: 3px solid transparent;
      transition: 0.3s;
      color: var(--black);
    }

    .big-link:hover {
      color: var(--blue);
      border-bottom-color: var(--blue);
    }

    .sns-grid {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .sns-item {
      text-align: center;
    }

    .sns-item img {
      width: 150px;
      height: 150px;
      object-fit: contain;
      margin: 0 auto 20px;
    }

    .sns-item h3 {
      font-family: var(--font-display);
      margin-bottom: 10px;
    }

    /* NEXT STEP 3択ナビ */
    .next-step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .next-step-item {
      border: 1px solid #ddd;
      padding: 40px 20px;
      text-align: center;
      transition: 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .next-step-item:hover {
      background: var(--black);
      color: #fff;
      border-color: var(--black);
    }

    .next-step-title {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .next-step-desc {
      font-size: 0.85rem;
      margin-bottom: 0;
      opacity: 0.8;
    }

    .next-step-icon {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--blue);
    }

    .next-step-item:hover .next-step-icon {
      color: #fff;
    }

    /* --- フッターデザイン --- */
    footer {
      background: var(--black);
      color: #fff;
      padding: 100px 40px 40px;
      font-size: 14px;
    }

    .footer-wrapper {
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 80px;
      gap: 40px;
    }

    .footer-brand {
      flex: 1.2;
      min-width: 300px;
    }

    .brand-logo-wrap {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      gap: 15px;
    }

    .brand-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      color: var(--black);
      border-radius: 4px;
      font-family: var(--font-display);
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .brand-text-group {
      display: flex;
      flex-direction: column;
    }

    .brand-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.05em;
      line-height: 1.2;
    }

    .brand-sub {
      font-family: var(--font-jp);
      font-size: 11px;
      color: #888;
      margin-top: 2px;
    }

    .brand-desc {
      font-family: var(--font-jp);
      font-size: 14px;
      line-height: 1.8;
      color: #ccc;
      border-left: 2px solid #333;
      padding-left: 20px;
    }

    .footer-links {
      flex: 2;
      display: flex;
      justify-content: space-between;
      max-width: 700px;
    }

    .f-col h4 {
      font-family: var(--font-display);
      font-size: 16px;
      margin: 0 0 30px 0;
      color: #fff;
      letter-spacing: 0.05em;
    }

    .f-col ul li {
      margin-bottom: 15px;
      color: #888;
      font-family: var(--font-jp);
      font-size: 13px;
    }

    .f-col a {
      color: #888;
      font-family: var(--font-jp);
      font-size: 13px;
      transition: 0.3s;
      display: inline-block;
    }

    .f-col a:hover {
      color: var(--blue);
      transform: translateX(5px);
    }

    .footer-bottom {
      border-top: 1px solid #222;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #555;
      font-family: var(--font-tech);
      font-size: 11px;
    }

    /* --- スマホ・タブレット最適化 (レスポンシブ) --- */
    @media (max-width: 1024px) {
      .footer-links {
        gap: 30px;
      }
    }

    @media (max-width: 900px) {
      .footer-top {
        flex-direction: column;
      }

      .footer-links {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: flex-start;
      }

      .f-col {
        width: 45%;
      }

      .next-step-grid,
      .reasons-grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- モバイル専用調整 (768px以下) --- */
    @media (max-width: 768px) {

      #cursor {
        display: none !important;
      }

      body,
      a,
      .hover-target,
      button,
      input {
        cursor: auto !important;
      }

      header {
        padding: 20px;
      }

      .hero {
        padding: 0 20px;
      }

      .big-text {
        font-size: 13vw;
      }

      section {
        padding: 80px 20px;
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 40px;
      }

      .sec-title {
        font-size: 2.5rem;
      }

      .services-list {
        grid-template-columns: 1fr;
        border-left: none;
        border-top: none;
      }

      .service-item {
        border-left: 1px solid #ddd;
        border-top: 1px solid #ddd;
        padding: 30px;
      }

      .link-arrow {
        position: static;
        opacity: 1;
        transform: none;
        margin-top: 25px;
      }

      footer {
        padding: 60px 20px 20px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .f-col {
        width: 100%;
        margin-bottom: 20px;
      }

      .meta-left,
      .meta-right {
        display: none;
      }

      .concept-title {
        font-size: 1.5rem;
        text-align: left;
      }

      .concept-text {
        text-align: left;
      }

      /* --- お悩み・解決セクション モバイル対応 --- */
      .problems-section {
        padding: 50px 15px !important;
      }

      .problems-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
      }

      .problems-header,
      .solutions-header {
        padding: 18px 20px !important;
      }

      .problems-header h2,
      .solutions-header h2 {
        font-size: 1.3rem !important;
      }

      .problems-grid>div>div:first-child {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 15px !important;
      }

      .problems-grid>div>p {
        font-size: 0.85rem !important;
      }

      .tagline-box {
        padding: 20px 15px;
        width: auto;
        max-width: 90%;
      }

      .tagline-main {
        font-size: 1.1rem;
        line-height: 1.6;
      }

      .tagline-sub {
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.5;
      }

      .hero-tagline {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0;
        margin-top: 30px;
      }

      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      /* --- sp-only: モバイルのみ表示 --- */
      .sp-only {
        display: inline !important;
      }

      /* --- 無料相談CTA モバイル対応 --- */
      .free-consult-btn {
        padding: 15px 30px !important;
        font-size: 0.9rem !important;
        width: 80%;
        max-width: 300px;
      }

      /* --- CTAボックス モバイル対応 --- */
      .bottom-cta-box {
        padding: 25px 20px !important;
        margin-top: 30px !important;
      }

      .bottom-cta-title {
        font-size: 1rem !important;
        line-height: 1.6 !important;
      }

      .bottom-cta-title span {
        font-size: 1.2rem !important;
      }

      .bottom-cta-link {
        padding: 12px 25px !important;
        font-size: 0.85rem !important;
        width: 80%;
        max-width: 280px;
      }

      /* --- SNSグリッド モバイル対応 --- */
      .sns-grid {
        gap: 20px;
      }

      .sns-item img {
        width: 100px;
        height: 100px;
      }

      .sns-item h3 {
        font-size: 0.9rem;
      }
    }

/* --- Styles from about.html --- */
/* === Base Styles (共通) === */
        :root {
            --black: #0a0a0a;
            --white: #ffffff;
            --blue: #0044CC;
            --grid-color: rgba(0, 0, 0, 0.04);
            --font-main: 'Manrope', sans-serif;
            --font-display: 'Syncopate', sans-serif;
            --font-jp: 'Noto Sans JP', sans-serif;
            --font-tech: 'Space Mono', monospace;
        }

        body {
            margin: 0;
            background-color: var(--white);
            color: var(--black);
            font-family: var(--font-jp);
            overflow-x: hidden;
            cursor: auto;
            background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: auto;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        * {
            box-sizing: border-box;
        }

        /* Loader & Cursor */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-origin: top;
        }

        .loader-text {
            color: #fff;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            opacity: 0;
        }

        #cursor {
            display: none !important;
        }

        body.is-hovering #cursor {
            display: none !important;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 200;
            mix-blend-mode: difference;
            color: #fff;
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -0.05em;
            font-size: 1.5rem;
        }

        .menu-trigger {
            font-family: var(--font-display);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-end;
        }

        .line {
            width: 30px;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        /* Menu */
        .fs-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--black);
            z-index: 150;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .fs-menu.active {
            visibility: visible;
            opacity: 1;
        }

            .fs-nav-list {
      text-align: center;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .fs-nav-item {
      margin: 15px 0;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .fs-nav-list {
        display: block;
      }
    }

        .fs-link {
            display: block;
            font-family: var(--font-main);
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 4rem);
            color: #fff;
            text-transform: uppercase;
            line-height: 1;
            transform: translateY(100%);
            transition: color 0.3s;
        }

        .fs-link:hover {
            color: transparent;
            -webkit-text-stroke: 1px #fff;
        }

        .fs-sub {
            display: block;
            font-family: var(--font-jp);
            font-size: 0.8rem;
            color: #888;
            margin-top: 5px;
            font-weight: 500;
            letter-spacing: 0.1em;
            transform: translateY(100%);
        }

        /* === Page Specific Styles === */
        .hero {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 40px 0;
        }

        .big-text {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 800;
            line-height: 1;
            transform: translateY(110%);
            will-change: transform;
        }

        .hero-line {
            overflow: hidden;
        }

        .text-blue {
            color: var(--blue);
        }

        section {
            padding: 80px 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .sec-header {
            margin-bottom: 50px;
            border-bottom: 2px solid #000;
            padding-bottom: 20px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
        }

        .sec-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            margin: 0;
            line-height: 1;
        }

        .sec-sub {
            font-family: var(--font-tech);
            color: var(--blue);
        }

        /* Message */
        .message-text {
            font-size: 1.1rem;
            line-height: 2;
            margin-bottom: 30px;
            font-weight: 500;
            text-align: justify;
        }

        .message-highlight {
            color: var(--blue);
            font-weight: 700;
            background: linear-gradient(transparent 70%, rgba(0, 68, 204, 0.1) 70%);
        }

        /* Profile Grid */
        .profile-container {
            display: flex;
            flex-direction: column;
            gap: 80px;
        }

        .profile-row {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .profile-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .profile-num {
            font-family: var(--font-display);
            font-size: 5rem;
            color: #eee;
            line-height: 1;
            flex-shrink: 0;
        }

        .profile-content {
            flex: 1;
            padding: 40px;
            background: #fafafa;
            border-radius: 8px;
            transition: 0.3s;
        }

        .profile-content:hover {
            background: #f0f0f0;
        }

        .profile-role {
            font-family: var(--font-tech);
            font-size: 0.8rem;
            color: var(--blue);
            margin-bottom: 10px;
            display: block;
        }

        .profile-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 15px;
        }

        .profile-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #555;
        }

        /* === NEW: WORK FLOW SECTION === */
        .flow-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 20px;
        }

        .flow-list::before {
            content: '';
            position: absolute;
            left: 34px;
            top: 0;
            width: 2px;
            height: 100%;
            background: #eee;
            z-index: 0;
        }

        .flow-item {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .flow-step {
            flex: 0 0 30px;
            width: 30px;
            height: 30px;
            background: var(--blue);
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: var(--font-tech);
            font-weight: 700;
            font-size: 0.8rem;
            margin-top: 5px;
            box-shadow: 0 0 0 10px #fff;
        }

        .flow-content {
            flex: 1;
            background: #fff;
            border: 1px solid #eee;
            padding: 30px;
            border-radius: 8px;
            transition: 0.3s;
        }

        .flow-content:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-color: var(--blue);
        }

        .flow-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .flow-title {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .flow-eng {
            font-family: var(--font-display);
            color: #ddd;
            font-weight: 800;
            font-size: 1.5rem;
        }

        .flow-desc {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.7;
        }

        /* === NEW: DELIVERABLES SECTION === */
        .deliverables-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .del-card {
            background: #fafafa;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid transparent;
            transition: 0.3s;
        }

        .del-card:hover {
            background: #fff;
            border-color: var(--blue);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .del-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .del-name {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 5px;
            display: block;
        }

        .del-note {
            font-size: 0.75rem;
            color: #888;
            display: block;
        }

        /* Outline Table */
        .outline-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .outline-table th,
        .outline-table td {
            padding: 20px 10px;
            border-bottom: 1px solid #ddd;
            text-align: left;
        }

        .outline-table th {
            width: 150px;
            font-family: var(--font-tech);
            font-weight: 700;
            color: #666;
        }

        /* Footer (共通) */
        footer {
            background: var(--black);
            color: #fff;
            padding: 100px 40px 40px;
            font-size: 14px;
            margin-top: 100px;
        }

        .footer-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            color: #555;
            font-family: var(--font-tech);
            font-size: 11px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 80px;
            gap: 40px;
        }

        .footer-brand {
            flex: 1.2;
            min-width: 300px;
        }

        .brand-logo-wrap {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 15px;
        }

        .brand-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: var(--black);
            border-radius: 4px;
            font-family: var(--font-display);
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .brand-text-group {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.05em;
            line-height: 1.2;
        }

        .brand-sub {
            font-family: var(--font-jp);
            font-size: 11px;
            color: #888;
            margin-top: 2px;
        }

        .brand-desc {
            font-family: var(--font-jp);
            font-size: 14px;
            line-height: 1.8;
            color: #ccc;
            border-left: 2px solid #333;
            padding-left: 20px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            justify-content: space-between;
            max-width: 700px;
        }

        .f-col h4 {
            font-family: var(--font-display);
            font-size: 16px;
            margin: 0 0 30px 0;
            color: #fff;
            letter-spacing: 0.05em;
        }

        .f-col ul li {
            margin-bottom: 15px;
            color: #888;
            font-family: var(--font-jp);
            font-size: 13px;
        }

        .f-col a {
            color: #888;
            font-family: var(--font-jp);
            font-size: 13px;
            transition: 0.3s;
            display: inline-block;
        }

        .f-col a:hover {
            color: var(--blue);
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            #cursor {
                display: none !important;
            }

            body,
            a,
            .hover-target {
                cursor: auto !important;
            }

            header {
                padding: 20px;
            }

            .hero {
                padding: 0 20px;
                height: 40vh;
            }

            section {
                padding: 60px 20px;
            }

            .profile-row {
                flex-direction: column;
                gap: 20px;
            }

            .profile-row:nth-child(even) {
                flex-direction: column;
            }

            .profile-num {
                font-size: 3rem;
            }

            .profile-content {
                padding: 25px;
            }

            .sec-title {
                font-size: 2rem;
            }

            .flow-list::before {
                left: 15px;
            }

            .flow-item {
                gap: 20px;
            }

            .flow-content {
                padding: 20px;
            }

            .flow-eng {
                font-size: 1rem;
            }

            .outline-table th {
                display: block;
                padding-bottom: 5px;
                color: var(--blue);
            }

            .outline-table td {
                display: block;
                padding-top: 0;
            }
        }

/* --- Styles from contact_form.php --- */
:root {
            --black: #0a0a0a;
            --white: #ffffff;
            --blue: #0044CC;
            --grid-color: rgba(0, 0, 0, 0.04);
            --font-main: 'Manrope', sans-serif;
            --font-display: 'Syncopate', sans-serif;
            --font-jp: 'Noto Sans JP', sans-serif;
            --font-tech: 'Space Mono', monospace;
        }

        body {
            margin: 0;
            background-color: var(--white);
            color: var(--black);
            font-family: var(--font-jp);
            overflow-x: hidden;
            cursor: auto;
            background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: auto;
        }

        * {
            box-sizing: border-box;
        }

        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-origin: top;
        }

        .loader-text {
            color: #fff;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            opacity: 0;
        }

        #cursor {
            display: none !important;
        }

        body.is-hovering #cursor {
            display: none !important;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 200;
            mix-blend-mode: difference;
            color: #fff;
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -0.05em;
            font-size: 1.5rem;
        }

        .menu-trigger {
            font-family: var(--font-display);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-end;
        }

        .line {
            width: 30px;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        .fs-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--black);
            z-index: 150;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .fs-menu.active {
            visibility: visible;
            opacity: 1;
        }

            .fs-nav-list {
      text-align: center;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .fs-nav-item {
      margin: 15px 0;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .fs-nav-list {
        display: block;
      }
    }

        .fs-link {
            display: block;
            font-family: var(--font-main);
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 4rem);
            color: #fff;
            text-transform: uppercase;
            line-height: 1;
            transform: translateY(100%);
            transition: color 0.3s;
        }

        .fs-link:hover {
            color: transparent;
            -webkit-text-stroke: 1px #fff;
        }

        .fs-sub {
            display: block;
            font-family: var(--font-jp);
            font-size: 0.8rem;
            color: #888;
            margin-top: 5px;
            font-weight: 500;
            letter-spacing: 0.1em;
            transform: translateY(100%);
        }

        .hero {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 40px 0;
            position: relative;
        }

        .hero-line {
            overflow: hidden;
        }

        .big-text {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1;
            transform: translateY(110%);
            will-change: transform;
            text-align: center;
        }

        .text-blue {
            color: var(--blue);
        }

        section {
            padding: 80px 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* --- NEW: FLOW & INFO --- */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .info-card {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 12px;
        }

        .info-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-title::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background: var(--blue);
            border-radius: 50%;
        }

        .step-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .step-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .step-num {
            font-family: var(--font-tech);
            font-weight: 700;
            color: var(--blue);
        }

        .price-ref {
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
        }

        .price-val {
            font-family: var(--font-tech);
            font-weight: 700;
        }

        /* Contact Methods */
        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .contact-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 280px;
            padding: 30px 20px;
            border: 1px solid #eee;
            background: #fff;
            text-align: center;
            transition: 0.3s;
            border-radius: 8px;
        }

        .contact-btn:hover {
            border-color: var(--blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .contact-btn h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .btn-link {
            font-weight: 700;
            border-bottom: 2px solid var(--black);
            padding-bottom: 5px;
            transition: 0.3s;
            font-size: 0.8rem;
            margin-top: 10px;
        }

        .form-container {
            background: #fff;
            padding: 60px;
            border-radius: 16px;
            border: 1px solid #eee;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            scroll-margin-top: 120px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-label {
            display: block;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: var(--font-tech);
            font-size: 0.9rem;
            color: var(--blue);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            background: #f9f9f9;
            font-family: var(--font-jp);
            font-size: 1rem;
            transition: 0.3s;
            border-radius: 4px;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--blue);
            background: #fff;
        }

        .form-textarea {
            height: 300px;
            resize: vertical;
        }

        /* Template Button */
        .template-trigger {
            background: #eee;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.8rem;
            cursor: pointer;
            margin-bottom: 10px;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .template-trigger:hover {
            background: #ddd;
            color: var(--black);
        }

        .submit-btn {
            display: block;
            width: 100%;
            padding: 20px;
            background: var(--black);
            color: #fff;
            border: none;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            letter-spacing: 0.1em;
        }

        .submit-btn:hover {
            background: var(--blue);
        }

        footer {
            background: var(--black);
            color: #fff;
            padding: 100px 40px;
            text-align: center;
            margin-top: 100px;
        }

        .footer-copy {
            margin-top: 20px;
            font-family: var(--font-tech);
            opacity: 0.5;
            font-size: 0.8rem;
        }

        /* --- モバイル専用調整 (768px以下) --- */
        @media (max-width: 768px) {

            /* カーソルバグ修正：カスタムカーソルを消してデフォルトに戻す */
            #cursor {
                display: none !important;
            }

            body,
            a,
            .hover-target,
            button,
            input,
            textarea {
                cursor: auto !important;
            }

            /* レイアウト調整 */
            header {
                padding: 20px;
            }

            section {
                padding: 60px 20px;
            }

            .contact-btn {
                width: 100%;
            }

            .form-container {
                padding: 30px;
            }
        }

/* --- Styles from FAQ.html --- */
/* === Base Styles (共通) === */
        :root {
            --black: #0a0a0a;
            --white: #ffffff;
            --blue: #0044CC;
            --gray-bg: #f5f5f5;
            --grid-color: rgba(0, 0, 0, 0.04);
            --font-jp: 'Noto Sans JP', sans-serif;
            --font-display: 'Syncopate', sans-serif;
            --font-tech: 'Space Mono', monospace;
        }

        body {
            margin: 0;
            background: var(--white);
            color: var(--black);
            font-family: var(--font-jp);
            line-height: 1.8;
            cursor: auto;
            overflow-x: hidden;
            background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: auto;
        }

        * {
            box-sizing: border-box;
        }

        /* Loader & Cursor */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-origin: top;
        }

        .loader-text {
            color: #fff;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            opacity: 0;
        }

        #cursor {
            display: none !important;
        }

        body.is-hovering #cursor {
            display: none !important;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 200;
            mix-blend-mode: difference;
            color: #fff;
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -0.05em;
            font-size: 1.5rem;
        }

        .menu-trigger {
            font-family: var(--font-display);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-end;
        }

        .line {
            width: 30px;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        /* Menu */
        .fs-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--black);
            z-index: 150;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .fs-menu.active {
            visibility: visible;
            opacity: 1;
        }

            .fs-nav-list {
      text-align: center;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .fs-nav-item {
      margin: 15px 0;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .fs-nav-list {
        display: block;
      }
    }

        .fs-link {
            display: block;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 4rem);
            color: #fff;
            text-transform: uppercase;
            line-height: 1;
            transform: translateY(100%);
            transition: color 0.3s;
        }

        .fs-link:hover {
            color: transparent;
            -webkit-text-stroke: 1px #fff;
        }

        .fs-sub {
            display: block;
            font-family: var(--font-jp);
            font-size: 0.8rem;
            color: #888;
            margin-top: 5px;
            font-weight: 500;
            letter-spacing: 0.1em;
            transform: translateY(100%);
        }

        /* === FAQ Page Styles === */
        .hero {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 40px 0;
        }

        .hero-line {
            overflow: hidden;
        }

        .big-text {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 800;
            line-height: 1;
            transform: translateY(110%);
            will-change: transform;
            text-align: center;
        }

        .text-blue {
            color: var(--blue);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px 100px;
        }

        .faq-category {
            margin-bottom: 80px;
        }

        .category-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 30px;
            border-bottom: 2px solid #000;
            padding-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .cat-sub {
            font-size: 0.8rem;
            font-family: var(--font-tech);
            color: var(--blue);
        }

        /* Accordion Item - Card Style */
        .faq-item {
            background-color: var(--gray-bg);
            border-radius: 8px;
            margin-bottom: 15px;
            transition: background-color 0.3s ease;
            overflow: hidden;
        }

        .faq-item:hover {
            background-color: #ededed;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            transition: 0.3s;
        }

        .faq-question:hover {
            color: var(--blue);
        }

        .q-text {
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.6;
        }

        .q-text::before {
            content: 'Q.';
            color: var(--blue);
            margin-right: 10px;
            font-family: var(--font-display);
            font-weight: 800;
        }

        .icon-plus {
            width: 20px;
            height: 20px;
            position: relative;
            flex-shrink: 0;
        }

        .icon-plus::before,
        .icon-plus::after {
            content: '';
            position: absolute;
            background: currentColor;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: 0.3s;
        }

        .icon-plus::before {
            width: 100%;
            height: 2px;
        }

        .icon-plus::after {
            width: 2px;
            height: 100%;
        }

        /* Active State */
        .faq-item.active .icon-plus::after {
            transform: translate(-50%, -50%) rotate(90deg);
            height: 0;
        }

        .faq-item.active .icon-plus {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-question {
            color: var(--blue);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            opacity: 1;
        }

        .a-inner {
            padding: 0 30px 30px 30px;
            color: #444;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .a-inner::before {
            content: 'A.';
            color: var(--black);
            margin-right: 10px;
            font-family: var(--font-display);
            font-weight: 800;
            display: inline-block;
        }

        strong {
            font-weight: 700;
            background: linear-gradient(transparent 70%, rgba(0, 68, 204, 0.1) 70%);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--black);
            color: #fff;
            text-align: center;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .cta-text {
            font-size: 1rem;
            margin-bottom: 40px;
            color: #ccc;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            display: inline-block;
            background: var(--blue);
            color: #fff;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-family: var(--font-tech);
            letter-spacing: 0.05em;
            transition: transform 0.3s, background 0.3s;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            background: #fff;
            color: var(--blue);
        }

        .cta-sub-link {
            display: inline-block;
            margin-top: 30px;
            color: #888;
            font-size: 0.85rem;
            text-decoration: underline;
            transition: color 0.3s;
            cursor: pointer;
        }

        .cta-sub-link:hover {
            color: #fff;
        }

        /* Modal Styles */
        .modal-wrap {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 999999;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .modal-wrap.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: #fff;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            border-radius: 12px;
            padding: 40px;
            position: relative;
            transform: scale(0.95);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
        }

        .modal-wrap.active .modal-content {
            transform: scale(1);
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 10;
        }

        .modal-close-btn::before,
        .modal-close-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 2px;
            background: #000;
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .modal-close-btn::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }

        .modal-textarea {
            width: 100%;
            height: 300px;
            background: #f4f4f4;
            border: 1px solid #ddd;
            border-radius: 6px;
            padding: 15px;
            font-family: var(--font-jp);
            font-size: 0.9rem;
            resize: none;
            overflow-y: auto;
            margin-bottom: 20px;
            color: #333;
        }

        .modal-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .modal-copy-btn {
            background: var(--blue);
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            font-family: var(--font-tech);
            transition: 0.3s;
        }

        .modal-copy-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--black);
            color: #fff;
            padding: 40px 40px;
            font-size: 14px;
        }

        .footer-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            color: #555;
            font-family: var(--font-tech);
            font-size: 11px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #cursor {
                display: none !important;
            }

            body,
            a,
            .hover-target,
            .faq-question,
            .modal-close-btn,
            .modal-copy-btn {
                cursor: auto !important;
            }

            header {
                padding: 20px;
            }

            .hero {
                padding: 0 20px;
                height: 40vh;
            }

            .faq-container {
                padding: 0 20px 80px;
            }

            .q-text {
                font-size: 0.9rem;
            }

            .category-title {
                font-size: 1.2rem;
            }

            .faq-question {
                padding: 20px;
            }

            .a-inner {
                padding: 0 20px 25px 20px;
            }

            .modal-content {
                padding: 30px 20px;
            }
        }

/* --- Styles from price.html --- */
/* === 1. Base Setup (Ryden Theme) === */
        :root {
            --black: #0a0a0a;
            --white: #ffffff;
            --blue: #0044CC;
            --grid-color: rgba(0, 0, 0, 0.04);
            --font-main: 'Manrope', sans-serif;
            --font-display: 'Syncopate', sans-serif;
            --font-jp: 'Noto Sans JP', sans-serif;
            --font-tech: 'Space Mono', monospace;
            --header-height: 80px;
            --nav-offset: 60px;
        }

        body {
            margin: 0;
            background-color: var(--white);
            color: var(--black);
            font-family: var(--font-jp);
            overflow-x: hidden;
            cursor: auto;
            background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        * {
            box-sizing: border-box;
        }

        /* Loader & Cursor */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-origin: top;
        }

        .loader-text {
            color: #fff;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            opacity: 0;
        }

        #cursor {
            display: none !important;
        }

        body.is-hovering #cursor {
            display: none !important;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 200;
            mix-blend-mode: difference;
            color: #fff;
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -0.05em;
            font-size: 1.5rem;
        }

        .menu-trigger {
            font-family: var(--font-display);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-end;
        }

        .line {
            width: 30px;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        .menu-trigger:hover .line:nth-child(2) {
            width: 20px;
        }

        /* Menu */
        .fs-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--black);
            z-index: 150;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .fs-menu.active {
            visibility: visible;
            opacity: 1;
        }

            .fs-nav-list {
      text-align: center;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .fs-nav-item {
      margin: 15px 0;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .fs-nav-list {
        display: block;
      }
    }

        .fs-link {
            display: block;
            font-family: var(--font-main);
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 4rem);
            color: #fff;
            text-transform: uppercase;
            line-height: 1;
            transform: translateY(100%);
            transition: color 0.3s;
        }

        .fs-link:hover {
            color: transparent;
            -webkit-text-stroke: 1px #fff;
        }

        .fs-sub {
            display: block;
            font-family: var(--font-jp);
            font-size: 0.8rem;
            color: #888;
            margin-top: 5px;
            font-weight: 500;
            letter-spacing: 0.1em;
            transform: translateY(100%);
        }

        /* === 2. Page Content === */
        /* Hero */
        .hero {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 40px 0;
            position: relative;
        }

        .hero-line {
            overflow: hidden;
        }

        .big-text {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1;
            transform: translateY(110%);
            will-change: transform;
            text-align: center;
        }

        .text-blue {
            color: var(--blue);
        }

        /* Section Layout */
        section {
            padding: 80px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 40px;
            border-left: 5px solid var(--blue);
            padding-left: 20px;
            font-family: var(--font-jp);
        }

        .sub-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 60px;
            margin-bottom: 30px;
            text-align: center;
        }

        /* --- PLAN FINDER (Expanded) --- */
        .plan-finder {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            margin-bottom: 60px;
        }

        .finder-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 800;
        }

        .finder-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .finder-btn {
            background: #fff;
            border: 2px solid #ddd;
            padding: 20px 20px;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 700;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80px;
            line-height: 1.4;
            font-size: 0.95rem;
        }

        .finder-btn:hover,
        .finder-btn.active {
            border-color: var(--blue);
            color: var(--blue);
            background: rgba(0, 68, 204, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 68, 204, 0.1);
        }

        .finder-result {
            margin-top: 40px;
            font-weight: 700;
            color: var(--blue);
            min-height: 30px;
            opacity: 0;
            transition: opacity 0.3s;
            background: #fff;
            display: inline-block;
            padding: 15px 30px;
            border-radius: 50px;
            border: 1px solid var(--blue);
        }

        .finder-result.show {
            opacity: 1;
        }

        /* --- MODEL CASES (Expanded) --- */
        .model-cases {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .case-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: 0.3s;
            display: flex;
            flex-direction: column;
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #ddd;
        }

        .case-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 5px;
        }

        .case-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--blue);
            font-family: var(--font-display);
        }

        .case-sub {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
            display: block;
            font-weight: 700;
        }

        .case-total {
            font-size: 1.6rem;
            font-weight: 800;
            font-family: var(--font-tech);
            margin: 15px 0;
            display: block;
            color: var(--black);
        }

        .case-breakdown {
            font-size: 0.85rem;
            color: #555;
            list-style: none;
            padding: 0;
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-top: auto;
            /* 下寄せ */
        }

        .case-breakdown li {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        /* Tables (Ryden Style) */
        .table-wrap {
            overflow-x: auto;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            background: #fff;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        th,
        td {
            padding: 20px;
            border: 1px solid #eee;
            text-align: center;
            vertical-align: middle;
            font-size: 0.95rem;
        }

        th {
            background: #f9f9f9;
            font-weight: 700;
            white-space: nowrap;
        }

        td.label {
            text-align: left;
            font-weight: 700;
            background: #fff;
            min-width: 150px;
        }

        /* Plan Columns */
        th.plan-header {
            background: #f0f4ff;
            color: var(--blue);
            font-size: 1.1rem;
        }

        /* Highlights */
        .check {
            color: #06c755;
            font-weight: bold;
            font-family: var(--font-tech);
        }

        .dash {
            color: #ccc;
        }

        .price {
            font-family: var(--font-tech);
            font-weight: 700;
            font-size: 1rem;
        }

        /* Target Audience Row */
        .target-text {
            font-size: 0.8rem;
            color: #666;
            line-height: 1.5;
            text-align: left;
        }

        /* Highlight Animation */
        @keyframes blink {
            0% {
                background-color: #fff4cc;
            }

            50% {
                background-color: #ffffff;
            }

            100% {
                background-color: #fff4cc;
            }
        }

        .highlight-blink {
            animation: blink 1s ease-in-out 3;
        }

        /* Link Jump */
        .jump {
            cursor: pointer;
            text-decoration: underline;
            text-decoration-color: #ccc;
            transition: 0.3s;
        }

        .jump:hover {
            color: var(--blue);
            text-decoration-color: var(--blue);
        }

        /* Option Toggle (Vanilla JS) */
        .toggle-header {
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            user-select: none;
            transition: 0.3s;
        }

        .toggle-header:hover {
            color: var(--blue);
        }

        .arrow {
            display: inline-block;
            transition: transform 0.3s;
        }

        .option-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            opacity: 0;
        }

        .option-content.open {
            opacity: 1;
        }

        /* Badge */
        .badge {
            display: inline-block;
            background: var(--blue);
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 20px;
            font-family: var(--font-tech);
            margin-top: 5px;
        }

        /* --- フッターデザイン --- */
        footer {
            background: var(--black);
            color: #fff;
            padding: 100px 40px 40px;
            font-size: 14px;
        }

        .footer-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 80px;
            gap: 40px;
        }

        .footer-brand {
            flex: 1.2;
            min-width: 300px;
        }

        .brand-logo-wrap {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 15px;
        }

        .brand-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: var(--black);
            border-radius: 4px;
            font-family: var(--font-display);
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .brand-text-group {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.05em;
            line-height: 1.2;
        }

        .brand-sub {
            font-family: var(--font-jp);
            font-size: 11px;
            color: #888;
            margin-top: 2px;
        }

        .brand-desc {
            font-family: var(--font-jp);
            font-size: 14px;
            line-height: 1.8;
            color: #ccc;
            border-left: 2px solid #333;
            padding-left: 20px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            justify-content: space-between;
            max-width: 700px;
        }

        .f-col h4 {
            font-family: var(--font-display);
            font-size: 16px;
            margin: 0 0 30px 0;
            color: #fff;
            letter-spacing: 0.05em;
        }

        .f-col ul li {
            margin-bottom: 15px;
            color: #888;
            font-family: var(--font-jp);
            font-size: 13px;
        }

        .f-col a {
            color: #888;
            font-family: var(--font-jp);
            font-size: 13px;
            transition: 0.3s;
            display: inline-block;
        }

        .f-col a:hover {
            color: var(--blue);
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #555;
            font-family: var(--font-tech);
            font-size: 11px;
        }

        @media (max-width: 1024px) {
            .footer-links {
                gap: 30px;
            }
        }

        @media (max-width: 900px) {
            .footer-top {
                flex-direction: column;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 40px;
                justify-content: flex-start;
            }

            .f-col {
                width: 45%;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {

            /* カーソルバグ修正 */
            #cursor {
                display: none !important;
            }

            body,
            a,
            .hover-target,
            button,
            .toggle-header,
            .jump,
            .finder-btn,
            .case-card {
                cursor: auto !important;
            }

            header {
                padding: 20px;
            }

            section {
                padding: 40px 20px;
            }

            .hero {
                height: 40vh;
            }

            th,
            td {
                padding: 15px 10px;
                font-size: 0.8rem;
            }

            /* プラン表のスマホ最適化 */
            .table-wrap {
                position: relative;
            }

            .table-wrap::after {
                content: '← スワイプで確認 →';
                display: block;
                text-align: center;
                font-size: 0.7rem;
                color: #888;
                padding: 8px 0;
            }

            table {
                min-width: 600px;
            }

            td.label,
            th:first-child {
                position: sticky;
                left: 0;
                background: #fff;
                z-index: 1;
                box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
            }

            th:first-child {
                background: #f9f9f9;
            }

            footer {
                padding: 60px 20px 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .f-col {
                width: 100%;
                margin-bottom: 20px;
            }

            .finder-options {
                grid-template-columns: 1fr;
            }
        }

/* --- Styles from privacy.html --- */
/* === Base Styles === */
        :root {
            --black: #0a0a0a;
            --white: #ffffff;
            --blue: #0044CC;
            --grid-color: rgba(0, 0, 0, 0.04);
            --font-jp: 'Noto Sans JP', sans-serif;
            --font-display: 'Syncopate', sans-serif;
            --font-tech: 'Space Mono', monospace;
        }

        body {
            margin: 0;
            background: var(--white);
            color: var(--black);
            font-family: var(--font-jp);
            line-height: 1.8;
            cursor: auto;
            overflow-x: hidden;
            background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: auto;
        }

        * {
            box-sizing: border-box;
        }

        /* --- ローダー & カーソル --- */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-origin: top;
        }

        .loader-text {
            color: #fff;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            opacity: 0;
        }

        #cursor {
            display: none !important;
        }

        body.is-hovering #cursor {
            display: none !important;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 200;
            mix-blend-mode: difference;
            color: #fff;
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -0.05em;
            font-size: 1.5rem;
        }

        .logo span {
            font-size: 0.8rem;
            font-family: var(--font-tech);
            opacity: 0.7;
            margin-left: 10px;
            font-weight: 400;
        }

        .menu-trigger {
            font-family: var(--font-display);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-end;
        }

        .line {
            width: 30px;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        /* Menu */
        .fs-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--black);
            z-index: 150;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .fs-menu.active {
            visibility: visible;
            opacity: 1;
        }

            .fs-nav-list {
      text-align: center;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .fs-nav-item {
      margin: 15px 0;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .fs-nav-list {
        display: block;
      }
    }

        .fs-link {
            display: block;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 4rem);
            color: #fff;
            text-transform: uppercase;
            line-height: 1;
            transform: translateY(100%);
            transition: color 0.3s;
        }

        .fs-link:hover {
            color: transparent;
            -webkit-text-stroke: 1px #fff;
        }

        .fs-sub {
            display: block;
            font-family: var(--font-jp);
            font-size: 0.8rem;
            color: #888;
            margin-top: 5px;
            font-weight: 500;
            letter-spacing: 0.1em;
            transform: translateY(100%);
        }

        /* Content */
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 150px 40px 80px;
        }

        .page-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 60px;
            text-align: center;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        /* アニメーション初期状態 */
        .js-fade-up {
            opacity: 0;
            transform: translateY(30px);
        }

        .policy-section {
            margin-bottom: 50px;
        }

        h2 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            border-left: 4px solid var(--blue);
            padding-left: 15px;
            display: flex;
            align-items: center;
        }

        .sec-num {
            font-family: var(--font-tech);
            color: var(--blue);
            margin-right: 10px;
            font-size: 1rem;
        }

        p {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 20px;
            text-align: justify;
        }

        ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }

        li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
            font-size: 0.95rem;
            color: #333;
        }

        li::before {
            content: '・';
            position: absolute;
            left: 0;
            color: var(--blue);
            font-weight: bold;
        }

        /* 連絡先ボックス */
        .contact-box {
            margin-top: 20px;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 4px;
            border: 1px solid #eee;
        }

        .contact-item {
            margin-bottom: 10px;
        }

        .contact-label {
            font-weight: 700;
            display: inline-block;
            min-width: 80px;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 50px 0;
            border-top: 1px solid #eee;
            margin-top: 100px;
            font-size: 0.8rem;
            color: #888;
            font-family: var(--font-tech);
        }

        /* Mobile */
        @media (max-width: 768px) {
            #cursor {
                display: none !important;
            }

            body,
            a,
            .hover-target {
                cursor: auto !important;
            }

            header {
                padding: 20px;
            }

            .container {
                margin: 40px auto;
                padding: 0 20px;
            }
        }

/* --- Styles from works.html --- */
:root {
            --black: #0a0a0a;
            --white: #ffffff;
            --blue: #0044CC;
            --grid-color: rgba(0, 0, 0, 0.04);
            --font-main: 'Manrope', sans-serif;
            --font-display: 'Syncopate', sans-serif;
            --font-jp: 'Noto Sans JP', sans-serif;
            --font-tech: 'Space Mono', monospace;
        }

        body {
            margin: 0;
            background-color: var(--white);
            color: var(--black);
            font-family: var(--font-jp);
            overflow-x: hidden;
            cursor: auto;
            background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: auto;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        * {
            box-sizing: border-box;
        }

        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            z-index: 99999;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-origin: top;
        }

        .loader-text {
            color: #fff;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            opacity: 0;
        }

        #cursor {
            display: none !important;
        }

        body.is-hovering #cursor {
            display: none !important;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 200;
            mix-blend-mode: difference;
            color: #fff;
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -0.05em;
            font-size: 1.5rem;
        }

        .menu-trigger {
            font-family: var(--font-display);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-end;
        }

        .line {
            width: 30px;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        .fs-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--black);
            z-index: 150;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .fs-menu.active {
            visibility: visible;
            opacity: 1;
        }

            .fs-nav-list {
      text-align: center;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .fs-nav-item {
      margin: 15px 0;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .fs-nav-list {
        display: block;
      }
    }

        .fs-link {
            display: block;
            font-family: var(--font-main);
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 4rem);
            color: #fff;
            text-transform: uppercase;
            line-height: 1;
            transform: translateY(100%);
            transition: color 0.3s;
        }

        .fs-link:hover {
            color: transparent;
            -webkit-text-stroke: 1px #fff;
        }

        .fs-sub {
            display: block;
            font-family: var(--font-jp);
            font-size: 0.8rem;
            color: #888;
            margin-top: 5px;
            font-weight: 500;
            letter-spacing: 0.1em;
            transform: translateY(100%);
        }

        .hero {
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 40px 0;
            text-align: center;
        }

        .hero-line {
            overflow: hidden;
        }

        .big-text {
            display: block;
            font-family: var(--font-display);
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 800;
            transform: translateY(110%);
            will-change: transform;
            line-height: 1;
        }

        .text-blue {
            color: var(--blue);
        }

        section {
            padding: 50px 40px 150px;
        }

        .works-container {
            display: flex;
            flex-direction: column;
            gap: 120px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .work-row {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            padding: 30px;
            border-radius: 10px;
            transition: 0.3s;
        }

        .work-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .work-img-link {
            flex: 1.5;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: #ddd;
            position: relative;
            display: block;
            border-radius: 6px;
        }

        .work-img-link img {
            width: 100%;
            height: 120%;
            object-fit: cover;
            object-position: top;
        }

        .work-info {
            flex: 1;
            position: relative;
            position: sticky;
            top: 100px;
        }

        .w-num {
            font-family: var(--font-display);
            font-size: 3rem;
            color: #eee;
            line-height: 1;
            display: block;
            margin-bottom: 5px;
        }

        .w-title {
            font-size: 2rem;
            font-weight: 800;
            margin: 0 0 10px;
            font-family: var(--font-jp);
            line-height: 1.2;
        }

        .w-cat {
            font-family: var(--font-tech);
            color: var(--blue);
            margin-bottom: 20px;
            display: block;
            letter-spacing: 0.05em;
            font-size: 0.9rem;
        }

        .concept-badge {
            display: inline-block;
            border: 1px solid #ccc;
            color: #888;
            font-size: 0.65rem;
            padding: 2px 8px;
            margin-left: 10px;
            vertical-align: middle;
            font-family: var(--font-tech);
            font-weight: 400;
        }

        /* --- Logic List Styles --- */
        .logic-list {
            margin-bottom: 30px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .logic-item {
            display: flex;
            margin-bottom: 15px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .logic-label {
            flex: 0 0 80px;
            font-family: var(--font-tech);
            font-weight: 700;
            font-size: 0.75rem;
            color: #aaa;
            padding-top: 3px;
        }

        .logic-content {
            color: #333;
            font-weight: 500;
        }

        /* 強調用 */
        .logic-item.impact .logic-label {
            color: var(--blue);
        }

        .logic-item.impact .logic-content {
            background: linear-gradient(transparent 70%, rgba(0, 68, 204, 0.1) 70%);
        }

        .w-btn {
            border-bottom: 2px solid currentColor;
            padding-bottom: 5px;
            font-weight: 700;
            font-size: 0.9rem;
            font-family: var(--font-display);
            letter-spacing: 0.05em;
            transition: 0.3s;
            display: inline-block;
            margin-top: 10px;
        }

        .w-btn:hover {
            color: var(--blue);
            transform: translateX(5px);
        }

        /* --- おすすめプラン強調スタイル --- */
        .work-row.recommended {
            border: 2px solid var(--blue);
            background-color: rgba(0, 68, 204, 0.02);
            position: relative;
        }

        .recommend-flag {
            position: absolute;
            top: -15px;
            left: 20px;
            background: var(--blue);
            color: #fff;
            padding: 5px 15px;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            border-radius: 4px;
            z-index: 10;
        }

        .work-row:nth-child(even) .recommend-flag {
            left: auto;
            right: 20px;
        }

        /* Screen Reader Only (アクセシビリティ用) */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Footer */
        footer {
            background: var(--black);
            color: #fff;
            padding: 100px 40px 40px;
            font-size: 14px;
        }

        .footer-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 80px;
            gap: 40px;
        }

        .footer-brand {
            flex: 1.2;
            min-width: 300px;
        }

        .brand-logo-wrap {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 15px;
        }

        .brand-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: var(--black);
            border-radius: 4px;
            font-family: var(--font-display);
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .brand-text-group {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.05em;
            line-height: 1.2;
        }

        .brand-sub {
            font-family: var(--font-jp);
            font-size: 11px;
            color: #888;
            margin-top: 2px;
        }

        .brand-desc {
            font-family: var(--font-jp);
            font-size: 14px;
            line-height: 1.8;
            color: #ccc;
            border-left: 2px solid #333;
            padding-left: 20px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            justify-content: space-between;
            max-width: 700px;
        }

        .f-col h4 {
            font-family: var(--font-display);
            font-size: 16px;
            margin: 0 0 30px 0;
            color: #fff;
            letter-spacing: 0.05em;
        }

        .f-col ul li {
            margin-bottom: 15px;
            color: #888;
            font-family: var(--font-jp);
            font-size: 13px;
        }

        .f-col a {
            color: #888;
            font-family: var(--font-jp);
            font-size: 13px;
            transition: 0.3s;
            display: inline-block;
        }

        .f-col a:hover {
            color: var(--blue);
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #555;
            font-family: var(--font-tech);
            font-size: 11px;
        }

        @media (max-width: 1024px) {
            .footer-links {
                gap: 30px;
            }
        }

        @media (max-width: 900px) {
            .footer-top {
                flex-direction: column;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 40px;
                justify-content: flex-start;
            }

            .f-col {
                width: 45%;
            }

            .work-row,
            .work-row:nth-child(even) {
                flex-direction: column;
                gap: 30px;
            }

            .work-info {
                width: 100%;
                position: static;
            }

            /* モバイルでの強調表示調整 */
            .work-row.recommended {
                border-width: 1px;
            }

            .recommend-flag {
                left: 10px;
                font-size: 0.7rem;
            }

            .work-row:nth-child(even) .recommend-flag {
                right: auto;
                left: 10px;
            }
        }

        @media (max-width: 768px) {
            #cursor {
                display: none !important;
            }

            body,
            a,
            .hover-target,
            button {
                cursor: auto !important;
            }

            header {
                padding: 20px;
            }

            footer {
                padding: 60px 20px 20px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .f-col {
                width: 100%;
                margin-bottom: 20px;
            }

            section {
                padding: 40px 20px;
            }
        }

/* === AI訴求セクション === */
.ai-power-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0d1b3e 100%);
  color: #fff;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.ai-power-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 68, 204, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 68, 204, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.ai-power-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.ai-power-badge {
  display: inline-block;
  background: rgba(0, 68, 204, 0.2);
  border: 1px solid rgba(0, 68, 204, 0.4);
  color: #6fa8ff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.ai-power-title {
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ai-power-title .text-blue {
  color: #6fa8ff;
}

.ai-power-desc {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}

.ai-power-desc strong {
  color: #fff;
}

.ai-power-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.ai-feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.ai-feature-item:hover {
  background: rgba(0, 68, 204, 0.15);
  border-color: rgba(0, 68, 204, 0.4);
  transform: translateY(-4px);
}

.ai-feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 68, 204, 0.2);
  border-radius: 12px;
}

.ai-feature-item h4 {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}

.ai-feature-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* AI訴求セクション レスポンシブ */
@media (max-width: 768px) {
  .ai-power-section {
    padding: 60px 20px;
  }

  .ai-power-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-feature-item {
    padding: 20px;
  }

  .ai-power-desc br {
    display: none;
  }
}