/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.4;
    color: #222222;
    background-color: #ffffff;
    padding: 0;
    opacity: 0;
    animation: fadeInPage 1.2s ease-out 0.3s forwards;
}

/* ページロード時のふわっと出現アニメーション */
@keyframes fadeInPage {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* セクション別のふわっと出現アニメーション */
.fade-in-section {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: all 1.2s ease-out !important;
}

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

/* モバイル対応のアニメーション調整 */
@media (max-width: 768px) {
    body {
        animation-duration: 1.0s;
    }
    
    .fade-in-section {
        transform: translateY(10px) !important;
        transition: all 1.0s ease-out !important;
    }
}

/* アクセシビリティ: prefers-reduced-motion対応 */
@media (prefers-reduced-motion: reduce) {
    body {
        animation: none !important;
        opacity: 1 !important;
    }
    
    .fade-in-section {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .fade-in-section.visible {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Container */
.container {
    max-width: 1008px;
    margin: 0 auto;
    /* padding: 0 216px; */
    padding: 0 16px;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5ecf6;
    padding: 20px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 155px; */
}

.logo svg {
    height: 19px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.logo-image {
    height: 19px;
    width: auto;
    display: block;
}

.footer-logo .logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.footer-logo .logo-image {
    height: 19px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4161D8;
    font-weight: 700;
    font-size: 16px;
}

.cta-button {
    background: #4161D8;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Sans JP', sans-serif;
}

.external-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* 白色にするためのフィルター */
}

/* Main Content */
.main-content {
    background: white;
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(circle at 26% 81%, rgba(84, 238, 255, 1) 0%, rgba(84, 178, 255, 1) 31%, rgba(65, 97, 216, 1) 74%, rgba(79, 172, 195, 1) 100%);
    overflow: hidden;
    position: relative;
    min-height: 466px;
    padding: 0 24px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/commons/texture02.png') no-repeat;
    background-size: 1900px;
    background-position: center right;
    margin-right: -500px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/commons/texture.png') repeat;
    background-size: 1980px;
    /* opacity: 0.7; */
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    /* padding: 80px 216px; */
    min-height: 466px;
    z-index: 3;
}

.hero-image {
    position: relative;
    width: 520px;
    height: 520px;
    flex-shrink: 0;
    order: 2;
}

.ai-robot {
    width: 100%;
    height: 100%;
    background: url('images/commons/image01.png') center/cover no-repeat;
}


.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    flex: 1;
    padding: 0;
    order: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-title-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 4px 4px 8px;
    background: white;
    border-radius: 6px;
    width: fit-content;
}

.badge-company {
    font-size: 24px;
    font-weight: 700;
    color: #4161D8;
    line-height: 1.4;
}

.badge-name {
    background: #4161D8;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.title-line {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -2%;
    text-align: left;
    line-height: 1.2;
    color: white;
}

/* Visual content styles for process section */
.visual-content .mentor-badge {
    align-self: center;
    margin-bottom: 8px;
}

.visual-content .mentor-company {
    color: white;
}

.visual-content .mentor-name {
    background: white;
    color: #4161D8;
}

.hero-description {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    line-height: 1.4;
    margin-top: 8px;
    color: white;
}

/* Stats Badges */
.stats-badges {
    position: absolute;
    right: -140px;
    top: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 20;
    width: 350px;
    height: 500px;
}

.stat-badge {
    width: 160px;
    height: 160px;
    position: absolute;
}
.badge-circle.stat2 .badge-text span {
    display: block;
    width: 87.22px;
    height: 1px;
    background-color: white;
    opacity: 0.3;
    margin: 8px auto;
}

.stat-badge:nth-child(1) {
    top: 0;
    right: 150px;
}

.stat-badge:nth-child(2) {
    top: 140px;
    right: 160px;
}

.stat-badge:nth-child(3) {
    top: 280px;
    right: 220px;
}

.badge-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.badge-circle.stat1 {
    background: 
        linear-gradient(149deg, rgba(72, 136, 226, 1) 21%, rgba(57, 139, 143, 1) 100%),
        url('images/commons/texture.png') repeat;
    background-size: auto, 1080px;
    background-blend-mode: multiply;
}

.badge-circle.stat2 {
    background: 
        linear-gradient(149deg, rgba(65, 97, 216, 1) 21%, rgba(79, 49, 162, 1) 100%),
        url('images/commons/texture.png') repeat;
    background-size: auto, 1080px;
    background-blend-mode: multiply;
    position: relative;
}

.badge-circle.stat3 {
    background: 
        linear-gradient(149deg, rgba(65, 153, 216, 1) 21%, rgba(121, 49, 162, 1) 100%),
        url('images/commons/texture.png') repeat;
    background-size: auto, 1080px;
    background-blend-mode: multiply;
}

.badge-text {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-number {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 2%;
}

.stat-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 2%;
}

.stat-sublabel {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 2%;
}

.hero-cta {
    background: #4161D8;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 16px 48px;
    margin-top: 36px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    z-index: 4;
}

.hero-note {
    position: absolute;
    bottom: 24px;
    right: 32px;
    font-size: 12px;
    font-weight: 400;
    color: white;
    line-height: 1.4;
    text-align: right;
    z-index: 3;
}

/* Solution Section */
.solution {
    background: 
        linear-gradient(135deg, rgba(84, 238, 255, 1) 0%, rgba(84, 178, 255, 1) 31%, rgba(65, 97, 216, 1) 74%, rgba(79, 172, 195, 1) 100%),
        url('images/commons/texture.png') repeat;
    background-size: auto, 1980px;
    background-blend-mode: multiply;
    padding: 80px 0;
}

.solution-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 1008px;
    width: 100%;
    box-shadow: 24px 24px 48px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solution-title {
    font-size: 40px;
    font-weight: 700;
    color: #4161D8;
    line-height: 1.4;
    text-align: center;
}

.solution-mentor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mentor-image {
    width: 530px;
    height: 298px;
    border-radius: 8px;
    background: url('images/commons/image02.png') center/cover no-repeat;
}

.mentor-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: -48px;
}

.mentor-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 4px 4px 8px;
    background: #4161D8;
    border-radius: 6px;
}

.mentor-company {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

.mentor-name {
    background: white;
    color: #4161D8;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.mentor-description {
    font-size: 32px;
    font-weight: 700;
    color: #4161D8;
    line-height: 1.4;
    text-align: center;
}

.solution-achievements {
    width: 100%;
}

.achievement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement-title {
    font-size: 24px;
    font-weight: 700;
    color: #4161D8;
    padding: 4px 24px;
    background: rgba(65, 97, 216, 0.1);
    border-left: 5px solid #4161D8;
    border-radius: 4px;
    line-height: 1.4;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.achievement-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #4161D8;
    position: relative;
    padding-left: 16px;
}

.achievement-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4161D8;
    font-weight: bold;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 24px;
        color: #4161D8;

}

.mobile-br::before {
    content: none;
}

/* Problems Section */
.problems {
    background: #ffffff;
    padding: 80px 0;
}

.problems-grid {
    display: flex;
    gap: 16px;
}

.problem-card {
    background: #F9F8FB;
    border-radius: 4px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1;
    border-bottom: 1px solid #E5E9F7;
    border-right: 1px solid #E5E9F7;
}

.problem-bottom {
    background: #F9F8FB;
    margin-top: 24px;
    padding: 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1;
    border-bottom: 1px solid #E5E9F7;
    border-right: 1px solid #E5E9F7;
}

.problem-bottom-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #4161D8;
    line-height: 1.4;
}

