/* CSS Variables - Design System */
:root {
    /* Colors */
    --primary-blue: #0066CC;
    --primary-blue-dark: #004C99;
    --primary-blue-light: #E6F0FA;
    --secondary-blue: #5BAAEF;
    --secondary-blue-dark: #4A99DE;
    --accent-orange: #E89830;
    --accent-orange-dark: #CC7E1A;
    --accent-red: #E03B3B;
    --accent-red-dark: #C42E2E;
    --bg-white: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-dark: #1A1A2E;
    --text-primary: #1A1A1A;
    --text-secondary: #444444;
    --text-tertiary: #555555;
    --text-white: #FFFFFF;
    --border-light: #E5E5E5;

    /* Spacing */
    --spacing-section: 80px;
    --spacing-content: 40px;
    --spacing-element: 24px;

    /* Border Radius */
    --radius-button: 8px;
    --radius-card: 12px;

    /* Container */
    --container-max-width: 1440px;
    --container-padding: 120px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.show-sp{
    display:none;
}

.show-pc{
    display:block;
}


/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.header {
    background-color: var(--bg-white);
    height: 80px!important;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header .container {
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo-img {
    display: none;
}

.header-buttons {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn,
a.btn {
    padding: 12px 24px;
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(224, 59, 59, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 59, 59, 0.5);
}

.btn-outline {
    background-color: var(--accent-orange);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 14px rgba(232, 152, 48, 0.35);
}

.btn-outline:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 152, 48, 0.55);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, var(--primary-blue-light) 0%, var(--bg-white) 100%);
    padding: var(--spacing-section) 0 24px;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-content {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.hero-figure-wrap {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-figure-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 1vw;
}

.hero-figure-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

.hero-figure-note {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}

.hero-figure-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-label {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
    text-align: left;
    line-height: 1.2;
}

.hero-title-accent {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-blue);
}

.hero-title-main {
    font-size: 29px;
    font-weight: bold;
    color: var(--text-primary);
}

.hero-title-primary {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-blue);
    flex-basis: 100%;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-primary);
    text-align: left;
    line-height: 1.8;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-checklist li {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
    padding-left: 38px;
    position: relative;
}

.hero-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 22px;
    height: 22px;
    background-color: transparent;
    border: 2px solid #c0c8d8;
    border-radius: 4px;
}

.hero-checklist li::after {
    content: '';
    position: absolute;
    left: 1px;
    top: 7px;
    width: 20px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%231a56db' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 21px 18px;
}

.hero-note {
    font-size: 14px;
    color: var(--text-tertiary);
    text-align: left;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.hero-cta .cta-button {
    padding: 16px 16px;
    text-align: center;
    justify-content: center;
    height: 100%;
}

.hero-cta .cta-item:nth-child(3) .cta-button {
    background-color: #576aba;
    box-shadow: 0 4px 14px rgba(87, 106, 186, 0.35);
}

.hero-cta .cta-item:nth-child(3) .cta-button:hover {
    background-color: #4659a8;
    box-shadow: 0 8px 24px rgba(87, 106, 186, 0.55);
}

.hero-cta .cta-main {
    font-size: 20px;
    white-space: nowrap;
}

.hero-cta .cta-balloon {
    font-size: 15px;
    padding: 8px;
	border-radius:8px;
}

.cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-cta .cta-item {
    display: flex;
    flex: 1 1 0;
    align-items: stretch;
}

.cta-balloon {
    position: relative;
    background-color: var(--bg-white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    margin-bottom: 10px;
	text-align:center;
}

.cta-balloon::before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid var(--primary-blue);
}

.cta-balloon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid var(--bg-white);
}

.company-message{
	text-align:center;
	max-width:960px;
	margin:2em auto;
}
.company-sub-text{
	font-size:20px;
	line-height:1.8;
}
.company-sub-text span{
	display:inline-block;
	font-weight:700;
	color:var(--accent-orange-dark);
}
/* CTA Buttons */
.cta-button,
a.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 32px;
    border-radius: var(--radius-button);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary {
    background-color: var(--accent-red);
    box-shadow: 0 4px 14px rgba(224, 59, 59, 0.3);
}

.cta-primary:hover {
    background-color: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 59, 59, 0.5);
}

.cta-outline {
    background-color: var(--accent-orange);
    border: none;
    box-shadow: 0 4px 14px rgba(232, 152, 48, 0.35);
}

.cta-outline:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 152, 48, 0.55);
}

.cta-outline .cta-main-blue {
    color: var(--text-white);
}

.cta-white {
    background-color: var(--accent-orange);
    border: none;
    box-shadow: 0 4px 14px rgba(232, 152, 48, 0.35);
}

.cta-white:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 152, 48, 0.55);
}

.cta-white .cta-main-blue {
    color: var(--text-white);
}

