/*
Theme Name: Timebirth
Theme URI: https://timebirth.co.jp
Author: Timebirth
Author URI: https://timebirth.co.jp
Description: Timebirth corporate website theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: timebirth
*/

/* ================================
   Reset & Base Styles
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", 'helvetica-lt-pro', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #fff;
    font-weight: 400;
    letter-spacing: 0.05em;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: #006BB6;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #EA5614;
    opacity: 0.85;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}

/* ================================
   Scroll Reveal Animations
================================ */
.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for interactive elements */
.showcase-card {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card,
.case-item,
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Stat number animation */
.stat-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* Card tilt effect preparation */
.showcase-card,
.solution-card {
    transform-style: preserve-3d;
}

/* Smooth opacity changes */
.showcase-card img,
.case-item img {
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.showcase-card:hover img {
    transform: scale(1.05);
}

/* Flow item animations */
.flow-item {
    transition: all 0.4s ease;
}

.flow-item:hover {
    transform: translateX(10px);
}

/* Concern items subtle animation */
.concern-item {
    transition: all 0.3s ease;
}

.concern-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(234, 86, 20, 0.15);
}

/* Whitepaper items */
.whitepaper-item {
    transition: all 0.3s ease;
}

.whitepaper-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.whitepaper-download {
    transition: all 0.3s ease;
}

.whitepaper-download:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(234, 86, 20, 0.3);
}

/* Solution card number pulse */
.solution-number {
    transition: all 0.3s ease;
}

.solution-card:hover .solution-number {
    transform: scale(1.1);
    color: #EA5614;
}

