.cvkt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.cvkt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 71, 161, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.cvkt-header.scrolled {
    background: rgba(13, 71, 161, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.cvkt-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.cvkt-logo h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cvkt-logo-sub {
    color: #64b5f6;
    font-size: 0.9rem;
    font-weight: 500;
}

.cvkt-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.cvkt-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.cvkt-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #64b5f6;
    transition: width 0.3s ease;
}

.cvkt-nav-link:hover::after {
    width: 100%;
}

.cvkt-nav-link:hover {
    color: #64b5f6;
}

.cvkt-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.cvkt-hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.cvkt-section-hero {
    height: 100vh;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 50%, #42a5f5 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /></linearGradient></defs><polygon fill="url(%23grad1)" points="0,200 1000,100 1000,300 0,300"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cvkt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 71, 161, 0.3);
}

.cvkt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.cvkt-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cvkt-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e3f2fd;
    font-weight: 500;
}

.cvkt-hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #f5f5f5;
}

.cvkt-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cvkt-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cvkt-btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    border: none;
}

.cvkt-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.cvkt-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cvkt-btn-secondary:hover {
    background: #fff;
    color: #0d47a1;
}

.cvkt-btn-outline {
    background: transparent;
    color: #0d47a1;
    border: 2px solid #0d47a1;
}

.cvkt-btn-outline:hover {
    background: #0d47a1;
    color: #fff;
}

/* Section styles - SWELL override */
.post_content .cvkt-section-title,
.entry-content .cvkt-section-title,
.cvkt-section-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    color: #0d47a1 !important;
    position: relative !important;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease !important;
    line-height: 1.2 !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}

.post_content .cvkt-section-title.animate,
.entry-content .cvkt-section-title.animate,
.cvkt-section-title.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.post_content .cvkt-section-title::after,
.entry-content .cvkt-section-title::after,
.cvkt-section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 4px !important;
    background: linear-gradient(135deg, #0d47a1, #42a5f5) !important;
    border-radius: 2px !important;
}

/* About Section - SWELL override */
.cvkt-section-about {
    padding: 100px 0 !important;
    background: #f8f9fa !important;
}

.post_content .cvkt-section-about h2,
.entry-content .cvkt-section-about h2,
.cvkt-section-about h2 {
    text-align: left !important;
    margin-bottom: 30px !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #0d47a1 !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.post_content .cvkt-section-about h2::after,
.entry-content .cvkt-section-about h2::after,
.cvkt-section-about h2::after {
    left: 0 !important;
    transform: none !important;
}

.cvkt-about-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.cvkt-about-text {
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.cvkt-about-text.animate {
    transform: translateX(0);
}

.post_content .cvkt-about-description,
.entry-content .cvkt-about-description,
.cvkt-about-description {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #555 !important;
    margin-bottom: 20px !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
}

.cvkt-about-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cvkt-about-bg-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.8), rgba(66, 165, 245, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23e3f2fd"/><circle cx="200" cy="150" r="80" fill="%230d47a1" opacity="0.3"/><rect x="150" y="100" width="100" height="100" fill="%2342a5f5" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.cvkt-about-image:hover .cvkt-about-bg-image {
    transform: scale(1.05);
}

/* Service Section */
.cvkt-section-service {
    padding: 100px 0;
    background: #fff;
}

.cvkt-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.cvkt-service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
}

.cvkt-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0d47a1, #42a5f5);
}

.cvkt-service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.cvkt-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cvkt-service-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d47a1, #42a5f5);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
}

.cvkt-service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 15px;
}

.cvkt-service-description {
    color: #666;
    line-height: 1.6;
}

/* Column Section */
.cvkt-section-column {
    padding: 100px 0;
    background: #f8f9fa;
}

.cvkt-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.cvkt-column-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.cvkt-column-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.cvkt-column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cvkt-column-date {
    color: #0d47a1;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cvkt-column-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cvkt-column-summary {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cvkt-column-more {
    text-align: center;
}

/* Message Section */
.cvkt-section-message {
    padding: 100px 0;
    background: #fff;
}

