/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* 基本設定 */
:root {
    --main-color: #0a0a0a;
    --accent-color: #EA4335;
    --sub-accent-color: #FBBC05;
    --text-color: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --bg-light: #1a1a1a;
    --bg-dark: #0a0a0a;
    --bg-card: #1f1f1f;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.4);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-japanese: 'Noto Sans JP', sans-serif;
    --font-english: 'Impact', sans-serif;
}

/* デスクトップ版ではモバイル改行を非表示 */
.mobile-break {
    display: inline;
    margin-top: 0;
}

body {
    font-family: var(--font-japanese);
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    min-height: 100vh;
    font-feature-settings: "liga" 1, "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--main-color);
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-image {
    width: 165px;
    height: 165px;
    object-fit: contain;
    transition: var(--transition);
    margin: -45px 0 -50px -20px;
}

.logo-image:hover {
    transform: scale(1.1);
}

.logo-text {
    font-family: var(--font-english);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-skill {
    color: var(--accent-color);
    position: relative;
}

.logo-up {
    color: var(--sub-accent-color);
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(251, 188, 5, 0.4);
    position: relative;
}



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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(234, 67, 53, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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



/* ヒーローセクション */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
    width: 100%;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 150px);
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    overflow: visible;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-eyecatch {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.eyecatch-text {
    font-family: var(--font-english);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
    text-shadow: 0 0 20px rgba(234, 67, 53, 0.3);
}

.eyecatch-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--accent-color);
}

.hero-main {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-japanese);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    position: relative;
    overflow: visible;
    word-wrap: break-word;
    word-break: keep-all;
    color: white;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-line {
    display: block;
    overflow: visible;
    position: relative;
    margin-bottom: 1rem;
    word-wrap: break-word;
    word-break: keep-all;
    white-space: normal;
}

.hero-line:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: clamp(4rem, 9vw, 7.5rem);
    text-shadow: none;
    font-family: var(--font-japanese);
    margin-left: -1rem;
}

.hero-line.highlight {
    color: var(--accent-color);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--sub-accent-color) 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    text-shadow: 0 0 30px rgba(234, 67, 53, 0.4);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: -0.02em;
    transform: scale(1.02);
}

.hero-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 2px;
    transform: scaleX(0);
    animation: underline 1.5s ease-out 0.5s forwards;
}

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    opacity: 0.9;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: none;
    position: relative;
    padding-left: 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 60%;
    background: linear-gradient(180deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 4px;
}

.hero-description {
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    padding-left: 0;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    padding-left: 0;
    margin-top: -1rem;
}

/* 背景装飾 */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(234, 67, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 188, 5, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-bg-element {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-color), var(--sub-accent-color));
    opacity: 0.1;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
}

.bg-element-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.bg-element-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.bg-element-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 220px;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #FF6B35 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF6B35 0%, var(--accent-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(234, 67, 53, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover::before {
    left: 100%;
}

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

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

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

.section-title {
    font-family: var(--font-japanese);
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
}

/* Features セクション */
.features {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 50%, var(--bg-dark) 100%);
    position: relative;
    padding: 6rem 0;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(234, 67, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 188, 5, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    opacity: 0.8;
    pointer-events: none;
    animation: shimmer 4s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.95), rgba(20, 20, 20, 0.95));
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(234, 67, 53, 0.1), 
        rgba(251, 188, 5, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(234, 67, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(234, 67, 53, 0.4);
}

.feature-number {
    font-family: var(--font-english);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(234, 67, 53, 0.5);
    position: relative;
    display: inline-block;
}

.feature-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 1px;
}

