@charset "UTF-8";

/* 基本リセット */
body {
    font-family: "Noto Sans JP", Arial, sans-serif;
    color: #333; /* 文字色#333 */
    line-height: 1.6;
    margin: 0;
}

/* 画像のレスポンシブ対応 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* ホバーした時に少し薄くする */
a:hover {
    opacity: 0.7;
}

.red{
    background-color: red;
    color: #fff;
    margin-right: 5px;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
}

.green{
    background-color: green;
    color: #fff;
    margin-right: 5px;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
}


/* =========================================
   指定されたCSSコード
   ========================================= */
.page-header {
    /* 下(#666)から上(#ccc)へ薄くなるグラデーション ※指定色のグラデーションに変更済 */
    background: linear-gradient(to top, #e0e0e0 26%, #efefef 48%, #d9d9d9 75%, #bcbcbc 100%);
    padding: 50px 0; /* 少し高さを広げてグラデーションを見やすくしました */
    text-align: center;
    border-bottom: none; /* 下の線はグラデーションと馴染ませるため削除 */
}

.page-header h1 {
    color: #fff; /* 白文字 */
    font-size: 24px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* 文字の影を少し濃くして読みやすく */
}

/* コンテナ */
.container1 {
    max-width: 960px;
    margin: 100px auto;
    padding: 0 20px;
}

/* =========================================
   追加CSSコード
   ========================================= */

/* セクション設定 */
.material-section {
    margin-bottom: 80px;
}

/*ページトップのリンク一覧*/
.menu-flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* 中見出し（タイトル） */
.section-title {
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #0056b3;
    padding-bottom: 2px;
    margin-bottom: 30px;
}

/* 商品概要エリア（架空作成部分） */
.product-overview {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.product-image {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.product-image div {
    text-align: center;
    font-size: 14px;
}

.product-image-flyer {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 530px;
    margin: 0 auto 10px;
}

.product-image-animation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 10px;
}

.product-image-animation img {
    width: 400px
}

.product-image img {
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.product-image-flyer img {
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.product-desc {
    text-align: left;
}

.product-desc-span {
    text-align: center;
    font-size: 14px;
}

.product-desc h3 {
    margin-top: 0;
    pading: 3px;
    background-color:#eef4f9;
    color: #0056b3;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.product-desc p {
    padding: 0 30px;
}


/* 小項目（PDFの不正内容見出し部分） */
.category-header {
    background-color: #eef4f9; /* 薄い青背景 */
    font-size: 16px;
    color: #0056b3; /* 青文字 */
    font-weight: bold;
    padding: 10px 15px;
    margin-top: 40px;
    margin-bottom: 30px;
    border-left: 5px solid #0056b3;
}

.category-desc {
    margin-bottom: 20px;
    font-size: 16px;
}

/* デザイン一覧のグリッドレイアウト（横並び・左揃え） */
.design-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start; /* 左揃え */
    margin-bottom: 40px;
}

.design-item {
    width: 150px; /* デザイン画像の幅目安 */
    text-align: center;
}

.design-item-animation{
    width: 250px; /* デザイン画像の幅目安 */
    text-align: center;
}

.design-item img {
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 5px;
    transition: transform 0.2s;
}

.design-item-animation img {
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 5px;
    transition: transform 0.2s;
}

.design-item img:hover {
    transform: translateY(-5px);
}

.design-item-animation:hover {
    transform: translateY(-5px);
}


.design-item p {
    font-size: 14px;
    color: #0056b3;
    font-weight: bold;
}

/* =========================================
   配信記事・動画用テーブルCSS
   ========================================= */
.table-responsive {
    overflow-x: auto;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.article-table th, 
.article-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
}

.article-table th {
    background-color: #eef4f9; /* 薄い青 */
    color: #0056b3; /* 青文字 */
    font-weight: bold;
    white-space: nowrap;
}

.article-table .col-title {
    width: 35%; 
    font-size: 16px;
}

.article-table .col-desc { 
    width: 60%;
    font-size: 16px;
}

.article-table .col-link {
    width: 15%;
    font-size: 16px;
}


.article-title {
    font-weight: bold;
    color: #0056b3;
}

.article-link{
    text-decoration: none;
}

.article-btn-cell {
    text-align: center;
}

/* サンプルボタン */
.btn-sample {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0056b3; /* 青背景 */
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background-color 0.3s;
}

.btn-sample:hover {
    background-color: #003d82; /* ホバー時は少し濃く */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .container1 {
        margin: 50px auto;
    }
    
    .product-overview {
        flex-direction: column;
    }
    
    .design-grid {
        justify-content: center; /* スマホでは中央揃えの方が見やすい場合がある */
    }

    .article-table th, 
    .article-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .article-table thead {
        display: none; /* スマホではヘッダーを隠す */
    }
    
    .article-table tr {
        margin-bottom: 20px;
        display: block;
        border: 1px solid #ddd;
    }
    
    .article-table td {
        border: none;
        border-bottom: 1px solid #eee;
    }
    
    .article-table td::before {
        content: attr(class); /* 簡易的なラベル表示 */
        display: block;
        font-weight: bold;
        color: #0056b3;
        margin-bottom: 5px;
        font-size: 0.8em;
    }
}