.problem-bottom-description {
    font-size: 24px;
    text-align: left;
    line-height: 1.4;
    color: #4161D8;
}

.problem-bottom-bluebox {
    background: #4161D8;
    color: white;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
}

.problem-bottom-bluebox-text {
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    color: #ffffff;
}

.problem-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #4161D8;
    line-height: 1.4;
}

.dotted-line {
    width: 100%;
    height: 0;
    border-top: 1px solid #E5E9F7;
}

.problem-description {
    font-size: 16px;
    text-align: left;
    line-height: 1.6;
    color: #4161D8;
}

/* Problem Bubble Section */
.problem-bubble-section {
    background: #F9F8FB;
    padding: 24px 0;
    border-bottom: 1px solid #E5E9F7;
    overflow: hidden;
}

.problem-bubbles-container {
    width: 100%;
    overflow: hidden;
}

.problem-bubbles {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: bubbleScroll 30s linear infinite;
    will-change: transform;
}

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

.problem-bubble {
    background: white;
    border-radius: 999px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    min-width: 0;
}

.bubble-icon {
    background: #4161D8;
    color: #F9F8FB;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Alata', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    flex-shrink: 0;
}

.bubble-text {
    color: #4161D8;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    padding: 0 8px;
}

/* Problem Notice */
.problem-notice {
    background: white;
    border-left: 6px solid #E5E9F7;
    border-radius: 4px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.problem-bottom-bluebox-line {
    width: 100%;
    height: 0;
    border-top: 1px solid #E5E9F7;
}

.notice-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.notice-icon-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.notice-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4161D8;
    margin: 0;
}



