/* ======================================================= */
/* 小1年用ネームページ専用スタイル (基本はschool/ironの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;
    font-size: 0.95em;
}
.main-description hr {
    margin-top: 15px;
}

/* 商品画像エリア */
.image-area {
    text-align: center;
    margin-bottom: 20px;
}
.image-area img {
    max-width: 583px; /* 元の幅を最大値に */
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    box-sizing: border-box;
}
.image-caption {
    font-size: 0.8em;
    margin-top: 5px;
    color: #696969;
}


/* 各セットアイテムのレイアウト */
.product-set-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
}
.product-set-item.reverse-layout {
    flex-direction: row-reverse; /* 角型ネームを画像右、詳細左に */
}

.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-details.full-width {
    max-width: 100%; /* 長型ネームのように画像がない場合 */
}

.set-title {
    font-size: 1.4em;
    margin: 0 0 5px;
}
.set-title span {
    font-size: 0.7em;
    font-weight: normal;
}
.set-size {
    font-size: 0.9em;
    margin: 0 0 10px;
}
.set-content-title {
    font-weight: bold;
    margin: 10px 0 0;
}
.set-content {
    font-size: 0.9em;
    margin: 5px 0 15px;
}
.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: 10px 0;
    font-size: 0.9em;
}

/* ページ最下部ナビ */
.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;
    }
    .product-set-item.reverse-layout {
        flex-direction: column; /* スマホでは通常通り縦積み */
    }

    .set-details {
        text-align: left; /* テキストは左揃えのまま */
    }
    
    .set-image {
        max-width: 80%;
        margin-bottom: 15px;
    }

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