@charset "utf-8";

/* 下層共通設定（oem.css等と共通） */
.lower-page .page-header {
    background-color: #162d50;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}
.lower-page .page-header .en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}
.lower-page .page-header h2 {
    font-size: 28px;
    font-weight: 500;
}

/* 各セクションの余白 */
.product-section {
    padding: 80px 0 20px;
}

/* 共通セクションタイトル（style.cssに定義がない場合の補完） */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title span {
    font-size: 12px;
    color: #162d50;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
    font-family: sans-serif;
    font-weight: bold;
}
.section-title h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #333;
}

/* 商品準備中表示 */
.coming-soon {
    margin-top: 30px;
    padding: 80px 0;
    text-align: center;
    background: #f9f9f9;
    border: 1px dashed #ddd;
}
.coming-soon p {
    font-size: 15px;
    color: #999;
}

/* カタログリスト（画像イメージの再現） */
.catalog-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    text-align: center;
}
.catalog-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #333;
    letter-spacing: 0.05em;
}

/* カプセル型ボタン */
.btn-pdf {
    display: inline-block;
    border: 1px solid #333;
    color: #333 !important;
    padding: 8px 60px;
    border-radius: 50px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    background: #fff;
    font-family: sans-serif;
}
.btn-pdf:hover {
    background: #333;
    color: #fff !important;
    transform: translateY(-2px);
}

/* 下部バナー（oem.cssと同じ設定を想定） */
.contact-banner {
    margin: 100px 0;
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}
.contact-banner p {
    margin-bottom: 30px;
    font-size: 16px;
}
.btn-contact {
    display: inline-block;
    background-color: #162d50;
    color: #fff !important;
    padding: 15px 60px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-contact:hover {
    opacity: 0.8;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .catalog-list { gap: 60px; }
    .catalog-item h3 { font-size: 18px; }
    .btn-pdf { width: 100%; max-width: 280px; }
}