/* ========================================
   基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a4d7d;
    --secondary-blue: #2563a8;
    --light-blue: #3b82f6;
    --dark-blue: #0f2942;
    --accent-color: #60a5fa;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --border-gray: #e2e8f0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.9;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100vw;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible;
}

.section {
    position: relative;
    padding: 120px 0;
    z-index: 2;
    overflow: visible !important;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    background: transparent;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo a {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 153, 0, 0.6));
}

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

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: white;
    position: relative;
    padding: 8px 15px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #60a5fa);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 25px rgba(255, 153, 0, 0.9),
                 0 2px 8px rgba(0, 0, 0, 0.8);
    background: rgba(255, 153, 0, 0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.3);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    position: relative;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
    z-index: 9998;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    overflow-y: auto;
}

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

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 125, 0.02) 0%, rgba(255, 153, 0, 0.01) 100%);
    pointer-events: none;
}

.mobile-nav-list {
    list-style: none;
    padding: 120px 30px 40px;
    position: relative;
}

.mobile-nav-link {
    display: block;
    padding: 22px 30px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(30px);
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
}

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

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #60a5fa, white);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px var(--accent-color);
}

.mobile-nav-link:hover {
    color: white;
    background: transparent;
    transform: translateX(15px);
    text-shadow: 0 0 30px rgba(255, 153, 0, 1), 0 0 60px rgba(255, 153, 0, 0.5);
    letter-spacing: 2px;
}

.mobile-nav-link:hover::before {
    width: 100%;
}

.mobile-nav-link::after {
    content: '→';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-color);
}

.mobile-nav-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ========================================
   ページ全体の背景動画
======================================== */
.page-video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.6), rgba(60, 60, 60, 0.5));
    z-index: 1;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
}

.hero-logo-wrapper {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.hero-logo {
    max-width: 250px;
    width: 50vw;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.7));
}

