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

:root {
    --race-red: #E84A36;
    --deep-burgundy: #C83020;
    --paint-booth-white: #FCFCFA;
    --clear-mist: #F4F4EE;
    --primer-light: #EAEAE4;
    --deep-carbon: #282830;
    --coat-gray: #585852;
    --border-radius-sm: 16px;
    --border-radius-md: 24px;
    --border-radius-lg: 32px;
    --transition-smooth: 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-ease: 0.34s ease-out;
    --shadow-red: 0 10px 36px rgba(232, 74, 54, 0.22);
    --shadow-lift: 0 22px 76px rgba(232, 74, 54, 0.36);
    --shadow-card: 0 52px 168px rgba(232, 74, 54, 0.14);
}

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

strong, p, span {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--paint-booth-white);
    color: var(--coat-gray);
    line-height: 1.86;
    font-size: 15px;
    overflow-x: hidden;
}

.fluid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(135deg, rgba(232, 74, 54, 0.03) 0%, transparent 50%, rgba(200, 48, 32, 0.02) 100%);
    animation: fluidFlow 28s ease-in-out infinite;
}

@keyframes fluidFlow {
    0%, 100% { transform: translateX(0) translateY(0); opacity: 1; }
    25% { transform: translateX(20px) translateY(10px); opacity: 0.85; }
    50% { transform: translateX(0) translateY(20px); opacity: 1; }
    75% { transform: translateX(-20px) translateY(10px); opacity: 0.85; }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: rgba(252, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    transition: var(--transition-ease);
    border-bottom: 1px solid rgba(232, 74, 54, 0.08);
}

header.scrolled {
    height: 48px;
    background: rgba(252, 252, 250, 0.98);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 32px;
    height: 32px;
    color: var(--race-red);
}

.header-domain {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 11px;
    color: var(--coat-gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-company {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--deep-carbon);
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--coat-gray);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-ease);
    white-space: nowrap;
}

nav a:hover {
    color: var(--race-red);
    background: rgba(232, 74, 54, 0.06);
    transform: scale(1.04);
}

.header-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--race-red), var(--deep-burgundy));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 10px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-red);
    transition: var(--transition-ease);
    text-decoration: none;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.hamburger {
    display: none;
    width: 36px;
    height: 36px;
    background: rgba(252, 252, 250, 0.99);
    border: 1px solid rgba(232, 74, 54, 0.12);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: var(--transition-ease);
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--deep-carbon);
    border-radius: 2px;
    transition: var(--transition-ease);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
}

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

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.mobile-menu a {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-carbon);
    text-decoration: none;
    padding: 12px 24px;
    transition: var(--transition-ease);
}

.mobile-menu a:hover {
    color: var(--race-red);
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(232, 74, 54, 0.2);
    border-radius: 10px;
    font-size: 24px;
    cursor: pointer;
    color: var(--deep-carbon);
}

main {
    padding-top: 56px;
}

.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 0;
    padding: 0 88px;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 10vw, 9rem);
    color: var(--deep-carbon);
    line-height: 0.88;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    animation: heroReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

@keyframes heroReveal {
    0% { opacity: 0; transform: scale(0.8) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-title span {
    display: inline-block;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--coat-gray);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 26px 56px;
    background: linear-gradient(135deg, var(--race-red), var(--deep-burgundy));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    box-shadow: var(--shadow-lift);
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 28px 90px rgba(232, 74, 54, 0.42);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 20px;
    background: rgba(232, 74, 54, 0.06);
    border-radius: var(--border-radius-md);
    font-size: 13px;
    color: var(--deep-carbon);
    font-weight: 500;
    animation: fadeUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--race-red);
}

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

.hero-frame {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 4/3;
    border: 2px solid rgba(232, 74, 54, 0.10);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    animation: elasticSwell 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes elasticSwell {
    0% { opacity: 0; border-radius: 16px; transform: scale(0.92); }
    60% { border-radius: 38px; }
    100% { opacity: 1; border-radius: var(--border-radius-lg); transform: scale(1); }
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--coat-gray);
    font-size: 12px;
    animation: bounce 2s ease-in-out infinite;
}

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

section {
    padding: 120px 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--deep-carbon);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--coat-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-marquee {
    background: var(--clear-mist);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.services-marquee::before,
.services-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.services-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--clear-mist), transparent);
}

.services-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--clear-mist), transparent);
}

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

