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

:root {
    --plaster-base: #FAF8F4;
    --slurry-mist: #F2EEE6;
    --aggregate-stone: #E6E2DA;
    --tar-black: #1a1a18;
    --mortar-grey: #2a2a28;
    --clay-terracotta: #C4683C;
    --sienna-burnt: #8B4228;
    --sandstone: rgba(210, 195, 170, 0.08);
    --bone: rgba(245, 240, 230, 0.08);
    --honey-dolt: rgba(196, 160, 110, 0.06);
}

* {
    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: 15px;
    line-height: 1.98;
    color: var(--mortar-grey);
    background-color: var(--plaster-base);
    overflow-x: hidden;
}

strong, b, p {
    color: inherit;
}

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

.floating-pill-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 0 24px 0 28px;
    min-width: 440px;
    background: rgba(252, 250, 247, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.08);
    gap: 24px;
    transition: all 0.22s ease-out;
}

.floating-pill-header.scrolled {
    padding: 0 14px;
    min-width: auto;
}

.header-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.header-icon {
    width: 20px;
    height: 20px;
    color: var(--clay-terracotta);
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header-domain {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 9px;
    color: var(--tar-black);
    letter-spacing: 0.12em;
    line-height: 1.18;
}

.header-company {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 6px;
    color: var(--mortar-grey);
    margin-top: 1px;
    line-height: 1.32;
}

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

.header-nav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: var(--mortar-grey);
    cursor: pointer;
    transition: color 0.18s ease;
    padding: 8px 10px;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--clay-terracotta);
}

.header-cta {
    margin-left: 14px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--sienna-burnt));
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 9px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(196, 104, 60, 0.22);
    transition: transform 0.18s ease;
    cursor: pointer;
    border: none;
    display: none;
}

.header-cta:hover {
    transform: scale(1.02);
}

.hamburger-btn {
    display: none;
    position: fixed;
    top: 12px;
    right: 16px;
    width: 28px;
    height: 28px;
    z-index: 9999;
    background: rgba(252, 250, 247, 0.88);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--tar-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--plaster-base);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 80px 24px 24px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--tar-black);
    padding: 12px 24px;
    transition: color 0.18s ease;
}

.mobile-menu-overlay a:hover {
    color: var(--clay-terracotta);
}

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

.abstract-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

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

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--sandstone);
    top: 10%;
    left: -10%;
    animation: drift1 28s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--bone);
    top: 50%;
    right: -5%;
    animation: drift2 32s ease-in-out infinite;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: var(--honey-dolt);
    bottom: 20%;
    left: 20%;
    animation: drift3 24s ease-in-out infinite;
}

.blob-4 {
    width: 550px;
    height: 550px;
    background: var(--sandstone);
    top: 30%;
    right: 15%;
    animation: drift4 36s ease-in-out infinite;
}

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(80px, 60px) rotate(90deg); }
    50% { transform: translate(40px, 120px) rotate(180deg); }
    75% { transform: translate(-40px, 80px) rotate(270deg); }
}

@keyframes drift2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-60px, 80px) rotate(120deg); }
    66% { transform: translate(-100px, 40px) rotate(240deg); }
}

@keyframes drift3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    40% { transform: translate(100px, -60px) rotate(144deg); }
    80% { transform: translate(60px, -100px) rotate(288deg); }
}

@keyframes drift4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-80px, 100px) rotate(180deg); }
}

.page-content {
    padding-top: 96px;
    position: relative;
    z-index: 1;
}

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

.hero-content {
    padding: 120px 100px 120px 60px;
}

.hero-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 7.5rem);
    line-height: 1.1;
    color: var(--tar-black);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease-out;
}

.hero-title span {
    display: block;
    animation: fadeUp 0.8s ease-out;
    animation-fill-mode: both;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.2s; }
.hero-title span:nth-child(3) { animation-delay: 0.3s; }

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

.hero-subtitle {
    font-size: 15px;
    color: var(--mortar-grey);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease-out 0.5s both;
}

.btn-primary {
    padding: 26px 56px;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--sienna-burnt));
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 0;
    box-shadow: 0 28px 86px rgba(196, 104, 60, 0.24);
    transition: all 0.24s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 32px 96px rgba(196, 104, 60, 0.32);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--tar-black);
    animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 75%;
    border-radius: 48px 96px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.12);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 104, 60, 0.1), transparent);
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--mortar-grey);
    font-size: 11px;
    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 60px;
    position: relative;
}