/* ロゴのアニメーション */
.logo-animation {
    opacity: 0;
    transform: scale(0.6);
    animation: logoEntrance 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* サブタイトルアニメーション */
.hero-text-animation {
    opacity: 0;
    transform: translateY(30px);
    animation: textFadeInUp 0.8s ease 1.8s forwards;
}

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

/* ボタンセクション削除済み */

.hero-buttons .btn-primary:hover::before {
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}



/* ========================================
   アニメーション
======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.3s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.6s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.9s;
}

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

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* ========================================
   セクション共通
======================================== */
.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
    color: var(--text-dark);
    letter-spacing: 4px;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title.white {
    color: var(--white);
}

.service-title-multiline {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.title-line-1 {
    font-size: 38px;
    color: var(--white);
}

.title-line-2 {
    font-size: 38px;
    color: #60a5fa;
}

.title-line-3 {
    font-size: 38px;
    color: var(--white);
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

.highlight-blue {
    color: #60a5fa;
    position: relative;
}

.highlight-white {
    color: var(--white);
    position: relative;
}

.highlight-yellow-animate {
    color: #FFD700;
    position: relative;
    font-weight: 900;
    animation: yellowPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    background: none !important;
    padding: 0 !important;
}

@keyframes yellowPulse {
    0%, 100% {
        color: #F7E55C;
        text-shadow: 0 0 20px rgba(247, 229, 92, 0.8), 0 0 30px rgba(247, 229, 92, 0.6);
        transform: scale(1);
    }
    50% {
        color: #FFF176;
        text-shadow: 0 0 30px rgba(247, 229, 92, 1), 0 0 40px rgba(247, 229, 92, 0.8), 0 0 50px rgba(247, 229, 92, 0.6);
        transform: scale(1.05);
    }
}

/* 強みタイトル専用スタイル */
.features-title {
    display: block;
    text-align: center;
}

.features-title-white {
    color: var(--white);
    font-weight: 300;
}

.features-title-yellow {
    color: #F7E55C;
    font-weight: 900;
    animation: yellowPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(247, 229, 92, 0.8), 0 0 30px rgba(247, 229, 92, 0.6);
}

@media (max-width: 768px) {
    .features-title-white,
    .features-title-yellow {
        background: none !important;
        padding: 0 !important;
    }
}

.bg-blue {
    background: linear-gradient(135deg, rgba(26, 77, 125, 0.75), rgba(37, 99, 168, 0.75));
    color: var(--white);
}

.bg-light {
    background: rgba(248, 250, 252, 0.7);
}

/* ========================================
   強みセクション
======================================== */
.features {
    overflow: visible !important;
    width: 100%;
    height: auto !important;
    max-height: none !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
    overflow: visible !important;
    height: auto !important;
}

.feature-card {
    background: rgba(26, 77, 125, 0.85);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(96, 165, 250, 0.3);
    min-width: 0;
    box-sizing: border-box;
    overflow: visible !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(96, 165, 250, 0.6);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--white);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-text {
    font-size: 15px;
    line-height: 1.8;
    color: #e0f2fe;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========================================
   サービス紹介
======================================== */
.services-grid {
    display: grid;
    gap: 60px;
    margin-top: 60px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) .service-content {
    direction: ltr;
}

.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.service-description {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border-bottom: 2px solid var(--white);
    padding-bottom: 5px;
}

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

/* ========================================
   実績数字
======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-unit {
    font-size: 16px;
    color: var(--text-light);
}

/* ========================================
   お客様の声
======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    align-items: start;
    overflow: visible !important;
    height: auto !important;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    min-width: 0;
    box-sizing: border-box;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #F7E55C;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-type {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   CTA セクション
======================================== */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ========================================
   フッター
======================================== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   ページトップボタン
======================================== */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(26, 77, 125, 0.3);
}

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

.page-top:hover {
    background: var(--secondary-blue);
    transform: translateY(-5px);
}

/* ========================================
   ページヒーロー（サブページ用）
======================================== */
.page-hero {
    height: 30vh;
    min-height: 280px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 77, 125, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600') center/cover;
    opacity: 0.6;
    filter: grayscale(20%) contrast(110%);
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.page-hero:hover::before {
    transform: scale(1.05);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-hero-title {
    font-size: 56px;
    font-weight: 100;
    margin-bottom: 15px;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 
                 0 0 80px rgba(255, 153, 0, 0.6),
                 0 4px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 153, 0, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.page-hero-subtitle {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 12px;
    opacity: 0.95;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 
                 0 2px 10px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}

/* ========================================
   企業理念
======================================== */
.philosophy-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.philosophy-text {
    font-size: 17px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(26, 77, 125, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--white);
}

.mission-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
}

/* ========================================
   会社情報テーブル
======================================== */
.company-info-table {
    max-width: 900px;
    margin: 0 auto;
}

.info-table {
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.info-table tr {
    border-bottom: 1px solid var(--border-gray);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    padding: 25px 30px;
    text-align: left;
    width: 30%;
    font-size: 16px;
}

.info-table td {
    padding: 25px 30px;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.9;
}

.en-text {
    font-size: 14px;
    color: var(--text-light);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    margin-top: 10px;
    font-weight: 600;
}

.map-link:hover {
    color: var(--light-blue);
}

/* ========================================
   沿革タイムライン
======================================== */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--light-blue));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

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

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

.timeline-date {
    flex: 0 0 45%;
    text-align: right;
    padding-right: 40px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-date::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-blue);
}

.timeline-item:nth-child(even) .timeline-date::after {
    right: auto;
    left: -10px;
}

.timeline-content {
    flex: 0 0 45%;
    padding-left: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 30px;
    padding-right: 30px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   アクセス情報
======================================== */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.access-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.map-address {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.address-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.address-text i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.contact-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.contact-text i {
    color: var(--primary-blue);
    margin: 0 5px 0 15px;
}

.contact-text i:first-child {
    margin-left: 0;
}

.access-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.access-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 30px;
}

.access-title:first-child {
    margin-top: 0;
}

.access-list {
    list-style: none;
    margin-bottom: 20px;
}

.access-list li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.access-list i {
    color: var(--primary-blue);
    font-size: 18px;
    width: 20px;
}

.access-note {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.access-note p {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 10px;
}

.access-note i {
    color: var(--primary-blue);
    margin-top: 3px;
}

/* ========================================
   サービスページ
======================================== */
.section-description {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
    padding: 60px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.service-detail-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.service-detail-subtitle {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 2px;
}

.service-detail-text {
    font-size: 15px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

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

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.service-feature-item i {
    color: var(--primary-blue);
    font-size: 16px;
}

.service-flow {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.service-flow-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.flow-step {
    text-align: center;
}

.flow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 10px;
}

.flow-label {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.flow-arrow {
    color: var(--primary-blue);
    font-size: 20px;
}

.service-price-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.price-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
}

.price-label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.price-value {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 700;
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
    padding-left: 10px;
}

.service-certification {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.certification-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.certification-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.certification-item i {
    color: var(--primary-blue);
    font-size: 20px;
}

.service-warning {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    margin-bottom: 30px;
}

.warning-icon {
    font-size: 28px;
    color: #f59e0b;
    flex-shrink: 0;
}

.warning-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 8px;
}

.warning-content p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.8;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.support-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(26, 77, 125, 0.2);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 25px;
}

.support-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.support-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ========================================
   対応範囲ボックス
======================================== */
.capability-box-section {
    position: relative;
    padding: 50px 0;
    z-index: 1;
    overflow: visible;
}

.capability-box {
    background: rgba(255, 255, 255, 1);
    border-radius: 15px;
    padding: 40px 50px 30px 50px;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #1a4d7d;
}

.capability-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 12px;
    z-index: 0;
}

.capability-box > * {
    position: relative;
    z-index: 1;
}

.capability-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 50px;
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.highlight-marker {
    background: linear-gradient(transparent 50%, #F7E55C 50%, #F7E55C 85%, transparent 85%);
    padding: 5px 8px;
    display: inline-block;
}

.capability-highlight {
    color: var(--primary-blue);
    background: linear-gradient(transparent 60%, #F7E55C 60%);
    padding: 0 10px;
}

.capability-main {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    margin-bottom: 40px;
}

.capability-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: left;
}

.capability-item i {
    color: #1e7fde;
    font-size: 32px;
    flex-shrink: 0;
    background-image: url('https://www.genspark.ai/api/files/s/laPpLKcm');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    width: 32px;
    height: 32px;
    mix-blend-mode: multiply;
}

.capability-item i::before {
    content: '';
    opacity: 0;
}

.capability-footer {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .capability-box-section {
        padding: 0;
        margin-top: -30px;
    }
    
    .capability-box {
        padding: 20px 15px 20px 15px;
        width: 100vw;
        max-width: none;
        margin: 0;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 1);
        border-radius: 0;
        border: 2px solid #1a4d7d;
        border-left: none;
        border-right: none;
    }
    
    .capability-title {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.8;
        padding: 0 5px;
        text-align: center;
        word-break: keep-all;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .title-line-mobile {
        display: block;
    }
    
    .capability-title .highlight-marker {
        display: inline-block;
        width: auto;
    }
    
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
    }
    
    .capability-item {
        font-size: 16px;
    }
    
    .capability-item i {
        font-size: 24px;
        width: 24px;
        height: 24px;
        mix-blend-mode: multiply;
    }
    
    .capability-footer {
        font-size: 17px;
        line-height: 1.6;
        padding: 0 10px;
    }
}

/* ========================================
   事業内容紹介（ビジュアル）
======================================== */
.service-intro-visual {
    position: relative;
    background: transparent;
    z-index: 1;
    overflow: visible !important;
    height: auto !important;
}

.service-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    align-items: start;
    overflow: visible !important;
    height: auto !important;
}

.service-visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto !important;
}

.service-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-visual-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.service-visual-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.9), rgba(59, 130, 246, 0.6));
    color: var(--white);
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .service-visual-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-visual-image {
        height: 250px;
    }
    
    .service-visual-label {
        font-size: 18px;
        padding: 15px;
    }
}

