:root {
    --atelier-white: #FCFAF8;
    --plaster-mist: #F4F2EC;
    --paste-light: #EAE8E4;
    --deep-carbon: #282828;
    --wall-gray: #585854;
    --venetian-plaster: #A08060;
    --deep-adobe: #705040;
    --skew-neg: -6deg;
    --skew-pos: 6deg;
    --transition-smooth: 0.44s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-hover: 0.30s ease;
}

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

strong, p {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--atelier-white);
    color: var(--wall-gray);
    line-height: 1.90;
    font-size: 14px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    color: var(--deep-carbon);
    line-height: 0.78;
    letter-spacing: -0.006em;
}

.special-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    color: var(--deep-carbon);
}

.header-upper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: rgba(252, 250, 248, 0.96);
    border-bottom: 1px solid rgba(160, 128, 96, 0.08);
}

.header-upper-row {
    height: 32px;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(160, 128, 96, 0.06);
}

.header-domain {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--deep-carbon);
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color var(--transition-hover);
}

.header-domain:hover {
    color: var(--venetian-plaster);
}

.header-company {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: var(--wall-gray);
    margin-top: 2px;
}

.header-lower {
    height: 64px;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(252, 250, 248, 0.98);
    transition: height 0.36s ease-out, background 0.36s ease-out;
}

.header-lower.scrolled {
    height: 56px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo svg {
    width: 28px;
    height: 28px;
    color: var(--venetian-plaster);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav a {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: var(--wall-gray);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.26s ease;
    padding: 8px 12px;
    border-radius: 2px;
}

.header-nav a:hover {
    color: var(--venetian-plaster);
    background: rgba(160, 128, 96, 0.06);
    transform: scale(1.04);
}

.header-cta {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--venetian-plaster), var(--deep-adobe));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 10px;
    text-decoration: none;
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(160, 128, 96, 0.22);
    transition: transform 0.36s ease, box-shadow 0.36s ease;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(160, 128, 96, 0.30);
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(252, 250, 248, 0.99);
    border: 1px solid rgba(160, 128, 96, 0.10);
    border-radius: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 10000;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--deep-carbon);
    transition: all 0.30s ease;
}

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

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

.hamburger.active span: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(--atelier-white);
    z-index: 9998;
    flex-direction: column;
    padding-top: 80px;
    transform: translateY(-100%);
    transition: transform 0.40s ease-out;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px;
}

.mobile-menu-content a {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-carbon);
    text-decoration: none;
    transition: color var(--transition-hover);
}

.mobile-menu-content a:hover {
    color: var(--venetian-plaster);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--deep-carbon);
}

.mobile-menu-contact {
    margin-top: auto;
    padding: 32px;
    border-top: 1px solid rgba(160, 128, 96, 0.10);
    width: 100%;
    text-align: center;
}

.main-content {
    padding-top: 112px;
}

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

.hero-content {
    padding-left: 96px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.78;
    color: var(--deep-carbon);
    margin-bottom: 32px;
    animation: slideUp 0.80s ease-out;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--wall-gray);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeUp 0.80s ease-out 0.4s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 26px 56px;
    background: linear-gradient(135deg, var(--venetian-plaster), var(--deep-adobe));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: 0;
    box-shadow: 0 20px 72px rgba(160, 128, 96, 0.32);
    transition: transform var(--transition-hover), box-shadow var(--transition-hover);
    animation: fadeUp 0.80s ease-out 0.6s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 84px rgba(160, 128, 96, 0.40);
}

.hero-note {
    margin-top: 24px;
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--deep-carbon);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeUp 0.80s ease-out 0.8s both;
}

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

.hero-image-frame {
    position: relative;
    width: 85%;
    height: 75%;
    transform: skewX(-6deg);
    border: 3px solid rgba(160, 128, 96, 0.10);
    border-radius: 2px 8px 8px 2px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(40, 40, 40, 0.12);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(6deg);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(160, 128, 96, 0.03), rgba(112, 80, 64, 0.06));
    pointer-events: none;
}