.feature-title {
    font-family: var(--font-japanese);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title::after {
    opacity: 1;
    width: 80px;
}

.feature-description {
    font-family: var(--font-japanese);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: var(--text-color);
    transform: scale(1.02);
}

/* MVV セクション */
.mvv {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    position: relative;
    padding: 5rem 0;
}

.mvv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(234, 67, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 188, 5, 0.1) 0%, transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.mvv-section-title {
    font-family: var(--font-english);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mvv-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.mvv-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(31, 31, 31, 0.8);
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.mvv-card:hover::before {
    left: 100%;
}

.mvv-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(234, 67, 53, 0.3);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.3);
    transition: all 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(234, 67, 53, 0.5);
}

.mvv-title {
    font-family: var(--font-english);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 25px rgba(234, 67, 53, 0.3);
    position: relative;
}

.mvv-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 1px;
    opacity: 0;
    transition: all 0.3s ease;
}

.mvv-card:hover .mvv-title::after {
    opacity: 1;
    width: 70px;
}

.mvv-text {
    font-family: var(--font-japanese);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mvv-card:hover .mvv-text {
    color: var(--text-color);
    transform: scale(1.02);
}

/* Why Us セクション */
.why-us {
    background: var(--bg-dark);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 80%, rgba(251, 188, 5, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(234, 67, 53, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-us-card {
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.95), rgba(20, 20, 20, 0.95));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(234, 67, 53, 0.1), 
        rgba(251, 188, 5, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.why-us-card:hover::before {
    left: 100%;
}

.why-us-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(234, 67, 53, 0.08), 
        rgba(251, 188, 5, 0.08), 
        transparent);
    transition: left 0.6s ease;
}

.why-us-card:hover::before {
    left: 100%;
}

.why-us-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.why-us-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 
        0 6px 15px rgba(234, 67, 53, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.why-us-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(234, 67, 53, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.why-us-content {
    flex: 1;
}

.why-us-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.why-us-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.why-us-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2;
    position: relative;
    word-break: break-word;
}

.why-us-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.why-us-card:hover .why-us-title::after {
    width: 60px;
}

.why-us-description {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-align: justify;
    word-break: break-word;
}

.why-us-card:hover .why-us-description {
    color: var(--text-color);
}

/* 代表メッセージの新しいセクション */
.mission-section,
.approach-section,
.call-to-action {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.95), rgba(20, 20, 20, 0.95));
    border-radius: 16px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.mission-section::before,
.approach-section::before,
.call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(234, 67, 53, 0.05), 
        rgba(251, 188, 5, 0.05), 
        transparent);
    transition: left 0.8s ease;
}

.mission-section:hover::before,
.approach-section:hover::before,
.call-to-action:hover::before {
    left: 100%;
}

.mission-title,
.approach-title,
.cta-title {
    font-family: var(--font-english);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.mission-title::after,
.approach-title::after,
.cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 2px;
}

.mission-items {
    display: grid;
    gap: 1rem;
}

.mission-item {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mission-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.mission-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.approach-items {
    display: grid;
    gap: 1.5rem;
}

.approach-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--sub-accent-color));
    transition: width 0.3s ease;
}

.approach-item:hover::before {
    width: 8px;
}

.approach-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.approach-subtitle {
    font-family: var(--font-english);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.approach-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cta-highlight {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1), rgba(251, 188, 5, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(234, 67, 53, 0.2);
    text-align: center;
}

.cta-highlight p:first-child {
    font-family: var(--font-english);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
}

.cta-highlight p:last-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* 年収UP事例セクション */
.salary-cases {
    background: var(--bg-dark);
    position: relative;
    padding: 6rem 0;
}

.salary-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(234, 67, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 188, 5, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.salary-section-title {
    font-family: var(--font-japanese);
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.salary-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
}

.salary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.salary-card {
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.95), rgba(20, 20, 20, 0.95));
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
}