/* Service Section */
.service {
    background: #F9F8FB;
    padding: 80px 0;
}

.service-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.service-card {
    background: white;
    border-bottom: 1px solid #E5E9F7;
    border-right: 1px solid #E5E9F7;
    border-radius: 4px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #4161D8;
    line-height: 1.4;
}

.service-divider {
    width: 100%;
    height: 0;
    border-top: 1px solid #E5E9F7;
}

.service-description {
    font-size: 16px;
    text-align: left;
    color: #4161D8;
    line-height: 1.4;
}

.service-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    /* height: 306px; */
}

.service-cta-card {
    background: 
        linear-gradient(135deg, rgba(84, 238, 255, 1) 0%, rgba(84, 178, 255, 1) 31%, rgba(65, 97, 216, 1) 74%, rgba(79, 172, 195, 1) 100%),
        url('images/commons/texture.png') repeat;
    background-size: auto, 1980px;
    background-blend-mode: multiply;
    border-radius: 16px;
    padding: 0 0 0 80px;
    display: flex;
    align-items: center;
    gap: 24px;
    /* min-height: 400px; */
    position: relative;
    overflow: hidden;
}

.service-cta-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    /* padding: 80px 0; */
}

.service-mentor-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 4px 4px 8px;
    background: white;
    border-radius: 6px;
    z-index: 10;
}

.service-mentor-company {
    font-size: 24px;
    font-weight: 700;
    color: #4161D8;
    line-height: 1.4;
}

.service-mentor-name {
    background: #4161D8;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.service-cta-info .service-mentor-badge {
    align-self: flex-start;
    margin-bottom: 8px;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -2%;
}

.cta-description {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

.service-cta-button {
    background: #4161D8;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 16px 48px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
}

.service-cta-image {
    width: 306px;
    height: 306px;
    background: url('images/commons/image01.png') center/cover no-repeat;
    border-radius: 8px;
    margin-left: -120px;
    z-index: 0;

}

.service-note {
    font-size: 16px;
    font-weight: 400;
    color: #4161D8;
    line-height: 1.4;
}

/* Recommended Section */
.recommended {
    background: white;
    padding: 80px 0;
}

.recommended-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

.recommended-card {
    background: #F9F8FB;
    border: 1px solid #E5E9F7;
    border-radius: 4px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.recommended-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #4161D8;
    line-height: 1.4;
}

.recommended-description {
    font-size: 16px;
    text-align: left;
    line-height: 1.4;
    color: #4161D8;
}

.process-visual {
    display: flex;
    justify-content: center;
    padding: 16px 0;
    width: 100%;
}

.process-ai-illustration {
    width: 306px;
    height: 306px;
    background: url('images/commons/image01.png') center/cover no-repeat;
    border-radius: 8px;
    flex-shrink: 0;
}

.visual-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    padding: 60px 0;
}

.visual-subtitle {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -2%;
    line-height: 1.2;
    color: white;
}

.process-visual-description {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
}