.marquee-track:hover {
    animation-play-state: paused;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--paint-booth-white);
    border: 1px solid rgba(232, 74, 54, 0.08);
    border-radius: var(--border-radius-md);
    font-size: 15px;
    color: var(--deep-carbon);
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.marquee-item:hover {
    border-color: var(--race-red);
    transform: scale(1.05);
    box-shadow: var(--shadow-red);
}

.marquee-item .icon {
    font-size: 20px;
}

.about-preview {
    background: var(--paint-booth-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-carbon);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    color: var(--coat-gray);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    padding: 24px;
    background: var(--clear-mist);
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    cursor: default;
    position: relative;
    z-index: 1;
}

.stat-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: scale(1.04);
    z-index: 88;
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--race-red);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--coat-gray);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.process-section {
    background: var(--clear-mist);
}

.process-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-node {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    padding: 32px 24px;
    background: var(--paint-booth-white);
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    cursor: default;
    border: 2px solid transparent;
}

.process-node {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.process-node.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-node:hover {
    transform: scale(1.10);
    border-color: var(--race-red);
    z-index: 96;
    box-shadow: var(--shadow-card);
}

.process-node::after {
    content: '';
    position: absolute;
    right: -32px;
    top: 50%;
    width: 32px;
    height: 2px;
    background: linear-gradient(to right, var(--race-red), transparent);
}

.process-node:last-child::after {
    display: none;
}

.process-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(232, 74, 54, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.process-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.process-desc {
    font-size: 13px;
    color: var(--coat-gray);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    padding: 32px 20px;
    background: var(--clear-mist);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-smooth);
    cursor: default;
    border: 2px solid transparent;
}

.achievement-card {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.achievement-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.achievement-card:hover {
    flex-grow: 1.3;
    transform: scale(1.04);
    z-index: 96;
    border-color: var(--race-red);
    box-shadow: var(--shadow-card);
}

.achievement-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.achievement-value {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--deep-carbon);
    margin-bottom: 4px;
}

.achievement-label {
    font-size: 13px;
    color: var(--coat-gray);
}

.advantages-section {
    background: var(--paint-booth-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    padding: 28px;
    background: var(--clear-mist);
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    cursor: default;
}

.bento-card {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.bento-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-card:hover {
    border-color: var(--race-red);
    transform: scale(1.04);
    z-index: 96;
    box-shadow: var(--shadow-card);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 74, 54, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.bento-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.bento-text {
    font-size: 14px;
    color: var(--coat-gray);
}

.team-section {
    background: var(--clear-mist);
}

.team-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--paint-booth-white);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.team-member:hover,
.team-member.active {
    border-color: var(--race-red);
    transform: scale(1.02);
}

.team-member-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 74, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.team-member-info h4 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-carbon);
}

.team-member-info p {
    font-size: 13px;
    color: var(--coat-gray);
}

.team-visual {
    position: relative;
    min-height: 400px;
}

.team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

.team-image.active {
    opacity: 1;
}

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

.team-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 74, 54, 0.05), rgba(200, 48, 32, 0.08));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(232, 74, 54, 0.2);
}

.faq-section {
    background: var(--paint-booth-white);
}

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

.faq-item {
    border: 1px solid rgba(232, 74, 54, 0.1);
    border-radius: var(--border-radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--clear-mist);
    border: none;
    text-align: left;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-carbon);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition-ease);
}

.faq-question:hover {
    background: rgba(232, 74, 54, 0.06);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--race-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

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

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

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

.faq-answer-content {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--coat-gray);
    line-height: 1.8;
}

.reviews-section {
    background: var(--clear-mist);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1200px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    min-height: 320px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 30px 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: var(--paint-booth-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    width: 280px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    scroll-snap-align: center;
}

.review-card:hover {
    border-color: var(--race-red);
    z-index: 96;
}

.review-card.center {
    transform: scale(1.15);
    z-index: 100;
    border-color: var(--race-red);
    box-shadow: var(--shadow-card);
}

.review-card.side-left {
    transform: rotateY(20deg) scale(0.9);
    opacity: 0.7;
}

.review-card.side-right {
    transform: rotateY(-20deg) scale(0.9);
    opacity: 0.7;
}

.review-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid rgba(232, 74, 54, 0.2);
}

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

.review-text {
    font-size: 15px;
    color: var(--deep-carbon);
    margin-bottom: 16px;
    line-height: 1.6;
}

.review-author {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--coat-gray);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--paint-booth-white);
    border: 1px solid rgba(232, 74, 54, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--deep-carbon);
    transition: var(--transition-ease);
    z-index: 200;
}

