@charset "UTF-8";

/* --- 1. Hero Section --- */
.hero { height: 100vh; display: flex; align-items: center; padding-left: 5%; }
.hero-title { font-size: clamp(3.2rem, 8vw, 6rem); font-weight: 800; line-height: 1.2; letter-spacing: 0.05em; margin-bottom: 30px; color: var(--white); }
.text-gold { background: linear-gradient(to bottom, #fff9e3 0%, var(--gold) 40%, #805500 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; font-style: italic; }
.text-gold-light { background: linear-gradient(to bottom, #ffffff 0%, var(--gold-bright) 50%, #daa520 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; font-style: italic; }
.hero-subtitle { font-size: 1.2rem; letter-spacing: 0.15em; position: relative; padding-top: 20px; }
.hero-subtitle::before { content: ''; display: block; width: 300px; height: 1px; background: linear-gradient(to right, var(--gold), transparent); position: absolute; top: 0; left: 0; }

/* --- 2. Service Grid (Home) --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 1000px; margin: 40px auto 60px; gap: 30px; }
.services-grid .glass-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 50px 35px; transition: 0.4s; }
.services-grid .glass-card:hover { border-color: var(--gold); background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 25px rgba(212, 175, 55, 0.2); }
.service-icon i { font-size: 3.5rem; margin-bottom: 20px; }
.pulse-gold i { color: var(--gold) !important; filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }
.pulse-green i { color: #00ffa3 !important; filter: drop-shadow(0 0 10px rgba(0, 255, 163, 0.5)); }
.service-cta { margin-top: 60px; display: flex; justify-content: center; }

/* --- About Section (Home) --- */
.about-card-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

/* 共通のglass-cardをベースにAbout専用の調整 */
.about-card {
    padding: 60px 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    text-align: center;
    display: block; /* Flexを解除して縦に並べる */
    transition: box-shadow 0.3s ease;
}

.about-card:hover {
    transform: none !important;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.about-text-block {
    margin-bottom: 50px;
    text-align: center;
}

.about-text-block h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--gold);
    letter-spacing: 0.1em;
    font-weight: 900;
}

.about-text-block p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 2.2;
    text-align: left;
    max-width: 650px;
    margin: 0 auto;
}

/* --- 会社概要テーブル（ここが漏れていました） --- */
.about-info-table {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px auto;
    max-width: 650px;
}

.info-row {
    display: flex; /* 横並びにする */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    margin: 0; /* dlタグのデフォルト余白を消去 */
}

.info-row dt {
    width: 30%;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-align: left;
}

.info-row dd {
    width: 70%;
    color: var(--white);
    font-size: 1rem;
    text-align: left;
    margin: 0;
}

.about-cta {
    text-align: center;
    margin-top: 20px;
}

/* --- About Responsive --- */
@media (max-width: 768px) {
    .about-card {
        padding: 40px 25px;
    }
    .about-text-block h3 {
        font-size: 1.5rem;
    }
    .info-row {
        flex-direction: column; /* スマホでは縦並び */
    }
    .info-row dt {
        width: 100%;
        margin-bottom: 8px;
    }
    .info-row dd {
        width: 100%;
    }
}

/* =========================================
   TOP PAGE ONLY: Price Section (最終調整版)
   ========================================= */

#price {
    padding: 120px 0;
}

.price-lead {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

.price-group {
    margin-bottom: 100px;
}

.price-target-label {
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- カード基本 --- */
#price .price-card {
    background: #ffffff !important;
    border-radius: 12px;
    overflow: hidden;
    color: #333 !important;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative; /* バッジ表示に必要 */
    transform: none !important;
    transition: none !important;
}

#price .price-card:hover {
    transform: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

/* --- カードヘッダー --- */
#price .price-header {
    background: #111111 !important;
    padding: 45px 20px;
    text-align: center;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#price .price-header h4 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ffffff !important;
}

#price .price-val {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff !important;
}

#price .price-val span { font-size: 1rem; opacity: 0.6; }

#price .price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 15px;
}

/* --- リスト部分 --- */
#price .price-list {
    padding: 40px 30px;
    list-style: none;
    flex-grow: 1;
    background: #ffffff !important;
}

#price .price-list li {
    padding: 15px 0 15px 28px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333333 !important;
}

#price .price-list li::before {
    content: '✔' !important;
    position: absolute;
    left: 0;
    color: #2d6a4f !important; /* 基本は深緑のチェック */
    font-weight: 900;
}

/*  利用不可項目 */
#price .price-list li.unavailable { color: #cccccc !important; text-decoration: line-through; }
#price .price-list li.unavailable::before { content: '–' !important; color: #dddddd !important; }

/* ---  スタンダード（おすすめ）プラン専用装飾 --- */
#price .price-card.recommended {
    border: 4px solid var(--gold) !important;
}

#price .recommended .price-header {
    background: linear-gradient(135deg, #b8860b, #d4af37) !important;
}

/* スタンダードのチェックマークだけ金色にする */
#price .recommended .price-list li::before {
    color: var(--gold) !important;
}

/* バッジの復元 */
#price .recommended .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary) !important;
    color: #ffffff !important;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 10;
    display: block !important;
}

/* ---  特記事項エリア（光る枠） --- */
.price-notices {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold); /* 枠を太く金色に */
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); /* 金色のグロー効果 */
}

.notice-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.notice-item i {
    color: var(--gold);
    margin-top: 5px;
}

/* テキストの強調（太字＆金色） */
.notice-item p strong {
    color: var(--gold) !important;
    font-weight: 900;
    font-size: 1.05rem;
}

/* --- ボタンの中央配置 --- */
.price-cta {
    margin-top: 80px;
    display: flex;
    justify-content: center; /* 左右中央寄せ */
    width: 100%;
}

@media (max-width: 992px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr); /* タブレットは2列 */
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    #price { padding: 80px 0; }
    
    .price-lead { font-size: 1.1rem; margin-bottom: 50px; }
    
    .price-target-label { font-size: 1.5rem; }
    
    .price-grid {
        grid-template-columns: 1fr; /* スマホは1列 */
        gap: 40px;
    }

    /* スマホでは推奨プランのスケールを完全にオフ */
    #price .price-card.recommended {
        transform: none !important;
    }

    #price .price-val span { 
        font-size: 0.9rem; 
        opacity: 0.6; 
    }

    .price-notices {
        margin: 40px 15px 0;
        padding: 20px;
    }
    
    .notice-item p strong { font-size: 1.05rem; }
}

/* --- 3. Contact (Home Preview) --- */
.contact-lead { font-size: 1.2rem; line-height: 2; margin-bottom: 60px; color: rgba(255, 255, 255, 0.8); letter-spacing: 0.1em; }
.contact-cta { display: flex; justify-content: center; }

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .hero { padding-left: 20px; }
    .hero-title, .page-title {
        font-size: 2.2rem !important; /* 適切な大きさに縮小 */
        line-height: 1.3;
        word-break: break-all; /* 単語の途中で改行を許可 */
    }
    /* サブタイトル */
    .hero-subtitle, .page-subtitle {
        font-size: 1rem !important;
        margin-top: 10px;
    }
    .contact-lead { font-size: 1rem; }
}