    html { scroll-behavior: smooth; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #111111;
      --bg: #f6f6f6;
      --gray: #666666;
      --white: #ffffff;
      --border: #dddddd;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: var(--bg);
      color: var(--black);
      font-size: 16px;
      line-height: 2;
    }

    /* ========== HEADER ========== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: var(--white);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 64px;
    }

    .logo {
      text-decoration: none;
      color: var(--black);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .logo small {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
      text-align: center;
      line-height: 1;
    }
    .logo strong {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      font-weight: 700;
      text-align: center;
      line-height: 1;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 48px;
    }
    nav a {
      text-decoration: none;
      color: var(--black);
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      font-weight: 700;
    }
    .nav-cta {
      background: var(--black);
      color: var(--white) !important;
      padding: 0 34px;
      height: 64px;
      display: flex;
      align-items: center;
      margin-right: -40px;
      font-size: 15px !important;
      font-weight: 700 !important;
    }

    /* ========== SECTIONS ========== */
    main { padding-top: 64px; }

    section { padding: 80px max(40px, calc((100% - 960px) / 2)); }

    .section-label {
      display: block;
    }
    .section-title-block {
      display: flex;
      flex-direction: column;
      gap: 4px;
      border-left: 12px solid var(--black);
      padding-left: 24px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .section-tag {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1.2;
      color: var(--black);
    }
    .section-en {
      font-family: 'Montserrat', sans-serif;
      font-size: 56px;
      font-weight: 800;
      line-height: 1.2;
    }
    .section-content {
      flex: 1;
    }

    /* ========== HERO ========== */
    #hero {
      min-height: calc(100vh - 64px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      padding: 84px max(40px, calc((100% - 960px) / 2)) 80px;
    }
    .hero-inner {
      border-left: 12px solid var(--black);
      padding-left: 24px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .hero-text-block {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .hero-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
    }
    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 96px;
      font-weight: 800;
      line-height: 1;
    }
    .hero-desc {
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--black);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--black);
      color: var(--white);
      padding: 16px 40px;
      text-decoration: none;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.05em;
    }
    .hero-stats {
      display: flex;
      gap: 64px;
      width: 100%;
      justify-content: space-between;
    }
    .stat-label {
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--black);
      margin-bottom: 4px;
    }
    .stat-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 80px;
      font-weight: 700;
      line-height: 1;
    }
    .stat-unit {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 40px;
      font-weight: 700;
    }
    .stat-note {
      font-size: 16px;
      font-weight: 400;
      color: var(--gray);
      line-height: 1.4;
      margin-top: 4px;
    }

    /* ========== SLIDER ========== */
    #slider {
      padding: 0;
      overflow: hidden;
    }
    @keyframes scrollLeft {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .slider-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: scrollLeft 40s linear infinite;
    }
    .slider-track:hover {
      animation-play-state: paused;
    }
    .slide {
      width: 33.333vw;
      aspect-ratio: 3/2;
      overflow: hidden;
      flex-shrink: 0;
      border-radius: 8px;
      display: block;
      margin: 0 3.333vw 0 0;
      padding: 0;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(20%);
    }
    .slide-placeholder {
      background: #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      font-size: 13px;
    }

    /* ========== SERVICE ========== */
    #service { background: var(--white); }
    .service-item {
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }
    .service-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .service-item h3 {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .service-item p {
      font-size: 16px;
      line-height: 2;
      color: var(--gray);
      margin-bottom: 16px;
    }
    .check-list {
      list-style: none;
    }
    .check-list li {
      font-size: 16px;
      padding: 4px 0;
    }
    .check-list li::before {
      content: "✔ ";
      font-size: 12px;
    }

    /* ========== WORKS ========== */
    #works { background: var(--bg); }
    .works-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .work-card {
      background: var(--white);
      padding: 32px 40px;
      display: block;
      text-decoration: none;
      color: var(--black);
      border: 1px solid var(--border);
    }
    .works-list {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .work-meta {
      font-size: 18px;
      color: var(--black);
      margin-bottom: 12px;
    }
    .work-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 16px;
    }
    .tag {
      font-size: 11px;
      border: 1px solid var(--border);
      padding: 2px 10px;
      background: var(--bg);
    }
    .work-title {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1.6;
    }
    .works-more {
      margin-top: 32px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--black);
      font-size: 16px;
      font-weight: 700;
      border-bottom: 1px solid var(--black);
      padding-bottom: 2px;
    }

    /* ========== ABOUT ========== */
    #about { background: var(--white); }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .about-photo {
      width: 100%;
      aspect-ratio: 3/2;
      object-fit: cover;
      filter: grayscale(100%);
      background: #ccc;
    }
    .about-photo-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 13px;
    }
    .about-name-en {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.1;
      margin-top: 0;
      margin-bottom: 16px;
    }
    .about-role {
      font-size: 13px;
      color: var(--gray);
      font-style: italic;
      margin-bottom: 24px;
    }
    .about-text {
      font-size: 16px;
      line-height: 2;
      color: var(--gray);
      margin-bottom: 16px;
    }
    .about-skills h4 {
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 12px;
      margin-top: 24px;
    }
    .skill-list {
      list-style: disc;
      padding-left: 20px;
    }
    .skill-list li {
      font-size: 16px;
      padding: 2px 0;
    }

    /* ========== PRICE ========== */
    #price { background: var(--bg); }
    .price-top {
      margin-bottom: 48px;
    }
    .price-main-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 40px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 8px;
    }
    .price-unit {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--gray);
      margin-left: 6px;
    }
    .price-main-label {
      font-size: 16px;
      color: var(--gray);
      margin-bottom: 24px;
    }
    .price-checks {
      list-style: none;
      margin-bottom: 32px;
    }
    .price-checks li {
      font-size: 16px;
      padding: 4px 0;
    }
    .price-checks li::before { content: ""; }
    .price-checks li {
      padding: 4px 0 4px 32px;
      position: relative;
    }
    .price-checks li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      background: var(--black);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-size: 11px;
      background-repeat: no-repeat;
      background-position: center;
    }
    .price-plans {
      border-top: 1px solid var(--border);
    }
    .price-plan {
      padding: 32px 0;
      border-bottom: 1px solid var(--border);
    }
    .price-plan h4 {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0;
      line-height: 2;
      margin-bottom: 8px;
    }
    .price-plan ul {
      list-style: disc;
      padding-left: 20px;
    }
    .price-plan ul li {
      font-size: 16px;
      padding: 2px 0;
    }
    .price-note {
      font-size: 16px;
      line-height: 2;
      margin-top: 32px;
    }

    /* ========== FAQ ========== */
    #faq { background: var(--white); }
    .faq-list {
      display: flex;
      flex-direction: column;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 24px 0;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.05em;
      font-family: 'Noto Sans JP', sans-serif;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-q::after {
      content: "▾";
      font-size: 18px;
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .faq-item.open .faq-q::after { transform: rotate(180deg); }
    .faq-a {
      display: none;
      font-size: 16px;
      line-height: 2;
      color: var(--gray);
      padding-bottom: 24px;
    }
    .faq-item.open .faq-a { display: block; }

    /* ========== CONTACT ========== */
    #contact { background: var(--bg); }
    .contact-desc {
      font-size: 16px;
      line-height: 2;
      margin-bottom: 40px;
    }
    .form-group {
      margin-bottom: 24px;
    }
    .form-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .badge {
      font-size: 10px;
      background: var(--black);
      color: var(--white);
      padding: 2px 8px;
    }
    .badge-opt {
      font-size: 10px;
      border: 1px solid var(--gray);
      color: var(--gray);
      padding: 2px 8px;
    }
    .form-input {
      width: 100%;
      padding: 0 16px;
      height: 54px;
      border: 1px solid var(--gray);
      background: var(--white);
      font-size: 16px;
      font-family: 'Noto Sans JP', sans-serif;
      outline: none;
    }
    .form-input:focus { border-color: #707070; }
    textarea.form-input { height: 200px; padding: 16px; resize: vertical; }
    .radio-group { display: flex; flex-direction: column; gap: 8px; }
    .radio-group label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      cursor: pointer;
    }
    .form-note {
      font-size: 12px;
      color: var(--gray);
      text-align: center;
      margin-bottom: 16px;
    }
    .submit-btn {
      width: 100%;
      background: var(--black);
      color: var(--white);
      border: none;
      height: 50px;
      font-size: 15px;
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
      cursor: pointer;
    }
    .form-error {
      color: #c00;
      font-size: 13px;
      margin-top: 6px;
      display: none;
    }
    .form-input.has-error {
      border-color: #c00;
    }
    .submit-btn:hover { opacity: 0.85; }
    .form-thanks {
      display: none;
      padding: 40px 0;
      text-align: center;
    }
    .form-thanks p {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .form-thanks small {
      font-size: 14px;
      color: var(--gray);
    }

    /* ========== FOOTER ========== */
    footer {
      text-align: center;
      padding: 40px;
      font-size: 12px;
      color: var(--gray);
      border-top: 1px solid var(--border);
    }

    /* ========== WORKS DETAIL ========== */
    .work-head { background: var(--bg); }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 32px;
    }
    .breadcrumb a {
      color: var(--gray);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }
    .work-detail-title {
      font-size: 36px;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .work-detail-label {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 8px;
    }
    .work-lead {
      border-left: 4px solid var(--black);
      padding-left: 20px;
      margin-top: 32px;
    }
    .work-lead-label {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.6;
    }
    .work-lead-text {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.8;
    }

    .work-stats-section {
      background: var(--white);
      padding-top: 56px;
      padding-bottom: 56px;
    }
    .work-stats { gap: 40px; }
    .work-stats .stat-label { font-size: 16px; }
    .work-stats .stat-num { font-size: 56px; }
    .work-stats .stat-unit { font-size: 24px; }
    .work-stats .stat-note { font-size: 14px; }
    .work-stats-sm { gap: 32px; }
    .work-stats-sm .stat-num { font-size: 34px; }
    .work-stats-2 {
      justify-content: flex-start;
      gap: 120px;
    }

    .work-overview { background: var(--bg); }
    .overview-table {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 0 32px;
    }
    .overview-row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 24px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }
    .overview-row:last-child { border-bottom: none; }
    .overview-row dt {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.8;
    }
    .overview-row dd {
      font-size: 16px;
      line-height: 1.8;
    }

    .work-challenge { background: var(--white); }

    .work-approach { background: var(--bg); }
    .approach-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .approach-item {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 32px 40px;
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 24px;
      align-items: start;
    }
    .approach-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 44px;
      font-weight: 700;
      line-height: 1.4;
    }
    .approach-body h3 {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.6;
      margin-bottom: 8px;
    }
    .approach-body p { font-size: 16px; }
    .approach-points {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 16px;
    }
    .approach-points li {
      font-size: 16px;
      padding: 2px 0;
    }

    .work-result { background: var(--white); }
    .result-table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid var(--border);
    }
    .result-table th,
    .result-table td {
      text-align: left;
      padding: 16px 24px;
      font-size: 16px;
      line-height: 1.8;
      border-bottom: 1px solid var(--border);
    }
    .result-table thead th {
      background: var(--bg);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--gray);
    }
    .result-table tbody th { font-weight: 700; }
    .result-table tbody td { font-weight: 700; }
    .result-table tbody tr:last-child th,
    .result-table tbody tr:last-child td { border-bottom: none; }
    .result-note {
      margin-top: 16px;
      font-size: 15px;
      color: var(--gray);
      line-height: 1.8;
    }
    .result-point {
      margin-top: 32px;
      background: var(--bg);
      border-left: 12px solid var(--black);
      padding: 28px 32px;
    }
    .result-point h3 {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.8;
      margin-bottom: 4px;
    }
    .result-point p { font-size: 16px; }

    .work-other { background: var(--bg); }
    .other-works-title {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .other-works {
      border-top: 1px solid var(--border);
    }
    .other-work {
      display: block;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      color: var(--black);
    }
    .other-work-meta {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.6;
    }
    .other-work-title {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.8;
    }
    .other-work-arrow {
      font-size: 14px;
      font-weight: 400;
      margin-left: 8px;
    }

    .work-cta-section { background: var(--bg); }
    .work-cta {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 56px 40px;
      text-align: center;
    }
    .work-cta-title {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.6;
      margin-bottom: 8px;
    }
    .work-cta-desc {
      font-size: 16px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 24px;
    }
