:root {
    --sterile-white: #FCFDFC;
    --clinical-mist: #F4F6F4;
    --mint-cream: #EEF2EE;
    --deep-forest: #0A1008;
    --clinical-gray: #1A2018;
    --crystal-mint: #41895F;
    --deep-pine: #286040;
    --shadow-soft: rgba(65, 145, 95, 0.06);
    --shadow-medium: rgba(65, 145, 95, 0.12);
    --shadow-strong: rgba(65, 145, 95, 0.18);
}

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

*, *::before, *::after {
    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.94;
    color: var(--clinical-gray);
    background-color: var(--sterile-white);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.pill-header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px 10px 24px;
    background: rgba(252, 253, 252, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(65, 145, 95, 0.08);
    box-shadow: 0 12px 36px rgba(65, 145, 95, 0.06);
    transition: all 0.34s ease-out;
    max-width: calc(100% - 32px);
}

.pill-header.scrolled {
    padding: 6px 18px;
    top: 8px;
}

.pill-left-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pill-logo-icon {
    width: 24px;
    height: 24px;
    color: var(--crystal-mint);
    flex-shrink: 0;
}

.pill-domain {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 10px;
    color: var(--deep-forest);
    letter-spacing: 0.12em;
    line-height: 1.2;
    white-space: nowrap;
}

.pill-company {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 7px;
    color: var(--clinical-gray);
    margin-left: 4px;
    line-height: 1.35;
    white-space: nowrap;
}

.pill-nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
    margin-left: 40px;
}

.nav-item-pill {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 10px;
    color: var(--clinical-gray);
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.nav-item-pill:hover {
    color: var(--crystal-mint);
    transform: scale(1.03);
}

.cta-pill {
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 9px;
    border-radius: 9999px;
    box-shadow: 0 8px 20px rgba(65, 145, 95, 0.18);
    transition: all 0.28s ease;
    white-space: nowrap;
}

.cta-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(65, 145, 95, 0.28);
}

.hamburger-btn {
    display: none;
    width: 32px;
    height: 32px;
    position: fixed;
    top: 8px;
    right: 14px;
    z-index: 9999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--deep-forest);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-strip {
    display: none;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 253, 252, 0.99);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 80px 24px 40px;
}

.mobile-menu-content a {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-forest);
    padding: 16px;
    transition: color 0.22s ease;
}

.mobile-menu-content a:hover {
    color: var(--crystal-mint);
}

.mobile-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--deep-forest);
    cursor: pointer;
}

@media (max-width: 900px) {
    .pill-header {
        display: none;
    }
    
    .mobile-strip {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 48px;
        background: rgba(252, 253, 252, 0.99);
        border-bottom: 1px solid rgba(65, 145, 95, 0.10);
        z-index: 9997;
        align-items: center;
        padding: 0 16px;
        gap: 12px;
    }
    
    .hamburger-btn {
        display: block;
        margin-left: auto;
    }
    
    .mobile-logo-area {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-overlay .pill-logo-icon {
        width: 20px;
        height: 20px;
    }
    
    .mobile-overlay .pill-domain {
        font-size: 9px;
    }
    
    .mobile-overlay .pill-company {
        font-size: 6px;
    }
}

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

.particle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--crystal-mint);
    opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    25% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.42;
        transform: translateY(-40px) translateX(20px);
    }
    75% {
        opacity: 0.2;
    }
}

.lens-effect {
    position: fixed;
    width: 168px;
    height: 168px;
    border: 2px solid rgba(65, 145, 95, 0.32);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9990;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 0 30px rgba(65, 145, 95, 0.15);
    backdrop-filter: blur(0px);
}

.lens-effect.active {
    opacity: 1;
    transform: scale(1);
}

main {
    position: relative;
    z-index: 1;
    padding-top: 96px;
}

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

.hero-section-inner {
    min-height: calc(100vh - 96px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.hero-content {
    padding: 60px 60px 60px 100px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--deep-forest);
    line-height: 0.72;
    letter-spacing: 0.002em;
    margin-bottom: 32px;
}

.hero-content h1 span {
    display: inline-block;
    animation: charReveal 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--clinical-gray);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 26px 54px;
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 9999px;
    box-shadow: 0 24px 80px rgba(65, 145, 95, 0.28);
    transition: all 0.28s ease;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
    white-space: nowrap;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 90px rgba(65, 145, 95, 0.35);
}

.hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    margin-left: 16px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--deep-forest);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-secondary svg {
    width: 14px;
    height: 14px;
    color: var(--crystal-mint);
}

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

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px);
    height: calc(100% - 160px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(65, 145, 95, 0.15);
}

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

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

