/* ==========================================
   リセット & 基本設定
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3e5e9b;
    --secondary-color: #ff20ca;
    --dark-bg: #0a0a0a;
    --darker-bg: #161616;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-gradient: linear-gradient(135deg, #3e5e9b 0%, #ff20ca 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   Loading Screen
   ========================================== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.fade-out {
    opacity: 1;
}

#loading-screen.fade-out .loading-spinner,
#loading-screen.fade-out .enter-button {
    animation: punchExpand 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

#loading-screen.fade-out .loading-content > *:not(.loading-spinner-wrapper) {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body {
    position: relative;
}

#main-content {
    position: relative;
    opacity: 0;
}

#main-content > *:not(#background-animation) {
    filter: blur(20px);
    transition: filter 1.2s ease;
}

#main-content.show > *:not(#background-animation) {
    filter: blur(0px);
}

#reveal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9997;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.loading-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    opacity: 0;
    scale: 3;
}

.loading-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-suffix {
    color: var(--text-primary);
}

.loading-spinner-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    opacity: 0;
    animation: fadeInScale 0.8s 0.3s ease forwards;
}

.loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    transform-origin: center center;
    animation: spinnerGrow 1.5s ease forwards;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 6px solid transparent;
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--primary-color);
    animation-duration: 2.5s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--secondary-color);
    animation-duration: 1.8s;
}

.enter-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    padding: 0;
    width: auto;
    height: auto;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    animation: enterPulse 2s ease-in-out 1s infinite;
}

.enter-button:hover {
    text-shadow: 0 0 20px rgba(255, 32, 202, 0.8);
    animation: none;
}

.enter-text {
    position: relative;
}

.enter-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.enter-button:hover .enter-text::after {
    width: 100%;
}

.enter-button i {
    transition: transform 0.3s ease;
}

.enter-button:hover i {
    transform: translateX(5px);
}

.loading-progress {
    position: absolute;
    top: calc(50% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: visible;
    opacity: 1;
}

.loading-progress.complete {
    opacity: 0;
}

.progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 32, 202, 0.6);
}

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

@keyframes spinnerGrow {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes punchExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    30% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(50);
        opacity: 0;
    }
}

@keyframes enterPulse {
    0%, 100% {
        scale: 1;
    }
    50% {
        scale: 1.1;
    }
}

/* ==========================================
   アニメーション背景
   ========================================== */
#background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--darker-bg);
}

/* ==========================================
   ナビゲーション
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    color: var(--text-primary);
}

.logo-suffix {
    color: var(--secondary-color);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ==========================================
   ヒーローセクション
   ========================================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    padding-top: 100px;
}

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

.hero-logo {
    margin-bottom: 3rem;
}

.company-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.name-main {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name-suffix {
    color: var(--text-primary);
}

.hero-tagline {
    margin: 3rem 0;
}

.tagline-item {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    margin: 1rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.tagline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.tagline-item:nth-child(2) {
    animation-delay: 0.4s;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-item:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-primary);
    opacity: 0;
    animation: fadeInUp 0.8s 0.8s forwards;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.hero-subtitle p {
    margin: 0.5rem 0;
}

.hero-sub-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    opacity: 0.8;
    letter-spacing: 0.1em;
    font-weight: 300;
    margin: 1rem 0;
}

.hero-tagline {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-primary);
    opacity: 1;
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-top: 1.5rem;
}

.hero-sub-text-mini {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    opacity: 0.7;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: relative;
    margin-top: -150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.scroll-indicator span {
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
    animation: scrollDot 2s infinite;
}

/* ドットが上から下に動くアニメーション */
@keyframes scrollDot {
    0%, 100% {
        top: 0;
        opacity: 1;
    }
    50% {
        top: 50px;
        opacity: 0.3;
    }
}

/* バウンスアニメーション */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================
   セクション共通
   ========================================== */
section {
    padding: 5rem 2rem;
}

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

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    --line-width: 0px;
}

.section-title .title-jp {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--line-width);
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ==========================================
   技術スタックセクション
   ========================================== */
.tech-section {
    background: transparent;
}

/* ==========================================
   強みセクション
   ========================================== */
.strength-section {
    background: transparent;
    padding: 5rem 2rem;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strength-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.strength-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(255, 32, 202, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.strength-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.strength-card:hover .strength-icon {
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.strength-card h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.card-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem !important;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.strength-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    text-align: center;
}

.policy-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.policy-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 400;
}

.policy-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    margin: 1.5rem 0;
}

.policy-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* 実例セクションは削除済み */