.cta-main {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.cta-main-blue {
    color: var(--primary-blue);
}

.cta-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-outline .cta-sub,
.cta-white .cta-sub {
    color: var(--text-tertiary);
}

/* Trust Logos */
.trust-logos {
    background-color: var(--bg-white);
    padding: 48px 0 64px;
    overflow: hidden;
}

.logo-slider {
    overflow: hidden;
    margin-bottom: 64px;
}

.logo-slider .slick-track {
    display: flex;
    align-items: center;
}

.logo-slider div {
    padding: 0 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.logo-slider img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.logos-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-secondary);
}

/* Problem Section */
.problem-section {
    background-color: var(--primary-blue);
    padding: var(--spacing-section) 0;
}

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

.problem-section .section-title .title-primary {
    color: var(--text-white) !important;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-primary);
}

.section-title .title-primary {
    font-size: 40px;
}

.title-primary {
    color: var(--primary-blue) !important;
}

/* Problem → Value つなぎ（下向き三角・全幅） */
.section-connector {
    width: 100%;
    height: 100px;
    margin-top: -1px;
    background-color: var(--primary-blue);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    gap: var(--spacing-element);
    justify-content: center;
    margin-bottom: 48px;
}

.problem-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.problem-card-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    text-align: center;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

.solution-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
}

.solution-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
}

.solution-text-primary {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
}

/* Value Proposition */
.value-section {
    background-color: var(--bg-white);
    padding: var(--spacing-section) 0;
}


.value-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-card);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.value-card-main {
    flex: 1;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    min-width: 0;
}

.value-card-img {
    flex: 0 0 25%;
    min-width: 0;
}

.value-card-img img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.value-badge {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    flex-shrink: 0;
}

.value-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
}

.value-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    padding: 48px 0;
}

.cta-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 24px;
}

.cta-section .cta-button {
    padding: 16px 44px;
}

.cta-section .cta-balloon {
    font-size: 15px;
    padding: 8px 20px;
}

.cta-section .cta-main {
    font-size: 20px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
}

/* Stats Section */
.stats-section {
    background-color: var(--bg-white);
    padding: var(--spacing-section) 0;
}

.section-heading {
    font-size: 38px;
    font-weight: bold;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 48px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 7px;
    background-color: var(--primary-blue);
    margin: 16px auto 0;
    border-radius: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
    gap: 32px;
    justify-content: center;
}

.stat-card {
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-card-icon {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.stat-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: invert(27%) sepia(98%) saturate(1000%) hue-rotate(197deg) brightness(0.95);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-blue);
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 5.5em;
    text-align: center;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.stat-sub {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Operation Section */
.operation-section {
    background: linear-gradient(180deg, var(--primary-blue-light) 0%, rgba(0, 102, 204, 0.15) 50%, var(--primary-blue-light) 100%);
    padding: var(--spacing-section) 0;
}

.operation-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
}

.op-sub-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.op-sub-primary {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
}

.operation-flow {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    padding: 24px 32px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.flow-item {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 12px 16px;
    border-radius: var(--radius-button);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

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

.operation-desc {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.operation-desc p {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Case Section */
.case-section {
    background-color: var(--bg-white);
    padding: var(--spacing-section) 0;
}

.case-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 48px;
}

.case-logos {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.case-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
}

a.case-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.case-card-img {
    aspect-ratio: 400 / 240;
    background: var(--border-light);
    overflow: hidden;
}

.case-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-card-company {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-primary);
    padding: 16px 16px 4px;
    margin: 0;
}

.case-card-subtitle {
    font-size: 14px;
    font-weight: normal;
    color: var(--primary-blue);
    padding: 0 16px 8px;
    margin: 0;
}

.case-card-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 16px 12px;
    flex: 1;
}

.case-card-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--primary-blue);
    background-color: var(--primary-blue-light);
    padding: 4px 12px;
    border-radius: 12px;
    margin: 0 16px 16px;
    align-self: flex-start;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-light);
    padding: var(--spacing-section) 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: var(--spacing-element);
    justify-content: center;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.pricing-featured {
    border: 2px solid var(--primary-blue);
}

.pricing-header {
    background-color: var(--bg-white);
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.pricing-header-featured {
    background-color: var(--primary-blue);
}

.pricing-header-featured .plan-name,
.pricing-header-featured .plan-name-ja {
    color: var(--text-white);
}

.plan-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.plan-name-ja {
    font-size: 14px;
    color: var(--text-secondary);
}

.featured-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-recommend {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    min-height: 42px;
}

.plan-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-blue);
}

.price-yen {
    font-size: 0.6em;
    font-weight: normal;
}

.price-tax {
    font-size: 14px;
    font-weight: normal;
}

.price-unit {
    font-size: 12px;
    color: var(--text-secondary);
}