.scroll-indicator span {
    font-family: 'Shippori Mincho', serif;
    font-size: 10px;
    letter-spacing: 0.1em;
}

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

@media (max-width: 1024px) {
    .hero-section, .hero-section-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 80px 24px 40px;
        order: 2;
    }
    
    .hero-visual {
        height: 50vh;
        min-height: 400px;
        order: 1;
    }
    
    .hero-image-wrapper {
        width: calc(100% - 48px);
        height: calc(100% - 80px);
    }
    
    main {
        padding-top: 48px;
    }
}

.floating-cards-section {
    padding: 120px 100px;
    background: var(--sterile-white);
    position: relative;
}

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

.section-header h2 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-forest);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.section-header p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: var(--clinical-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.floating-card {
    background: rgba(252, 253, 252, 0.978);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 18px 32px rgba(65, 145, 95, 0.08);
    transition: all 0.32s ease;
    position: relative;
    z-index: 1;
}

.floating-card:hover {
    z-index: 88;
    transform: translateY(-8px);
    box-shadow: 0 28px 48px rgba(65, 145, 95, 0.16);
}

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

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

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.floating-card h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-forest);
    margin-bottom: 12px;
    line-height: 1.3;
}

.floating-card p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: var(--clinical-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.floating-card-price {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--crystal-mint);
}

.floating-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--crystal-mint);
    margin-top: 12px;
    transition: gap 0.2s ease;
}

.floating-card-link:hover {
    gap: 10px;
}

.floating-card-link svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 1024px) {
    .floating-cards-section {
        padding: 80px 24px;
    }
    
    .floating-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .floating-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .floating-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card.large,
    .floating-card.wide {
        grid-column: span 1;
    }
}

.hard-cuts-section {
    position: relative;
}

.hard-cut-layer {
    padding: 100px 100px;
    position: relative;
    transition: background-color 0.32s step;
}

.hard-cut-layer:nth-child(odd) {
    background: var(--clinical-mist);
}

.hard-cut-layer:nth-child(even) {
    background: var(--mint-cream);
}

.hard-cut-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hard-cut-content.reverse {
    direction: rtl;
}

.hard-cut-content.reverse > * {
    direction: ltr;
}

.hard-cut-text h2 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-forest);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hard-cut-text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: var(--clinical-gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.hard-cut-text ul {
    margin-top: 24px;
}

.hard-cut-text li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--clinical-gray);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.hard-cut-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--crystal-mint);
    border-radius: 50%;
}

.hard-cut-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(65, 145, 95, 0.12);
}

.hard-cut-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hard-cut-layer {
        padding: 80px 24px;
    }
    
    .hard-cut-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hard-cut-content.reverse {
        direction: ltr;
    }
}

.node-graph-section {
    padding: 120px 100px;
    background: var(--sterile-white);
    position: relative;
}

.node-graph-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.node-graph-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--crystal-mint), var(--deep-pine));
    opacity: 0.3;
}

.node-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    transition: all 0.32s ease;
    z-index: 1;
}

.node-item:hover {
    z-index: 96;
}

.node-item:nth-child(odd) {
    flex-direction: row;
}

.node-item:nth-child(even) {
    flex-direction: row-reverse;
}

.node-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.node-content {
    flex: 1;
    background: rgba(252, 253, 252, 0.978);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 12px 32px rgba(65, 145, 95, 0.08);
    transition: all 0.32s ease;
}

.node-item:hover .node-content {
    box-shadow: 0 20px 48px rgba(65, 145, 95, 0.16);
    transform: translateX(8px);
}

.node-item:nth-child(even):hover .node-content {
    transform: translateX(-8px);
}

.node-content h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-forest);
    margin-bottom: 10px;
}

.node-content p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--clinical-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .node-graph-section {
        padding: 80px 24px;
    }
    
    .node-graph-line {
        left: 30px;
    }
    
    .node-item,
    .node-item:nth-child(even) {
        flex-direction: row;
        padding-left: 70px;
    }
    
    .node-number {
        position: absolute;
        left: 0;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

.marquee-section {
    padding: 60px 0;
    background: var(--deep-forest);
    overflow: hidden;
}

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

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--sterile-white);
    letter-spacing: 0.08em;
}

.marquee-item svg {
    width: 24px;
    height: 24px;
    color: var(--crystal-mint);
}

.marquee-divider {
    width: 4px;
    height: 4px;
    background: var(--crystal-mint);
    border-radius: 50%;
    opacity: 0.5;
}

.flex-grow-section {
    padding: 120px 100px;
    background: var(--clinical-mist);
}

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

