/* ========================================
   Simple 3-Color Design with Minimal Spacing
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 3 Main Colors */
    --color-primary: #003685;      /* Blue - Main brand color  #2563EB */
    --color-accent: #1E40AF;       /* Dark Blue - Emphasis */
    --color-text: #1F2937;         /* Dark Gray - Text */
    --color-yellow: #FFE100;       /* addition */
    
    /* Neutral Colors */
    --color-bg-white: #FFFFFF;
    --color-bg-gray: #F9FAFB;
    --color-bg-lightblue: #2EA7E0;  /* addition */
    --color-bg-paleblue: #C0F0FF;   /* addition */
    --color-border: #E5E7EB;
    --color-text-light: #6B7280;
    --color-btn-orange: #F08E00;  /* addition */
    --color-btn-green: #23AA1F;    /* addition */
    --color-btn-orange-hover: #EC6C00;  /* addition */
    --color-btn-green-hover: #198E13;   /* addition */
    
    /* Typography */
    --font-base: 'Noto Sans JP', -apple-system, sans-serif;
    
    /* Minimal Spacing - Optimized for Professional LP */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    
    /* Border Radius */
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}

/* ========================================
   Layout
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-s {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: 60px 0;
}

.bg-gray {
    background: var(--color-bg-gray);
}

/* ========================================
   Typography
   ======================================== */

.section-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-title.center {
    text-align: center;
}

.text-center {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ========================================
   Progress Bar
   ======================================== */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(229, 231, 235, 0.5);
    z-index: 10000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    width: 0;
    transition: width 0.2s ease;
}

/* ========================================
   Sticky Navigation
   ======================================== */

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    transform: translateY(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.sticky-nav.visible {
    transform: translateY(0);
}

.sticky-nav-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;  /* ← 変更：右寄せ */
    gap: 12px;                   /* ← 追加：要素間の間隔 */
    padding: 12px 0;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;  /* ← 追加：左側に配置 */
}

.sticky-nav .nav-item {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sticky-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.sticky-nav .nav-item:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--color-primary);
}

.sticky-nav .nav-item:hover::after {
    width: 80%;
}

.sticky-nav .btn-nav {
    background: var(--color-btn-orange);
    color: white;
    padding: 10px 24px;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.sticky-nav .btn-nav:hover {
    background: var(--color-btn-orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    /* margin-left: auto; を削除 */
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   Button
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 32px;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;  /*modificarion */
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3); /*addition*/
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
}

.btn:hover {
    background: var(--color-accent);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ========================================
   Hero
   ======================================== */

.hero {
    background: linear-gradient(90deg,#ffffff, #C0F0FF);
    padding: var(--space-xl) 0;
    text-align: left;
    position: relative;
}

.hero-bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 64vw;
    height: 100%;
    background: var(--color-bg-lightblue);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.hero .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
}
.hero-label {
    margin-bottom: var(--space-md);
}
 .hero-label img {
    width: 784px; 
    height: auto;
}
.hero-number {
    display: grid;
    grid-template-columns: repeat(3, 1.39em);
    gap:0;
    font-size: 54px;
    font-weight: 900;
}
.hero-number span {
    display: flex; 
    justify-content: center; /* 文字を水平方向に中央揃え */
    align-items: center; /* 文字を垂直方向に中央揃え */
    width: 1.39em; /* 幅を1文字分に固定 */
    height: 1.39em; /* 高さを1文字分に固定して正方形にする */
    border-top: 2px solid var(--color-primary);
    border-bottom: 0px solid var(--color-primary);
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary); 
    text-align: center;
    box-sizing: border-box; /* 境界線を幅と高さの内側に含める */
    padding: 0;
    margin: 0;
    background-color: #fff;
    color: var(--color-primary);
}
.hero-number span:first-child {
    border-left: 2px solid var(--color-primary);
}
.hero-number span:last-child {
    border-right: 2px solid var(--color-primary); 
}
.hero-title {
    display: grid;
    grid-template-columns: repeat(7, 1.4em);
    gap:0;
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 900;
}
.hero-title span {
    display: flex; 
    justify-content: center; /* 文字を水平方向に中央揃え */
    align-items: center; /* 文字を垂直方向に中央揃え */
    width: 1.4em; /* 幅を1文字分に固定 */
    height: 1.4em; /* 高さを1文字分に固定して正方形にする */
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary); 
    text-align: center;
    box-sizing: border-box; /* 境界線を幅と高さの内側に含める */
    padding: 0;
    margin: 0;
    background-color: #fff;
    color: var(--color-primary);
}
.hero-title span:first-child {
    border-left: 2px solid var(--color-primary);
}
.hero-title span:last-child {
    border-right: 2px solid var(--color-primary); 
}
.hero-title span.new-row {    
        /*grid-column-start: 1;*/
        border-left: 2px solid var(--color-primary);    /* このアイテムを最初の列から開始させる */
    }
    .hero-title span.second-line {
        border-top: 0px solid var(--color-primary);
    }
    .hero-title span.first-last {
        border-right: 2px solid var(--color-primary);
    }