.cvkt-message-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.cvkt-message-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cvkt-message-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 20px;
}

.cvkt-message-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Recruit Section */
.cvkt-section-recruit {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9), rgba(66, 165, 245, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1000" height="300" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    position: relative;
}

.cvkt-recruit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 71, 161, 0.2);
}

.cvkt-recruit-content {
    position: relative;
    z-index: 2;
}

.cvkt-recruit-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cvkt-recruit-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e3f2fd;
}

.cvkt-recruit-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* FAQ Section */
.cvkt-section-faq {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.cvkt-faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cvkt-faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cvkt-faq-question {
    padding: 25px 30px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.cvkt-faq-question:hover {
    background: #f8f9fa;
    color: #0d47a1;
}

.cvkt-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #0d47a1;
    transition: transform 0.3s ease;
}

.cvkt-faq-item.active .cvkt-faq-icon {
    transform: rotate(45deg);
}

.cvkt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cvkt-faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Company Section */
.cvkt-section-company {
    padding: 100px 0;
    background: #fff;
}

.cvkt-company-content {
    max-width: 800px;
    margin: 0 auto;
}

.cvkt-company-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.cvkt-company-table th,
.cvkt-company-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cvkt-company-table th {
    background: #0d47a1;
    color: #fff;
    font-weight: 600;
    width: 200px;
}

.cvkt-company-table td {
    color: #555;
    line-height: 1.6;
}

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

/* Footer */
.cvkt-footer {
    background: #0d47a1;
    color: #fff;
    padding: 50px 0 20px;
}

.cvkt-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.cvkt-footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cvkt-footer-logo p {
    color: #90caf9;
    font-size: 0.95rem;
}

.cvkt-footer-links ul {
    list-style: none;
}

.cvkt-footer-links li {
    margin-bottom: 10px;
}

.cvkt-footer-links a {
    color: #e3f2fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cvkt-footer-links a:hover {
    color: #64b5f6;
}

.cvkt-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #90caf9;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .cvkt-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(13, 71, 161, 0.98);
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .cvkt-nav.active {
        left: 0;
    }
    
    .cvkt-nav-list {
        flex-direction: column;
        padding: 50px 20px;
        gap: 20px;
    }
    
    .cvkt-hamburger {
        display: flex;
    }
    
    .cvkt-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }
    
    .cvkt-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .cvkt-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }
    
    .cvkt-hero-title {
        font-size: 2.5rem;
    }
    
    .cvkt-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cvkt-hero-description {
        font-size: 1rem;
    }
    
    .cvkt-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cvkt-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cvkt-about-image {
        order: -1;
        height: 250px;
    }
    
    .cvkt-section-about h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cvkt-service-grid {
        grid-template-columns: 1fr;
    }
    
    .cvkt-column-grid {
        grid-template-columns: 1fr;
    }
    
    .cvkt-message-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .cvkt-recruit-title {
        font-size: 2.2rem;
    }
    
    .cvkt-recruit-subtitle {
        font-size: 1.2rem;
    }
    
    .cvkt-recruit-description {
        font-size: 1rem;
    }
    
    .cvkt-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cvkt-company-table th {
        width: auto;
        display: block;
        padding: 15px 20px 5px;
    }
    
    .cvkt-company-table td {
        display: block;
        padding: 5px 20px 15px;
    }
    
    .cvkt-faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .cvkt-faq-answer p {
        padding: 0 20px 20px;
    }
}

/* ===============================
   SWELL テーマ干渉防止用 CSS
   固定ページの追加CSSに貼り付けてください
   =============================== */

