@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&display=swap');

:root {
    --pump-white: #FCFAF8;
    --hydraulic-mist: #F4F2EC;
    --chrome-gray: #E4E2DC;
    --industrial-black: #080808;
    --pump-charcoal: #0A0A14;
    --torque-bronze: #7D5519;
    --deep-bronze: #5A4015;
    --steel-gray: #6A6258;
    --panel-width: 72px;
    --strip-height: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.96;
    color: var(--pump-charcoal);
    background-color: var(--pump-white);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

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

.font-brutal {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    letter-spacing: 0.001em;
    line-height: 0.54;
}

.font-brutal-bold {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.font-brutal-heavy {
    font-weight: 800;
}

.text-industrial {
    color: var(--industrial-black);
}

.text-charcoal {
    color: var(--pump-charcoal);
}

.text-bronze {
    color: var(--torque-bronze);
}

.text-steel {
    color: var(--steel-gray);
}

.bg-pump-white {
    background-color: var(--pump-white);
}

.bg-hydraulic {
    background-color: var(--hydraulic-mist);
}

.bg-chrome {
    background-color: var(--chrome-gray);
}

.bg-industrial {
    background-color: var(--industrial-black);
}

.bg-bronze {
    background-color: var(--torque-bronze);
}

.bg-deep-bronze {
    background-color: var(--deep-bronze);
}

.border-bronze {
    border-color: var(--torque-bronze);
}

.border-chrome {
    border-color: var(--chrome-gray);
}

.border-industrial {
    border-color: var(--industrial-black);
}

.btn-bronze {
    background: linear-gradient(135deg, var(--torque-bronze), var(--deep-bronze));
    color: #FFF;
    border: none;
    border-radius: 2px;
    padding: 26px 54px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 26px 88px rgba(125, 85, 25, 0.32);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.btn-bronze:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 100px rgba(125, 85, 25, 0.4);
}

.btn-bronze-small {
    padding: 14px 32px;
    font-size: 12px;
    box-shadow: 0 8px 24px rgba(125, 85, 25, 0.24);
}

.btn-bronze-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(125, 85, 25, 0.32);
}

.btn-outline {
    background: transparent;
    color: var(--industrial-black);
    border: 2px solid var(--industrial-black);
    border-radius: 0;
    padding: 14px 28px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.28s ease;
}

.btn-outline:hover {
    background: var(--industrial-black);
    color: var(--pump-white);
}

.btn-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    padding: 12px 20px;
}

.floating-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--panel-width);
    height: 100vh;
    background: rgba(252, 250, 248, 0.95);
    border-right: 1px solid rgba(125, 85, 25, 0.12);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.34s ease-out;
}

.panel-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
}

.panel-visual {
    width: 32px;
    height: 32px;
    color: var(--torque-bronze);
}

.panel-domain {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 9px;
    color: var(--industrial-black);
    letter-spacing: 0.12em;
    line-height: 1.24;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.panel-company {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 6px;
    color: var(--pump-charcoal);
    margin-top: 2px;
    line-height: 1.38;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.panel-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 16px;
}

.nav-item {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: var(--pump-charcoal);
    cursor: pointer;
    transition: all 0.20s ease;
    padding: 8px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
}

.nav-item:hover {
    color: var(--torque-bronze);
}

.nav-item.active {
    color: var(--torque-bronze);
    font-weight: 700;
}

.panel-cta {
    margin-top: auto;
    margin-bottom: 16px;
    padding: 12px;
    background: linear-gradient(135deg, var(--torque-bronze), var(--deep-bronze));
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 8px;
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(125, 85, 25, 0.24);
    cursor: pointer;
    transition: all 0.28s ease;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.panel-cta:hover {
    transform: rotate(180deg) translateY(-2px);
    box-shadow: 0 12px 28px rgba(125, 85, 25, 0.32);
}

.mobile-strip {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--strip-height);
    background: rgba(252, 250, 248, 0.98);
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid rgba(125, 85, 25, 0.10);
}

.strip-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.strip-domain {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--industrial-black);
}

.strip-company {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 9px;
    color: var(--pump-charcoal);
}