.process-visual-cta {
    background: #4161D8;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 16px 48px;
    margin-top: 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Process Section */
.process {
    background: white;
    padding: 80px 0;
}

.process-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    background: #F9F8FB;
    border-bottom: 1px solid #D8DFF7;
    border-right: 1px solid #D8DFF7;
    border-radius: 4px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.step-number {
    background: #4161D8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    gap: 8px;
    flex: 1;
    max-width: 928px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #4161D8;
    line-height: 1.4;
}

.step-description {
    font-size: 16px;
    line-height: 1.4;
    color: #4161D8;
}

.process-note {
    font-size: 16px;
    color: #4161D8;
    text-align: center;
    line-height: 1.4;
    margin-top: 16px;
}

.process-visual {
    display: flex;
    justify-content: center;
    padding: 16px 0;
    width: 100%;
}

.process-visual-card {
    background: 
        linear-gradient(135deg, rgba(84, 238, 255, 0.8) 0%, rgba(84, 178, 255, 0.8) 31%, rgba(65, 97, 216, 0.8) 74%, rgba(79, 172, 195, 0.8) 100%),
        url('images/commons/texture.png') repeat;
    background-size: auto, 120px;
    background-blend-mode: soft-light;
    border-radius: 4px;
    padding: 0 80px;
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 1008px;
}

.process-ai-illustration {
    width: 360px;
    height: 316px;
    background: url('images/illustrations/ai-robot-cta.svg') center/contain no-repeat;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e5ecf6;
    padding: 40px 216px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 155px;
}

.footer-logo svg {
    height: 19px;
}

.footer-copyright {
    font-size: 12px;
    color: #000000;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Design */

/* Desktop: 769px以上 - デフォルトスタイル適用 */



/* Mobile: 768px以下 */
@media (max-width: 768px) {
    .container {
        max-width: 400px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* ヘッダーモバイル */
    .header {
        padding: 12px 24px;
    }
    
    .header .container {
        padding: 0;
        /* gap: 155px; */
    }

    .nav {
        display: none;
    }

    .logo-link {
        display: inline-block;
        text-decoration: none;
        line-height: 0;
    }

    .logo-image {
        height: 19px;
        display: block;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 16px;
    }

    /* ヒーローセクション モバイル */
    .hero {
        padding: 48px 0 32px 0;
        position: relative;
        min-height: auto;
    }
    
    /* モバイル版texture02の調整 */
    .hero::before {
        background: url('images/commons/texture02-sp.png') no-repeat;
        background-size: 780px;
        background-position: top center;
        margin: -150px auto 0 auto;
    }

    .hero-container {
        max-width: 400px;
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
        position: relative;
        min-height: auto;
    }

    .hero-image {
        order: 1;
        width: 329px;
        height: 273px;
        margin-right: 40px;
        /* margin-top: 16px; */
        position: relative;
    }

    .stats-badges {
        position: absolute;
        right: -200px;
        top: -10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 280px;
        height: 400px;
    }
    
    .stat-badge {
        width: 110px;
        height: 110px;
        position: relative;
    }
    
    .stat-badge:nth-child(1) {
        left: 0;
        top: 0;
    }
    
    .stat-badge:nth-child(2) {
        left: -10px;
        top: -20px;
    }
    
    .stat-badge:nth-child(3) {
        left: -60px;
        top: -45px;
    }
    
    .stat-number, .stat-label {
        font-size: 16px;
    }
    
    .stat-sublabel {
        font-size: 10px;
    }

    /* 元のPC版グラデーション（右側）を非表示 */
    .hero-image .hero-gradient {
        display: none;
    }

    .hero-content {
        order: 2;
        width: 100%;
        max-width: none;
        align-items: center;
        text-align: center;
        gap: 16px;
        z-index: 20;
        padding: 0;
        margin-top: -16px;
    }

    .hero-text {
        text-align: center;
        width: 100%;
        gap: 12px;
    }

    .hero-badge {
        margin: 0 auto;
        padding: 4px 4px 4px 8px;
    }

    .badge-company {
        font-size: 16px;
    }

    .badge-name {
        font-size: 16px;
    }

    .title-line {
        font-size: 36px;
        text-align: center;
    }

    .hero-description {
        font-size: 20px;
        margin: 0;
    }

    .hero-subtitle {
        font-size: 20px;
        text-align: center;
        font-weight: 700;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
        font-weight: 700;
        margin-bottom: -8px;
    }

    .product-name {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        justify-content: center;
    }

    .product-name-wrapper {
        align-items: center;
    }

    .product-badge {
        font-size: 16px;
        padding: 2px 24px;
        font-weight: 700;
    }

    .product-english {
        font-size: 32px;
        font-weight: 700;
    }

    .launch-text {
        font-size: 28px;
        font-weight: 700;
    }

    .hero-description {
        font-size: 16px;
        margin: 16px 0 0 0;
        text-align: center;
        font-weight: 700;
    }

    .hero-cta {
        padding: 16px 48px;
        margin: 0 auto;
        position: static;
        transform: none;
        width: auto;
        z-index: 10;
        background: #4161D8;
        color: white;
        border: none;
        border-radius: 100px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .hero-note {
        position: static;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        text-align: center;
        font-size: 12px;
    }

    /* イラスト切り替え - ヒーロー用 */
    .ai-robot {
        background-image: url('images/commons/image01.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 8px;
    }

    /* 課題セクション モバイル */
    .problems {
        padding: 48px 0;
    }

    .problems-grid {
        flex-direction: column;
        gap: 8px;
    }

    .problem-card {
        padding: 32px 24px;
    }

    .problem-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .mobile-br::before {
        content: "\A";
        white-space: pre;
    }

    .problem-bubble-section {
        padding: 24px 0;
    }
    
    .problem-bubbles {
        animation: bubbleScrollMobile 25s linear infinite;
        gap: 30px;
    }
    
    @keyframes bubbleScrollMobile {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-33.333%);
        }
    }
    
    .bubble-text {
        font-size: 18px;
    }

    .problem-bottom {
        padding: 24px;
    }

    .bubble-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .problem-notice {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .problem-bottom-bluebox-text {
        font-size: 20px;
        font-weight: 700;
        text-align: left;
    }

    .problem-bottom-description {
        font-size: 20px;
        font-weight: 700;

    }

    /* ソリューション モバイル */
    .solution {
        padding: 48px 0;
    }

    .solution-card {
        padding: 16px;
        border-radius: 8px;
        margin: 0;
        gap: 24px;
    }

    .solution-title {
        font-size: 24px;
    }

    .mentor-image {
        width: 100%;
        max-width: 320px;
        height: 179.92px;
        margin: -12px auto 0 auto;
    }

    .mentor-info {
        margin-top: -40px;
        gap: 8px;
    }

    .mentor-company, .mentor-name {
        font-size: 16px;
    }

    .mentor-description {
        font-size: 24px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .achievement-title {
        font-size: 20px;
        padding: 4px 24px;
    }

    .achievement-list li {
        font-size: 14px;
    }

    /* サービス内容セクション モバイル */
    .service {
        padding: 48px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-cta {
        margin-top: 24px;
    }

    /* おすすめな人セクション モバイル */
    .recommended {
        padding: 40px 0;
    }

    .recommended-container {
        gap: 24px;
    }

    .recommended-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .recommended-card {
        padding: 40px 24px;
    }

    .recommended-title {
        font-size: 20px;
    }

    /* サービスCTA モバイル */
    .service-cta-card {
        flex-direction: column-reverse;
        padding: 0 16px 12px 16px;
        gap: 0;
        margin: 0;
        border-radius: 8px;
        background: 
            linear-gradient(45deg, rgba(84, 238, 255, 1) 0%, rgba(84, 178, 255, 1) 31%, rgba(65, 97, 216, 1) 74%, rgba(79, 172, 195, 1) 100%),
            url('images/commons/texture.png') repeat;
    }

    .service-cta-info {
        padding: 20px 0;
        text-align: center;
        gap: 16px;
        margin-top: -32px;
    }

    .service-mentor-badge {
        margin: 0 auto;
        letter-spacing: 0.01px;
    }

    .service-mentor-company, .service-mentor-name {
        font-size: 16px;
    }

    .cta-title {
        font-size: 28px;
        text-align: left;
    }

    .mentor-description {
        text-align: left;
    }

    .mentor-description br {
        display: none;
    }

    .cta-description {
        font-size: 16px;
        text-align: left;
    }

    .service-cta-image {
        width: 294px;
        height: 220px;
        background: url('images/commons/image01.png') top center/cover no-repeat;
        margin: 0 auto;
        margin-left: 0;
    }

    /* 導入プロセス モバイル */
    .process {
        padding: 48px 0;
    }

    .process-container {
        gap: 24px;
    }

    .process-steps {
        flex-direction: column;
        gap: 16px;
    }

    .process-step {
        padding: 24px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-title {
        font-size: 24px;
    }

    .step-description {
        font-size: 16px;
    }

    /* プロセスビジュアル モバイル */
    .process-visual-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
    }

    .process-ai-illustration {
        width: 100%;
        max-width: 240px;
        height: 240px;
        background: #D9D9D9;
    }

    .visual-content {
        width: 100%;
        text-align: center;
    }

    .visual-subtitle {
        font-size: 28px;
    }

    /* フッター モバイル */
    .footer {
        padding: 40px 24px;
    }
    
    .footer .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        max-width: 400px;
        margin: 0 auto;
        gap: 0;
    }

    .footer-logo .logo-link {
        display: inline-block;
        text-decoration: none;
        line-height: 0;
    }

    .footer-logo .logo-image {
        height: 19px;
        display: block;
    }
    
    .footer-copyright {
        font-size: 12px;
        text-align: right;
    }
}



/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .ai-robot,
    .ai-illustration,
    .process-ai-illustration {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles would go here if needed */
}