/* 全体的なSWELLスタイルリセット */
.post_content .cvkt-section-title,
.entry-content .cvkt-section-title,
.post_content .cvkt-service-title,
.entry-content .cvkt-service-title,
.post_content .cvkt-column-title,
.entry-content .cvkt-column-title,
.post_content .cvkt-message-name,
.entry-content .cvkt-message-name,
.post_content .cvkt-faq-question,
.entry-content .cvkt-faq-question {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 見出しの干渉防止 */
.post_content .cvkt-section-title::before,
.entry-content .cvkt-section-title::before,
.post_content .cvkt-service-title::before,
.entry-content .cvkt-service-title::before,
.post_content .cvkt-column-title::before,
.entry-content .cvkt-column-title::before {
    display: none !important;
}

/* SWELLのh2, h3スタイル上書き */
.post_content h2.cvkt-section-title,
.entry-content h2.cvkt-section-title,
.post_content h3.cvkt-service-title,
.entry-content h3.cvkt-service-title,
.post_content h3.cvkt-column-title,
.entry-content h3.cvkt-column-title,
.post_content h3.cvkt-message-name,
.entry-content h3.cvkt-message-name,
.post_content h3.cvkt-faq-question,
.entry-content h3.cvkt-faq-question {
    position: relative !important;
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    box-shadow: none !important;
}

/* コンテナの干渉防止 */
.post_content .cvkt-container,
.entry-content .cvkt-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* ボタンの干渉防止 */
.post_content .cvkt-btn,
.entry-content .cvkt-btn {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.post_content .cvkt-btn-primary,
.entry-content .cvkt-btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    color: #fff !important;
}

.post_content .cvkt-btn-secondary,
.entry-content .cvkt-btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.post_content .cvkt-btn-outline,
.entry-content .cvkt-btn-outline {
    background: transparent !important;
    color: #0d47a1 !important;
    border: 2px solid #0d47a1 !important;
}

/* 段落の干渉防止 */
.post_content .cvkt-about-description,
.entry-content .cvkt-about-description,
.post_content .cvkt-hero-description,
.entry-content .cvkt-hero-description,
.post_content .cvkt-service-description,
.entry-content .cvkt-service-description,
.post_content .cvkt-column-summary,
.entry-content .cvkt-column-summary,
.post_content .cvkt-message-description,
.entry-content .cvkt-message-description,
.post_content .cvkt-recruit-description,
.entry-content .cvkt-recruit-description {
    margin-bottom: 20px !important;
    line-height: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

/* リストの干渉防止 */
.post_content .cvkt-nav-list,
.entry-content .cvkt-nav-list,
.post_content .cvkt-footer-links ul,
.entry-content .cvkt-footer-links ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* テーブルの干渉防止 */
.post_content .cvkt-company-table,
.entry-content .cvkt-company-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 0 !important;
}

.post_content .cvkt-company-table th,
.entry-content .cvkt-company-table th,
.post_content .cvkt-company-table td,
.entry-content .cvkt-company-table td {
    border: none !important;
    padding: 20px 25px !important;
    text-align: left !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

/* セクション間隔の確保 */
.post_content section[class*="cvkt-section"],
.entry-content section[class*="cvkt-section"] {
    margin-bottom: 0 !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* SWELLのメディアクエリ干渉防止 */
@media (max-width: 768px) {
    .post_content .cvkt-section-title,
    .entry-content .cvkt-section-title {
        font-size: 2rem !important;
    }
    
    .post_content .cvkt-hero-title,
    .entry-content .cvkt-hero-title {
        font-size: 2.5rem !important;
    }
}


/* ===============================
   SWELL テーマ干渉防止用 CSS
   固定ページの追加CSSに貼り付けてください
   =============================== */

/* 全体的なSWELLスタイルリセット */
.post_content .cvkt-section-title,
.entry-content .cvkt-section-title,
.post_content .cvkt-service-title,
.entry-content .cvkt-service-title,
.post_content .cvkt-column-title,
.entry-content .cvkt-column-title,
.post_content .cvkt-message-name,
.entry-content .cvkt-message-name,
.post_content .cvkt-faq-question,
.entry-content .cvkt-faq-question,
.post_content .cvkt-hero-title,
.entry-content .cvkt-hero-title,
.post_content .cvkt-recruit-title,
.entry-content .cvkt-recruit-title {
    border: none !important;
/*     background: none !important; */
    box-shadow: none !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative !important;
}

/* ヒーロータイトルの特別対策 */
.post_content h2.cvkt-hero-title,
.entry-content h2.cvkt-hero-title,
.post_content .cvkt-hero-title,
.entry-content .cvkt-hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, #fff, #64b5f6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

/* リクルートタイトルの特別対策 */
.post_content h2.cvkt-recruit-title,
.entry-content h2.cvkt-recruit-title,
.post_content .cvkt-recruit-title,
.entry-content .cvkt-recruit-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, #fff, #64b5f6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

/* 代表者名の特別対策 */
.post_content h3.cvkt-message-name,
.entry-content h3.cvkt-message-name,
.post_content .cvkt-message-name,
.entry-content .cvkt-message-name {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #0d47a1 !important;
    margin-bottom: 20px !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    line-height: 1.4 !important;
}

/* FAQ質問の特別対策 */
.post_content h3.cvkt-faq-question,
.entry-content h3.cvkt-faq-question,
.post_content .cvkt-faq-question,
.entry-content .cvkt-faq-question {
    padding: 25px 30px !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    line-height: 1.4 !important;
    width: 100% !important;
}

.post_content .cvkt-faq-question:hover,
.entry-content .cvkt-faq-question:hover {
    background: #f8f9fa !important;
    color: #0d47a1 !important;
}

/* 見出しの干渉防止 */
.post_content .cvkt-section-title::before,
.entry-content .cvkt-section-title::before,
.post_content .cvkt-service-title::before,
.entry-content .cvkt-service-title::before,
.post_content .cvkt-column-title::before,
.entry-content .cvkt-column-title::before,
.post_content .cvkt-hero-title::before,
.entry-content .cvkt-hero-title::before,
.post_content .cvkt-recruit-title::before,
.entry-content .cvkt-recruit-title::before,
.post_content .cvkt-message-name::before,
.entry-content .cvkt-message-name::before,
.post_content .cvkt-faq-question::before,
.entry-content .cvkt-faq-question::before {
    display: none !important;
    content: none !important;
}

/* SWELLのh2, h3スタイル上書き */
.post_content h2.cvkt-section-title,
.entry-content h2.cvkt-section-title,
.post_content h3.cvkt-service-title,
.entry-content h3.cvkt-service-title,
.post_content h3.cvkt-column-title,
.entry-content h3.cvkt-column-title,
.post_content h3.cvkt-message-name,
.entry-content h3.cvkt-message-name,
.post_content h3.cvkt-faq-question,
.entry-content h3.cvkt-faq-question,
.post_content h2.cvkt-hero-title,
.entry-content h2.cvkt-hero-title,
.post_content h2.cvkt-recruit-title,
.entry-content h2.cvkt-recruit-title {
    position: relative !important;
    border: none !important;
/*変更     background: none !important; */
    border-radius: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* CVKTクラス全般の強制リセット */
[class*="cvkt-"] {
    border: none !important;
    box-shadow: none !important;
}

[class*="cvkt-"]:before,
[class*="cvkt-"]:after {
    border: none !important;
    box-shadow: none !important;
}

/* コンテナの干渉防止 */
.post_content .cvkt-container,
.entry-content .cvkt-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* ボタンの干渉防止 */
.post_content .cvkt-btn,
.entry-content .cvkt-btn {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.post_content .cvkt-btn-primary,
.entry-content .cvkt-btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    color: #fff !important;
}

.post_content .cvkt-btn-secondary,
.entry-content .cvkt-btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.post_content .cvkt-btn-outline,
.entry-content .cvkt-btn-outline {
    background: transparent !important;
    color: #0d47a1 !important;
    border: 2px solid #0d47a1 !important;
}

/* 段落の干渉防止 */
.post_content .cvkt-about-description,
.entry-content .cvkt-about-description,
.post_content .cvkt-hero-description,
.entry-content .cvkt-hero-description,
.post_content .cvkt-service-description,
.entry-content .cvkt-service-description,
.post_content .cvkt-column-summary,
.entry-content .cvkt-column-summary,
.post_content .cvkt-message-description,
.entry-content .cvkt-message-description,
.post_content .cvkt-recruit-description,
.entry-content .cvkt-recruit-description {
    margin-bottom: 20px !important;
    line-height: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

/* リストの干渉防止 */
.post_content .cvkt-nav-list,
.entry-content .cvkt-nav-list,
.post_content .cvkt-footer-links ul,
.entry-content .cvkt-footer-links ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* テーブルの干渉防止 */
.post_content .cvkt-company-table,
.entry-content .cvkt-company-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 0 !important;
}

.post_content .cvkt-company-table th,
.entry-content .cvkt-company-table th,
.post_content .cvkt-company-table td,
.entry-content .cvkt-company-table td {
    border: none !important;
    padding: 20px 25px !important;
    text-align: left !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

/* セクション間隔の確保 */
.post_content section[class*="cvkt-section"],
.entry-content section[class*="cvkt-section"] {
    margin-bottom: 0 !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* FAQアイコンの特別対策 */
.post_content .cvkt-faq-icon,
.entry-content .cvkt-faq-icon {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    color: #0d47a1 !important;
    transition: transform 0.3s ease !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

/* SWELLのメディアクエリ干渉防止 */
@media (max-width: 768px) {
    .post_content .cvkt-section-title,
    .entry-content .cvkt-section-title {
        font-size: 2rem !important;
    }
    
    .post_content .cvkt-hero-title,
    .entry-content .cvkt-hero-title {
        font-size: 2.5rem !important;
    }
    
    .post_content .cvkt-recruit-title,
    .entry-content .cvkt-recruit-title {
        font-size: 2.2rem !important;
    }
    
    .post_content .cvkt-faq-question,
    .entry-content .cvkt-faq-question {
        padding: 20px !important;
        font-size: 1rem !important;
    }
}


.l-content{
	padding-top:0px!important;
}


/* ===============================
   全画面背景表示対応CSS
   Hero・Recruitセクション用
   =============================== */

/* Hero Section 全画面対応 */
.post_content .cvkt-section-hero,
.entry-content .cvkt-section-hero,
.cvkt-section-hero {
    /* 基本設定 */
    height: 100vh !important;
    min-height: 100vh !important;
    width: 100vw !important;
    
    /* コンテナから抜け出す */
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    
    /* 背景設定 */
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 50%, #42a5f5 100%) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    
    /* レイアウト */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* その他 */
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 0 !important;
}

/* Hero オーバーレイ */
.post_content .cvkt-hero-overlay,
.entry-content .cvkt-hero-overlay,
.cvkt-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(13, 71, 161, 0.3) !important;
    z-index: 1 !important;
}

/* Hero コンテンツ */
.post_content .cvkt-hero-content,
.entry-content .cvkt-hero-content,
.cvkt-hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #fff !important;
    padding: 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* Recruit Section 全画面対応 */
.post_content .cvkt-section-recruit,
.entry-content .cvkt-section-recruit,
.cvkt-section-recruit {
    /* 基本設定 */
    min-height: 70vh !important;
    width: 100vw !important;
    
    /* コンテナから抜け出す */
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    
    /* 背景設定 */
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9), rgba(66, 165, 245, 0.9)) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    
    /* レイアウト */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* パディング */
    padding: 120px 0 !important;
    
    /* その他 */
    text-align: center !important;
    color: #fff !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Recruit オーバーレイ */
.post_content .cvkt-recruit-overlay,
.entry-content .cvkt-recruit-overlay,
.cvkt-recruit-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(13, 71, 161, 0.2) !important;
    z-index: 1 !important;
}

/* Recruit コンテンツ */
.post_content .cvkt-recruit-content,
.entry-content .cvkt-recruit-content,
.cvkt-recruit-content {
    position: relative !important;
    z-index: 2 !important;
    padding: 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* コンテナの調整 */
.cvkt-section-hero .cvkt-container,
.cvkt-section-recruit .cvkt-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .post_content .cvkt-section-hero,
    .entry-content .cvkt-section-hero,
    .cvkt-section-hero {
        height: 100vh !important;
        min-height: 100vh !important;
        background-attachment: scroll !important; /* スマホでfixedを無効化 */
    }
    
    .post_content .cvkt-section-recruit,
    .entry-content .cvkt-section-recruit,
    .cvkt-section-recruit {
        min-height: 60vh !important;
        background-attachment: scroll !important; /* スマホでfixedを無効化 */
        padding: 80px 0 !important;
    }
    
    .post_content .cvkt-hero-content,
    .entry-content .cvkt-hero-content,
    .cvkt-hero-content,
    .post_content .cvkt-recruit-content,
    .entry-content .cvkt-recruit-content,
    .cvkt-recruit-content {
        padding: 15px !important;
    }
}

/* タブレット対応 */
@media (max-width: 1024px) and (min-width: 769px) {
    .post_content .cvkt-section-hero,
    .entry-content .cvkt-section-hero,
    .cvkt-section-hero {
        height: 100vh !important;
        background-attachment: scroll !important;
    }
    
    .post_content .cvkt-section-recruit,
    .entry-content .cvkt-section-recruit,
    .cvkt-section-recruit {
        min-height: 65vh !important;
        background-attachment: scroll !important;
    }
}

/* 超小型デバイス対応 */
@media (max-width: 480px) {
    .post_content .cvkt-section-hero,
    .entry-content .cvkt-section-hero,
    .cvkt-section-hero {
        height: 100vh !important;
        min-height: 600px !important; /* 最小高さを確保 */
    }
    
    .post_content .cvkt-section-recruit,
    .entry-content .cvkt-section-recruit,
    .cvkt-section-recruit {
        min-height: 50vh !important;
        padding: 60px 0 !important;
    }
}

/* 横向きスマホ対応 */
@media (max-height: 500px) and (orientation: landscape) {
    .post_content .cvkt-section-hero,
    .entry-content .cvkt-section-hero,
    .cvkt-section-hero {
        height: 100vh !important;
        min-height: 400px !important;
    }
    
    .post_content .cvkt-section-recruit,
    .entry-content .cvkt-section-recruit,
    .cvkt-section-recruit {
        min-height: 100vh !important;
        padding: 40px 0 !important;
    }
}

/* 高解像度ディスプレイ対応 */
@media (min-width: 1920px) {
    .post_content .cvkt-section-hero,
    .entry-content .cvkt-section-hero,
    .cvkt-section-hero,
    .post_content .cvkt-section-recruit,
    .entry-content .cvkt-section-recruit,
    .cvkt-section-recruit {
        background-attachment: fixed !important;
    }
}

/* WordPressブロックエディタ対応 */
.wp-block .cvkt-section-hero,
.wp-block .cvkt-section-recruit {
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    width: 100vw !important;
}

/* SWELLコンテンツ幅制限の解除 */
.post_content .cvkt-section-hero,
.entry-content .cvkt-section-hero,
.post_content .cvkt-section-recruit,
.entry-content .cvkt-section-recruit {
    max-width: none !important;
}

/* 背景画像を後から設定する場合の準備 */
.cvkt-section-hero.has-background {
    background-image: url('あなたの画像URL') !important;
}

.cvkt-section-recruit.has-background {
    background-image: url('あなたの画像URL') !important;
}



/* Hero Section 背景画像 */
.post_content .cvkt-section-hero,
.entry-content .cvkt-section-hero,
.cvkt-section-hero {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.7), rgba(25, 118, 210, 0.7)), 
                url('http://www.cvtec.co.jp/wp-content/uploads/2025/07/cvtech-mv-scaled.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* About Section 背景画像 */
.post_content .cvkt-about-bg-image,
.entry-content .cvkt-about-bg-image,
.cvkt-about-bg-image {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.6), rgba(66, 165, 245, 0.6)), 
                url('http://www.cvtec.co.jp/wp-content/uploads/2025/07/cvtech-office.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.3s ease !important;
    border-radius: 20px !important;
}

/* Recruit Section 背景画像 */
.post_content .cvkt-section-recruit,
.entry-content .cvkt-section-recruit,
.cvkt-section-recruit {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.8), rgba(66, 165, 245, 0.8)), 
                url('http://www.cvtec.co.jp/wp-content/uploads/2025/07/cvtech-saiyou.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* スマホ・タブレット対応（background-attachment: fixedの問題対策） */
@media (max-width: 1024px) {
    .post_content .cvkt-section-hero,
    .entry-content .cvkt-section-hero,
    .cvkt-section-hero {
        background: linear-gradient(135deg, rgba(13, 71, 161, 0.7), rgba(25, 118, 210, 0.7)), 
                    url('http://www.cvtec.co.jp/wp-content/uploads/2025/07/cvtech-mv-scaled.jpg') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important; /* スマホではscrollに変更 */
    }
    
    .post_content .cvkt-section-recruit,
    .entry-content .cvkt-section-recruit,
    .cvkt-section-recruit {
        background: linear-gradient(135deg, rgba(13, 71, 161, 0.8), rgba(66, 165, 245, 0.8)), 
                    url('http://www.cvtec.co.jp/wp-content/uploads/2025/07/cvtech-saiyou.png') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important; /* スマホではscrollに変更 */
    }
}

/* 高画質ディスプレイ対応 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .post_content .cvkt-section-hero,
    .entry-content .cvkt-section-hero,
    .cvkt-section-hero {
        background-image: linear-gradient(135deg, rgba(13, 71, 161, 0.7), rgba(25, 118, 210, 0.7)), 
                         url('http://www.cvtec.co.jp/wp-content/uploads/2025/07/cvtech-mv-scaled.jpg') !important;
    }
    
    .post_content .cvkt-about-bg-image,
    .entry-content .cvkt-about-bg-image,
    .cvkt-about-bg-image {
        background-image: linear-gradient(135deg, rgba(13, 71, 161, 0.6), rgba(66, 165, 245, 0.6)), 
                         url('http://www.cvtec.co.jp/wp-content/uploads/2025/07/cvtech-office.png') !important;
    }
    
    .post_content .cvkt-section-recruit,
    .entry-content .cvkt-section-recruit,
    .cvkt-section-recruit {
        background-image: linear-gradient(135deg, rgba(13, 71, 161, 0.8), rgba(66, 165, 245, 0.8)), 
                         url('http://www.cvtec.co.jp/wp-content/uploads/2025/07/cvtech-saiyou.png') !important;
    }
}

/* Aboutセクションのホバーエフェクト保持 */
.post_content .cvkt-about-image:hover .cvkt-about-bg-image,
.entry-content .cvkt-about-image:hover .cvkt-about-bg-image,
.cvkt-about-image:hover .cvkt-about-bg-image {
    transform: scale(1.05) !important;
}

/* 画像読み込み最適化 */
.cvkt-section-hero,
.cvkt-about-bg-image,
.cvkt-section-recruit {
    will-change: background-position !important;
}

/* 低速回線対応（画像読み込み前の背景色） */
.cvkt-section-hero {
    background-color: #0d47a1 !important;
}

.cvkt-about-bg-image {
    background-color: #e3f2fd !important;
}

.cvkt-section-recruit {
    background-color: #1976d2 !important;
}

/* 画像読み込み失敗時のフォールバック */
.cvkt-section-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 50%, #42a5f5 100%);
    z-index: -1;
}

.cvkt-section-recruit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* 印刷時の背景画像非表示 */
@media print {
    .cvkt-section-hero,
    .cvkt-about-bg-image,
    .cvkt-section-recruit {
        background-image: none !important;
        background-color: #f5f5f5 !important;
    }
}



/* ヒーロータイトルの確実な表示 */
.post_content h2.cvkt-hero-title,
.entry-content h2.cvkt-hero-title,
.post_content .cvkt-hero-title,
.entry-content .cvkt-hero-title,
.cvkt-hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-align: center !important;
    line-height: 1.2 !important;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .cvkt-hero-title {
        font-size: 2.5rem !important;
    }
}


/* ここからニュースセクション */
.news-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-right: 15px;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    background-color: #1b3d7c;
    min-width: 100px;
    text-align: center;
}



.news-text {
    margin-left: 20px;
}

