@charset "UTF-8";

/* ==================================================
   1. TOP PAGE (index.html)
================================================== */
.slider-container { width: 100%; height: 480px; overflow: hidden; position: relative; background-color: #000000; }
.slider-wrapper { display: flex; height: 100%; }
.slider-wrapper img { height: 100%; object-fit: cover; object-position: center; }
.slider-text { position: absolute; bottom: 40px; left: 0; width: 100%; text-align: center; color: #ffffff; font-size: 1.8rem; font-weight: 700; letter-spacing: 0.05em; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

.philosophy-section { padding: 100px 0; background-color: #ffffff; }
.philosophy-container { display: flex; justify-content: center; max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.philosophy-item { flex: 1; padding: 0 50px; text-align: center; border-right: 1px solid #e5e5e5; }
.philosophy-item:last-child { border-right: none; }
.phil-title { font-size: 2.8rem; font-weight: 300; margin-bottom: 25px; text-transform: uppercase; color: #000000; letter-spacing: 0.05em; }
.phil-text { font-size: 0.95rem; line-height: 2; color: #555555; }

.service-section { padding: 100px 0; background-color: #fcfcfc; }
.service-container { display: flex; max-width: 1200px; margin: 0 auto; padding: 0 40px; align-items: center; gap: 60px; }
.service-image { flex: 1.2; overflow: hidden; border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.service-slider { width: 100%; overflow: hidden; }
.service-slider-wrapper { display: flex; }
.service-slide { position: relative; }
.service-slide img { width: 100%; height: 380px; object-fit: cover; display: block; }
.service-image-caption { padding: 15px; background-color: #ffffff; border-top: 1px solid #eeeeee; }
.service-image-caption h3 { font-size: 1.05rem; font-weight: 700; color: #000000; margin-bottom: 4px; }
.service-image-caption p { font-size: 0.85rem; color: #777777; }
.service-content { flex: 1; }
.service-title-area { display: flex; align-items: baseline; gap: 15px; margin-bottom: 25px; }
.service-title { font-size: 2.8rem; font-weight: 900; color: #000000; letter-spacing: 0.05em; }
.service-subtitle { font-size: 0.85rem; font-weight: 700; color: #888888; }
.service-description { font-size: 1rem; line-height: 1.9; margin-bottom: 35px; color: #444444; }
.service-button { display: inline-block; background-color: #000000; color: #ffffff; text-decoration: none; padding: 15px 40px; font-weight: 700; border-radius: 4px; letter-spacing: 0.05em; transition: all 0.3s ease; }
.service-button:hover { background-color: #333333; transform: translateY(-2px); }

.news-section { padding: 100px 0; background-color: #ffffff; }
.news-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; border-bottom: 1px solid #eeeeee; padding-bottom: 20px; }
.news-title-area { display: flex; align-items: baseline; }
.news-title { font-size: 2.5rem; font-weight: 900; color: #000000; }
.news-subtitle { font-size: 0.85rem; color: #888888; margin-left: 15px; }
.news-more { text-decoration: none; color: #000000; font-size: 0.9rem; font-weight: 700; border-bottom: 2px solid #000000; padding-bottom: 4px; transition: opacity 0.3s; }
.news-more:hover { opacity: 0.6; }

/* 🛡️ 修正ポイント1: トップとニュースページ(#news-list)の両方に3列グリッドを適用 */
.news-grid, #news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card { cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.news-card:hover { transform: translateY(-4px); }
.news-image { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 4px; background-color: #f5f5f5; margin-bottom: 15px; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover img { transform: scale(1.05); }
.news-info { padding: 5px 0; }
.news-date { font-size: 0.85rem; color: #888888; }

/* 🛡️ 修正ポイント2: タイトルの巨大化を防ぎ、2行制限をかける */
.news-card-title, #news-list h3, #news-list .title { 
    font-size: 1rem; 
    margin-top: 8px; 
    line-height: 1.6; 
    font-weight: 700; 
    color: #111111; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-section { padding: 120px 0; background-color: #fcfcfc; overflow: hidden; }
.about-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.about-header { margin-bottom: 50px; }
.about-main-title { font-size: 4.5rem; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #000000; }
.about-content { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; }
.about-text-area { flex: 1; }
.about-description { font-size: 1rem; line-height: 2; margin-bottom: 40px; color: #333333; }
.about-button { display: inline-block; background-color: #000000; color: #ffffff; text-decoration: none; padding: 15px 50px; font-weight: 700; border-radius: 4px; letter-spacing: 0.05em; transition: all 0.3s ease; }
.about-button:hover { background-color: #333333; transform: translateY(-2px); }
.about-image-area { flex: 1.3; border-radius: 6px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.about-image-area img { width: 100%; height: auto; display: block; }

.banner-section { display: flex; width: 100%; height: 380px; }
.banner-item { flex: 1; position: relative; background-size: cover; background-position: center; overflow: hidden; }
.contact-banner { background-image: url('WPG_OS.assets/contact_bg.jpg'); }
.banner-overlay { width: 100%; height: 100%; background: rgba(0, 0, 0, 0.55); display: flex; align-items: center; justify-content: center; transition: background 0.4s ease; }
.banner-item:hover .banner-overlay { background: rgba(0, 0, 0, 0.4); }
.banner-content { text-align: center; color: #ffffff; }
.banner-title-area { display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.banner-title { font-size: 2.2rem; font-weight: 900; }
.banner-subtitle { font-size: 0.85rem; color: #cccccc; }
.banner-text { font-size: 0.95rem; margin: 15px 0 30px; line-height: 1.8; color: #dddddd; }
.banner-white-button { display: inline-block; background-color: #ffffff; color: #000000; text-decoration: none; padding: 14px 50px; font-weight: 700; border-radius: 4px; transition: all 0.3s ease; }
.banner-white-button:hover { background-color: #f0f0f0; transform: translateY(-2px); }

/* ==================================================
   2. ABOUT (about.html)
================================================== */
.about-main-container { max-width: 1000px; margin: 0 auto; padding: 90px 20px 120px; }
.section-title { font-size: 0.85rem; font-weight: 900; color: #888888; margin-bottom: 40px; letter-spacing: 0.2em; text-transform: uppercase; }
.about-detail-flex { display: flex; align-items: center; gap: 60px; margin-bottom: 120px; }
.about-detail-text { flex: 1; }
.about-detail-image { flex: 1; border-radius: 6px; overflow: hidden; }
.about-detail-image img { width: 100%; height: auto; filter: grayscale(100%); transition: filter 0.5s ease; }
.about-detail-image:hover img { filter: grayscale(0%); }
.message-lead { font-size: 2.2rem; font-weight: 900; line-height: 1.4; margin-bottom: 25px; letter-spacing: 0.02em; }
.message-body { font-size: 0.95rem; line-height: 2; color: #444444; }
.company-info-section { margin-bottom: 80px; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td { padding: 22px 0; border-bottom: 1px solid #eeeeee; text-align: left; }
.company-table th { width: 25%; font-size: 0.9rem; font-weight: 700; color: #666666; }
.company-table td { font-size: 0.95rem; color: #111111; line-height: 1.8; }

/* ==================================================
   3. CONTACT (contact.html)
================================================== */
.contact-main-container { max-width: 1100px; margin: 0 auto; padding: 90px 20px 140px; }
.contact-flex { display: flex; gap: 80px; align-items: flex-start; }
.contact-info { flex: 1; }
.contact-info-title { font-size: 2rem; font-weight: 900; margin-bottom: 20px; letter-spacing: 0.05em; color: #000000; }
.contact-info-text { font-size: 0.95rem; line-height: 1.9; color: #666666; margin-bottom: 40px; }
.contact-address { padding: 25px; background-color: #fdfdfd; border: 1px solid #eeeeee; border-radius: 6px; }
.contact-address p { font-size: 0.9rem; line-height: 1.8; color: #333333; margin: 0; }
.contact-form-area { flex: 1.4; background-color: #ffffff; }
.form-group { margin-bottom: 28px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; color: #111111; }
.form-group label span { font-size: 0.7rem; background-color: #000000; color: #ffffff; padding: 2px 6px; border-radius: 2px; margin-left: 8px; vertical-align: middle; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; background-color: #fcfcfc; border: 1px solid #dddddd; border-radius: 4px; font-family: inherit; font-size: 0.95rem; color: #111111; outline: none; box-sizing: border-box; transition: all 0.3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #000000; background-color: #ffffff; box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
.form-privacy { margin-top: 35px; text-align: center; }
.form-privacy label { font-size: 0.85rem; color: #444444; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.form-privacy input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; }
.form-privacy a { color: #000000; font-weight: 700; text-decoration: underline; }
.form-submit { margin-top: 30px; text-align: center; }
.submit-button { background-color: #000000; color: #ffffff; border: none; padding: 18px 70px; font-size: 0.95rem; font-weight: 700; border-radius: 4px; letter-spacing: 0.05em; cursor: pointer; transition: all 0.3s ease; }
.submit-button:hover { background-color: #333333; transform: translateY(-2px); }

/* ==================================================
   4. SERVICE (service.html)
================================================== */
.service-main-container { max-width: 1200px; margin: 0 auto; padding: 90px 20px 140px; }
.service-intro { text-align: center; margin-bottom: 100px; }
.service-intro-lead { font-size: 2rem; font-weight: 900; margin-bottom: 20px; line-height: 1.5; letter-spacing: 0.02em; }
.service-intro-text { font-size: 0.95rem; line-height: 1.9; color: #666666; }
.service-detail-list { display: flex; flex-direction: column; gap: 120px; }
.service-item { display: flex; align-items: center; gap: 70px; }
.service-item.reverse { flex-direction: row-reverse; }
.service-item-image { flex: 1.2; border-radius: 6px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.service-item-image img { width: 100%; height: 420px; object-fit: cover; filter: grayscale(15%); transition: filter 0.4s ease, transform 0.4s ease; }
.service-item:hover .service-item-image img { filter: grayscale(0%); transform: scale(1.02); }
.service-item-text { flex: 1; }
.service-number { display: block; font-size: 3.5rem; font-weight: 900; color: #f0f0f0; line-height: 1; margin-bottom: -15px; letter-spacing: -0.03em; }
.service-name { font-size: 2rem; font-weight: 900; margin-bottom: 5px; letter-spacing: -0.01em; color: #000000; }
.service-ruby { font-size: 0.85rem; font-weight: 700; color: #888888; margin-bottom: 25px; letter-spacing: 0.05em; }
.service-description { font-size: 0.95rem; line-height: 1.9; color: #444444; margin-bottom: 25px; }
.service-tags { display: flex; flex-wrap: wrap; list-style: none; gap: 8px; }
.service-tags li { font-size: 0.75rem; font-weight: 700; background-color: #f4f4f4; padding: 6px 14px; color: #555555; border-radius: 3px; }

/* ==================================================
   5. NEWS (news.html)
================================================== */
.news-main-container { background-color: #fafafa; width: 100%; }
.news-wrapper { max-width: 1200px; margin: 0 auto; padding: 80px 20px 120px; box-sizing: border-box; }
#loading { text-align: center; font-weight: 700; color: #888888; font-size: 1.1rem; margin: 60px 0; }
.news-img-box { width: 100%; height: 200px; background-color: #f5f5f5; overflow: hidden; }
.news-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-content { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; gap: 12px; font-size: 0.85rem; color: #888888; margin-bottom: 12px; align-items: center; }
.news-category { background-color: #000000; color: #ffffff; padding: 3px 10px; border-radius: 3px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; }

/* ==================================================
   6. SUSTAINABILITY & PRIVACY & RECRUIT
================================================== */
.sus-main-container { max-width: 1000px; margin: 0 auto; padding: 90px 20px 140px; }
.sus-intro { text-align: center; margin-bottom: 90px; }
.sus-intro-title { font-size: 2.2rem; font-weight: 900; margin-bottom: 25px; letter-spacing: 0.05em; }
.sus-intro-text { font-size: 0.95rem; line-height: 2; color: #444444; }
.sus-item { display: flex; gap: 40px; padding: 45px 0; border-top: 2px solid #000000; }
.sus-item:last-child { border-bottom: 2px solid #000000; }
.sus-item-num { font-size: 3rem; font-weight: 900; color: #dddddd; line-height: 1; }
.sus-item-content { flex: 1; }
.sus-item-title { font-size: 1.35rem; font-weight: 900; margin-bottom: 15px; color: #000000; }
.sus-item-desc { font-size: 0.95rem; line-height: 1.9; color: #444444; }

.privacy-main-container { max-width: 800px; margin: 0 auto; padding: 100px 40px 150px; }
.privacy-lead { font-size: 1rem; line-height: 1.8; margin-bottom: 60px; color: #333; }
.privacy-item { margin-bottom: 50px; }
.privacy-item-title { font-size: 1.25rem; font-weight: bold; border-left: 4px solid #000; padding-left: 15px; margin-bottom: 20px; }
.privacy-contact-box { margin-top: 20px; padding: 30px; background-color: #f9f9f9; border: 1px solid #eee; }

.recruit-main-container { max-width: 1000px; margin: 0 auto; padding: 90px 20px 140px; }
.recruit-message { text-align: center; margin-bottom: 110px; }
.recruit-message-title { font-size: 2.8rem; font-weight: 900; line-height: 1.3; margin-bottom: 30px; }
.recruit-message-text { font-size: 1rem; line-height: 2; color: #555555; }

.recruit-jobs { margin-bottom: 110px; }
.job-card {
    display: grid;
    grid-template-columns: minmax(180px, 240px) 1fr auto;
    align-items: center;
    gap: 24px 32px;
    padding: 35px 20px;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}
.job-card:hover { background-color: #fcfcfc; padding-left: 30px; }
.job-info { min-width: 0; }
.job-title { font-size: 1.15rem; font-weight: 900; line-height: 1.4; margin-bottom: 6px; color: #111111; }
.job-category { font-size: 0.8rem; color: #888888; letter-spacing: 0.04em; }
.job-desc { font-size: 0.9rem; line-height: 1.8; color: #555555; min-width: 0; }
.job-link {
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
    color: #000000;
    font-size: 0.85rem;
    font-weight: 700;
    border-bottom: 2px solid #000000;
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
}
.job-link:hover { opacity: 0.55; }

.recruit-flow { margin-top: 20px; }
.flow-container { display: flex; justify-content: space-between; gap: 20px; margin-top: 30px; }
.flow-item { flex: 1; background-color: #f9f9f9; border: 1px solid #eeeeee; border-radius: 6px; padding: 40px 15px 30px; text-align: center; position: relative; }
.flow-num { font-size: 0.75rem; font-weight: 900; color: #ffffff; background-color: #000000; padding: 3px 10px; border-radius: 2px; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); }
.flow-item h4 { font-size: 1rem; font-weight: 900; margin: 8px 0; color: #111111; }
.flow-item p { font-size: 0.8rem; line-height: 1.7; color: #777777; }

/* ==================================================
   7. IR (ir.html)
================================================== */
.ir-main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 90px 20px 140px;
}

.ir-section {
    margin-bottom: 90px;
}

.ir-section:last-child {
    margin-bottom: 0;
}

.ir-message-box {
    padding: 40px 45px;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 6px;
}

.ir-message-text {
    font-size: 0.95rem;
    line-height: 2;
    color: #444444;
    margin: 0;
}

.ir-coming-soon {
    padding: 50px 30px;
    text-align: center;
    background-color: #fcfcfc;
    border: 1px dashed #dddddd;
    border-radius: 6px;
}

.ir-coming-soon p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #666666;
    margin: 0;
}

.ir-library-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.library-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.library-item:hover {
    border-color: #cccccc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.library-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.05em;
}

.library-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.5;
    margin: 0;
}

.library-icon {
    align-self: flex-start;
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    background-color: #000000;
    padding: 4px 10px;
    border-radius: 2px;
}

.ir-table {
    width: 100%;
    border-collapse: collapse;
}

.ir-table th,
.ir-table td {
    padding: 22px 0;
    border-bottom: 1px solid #eeeeee;
    text-align: left;
}

.ir-table th {
    width: 25%;
    font-size: 0.9rem;
    font-weight: 700;
    color: #666666;
}

.ir-table td {
    font-size: 0.95rem;
    color: #111111;
    line-height: 1.8;
}

/* ==================================================
   8. 404 PAGE
================================================== */
.error-container { max-width: 600px; margin: 100px auto; padding: 40px 20px; text-align: center; }
.error-code { font-size: 8rem; font-weight: 900; color: #f0f0f0; line-height: 1; margin-bottom: 10px; }
.error-title { font-size: 1.8rem; font-weight: 700; margin: 0 0 20px 0; letter-spacing: 0.1em; }
.error-message { font-size: 1rem; color: #666666; line-height: 1.8; margin-bottom: 40px; }
.home-btn { display: inline-block; background-color: #000000; color: #ffffff; text-decoration: none; padding: 16px 48px; font-size: 0.95rem; font-weight: 700; border-radius: 4px; transition: all 0.3s ease; }
.home-btn:hover { background-color: #333333; transform: translateY(-2px); }

/* ==================================================
   9. ALL RESPONSIVE (スマホ全般)
================================================== */
@media (max-width: 900px) {
    .service-container, .service-item, .service-item.reverse { flex-direction: column; gap: 40px; }
    
    /* 🛡️ 修正ポイント3: スマホ時の1列対応にも #news-list を追加 */
    .news-grid, #news-list { grid-template-columns: 1fr; }
    
    .about-content, .contact-flex { flex-direction: column; gap: 50px; }
    .about-main-title { font-size: 2.4rem; }
    .ir-library-grid { grid-template-columns: 1fr; }
    .banner-section { flex-direction: column; height: auto; }
    .banner-item { min-height: 280px; }
}

@media (max-width: 768px) {
    .slider-container { height: 280px; }
    .slider-text { bottom: 24px; font-size: 1.15rem; padding: 0 16px; }

    .philosophy-section,
    .service-section,
    .news-section,
    .about-section { padding: 60px 0; }

    .philosophy-container,
    .service-container,
    .news-container,
    .about-container { padding: 0 20px; }

    .philosophy-container, .flow-container, .sus-item { flex-direction: column; }
    .philosophy-item {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        padding: 32px 0;
    }
    .phil-title { font-size: 2rem; }

    .service-title { font-size: 2rem; }
    .service-slide img { height: 240px; }
    .service-item-image img { height: 240px; }
    .service-name { font-size: 1.5rem; }
    .service-number { font-size: 2.5rem; }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .news-title { font-size: 1.8rem; }

    .about-detail-flex { flex-direction: column; gap: 40px; margin-bottom: 70px; }
    .message-lead { font-size: 1.5rem; }

    .about-main-container,
    .contact-main-container,
    .service-main-container,
    .sus-main-container,
    .recruit-main-container,
    .ir-main-container { padding: 50px 16px 80px; }

    .privacy-main-container { padding: 50px 20px 80px; }
    .news-wrapper { padding: 50px 16px 80px; }

    .company-table th, .company-table td,
    .ir-table th, .ir-table td { display: block; width: 100%; }
    .company-table th, .ir-table th { padding-bottom: 6px; }
    .company-table td, .ir-table td { padding-top: 0; }

    .submit-button,
    .service-button,
    .about-button,
    .banner-white-button,
    .home-btn { width: 100%; box-sizing: border-box; text-align: center; }

    .ir-message-box { padding: 24px 18px; }
    .ir-section { margin-bottom: 56px; }

    .service-intro-lead { font-size: 1.4rem; }
    .recruit-message-title { font-size: 1.8rem; }
    .error-code { font-size: 5rem; }
    .job-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 10px;
        padding: 28px 8px;
    }
    .job-card:hover { padding-left: 16px; }
    .job-link { justify-self: start; }

    .news-wrapper > div:not(.news-header):not(#loading) {
        grid-template-columns: 1fr !important;
    }
}

/* ==================================================
   🚨 最終手段：ニュースレイアウト強制補正（クラス名非依存）
================================================== */
/* 1. どんなクラス名・ID名が出力されても強制的にグリッド(3列並び)にする */
.news-wrapper > div:not(.news-header):not(#loading) {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
}

/* 2. カード内の画像が巨大化して画面を占領するのを防ぐ */
.news-wrapper > div:not(.news-header) img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
}

/* 3. どんな見出しタグ（h1〜h6, p, div 等）が来ても文字サイズを強制的に常識的な大きさに縮小 */
.news-wrapper > div:not(.news-header) h1,
.news-wrapper > div:not(.news-header) h2,
.news-wrapper > div:not(.news-header) h3,
.news-wrapper > div:not(.news-header) h4,
.news-wrapper > div:not(.news-header) h5,
.news-wrapper > div:not(.news-header) h6,
.news-wrapper > div:not(.news-header) .title,
.news-wrapper > div:not(.news-header) [class*="title"] {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    font-weight: 700 !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    color: #111111 !important;
    
    /* 2行を超えたら「...」で省略する設定 */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    white-space: normal !important;
}