/* ベース設定 */
:root {
    --color-bg: #1A0D23; /* 深い紫系の黒 */
    --color-text: #E6E1F0; /* 少し紫がかった白 */
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-purple-light: #7E5B94;
    --color-purple-dark: #2A1738;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Noto Serif JP', serif;
    line-height: 2.2; /* 改行多めでゆったり読ませる */
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
}

/* コンテナ設定 */
.lp-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-bg);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
}

/* 共通セクション設定 */
.section {
    padding: 60px 20px;
    text-align: center;
}

.content {
    max-width: 90%;
    margin: 0 auto;
}

.content p {
    margin-bottom: 2em; /* 段落の間隔を空ける */
}

/* タイトル・テキスト装飾 */
.section-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
}

.gold-text {
    color: var(--color-gold);
    font-weight: 500;
}

.highlight {
    font-size: 1.1rem;
    color: var(--color-gold-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    display: inline-block;
    padding-bottom: 5px;
}

.note {
    font-size: 0.8rem;
    color: #A098AD;
}

.quote {
    font-size: 1.1rem;
    color: var(--color-gold-light);
    padding: 20px;
    border-left: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
    margin: 30px auto;
    background: rgba(42, 23, 56, 0.5);
}

/* アニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ファーストビュー */
.fv {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fv-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fv-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.fv-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
}

.fv-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
}

.main-title {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,0,0,0.8), 0 0 10px rgba(212, 175, 55, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.main-title .small {
    font-size: 1.2rem;
    color: var(--color-gold-light);
}

.sub-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-gold-light);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold-light), transparent);
    margin-top: 10px;
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 画像共通設定 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.full-img {
    margin: 40px 0;
}

.full-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.empathy-img, .cases-img {
    margin-bottom: 40px;
}

.empathy-img img, .cases-img img {
    width: 100%;
    border-radius: 8px;
    opacity: 0.9;
}

/* 共感セクション */
.empathy-list {
    text-align: left;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 20px 30px 40px;
    border-radius: 8px;
    margin: 30px 0;
}

.empathy-list li {
    margin-bottom: 15px;
    position: relative;
    list-style: none;
}

.empathy-list li::before {
    content: '・';
    position: absolute;
    left: -20px;
    color: var(--color-gold);
}

/* サービス内容詳細 */
.detail-box {
    text-align: left;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.detail-box:last-child {
    border-bottom: none;
}

.detail-box h3 {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.check-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.check-list li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--color-gold);
}

/* 相談事例カード */
.case-card {
    background: rgba(42, 23, 56, 0.6);
    border-radius: 12px;
    padding: 25px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(126, 91, 148, 0.3);
    position: relative;
}

.case-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
    line-height: 1;
}

/* オファーエリア */
.offer {
    padding: 0;
    position: relative;
}

.offer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.offer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.offer-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to bottom, var(--color-bg) 0%, rgba(26,13,35,0.7) 10%, rgba(26,13,35,0.9) 80%, var(--color-bg) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}

.limit-box {
    border: 2px solid var(--color-gold);
    padding: 30px 20px;
    margin-bottom: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 4px;
}

.limit-box h2 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin: 15px 0;
    letter-spacing: 0.1em;
}

.price-box {
    margin: 40px 0;
}

.normal-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #A098AD;
    margin-bottom: 20px;
}

.special-price-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.3));
    border: 1px solid var(--color-gold);
    padding: 30px 20px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.sp-title {
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sp-price {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sp-price .big {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    margin: 0 5px;
}

/* CTAボタン */
.cta-button {
    display: block;
    width: 90%;
    margin: 50px auto 30px;
    padding: 10px 10px; /* 上下の余白をさらに削減 */
    background: linear-gradient(to right, #B8860B, #FFD700, #B8860B);
    background-size: 200% auto;
    color: #1A0D23;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 30px rgba(212, 175, 55, 0.4);
    transition: all 0.5s ease;
    animation: pulse 2s infinite, shine 3s infinite linear;
    text-align: center;
    line-height: 1.3; /* ボタン内の行間を詰める */
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button .cta-sub {
    font-size: 0.9rem; /* サブタイトルを少し小さく */
    font-weight: 700;
    display: block;
    margin-bottom: 2px; /* サブタイトルとメインタイトルの隙間を埋める */
}

.cta-button .cta-main {
    font-size: 1.3rem; /* メインタイトルを少しだけ小さく */
    font-weight: 700;
}

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

@keyframes shine {
    to {
      background-position: 200% center;
    }
}

/* フッター */
.footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.8rem;
    color: #A098AD;
    background-color: #110817;
}