.hamburger {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    z-index: 9999;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--industrial-black);
    margin: 5px 0;
    transition: all 0.28s ease;
    display: block;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--pump-white);
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

.mobile-menu-item {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--industrial-black);
    cursor: pointer;
    transition: all 0.20s ease;
    text-align: center;
}

.mobile-menu-item:hover {
    color: var(--torque-bronze);
}

.menu-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--industrial-black);
}

.main-content {
    margin-left: var(--panel-width);
    padding-left: 0;
}

.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 100px 80px 80px;
    position: relative;
    overflow: hidden;
    background: var(--pump-white);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    color: var(--industrial-black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

.hero-title span {
    display: inline-block;
    animation: heroStagger 0.6s ease-out backwards;
}

@keyframes heroStagger {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--pump-charcoal);
    max-width: 540px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 0.4s backwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-secondary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--industrial-black);
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4/5;
    position: relative;
    background: var(--chrome-gray);
    overflow: hidden;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid var(--torque-bronze);
    z-index: -1;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--steel-gray);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--steel-gray);
    border-bottom: 2px solid var(--steel-gray);
    transform: rotate(45deg);
}

.section {
    padding: 120px 80px;
    position: relative;
}

.section-dark {
    background-color: var(--hydraulic-mist);
}

.section-chrome {
    background-color: var(--chrome-gray);
}

.section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--industrial-black);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-size: 14px;
    color: var(--steel-gray);
    max-width: 600px;
    margin-bottom: 40px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--pump-white);
    border: 2px solid var(--chrome-gray);
    padding: 40px;
    transition: all 0.28s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    border-color: var(--torque-bronze);
    z-index: 96;
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(125, 85, 25, 0.12);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hydraulic-mist);
    color: var(--torque-bronze);
    font-size: 24px;
}

.service-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--industrial-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-desc {
    font-size: 13px;
    color: var(--steel-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--torque-bronze);
    letter-spacing: 0.1em;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--pump-white);
    border: 2px solid var(--chrome-gray);
    padding: 48px 32px;
    text-align: center;
    transition: all 0.28s ease;
    cursor: pointer;
}

.advantage-card:hover {
    flex-grow: 1.26;
    border-color: var(--torque-bronze);
    z-index: 96;
    box-shadow: 0 20px 60px rgba(125, 85, 25, 0.16);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hydraulic-mist);
    color: var(--torque-bronze);
    font-size: 28px;
}

.advantage-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--industrial-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.advantage-text {
    font-size: 13px;
    color: var(--steel-gray);
    line-height: 1.7;
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--chrome-gray);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: all 0.28s ease;
}

.process-step:hover {
    z-index: 96;
}

.process-node {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--torque-bronze);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.28s ease;
}

.process-step:hover .process-node {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(125, 85, 25, 0.32);
}

.process-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--industrial-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 11px;
    color: var(--steel-gray);
    line-height: 1.6;
}

.stats-marquee {
    overflow: hidden;
    padding: 40px 0;
}

.marquee-track {
    display: flex;
    gap: 56px;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--industrial-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-icon {
    color: var(--torque-bronze);
    font-size: 20px;
}

.team-canvas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-member {
    background: var(--pump-white);
    border: 2px solid var(--chrome-gray);
    padding: 32px;
    text-align: center;
    cursor: grab;
    transition: all 0.28s ease;
}

.team-member:hover {
    border-color: var(--torque-bronze);
    z-index: 96;
}

.team-member:active {
    cursor: grabbing;
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 0;
    overflow: hidden;
    background: var(--hydraulic-mist);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--industrial-black);
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    color: var(--torque-bronze);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.team-desc {
    font-size: 12px;
    color: var(--steel-gray);
    line-height: 1.6;
}

.faq-accordion {
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--chrome-gray);
    margin-bottom: -2px;
    transition: all 0.28s ease;
}

.faq-item:hover {
    z-index: 96;
    border-color: var(--torque-bronze);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    background: var(--pump-white);
    transition: all 0.28s ease;
}

.faq-question:hover {
    background: var(--hydraulic-mist);
}

