/* ==========================================================================
   PTO LP共通外部スタイル（front_lp.css）
   ========================================================================== */

/* ==========================================================================
   通常版LP（社労士向け）スタイル
   ========================================================================== */
.sharoushi-lp {
    font-family: 'Noto Sans JP', sans-serif;
    color: #334155;
    line-height: 1.7;
    background-color: #f8fafc;
}

.sharoushi-lp h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 15px;
}

.sharoushi-lp .section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.sharoushi-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #ffffff;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sharoushi-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: rotateBg 40s linear infinite;
}

@keyframes rotateBg {
    100% {
        transform: rotate(360deg);
    }
}

.sharoushi-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

.sharoushi-hero-catch {
    font-size: 1.4rem;
    color: #60a5fa;
    margin-bottom: 20px;
    font-weight: bold;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.sharoushi-hero h1 {
    font-size: 3.2rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sharoushi-hero .sub-copy {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-gold {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    color: #0f172a !important;
    font-size: 1.25rem;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    border: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
}

.section-wrapper {
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-wrapper>* {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background: #ffffff;
}

.bg-dark {
    background: #0f172a;
    color: #f8fafc;
}

.bg-dark h2 {
    color: #ffffff !important;
}

.bg-dark .section-subtitle {
    color: #94a3b8;
}

.bg-blue {
    background: #f0f9ff;
}

.bg-gray {
    background: #f8fafc;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.pain-card {
    background: transparent;
    padding: 10px;
    border: none;
    box-shadow: none;
    color: #f1f5f9;
    transition: none;
    position: relative;
}

.pain-bg-text {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(239, 68, 68, 0.15);
    line-height: 1;
    z-index: 0;
    user-select: none;
    letter-spacing: -0.05em;
}

.pain-card:hover {
    transform: none;
    box-shadow: none;
}

.pain-title {
    font-weight: 900;
    color: #fca5a5;
    margin-bottom: 25px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(252, 165, 165, 0.3);
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.pain-quote {
    color: #f8fafc;
    background: #334155;
    padding: 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    position: relative;
    margin: 0 0 20px 40px;
    border: none;
    z-index: 1;
}

.pain-quote::before {
    content: "";
    position: absolute;
    left: -38px;
    width: 13px;
    height: 12px;
    bottom: 0;
    background: #334155;
    border-radius: 50%;
}

.pain-quote::after {
    content: "";
    position: absolute;
    left: -24px;
    width: 20px;
    height: 18px;
    bottom: 3px;
    background: #334155;
    border-radius: 50%;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
}

.reason-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 35px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reason-bg-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    line-height: 1;
    z-index: 0;
    user-select: none;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.reason-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.reason-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    line-height: 1;
}

.reason-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.reason-card p {
    color: #475569;
    position: relative;
    z-index: 2;
}

.sim-container {
    background: transparent;
    border: none;
    padding: 20px 0;
    box-shadow: none;
}

.sim-three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .sim-three-columns {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.sim-box {
    padding: 35px 25px 25px;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sim-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.sim-box.pattern-a {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.sim-box.pattern-b {
    border-color: #fbd38d;
    background-color: #fffaf0;
}

.sim-box.pattern-c {
    border: 3px solid #f59e0b;
    background-color: #fffbeb;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
    z-index: 2;
}

.sim-box.pattern-c:hover {
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.25);
}

.sim-box-badge {
    position: absolute;
    top: -16px;
    left: 20px;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #ffffff;
}

.sim-box-badge i {
    margin-right: 6px;
}

.badge-bad {
    background-color: #64748b;
    color: #ffffff;
}

.badge-warn {
    background-color: #fbd38d; /* コントラスト確保のための明るい背景色 */
    color: #333333; /* 視認性向上のための濃いグレー文字 */
}

.badge-best {
    background-color: #f59e0b; /* 黄色（ゴールド）背景 */
    color: #1e3a8a; /* 誠実を表すネイビー文字（視認性向上） */
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.sim-box-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    margin-top: 10px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sim-box-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.3;
}

.sim-details {
    margin-bottom: 25px;
}

.sim-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.border-top-gray {
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.sim-box.pattern-b .border-top-gray {
    border-top-color: rgba(251, 211, 141, 0.5);
}

.sim-box.pattern-c .border-top-gray {
    border-top-color: rgba(245, 158, 11, 0.2);
}

.detail-label {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
}

.detail-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    text-align: right;
    line-height: 1.3;
}

.detail-value small {
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
}

.text-gray {
    color: #64748b;
}

.text-bold {
    font-weight: 900;
}

.sim-result {
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: auto;
}

.result-bad {
    background-color: #f1f5f9;
}

.result-warn {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
}

.result-best {
    background-color: #fef3c7;
    border: 1px solid #fde68a;
}

.result-title {
    font-weight: 850;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.result-bad .result-title {
    color: #475569;
}

.result-warn .result-title {
    color: #c53030;
}

.result-best .result-title {
    color: #b45309;
}

.result-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0 !important;
    color: #475569;
}

.sim-formula {
    background: #ffffff;
    border: 2px dashed #f59e0b;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.formula-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

.formula-label {
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: bold;
}

.formula-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
}

.formula-operator {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f59e0b;
}

.formula-result-arrow {
    font-size: 0.9rem;
    color: #f59e0b;
    margin: 4px 0;
    line-height: 1;
}

.formula-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fffbeb;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #fde68a;
}

.total-label {
    font-size: 0.75rem;
    color: #b45309;
    font-weight: 900;
}

.total-val {
    font-size: 1.7rem;
    font-weight: 900;
    color: #dc2626;
    line-height: 1.2;
}

.total-unit {
    font-size: 0.85rem;
    font-weight: bold;
}

.sim-highlight {
    background: #ffffff;
    border: 2px solid #3b82f6;
    padding: 30px;
    border-radius: 12px;
    margin: 50px auto 0;
    max-width: 800px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.sim-highlight::before {
    content: '💡 POINT';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.sim-highlight>strong {
    font-size: 1.2rem;
    color: #1e3a8a;
    display: block;
    margin-bottom: 15px;
}

.sim-highlight ul {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}

.case-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin: 0 auto 40px;
    max-width: 960px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: none;
    position: relative;
}

.case-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: #fef3c7;
    font-family: "Georgia", serif;
    line-height: 1;
    z-index: 0;
}

.case-card::after {
    content: '”';
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 6rem;
    color: #fef3c7;
    font-family: "Georgia", serif;
    line-height: 1;
    z-index: 0;
}

.case-header,
.case-body {
    position: relative;
    z-index: 1;
}

.case-header {
    font-weight: 700;
    font-size: 1.4rem;
    color: #d97706;
    border-bottom: 2px dashed #fde68a;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.case-body strong {
    color: #1e3a8a;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

.sharoushi-lp .faq-box {
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    border-radius: 0;
    padding: 25px 0;
}

.sharoushi-lp .faq-box:last-child {
    border-bottom: none;
}

.sharoushi-lp .faq-q {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.sharoushi-lp .faq-q::before {
    content: 'Q.';
    color: #3b82f6;
    font-size: 1.4rem;
    line-height: 1;
}

.sharoushi-lp .faq-a {
    color: #475569;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-left: 5px;
}

.sharoushi-lp .faq-a::before {
    content: 'A.';
    color: #f59e0b;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

.sharoushi-lp .pricing-grid,
.lp-co-wrapper .pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 45px;
    justify-content: center;
}

.sharoushi-lp .pricing-card,
.lp-co-wrapper .pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-sizing: border-box;
}

/* 1法人直接契約LP側のカードは1枚のため、最大幅を少し広く（590px）設定する */
.lp-co-wrapper .pricing-card {
    max-width: 590px;
}

.sharoushi-lp .pricing-card:hover,
.lp-co-wrapper .pricing-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.08);
}

.sharoushi-lp .pricing-card.featured,
.lp-co-wrapper .pricing-card.featured {
    border: 2px solid #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}

.sharoushi-lp .pricing-card.featured:hover,
.lp-co-wrapper .pricing-card.featured:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.18);
}

.sharoushi-lp .pricing-badge,
.lp-co-wrapper .pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.sharoushi-lp .pricing-card h3,
.lp-co-wrapper .pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a !important;
    border: none !important;
    padding-bottom: 0 !important;
}

.sharoushi-lp .pricing-card .price,
.lp-co-wrapper .pricing-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.sharoushi-lp .pricing-card .price small,
.lp-co-wrapper .pricing-card .price small {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: normal;
}

.sharoushi-lp .pricing-features,
.lp-co-wrapper .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
}

.sharoushi-lp .pricing-features li,
.lp-co-wrapper .pricing-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sharoushi-lp .pricing-features li::before,
.lp-co-wrapper .pricing-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .sharoushi-lp .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    .sharoushi-lp .pricing-card {
        width: 100%;
        max-width: 450px;
    }
}

