@charset "utf-8";
/*
Theme Name: GeneratePress Child
Template: generatepress
*/

/* =========================
   商品ページ全体
========================= */

.product-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}


/* =========================
   商品ヘッダー
========================= */

.product-header {
    text-align: center;
    margin-bottom: 60px;
}


.product-header h1 {
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 15px;
}


.product-header .maker {
    color: #666;
    font-size: 16px;
}


/* =========================
   メイン画像
========================= */

.product-main-image {
    margin-bottom: 30px;
}


.product-thumbnail {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
}




/* =========================
   各セクション
========================= */

.product-section {
    margin-bottom: 60px;
}


.product-section h2 {
    font-size: 28px;
    border-left: 6px solid #1e73be;
    padding-left: 15px;
    margin-bottom: 25px;
}


.product-section p,
.product-section div {
    line-height: 1.8;
    font-size: 16px;
}





/* =========================
   価格ボックス
========================= */

.price-box {
    background: #f7f9fc;
    padding: 30px;
    border-radius: 12px;
}


.price-box strong {
    font-size: 28px;
}




/* =========================
   特徴
========================= */

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.feature-box {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
}


.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}




/* =========================
   仕様
========================= */

.spec-table {
    background: #fafafa;
    padding: 25px;
    border-radius: 10px;
}



/* =========================
   サポート
========================= */

.support-box {
    background: #f1f7ff;
    padding: 30px;
    border-radius: 12px;
}



/* =========================
   お問い合わせ
========================= */

.contact-box {
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
}


.contact-button {
    display: inline-block;
    background: #1e73be;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
}


.contact-button:hover {
    opacity: 0.8;
}




/* =========================
   スマホ対応
========================= */

@media (max-width: 768px) {


    .product-page {
        padding: 20px;
    }


    .product-header h1 {
        font-size: 28px;
    }


    .feature-list {
        grid-template-columns: 1fr;
    }


    .product-section h2 {
        font-size: 22px;
    }


}