.faq-question-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--industrial-black);
    letter-spacing: 0.02em;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--torque-bronze);
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.34s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.34s ease-out cubic;
    background: var(--pump-white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 13px;
    color: var(--steel-gray);
    line-height: 1.8;
    border-top: 1px solid var(--chrome-gray);
    padding-top: 20px;
}

.reviews-carousel {
    position: relative;
    perspective: 1200px;
    height: 400px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card {
    position: absolute;
    width: 320px;
    height: 360px;
    background: var(--pump-white);
    border: 2px solid var(--chrome-gray);
    padding: 32px;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
}

.review-card:hover {
    z-index: 100;
}

.review-card.active {
    z-index: 100;
    transform: translateX(0) scale(1.15);
    box-shadow: 0 24px 80px rgba(125, 85, 25, 0.2);
}

.review-card.prev {
    transform: translateX(-200px) scale(0.85);
    z-index: 50;
    opacity: 0.6;
}

.review-card.next {
    transform: translateX(200px) scale(0.85);
    z-index: 50;
    opacity: 0.6;
}

.review-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 0;
    overflow: hidden;
    background: var(--hydraulic-mist);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    color: var(--torque-bronze);
    font-size: 16px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 13px;
    color: var(--pump-charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-author {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--industrial-black);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--pump-white);
    border: 2px solid var(--chrome-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.28s ease;
    color: var(--industrial-black);
    font-size: 18px;
}

.carousel-btn:hover {
    background: var(--torque-bronze);
    border-color: var(--torque-bronze);
    color: #FFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: var(--hydraulic-mist);
}

.contact-info-item {
    margin-bottom: 32px;
}

.contact-info-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 10px;
    color: var(--steel-gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.contact-info-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--industrial-black);
}

.contact-map {
    width: 100%;
    height: 200px;
    background: var(--chrome-gray);
    margin-top: 24px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    padding: 40px;
    background: var(--pump-white);
    border: 2px solid var(--chrome-gray);
}

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

.form-label {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--industrial-black);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--pump-white);
    border: 2px solid rgba(125, 85, 25, 0.12);
    border-radius: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--pump-charcoal);
    transition: all 0.28s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--torque-bronze);
}

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

.form-submit {
    width: 100%;
    padding: 18px 32px;
}

.footer {
    background: var(--chrome-gray);
    border-top: 3px solid var(--torque-bronze);
    padding: 80px 80px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    color: var(--torque-bronze);
}

.footer-desc {
    font-size: 13px;
    color: var(--steel-gray);
    line-height: 1.7;
}

.footer-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--industrial-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 13px;
    color: var(--steel-gray);
    transition: color 0.20s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--torque-bronze);
}

.footer-contact-item {
    margin-bottom: 16px;
}

.footer-contact-label {
    font-size: 10px;
    color: var(--steel-gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}

.footer-contact-value {
    font-size: 13px;
    color: var(--industrial-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(125, 85, 25, 0.12);
}

.footer-copyright {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--industrial-black);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.footer-special {
    font-size: 10px;
    color: var(--steel-gray);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: calc(var(--panel-width) + 24px);
    max-width: 480px;
    background: var(--pump-white);
    border: 2px solid var(--torque-bronze);
    padding: 24px;
    z-index: 9990;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    display: block;
}

.cookie-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--industrial-black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-text {
    font-size: 12px;
    color: var(--steel-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.28s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cookie-accept {
    background: var(--torque-bronze);
    color: #FFF;
    border: none;
}

.cookie-accept:hover {
    background: var(--deep-bronze);
}

.cookie-decline {
    background: transparent;
    color: var(--industrial-black);
    border: 2px solid var(--industrial-black);
}

.cookie-decline:hover {
    background: var(--industrial-black);
    color: var(--pump-white);
}

.hero-small {
    min-height: 52vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 60px 100px 60px 80px;
    position: relative;
    overflow: hidden;
    background: var(--pump-white);
}

.hero-small .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.blob-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.5;
}

.blob-1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: 10%;
    background: rgba(125, 85, 25, 0.04);
    animation: blobFloat1 38s ease-in-out infinite;
}

.blob-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 5%;
    background: rgba(95, 65, 35, 0.03);
    animation: blobFloat2 45s ease-in-out infinite;
}

.blob-3 {
    width: 240px;
    height: 240px;
    top: 30%;
    left: 60%;
    background: rgba(165, 115, 65, 0.03);
    animation: blobFloat3 52s ease-in-out infinite;
}

.blob-4 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 30%;
    background: rgba(185, 135, 75, 0.02);
    animation: blobFloat4 40s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }
    75% {
        transform: translate(40px, 20px) scale(1.02);
    }
}