.section-alt {
    background: var(--slurry-mist);
}

.section-dark {
    background: var(--aggregate-stone);
}

.section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--tar-black);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--mortar-grey);
    max-width: 600px;
    margin-bottom: 60px;
}

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

.bento-card {
    background: var(--plaster-base);
    border-radius: 48px 72px;
    padding: 32px;
    transition: all 0.24s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.bento-card:hover {
    z-index: 88;
    transform: translateY(-4px);
    border-color: var(--clay-terracotta);
    box-shadow: 0 16px 48px rgba(196, 104, 60, 0.12);
}

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

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

.bento-card-icon {
    width: 48px;
    height: 48px;
    font-size: 32px;
    margin-bottom: 16px;
}

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

.bento-card-desc {
    font-size: 13px;
    color: var(--mortar-grey);
    line-height: 1.6;
}

.bento-card-price {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--clay-terracotta);
    margin-top: 12px;
}

.process-sticky {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.process-nav {
    position: sticky;
    top: 120px;
}

.process-nav-item {
    padding: 16px 20px;
    border-radius: 24px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.24s ease;
    border-left: 3px solid transparent;
}

.process-nav-item:hover,
.process-nav-item.active {
    background: var(--plaster-base);
    border-left-color: var(--clay-terracotta);
}

.process-nav-number {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--clay-terracotta);
    margin-bottom: 4px;
}

.process-nav-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--tar-black);
}

.process-steps {
    counter-reset: step;
}

.process-step {
    padding: 40px;
    background: var(--plaster-base);
    border-radius: 32px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.24s ease;
}

.process-step:hover {
    z-index: 86;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -16px;
    left: 32px;
    width: 32px;
    height: 32px;
    background: var(--clay-terracotta);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--tar-black);
    margin-bottom: 12px;
}

.process-step-desc {
    font-size: 14px;
    color: var(--mortar-grey);
    line-height: 1.8;
}

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

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

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--plaster-base);
    border-radius: 24px;
    white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--tar-black);
}

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

.stacking-cards {
    position: relative;
    padding: 60px 0;
}

.stacking-card {
    background: var(--plaster-base);
    border-radius: 32px;
    padding: 32px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.24s ease;
    border-left: 4px solid var(--clay-terracotta);
}

.stacking-card:nth-child(1) { z-index: 72; }
.stacking-card:nth-child(2) { z-index: 80; }
.stacking-card:nth-child(3) { z-index: 88; }
.stacking-card:nth-child(4) { z-index: 96; }
.stacking-card:nth-child(5) { z-index: 104; }
.stacking-card:nth-child(6) { z-index: 112; }

.stacking-card:hover {
    z-index: 200 !important;
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(196, 104, 60, 0.16);
}

.stacking-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

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

.stacking-card-desc {
    font-size: 14px;
    color: var(--mortar-grey);
}

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

.team-card {
    text-align: center;
    transition: all 0.24s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 32px;
    object-fit: cover;
    margin-bottom: 16px;
    filter: grayscale(20%);
    transition: filter 0.24s ease;
}

.team-card:hover .team-photo {
    filter: grayscale(0%);
}

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

.team-role {
    font-size: 12px;
    color: var(--mortar-grey);
}

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

.faq-item {
    background: var(--plaster-base);
    border-radius: 24px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.24s ease;
    border-left: 2px solid transparent;
}

.faq-item:hover {
    z-index: 86;
    border-left-color: var(--clay-terracotta);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--tar-black);
}

.faq-icon {
    font-size: 18px;
    color: var(--clay-terracotta);
    transition: transform 0.24s ease;
}

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

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

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

.faq-answer-content {
    padding: 0 32px 24px;
    font-size: 14px;
    color: var(--mortar-grey);
    line-height: 1.8;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 320px;
    background: var(--plaster-base);
    border-radius: 32px;
    padding: 32px;
    position: relative;
    border-left: 4px solid var(--clay-terracotta);
    transition: all 0.4s ease;
}

.review-card.active {
    transform: scale(1.15);
    z-index: 100;
}

.review-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.review-text {
    font-size: 14px;
    color: var(--mortar-grey);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--plaster-base);
    border: 2px solid var(--aggregate-stone);
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--tar-black);
    transition: all 0.24s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--clay-terracotta);
    border-color: var(--clay-terracotta);
    color: #fff;
}

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

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

