/* =============================================
   codeit-jps.css
   Code-It JPS 製品詳細ページ専用スタイル
   ============================================= */

/* Code-It JPS 製品詳細ページ専用スタイルじゃ */

/* パンくずリスト */
.jps-breadcrumb {
    font-size: 0.85rem;
}
.jps-breadcrumb a {
    color: #6c7a8c;
    text-decoration: none;
}
.jps-breadcrumb a:hover {
    color: var(--btn-color);
}
.jps-breadcrumb .current {
    color: #071A33;
    font-weight: 500;
}

/* ヒーローエリア */
.jps-hero {
    padding: 14px 0 32px;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0.35) 55%, rgba(255,255,255,0) 72%),
        url('../../images/codeit-jps-hero.png');
    background-repeat: no-repeat, no-repeat;
    background-position: center, right center;
    background-size: cover, cover;
    min-height: 380px;
}
@media (max-width: 991.98px) {
    .jps-hero {
        min-height: 0;
        background-image:
            linear-gradient(180deg, rgba(255,255,255,0.95) 55%, rgba(255,255,255,0.6) 80%, rgba(255,255,255,0.15) 100%),
            url('../../images/codeit-jps-hero.png');
        background-position: center, center 30%;
        background-size: cover, cover;
    }
}
.jps-product-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #071A33;
    font-size: 3.7rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}
.jps-product-name sup {
    font-size: 1.1rem;
    top: -1.6em;
}
.jps-product-subname {
    font-weight: 700;
    color: #071A33;
    font-size: 1.5rem;
    margin-top: 6px;
    margin-bottom: 0;
}
.jps-en-badge {
    display: inline-block;
    background-color: #071A33;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-family: 'Roboto', sans-serif;
    padding: 8px 16px;
    border-radius: 8px;
    margin: 6px 0 14px;
}
.jps-tagline {
    font-weight: 700;
    color: #071A33;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.jps-desc {
    color: #444444;
    font-size: 0.95rem;
    line-height: 1.8;
}
.jps-patent-badge {
    display: inline-block;
    border: 1px solid #c9d3e0;
    color: #071A33;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 4px;
    margin-top: 14px;
}

/* セクション見出し（共通CSSに product-page-title が存在しなかったため、白文字が白背景に埋もれていた問題を修正） */
.jps-section-title {
    font-weight: 700;
    color: #071A33;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 14px;
    display: inline-block;
}
.jps-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background-color: #f0b429;
}

/* 主な用途・設置場所 */
.jps-usage-section {
    background-color: #ffffff;
    padding: 40px 0 30px;
}
.jps-usage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071A33;
    font-size: 2.2rem;
}
/* 実写アイコン画像用（お客様提供の線画イラスト） */
.jps-usage-icon-img {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jps-usage-icon-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.jps-usage-label {
    font-size: 0.85rem;
    color: #333333;
    line-height: 1.5;
}
.jps-usage-note {
    font-size: 0.8rem;
    color: #6c7a8c;
}

/* 特徴4カラム */
.jps-feature-section {
    background-color: #f5f7fa;
    padding: 40px 0;
}
.jps-feature-card {
    height: 100%;
}
.jps-feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #071A33;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 1.2rem;
}
.jps-feature-icon-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jps-feature-icon-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.jps-feature-title {
    font-weight: 700;
    color: #071A33;
    font-size: 1rem;
    margin: 0;
}
.jps-feature-card ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
}
.jps-feature-card ul li {
    font-size: 0.85rem;
    color: #444444;
    line-height: 1.6;
    padding-left: 1em;
    position: relative;
    margin-bottom: 4px;
}
.jps-feature-card ul li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* 下部バナー */
.jps-bottom-banner {
    padding: 40px 0 50px;
}
.jps-catalog-box {
    background-color: #071A33;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 24px 24px;
    height: 100%;
}
.jps-contact-box {
    background-color: #ffffff;
    border: 1px solid #e0e6ee;
    border-radius: 8px;
    padding: 24px 24px;
    height: 100%;
}
.jps-icon-square {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
}
.jps-catalog-box .jps-icon-square {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}
.jps-contact-box .jps-icon-square {
    background-color: #f0f4f8;
    color: #071A33;
}
.jps-icon-plain {
    background-color: transparent !important;
    font-size: 2.1rem;
}
.jps-tel-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #071A33;
}