.fluid-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.fluid-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.4;
    animation: fluidMove 16s ease-in-out infinite;
}

.fluid-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    background: rgba(160, 140, 120, 0.04);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.fluid-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    background: rgba(180, 160, 140, 0.035);
    bottom: -50px;
    left: 20%;
    animation-delay: -4s;
}

.fluid-shape:nth-child(3) {
    width: 250px;
    height: 250px;
    background: rgba(140, 120, 100, 0.03);
    top: 40%;
    right: 10%;
    animation-delay: -8s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--wall-gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

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

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

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

@keyframes fluidMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.marquee-section {
    background: var(--plaster-mist);
    padding: 32px 0;
    overflow: hidden;
    border-top: 1px solid rgba(160, 128, 96, 0.08);
    border-bottom: 1px solid rgba(160, 128, 96, 0.08);
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--atelier-white);
    transform: skewX(-6deg);
    border: 1px solid rgba(160, 128, 96, 0.12);
    border-radius: 2px 6px 6px 2px;
    white-space: nowrap;
    transition: all var(--transition-hover);
}

.marquee-item:hover {
    background: var(--paste-light);
    transform: skewX(-6deg) scale(1.04);
    box-shadow: 0 8px 32px rgba(160, 128, 96, 0.15);
}

.marquee-item span {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--deep-carbon);
}

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

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

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--wall-gray);
    margin-bottom: 64px;
}

.skew-reveal {
    transform: skewX(var(--skew-neg));
    transition: transform var(--transition-smooth);
}

.skew-reveal:hover {
    transform: skewX(0deg);
}

.card-hover {
    position: relative;
    z-index: 84;
    transition: all var(--transition-hover);
}

.card-hover:hover {
    z-index: 96;
    transform: translateY(-4px) scale(1.02);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.achievement-card {
    background: var(--atelier-white);
    border: 1px solid rgba(160, 128, 96, 0.10);
    padding: 40px 24px;
    text-align: center;
    transition: all var(--transition-hover);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--venetian-plaster), var(--deep-adobe));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.40s ease;
}

.achievement-card:hover {
    border-color: var(--venetian-plaster);
    box-shadow: 0 20px 60px rgba(160, 128, 96, 0.12);
    transform: flex-grow 1.26;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

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

.achievement-value {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.achievement-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--wall-gray);
}

.timeline-section {
    background: var(--plaster-mist);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--venetian-plaster), var(--deep-adobe));
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}

.timeline-number {
    width: 56px;
    height: 56px;
    background: var(--atelier-white);
    border: 3px solid var(--venetian-plaster);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--venetian-plaster);
    margin-bottom: 24px;
    transition: all var(--transition-hover);
    position: relative;
    z-index: 2;
}

.timeline-item:hover .timeline-number {
    background: var(--venetian-plaster);
    color: white;
    transform: scale(1.10);
}

.timeline-title {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 12px;
    color: var(--wall-gray);
    max-width: 140px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 12px;
}

.bento-item {
    background: var(--atelier-white);
    border: 1px solid rgba(160, 128, 96, 0.08);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-hover);
}

.bento-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-left: 2px solid rgba(160, 128, 96, 0.15);
    border-top: 2px solid rgba(160, 128, 96, 0.15);
    transform: skewX(-6deg) skewY(-6deg);
    transition: all var(--transition-hover);
}

.bento-item:hover {
    border-color: var(--venetian-plaster);
    box-shadow: 0 16px 48px rgba(160, 128, 96, 0.10);
    z-index: 96;
}

.bento-item:hover::after {
    width: 80px;
    height: 80px;
    border-color: var(--venetian-plaster);
}

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

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

.bento-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.bento-title {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-carbon);
    margin-bottom: 12px;
}

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

.team-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

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

