@charset "utf-8";

/*// ==========================================
   1. ページ共通・サブヒーロー
   ========================================== //*/
.sub-hero {
    background-color: var(--bg-cream);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #eae5e1;
}

.section-intro {
    font-size: 1rem;
    color: var(--text-sub);
    margin-top: 15px;
    line-height: 1.8;
}

/*// ==========================================
   2. ラインナップ・業種別ブロック
   ========================================== //*/
.lineup-section {
    padding: 80px 0;
}

.industry-block {
    background-color: var(--white);
    border: 1px solid #ebdcd0;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(74, 67, 63, 0.02);
    display: flex;
    gap: 40px;
}

.industry-block:last-child {
    margin-bottom: 0;
}

/* 準備中の業種ブロックを少し薄くする */
.industry-block.coming-soon {
    opacity: 0.85;
    background-color: #faf9f8;
}

/* 左側：サムネイル画像 */
.industry-visual {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumbnail-dummy {
    width: 100%;
    height: 240px;
    background-color: #f3efe9;
    border: 2px dashed #ebdcd0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sub);
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-thumbnail {
    width: 100%;
    height: 240px;
    border: 1px solid #ebdcd0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(74, 67, 63, 0.04);
    background-color: #fcfbfa;
}

.industry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.industry-thumbnail:hover img {
    transform: scale(1.04);
}

.thumbnail-dummy span {
    z-index: 1;
    background: rgba(255,255,255,0.9);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid #ebdcd0;
}

.industry-info h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.industry-desc {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* 右側：4プラン比較エリア */
.plans-area {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.plan-mini-card {
    border: 1px solid #e8e3df;
    border-radius: 12px;
    padding: 20px;
    background-color: #fdfdfd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, border-color 0.3s;
}

.plan-mini-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.plan-mini-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e8e3df;
    padding-bottom: 8px;
}

.plan-mini-name {
    font-weight: bold;
    font-size: 0.95rem;
    color: var(--text-main);
}

.plan-mini-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: bold;
}

.plan-mini-features {
    font-size: 0.78rem;
    color: var(--text-sub);
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 15px;
    list-style-type: none;
}

.plan-mini-features li {
    position: relative;
    padding-left: 12px;
}

.plan-mini-features li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.btn-demo-link {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
    transition: background-color 0.3s;
}

.btn-demo-link:hover {
    background-color: #bfa030;
    opacity: 1;
}

/* 準備中のプラン */
.plan-mini-card.coming {
    background-color: #fafafa;
    border-color: #ebdcd0;
    opacity: 0.7;
}

.btn-demo-link.disabled {
    background-color: #dcd7d2;
    color: #9c9792;
    box-shadow: none;
    cursor: default;
    pointer-events: none;
}

/*// ==========================================
   3. レスポンシブ対応
   ========================================== //*/

/* 【TB】 1024px 以下 */
@media screen and (max-width: 1024px) {
    .industry-block {
        flex-direction: column;
        padding: 30px;
    }
    
    .industry-visual {
        max-width: 100%;
        flex-direction: row;
        align-items: center;
    }
    
    .thumbnail-dummy,
    .industry-thumbnail {
        width: 180px;
        height: 120px;
        flex-shrink: 0;
    }
}

/* 【SM】 768px 以下 */
@media screen and (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-visual {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .thumbnail-dummy,
    .industry-thumbnail {
        width: 100%;
        height: 180px;
    }
}/* 【SP】 479px 以下 */
@media screen and (max-width: 479px) {
    .industry-block {
        padding: 20px;
    }
}

/*// ==========================================
   4. デモ搭載機能ラベルのカスタマイズ
   ========================================== //*/
.plan-mini-features li.feature-label-title {
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 10px;
    padding-left: 0;
}
.plan-mini-features li.feature-label-title::before {
    content: none;
}
.plan-mini-features li.feature-label-item {
    padding-left: 15px;
    color: var(--text-main);
}
.plan-mini-features li.feature-label-item::before {
    content: "✔";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 5px;
}