.hero-lead {
    display: inline-block;
    font-size: clamp(24px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    margin: 30px 0;
    
    margin-bottom: var(--space-lg);
    padding: 4px 16px;
}
.hero-lead strong {
    color: var(--color-yellow);
}
.hero ul {
    list-style: none;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}
.hero ul li {
    position: relative;
    padding-left: 38px;
}
.hero ul li br {
    display: none;
}
.hero ul li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 3px;
    display: inline-block;
    background-image: url(https://img.jusnet.co.jp/career/lp/vbat_indiv/icon_list_style.png);
    width: 24px;
    height: 20px;
    background-size: contain;
    vertical-align: middle;
    z-index: 10;
}

.hero-attention {
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.hero-attention .bg-blue {
    display: inline-block;
    border:solid 2px var(--color-primary);
    color: var(--color-yellow);
    background-color: var(--color-primary);
    font-size: 25px;
    padding: 12px 25px;
}

.hero-attention .bg-white {
    display: inline-block;
    border:solid 2px var(--color-primary);
    color: var(--color-primary);
    background-color: #fff;
    font-size: 25px;
    padding: 12px 25px;
}

.hero-btn-box .btn {
    color: #fff;
    width: auto; /* 436px */
    max-height: 70px;
    justify-content: center;
    background-color: var(--color-btn-orange);
    /*border: 2px solid var(--color-btn-orange);*/
    border-radius: 9999px;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
}

.hero-btn-box .btn:hover {
    background-color: var(--color-btn-orange-hover);
    /*border: 2px solid var(--color-btn-orange-hover);*/
}

.hero .illust {
    position: absolute;
    right: 50px;
    bottom: 20px;
    width: 560px;
    height: auto;
    bottom:0;
}

@media (max-width: 1320px) {
    .hero-bg2 {
        width: 88vw;
    }
     .hero-label img {
    width: 686px; 
    height: auto;
    }
    .hero-number {
        grid-template-columns: repeat(3, 1.4em);
        font-size: 47px;
    }
    .hero-number span {
        width: 1.4em; /* 幅を1文字分に固定 */
        height: 1.4em; /* 高さを1文字分に固定して正方形にする */
    }
    .hero-title {
    grid-template-columns: repeat(7, 1.4em);
    font-size: 70px;
    }
    .hero-title span {
        width: 1.4em; /* 幅を1文字分に固定 */
        height: 1.4em; /* 高さを1文字分に固定して正方形にする */
    }
    .hero .illust {    
        right: 30px;
        width: 40vw;
        height: auto;
    }
}

@media (max-width: 900px) {
    .hero {
        background: var(--color-bg-lightblue);
    }
    .hero-bg2 {
        display: none;
    }
    .hero-label img {
    width: 588px; 
    height: auto;
    }
    .hero-number {
        grid-template-columns: repeat(3, 1.4em);
        font-size: 30px;
    }
    .hero-number span {
        width: 1.4em;
        height: 1.4em;
    }
    .hero-title {
        font-size: 60px;
    }
    .hero-lead {
        font-size: clamp(24px, 4vw, 32px);
    }
}

@media (max-width: 870px) {
    .hero {
        height: auto;
    }
    .hero-label img {
        width: 100%;
    }
    
    .hero-lead {
        background-color: var(--color-bg-lightblue);
        border: 0px;
        display: block;
        padding: 8px 0;
    }
    .hero-lead br {
        display: block;
    }
    .hero ul {
        font-size: 1.125rem;
        font-weight: 500;
        margin-bottom: var(--space-lg);
    }
    .hero ul li {
        position: relative;
        padding-left: 38px;
        line-height: 1.4;
        margin-bottom: 10px;
    } 
    .hero ul li::before {
        content: "";
        position: absolute;
        top: 5px;
        left: 3px;
        display: inline-block;
        background-image: url(https://img.jusnet.co.jp/career/lp/vbat_indiv/icon_list_style_small.png);
        width: 20px;
        height: 17px;
        z-index: 10;
    }
    .hero-attention {
        margin-bottom: 40px;
    }
    .hero-attention .bg-blue {
        font-size: 20px;
        padding: 8px 16px;
    }
    .hero-attention .bg-white {
        font-size: 20px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    .hero-number {
        font-size: clamp(32px, 7vw, 30px);
        place-content: center;
  place-items: center;
    }
    .hero-title {
        font-size:  clamp(24px, 8vw, 60px);
        place-content: center;
  place-items: center;
    }
    .hero .illust {
        display: none;
    }
}

@media (max-width: 490px) {
    .hero-number {
        grid-template-columns: repeat(3, 1.4em);
        font-size: clamp(32px, 8vw, 30px);
    }
    .hero-title {
        font-size: clamp(32px, 8vw, 45px);
    }
    .hero-number span {
        width: 1.4em;
        height: 1.4em;
    }
    .hero ul li br {
        display: block;
    }
    .hero-attention {
        margin-bottom: 30px;
    }
    .hero-attention .bg-blue {
        font-size: 16px;
        padding: 6px 10px;
    }

    .hero-attention .bg-white {
        font-size: 16px;
        padding: 6px 10px;
    }
}

/* ========================================
   Problem Box
   ======================================== */

.problem-box {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

.problem-box h3 {
    font-size: 18px;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.check-list {
    list-style: none;
}

.check-list li {
    padding-left: 28px;
    margin-bottom: var(--space-sm);
    position: relative;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.check-list li::before {
    content: '・';
    position: absolute;
    left: 8px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 20px;
}

/* ========================================
   Feature Grid
   ======================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-item {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.feature-number {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.feature-item p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Data Box
   ======================================== */

.data-box {
    display: flex;
    justify-content: space-around;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius);
}

.data-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    font-weight: 600;
}

/* ========================================
   Report Preview
   ======================================== */

.report-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    align-items: start;
}

.report-mockup {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.mockup-header {
    background: var(--color-primary);
    color: white;
    padding: var(--space-sm);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.mockup-body {
    padding: var(--space-lg);
}

.radar-placeholder {
    margin-bottom: var(--space-md);
    min-height: 300px;
}

.score-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.score-item {
    background: var(--color-bg-gray);
    padding: var(--space-sm);
    border-radius: var(--radius);
    text-align: center;
}

.score-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.score-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.report-details h3 {
    font-size: 18px;
    margin-bottom: var(--space-md);
}

.simple-list {
    list-style: none;
}

.simple-list li {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.simple-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.simple-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.simple-list li br {
    display: none;
}

/* ========================================
   Tables
   ======================================== */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-lg);
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.comparison-table thead th {
    background: var(--color-bg-gray);
    font-weight: 700;
    color: var(--color-text);
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(37, 99, 235, 0.05);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-lg);
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.detail-table th,
.detail-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.detail-table th {
    background: var(--color-bg-gray);
    font-weight: 700;
    width: 180px;
    color: var(--color-text);
}

.detail-table td {
    color: var(--color-text-light);
}

.detail-table tr:last-child th,
.detail-table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   Use Cases
   ======================================== */

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.usecase-item {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.usecase-item h3 {
    font-size: 16px;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.usecase-item p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Flow
   ======================================== */

.flow-list {
    margin-top: var(--space-lg);
}

.flow-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-lg);
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
}

.flow-item:last-child {
    margin-bottom: 0;
}

.flow-step {
    flex-shrink: 0;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    height: fit-content;
}

.flow-content h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-text);
}

.flow-content p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: var(--color-primary);
    color: white;
    padding: var(--space-xl) 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.cta-text {
    font-size: 16px;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    line-height: 1.8;
}
/*
.cta-section .btn {
    background: white;
    color: var(--color-primary);
}

.cta-section .btn:hover {
    background: var(--color-bg-gray);
}*/
.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.entry-box {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--radius);
}
.entry-box label,
.entry-box p {
    color: var(--color-text);
}
.entry-box label a,
.entry-box label a:visited {
    color: var(--color-primary);
}
.entry-box label a:hover {
    color: var(--color-bg-lightblue);
    transition: .3s;
}
.entry-box {
    .btn.disabled {
		background-color: #999;
		pointer-events: none;
		transition: background-color .3s, color .5s;

		&:focus {
      	visibility: hidden;
		}
	}
	&:has(input:checked) .btn#mainCTA {
    	background-color: var(--color-btn-orange);
    	cursor: pointer;
    	pointer-events: auto;

    	&:focus {
      		visibility: visible;
			background-color: var(--color-btn-orange);
			color: var(--white);
    	}
	}

	@media (hover: hover) {
    &:has(input:checked) .btn#mainCTA:hover {
		background-color: var(--color-btn-orange-hover);
    }
  }
  
}
.btn-bg-box {
    padding:20px;
    margin-top: 20px;
    border-radius: var(--radius);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    color: var(--color-primary);
    background: #F9FAFB; 
    border-top: 1px solid #E5E7EB; 
    padding-bottom: var(--space-lg) 0;
}
.footer .container {
    max-width: 900px;
    margin-bottom:24px;
}
.footer-content {
    width: 98%;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap; 
    gap: var(--space-md);
    list-style: none;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content li a {
    color: var(--color-primary);
    font-size: 14px;
    position: relative;
    line-height: 10px;
    text-decoration: none;
}
.footer-content li a:hover {
    text-decoration: underline;
}
.footer-content li a:after {
    background: url(https://img.jusnet.co.jp/career/lp/vbat_indiv/windows02.png);
    background-size: cover;
    content: "";
    width: 10px;
    height: 10px;
    top:5px;
    position: absolute;
    margin-left: 5px;
}

.footer-inquiry {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: flex-start;
    gap: 20px;
    font-size: 14px;
    color: var(--color-text);
    padding: var(--space-lg) 24px;
    background-color: #E1F4F9;
    margin-bottom: 24px;
}

.footer-inquiry p {
    background-color: none;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius);
    padding: 4px 16px;
    margin-bottom: 6px;
}
.footer-inquiry ul {
    list-style: none;
}
.footer-inquiry ul li {
    padding-bottom: 6px;
}
.footer-inquiry a {
    color: var(--color-primary);
}

.footer-copy {
    text-align: center;
    font-size: 12px;
    color: #9CA3AF; 
    margin: 0; 
    padding-top: var(--space-md); 
    border-top: 1px solid #9CA3AF;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
    :root {
        --space-xl: 32px;
        --space-lg: 24px;
    }
    
    .report-preview {
        grid-template-columns: 1fr;
    }
    
    .data-box {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-right {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .feature-grid,
    .usecase-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table,
    .detail-table {
        font-size: 13px;
    }
    
    .comparison-table th,
    .comparison-table td,
    .detail-table th,
    .detail-table td {
        padding: var(--space-sm);
    }
    .footer-inquiry {
        display: block;
        text-align: center;
    }
}

/* ========================================
   Floating CTA Button
   ======================================== */

.floating-cta {
    position: fixed;
    bottom: 80px;
    right: var(--space-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cta-btn:hover {
    background: var(--color-accent);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.floating-cta-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.floating-cta-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 70px;
        right: var(--space-sm);
    }
    
    .floating-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .floating-cta-btn span {
        display: inline;
    }
}

/* ========================================
   Back to Top
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent);
}

/* ========================================
   Image Modal
   ======================================== */

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    max-width: 800px;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-close i {
    font-size: 18px;
}

.modal-close:hover,
.modal-close:focus {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 14px;
    max-width: 80%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.sample-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .image-modal {
        padding: 20px 10px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .modal-close {
        font-size: 28px;
        right: 15px;
        top: 15px;
        width: 36px;
        height: 36px;
    }
    
    .modal-caption {
        font-size: 12px;
        padding: 8px 16px;
        bottom: 15px;
        max-width: 90%;
    }
}

/* ========================================
   Additional Styles for Redesigned LP
   ======================================== */

/* Utility Classes */
.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
    
    .sp-only {
        display: inline;
    }
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

/* Hero Updates */
.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.hero-note {
    margin-top: 20px;
    color: var(--color-text-light);
    font-size: 13px;
}

.hero-note p {
    margin: 0;
}

/* Intro Text Section */
.intro-text {
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    margin-bottom: 30px;
}

.intro-text p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.check-list li {
    padding: 12px 16px;
    background: #F9FAFB;
    margin-bottom: 8px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.check-list li:hover {
    border-color: var(--color-primary);
    background: #F0F9FF;
}

.check-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
    font-size: 16px;
    margin-right: 12px;
}

.problem-list-inline {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.problem-list-inline li {
    padding: 12px 16px;
    background: #FEF2F2;
    margin-bottom: 8px;
    border-radius: 6px;
    border: 1px solid #FEE2E2;
    transition: all 0.2s ease;
}

.problem-list-inline li:hover {
    border-color: #EF4444;
    background: #FEE2E2;
}

.problem-list-inline li::before {
    content: '?';
    color: #EF4444;
    font-weight: 700;
    font-size: 16px;
    margin-right: 12px;
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

/* Value Proposition */
.value-prop {
    background: var(--color-primary);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.value-prop-text {
    color: white;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Benefit Cards Modern */
.benefit-cards-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.benefit-card-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-card-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.1);
}

.benefit-icon-circle {
    width: 48px;
    height: 48px;
    background: #F0F9FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-card-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
    line-height: 1.4;
}

.benefit-card-item p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Report Preview Section */
.report-preview-section {
    margin-top: 30px;
}

.report-preview-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.report-image-wrapper {
    text-align: center;
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.report-sample-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.report-sample-image:hover {
    transform: scale(1.02);
}

.clickable-image {
    cursor: pointer;
}

/* Assurance Grid */
.assurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.assurance-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    text-align: left;
    transition: all 0.2s ease;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.assurance-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.1);
}

.assurance-icon {
    width: 44px;
    height: 44px;
    background: #F0F9FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.assurance-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
    line-height: 1.4;
}

.assurance-item p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 13px;
    line-height: 1.6;
}

/* Why Now Content */
.why-now-content {
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.lead-text {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--color-text);
}

.skill-shift-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    flex-wrap: wrap;
}

.skill-box {
    background: #F9FAFB;
    padding: var(--space-lg);
    border-radius: var(--radius);
    text-align: center;
    flex: 1;
    min-width: 200px;
    border: 2px solid var(--color-border);
}

.skill-box.highlighted {
    background: #F0F9FF;
    border-color: var(--color-primary);
}

.skill-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.skill-box p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.8;
}

.arrow-right {
    font-size: 24px;
    color: var(--color-primary);
}

.required-skills {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.required-skills li {
    padding: var(--space-sm) var(--space-md);
    background: #F0F9FF;
    border-radius: var(--radius);
    border-left: 3px solid var(--color-primary);
}

.required-skills li i {
    color: var(--color-primary);
    margin-right: var(--space-xs);
}

.emphasis-text {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: #FEF2F2;
    border-radius: var(--radius);
    border: 2px solid #FEE2E2;
}

.conclusion-text {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-lg);
    line-height: 1.8;
}

/* Test Topics */
.test-topics {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin: var(--space-lg) 0;
}

.topic-tag {
    padding: 8px 16px;
    background: #F0F9FF;
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #DBEAFE;
}

/* Sample Questions Grid */
.sample-questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.sample-question-item {
    text-align: center;
}

.sample-question-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sample-question-item img:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
}

.sample-caption {
    margin-top: 8px;
    color: var(--color-text-light);
    font-size: 13px;
}

/* Report Features */
.report-features {
    margin: 30px 0;
    display: grid;
    gap: 12px;
}

.report-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.report-feature:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: #F0F9FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
}

.feature-content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 13px;
    line-height: 1.6;
}

.additional-note {
    margin-top: 20px;
    padding: 16px;
    background: #F0F9FF;
    border-radius: 8px;
    color: var(--color-primary);
    font-weight: 500;
    text-align: center;
    font-size: 14px;
}

/* Features Highlight */
.features-highlight {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.feature-highlight-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.feature-highlight-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.1);
}