/* Case link arrow animation */
.case-link {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.case-link::after {
    content: ' →';
    display: inline-block;
    transition: transform 0.3s ease;
}

.case-link:hover::after {
    transform: translateX(5px);
}

/* Method badge animation */
.method-badge,
.flow-badge {
    transition: all 0.3s ease;
}

.flow-item:hover .flow-badge {
    transform: scale(1.1);
}

/* Parallax elements */
.problem-illustration,
.method-flow {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* ================================
   Header
================================ */
.site-header {
    background: #1a2332;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.site-branding {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-contact {
    color: #fff;
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    opacity: 1;
}

.header-cta {
    background: linear-gradient(135deg, #ff8c42 0%, #EA5614 50%, #d14a10 100%);
    color: #fff;
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    line-height: 1.3;
    position: relative;
    box-shadow: 0 2px 8px rgba(234, 86, 20, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
}



.header-cta:hover {
    background: linear-gradient(135deg, #EA5614 0%, #d14a10 50%, #b83d0d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(234, 86, 20, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    color: #1a2332;
    opacity: 1;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    display: block;
    line-height: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: #1a2332;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-navigation {
    flex: 1;
    padding: 30px 25px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-list a {
    display: block;
    color: #fff;
    padding: 18px 0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-list a:hover {
    color: #EA5614;
    padding-left: 10px;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 25px 30px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-button {
    display: block;
    text-align: center;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-button.primary {
    background: linear-gradient(135deg, #ff8c42 0%, #EA5614 50%, #d14a10 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(234, 86, 20, 0.4);
    color: #fff;
}

.mobile-menu-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(234, 86, 20, 0.5);
}

.site-logo img {
    height: 50px;
    width: auto;
}

.primary-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.menu a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EA5614;
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #EA5614;
}

.menu a:hover::after {
    width: 100%;
}

/* ================================
   Buttons
================================ */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c42 0%, #EA5614 50%, #d14a10 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(234, 86, 20, 0.3),
        inset 0 1px 5px rgba(255, 255, 255, 0.3);
    font-weight: 700;
    border: none;
    position: relative;
}



.btn-primary:hover {
    background: linear-gradient(135deg, #EA5614 0%, #d14a10 50%, #b83d0d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 86, 20, 0.4),
        inset 0 1px 5px rgba(255, 255, 255, 0.3);
    opacity: 1;
    color: #fff;
}

.btn-primary::before {
    content: '';
    margin-right: 8px;
}

.btn-secondary {
    background: #fff;
    color: #006BB6;
    border-color: #006BB6;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #006BB6;
    color: #fff;
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
    font-weight: 600;
}

.btn-outline:hover {
    background: #2c3e50;
    color: #fff;
    opacity: 1;
}

.btn-large {
    padding: 20px 60px;
    font-size: 18px;
}

/* ================================
   Section Common Styles
================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #2c3e50;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.arrow-down {
    font-size: 30px;
    color: #EA5614;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ================================
   Hero Section
================================ */
.hero-section {
    background: #1a2332;
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 107, 182, 0.1) 0%, rgba(0, 77, 130, 0.1) 100%);
    opacity: 0.5;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(0, 107, 182, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 107, 182, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: glow-pulse 4s ease-in-out infinite;
}

.hero-glow.glow-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: #EA5614;
    animation-delay: 0s;
}

.hero-glow.glow-2 {
    bottom: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: #006BB6;
    animation-delay: 2s;
}

@keyframes glow-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
        padding: 0 40px;
    }

    .hero-image {
        flex: 0 0 400px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        flex: auto;
        width: 100%;
        max-width: 500px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }
}

.hero-content {
    flex: 1;
    text-align: left;
    min-width: 0;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-main {
    display: block;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 2;
    opacity: 1;
    position: relative;
    z-index: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

.stat-label {
    font-size: 14px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.stat-value {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a2332;
    line-height: 1;
}

.stat-number {
    font-size: 56px;
}

.stat-unit {
    font-size: 32px;
}

.stat-note {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.hero-image {
    flex: 0 0 500px;
    position: relative;
    min-height: 400px;
    z-index: 10;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ================================
   Intro Showcase Section
================================ */
.intro-showcase-section {
    background: #fff;
    padding: 80px 20px;
}

.intro-catch {
    text-align: center;
    margin-bottom: 60px;
}

.intro-catch-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a2332;
    margin-bottom: 30px;
}

.highlight-text {
    color: #1a2332;
    font-size: 1.1em;
    font-weight: 800;
    padding: 0 8px;
}

.highlight-orange {
    color: #EA5614;
    font-weight: 800;
}

.intro-catch-description {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
}

.underline-text {
    text-decoration: underline;
    text-decoration-color: #EA5614;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.showcase-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: block;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.showcase-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-thumbnail img[src*="logo_rect"] {
    width: 70%;
    height: auto;
    object-fit: contain;
    padding: 20px;
}

.showcase-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(234, 86, 20, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.showcase-title {
    padding: 20px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a2332;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.showcase-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ================================
   Timebirth Method Section
================================ */
.timebirth-method-section {
    background: #1a2332;
    color: #fff;
    padding: 80px 20px;
}

.method-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.method-left {
    padding-right: 40px;
}

.method-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge-icon {
    color: #EA5614;
    font-size: 24px;
    font-weight: 700;
}

.badge-text {
    color: #EA5614;
    font-size: 18px;
    font-weight: 700;
}

.badge-subtitle {
    color: #aaa;
    font-size: 14px;
    margin-left: 10px;
}

.method-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
}

.method-subtitle {
    font-size: 24px;
    display: block;
    margin-top: 10px;
    line-height: 1.6;
}

.method-description {
    font-size: 16px;
    line-height: 1.9;
    color: #ccc;
}

.method-description p {
    margin-bottom: 12px;
}

.method-right {
    padding-left: 40px;
}

.method-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flow-badge {
    background: #EA5614;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
}

.flow-badge.white {
    background: #fff;
    color: #1a2332;
}

.flow-badge.orange {
    background: #EA5614;
    color: #fff;
}

.flow-arrow {
    font-size: 24px;
    color: #666;
}

.flow-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 20px 30px;
    flex: 1;
}

.flow-content.orange-bg {
    background: #EA5614;
    border-color: #EA5614;
}

.flow-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.flow-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.flow-connector {
    display: flex;
    align-items: center;
    padding-left: 45px;
    height: 40px;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    margin-right: 10px;
}

.connector-arrow {
    font-size: 18px;
    color: #666;
}

/* ================================
   Problem Section
================================ */
.problem-section {
    background: #f5f5f5;
    padding: 100px 20px;
}

.problem-hero {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.problem-concerns-wrapper {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    grid-template-rows: auto auto auto;
    gap: 25px 50px;
    align-items: center;
    position: relative;
}

.problem-illustration {
    grid-column: 2;
    grid-row: 1 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trouble-image {
    width: 100%;
    height: auto;
    max-width: 160px;
}

.concern-item {
    background: #fff;
    padding: 16px 22px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 320px;
}

.concern-item::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.concern-top-left {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
}

.concern-top-left::before {
    right: -10px;
    top: 20px;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
}

.concern-middle-left {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
}

.concern-middle-left::before {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
}

.concern-bottom-left {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
}

.concern-bottom-left::before {
    right: -10px;
    bottom: 20px;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
}

.concern-top-right {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
}

.concern-top-right::before {
    left: -10px;
    top: 20px;
    border-width: 8px 10px 8px 0;
    border-color: transparent #fff transparent transparent;
}

.concern-middle-right {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
}

.concern-middle-right::before {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 10px 8px 0;
    border-color: transparent #fff transparent transparent;
}

.concern-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.problem-solution {
    text-align: center;
    margin-bottom: 50px;
}

.solution-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #EA5614;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.solution-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight-all {
    color: #EA5614;
    font-weight: 800;
    font-size: 1.1em;
}

.solution-arrow {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.arrow-circle {
    width: 60px;
    height: 60px;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.problem-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(234, 86, 20, 0.15);
}

.solution-number {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.solution-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.solution-icon svg {
    width: 100px;
    height: 80px;
}

.solution-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    color: #EA5614;
}

.problem-cta {
    text-align: center;
    margin-top: 50px;
}

/* ================================
   Benefit Section
================================ */
.benefit-section {
    background: #fff;
}

.benefit-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 25px rgba(234, 86, 20, 0.15);
    transform: translateY(-5px);
    border-color: #EA5614;
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #2c3e50;
}

.feature-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.benefit-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ================================
   Case Section
================================ */
/* ================================
   Voice Section (お客様の声)
================================ */
.voice-section {
    background: #f5f5f5;
}

.section-description {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    margin-bottom: 50px;
}

.voice-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.voice-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.voice-card:hover {
    box-shadow: 0 8px 25px rgba(234, 86, 20, 0.15);
    transform: translateY(-5px);
}

.voice-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.voice-industry,
.voice-scale {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.voice-industry {
    color: #EA5614;
    font-weight: 700;
}

.voice-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #1a2332;
}

.voice-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.voice-more {
    color: #EA5614;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.voice-more:hover {
    gap: 10px;
}

.voice-industries {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

.industries-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.6;
}

.voice-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ================================
   Reviews Page (お客様の声ページ)
================================ */
.reviews-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(234, 86, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(234, 86, 20, 0.1) 0%, transparent 50%);
}

.reviews-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.reviews-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Reviews Page - Simple Design */
.review-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.review-simple-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.review-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.review-industry,
.review-scale {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f0f0;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

.review-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a2332;
    margin: 0 0 35px 0;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #EA5614;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.review-text {
    margin-bottom: 40px;
}

.review-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #EA5614;
}

.review-text h3:first-child {
    margin-top: 0;
}

.review-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 20px 0;
}

.review-voice {
    background: #f8f9fa;
    padding: 30px 30px 30px 35px;
    border-radius: 10px;
    border-left: 4px solid #EA5614;
    margin-top: 10px;
}

.review-voice .voice-text {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin: 0 0 20px 0;
    font-style: italic;
}

.review-voice .voice-author {
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    color: #1a2332;
    margin: 0;
}

/* ================================
   Contents Section (Service)
================================ */
.contents-section {
    background: #fff;
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-item {
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #f9f9f9;
}

.step-header {
    margin-bottom: 15px;
}

.step-number {
    font-size: 14px;
    color: #006BB6;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.step-number span {
    font-size: 24px;
    margin-left: 5px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.service-list-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(234, 86, 20, 0.15);
    transform: translateY(-5px);
    border-color: #EA5614;
}

.service-card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #2c3e50;
}

.service-card-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.service-more {
    text-align: center;
}

/* ================================
   Flow Section
================================ */
.flow-section {
    background: #f5f5f5;
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto 60px;
}

.flow-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.flow-step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EA5614 0%, #d14a10 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(234, 86, 20, 0.3);
}

.flow-step-content {
    flex: 1;
}

.flow-step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.flow-step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.flow-arrow {
    text-align: center;
    font-size: 30px;
    color: #EA5614;
    margin: 20px 0;
}

.flow-cta {
    text-align: center;
}

/* ================================
   Knowhow Section
================================ */
.knowhow-section {
    background: #fff;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.blog-item:hover {
    box-shadow: 0 8px 25px rgba(0, 107, 182, 0.15);
    transform: translateY(-5px);
}

.blog-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 10px;
}

.blog-category {
    display: inline-block;
    padding: 5px 15px;
    background: #006BB6;
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #2c3e50;
}

.blog-date {
    font-size: 13px;
    color: #999;
}

.knowhow-more {
    text-align: center;
    margin-bottom: 100px;
}

.whitepaper-section {
    margin-top: 0;
    padding-top: 0;
}

.whitepaper-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.whitepaper-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.whitepaper-item {
    background: linear-gradient(135deg, #006BB6 0%, #004d82 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 107, 182, 0.25);
    transition: all 0.3s ease;
}

.whitepaper-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 107, 182, 0.35);
}

.whitepaper-label {
    font-size: 12px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.whitepaper-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.7;
}

.whitepaper-download {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #006BB6;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.whitepaper-download:hover {
    background: #EA5614;
    color: #fff;
    transform: scale(1.05);
}

/* ================================
   About Company Section
================================ */
.about-company-section {
    background: #1a2332;
    padding: 80px 20px;
}

.about-company-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-company-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #EA5614;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 0;
}

.about-company-body {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 60px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.about-lead {
    font-size: 20px;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 35px;
}

.about-lead strong {
    color: #EA5614;
    font-weight: 700;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #EA5614 0%, #ff8c42 100%);
    margin: 35px 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.about-text strong {
    color: #fff;
    font-weight: 700;
}

.about-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: right;
}

.signature-text {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

/* ================================
   CTA Contact Section (Reusable)
================================ */
.cta-contact-section {
    background: #f5f5f5;
    padding: 80px 20px;
}

.cta-contact-card {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 60px 40px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c42 0%, #EA5614 50%, #d14a10 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(234, 86, 20, 0.4);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #EA5614 0%, #d14a10 50%, #b83d0d 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(234, 86, 20, 0.5);
    color: #fff;
}

.btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.link-contact:hover {
    opacity: 1;
    color: #f9c74f;
}

.link-icon {
    font-size: 18px;
}

/* ================================
   FAQ Section
================================ */
.faq-section {
    background: #f5f5f5;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.faq-q-label {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #EA5614;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(234, 86, 20, 0.3);
}

.faq-q-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    padding-top: 8px;
    color: #2c3e50;
}

.faq-answer {
    display: flex;
    gap: 15px;
}

.faq-a-label {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #006BB6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 107, 182, 0.3);
}

.faq-a-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.9;
    color: #4a5568;
    padding-top: 8px;
}

/* ================================
   CTA Section
================================ */
.cta-section {
    background: linear-gradient(180deg, #1a1d3a 0%, #0f1225 100%);
    color: #fff;
    text-align: center;
    position: relative;
    padding: 80px 20px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(234, 86, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 107, 182, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
}

.cta-description {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #ff8c42 0%, #EA5614 50%, #d14a10 100%);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 18px 50px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(234, 86, 20, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #EA5614 0%, #d14a10 50%, #b83d0d 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(234, 86, 20, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
}

.cta-note {
    font-size: 14px;
    opacity: 0.7;
}

/* ================================
   Footer
================================ */
.site-footer {
    background: #1a2332;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-left {
    flex: 0 0 300px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-info {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-company-name {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-address {
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-nav-column {
    flex: 1;
    min-width: 150px;
}

.footer-nav-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: #EA5614;
}

.footer-cta {
    display: flex;
    justify-content: flex-end;
}

.footer-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c42 0%, #EA5614 50%, #d14a10 100%);
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 86, 20, 0.3),
        inset 0 1px 5px rgba(255, 255, 255, 0.3);
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #EA5614 0%, #d14a10 50%, #b83d0d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 86, 20, 0.4),
        inset 0 1px 5px rgba(255, 255, 255, 0.3);
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 1200px) {
    .header-contact {
        display: none;
    }

    .header-actions {
        gap: 10px;
    }
}

@media (max-width: 1024px) {

    .mobile-menu-toggle {
        display: flex;
    }

    .primary-navigation,
    .header-actions {
        display: none;
    }

    .site-branding {
        padding: 0 20px;
    }

    .showcase-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .method-left,
    .method-right {
        padding: 0;
    }

    .problem-concerns-wrapper {
        display: grid;
        grid-template-columns: 140px 1fr;
        grid-template-rows: auto;
        gap: 0 20px;
        align-items: start;
    }

    .problem-illustration {
        grid-column: 1;
        grid-row: 1 / 7;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .trouble-image {
        max-width: 120px;
    }

    .concern-item {
        grid-column: 2;
        max-width: 100%;
        border-top: 1px dotted #ddd;
        border-radius: 0;
        box-shadow: none;
        padding: 18px 0;
        background: transparent;
    }

    .concern-item:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .concern-item::before {
        display: none;
    }

    .concern-top-left {
        grid-row: 1;
    }

    .concern-middle-left {
        grid-row: 2;
    }

    .concern-bottom-left {
        grid-row: 3;
    }

    .concern-top-right {
        grid-row: 4;
    }

    .concern-middle-right {
        grid-row: 5;
    }

    .problem-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .benefit-features,
    .case-list,
    .blog-list,
    .whitepaper-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-steps,
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .intro-catch-title {
        font-size: 26px;
        line-height: 1.7;
    }

    .intro-catch-description {
        font-size: 16px;
    }

    .problem-section {
        padding: 60px 20px;
    }

    .problem-hero {
        gap: 30px;
    }

    .problem-concerns-wrapper {
        grid-template-columns: 100px 1fr;
        gap: 0 15px;
    }

    .trouble-image {
        max-width: 90px;
    }

    .concern-item {
        padding: 15px 0;
    }

    .concern-item p {
        font-size: 13px;
        line-height: 1.6;
    }

    .solution-title {
        font-size: 26px;
    }

    .problem-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card-title {
        font-size: 16px;
    }

    .showcase-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-thumbnail {
        height: 180px;
    }

    .site-branding {
        padding: 0 15px;
    }

    .site-logo img {
        height: 40px;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-container {
        max-width: 100%;
        padding: 0 20px;
        flex-direction: column;
        gap: 30px;
    }

    .hero-main {
        font-size: 24px !important;
        line-height: 1.6;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label,
    .stat-note {
        font-size: 11px;
    }

    .hero-image {
        display: none;
    }

    .method-title {
        font-size: 24px;
    }

    .method-subtitle {
        font-size: 18px;
    }

    .method-description {
        font-size: 14px;
    }

    .flow-badge {
        font-size: 12px;
        min-width: 80px;
        padding: 6px 12px;
    }

    .flow-title {
        font-size: 16px;
    }

    .flow-text {
        font-size: 13px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-company-body {
        padding: 35px 30px;
    }

    .about-lead {
        font-size: 18px;
    }

    .about-text {
        font-size: 15px;
    }

    .cta-contact-card {
        padding: 40px 20px;
    }

    .cta-contact-title {
        font-size: 24px;
    }

    .btn-cta-primary {
        font-size: 18px;
        padding: 16px 40px;
    }

    .link-contact {
        font-size: 14px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left {
        flex: auto;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-nav {
        display: none;
    }

    .footer-cta {
        justify-content: center;
    }

    .footer-cta-button {
        width: 100%;
        max-width: 300px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-main {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .hero-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .problem-grid,
    .benefit-features,
    .case-list,
    .blog-list,
    .whitepaper-list {
        grid-template-columns: 1fr;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }
}

/* ================================
   Media & Blog Pages
================================ */
/* Media List Page */
.media-page {
    background: #fff;
}

.media-list-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.media-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.media-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.media-card-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.media-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-card:hover .media-card-thumbnail img {
    transform: scale(1.05);
}

.media-card-thumbnail-placeholder {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-card-thumbnail-placeholder img,
.placeholder-image {
    width: 70%;
    height: auto;
    object-fit: contain;
    padding: 20px;
}

.media-card-content {
    padding: 25px;
}

.media-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.media-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: #EA5614;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.media-card-date {
    font-size: 13px;
    color: #999;
}

.media-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #1a2332;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.media-card-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    color: #1a2332;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination a:hover {
    background: #EA5614;
    color: #fff;
    border-color: #EA5614;
}

.pagination .current {
    background: #EA5614;
    color: #fff;
    border-color: #EA5614;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #666;
}

/* Single Post Page */
.single-post-page {
    background: #fff;
}

.single-post-article {
    background: #fff;
}

.single-post-header {
    padding: 60px 0 40px;
    background: #f5f5f5;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.post-category {
    display: inline-block;
    padding: 6px 16px;
    background: #EA5614;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.post-date {
    font-size: 14px;
    color: #999;
}

.post-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a2332;
    margin-bottom: 30px;
}

.post-thumbnail {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    padding: 60px 0;
}

.post-content {
    font-size: 17px;
    line-height: 1.9;
    color: #2c3e50;
}

.post-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #EA5614;
    color: #1a2332;
}

.post-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #1a2332;
}

.post-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #1a2332;
}

.post-content p {
    margin-bottom: 25px;
}

.post-content ul,
.post-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 12px;
}

.post-content a {
    color: #EA5614;
    text-decoration: underline;
}

.post-content a:hover {
    opacity: 0.8;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.post-content blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: #f5f5f5;
    border-left: 4px solid #EA5614;
    font-style: italic;
    color: #666;
}

.post-content code {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.post-content pre {
    background: #1a2332;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 30px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: #fff;
}

.single-post-footer {
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tags-label {
    font-weight: 600;
    color: #1a2332;
    font-size: 15px;
}

.tag-item {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #EA5614;
    color: #fff;
}

/* Related Posts */
.related-posts-section {
    padding: 60px 0 80px;
    background: #f5f5f5;
}

.related-posts-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2332;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.related-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-post-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.related-post-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-thumbnail img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-category {
    display: inline-block;
    padding: 4px 10px;
    background: #EA5614;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 10px;
}

.related-post-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #1a2332;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-post-date {
    font-size: 12px;
    color: #999;
}

.back-to-media {
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {

    .media-grid,
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .media-list-section,
    .single-post-content,
    .related-posts-section {
        padding: 60px 0;
    }

    .media-grid,
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .media-card-thumbnail,
    .related-post-thumbnail {
        height: 200px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-content {
        font-size: 16px;
    }

    .post-content h2 {
        font-size: 24px;
    }

    .post-content h3 {
        font-size: 20px;
    }

    .related-posts-title {
        font-size: 24px;
    }

    .pagination ul {
        flex-wrap: wrap;
    }
}

/* ================================
   Contact & Thanks Pages
================================ */
.contact-page,
.thanks-page {
    background: #fff;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
}

.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 10px;
    font-size: 15px;
}

.required {
    color: #EA5614;
    font-size: 12px;
    margin-left: 5px;
    padding: 2px 8px;
    background: #fff5f0;
    border-radius: 3px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #EA5614;
    box-shadow: 0 0 0 3px rgba(234, 86, 20, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox a {
    color: #EA5614;
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    background: #f5f5f5;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    background: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 40px;
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-text {
    font-size: 17px;
    line-height: 2;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-text:last-child {
    margin-bottom: 0;
}

.thanks-note {
    padding: 25px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 40px;
}

.note-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.thanks-actions {
    margin-top: 40px;
}

/* Contact Form 7 Styles */
#cf7-area {
    max-width: 100%;
}

.wpcf7-form {
    max-width: 100%;
}

#cf7-area>label {
    display: inline-block;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 10px;
    margin-top: 35px;
    font-size: 15px;
}

#cf7-area>label:first-child {
    margin-top: 0;
}

.wpcf7-form label {
    display: inline-block;
    font-weight: 600;
    color: #1a2332;
    font-size: 15px;
}

.cf7-req {
    display: inline-block;
    color: #EA5614;
    font-size: 12px;
    margin-left: 5px;
    padding: 2px 8px;
    background: #fff5f0;
    border-radius: 3px;
    font-weight: 600;
    vertical-align: middle;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: 0;
}

#cf7-area>span {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 25px;
}

#cf7-area span.normal-span {
    display: block;
    width: 100%;
}

#cf7-area>br {
    display: none;
}

/* フォーム項目間の間隔 */
#cf7-area .wpcf7-form-control-wrap {
    margin-bottom: 25px;
}

/* ================================
   Fixed Document Banner
================================ */
.fixed-document-banner {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background: linear-gradient(135deg, #EA5614 0%, #d64d11 100%);
    color: #fff;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(234, 86, 20, 0.4);
    z-index: 999;
    width: 300px;
    animation: slideInUp 0.5s ease-out;
    transition: all 0.3s ease;
}

.fixed-document-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(234, 86, 20, 0.5);
}

.fixed-document-banner.hidden {
    display: none;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    margin-bottom: 16px;
}

.banner-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.banner-icon svg {
    width: 30px;
    height: 30px;
}

.banner-text {
    width: 100%;
}

.banner-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    opacity: 0.95;
}

.banner-main-message {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.02em;
}

.banner-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 28px;
    background: #fff;
    color: #EA5614;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-button:hover {
    background: #f5f5f5;
    transform: scale(1.02);
    color: #EA5614;
}

.banner-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #EA5614;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.banner-close:hover {
    background: #f5f5f5;
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .fixed-document-banner {
        bottom: 80px;
        right: 10px;
        width: 260px;
        padding: 20px 16px;
    }

    .banner-content {
        gap: 6px;
        margin-bottom: 14px;
    }

    .banner-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 2px;
    }

    .banner-icon svg {
        width: 24px;
        height: 24px;
    }

    .banner-label {
        font-size: 13px;
    }

    .banner-main-message {
        font-size: 13px;
    }

    .banner-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .banner-close {
        top: -8px;
        right: -8px;
        width: 28px;
        height: 28px;
    }
}

/* ================================
   Document Request Page
================================ */
.document-request-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.document-request-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* 左側：資料説明 */
.document-description {
    position: sticky;
    top: 100px;
}

.document-description-inner {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.document-description-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.document-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.document-image img {
    width: 100%;
    height: auto;
    display: block;
}

.document-features {
    margin-bottom: 30px;
}

.document-features-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.document-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.document-features-list li:last-child {
    border-bottom: none;
}

.document-features-list .feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #EA5614;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.document-note {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #EA5614;
}

.document-note p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 右側：フォーム */
.document-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.document-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.document-form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.document-request-form .form-group {
    margin-bottom: 24px;
}

.document-request-form .btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .document-request-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .document-description {
        position: static;
    }
}

@media (max-width: 768px) {
    .document-request-section {
        padding: 60px 0;
    }

    .document-description-inner,
    .document-form {
        padding: 30px 20px;
    }

    .document-description-title {
        font-size: 22px;
    }

    .document-form-title {
        font-size: 20px;
    }
}

/* ================================
   Download Page
================================ */
.download-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* サンクスメッセージ */
.download-thanks {
    text-align: center;
    margin-bottom: 60px;
}

.download-thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EA5614 0%, #d64d11 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(234, 86, 20, 0.3);
}