.team-item {
    padding: 24px;
    background: var(--atelier-white);
    border: 1px solid rgba(160, 128, 96, 0.08);
    cursor: pointer;
    transition: all var(--transition-hover);
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-item:hover,
.team-item.active {
    background: var(--paste-light);
    border-color: var(--venetian-plaster);
    box-shadow: 0 12px 40px rgba(160, 128, 96, 0.10);
}

.team-item-icon {
    font-size: 24px;
}

.team-item-info h4 {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-carbon);
    margin-bottom: 4px;
}

.team-item-info p {
    font-size: 12px;
    color: var(--wall-gray);
}

.team-visual {
    position: relative;
    height: 500px;
    background: var(--plaster-mist);
    overflow: hidden;
}

.team-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.50s ease;
}

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

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

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

.faq-item {
    border-bottom: 1px solid rgba(160, 128, 96, 0.12);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--venetian-plaster);
    transform: scaleY(0);
    transition: transform 0.40s ease;
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    padding: 28px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background var(--transition-hover);
}

.faq-question:hover {
    background: rgba(160, 128, 96, 0.04);
}

.faq-question h3 {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-carbon);
}

.faq-icon {
    font-size: 20px;
    color: var(--venetian-plaster);
    transition: transform 0.40s ease;
}

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

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

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

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

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px 0;
    overflow: hidden;
}

.review-card {
    background: var(--atelier-white);
    border: 1px solid rgba(160, 128, 96, 0.10);
    padding: 32px;
    text-align: center;
    transition: all 0.50s ease;
    position: relative;
}

.review-card.center {
    transform: scale(1.15) perspective(800px) rotateY(0deg);
    z-index: 100;
    box-shadow: 0 24px 80px rgba(160, 128, 96, 0.20);
}

.review-card.left,
.review-card.right {
    transform: scale(0.85) perspective(800px) rotateY(-18deg);
    opacity: 0.7;
}

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

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--venetian-plaster);
}

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

.review-text {
    font-size: 14px;
    color: var(--wall-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.review-name {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-carbon);
}

.review-stars {
    color: var(--venetian-plaster);
    font-size: 16px;
    margin-top: 8px;
}

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

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--atelier-white);
    border: 1px solid rgba(160, 128, 96, 0.15);
    cursor: pointer;
    font-size: 20px;
    color: var(--venetian-plaster);
    transition: all var(--transition-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--paste-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-carbon);
    margin-bottom: 4px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--deep-carbon);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    background: var(--atelier-white);
    border: 2px solid var(--paste-light);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--deep-carbon);
    transition: border-color var(--transition-hover);
    transform: skewX(-3deg);
    border-radius: 2px 6px 6px 2px;
}

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

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

.form-submit {
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--venetian-plaster), var(--deep-adobe));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-hover);
    border-radius: 2px 6px 6px 2px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(160, 128, 96, 0.30);
}

.map-container {
    width: 100%;
    height: 300px;
    border: 1px solid rgba(160, 128, 96, 0.10);
    margin-top: 40px;
}

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

.footer {
    background: var(--paste-light);
    border-top: 2px solid var(--venetian-plaster);
    padding: 80px 96px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-carbon);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 13px;
    color: var(--wall-gray);
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--wall-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color var(--transition-hover);
}

.footer-col a:hover {
    color: var(--venetian-plaster);
}

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

.footer-logo svg {
    width: 24px;
    height: 24px;
    color: var(--venetian-plaster);
}

.footer-logo span {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-carbon);
}

.footer-bottom {
    border-top: 1px solid rgba(160, 128, 96, 0.12);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--deep-carbon);
    margin-bottom: 8px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 11px;
    color: var(--wall-gray);
    text-decoration: none;
    transition: color var(--transition-hover);
}

.footer-legal a:hover {
    color: var(--venetian-plaster);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 380px;
    background: var(--atelier-white);
    border: 1px solid rgba(160, 128, 96, 0.15);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    z-index: 9999;
    display: block;
}