.price-sub {
    font-size: 12px;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.price-sub .price-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-blue);
}

.price-sub .price-tax {
    font-size: 12px;
    font-weight: normal;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.feature-label {
    font-size: 14px;
    color: var(--text-primary);
}

.feature-value {
    font-size: 18px;
    font-weight: bold;
}

.feature-yes {
    color: var(--primary-blue);
}

.feature-no {
    color: var(--text-tertiary);
}

.plan-contract {
    font-size: 12px;
    color: var(--text-secondary);
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
    padding: var(--spacing-section) 0;
}

.faq-section .section-heading {
    margin-bottom: 48px;
}

.faq-form-inner {
    display: flex;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.faq-column,
.form-column {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.faq-column {
    background-color: var(--primary-blue-light);
}

.form-column {
    background-color: var(--primary-blue);
}

.faq-column-inner,
.form-column-inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 48px var(--container-padding);
    box-sizing: border-box;
}

.form-column .section-heading {
    color: var(--text-white);
}

.form-section-heading {
    font-size: 28px;
}

.form-lead {
    color: var(--text-white);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    opacity: 0.9;
}

.form-column .section-heading::after {
    background-color: var(--text-white);
}

.faq-column .section-heading,
.form-column .section-heading {
    margin-bottom: 32px;
}

.faq-column-title,
.form-column-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.faq-q-label {
    flex-shrink: 0;
    min-width:0.5em;
}

.faq-question-text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1;
}

.faq-icon::before {
    content: '+';
}

.faq-item.is-open .faq-icon::before {
    content: '−';
}

.faq-answer {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    visibility: hidden;
    transition: max-height 0.3s ease, visibility 0s linear 0.3s;
}

.faq-item.is-open .faq-answer {
    padding-top: 12px;
    padding-bottom: 20px;
    max-height: 500px;
    visibility: visible;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-button);
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group select {
    cursor: pointer;
    appearance: auto;
}

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

.contact-form .btn {
    margin-top: 8px;
}



/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --container-padding: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --spacing-section: 60px;
    }

    html,
    body {
        overflow-x: hidden;
    }
	
	.show-sp{
        display:block;
    }

	.show-pc{
        display:none;
    }
	
	.hide-sp{
        display:none;
    }

	.header{
		height:60px!important;
	}
	
    .logo-text {
        display: none;
    }

    .logo-img {
        display: block;
        height: 36px;
        width: auto;
        object-fit: contain;
    }

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

    .header-buttons {
        gap: 8px;
    }

    .btn, a.btn  {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content,
    .hero-figure-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .hero-title-accent,
    .hero-title-primary {
        font-size: 32px;
    }

    .hero-title-main {
        font-size: 19px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-checklist li {
        font-size: 15.5px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero-cta .cta-item {
        width: 100%;
        max-width: 320px;
        align-items: stretch;
    }

    .hero-cta .cta-button {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .cta-item {
        width: 100%;
        max-width: 320px;
        align-items: stretch;
    }
.company-message{
	margin:2em auto;
}
.company-sub-text{
	font-size:16px;
}
    .cta-button {
        width: 100%;
    }

    .section-title h2 {
        font-size: 20px;
    }
	
	.section-title .title-primary{
		font-size: 32px;
	}

    .section-heading {
        font-size: 28px;
    }

    .section-connector {
        height: 70px;
    }

    .problem-cards {
        grid-template-columns: 1fr;
    }

	.solution-text {
    font-size: 20px;
}

.solution-text-primary {
    font-size: 20px;
}
	
    .value-card {
        flex-direction: column;
        align-items: stretch;
    }

    .value-card-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .value-card-img {
        flex: none;
        height: 200px;
    }

    .value-card-img img {
        min-height: 200px;
    }

    .operation-flow {
        flex-direction: column;
        align-items: stretch;
		padding:0;
		
    }

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

    .flow-arrow {
        transform: rotate(90deg);
        align-self: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .case-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-form-inner {
        flex-direction: column;
        gap: 0;
    }

    .faq-column,
    .form-column {
        flex: none;
        max-width: 100%;
    }

    .faq-column-inner,
    .form-column-inner {
        max-width: 100%;
        padding: 32px var(--container-padding);
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
	.logo-slider img{
		max-width:80px;
	}
}

@media (max-width: 480px) {

	.container{
		    padding: 0 var(--container-padding);
	}
	.hero-label{
		font-size: 13px;
		width:100%;
		text-align:center;
	}
    .logo-img {
        height: 28px;
    }

    .header-buttons {
        gap: 8px;
    }



    .hero-title-main {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        gap: 24px;
    }

    .logo-item {
        font-size: 18px;
    }

    .case-cards {
        gap: 16px;
    }
	

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.fixed_banner{
	display:none;
}

.footer-banner {
    display: none!important;
    pointer-events: none!important;
}