.download-thanks-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.download-thanks-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ダウンロードカード */
.download-card-single {
    max-width: 900px;
    margin: 0 auto 60px;
}

.download-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.download-card-primary {
    border: 3px solid #EA5614;
}

.download-card-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.download-card-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #EA5614 0%, #d64d11 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-card-icon-secondary {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.download-card-title-area {
    flex: 1;
}

.download-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.download-card-subtitle {
    font-size: 15px;
    color: #666;
}

.download-card-body {
    margin-bottom: 24px;
}

.download-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.download-card-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.download-card-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #EA5614;
    font-weight: 700;
}

.download-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.download-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.download-meta-item svg {
    opacity: 0.6;
}

.download-card-footer {
    margin-top: auto;
}

.download-card .btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* 次のアクション */
.download-next-actions {
    margin-top: 80px;
}

.download-next-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.download-action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.download-action-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.download-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.download-action-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    color: #EA5614;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid #EA561420;
}

.download-action-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.download-action-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
    min-height: 50px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .download-section {
        padding: 60px 0;
    }

    .download-thanks-icon {
        width: 64px;
        height: 64px;
    }

    .download-thanks-title {
        font-size: 24px;
    }

    .download-thanks-text {
        font-size: 14px;
    }

    .download-card {
        padding: 32px 24px;
    }

    .download-card-icon {
        width: 56px;
        height: 56px;
    }

    .download-card-title {
        font-size: 22px;
    }

    .download-action-card {
        padding: 36px 24px;
    }

    .download-action-icon {
        width: 72px;
        height: 72px;
    }

    .download-action-title {
        font-size: 20px;
    }

    .download-action-text {
        font-size: 14px;
        min-height: auto;
    }

    .download-next-title {
        font-size: 22px;
    }

    .download-next-actions {
        margin-top: 60px;
    }
}

