/*
 * HONESTUAL - Beauty Brand Website CSS
 * PDF資料のようなクリーンでミニマルなデザイン
 */

/* 全体のリセットと基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'BIZ UDPGothic', sans-serif; /* 資料にあったゴシック体をメインに */
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* コンテナ設定 */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー/ナビゲーション */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* 資料にあった明朝体をロゴに使用 */
    font-family: 'BIZ UDPMincho', serif;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2px;
}
.logo_size_m {
    width: 300px;
    height: 39px;
}
.nav a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #000;
}

/* メインビジュアル (Hero) セクション */
.hero {
    position: relative;
    height: 700px; /* 高さでPDFのページ感を演出 */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: #f8f8f8;*/ /* 背景色でクリーンな印象 */
    background-image: url('../img/product-main.jpg'); /* 実際の商品の画像に差し替えてください */
    background-size: cover;
    background-position: center;
    /* 画像を暗くし、テキストを読みやすくする */
    filter: brightness(0.9); 
    z-index: 1;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.8); /* 半透明の白いボックスで情報を際立たせる */
    max-width: 600px;
}

.hero-catchphrase {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.shop-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.shop-button:hover {
/*    background-color: #555;*/
}

/* 共通セクションスタイル */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'BIZ UDPMincho', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    font-weight: normal;
}

/* ABOUTセクション */
.about-section {
    /*background-color: #f9f9f9;*/
    text-align: center;
}

.about-concept-title {
    font-size: 24px;
    font-family: 'BIZ UDPMincho', serif;
    margin-bottom: 5px;
}

.about-concept-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.about-text, .about-text-last {
    max-width: 700px;
    margin: 0 auto 20px auto;
    font-size: 16px;
    line-height: 2.0;
}

.about-text-last {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: inline-block;
}

/* PRODUCTセクション */
.product-section {
    padding-bottom: 80px;
}

.product-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.product-item {
    flex: 1;
    text-align: center;
}

.product-image {
    max-width: 350px;
    max-height: 350px; /* 商品画像エリア */
    /*background-color: #f0f0f0; */
    margin-bottom: 20px;
    /* PDFにあった画像のようなクリーンな商品画像を配置してください */
}

.product-brand {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
}

.news-item {
    flex: 1;
    text-align: left;
}

/* HOW TO USEセクション */
.how-to-use-section {
    background-color: #fff;
    padding-top: 60px;
}

.how-to-use-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.how-to-use-text {
    flex: 1;
}

.how-to-use-image {
    flex: 1;
    max-height: 350px; /* 説明画像エリア */
    /*background-color: #f0f0f0; */
    /* 実際の使用ステップ画像に差し替えてください */
}

.how-to-use-text h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 3px solid #333;
    padding-left: 10px;
}

.how-to-steps {
    list-style: none;
    counter-reset: step-counter;
}

.how-to-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    line-height: 1.8;
    position: relative;
    padding-left: 40px;
}

.how-to-steps li::before {
    content: counter(step-counter) " .";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

/* フッター */
.footer {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links a, .social-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links {
    margin-bottom: 20px;
}

.social-links {
    margin-bottom: 15px;
}

.footer-links a:hover, .social-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
}

/* レスポンシブ対応 (最小限) */
@media (max-width: 768px) {
.hero-image {
    height: 80%;
    background-image: url('img/product-main-sp.jpg'); /* 実際の商品の画像に差し替えてください */
}

    .header .container {
        flex-direction: column;
    }

    .nav {
        margin-top: 15px;
    }
    
    .nav a {
        margin: 0 10px;
    }

    .hero-text-overlay {
        padding: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .product-grid {
        flex-direction: column;
    }

    .product-image {
        height: 250px;
    }

    .product-name {
        margin-top:120px;
    }
    .how-to-use-content {
        flex-direction: column;
    }
    
    .how-to-use-image {
        height: 300px;
        order: -1; /* 画像を上に移動 */
        margin-bottom: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}


.pro-mes {
padding:0px 0px 20px 0px;
}
.mes-title {
font-size:120%;
font-weight:bold;
}
.seibun {
padding:0px 0px 20px 0px;
}
.redmes {
color:#f00;
}