.salary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(234, 67, 53, 0.1), 
        rgba(251, 188, 5, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.salary-card:hover::before {
    left: 100%;
}

.salary-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.salary-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 
        0 8px 20px rgba(234, 67, 53, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.salary-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

.salary-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.salary-position {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
}

.salary-change {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(20, 20, 20, 0.4));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

.before, .after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.before .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.after .label {
    font-size: 0.9rem;
    color: var(--sub-accent-color);
    font-weight: 600;
}

.before .amount {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.after .amount {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sub-accent-color);
    text-shadow: 0 0 20px rgba(251, 188, 5, 0.3);
}

.arrow {
    color: var(--accent-color);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.salary-increase {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--accent-color), #d32f2f);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 
        0 8px 20px rgba(234, 67, 53, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotate(2deg);
    animation: float 3s ease-in-out infinite;
}

.increase-amount {
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% { transform: rotate(2deg) translateY(0px); }
    50% { transform: rotate(2deg) translateY(-5px); }
}

.salary-details {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.salary-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(234, 67, 53, 0.03) 0%, 
        transparent 50%, 
        rgba(251, 188, 5, 0.03) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.salary-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.salary-details p:last-child {
    margin-bottom: 0;
}

.salary-quote {
    background: linear-gradient(145deg, rgba(234, 67, 53, 0.12), rgba(234, 67, 53, 0.08));
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0 16px 16px 0;
    box-shadow: 
        0 6px 20px rgba(234, 67, 53, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.salary-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(234, 67, 53, 0.3);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.salary-quote p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* コンセプトセクション */
.concept {
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    color: white;
    position: relative;
}

.concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.concept-title {
    font-family: var(--font-japanese);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.mobile-break-concept {
    display: inline;
}

.concept-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.concept-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.concept-item i {
    font-size: 1.5rem;
    color: var(--sub-accent-color);
    min-width: 30px;
}

/* Company セクション */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.company-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.company-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.company-card-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* フッター */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-logo-image {
    width: 165px;
    height: 165px;
    object-fit: contain;
    transition: var(--transition);
    margin: -62px 0 -62px 0;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-english);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--sub-accent-color);
    transform: translateY(-2px);
}

.footer-nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav-list a:hover {
    color: var(--sub-accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ページヘッダー */
.page-header {
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    color: white;
    padding: 6rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.page-title {
    font-family: var(--font-japanese);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 会社情報 */
.company-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(234, 67, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 188, 5, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.info-item {
    background: rgba(31, 31, 31, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--sub-accent-color);
}

.info-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 成功事例 */
.success-cases {
    background: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
}

.success-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 60% 40%, rgba(234, 67, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(251, 188, 5, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

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

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.case-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.case-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.case-position {
    color: var(--accent-color);
    font-weight: 500;
}

.salary-change {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.before {
    color: var(--text-secondary);
}

.after {
    color: var(--accent-color);
}

.case-quote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--sub-accent-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 企業理念 */
.philosophy {
    padding: 5rem 0;
}

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

.philosophy-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.philosophy-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.philosophy-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 事業内容 */
.services {
    background: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 70% 70%, rgba(234, 67, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 30%, rgba(251, 188, 5, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 代表プロフィール */
.ceo-profile {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

.ceo-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(234, 67, 53, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.profile-image {
    text-align: center;
}

.ceo-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.ceo-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.ceo-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.ceo-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* 代表メッセージ */
.ceo-message {
    padding: 5rem 0;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.message-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.4;
}

.message-text {
    margin-bottom: 3rem;
}

.message-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.message-signature {
    text-align: right;
    border-top: 2px solid var(--accent-color);
    padding-top: 2rem;
}

.signature-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* ビジョン詳細 */
.vision-detail {
    background: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
}

.vision-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 40% 80%, rgba(251, 188, 5, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(234, 67, 53, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vision-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

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

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.vision-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.vision-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ダークテーマヘッダー */
.header-white {
    background: var(--main-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header-white .nav-link {
    color: var(--text-secondary);
}

.header-white .nav-link:hover {
    color: var(--accent-color);
}

.header-white .nav-link-active {
    color: var(--accent-color);
}



/* メインコンテンツ */
.main-content {
    background: var(--bg-dark);
    min-height: 100vh;
    padding-top: 100px;
}

/* ページタイトル */
.page-title-main {
    font-family: var(--font-japanese);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    text-align: center;
    margin: 1rem 0 3rem;
    position: relative;
    text-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
    animation: fadeInUp 1s ease-out;
}

.page-title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 2px;
}

/* セクションサブタイトル */
.section-subtitle {
    font-family: var(--font-english);
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

/* 会社情報セクション */
.company-info-section {
    padding: 3rem 0;
    background: var(--bg-light);
    position: relative;
}

.company-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(234, 67, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 188, 5, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.company-info-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.4s both;
    transition: var(--transition);
}

.company-info-table:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.info-term {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.1), rgba(251, 188, 5, 0.1));
    padding: 2rem;
    font-weight: 700;
    color: var(--text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    position: relative;
    transition: var(--transition);
}

.info-term:hover {
    background: linear-gradient(135deg, rgba(234, 67, 53, 0.15), rgba(251, 188, 5, 0.15));
}

.info-desc {
    padding: 2rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: var(--transition);
}

.info-desc:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.02);
}

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

.business-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.business-list li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.8rem;
    top: 2px;
}

.business-list li:last-child {
    margin-bottom: 0;
}

/* Access セクション */
.access-section {
    padding: 3rem 0 6rem;
    background: var(--bg-dark);
    position: relative;
}

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(234, 67, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 188, 5, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.access-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.address-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.address-info:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.address-text {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
}

.address-text::before {
    content: '📍';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav {
        display: none;
    }






    
    .logo {
        margin-left: 1rem;
    }

    .logo-image {
        width: 155px;
        height: 155px;
        margin: -30px 0 -35px -20px;
    }
    
    .hero .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        padding: 0;
        margin: 0;
        align-items: flex-start;
        text-align: left;
        min-height: calc(100vh - 120px);
    }
    
    .hero-title {
        font-size: 9rem;
        line-height: 0.8;
        word-wrap: break-word;
        word-break: keep-all;
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-eyecatch {
        margin-bottom: 1.5rem;
    }
    
    .eyecatch-text {
        font-size: 0.9rem;
    }
    
    .hero-bg-element {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-number {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .mvv {
        padding: 3rem 0;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mvv-card {
        padding: 2rem 1.5rem;
    }
    
    .mvv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .mvv-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .mvv-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .why-us {
        padding: 3rem 0;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .why-us-number {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .why-us-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .why-us-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .salary-cases {
        padding: 3rem 0;
    }
    
    .salary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .salary-card {
        padding: 2rem 1.5rem;
    }
    
    .salary-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .salary-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .salary-change {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .before, .after {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .salary-details {
        margin-bottom: 1.5rem;
    }
    
    .salary-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .concept {
        padding: 3rem 0;
    }
    
    .concept-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .concept-list {
        gap: 1rem;
    }
    
    .concept-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .concept-item i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .company {
        padding: 3rem 0;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .company-card-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .company-card-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-list {
        grid-template-columns: 1fr;
    }
    
    .info-term {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .page-title-main {
        font-size: 1.5rem;
        margin: 2rem 0 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .company-info-section,
    .access-section {
        padding: 2rem 0;
    }
}

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

    .logo-image {
        width: 130px;
        height: 130px;
        margin: -25px 0 -30px -18px;
    }
    
    .hero-content {
        padding: 0;
        margin: 0;
    }
    
    .hero-title {
        font-size: 6rem;
        line-height: 0.8;
        margin-bottom: 1rem;
        word-break: break-all;
        white-space: normal;
        width: 100%;
        text-align: center;
        padding: 0 0.5rem;
    }
    .hero-line:first-child {
        font-size: 1rem;
    }
    
    .hero-eyecatch {
        margin-bottom: 1rem;
    }
    
    .eyecatch-text {
        font-size: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
    }
    
    .hero-description p {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .features {
        padding: 2rem 0;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-number {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .mvv {
        padding: 2rem 0;
    }
    
    .mvv-card {
        padding: 1.5rem 1rem;
    }
    
    .mvv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .mvv-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .mvv-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .why-us {
        padding: 2rem 0;
    }
    
    .why-us-card {
        padding: 1.5rem 1rem;
    }
    
    .why-us-number {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .why-us-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .why-us-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .salary-cases {
        padding: 2rem 0;
    }
    
    .salary-card {
        padding: 1.5rem 1rem;
    }
    
    .salary-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .salary-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .salary-change {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .salary-details p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .concept {
        padding: 2rem 0;
    }
    
    .concept-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .concept-item {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .concept-item i {
        font-size: 1.1rem;
        margin-right: 0.6rem;
    }
    
    .company {
        padding: 2rem 0;
    }
    
    .company-card {
        padding: 1.5rem 1rem;
    }
    
    .company-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .company-card-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
} 

/* 代表メッセージページ専用スタイル */

/* CEOプロフィールセクション */
.ceo-profile-section {
    padding: 3rem 0;
    background: var(--bg-light);
    position: relative;
}

.ceo-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(234, 67, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 188, 5, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ceo-profile-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.ceo-profile-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    transition: var(--transition);
}

.ceo-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ceo-profile-image {
    flex-shrink: 0;
}

.ceo-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
    object-fit: cover;
}

.ceo-profile-info {
    flex: 1;
}

.ceo-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.ceo-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.ceo-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ceo-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.detail-value {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* メッセージセクション */
.message-section {
    padding: 3rem 0;
    background: var(--bg-dark);
    position: relative;
}

.message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(234, 67, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 188, 5, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.message-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
}

.message-text {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.message-text:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.message-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-signature {
    text-align: right;
    padding: 2rem 0 0 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.signature-name {
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.3rem;
    text-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
}

/* ビジョンセクション */
.vision-section {
    padding: 3rem 0 6rem;
    background: var(--bg-light);
    position: relative;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(234, 67, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 188, 5, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.vision-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
    transition: var(--transition);
}

.vision-card:hover .vision-icon {
    transform: scale(1.1);
}

.vision-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.vision-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .ceo-profile-card {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem;
        display: flex !important;
        align-items: center;
    }
    
    .ceo-profile-image {
        display: block !important;
        text-align: center;
        margin-bottom: -0.5rem;
        order: -1 !important;
        flex-shrink: 0;
        width: 100%;
    }
    
    .ceo-profile-image .ceo-avatar {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--accent-color);
        box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
    }
    
    .ceo-avatar {
        width: 140px;
        height: 140px;
        font-size: 2.5rem;
        margin: 0 auto;
    }
    
    .ceo-name {
        font-size: 1.5rem;
    }
    
    .message-title {
        font-size: 1.4rem;
    }
    
    .message-text {
        padding: 2rem;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-card {
        padding: 2rem;
    }
}

/* FAQページ専用スタイル */

/* FAQセクション */
.faq-section {
    padding: 3rem 0 6rem;
    background: var(--bg-light);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(234, 67, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 188, 5, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.faq-details {
    width: 100%;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: var(--transition);
    list-style: none;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    line-height: 1.4;
}

.faq-arrow {
    color: var(--accent-color);
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-details[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    background: var(--bg-card);
    animation: slideDown 0.3s ease-out;
}

.faq-answer p {
    margin: 0;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .faq-icon {
        font-size: 1rem;
    }
}

/* Coming Soonページ専用スタイル */

/* Coming Soonセクション */
.coming-soon-section {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(234, 67, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 188, 5, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

.coming-soon-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--sub-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.3);
    animation: float 3s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.1em;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 10px rgba(234, 67, 53, 0.3);
}

.coming-soon-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.coming-soon-cta {
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .coming-soon-content {
        padding: 1rem;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
    
    .coming-soon-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
} 