@keyframes blobFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-40px, 30px) scale(1.08);
    }
    66% {
        transform: translate(20px, -20px) scale(0.92);
    }
}

@keyframes blobFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(50px, 40px) scale(1.1);
    }
    40% {
        transform: translate(-30px, -30px) scale(0.9);
    }
    60% {
        transform: translate(20px, 50px) scale(1.05);
    }
    80% {
        transform: translate(-50px, -20px) scale(0.95);
    }
}

@keyframes blobFloat4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -40px) scale(1.08);
    }
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.related-card {
    background: var(--pump-white);
    border: 2px solid var(--chrome-gray);
    padding: 32px;
    transition: all 0.28s ease;
    cursor: pointer;
}

.related-card:hover {
    border-color: var(--torque-bronze);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(125, 85, 25, 0.12);
}

.related-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--industrial-black);
    margin-bottom: 8px;
}

.related-desc {
    font-size: 12px;
    color: var(--steel-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--chrome-gray);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    display: block;
    padding-top: 75%;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(8, 8, 8, 0.85));
    color: #FFF;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.gallery-meta {
    font-size: 11px;
    opacity: 0.8;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--industrial-black);
    margin-top: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-content h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--industrial-black);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 13px;
    color: var(--pump-charcoal);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-content li {
    font-size: 13px;
    color: var(--pump-charcoal);
    line-height: 1.8;
    margin-bottom: 8px;
}

.thankyou-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px;
}

.thankyou-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: var(--hydraulic-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--torque-bronze);
    font-size: 48px;
}

.thankyou-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--industrial-black);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.thankyou-text {
    font-size: 14px;
    color: var(--pump-charcoal);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .hero-section,
    .hero-small {
        grid-template-columns: 1fr;
        padding: 100px 40px 60px 40px;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-secondary {
        justify-content: center;
    }

    .section {
        padding: 80px 40px;
    }

    .footer {
        padding: 60px 40px 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cookie-banner {
        left: 24px;
        right: 24px;
        max-width: none;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow {
        flex-direction: column;
        gap: 32px;
    }

    .process-flow::before {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-canvas {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --panel-width: 0px;
    }

    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    .floating-panel {
        display: none;
    }

    .mobile-strip {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding-top: var(--strip-height);
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero-section,
    .hero-small {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-secondary {
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-bronze {
        padding: 20px 32px;
        max-width: 100%;
    }

    .section {
        padding: 60px 24px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-small {
        min-height: auto;
        padding: 80px 24px 60px;
    }

    .section {
        padding: 60px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .team-canvas {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 24px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .reviews-carousel {
        height: auto;
        overflow-x: hidden;
    }

    .carousel-track {
        flex-direction: column;
        gap: 24px;
        padding: 0 24px;
        overflow-x: hidden;
    }

    .review-card {
        position: relative;
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
        max-width: 100vw;
    }

    .review-card.prev,
    .review-card.next {
        display: none;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .service-card {
        max-width: 100%;
        overflow-x: hidden;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .advantage-card {
        max-width: 100%;
        overflow-x: hidden;
    }

    .team-canvas {
        grid-template-columns: 1fr;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .team-member {
        max-width: 100%;
        overflow-x: hidden;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .gallery-item {
        max-width: 100%;
    }

    .related-grid {
        grid-template-columns: 1fr;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .related-card {
        max-width: 100%;
        overflow-x: hidden;
    }

    .footer {
        padding: 40px 24px 24px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
        overflow-x: hidden;
    }

    .legal-content {
        max-width: 100vw;
        overflow-x: hidden;
        padding: 0 24px;
    }

    .faq-accordion {
        max-width: 100vw;
        overflow-x: hidden;
    }
}