/* ==========================================================================
   1法人契約LP用スタイル（lp_co.php）
   ========================================================================== */
.lp-co-wrapper {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    line-height: 1.8;
    overflow-x: hidden;
}

.lp-co-wrapper .lp-section {
    padding: 80px 20px;
    position: relative;
}

.lp-co-wrapper .lp-container {
    max-width: 1280px;
    margin: 0 auto;
}

.lp-co-wrapper .lp-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #0f172a;
    position: relative;
}

.lp-co-wrapper .lp-section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.lp-co-wrapper .hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    text-align: center;
    padding: 120px 20px;
}

.lp-co-wrapper .hero-badge {
    display: inline-block;
    background: #f59e0b;
    color: #0f172a;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.lp-co-wrapper .hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.lp-co-wrapper .hero-section h1 .highlight {
    color: #fde047;
    background: linear-gradient(transparent 70%, rgba(253, 224, 71, 0.2) 0%);
}

.lp-co-wrapper .hero-lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #cbd5e1;
}

.lp-co-wrapper .btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 18px 45px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.lp-co-wrapper .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.5);
    color: #ffffff;
}

.lp-co-wrapper .cta-subnote {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 15px;
}

.lp-co-wrapper .pain-section {
    background-color: #f8fafc;
}

.lp-co-wrapper .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .lp-co-wrapper .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lp-co-wrapper .pain-grid {
        grid-template-columns: 1fr;
    }
}

