        body {
            font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; /* Shift_JIS環境での一般的なフォント指定 */
            line-height: 1.7;
            color: #333;
            margin: 0 auto;
            padding: 0;
        }
        header {
            background-color: #fff;
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        header h1 {
            font-family: 'ＭＳ 明朝', 'MS Mincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', serif; /* タイトルは明朝体に */
            font-size: 2.6em;
            color: #d15664;
            margin: 0;
            line-height: 1.2;
			font-weight:bold
        }
        header p {
            font-size: 1.1em;
            color: #666;
            margin-top: 10px;
        }


.img-wrap {
  margin: 10px;
}

.img-wrap img {
  width: 100%;
  display: block;
}



        h2 {
            font-family: 'ＭＳ 明朝', 'MS Mincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', serif;
            font-size: 2.0em;
            color: #d15664;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
			background-color:#FFF
        }
        h2::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 0px;
            height: 3px;
            background-color: #d15664;
        }

        h3 {
            font-family: 'メイリオ', Meiryo, sans-serif;
            font-size: 1.4em;
            color: #444;
            margin-top: 30px;
            margin-bottom: 15px;
            border-left: 5px solid #d15664;
            padding-left: 10px;
        }
        ul, ol, dl {
            margin-left: 10px;
            padding-left: 0;
            list-style-position: inside;
        }
        ul li, ol li {
            margin-bottom: 8px;
        }
        strong {
            color: #d15664;
        }
        .intro-text {
            font-size: 1.1em;
            text-align: center;
            margin-bottom: 30px;
            color: #555;
        }

        /* 悩みリスト */
        .problem-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        .problem-list li {
            background-color: #fefefe;
            border: 1px solid #ffd8db;
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 0.95em;
            color: #d15664;
            white-space: nowrap;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .solution-flow ol {
            list-style: none;
            counter-reset: flow-counter;
            padding: 0;
        }
        .solution-flow ol li {
            counter-increment: flow-counter;
            margin-bottom: 30px;
            padding-left: 60px;
            position: relative;
        }
        .solution-flow ol li::before {
            content: counter(flow-counter);
            position: absolute;
            left: 0;
            top: 0;
            background-color: #d15664;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: bold;
        }
        .solution-flow ol li h3 {
            border-left: none;
            padding-left: 0;
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 1.5em;
            color: #d15664;
        }
        .solution-flow p.final-statement {
            font-size: 1.3em;
            font-weight: bold;
            color: #d15664;
            text-align: center;
            margin-top: 40px;
        }
        .solution-flow p.image-note {
            text-align: center;
            font-size: 0.9em;
            color: #777;
            margin-top: 10px;
        }


        /* 安心ポイントリスト */
        .safety-points ol {
            list-style: none;
            padding: 0;
        }
        .safety-points ol li {
            margin-bottom: 25px;
        }
        .safety-points ol li h3 {
            border-left: 5px solid #d15664;
            color: #555;
            font-size: 1.3em;
        }
        .safety-points ol li p {
            padding-left: 15px;
        }

        /* Q&Aセクション */
        .qa-list dt {
            font-weight: bold;
            color: #d15664;
            margin-top: 25px;
            margin-bottom: 5px;
            font-size: 1.1em;
            position: relative;
            padding-left: 25px;
        }
        .qa-list dt::before {
            content: 'Q.';
            position: absolute;
            left: 0;
            color: #d15664;
        }
        .qa-list dd {
            background-color: #f9f9f9;
            border-left: 3px solid #ffd8db;
            padding: 15px;
            margin-left: 0;
            border-radius: 3px;
            position: relative;
            padding-left: 40px;
        }
        .qa-list dd::before {
            content: 'A.';
            position: absolute;
            left: 15px;
            top: 15px;
            color: #666;
            font-weight: bold;
        }

        .note-info {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
            background-color: #fef0f1;
            padding: 25px;
            border-radius: 5px;
            box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
        }
        .note-item {
            text-align: center;
            flex: 1 1 30%;
            min-width: 120px;
            margin: 10px;
        }
        .note-item strong {
            display: block;
            font-size: 1.8em;
            color: #d15664;
            margin-bottom: 5px;
            font-family: 'ＭＳ 明朝', 'MS Mincho', serif;
        }
        .note-item span {
            display: block;
            font-size: 0.9em;
            color: #666;
        }

        .price-section {
            background-color: #fefefe;
            padding: 50px 40px;
            text-align: center;
            border-top: 3px dashed #d15664;
            margin-top: 40px;
            margin-bottom: 0;
            border-radius: 5px;
        }
        .price-section p {
            font-size: 1.2em;
            color: #555;
            margin-bottom: 20px;
        }
        .price-section .current-price {
            font-size: 3.5em;
            font-weight: bold;
            color: #d15664;
            font-family: 'ＭＳ 明朝', 'MS Mincho', serif;
            letter-spacing: 2px;
            margin-top: 10px;
            display: block;
        }
        .price-section .current-price small {
            font-size: 0.5em;
            vertical-align: super;
            margin-left: 5px;
        }
        .price-section .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1.2em;
            margin-top: 15px;
            display: inline-block;
        }
        .price-section .intro-offer {
            font-size: 1.8em;
            color: #d15664;
            font-weight: bold;
            margin-top: 10px;
        }