/* ======================================================= */
/* アイロンネームページ専用スタイル (school/css/product.cssと共通部分多し) */
/* ======================================================= */

/* ページタイトルビジュアル */
.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;
}
.main-description .highlight-text {
    color: #ff0000;
    font-size: 0.9em;
}
.main-description p {
    font-size: 0.95em;
    margin: 5px 0;
}
.main-description .small-text {
    font-size: 0.8em;
    color: #696969;
}
.main-description hr {
    margin-top: 15px;
}


/* 各製品セットアイテムのレイアウト */
.product-set-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
}
.set-image {
    flex-shrink: 0;
    max-width: 180px; /* 画像の元の幅 */
}
.set-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
}
.set-details {
    flex-grow: 1;
}
.set-title {
    font-size: 1.4em;
    margin: 0 0 5px;
}
.set-title span {
    font-size: 0.7em;
    font-weight: normal;
}
/* 注文ボタンエリア */
.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;
}

/* 貼り方、注意書き */
.usage-notes {
    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-set-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .set-details {
        text-align: left;
    }
    
    .set-image {
        max-width: 80%;
        margin-bottom: 15px;
    }

    /* 注文ボタンエリアを中央寄せ */
    .order-link-group {
        justify-content: center;
    }
}