/* ================================
   Privacy Policy Page
================================ */
.privacy-content-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.privacy-intro {
    margin-bottom: 24px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.privacy-content {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-section {
    margin-bottom: 28px;
    padding: 0;
}

.privacy-section:last-of-type {
    margin-bottom: 0;
}

.privacy-section-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #EA5614;
}

.privacy-section-content {
    color: #333;
    line-height: 1.75;
}

.privacy-section-content p {
    margin-bottom: 10px;
}

.privacy-section-content p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    counter-reset: privacy-counter;
    padding-left: 0;
    margin: 10px 0;
}

.privacy-list > li {
    counter-increment: privacy-counter;
    margin-bottom: 10px;
    padding-left: 32px;
    position: relative;
}

.privacy-list > li:before {
    content: counter(privacy-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #EA5614;
}

.privacy-sublist {
    list-style: none;
    counter-reset: privacy-subcounter;
    padding-left: 20px;
    margin: 6px 0;
}

.privacy-sublist > li {
    counter-increment: privacy-subcounter;
    margin-bottom: 6px;
    padding-left: 28px;
    position: relative;
}

.privacy-sublist > li:before {
    content: "(" counter(privacy-subcounter) ")";
    position: absolute;
    left: 0;
    color: #666;
}

.privacy-sublist-2 {
    list-style: none;
    padding-left: 20px;
    margin: 8px 0;
}

.privacy-sublist-2 > li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.privacy-sublist-2 > li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #EA5614;
}