/* ========================================
   代表挨拶
======================================== */
.president-message {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.president-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-blue);
}

.president-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.president-content {
    line-height: 2;
}

.president-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: justify;
}

.president-text strong {
    color: var(--primary-blue);
    font-weight: 900;
}

.president-signature {
    margin-top: 50px;
    text-align: right;
    padding-top: 30px;
    border-top: 2px solid var(--border-gray);
}

.signature-company {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.signature-name {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
}

/* ========================================
   施工実績ページ
======================================== */
.works-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.work-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 77, 125, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-detail-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-detail-btn:hover {
    transform: scale(1.05);
}

.work-info {
    padding: 30px;
}

.work-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.work-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.work-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.work-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.work-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.work-meta-item i {
    color: var(--primary-blue);
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    border-radius: 30px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-image {
    height: 400px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

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

.modal-info {
    padding: 40px;
}

.modal-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
}

.modal-meta-item i {
    color: var(--primary-blue);
    font-size: 18px;
}

.modal-description {
    margin-bottom: 40px;
}

.modal-description h3,
.modal-points h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.modal-description p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-dark);
}

.modal-points ul {
    list-style: none;
}

.modal-points li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.modal-points li i {
    color: var(--primary-blue);
    margin-top: 5px;
}

/* ========================================
   求人ページ
======================================== */
.recruit-message {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.recruit-text {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.recruit-positions {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.recruit-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recruit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.recruit-card-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.recruit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
}

.recruit-position-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}

.recruit-card-body {
    padding: 40px;
}

.recruit-detail {
    margin-bottom: 30px;
}

.recruit-detail:last-child {
    margin-bottom: 0;
}

.recruit-detail-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recruit-detail-title i {
    font-size: 20px;
}

.recruit-detail p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    padding-left: 30px;
}