/* ==========================================
   技術スタックセクション
   ========================================== */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(255, 32, 202, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.tech-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.tech-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.tech-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem !important;
    opacity: 0.8;
}

.tech-card p {
    color: var(--text-secondary);
}

/* ==========================================
   会社概要セクション
   ========================================== */
.company-section {
    background: transparent;
}

.info-panel {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
}

.panel-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.3rem;
}

.info-table th {
    text-align: left;
    padding: 0.8rem 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    width: 200px;
    vertical-align: top;
    font-size: 0.95rem;
}

.info-table td {
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.info-table tr {
    background: rgba(255, 255, 255, 0.02);
}

/* ==========================================
   採用情報セクション
   ========================================== */
.recruit-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.recruit-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(62, 94, 155, 0.3);
}

.highlight-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-item p {
    color: var(--text-secondary);
}

/* ==========================================
   お問い合わせセクション
   ========================================== */
.contact-section {
    background: transparent;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.recruit-notice {
    background: rgba(255, 32, 202, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 32, 202, 0.4);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================
   お問い合わせセクション
   ========================================== */
.contact-section {
    background: transparent;
    padding: 6rem 2rem;
}

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

/* 左側：会社情報カード */
.contact-info-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    align-self: start;
    position: sticky;
    top: 100px;
}

.company-logo {
    margin-bottom: 2.5rem;
}

.info-notice {
    font-size: 0.75rem;
    color: rgba(255, 100, 100, 0.8);
    margin-top: 0.3rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3e5e9b 0%, #ff20ca 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-small {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.3rem;
}

.info-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
}

.info-value:hover {
    color: var(--primary-color);
}

.info-notice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* 右側：フォーム */
.contact-form-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
}

.google-form-iframe {
    width: 100%;
    height: 1410px;
    border: none;
    border-radius: 10px;
}

/* 削除: フォーム関連の古いスタイル */

/* ==========================================
   フッター
   ========================================== */
.footer {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================
   アニメーション
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

/* ==========================================
   レスポンシブデザイン
   ========================================== */
@media (max-width: 768px) {
    /* Divisions Section */
    .divisions-section {
        padding: 4rem 1rem;
    }
    
    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .division-card {
        padding: 2rem 1.5rem;
    }
    
    .division-title {
        font-size: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    /* お問い合わせセクション */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .info-table {
        display: block;
    }

    .info-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
        padding: 0.8rem;
        border-radius: 8px;
    }

    .info-table th,
    .info-table td {
        width: 100%;
        padding: 0.4rem 0;
    }

    .info-table th {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.4rem;
        margin-bottom: 0.4rem;
        font-size: 0.85rem;
    }

    .info-panel {
        padding: 2rem 1.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .strength-grid {
        grid-template-columns: 1fr;
    }

    .recruit-highlight {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .company-name {
        font-size: 2.5rem;
    }

    .tagline-item {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .info-panel {
        padding: 1.5rem 1rem;
    }

    .policy-panel {
        padding: 2rem 1.5rem;
    }

    .recruit-notice {
        flex-direction: column;
        padding: 1.5rem;
    }

    .notice-text {
        font-size: 1.1rem;
    }
}

/* ==========================================
   スムーズスクロール調整
   ========================================== */
html {
    scroll-padding-top: 80px;
}

/* ==========================================
   Divisions Section
   ========================================== */
.divisions-section {
    padding: 6rem 2rem;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.division-card {
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 94, 155, 0.2) 0%, rgba(255, 32, 202, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.division-card:hover::before {
    opacity: 1;
}

.division-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 60px rgba(255, 32, 202, 0.3);
}

.division-card > * {
    position: relative;
    z-index: 1;
}

.division-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.division-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 32, 202, 0.4);
}

.division-badge {
    background: rgba(255, 32, 202, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.division-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.division-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.division-title:hover {
    color: var(--secondary-color);
}

.division-title:hover::after {
    width: 100%;
}

.division-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.division-name-jp {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
}

.division-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.division-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-tag i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.division-card:hover .feature-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 32, 202, 0.3);
}

.division-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    background: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 32, 202, 0.3);
}

.division-link:hover {
    gap: 1.2rem;
    background: var(--primary-color);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.division-link i {
    transition: transform 0.3s ease;
}

.division-link:hover i {
    transform: translateX(5px);
}

/* ==========================================
   Technology Section
   ========================================== */
.tech-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(255, 32, 202, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.tech-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.tech-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.tech-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem !important;
    opacity: 0.8;
}

.tech-card p {
    color: var(--text-secondary);
}
