/* * Cocoon用 LPスタイルシート 
 * 既存のテーマスタイルへの影響を避けるため、全て .lp-wrapper の中に入れています。
 */

/* ベースリセット */
.lp-wrapper {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.lp-wrapper * {
    box-sizing: border-box;
}

.lp-wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.lp-wrapper h2, .lp-wrapper h3 {
    margin-top: 0;
}

/* 共通コンポーネント */
.lp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-section {
    padding: 60px 0;
}

.text-center { text-align: center; }
.text-primary { color: #0056b3; }
.text-accent { color: #ff9900; }
.bg-gray { background-color: #f9f9f9; }
.bg-blue { background-color: #eef6fa; }

/* ボタン */
.lp-btn {
    display: inline-block;
    background: linear-gradient(to bottom, #ffaa00, #ff8800);
    color: #fff !important; /* Cocoonのリンク色上書き */
    text-decoration: none !important;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: opacity 0.3s, transform 0.2s;
    border: 2px solid #fff;
}
.lp-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}
.lp-btn i {
    margin-left: 10px;
}

/* 1. ヒーローセクション */
.lp-hero {
    position: relative;
    background-color: #eef6fa; /* 画像がない場合の背景色 */
    text-align: center;
    overflow: hidden;
}

/* 実際の運用では background-image を設定してください */
.lp-hero-bg {
    background: url('https://placehold.co/1200x500/eef6fa/0056b3?text=Hero+Image+Area') no-repeat center center/cover;
    padding: 80px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-hero-content {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 800px;
    width: 100%;
}

.lp-hero h1 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
    line-height: 1.4;
}

.lp-hero .sub-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    display: block;
}

/* 2. お悩み解決セクション (Grid) */
.lp-section-title {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.lp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ff9900;
}

.lp-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.lp-problem-card {
    background: #fff;
    border: 2px solid #eef6fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.lp-problem-card:hover {
    border-color: #0056b3;
    transform: translateY(-5px);
}

.lp-problem-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.lp-problem-text {
    font-weight: bold;
    color: #333;
}

/* 矢印エリア */
.lp-arrow-down {
    margin: 30px 0;
    color: #ff9900;
    font-size: 2rem;
}

/* 3. キャンペーンセクション */
.lp-campaign {
    background-color: #0056b3; /* 濃い青背景 */
    color: #fff;
    padding: 60px 0;
}

.lp-campaign .lp-section-title {
    color: #fff;
}
.lp-campaign .lp-section-title::after {
    background-color: #fff;
}

.lp-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.lp-plan-card {
    background: #fff;
    color: #333;
    width: 300px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
}

.lp-plan-header {
    background: #ffcc00;
    padding: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}
.lp-plan-header.blue { background: #99ccff; }
.lp-plan-header.pink { background: #ffcccc; }

.lp-plan-body {
    padding: 20px;
}

.lp-plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d00;
    margin: 15px 0;
}

/* 4. 強み・メリットセクション */
.lp-features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.lp-feature-item {
    flex: 1 1 300px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.lp-feature-number {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.lp-feature-title {
    font-size: 1.3rem;
    color: #0056b3;
    margin-bottom: 15px;
    border-bottom: 2px solid #eef6fa;
    padding-bottom: 10px;
}

/* 5. CTA コンタクトセクション */
.lp-cta-section {
    background: url('https://placehold.co/1200x400/f0f0f0/cccccc?text=Office+Image') no-repeat center center/cover;
    position: relative;
    padding: 80px 20px;
}
/* 背景画像を暗くするオーバーレイ */
.lp-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.8);
}

.lp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.lp-form-placeholder {
    margin-top: 20px;
    text-align: left;
}
.lp-form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* スマホ対応調整 */
@media (max-width: 768px) {
    .lp-hero h1 { font-size: 1.8rem; }
    .lp-plans { flex-direction: column; align-items: center; }
    .lp-plan-card { width: 100%; max-width: 350px; }
    .lp-cta-inner { padding: 20px; }
}