.flex-grow-card {
    background: var(--sterile-white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 12px 32px rgba(65, 145, 95, 0.06);
    transition: all 0.34s ease;
    position: relative;
    z-index: 1;
}

.flex-grow-card:hover {
    z-index: 88;
    flex: 1.26;
    box-shadow: 0 24px 60px rgba(65, 145, 95, 0.18);
    transform: scale(1.02);
}

.flex-grow-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.flex-grow-card h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-forest);
    margin-bottom: 12px;
}

.flex-grow-card p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: var(--clinical-gray);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .flex-grow-section {
        padding: 80px 24px;
    }
    
    .flex-grow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flex-grow-card:hover {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .flex-grow-grid {
        grid-template-columns: 1fr;
    }
}

.team-section {
    padding: 120px 100px;
    background: var(--sterile-white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

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

.team-member-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(252, 253, 252, 0.978);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.28s ease;
    border: 2px solid transparent;
}

.team-member-item:hover,
.team-member-item.active {
    border-color: var(--crystal-mint);
    box-shadow: 0 12px 32px rgba(65, 145, 95, 0.1);
}

.team-member-icon {
    width: 48px;
    height: 48px;
    background: var(--crystal-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.team-member-info h4 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-forest);
    margin-bottom: 4px;
}

.team-member-info p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: var(--clinical-gray);
}

.team-photo-area {
    position: sticky;
    top: 120px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(65, 145, 95, 0.12);
    aspect-ratio: 1;
    transition: all 0.32s ease;
    z-index: 1;
}

.team-photo-area:hover {
    z-index: 96;
}

.team-photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.32s ease;
}

@media (max-width: 1024px) {
    .team-section {
        padding: 80px 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-photo-area {
        position: relative;
        top: 0;
        max-height: 400px;
    }
}

.accordion-section {
    padding: 120px 100px;
    background: var(--mint-cream);
}

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

.accordion-item {
    background: var(--sterile-white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(65, 145, 95, 0.05);
    transition: all 0.28s ease;
    position: relative;
    z-index: 1;
    border-left: 3px solid transparent;
}

.accordion-item:hover {
    z-index: 86;
}

.accordion-item.active {
    border-left-color: var(--crystal-mint);
}

.accordion-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    transition: background 0.22s ease;
}

.accordion-question:hover {
    background: rgba(65, 145, 95, 0.03);
}

.accordion-question h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-forest);
    flex: 1;
    padding-right: 16px;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    background: var(--clinical-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--crystal-mint);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    background: var(--crystal-mint);
    color: white;
    transform: rotate(45deg);
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.30s step;
}

.accordion-answer-content {
    padding: 0 28px 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--clinical-gray);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .accordion-section {
        padding: 80px 24px;
    }
}

.coverflow-section {
    padding: 120px 100px;
    background: var(--sterile-white);
    overflow: hidden;
}

.coverflow-container {
    position: relative;
    height: 400px;
    perspective: 1200px;
}

.coverflow-track {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.coverflow-card {
    width: 320px;
    height: 360px;
    background: var(--sterile-white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(65, 145, 95, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.coverflow-card.active {
    transform: scale(1.15) translateZ(0);
    z-index: 100;
    box-shadow: 0 24px 64px rgba(65, 145, 95, 0.2);
}

.coverflow-card.prev,
.coverflow-card.next {
    transform: scale(0.85) rotateY(18deg);
    opacity: 0.7;
    z-index: 50;
}

.coverflow-card.prev {
    transform: scale(0.85) rotateY(-18deg);
}

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

.coverflow-card-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 3px solid var(--crystal-mint);
}

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

.coverflow-card-quote {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-forest);
    margin-bottom: 16px;
    line-height: 1.4;
}

.coverflow-card-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: var(--clinical-gray);
}

.coverflow-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.coverflow-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clinical-mist);
    color: var(--crystal-mint);
    font-size: 20px;
    transition: all 0.22s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-nav button:hover {
    background: var(--crystal-mint);
    color: white;
}

@media (max-width: 768px) {
    .coverflow-section {
        padding: 80px 24px;
    }
    
    .coverflow-container {
        height: auto;
    }
    
    .coverflow-track {
        flex-direction: column;
        gap: 16px;
    }
    
    .coverflow-card {
        width: 100%;
        height: auto;
        transform: none !important;
    }
    
    .coverflow-card.active {
        transform: none !important;
    }
    
    .coverflow-nav {
        margin-top: 24px;
    }
}

.contact-section {
    padding: 120px 100px;
    background: var(--clinical-mist);
}

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

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