.carousel-btn:hover {
    background: var(--race-red);
    color: white;
    border-color: var(--race-red);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.contact-section {
    background: var(--paint-booth-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px;
    background: var(--clear-mist);
    border-radius: var(--border-radius-lg);
}

.contact-info h3 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--deep-carbon);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(232, 74, 54, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 14px;
    color: var(--deep-carbon);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item-content p {
    font-size: 14px;
    color: var(--coat-gray);
}

.contact-map {
    margin-top: 32px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
    background: var(--paint-booth-white);
    border: 2px solid rgba(232, 74, 54, 0.1);
    border-radius: var(--border-radius-lg);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--primer-light);
    border-radius: var(--border-radius-sm);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: var(--deep-carbon);
    background: var(--paint-booth-white);
    transition: var(--transition-ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--race-red);
}

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

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--race-red), var(--deep-burgundy));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-red);
    transition: var(--transition-smooth);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--paint-booth-white);
    border: 2px solid rgba(232, 74, 54, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    z-index: 9990;
    display: block;
}

.cookie-banner h4 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-carbon);
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 13px;
    color: var(--coat-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-ease);
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--race-red), var(--deep-burgundy));
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--deep-carbon);
    border: 1px solid rgba(232, 74, 54, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(232, 74, 54, 0.06);
}

footer {
    background: var(--primer-light);
    border-top: 2px solid var(--race-red);
    padding: 64px 48px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    color: var(--race-red);
}

.footer-logo-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-carbon);
}

.footer-desc {
    font-size: 13px;
    color: var(--coat-gray);
}

.footer-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-carbon);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--coat-gray);
    text-decoration: none;
    transition: var(--transition-ease);
}

.footer-links a:hover {
    color: var(--race-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(232, 74, 54, 0.1);
}

.footer-copyright {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--coat-gray);
}

.footer-special {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 12px;
    color: var(--coat-gray);
}

.page-hero {
    padding: 80px 48px;
    text-align: center;
    background: var(--clear-mist);
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-hero h1 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--deep-carbon);
    margin-bottom: 20px;
    animation: heroReveal 0.8s ease-out forwards;
}

.page-hero p {
    font-size: 17px;
    color: var(--coat-gray);
    max-width: 600px;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.service-detail {
    background: var(--paint-booth-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-content h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--deep-carbon);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--coat-gray);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--primer-light);
    font-size: 15px;
    color: var(--deep-carbon);
}

.service-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(232, 74, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--race-red);
    flex-shrink: 0;
}

.service-price {
    padding: 24px;
    background: var(--clear-mist);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--race-red);
}

.service-price-label {
    font-size: 13px;
    color: var(--coat-gray);
    margin-bottom: 4px;
}

.service-price-value {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--deep-carbon);
}

.service-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.pricing-card {
    padding: 32px;
    background: var(--clear-mist);
    border-radius: var(--border-radius-lg);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    cursor: default;
}

.pricing-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    border-color: var(--race-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(232, 74, 54, 0.08), rgba(200, 48, 32, 0.04));
    border-color: var(--race-red);
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 74, 54, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-carbon);
    margin-bottom: 12px;
}

.pricing-card p {
    font-size: 14px;
    color: var(--coat-gray);
    margin-bottom: 20px;
}

.pricing-amount {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--race-red);
}

.pricing-note {
    font-size: 12px;
    color: var(--coat-gray);
}

.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 48px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: rgba(232, 74, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--race-red);
    margin-bottom: 32px;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.thank-you-section h1 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--deep-carbon);
    margin-bottom: 16px;
}

.thank-you-section p {
    font-size: 17px;
    color: var(--coat-gray);
    max-width: 500px;
    margin-bottom: 32px;
}

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

.legal-content h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--deep-carbon);
    margin: 32px 0 16px;
}

.legal-content p {
    font-size: 15px;
    color: var(--coat-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--coat-gray);
}

.legal-content li {
    margin-bottom: 8px;
}

.thank-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--race-red), var(--deep-burgundy));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-red);
    transition: var(--transition-smooth);
}

.thank-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 32px 80px;
        min-height: auto;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-frame {
        max-width: 100%;
    }
    
    .about-preview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-container {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 16px;
    }
    
    nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    section {
        padding: 80px 20px;
    }
    
    .page-hero {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 20px 32px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .process-node {
        max-width: 100%;
        width: 100%;
    }
    
    .process-node::after {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .team-visual {
        min-height: 300px;
    }
    
    .carousel-track {
        gap: 12px;
    }
    
    .review-card {
        width: 220px;
        padding: 24px;
    }
    
    .contact-info,
    .contact-form {
        padding: 24px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .header-company {
        display: none;
    }
}