.cookie-banner h4 {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-carbon);
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 13px;
    color: var(--wall-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cookie-categories {
    margin-bottom: 20px;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(160, 128, 96, 0.08);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category span {
    font-size: 12px;
    color: var(--deep-carbon);
}

.cookie-category small {
    font-size: 11px;
    color: var(--wall-gray);
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-hover);
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--venetian-plaster), var(--deep-adobe));
    color: white;
}

.cookie-btn.accept:hover {
    box-shadow: 0 8px 24px rgba(160, 128, 96, 0.25);
}

.cookie-btn.decline {
    background: var(--paste-light);
    color: var(--deep-carbon);
}

.cookie-btn.decline:hover {
    background: var(--plaster-mist);
}

.page-hero {
    min-height: 52vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 96px;
    background: var(--plaster-mist);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(160, 128, 96, 0.04));
    transform: skewX(-6deg);
}

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

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--wall-gray);
    max-width: 480px;
}

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

.page-hero-image {
    width: 80%;
    height: 300px;
    background: var(--atelier-white);
    border: 2px solid rgba(160, 128, 96, 0.10);
    transform: skewX(-6deg);
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewX(6deg);
}

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

.thank-you-icon {
    font-size: 64px;
    margin-bottom: 32px;
}

.thank-you-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 16px;
    color: var(--wall-gray);
    max-width: 480px;
    margin-bottom: 40px;
}

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

.service-card {
    background: var(--atelier-white);
    border: 1px solid rgba(160, 128, 96, 0.10);
    overflow: hidden;
    transition: all var(--transition-hover);
    position: relative;
    z-index: 84;
}

.service-card:hover {
    border-color: var(--venetian-plaster);
    box-shadow: 0 20px 60px rgba(160, 128, 96, 0.15);
    z-index: 96;
    transform: translateY(-4px);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.50s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 28px;
}

.service-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.service-card-title {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-carbon);
    margin-bottom: 12px;
}

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

.service-card-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--venetian-plaster);
    margin-bottom: 16px;
}

.service-card-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--paste-light);
    color: var(--deep-carbon);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
    transition: all var(--transition-hover);
}

.service-card-link:hover {
    background: var(--venetian-plaster);
    color: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.50s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40, 40, 40, 0.80), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-hover);
}

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

.gallery-item-overlay h4 {
    font-family: 'Tsukushi Pro', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 4px;
}

.gallery-item-overlay p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.80);
}

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

.legal-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--deep-carbon);
}

.legal-content h3 {
    font-size: 18px;
    margin: 32px 0 16px;
    color: var(--deep-carbon);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.9;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .hero-content {
        padding-left: 64px;
    }
    
    .section {
        padding: 80px 64px;
    }
    
    .footer {
        padding: 64px 64px 32px;
    }
}

@media (max-width: 992px) {
    .header-nav,
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 40px 32px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-image-frame {
        width: 90%;
        height: 100%;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-item.large,
    .bento-item.wide {
        grid-column: span 2;
    }
    
    .team-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-visual {
        height: 350px;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero {
        grid-template-columns: 1fr;
        padding: 60px 32px;
        min-height: auto;
    }
    
    .page-hero-visual {
        display: none;
    }
    
    .cookie-banner {
        width: calc(100% - 48px);
        left: 24px;
        bottom: 16px;
    }
}

@media (max-width: 768px) {
    .header-upper-row {
        padding: 0 24px;
    }
    
    .header-lower {
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .section {
        padding: 60px 24px;
    }
    
    .footer {
        padding: 48px 24px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 32px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }
    
    .timeline-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item.large,
    .bento-item.wide {
        grid-column: span 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        width: calc(100% - 32px);
        left: 16px;
        bottom: 12px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-company {
        display: none;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-carousel {
        flex-direction: column;
    }
    
    .review-card.left,
    .review-card.right {
        display: none;
    }
}