.privacy-contact {
    margin-top: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.privacy-contact p {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.6;
}

.privacy-contact p:last-child {
    margin-bottom: 0;
}

.privacy-contact a {
    color: #EA5614;
    text-decoration: underline;
}

.privacy-contact a:hover {
    text-decoration: none;
}

.privacy-updated {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
    text-align: right;
}

.privacy-updated p {
    margin-bottom: 2px;
    font-size: 14px;
    color: #666;
}

.privacy-updated p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .privacy-content-section {
        padding: 60px 0;
    }

    .privacy-intro {
        padding: 20px;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-section-title {
        font-size: 18px;
    }

    .privacy-list > li {
        padding-left: 24px;
    }

    .privacy-sublist {
        padding-left: 12px;
    }

    .privacy-sublist > li {
        padding-left: 24px;
    }
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    margin: 0;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #EA5614;
    box-shadow: 0 0 0 3px rgba(234, 86, 20, 0.1);
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form select {
    background-color: #fff;
    cursor: pointer;
    appearance: auto;
}

.wpcf7-form .normal-span {
    display: block;
    width: 100%;
    margin: 0;
}

.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
    display: inline-block;
    padding: 14px 40px;
    background: #EA5614;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
    background: #d64d11;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 86, 20, 0.3);
}

.wpcf7-spinner {
    margin-left: 10px;
}

.wpcf7-not-valid-tip {
    color: #EA5614;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.wpcf7-response-output {
    margin: 20px 0;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

.wpcf7-validation-errors {
    border: 2px solid #EA5614;
    background: #fff5f0;
    color: #EA5614;
}

.wpcf7-mail-sent-ok {
    border: 2px solid #28a745;
    background: #d4edda;
    color: #28a745;
}

.wpcf7-mail-sent-ng {
    border: 2px solid #dc3545;
    background: #f8d7da;
    color: #dc3545;
}

/* Turnstile (CAPTCHA) */
.cf7-simple-turnstile {
    margin: 25px 0;
}

/* Submit button wrapper */
.wpcf7-form p:has(input[type="submit"]) {
    text-align: center;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {

    .contact-form-section,
    .thanks-section {
        padding: 60px 0;
    }

    .contact-form-wrapper,
    .thanks-content {
        padding: 30px 20px;
    }

    .thanks-title {
        font-size: 24px;
    }

    .thanks-text {
        font-size: 16px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px;
        /* Prevent zoom on iOS */
    }
}

/* ================================
   Company Page
================================ */
.company-page {
    background: #fff;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(234, 86, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(234, 86, 20, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-label {
    font-size: 14px;
    font-weight: 600;
    color: #EA5614;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Company Vision Section */
.company-vision-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-header {
    text-align: center;
    margin-bottom: 50px;
}

.vision-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #EA5614;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vision-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    line-height: 1.4;
    margin-bottom: 20px;
}

.vision-body-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vision-logo {
    flex: 0 0 280px;
}

.vision-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-body {
    flex: 1;
}

.vision-text {
    font-size: 17px;
    line-height: 2;
    color: #2c3e50;
    margin-bottom: 25px;
}

.vision-text:last-child {
    margin-bottom: 0;
}

.vision-text strong {
    color: #EA5614;
    font-weight: 600;
}

/* Company Info Section */
.company-info-section {
    padding: 80px 0;
    background: #fff;
}

.company-info-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.company-info-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    position: relative;
    display: inline-block;
}

.company-info-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #EA5614;
}

.company-info-table {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #e8e8e8;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    background: #f5f5f5;
    padding: 25px 30px;
    font-weight: 600;
    color: #1a2332;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.info-value {
    padding: 25px 30px;
    color: #2c3e50;
    font-size: 15px;
    line-height: 1.8;
}

.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.business-list li:last-child {
    margin-bottom: 0;
}

.business-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #EA5614;
    border-radius: 50%;
}

