/*
 Theme Name:   SOLARIS Child
 Theme URI:    https://www.secret-love-club.com/
 Description:  SOLARIS Child Theme
 Author:       (ここにあなたの名前やサイト名を入れる)
 Author URI:   https://www.secret-love-club.com/
 Template:     solaris_tcd088
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  solaris-child
*/
/* --- TOP PAGE CUSTOM DESIGN --- */

/* --- 全体の設定 --- */
.page-template-default {
    background-color: #12121c; /* ダークな背景色 */
    color: #f0f0f0; /* 明るいテキスト色 */
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
}

/* --- コンテンツエリアの基本設定 --- */
.top-page-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- ヒーローセクション --- */
.hero-section {
    background-image: linear-gradient(rgba(18, 18, 28, 0.7), rgba(18, 18, 28, 1)), url('https://secret-love-club.com/wp-content/uploads/2025/08/motejun%E8%83%8C%E6%99%AF.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* パララックス効果 */
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

.hero-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #d1c4e9; /* 薄い紫色 */
    margin-bottom: 40px;
}

/* --- CTAボタン --- */
.cta-button {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #00c853, #64dd17); /* 緑のグラデーション */
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 200, 83, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- 各セクションの見出し --- */
.section-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}
.section-title span {
    border-bottom: 3px solid #d1c4e9;
    padding-bottom: 10px;
}

/* --- 問題提起セクション --- */
.problem-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}
.problem-list li {
    margin-bottom: 15px;
}
.problem-list li::before {
    content: '✓';
    color: #d1c4e9;
    margin-right: 10px;
    font-weight: bold;
}

/* --- 解決策セクション --- */
.solution-section {
    background-color: rgba(255, 255, 255, 0.05);
}
.solution-highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    background-color: rgba(209, 196, 233, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
}

/* --- 7日間講座セクション --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}
.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #d1c4e9;
}
.feature-card h3 {
    font-family: 'Shippori Mincho', serif;
    margin-top: 0;
    color: #d1c4e9;
}

/* --- スマホ用レスポンシブ設定 --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .top-page-section { padding: 60px 20px; }
}