/* 福利厚生 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: var(--white);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 応募の流れ */
.recruit-flow {
    max-width: 600px;
    margin: 60px auto 0;
}

.flow-step {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.flow-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}

.flow-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.flow-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.flow-arrow {
    text-align: center;
    margin: 20px 0;
    font-size: 30px;
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recruit-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .recruit-position-title {
        font-size: 24px;
    }
    
    .recruit-card-body {
        padding: 30px 20px;
    }
    
    .recruit-detail p {
        padding-left: 0;
    }
}

/* ========================================
   お問い合わせページ
======================================== */
.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 2;
    color: var(--text-light);
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 77, 125, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

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

.form-privacy {
    margin: 10px 0;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.privacy-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-link {
    color: var(--primary-blue);
    text-decoration: underline;
}

.form-submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 77, 125, 0.3);
}

.form-message {
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideIn 0.4s ease;
}

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

.form-message.error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.form-message.success {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    color: #166534;
}

.form-message i {
    font-size: 24px;
}

.form-message.error i {
    color: #ef4444;
}

.form-message.success i {
    color: #22c55e;
}

.form-message h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-message p {
    font-size: 14px;
    line-height: 1.6;
}

.char-counter {
    text-align: right;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.char-counter.over {
    color: #ef4444;
    font-weight: 700;
}

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

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-gray);
}

.contact-phone,
.contact-email,
.contact-location {
    display: flex;
    gap: 15px;
}

.contact-phone i,
.contact-email i,
.contact-location i {
    color: var(--primary-blue);
    font-size: 24px;
    flex-shrink: 0;
}

.phone-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.phone-hours,
.email-note {
    font-size: 13px;
    color: var(--text-light);
}

.email-address {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.location-address {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.8;
}

.location-map-link {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-gray);
}

