
/* 既存CSSに配慮したプレフィックス付きスタイル */
.shapes-top * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.shapes-top {
    font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic UI', 'Meiryo', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

/* 基本要素のリセット */
.shapes-top h1,
.shapes-top h2,
.shapes-top h3,
.shapes-top h4,
.shapes-top h5,
.shapes-top h6 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-size: inherit;
}

.shapes-top p {
    margin: 0;
    padding: 0;
}

.shapes-top ul,
.shapes-top ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shapes-top li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shapes-top strong {
    font-weight: bold;
}

.shapes-top em {
    font-style: italic;
}

.shapes-top a {
    text-decoration: none;
    color: inherit;
}

.shapes-top .shapes-final-text {
    font-size: 1.5em;
    margin-bottom: 30px;
    line-height: 1.8;
    color: white !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.shapes-action-section {
    background: linear-gradient(rgba(222, 49, 135, 0.9), rgba(255, 107, 157, 0.9)), url('images/shapesgirl-action-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 30px 0;
    padding: 40px 25px;
    text-align: center;
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}



追加する主要プロパティ：

background-size: cover; - 画像を要素全体にフィットさせる
background-position: center; - 画像を中央に配置
background-repeat: no-repeat; - 画像の繰り返しを防ぐ
padding: 40px 25px; - 内側の余白
text-align: center; - テキストを中央揃え
color: white; - デフォルトのテキスト色を白に
border-radius: 15px; - 角を丸くする
box-shadow: 0 10px 30px rgba(0,0,0,0.2); - 影をつける

これらのプロパティにより、背景画像が美しく表示され、テキストも読みやすくなります！再試行Claudeは間違えることがあります。回答内容を必ずご確認ください。

.shapes-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヒーローセクション */
.shapes-top .shapes-hero p,
.shapes-top .shapes-hero strong,
.shapes-top .shapes-hero div,
.shapes-top .shapes-hero div p,
.shapes-top .shapes-hero div div {
    color: white !important;
}

.shapes-top .shapes-hero-title {
    font-size: 2.4em;
    margin-bottom: 15px;
    font-weight: bold;
    color: white !important;
}

.shapes-top .shapes-hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 600;
    color: white !important;
}

.shapes-top .shapes-hero-desc {
    font-size: 1.1em;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: white !important;
}

.shapes-top .shapes-cta-btn {
    background: white;
    color: #de3187 !important;
    padding: 18px 35px;
    border: none;
    border-radius: 40px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.shapes-top .shapes-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #de3187 !important;
}

.shapes-top .shapes-cta-btn::before {
    content: "➡︎ ";
    font-weight: 900;
    font-size: 1.1em;
}

/* 心配払拭セクション */
.shapes-top .shapes-concern-section {
    background: #f8f9fa;
    padding: 50px 0;
    margin: 50px 0;
}

.shapes-top .shapes-concern-title {
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 40px;
    color: #c44d7a;
    font-weight: bold;
}

.shapes-top .shapes-concern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.shapes-top .shapes-concern-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.shapes-top .shapes-concern-card-title {
    color: #ff4444;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.shapes-top .shapes-concern-answer {
    border-left: 4px solid #c44d7a;
    padding-left: 20px;
}

.shapes-top .shapes-concern-answer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.shapes-top .shapes-concern-answer .answer-title {
    font-weight: bold;
    color: #c44d7a;
    margin-bottom: 10px;
}

/* 確実性の訴求ボックス */
.shapes-top .shapes-promise-box {
	text-align: left;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.shapes-top .shapes-promise-title {
    color: #c44d7a;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.shapes-top .shapes-promise-text {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* モデルの声セクション */
.shapes-top .model-reality-section {
    padding: 20px 0;
    margin: 40px 0;
}

.shapes-top .model-reality-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #c44d7a;
    text-align: center;
    font-weight: bold;
}

.shapes-top .model-voice {
    background: #f8f9fa;
    border-left: 4px solid #c44d7a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.shapes-top .model-voice p {
    line-height: 1.6;
}

.shapes-top .model-voice .author {
    text-align: right;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* 特徴グリッド */
.shapes-top .shapes-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.shapes-top .shapes-feature-highlight {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.shapes-top .shapes-feature-highlight:hover {
    transform: translateY(-5px);
}

.shapes-top .shapes-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.shapes-top .shapes-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.shapes-top .shapes-feature-text {
    color: #666;
    line-height: 1.6;
}

/* 確実性の約束セクション */
.shapes-top .shapes-promise-section {
    background: linear-gradient(135deg, #de3187 0%, #b8296b 100%);
    color: white;
    padding: 50px 0;
    margin: 40px 0;
    border-radius: 20px;
    text-align: center;
}

.shapes-top .shapes-promise-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white !important;
}

.shapes-top .shapes-promise-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    color: white !important;
}

/* 統計情報 */
.shapes-top .shapes-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.shapes-top .shapes-stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.shapes-top .shapes-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #de3187;
    display: block;
}

.shapes-top .shapes-stat-text {
    color: #555;
    font-weight: 500;
    margin-top: 5px;
}

/* アコーディオン代替セクション */
.shapes-top .shapes-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.shapes-top .shapes-section-header {
    background: linear-gradient(135deg, #de3187, #ff69b4);
    color: white;
    padding: 25px;
    margin: -40px -40px 30px -40px;
    border-radius: 15px 15px 0 0;
    font-size: 1.3em;
    font-weight: bold;
}

.shapes-top .shapes-qa-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.shapes-top .shapes-qa-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #de3187;
}

.shapes-top .shapes-qa-question {
    color: #de3187;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.shapes-top .shapes-qa-answer {
    line-height: 1.6;
}

/* 問題リスト */
.shapes-top .shapes-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.shapes-top .shapes-problem-card {
    background: #fff5f8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #de3187;
}

.shapes-top .shapes-problem-item {
    background: white;
    padding: 18px;
    margin: 12px 0;
    border-radius: 8px;
    border-left: 4px solid #de3187;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    word-break: break-word;
}

.shapes-top .shapes-problem-title {
    color: #de3187;
    margin-bottom: 8px;
    font-size: 1.1em;
    font-weight: bold;
}

.shapes-top .shapes-problem-text {
    font-size: 1em;
    line-height: 1.6;
}

/* 成功者の声 */
.shapes-top .shapes-testimonials-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.shapes-top .shapes-testimonial {
    background: #fff8dc;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    border-left: 4px solid #de3187;
    position: relative;
}

.shapes-top .shapes-testimonial::before {
    content: '"';
    font-size: 3em;
    color: #de3187;
    opacity: 0.3;
    position: absolute;
    top: -5px;
    left: 12px;
}

.shapes-top .shapes-testimonial-text {
    font-style: italic;
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
}

.shapes-top .shapes-testimonial-author {
    text-align: right;
    color: #de3187;
    font-weight: bold;
    font-size: 0.95em;
}

/* セクションタイトル */
.shapes-top .shapes-section-title {
    font-size: 1.4em;
    color: #de3187;
    text-align: center;
    margin: 40px 0 25px 0;
    font-weight: bold;
    position: relative;
}

.shapes-top .shapes-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #de3187;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* 料金セクション */
.shapes-top .shapes-price-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shapes-top .shapes-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.shapes-top .shapes-price-card.recommended {
    border-color: #de3187;
    background: linear-gradient(135deg, #fce4ec, #fff);
}

.shapes-top .shapes-price-card.recommended::before {
    content: "おすすめ";
    position: absolute;
    top: 15px;
    right: -25px;
    background: #de3187;
    color: white;
    font-size: 0.9em;
    font-weight: bold;
    padding: 5px 25px;
    transform: rotate(45deg);
    z-index: 10;
}

.shapes-top .shapes-special-note {
    font-size: 0.9em;
    font-weight: bold;
    color: #de3187;
    margin-bottom: 10px;
}

.shapes-top .shapes-price-card-title {
    font-size: 1.5em;
    color: #de3187;
    margin-bottom: 10px;
    font-weight: bold;
}

.shapes-top .shapes-price-card-price {
    font-size: 2.2em;
    font-weight: bold;
    color: #de3187;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.shapes-top .shapes-price-card-price s {
    font-size: 0.7em;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.shapes-top .shapes-price-card-price small {
    font-size: 0.5em;
    font-weight: normal;
    vertical-align: top;
    margin-left: 5px;
}

.shapes-top .shapes-price-card-period {
    color: #888;
    font-size: 1em;
    margin-bottom: 20px;
}

.shapes-top .shapes-price-card-note {
    font-size: 0.9em;
    color: #888;
    margin-top: 10px;
    line-height: 1.4;
}

.shapes-top .shapes-price-card-details {
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

.shapes-top .shapes-price-card-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shapes-top .shapes-price-card-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.5;
}

.shapes-top .shapes-price-card-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #de3187;
    font-weight: bold;
}

/* アクセスセクション */
.shapes-top .shapes-access {
    background: #fcfcfc;
    border-radius: 12px;
    padding: 30px;
    margin: 50px 0;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.shapes-top .shapes-access-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.05em;
    line-height: 1.6;
}

.shapes-top .shapes-access-info p {
    display: flex;
    align-items: center;
}

.shapes-top .shapes-access-info p strong {
    display: inline-block;
    min-width: 90px;
    color: #de3187;
    font-weight: bold;
    margin-right: 10px;
}

.shapes-top .shapes-map-container {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.shapes-top .shapes-map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.shapes-top .shapes-other-stores {
    margin-top: 20px;
    text-align: center;
}

.shapes-top .shapes-other-stores a {
    color: #de3187 !important;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.shapes-top .shapes-other-stores a:hover {
    color: #b8267a !important;
}

/* 最終CTA */
.shapes-top .shapes-final-cta {
    background: linear-gradient(135deg, #de3187, #b8267a);
    color: white;
    text-align: center;
    padding: 50px 0;
    margin-top: 50px;
    border-radius: 15px;
}

.shapes-top .shapes-final-title {
    font-size: 2.2em;
    margin-bottom: 18px;
    font-weight: bold;
    color: white !important;
}

.shapes-top .shapes-final-text {
    font-size: 1.2em;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: white !important;
}

.shapes-top .shapes-final-text strong {
    color: white !important;
    font-weight: bold;
}

.shapes-top .shapes-final-note {
    margin-top: 35px;
    opacity: 0.9;
    font-size: 1.1em;
    color: white !important;
}

.shapes-top .shapes-final-note em {
    color: white !important;
    font-style: italic;
}


.shapes-cta-btn::before {
    content: "▶︎";
    margin-left: 8px;
}




/* レスポンシブ対応 */
@media (max-width: 768px) {
    .shapes-top .shapes-concern-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .shapes-top .shapes-concern-card {
        padding: 20px !important;
    }

    .shapes-top .shapes-concern-title {
        font-size: 1.5em;
        margin-bottom: 30px;
		text-align: left;
		
    }

    .shapes-top .shapes-promise-box {
        padding: 30px;
    }

    .shapes-top .shapes-promise-title {
        font-size: 1.3em;
    }

    .shapes-top .shapes-promise-text {
        font-size: 1em;
    }

    .shapes-top .shapes-hero-intro-title, .shapes-top .shapes-hero-subtitle {
        font-size: 2rem;
    }

    .shapes-top .shapes-hero-intro-subtitle, .shapes-top .shapes-hero-subtitle {
        font-size: 1.1rem;
    }

    .shapes-top .shapes-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shapes-top .shapes-promise-title {
        font-size: 1.5rem;
    }

    .shapes-top .shapes-hero-title {
        font-size: 2em;
    }

    .shapes-top .shapes-acc-header {
        font-size: 1.1em;
        padding: 20px;
        min-height: 60px;
    }

    .shapes-top .shapes-acc-body {
        padding: 20px;
    }

    .shapes-top .shapes-features, .shapes-top .shapes-price-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .shapes-top .shapes-container {
        padding: 0 15px;
    }

    .shapes-top .shapes-cta-btn {
        font-size: 1.2em;
        padding: 16px 30px;
    }

    .shapes-top .shapes-feature-card, .shapes-top .shapes-price-card {
        padding: 20px;
    }

    .shapes-top .shapes-highlight {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .shapes-top .shapes-access {
        padding: 20px;
    }

    .shapes-top .shapes-access-info p {
        flex-direction: column;
        align-items: flex-start;
    }

    .shapes-top .shapes-access-info p strong {
        margin-bottom: 5px;
    }

    .shapes-top .shapes-price-card-price {
        flex-direction: column;
    }

    .shapes-top .shapes-price-card-price s {
        font-size: 0.8em;
    }

    .shapes-top .shapes-price-card-price span {
        font-size: 1.8em;
    }

    .shapes-top .shapes-acc-item.active .shapes-acc-content {
        max-height: auto;
    }

    .shapes-top .shapes-acc-item {
        margin-bottom: 30px;
    }

    .shapes-top .shapes-section {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .shapes-top .shapes-section-header {
        margin: -25px -20px 20px -20px;
        padding: 20px;
        font-size: 1.1em;
    }

    .shapes-top .shapes-problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .shapes-top .shapes-price-card-title {
        font-size: 1.3em;
    }
	
	/* ハイライトボックス */
.shapes-top .shapes-highlight {
    background: linear-gradient(135deg, #fff8f0, #fff);
    border: 3px solid #de3187;
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    text-align: center;
}

.shapes-top .shapes-highlight-title {
    color: #de3187;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
}

.shapes-top .shapes-highlight-text {
    font-size: 1.1em;
    line-height: 1.6;
}

	
	
@media (max-width: 768px) {
    .shapes-top .shapes-highlight {
        padding: 25px 20px;
        margin: 20px 0;
    }
}
	/* 特徴グリッド内のカードを中央揃えに修正 */
.shapes-top .shapes-feature-highlight {
    text-align: center;
}
	

	
	
}