/* Company Map Section */
.company-map-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.company-map-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.company-map-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    position: relative;
    display: inline-block;
}

.company-map-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #EA5614;
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-info {
    padding: 40px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.map-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 10px;
}

.map-info-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.map-address {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #EA5614;
}

.address-text {
    font-size: 15px;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-description {
        font-size: 16px;
    }

    .company-vision-section,
    .company-info-section,
    .company-map-section {
        padding: 60px 0;
    }

    .vision-title,
    .company-info-section .section-title,
    .company-map-section .section-title {
        font-size: 28px;
    }

    .vision-body-wrapper {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .vision-logo {
        flex: 0 0 auto;
        width: 200px;
    }

    .vision-text {
        font-size: 15px;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

    .info-label {
        border-bottom: 1px solid #e8e8e8;
        padding: 15px 20px;
    }

    .info-value {
        padding: 20px;
    }

    .map-info {
        padding: 30px 20px;
    }

    .map-container {
        height: 300px;
    }

    /* お客様の声 - モバイル */
    .voice-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-card {
        padding: 25px 20px;
    }

    .voice-title {
        font-size: 16px;
    }

    .voice-excerpt {
        font-size: 13px;
    }

    .industries-title {
        font-size: 16px;
    }

    /* お客様の声ページ - モバイル */
    .reviews-hero {
        padding: 60px 0 50px;
    }

    .reviews-hero-title {
        font-size: 32px;
    }

    .reviews-hero-description {
        font-size: 15px;
    }

    .review-section {
        padding: 50px 0;
    }

    .review-card {
        border-radius: 15px;
    }

    .review-header {
        padding: 30px 20px 25px;
        flex-direction: column;
        gap: 20px;
    }

    .review-number {
        font-size: 48px;
        min-width: auto;
    }

    .review-meta-tags {
        gap: 8px;
    }

    .meta-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .review-main-title {
        font-size: 18px;
    }

    .review-content {
        padding: 30px 20px;
    }

    .review-stats-box {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .stat-box {
        padding: 25px 20px;
    }

    .stat-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 13px;
    }

    .review-details {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .detail-section {
        padding: 20px;
    }

    .detail-label {
        font-size: 12px;
        padding: 3px 10px;
    }

    .detail-text {
        font-size: 14px;
    }

    .customer-voice {
        padding: 30px 20px;
    }

    .quote-icon {
        font-size: 60px;
        top: 15px;
        left: 15px;
    }

    .quote-text {
        font-size: 14px;
        line-height: 1.9;
        padding-left: 20px;
    }

    .quote-author {
        font-size: 14px;
        padding-right: 10px;
    }
}

/* ================================
   Results Section (実績セクション)
================================ */
.results-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.results-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.results-section .section-description {
    font-size: 16px;
    color: #666;
}

/* 業種アイコングリッド */
.results-industries {
    margin-bottom: 60px;
}

.results-industries-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.industry-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
}

.industry-name {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
}

/* 改善例グリッド */
.results-achievements {
    margin-top: 60px;
}

.results-achievements-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.achievement-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.achievement-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.before-time,
.after-time {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.time-label {
    font-size: 14px;
    color: #666;
}

.time-value {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.time-value-zero {
    font-size: 48px;
    font-weight: 700;
    color: #EA5614;
}

.time-unit {
    font-size: 16px;
    color: #666;
}

.time-label-small {
    font-size: 18px;
    font-weight: 700;
    color: #EA5614;
}

.arrow-to {
    font-size: 24px;
    color: #EA5614;
    font-weight: 700;
}

.achievement-note {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .results-section {
        padding: 60px 0;
    }

    .results-section .section-title {
        font-size: 28px;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .industry-icon {
        width: 50px;
        height: 50px;
    }

    .industry-name {
        font-size: 12px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achievement-card {
        padding: 25px;
    }

    .time-value {
        font-size: 32px;
    }

    .time-value-zero {
        font-size: 40px;
    }
}

/* ================================
   Service Lineup Section (サービスラインナップセクション)
================================ */
.service-lineup-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-lineup-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-lineup-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-lineup-section .section-description {
    font-size: 16px;
    color: #666;
}

.service-lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-lineup-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.service-lineup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(234, 86, 20, 0.1);
}

.service-lineup-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-subtitle {
    display: block;
    font-size: 14px;
    color: #EA5614;
    font-weight: 500;
    margin-top: 5px;
}

.service-lineup-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-lineup-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-lineup-tags .tag {
    display: inline-block;
    background: #fff;
    color: #EA5614;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #EA5614;
}

.service-lineup-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .service-lineup-section {
        padding: 60px 0;
    }

    .service-lineup-section .section-title {
        font-size: 28px;
    }

    .service-lineup-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-lineup-card {
        padding: 30px 20px;
    }

    .service-number {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }

    .service-lineup-title {
        font-size: 18px;
    }

    .service-lineup-description {
        font-size: 14px;
    }
}

/* ================================
   CTA Assurance Text (安心文言)
================================ */
.hero-cta-assurance,
.showcase-cta-assurance,
.voice-cta-assurance,
.cta-assurance {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    text-align: center;
    line-height: 1.6;
}

.hero-cta-assurance {
    margin-top: 15px;
}

.showcase-cta-assurance {
    margin: 15px 0;
}

.voice-cta-assurance {
    margin-top: 15px;
}

@media (max-width: 768px) {

    .hero-cta-assurance,
    .showcase-cta-assurance,
    .voice-cta-assurance,
    .cta-assurance {
        font-size: 13px;
    }
}

/* ================================
   Service Page Styles
================================ */

/* サービス概要セクション */
.service-overview-section {
    padding: 60px 0;
    background-color: #fff;
}

.service-overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-overview-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-overview-text {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-overview-text:last-child {
    margin-bottom: 0;
}

/* サービスの進め方セクション */
.service-flow-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.flow-step {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr 300px;
    gap: 30px;
    align-items: start;
}

.flow-step:not(:last-child):after {
    content: "↓";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: #EA5614;
    font-weight: 700;
}

.flow-step-number {
    background: #EA5614;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

.flow-step-content {
    display: flex;
    flex-direction: column;
}

.flow-step-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.flow-step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
}

.flow-step-details {
    list-style: none;
    padding: 20px;
    margin: 0;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.flow-step-details li {
    font-size: 14px;
    color: #666;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.7;
}

.flow-step-details li:last-child {
    margin-bottom: 0;
}

.flow-step-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #EA5614;
    font-weight: 700;
    font-size: 16px;
}

.flow-step-arrow {
    display: none;
}

/* 実装例セクション */
.service-examples-section {
    padding: 80px 0;
    background-color: #fff;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.example-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.example-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.example-icon svg {
    width: 100%;
    height: 100%;
}

.example-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.5;
}

.example-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: auto;
    flex-grow: 1;
}

.example-result {
    background: #EA5614;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
}

/* 料金セクション */
.service-pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 40px;
}

.pricing-plan {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-plan.featured {
    border: 3px solid #EA5614;
    transform: scale(1.03);
}

.pricing-plan.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #EA5614;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
}

.plan-icon {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.plan-subtitle {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.plan-pricing-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    min-height: 24px;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.pricing-row.small {
    margin-bottom: 12px;
    margin-top: -8px;
    justify-content: flex-end;
}

.pricing-label {
    font-size: 13px;
    color: #999;
    font-weight: 400;
    white-space: nowrap;
    min-width: 70px;
}

.pricing-value {
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
    flex: 1;
}

.pricing-value.highlight {
    font-size: 22px;
    color: #EA5614;
}

.pricing-note {
    font-size: 11px;
    color: #999;
    font-style: normal;
    text-align: right;
}

.plan-lead {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    font-size: 14px;
    color: #666;
    padding: 10px 0 10px 25px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #EA5614;
    font-weight: 700;
    font-size: 16px;
}

.pricing-notes {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-notes p {
    font-size: 14px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 8px;
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-overview-section {
        padding: 40px 0;
    }

    .service-overview-title {
        font-size: 22px;
    }

    .service-overview-text {
        font-size: 15px;
    }

    .service-flow-section {
        padding: 60px 0;
    }

    .service-flow-steps {
        gap: 25px;
    }

    .flow-step {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow-step:not(:last-child):after {
        bottom: -35px;
        font-size: 35px;
    }

    .flow-step-number {
        width: 65px;
        height: 65px;
        font-size: 11px;
        margin: 0 auto;
    }

    .flow-step-title {
        font-size: 19px;
        text-align: center;
    }

    .flow-step-description {
        font-size: 14px;
    }

    .flow-step-details {
        padding: 15px;
    }

    .flow-step-details li {
        font-size: 13px;
    }

    .service-examples-section {
        padding: 60px 0;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-pricing-section {
        padding: 60px 0;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-plan {
        padding: 30px 20px;
    }

    .pricing-plan.featured {
        transform: scale(1);
        border: 2px solid #EA5614;
    }

    .pricing-plan.featured:hover {
        transform: translateY(-5px);
    }

    .plan-icon {
        font-size: 28px;
    }

    .plan-name {
        font-size: 20px;
    }

    .plan-subtitle {
        font-size: 12px;
    }

    .plan-pricing-info {
        padding: 15px;
    }

    .pricing-row {
        margin-bottom: 10px;
        min-height: 22px;
    }

    .pricing-label {
        font-size: 13px;
    }

    .pricing-value {
        font-size: 14px;
    }

    .pricing-value.highlight {
        font-size: 17px;
    }

    .pricing-note {
        font-size: 10px;
    }

    .plan-lead {
        font-size: 13px;
    }

    .plan-features li {
        font-size: 13px;
        padding: 8px 0 8px 22px;
    }

    .pricing-notes {
        padding: 0 15px;
    }

    .pricing-notes p {
        font-size: 13px;
    }
}