.contact-features {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.contact-feature i {
    font-size: 18px;
}

/* FAQ */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i:first-child {
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.faq-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 30px 25px 65px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-logo {
        height: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-logo {
        max-width: 180px;
        width: 50vw;
    }
    
    .hero-logo-wrapper {
        margin-bottom: 35px;
    }
    
    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .page-hero {
        height: 15vh;
        min-height: 150px;
    }
    
    .page-hero-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .page-hero-subtitle {
        font-size: 12px;
        letter-spacing: 6px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .service-title-multiline .title-line-1,
    .service-title-multiline .title-line-2,
    .service-title-multiline .title-line-3 {
        font-size: 28px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
        width: 100%;
        margin: 0;
    }
    
    .testimonial-card {
        width: 100%;
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }
    
    .info-table th {
        padding-bottom: 10px;
    }
    
    .info-table td {
        padding-top: 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 70px;
    }
    
    .timeline-date {
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 15px;
    }
    
    .timeline-date::after {
        left: -60px !important;
        right: auto !important;
    }
    
    .timeline-content {
        padding-left: 30px !important;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 20px;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-info {
        padding: 30px 20px;
    }
    
    .modal-meta {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-answer p {
        padding-left: 30px;
    }
    
    .capability-box {
        padding: 16% 14%;
        margin: 0 5px;
        max-width: calc(100% - 10px);
        background-size: 100% 100%;
    }
    
    .capability-title {
        font-size: 20px;
    }
    
    .capability-main {
        font-size: 18px;
    }
    
    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 20px;
    }
    
    .president-message {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 35px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .capability-box {
        padding: 30px 25px;
        width: 92%;
        margin: 0 auto;
    }
    
    .capability-title {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.5;
        word-break: keep-all;
    }
    
    .capability-grid {
        gap: 12px 15px;
        margin-bottom: 25px;
    }
    
    .capability-item {
        font-size: 12px;
        gap: 10px;
    }
    
    .capability-item i {
        width: 18px;
        height: 18px;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .capability-footer {
        font-size: 13px;
        margin-top: 20px;
        line-height: 1.6;
    }
    
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-logo {
        max-width: 130px;
        width: 45vw;
    }
    
    .hero-logo-wrapper {
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 14px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .section-title span {
        background: none !important;
        padding: 0 !important;
    }
    
    .service-title-multiline .title-line-1,
    .service-title-multiline .title-line-2,
    .service-title-multiline .title-line-3 {
        font-size: 24px;
    }
    
    .capability-title {
        font-size: 20px;
        line-height: 1.5;
        padding: 0;
    }
    
    .capability-item {
        font-size: 15px;
    }
    
    .capability-footer {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .capability-box {
        padding: 25px 15px;
        margin: 0 auto;
        width: 90%;
        max-width: 90%;
        box-sizing: border-box;
    }
    
    .feature-card {
        padding: 25px 15px;
        width: 100%;
        margin: 0;
    }
    
    .testimonial-card {
        width: 100%;
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .cta-title {
        font-size: 20px;
        line-height: 1.6;
    }
}

/* 超小型スマホ対応 */
@media (max-width: 375px) {
    .capability-box {
        padding: 28px 22px;
        width: 90%;
        margin: 0 auto;
    }
    
    .capability-title {
        font-size: 14px;
        margin-bottom: 22px;
        line-height: 1.5;
    }
    
    .capability-grid {
        gap: 10px 12px;
        margin-bottom: 22px;
    }
    
    .capability-item {
        font-size: 11px;
        gap: 8px;
    }
    
    .capability-item i {
        width: 16px;
        height: 16px;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .capability-footer {
        font-size: 12px;
        margin-top: 18px;
    }
}

/* ==========================================
   求人ページ - 固定応募ボタン & モーダル
   ========================================== */

/* 固定応募ボタン */
.fixed-apply-btn {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    transition: bottom 0.3s ease;
}

.fixed-apply-btn.show {
    bottom: 0;
}

.apply-btn {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3a5f 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 77, 125, 0.3);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(26, 77, 125, 0.4);
    background: linear-gradient(135deg, #0d3a5f 0%, var(--primary-blue) 100%);
}

.apply-btn i {
    margin-right: 10px;
}

/* モーダル */
.apply-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.apply-modal.show {
    display: flex;
    opacity: 1;
}

.apply-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.apply-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3a5f 100%);
    border-radius: 20px 20px 0 0;
}

.apply-modal-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.apply-modal-title i {
    margin-right: 10px;
    color: var(--accent-color);
}

.close-modal {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* 応募フォーム */
.apply-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 16px;
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.required {
    color: #e74c3c;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 77, 125, 0.1);
}

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

.form-submit {
    margin-top: 30px;
}

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67e00 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 153, 0, 0.4);
    background: linear-gradient(135deg, #e67e00 0%, var(--accent-color) 100%);
}

.submit-btn i {
    margin-right: 10px;
}

/* 求人カード - 給料ハイライト */
.salary-highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.6;
}

.night-bonus {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
}

.license-highlight {
    font-weight: 600;
    color: var(--primary-blue);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .apply-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .apply-modal-header {
        padding: 20px;
    }
    
    .apply-modal-title {
        font-size: 20px;
    }
    
    .apply-form {
        padding: 20px;
    }
    
    .apply-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .fixed-apply-btn {
        padding: 12px 15px;
    }
    
    .apply-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .apply-modal-title {
        font-size: 18px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
        line-height: 1.6;
    }
}
