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

:root {
    --color-primary: #00A3B4;
    --color-primary-dark: #008A96;
    --color-secondary: #2D3436;
    --color-accent: #FF6B35;
    --color-bg-main: #FAFAFA;
    --color-bg-secondary: #F5F5F5;
    --color-bg-card: #FFFFFF;
    --color-text: #2D3436;
    --color-text-muted: #636E72;
    --color-border: #E8E8E8;
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 8px 32px rgba(0, 163, 180, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(0, 163, 180, 0.12);
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease-out;
}

*, p, strong {
    color: inherit;
}

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gilroy', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

h1 { font-size: 72px; font-weight: 300; }
h2 { font-size: 48px; font-weight: 500; }
h3 { font-size: 32px; font-weight: 500; }

@media (max-width: 768px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 24px; */
}

section {
    padding: 120px 0;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    border-bottom-color: var(--color-border);
    height: 64px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: 'Gilroy', 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-secondary);
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 24px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 24px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right var(--transition-slow);
    padding: 100px 40px 40px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-base);
}

.mobile-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu a {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-secondary);
}

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

@media (max-width: 992px) {
    .nav-menu, .header-contact { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: block; }
}

.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--color-bg-main) 0%, #F0F7F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, #E8F4F5 0%, var(--color-bg-main) 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-secondary);
}

.hero h1 span {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust-item {
    font-size: 14px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust-item::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1s ease-out 0.3s forwards;
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, #E8F4F5 0%, #D4EEF2 100%);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-card);
    position: relative;
}

.hero-illustration svg {
    width: 200px;
    height: 200px;
    color: var(--color-primary);
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: drift 20s infinite linear;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: -5s; }
.particle:nth-child(3) { top: 80%; left: 20%; animation-delay: -10s; }
.particle:nth-child(4) { top: 30%; left: 70%; animation-delay: -15s; }

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

@keyframes fadeInScale {
    to { opacity: 1; transform: scale(1); }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, 30px); }
    75% { transform: translate(20px, 20px); }
}

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-illustration { max-width: 350px; margin: 0 auto; }
}

.hero-mini {
    padding-top: 80px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--color-bg-main) 0%, #F0F7F8 100%);
    position: relative;
    overflow: hidden;
}

.hero-mini-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumbs {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs span {
    color: var(--color-primary);
}

.hero-mini h1 {
    font-size: 48px;
    color: var(--color-secondary);
}

.hero-mini-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-top: 16px;
}

.hero-decoration {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #E8F4F5 0%, #D4EEF2 100%);
    border-radius: 24px;
    animation: rotate 60s infinite linear;
    display: none;
}

@media (min-width: 992px) {
    .hero-decoration { display: block; }
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.section-title {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
}

.section-title-line {
    width: 4px;
    height: 32px;
    background: var(--color-primary);
    flex-shrink: 0;
    margin-top: 8px;
}

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

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.service-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-base);
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

.about-section {
    background: var(--color-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 80px;
    align-items: center;
}

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

.about-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.4;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-content strong {
    color: var(--color-primary);
}

.about-slider {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/3;
    background: #E8F4F5;
}

.about-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificates {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cert-logo {
    width: 80px;
    height: 80px;
    background: var(--color-bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.cert-logo:hover {
    filter: grayscale(0%);
    color: var(--color-primary);
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #E0E0E0;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step-content {
    width: 45%;
    padding: 0 40px;
    text-align: right;
}

.process-step:nth-child(even) .process-step-content {
    text-align: left;
}

@media (max-width: 768px) {
    .process-step, .process-step:nth-child(even) {
        flex-direction: row;
    }
    .process-step-content {
        width: auto;
        padding: 0 0 0 40px;
        text-align: left;
    }
}

.process-node {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: all var(--transition-base);
    cursor: pointer;
}

.process-node:hover {
    transform: translateX(-50%) scale(1.5);
}

@media (max-width: 768px) {
    .process-node {
        left: 20px;
    }
}

.process-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 15px;
    color: var(--color-text-muted);
}

.advantages-section {
    background: #F8F8F8;
    background-image: linear-gradient(#F0F0F0 1px, transparent 1px),
                      linear-gradient(90deg, #F0F0F0 1px, transparent 1px);
    background-size: 40px 40px;
}

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

@media (max-width: 992px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.advantage-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

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

.advantage-card:hover .advantage-icon {
    animation: shake 0.5s ease;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 163, 180, 0.1) 0%, rgba(0, 163, 180, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--color-text-muted);
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.stats-section {
    background: var(--color-primary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

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

.stat-item {
    color: white;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    height: 60px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-item:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .stat-item::after { display: none; }
    .stat-item:nth-child(2)::after { display: none; }
}

.stat-number {
    font-family: 'Gilroy', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

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

@media (max-width: 992px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.team-card {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    filter: grayscale(100%);
    transition: all var(--transition-base);
    border: 3px solid transparent;
}

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

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

.team-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.team-experience {
    font-size: 13px;
    color: var(--color-text-muted);
}

.faq-section {
    background: var(--color-bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 40px 0 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

@media (max-width: 992px) {
    .review-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 576px) {
    .review-card { flex: 0 0 100%; }
}

.review-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.review-text {
    font-size: 16px;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.review-company {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.review-date {
    font-size: 12px;
    color: var(--color-text-muted);
}

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

.reviews-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.reviews-nav button:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

.reviews-nav button svg {
    width: 20px;
    height: 20px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.reviews-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.reviews-dots button.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

.contacts-section {
    background: var(--color-bg-secondary);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--color-bg-card);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 992px) {
    .contacts-grid { grid-template-columns: 1fr; padding: 40px; }
}

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

.contact-block {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 163, 180, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-block h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-block p, .contact-block a {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
}

.contact-block a:hover {
    color: var(--color-primary);
}

.schedule {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.schedule-item span:last-child {
    color: var(--color-text);
    font-weight: 500;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--color-text);
    background: var(--color-bg-main);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 163, 180, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

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

.form-submit {
    width: 100%;
}

.form-submit:hover {
    transform: none;
}

.map-container {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
}

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

.footer {
    background: var(--color-secondary);
    color: white;
    padding: 80px 0 40px;
}

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

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

.footer-logo {
    font-family: 'Gilroy', 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 14px;
    color: #B2BEC3;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    font-size: 14px;
    color: #B2BEC3;
    transition: color var(--transition-base);
}

.footer-menu a:hover {
    color: var(--color-primary);
}

.footer-contacts p {
    font-size: 14px;
    color: #B2BEC3;
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #3D4549;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #B2BEC3;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 400px;
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: block;
}

.cookie-banner h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.cookie-banner p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--color-primary);
    text-decoration: underline;
}

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

.cookie-buttons button {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cookie-accept {
    background: var(--color-primary);
    color: white;
    border: none;
}

.cookie-accept:hover {
    background: var(--color-primary-dark);
}

.cookie-decline {
    background: transparent;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.cookie-decline:hover {
    border-color: var(--color-text-muted);
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    .cookie-buttons {
        flex-direction: column;
    }
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(180deg, var(--color-bg-main) 0%, #F0F7F8 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: white;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

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

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

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

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

.gallery-overlay h4 {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

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

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

.blog-card {
    background: var(--color-bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover {
    gap: 12px;
}

.hidden {
    display: none !important;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.scale {
    transform: scale(0.95);
}

.animate-on-scroll.scale.visible {
    transform: scale(1);
}