.lp-co-wrapper .pain-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
    word-break: break-all;
    overflow-wrap: break-word;
}

.lp-co-wrapper .pain-card:hover {
    transform: translateY(-5px);
}

.lp-co-wrapper .pain-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lp-co-wrapper .pain-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.lp-co-wrapper .pain-card p {
    color: #475569;
    font-size: 0.95rem;
}

.lp-co-wrapper .feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.lp-co-wrapper .feature-row.reverse {
    flex-direction: row-reverse;
}

.lp-co-wrapper .feature-text {
    flex: 1;
}

.lp-co-wrapper .feature-num {
    font-size: 0.9rem;
    font-weight: bold;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.lp-co-wrapper .feature-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.lp-co-wrapper .feature-text p {
    color: #475569;
    font-size: 1.05rem;
}

.lp-co-wrapper .pricing-section {
    background-color: #f8fafc;
}



.lp-co-wrapper .signup-section {
    background-color: #ffffff;
}

.lp-co-wrapper .signup-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.lp-co-wrapper .signup-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.lp-co-wrapper .signup-desc {
    color: #64748b;
    text-align: center;
    margin-bottom: 40px;
}

.lp-co-wrapper .signup-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.lp-co-wrapper .signup-form legend {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e3a8a;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
    margin-bottom: 20px;
    width: 100%;
}

.lp-co-wrapper .input-group {
    margin-bottom: 20px;
}

.lp-co-wrapper .input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.lp-co-wrapper .input-group input[type="text"],
.lp-co-wrapper .input-group input[type="email"],
.lp-co-wrapper .input-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.lp-co-wrapper .input-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.lp-co-wrapper .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.lp-co-wrapper .checkbox-group input[type="checkbox"] {
    margin-top: 6px;
}

.lp-co-wrapper .terms-text {
    font-size: 0.9rem;
    color: #475569;
}

.lp-co-wrapper .terms-text a {
    color: #3b82f6;
    text-decoration: underline;
}

.lp-co-wrapper .signup-notes {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: #64748b;
}

.lp-co-wrapper .signup-notes p {
    margin: 0 0 8px 0;
}

.lp-co-wrapper .signup-notes p:last-child {
    margin-bottom: 0;
}

.lp-co-wrapper .btn-submit {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 16px;
    border-radius: 8px;
    width: 100%;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lp-co-wrapper .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

.lp-co-wrapper .is-invalid {
    border-color: #dc3545 !important;
}

.lp-co-wrapper .is-valid {
    border-color: #198754 !important;
}

.lp-co-wrapper .fv-plugins-message-container {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: bold;
}

.lp-co-wrapper .faq-box {
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    border-radius: 0;
    padding: 25px 0;
}

.lp-co-wrapper .faq-box:last-child {
    border-bottom: none;
}

.lp-co-wrapper .faq-q {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.lp-co-wrapper .faq-q::before {
    content: 'Q.';
    color: #3b82f6;
    font-size: 1.4rem;
    line-height: 1;
}

.lp-co-wrapper .faq-a {
    color: #475569;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-left: 5px;
}

.lp-co-wrapper .faq-a::before {
    content: 'A.';
    color: #f59e0b;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

@media (max-width: 768px) {
    .lp-co-wrapper .hero-section h1 {
        font-size: 2rem;
    }

    .lp-co-wrapper .lp-section-title {
        font-size: 1.75rem;
    }

    .lp-co-wrapper .feature-row,
    .lp-co-wrapper .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .lp-co-wrapper .signup-box {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   共通CTA（無料トライアル）お申し込みエリア スタイル
   ========================================================================== */
.lp-signup-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.lp-signup-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lp-signup-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.lp-signup-lead {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
}

.lp-signup-box-wrapper {
    margin-top: 20px;
    text-align: left;
}

.sharoushi-lp .signup-container h2 {
    margin-bottom: 10px;
}

/* LP内インラインCSSの外部化 */
.sharoushi-lp .unit-price {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 5px;
    margin-bottom: 20px;
    font-weight: bold;
}

.sharoushi-lp .post-trial-price {
    font-weight: bold;
    color: #1e3a8a;
    font-size: 1.1rem;
    margin-top: -15px;
    margin-bottom: 5px;
}

.sharoushi-lp .select-plan-btn {
    font-size: 1rem;
    padding: 12px 30px;
    display: block;
    border-radius: 8px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.lp-plan-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 5px 0;
}

.lp-plan-option-label {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.lp-signup-notes-text {
    font-size: 0.9rem;
    color: #475569;
}

.lp-submit-btn-full {
    width: 100%;
    border: none;
}

.lp-dev-btn-container {
    text-align: center;
    margin-top: 10px;
}

.lp-dev-btn {
    padding: 5px 10px;
    font-size: 12px;
    background: #eee;
    border: 1px solid #ccc;
    cursor: pointer;
    color: #333;
}

/* 1法人向けLPの追加スタイル */
.lp-co-wrapper .lp-section.bg-gray {
    background-color: #f8fafc;
}

.lp-co-wrapper .lp-section.bg-white {
    background-color: #ffffff;
}

.lp-co-wrapper .lp-section.bg-blue {
    background-color: #f0f9ff;
}

.lp-co-wrapper .lp-section.bg-dark {
    background-color: #0f172a;
    color: #f8fafc;
}

.lp-co-wrapper .lp-section.bg-dark h2 {
    color: #ffffff !important;
}

.lp-co-wrapper .lp-section.bg-dark .lp-section-subtitle {
    color: #94a3b8;
}

.lp-co-wrapper .pricing-price-note {
    margin-top: -20px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #1e3a8a;
}

.lp-co-wrapper .pricing-card .btn-cta {
    width: 80%;
    padding: 14px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* 安心機能セクション of カード化（reason-card風） */
.lp-co-wrapper .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
}

.lp-co-wrapper .feature-card {
    display: block; /* 既存 of .feature-card (display: flex) の干渉を打ち消す */
    margin: 0 auto; /* 既存 of margin-bottom: 80px の干渉を打ち消す */
    max-width: 960px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 35px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lp-co-wrapper .feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.lp-co-wrapper .feature-num-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    line-height: 1;
    z-index: 0;
}

.lp-co-wrapper .feature-bg-desc {
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.15);
    line-height: 1;
    z-index: 0;
    user-select: none;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

.lp-co-wrapper .feature-card h3 {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.lp-co-wrapper .feature-card p {
    color: #475569;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

/* ==========================================================================
   全プラン共通対応機能一覧スタイル
   ========================================================================== */
.common-features-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.common-features-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.common-features-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.common-features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
}

@media (max-width: 992px) {
    .common-features-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .common-features-box {
        padding: 30px 20px;
    }
}

.common-feature-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.common-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    border-color: #cbd5e1;
}

.common-feature-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.common-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icon-green {
    background-color: #dcfce7;
    color: #15803d;
}

.icon-blue {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.icon-yellow {
    background-color: #fef3c7;
    color: #b45309;
}

.icon-purple {
    background-color: #f3e8ff;
    color: #7e22ce;
}

.common-feature-header h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.common-feature-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.common-feature-list.no-margin-top {
    margin-top: 0;
}

.common-feature-list li {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

.common-feature-list li::before {
    content: none;
}

.common-feature-desc-text {
    display: block;
    padding-left: 1.2rem;
    margin-top: 4px;
}

/* 共通ユーティリティクラス（LP用） */
.text-danger {
    color: #dc3545 !important;
}

.text-primary {
    color: #2563eb !important;
}

.text-accent {
    color: #b45309 !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

/* 5. 【アカウント・権限管理】用追加スタイル */
.icon-orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.common-feature-item-full {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.common-feature-item-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    border-color: #cbd5e1;
}

@media (min-width: 993px) {
    .common-feature-item-full {
        grid-column: span 2;
    }
}

