/* ======================================================= */
/* 既製品コーナーページ専用スタイル (基本は他製品と共通) */
/* ======================================================= */

/* ページタイトルビジュアル */
.page-header-visual {
    text-align: center;
    margin-bottom: 20px;
}
.page-header-visual img {
    max-width: 100%;
    height: auto;
}

/* 注意書き情報（最少受注単位など）*/
.info-notice {
    font-size: 0.8em;
    padding: 10px 0;
    margin: 10px 0 20px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}
.info-notice .bullet {
    color: gray;
    margin-right: 5px;
}

/* メイン説明文 */
.main-description {
    margin-bottom: 20px;
    font-size: 0.95em;
}
.main-description p {
    margin: 5px 0;
}
.main-description .small-text {
    font-size: 0.8em;
    color: #696969;
    text-align: right; /* 元のデザインを再現 */
}

/* ======================================================= */
/* 製品リストアイテムのレイアウト */
/* ======================================================= */

/* 1. 防犯回転ネームの特殊レイアウト */
.product-visual {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap; /* スマホで折り返す */
}
.product-visual > img:first-child {
    flex-grow: 1;
    max-width: 400px; /* メイン画像幅 */
    width: 100%;
    height: auto;
}
.product-visual .side-image img {
    max-width: 180px; /* サイド画像幅 */
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    box-sizing: border-box;
}
.product-details-block {
    flex-grow: 1;
    margin-bottom: 20px;
}
/* 2.以降のフル幅画像レイアウト */
.product-item-group {
    padding: 20px 0;
}
.product-visual-full img {
    max-width: 583px; /* 元の幅を最大値に */
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* 詳細情報共通スタイル */
.set-title {
    font-size: 1.4em;
    margin: 0 0 5px;
}
.set-title span {
    font-size: 0.7em;
    font-weight: normal;
}
.product-spec {
    font-size: 0.9em;
    margin: 10px 0;
}
.product-spec .red-text {
    color: #ff0000;
    font-weight: bold;
}
.small-text {
    font-size: 0.8em;
    color: #696969;
}

/* 注文ボタンエリア */
.order-link-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
}
.order-link-btn img {
    max-width: 191px; 
    height: auto;
}

/* 注意書きフッター */
.notes-footer {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
}
.notes-title {
    font-size: 1.2em;
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}


/* ページ最下部ナビ */
.page-bottom-nav {
    text-align: center;
    margin: 40px 0 20px;
}

/* ======================================================= */
/* スマホ対応 (Max-width: 650px) */
/* ======================================================= */
@media (max-width: 650px) {
    
    /* 防犯回転ネームの画像構成を縦積み */
    .product-visual {
        flex-direction: column;
        align-items: center;
    }
    .product-visual > img:first-child {
        max-width: 100%;
    }
    .product-visual .side-image {
        max-width: 80%;
    }

    /* 注文ボタンエリアを中央寄せ */
    .order-link-group {
        justify-content: center;
    }
    
    /* 説明文の右揃えを解除 */
    .main-description .small-text {
        text-align: left;
    }
}