.feature-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-highlight-item h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.5;
}

/* Trust List Detailed */
.trust-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.trust-item-detailed {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.trust-item-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.trust-item-detailed i {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    display: block;
}

.trust-item-detailed p {
    margin: 0;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.7;
}

/* Flow Steps */
.flow-steps {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.flow-step {
    background: white;
    padding: 20px 16px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.step-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
    line-height: 1.4;
}

.step-content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 12px;
    line-height: 1.5;
}

.flow-arrow {
    display: none;
}

/* Overview Table */
.overview-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.overview-table th,
.overview-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.overview-table th {
    background: #F9FAFB;
    font-weight: 600;
    color: var(--color-text);
    width: 25%;
    font-size: 14px;
}

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

.overview-table tr:last-child th,
.overview-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Simple */
.faq-list {
    margin-top: 30px;
}

.faq-item-simple {
    background: white;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #E5E7EB;
}

.faq-q,
.faq-a {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.faq-label {
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}

.faq-a .faq-label {
    background: var(--color-accent);
}

.faq-q h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.8;
}

.faq-a {
    margin-top: 8px;
}

.faq-a p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 14px;
}

/* Final CTA */
.cta-final {
    background: #F0F9FF;
    text-align: center;
    padding: 60px 0;
}

.cta-final-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cta-final-text {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.cta-button-wrapper {
    margin-bottom: 16px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--color-primary);
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-cta-large:hover {
    background: var(--color-accent);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.cta-note {
    color: var(--color-text-light);
    font-size: 13px;
    margin-top: 16px;
}

/* Additional Responsive Adjustments */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .benefit-cards-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit-card-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .assurance-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .assurance-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .skill-shift-box {
        flex-direction: column;
    }
    
    .arrow-right {
        transform: rotate(90deg);
    }
    
    .sample-questions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .features-highlight {
        gap: 12px;
    }
    
    .feature-highlight-item {
        padding: 20px;
    }
    
    .feature-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .trust-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .flow-step {
        padding: 16px;
    }
    
    .overview-table th {
        width: 35%;
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .overview-table td {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .btn-cta-large {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .cta-final {
        padding: 40px 0;
    }
}

/* ========================================
   New LP Styles (v13.0)
   ======================================== */

/* Background Colors */
.bg-light {
    background: #F9FAFB;
}

/* Hero Section Updates */
.hero-catch {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--color-text);
}

.hero-subcatch {
    font-size: clamp(15px, 2.5vw, 17px);
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-safety {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.hero-safety p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
    margin: 0;
}

.hero-safety i {
    color: var(--color-primary);
    font-size: 16px;
}

/* Intro Content */
.intro-content {
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.intro-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.value-box {
    background: #F0F9FF;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #DBEAFE;
    margin-top: 24px;
}

.value-box p {
    margin: 0;
    line-height: 1.7;
    color: var(--color-text);
}

/* Safety Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.safety-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    text-align: center;
    transition: all 0.2s ease;
}

.safety-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.1);
}

.safety-icon {
    width: 56px;
    height: 56px;
    background: #F0F9FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-primary);
    font-size: 24px;
}

.safety-card h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

/* Why Content */
.why-content {
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.lead-para {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.7;
}

.lead-para.center {
    text-align: center;
}

.example-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.example-list li {
    padding: 12px 16px;
    background: #F9FAFB;
    margin-bottom: 8px;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.example-list li:hover {
    border-color: var(--color-primary);
    background: #F0F9FF;
}

.example-list li::before {
    content: '・';
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 8px;
}

.highlight-box {
    background: #F0F9FF;
    padding: 24px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #DBEAFE;
}

.highlight-box p {
    margin: 0;
    line-height: 1.7;
}

/* Area Tags */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
}

.area-tag {
    padding: 8px 16px;
    background: #F0F9FF;
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #DBEAFE;
}

/* Test Sample Grid */
.test-sample-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.sample-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sample-item img:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
}

/* Report Features */
.report-features {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    margin: 24px 0;
}

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

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #F3F4F6;
}

.feature-list li:last-child {
    border-bottom: none;
}

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

.report-image-box {
    text-align: center;
    margin-top: 24px;
}

.report-image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    cursor: pointer;
}

/* Reason List */
.reason-list {
    margin-top: 32px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.reason-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.1);
}

.reason-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.reason-content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Data Content */
.data-content {
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.data-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.data-box {
    background: #F0F9FF;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #DBEAFE;
    margin-top: 20px;
}

.data-box p {
    margin: 0;
    line-height: 1.7;
}

/* Flow List */
.flow-list {
    margin-top: 32px;
}

.flow-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    margin-bottom: 12px;
}

.flow-step-num {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.flow-step-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

.flow-step-content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 13px;
    line-height: 1.6;
}

/* Spec Table */
.spec-table {
    width: 100%;
    margin-top: 32px;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.spec-table th,
.spec-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.spec-table th {
    background: #F9FAFB;
    font-weight: 600;
    color: var(--color-text);
    width: 25%;
    font-size: 14px;
    border-right: 1px solid #E5E7EB;
}

.spec-table td {
    color: var(--color-text-light);
    font-size: 14px;
}
.spec-table tr:first-child th,
.spec-table tr:first-child td {
    border-top: 1px solid #E5E7EB;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 32px;
}

.faq-block {
    background: white;
    padding: 20px 24px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    margin-bottom: 12px;
}

.faq-q-text,
.faq-a-text {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-a-text .faq-icon {
    background: var(--color-bg-lightblue);
}

.faq-q-text h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.8;
}

.faq-a-text {
    margin-top: 12px;
}

.faq-a-text p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* CTA Section */

.cta-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.4;
}

.cta-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-btn-wrap {
    margin-bottom: 0;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--color-primary);
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-cta-final:hover {
    background: var(--color-accent);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* Footer Updates */
.footer-note {
    background: #F9FAFB;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
}

.footer-note p {
    margin: 0;
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.footer-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Responsive for New Sections */
@media (max-width: 768px) {
        /* Sticky Navigation - Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-items {
        position: fixed;
        top: 54px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-right: 0;  /* ← 追加：スマホでmargin解除 */
    }
    
    .nav-items.active {
        max-height: 300px;
    }
    
    .sticky-nav .nav-item {
        padding: 16px 20px;
        border-radius: 0;
        border-bottom: 1px solid #E5E7EB;
    }
    
    .sticky-nav .nav-item::after {
        display: none;
    }
    
    .sticky-nav .btn-nav {
        display: block;
    }
    
    .hero-safety {
        align-items: flex-start;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .safety-grid h3 br {
        display: none;
    }
    
    .test-sample-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .reason-item {
        padding: 20px;
    }
    
    .flow-item {
        padding: 16px;
    }
    
    .spec-table th {
        width: 35%;
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .spec-table td {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .btn-cta-final {
        font-size: 16px;
        padding: 16px 32px;
    }
}