.contact-info-card {
    background: var(--sterile-white);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(65, 145, 95, 0.06);
    transition: all 0.28s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(65, 145, 95, 0.12);
}

.contact-info-card h4 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--crystal-mint);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--clinical-gray);
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--deep-forest);
    transition: color 0.22s ease;
}

.contact-info-card a:hover {
    color: var(--crystal-mint);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 24px;
    height: 200px;
}

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

.contact-form {
    background: var(--sterile-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(65, 145, 95, 0.08);
}

.contact-form h3 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--deep-forest);
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(65, 145, 95, 0.12);
    border-radius: 9999px;
    background: var(--sterile-white);
    color: var(--clinical-gray);
    font-size: 14px;
    transition: all 0.22s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--crystal-mint);
    box-shadow: 0 0 0 3px rgba(65, 145, 95, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(26, 32, 24, 0.4);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 9999px;
    box-shadow: 0 12px 32px rgba(65, 145, 95, 0.2);
    transition: all 0.28s ease;
    margin-top: 8px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(65, 145, 95, 0.3);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--crystal-mint);
    margin-bottom: 20px;
}

.form-success h4 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--deep-forest);
    margin-bottom: 12px;
}

.form-success p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--clinical-gray);
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(65, 145, 95, 0.08);
    transition: all 0.32s ease;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 48px rgba(65, 145, 95, 0.18);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 16, 8, 0.8), transparent);
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.28s ease;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background: var(--mint-cream);
    border-top: 2px solid var(--crystal-mint);
    padding: 80px 100px 40px;
}

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

.footer-col h4 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-forest);
    margin-bottom: 20px;
}

.footer-col p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: var(--clinical-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.footer-col ul li a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: var(--clinical-gray);
    transition: color 0.22s ease;
}

.footer-col ul li a:hover {
    color: var(--crystal-mint);
}

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

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: var(--crystal-mint);
}

.footer-logo span {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-forest);
}

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

.footer-bottom p {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--deep-forest);
    letter-spacing: 0.06em;
}

.footer-bottom p.special-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: var(--clinical-gray);
    margin-top: 8px;
    letter-spacing: normal;
}

@media (max-width: 1024px) {
    footer {
        padding: 60px 24px 32px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--sterile-white);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 16px 48px rgba(65, 145, 95, 0.15);
    z-index: 9995;
    max-width: 420px;
    display: none;
    border: 1px solid rgba(65, 145, 95, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner h4 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-forest);
    margin-bottom: 10px;
}

.cookie-banner p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: var(--clinical-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 9999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.22s ease;
    cursor: pointer;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    color: white;
}

.cookie-btn.decline {
    background: var(--clinical-mist);
    color: var(--clinical-gray);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color: var(--crystal-mint);
    margin-top: 12px;
    display: block;
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 16px;
    }
}

.inner-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sterile-white);
    position: relative;
    overflow: hidden;
    padding: 120px 100px 80px;
}

.inner-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--deep-forest);
    line-height: 1.1;
    margin-bottom: 20px;
}

.inner-hero p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: var(--clinical-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .inner-hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }
}

.content-section {
    padding: 80px 100px;
    background: var(--sterile-white);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--deep-forest);
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-wrapper p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: var(--clinical-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

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

.content-wrapper li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--clinical-gray);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

.content-wrapper li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    background: var(--crystal-mint);
    border-radius: 50%;
}

.cta-section {
    padding: 100px;
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    text-align: center;
}

.cta-section h2 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-section .hero-cta {
    background: white;
    color: var(--deep-pine);
    opacity: 1;
    animation: none;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.cta-section .hero-cta:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 24px;
    }
    
    .cta-section {
        padding: 60px 24px;
    }
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sterile-white);
    padding: 120px 24px 60px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--crystal-mint), var(--deep-pine));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.thank-you-content h1 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--deep-forest);
    margin-bottom: 20px;
}

.thank-you-content p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    color: var(--clinical-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.thank-you-content .hero-cta {
    opacity: 1;
    animation: none;
    display: inline-flex;
}

@media (max-width: 768px) {
    .thank-you-page {
        padding-top: 100px;
    }
}

.text-legal {
    padding: 80px 100px;
    background: var(--sterile-white);
}

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

.text-legal h1 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--deep-forest);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--crystal-mint);
}

.text-legal h2 {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-forest);
    margin: 32px 0 16px;
}

.text-legal p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--clinical-gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.text-legal ul {
    margin: 16px 0;
    padding-left: 24px;
}

.text-legal li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--clinical-gray);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

@media (max-width: 768px) {
    .text-legal {
        padding: 60px 24px;
    }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hidden {
    display: none !important;
}