.contact-info-card {
    background: var(--plaster-base);
    border-radius: 32px;
    padding: 40px;
}

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

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

.contact-info-value {
    font-size: 15px;
    color: var(--tar-black);
    line-height: 1.6;
}

.contact-form {
    background: var(--plaster-base);
    border-radius: 32px;
    padding: 40px;
}

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

.form-label {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--tar-black);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--tar-black);
    background: var(--slurry-mist);
    border: 2px solid transparent;
    border-radius: 48px;
    outline: none;
    transition: all 0.24s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--clay-terracotta);
    box-shadow: 0 0 0 4px rgba(196, 104, 60, 0.1);
}

.form-textarea {
    border-radius: 24px;
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--sienna-burnt));
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 48px;
    cursor: pointer;
    transition: all 0.24s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 104, 60, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: var(--tar-black);
    color: #fff;
    border-radius: 24px;
    padding: 24px;
    z-index: 9990;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
    display: block;
}

.cookie-banner-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.cookie-banner-text {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
}

.cookie-banner-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-radius: 24px;
    cursor: pointer;
    transition: all 0.24s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--clay-terracotta);
    color: #fff;
}

.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
    transform: scale(1.02);
}

.site-footer {
    background: var(--aggregate-stone);
    border-top: 2px solid var(--clay-terracotta);
    padding: 80px 60px 40px;
}

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

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

.footer-logo {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--tar-black);
}

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

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

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

.footer-links a {
    font-size: 13px;
    color: var(--mortar-grey);
    transition: color 0.18s ease;
}

.footer-links a:hover {
    color: var(--clay-terracotta);
}

.footer-contact-item {
    font-size: 13px;
    color: var(--mortar-grey);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(26, 26, 24, 0.1);
}

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

.footer-special {
    font-size: 11px;
    color: var(--mortar-grey);
}

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

.gallery-item {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
    grid-column: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(26, 26, 24, 0.8));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.24s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.gallery-cat {
    font-size: 12px;
    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(--tar-black);
    margin: 40px 0 16px;
}

.legal-content p {
    font-size: 14px;
    color: var(--mortar-grey);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.thank-you-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.thank-you-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--tar-black);
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 16px;
    color: var(--mortar-grey);
    max-width: 500px;
    margin-bottom: 32px;
}

.inner-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero-content {
    padding: 60px;
}

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

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-image {
    border-radius: 48px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.two-col-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-col-content h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--tar-black);
    margin-bottom: 16px;
}

.two-col-content p {
    font-size: 15px;
    color: var(--mortar-grey);
    line-height: 1.8;
    margin-bottom: 16px;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

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

.advantage-icon {
    width: 40px;
    height: 40px;
    background: var(--clay-terracotta);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

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

.advantage-text p {
    font-size: 13px;
    color: var(--mortar-grey);
}

.map-container {
    border-radius: 32px;
    overflow: hidden;
    margin-top: 40px;
    height: 400px;
}

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

@media (max-width: 1024px) {
    .floating-pill-header {
        min-width: auto;
        padding: 0 16px;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 120px 40px 60px;
        order: 2;
    }
    
    .hero-visual {
        height: 50vh;
        order: 1;
    }
    
    .hero-image-container {
        width: 90%;
        height: 100%;
        border-radius: 32px;
    }
    
    .section {
        padding: 80px 40px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-sticky {
        grid-template-columns: 1fr;
    }
    
    .process-nav {
        position: static;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
    
    .two-col-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .floating-pill-header {
        min-width: 280px;
    }
    
    .page-content {
        padding-top: 72px;
    }
    
    .hero-content {
        padding: 100px 24px 60px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section {
        padding: 60px 24px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card-large {
        grid-column: span 1;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .site-footer {
        padding: 60px 24px 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-list {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        max-width: none;
    }
    
    .stacking-card {
        margin-bottom: 16px;
    }
    
    .carousel-track {
        gap: 16px;
    }
    
    .review-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .floating-pill-header {
        min-width: auto;
        width: calc(100% - 80px);
    }
    
    .header-brand {
        gap: 6px;
    }
    
    .header-domain {
        font-size: 8px;
    }
    
    .header-company {
        font-size: 5px;
    }
}
