/*
 Theme Name:   GeneratePress Child
 Description:  GeneratePress child theme for kimoota.net
 Template:     generatepress
 Version:      1.0.0
*/

/* ここに先ほどの見出しCSSや吹き出しCSSを追記していきます */

@charset "UTF-8";

/* ----------------------------------------------------------------             
  1. 基本カラー変数（サーモンピンク & ダークトーン）
----------------------------------------------------------------- */
:root {
    --accent-color: #fa8072; /* サーモンピンク */
    --base-bg: #1a1a1a;
    --text-color: #eeeeee;
}

/* ----------------------------------------------------------------             
  2. 見出し装飾（H2/H3）
----------------------------------------------------------------- */

:root {
    --accent-color: #f4a583;
    --accent-sub: rgba(244, 165, 131, 0.15);
}

/* H2: 背景塗り＋左極太アクセント（確定） */
.entry-content h2 {
    padding: 15px 20px;
    background: var(--accent-sub);
    border-left: 8px solid var(--accent-color);
    border-bottom: 1px solid rgba(244, 165, 131, 0.3);
    color: #eee;
    font-size: 1.6rem;
    margin: 2.5em 0 1.2em;
}

/* H3: 縦線アクセント ＋ 浮かび上がる薄グレーの横線 */
.entry-content h3, 
.sidebar .widget-title {
    position: relative;
    padding: 12px 15px 12px 20px;
    /* 縦線のみサーモンピンク */
    border-left: 6px solid var(--accent-color);
    /* 横線は薄いグレーで主張を抑える */
    border-bottom: 1px solid #444;
    color: #eee;
    font-size: 1.4rem;
    margin: 2em 0 1em;
    display: block;
    /* 浮かび上がるような微かな影 */
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.5);
}

/* H4: パディング調整＋ダブルライン */
.entry-content h4 {
    padding: 0 0 8px 15px; 
    border-bottom: 3px solid #444; 
    position: relative;
    font-size: 1.25rem;
    color: #ddd;
    display: block;
    margin: 1.8em 0 0.8em;
}

.entry-content h4::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    border-bottom: 3px solid var(--accent-color);
}

/* H5: ストライプ・グラデーション復活 */
.entry-content h5 {
    font-size: 1.1rem;
    color: #ccc;
    padding: 8px 15px;
    border-left: 3px double var(--accent-color);
    /* 左から右へ、アクセント色から透明へ消えるグラデーション */
    background: linear-gradient(to right, var(--accent-sub), transparent);
    margin: 1.5em 0 0.6em;
}

/* --- 付箋とコードの共通枠 --- */
pre, .memo-box {
    position: relative;
    background: #fff9e6 !important;
    color: #443e2a !important;
    padding: 40px 20px 20px !important;
    border-radius: 8px;
    border: 1px solid #e6dbb9;
    border-left: 6px solid #fa8072;
    margin: 2.5em 0;
}

/* --- ラベル設定 --- */
pre::before, .memo-box::before {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px 15px;
    background: #665c40;
    color: #fff9e6;
    font-size: 10px;
    font-weight: bold;
    border-bottom-right-radius: 8px;
}

pre::before { content: "CODE"; }
.memo-box::before { content: "MEMO"; }

/* --- コードフォント設定 --- */
pre code {
    font-family: 'Consolas', 'Monaco', monospace !important;
    background: none !important;
    padding: 0 !important;
}

/************************************
** メインビジュアル（移行統合版）
************************************/

.appeal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    
    /* 背景画像：子要素やカスタマイザーで指定しにくい場合はここで直指定 */
    background-image: url('https://test.kimoota.net/wp-content/uploads/2026/04/23494fa2f3bbec7a5d4fba3fbcb59fa1.png.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 1;

    /* 上下をぼかすマスク設定 */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* 文字エリアの視認性（ディレクターこだわりの多重シャドウ） */
.appeal-content {
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 80%) !important;
    padding: 60px 40px !important;
    max-width: 900px;
    text-align: center;
}

.appeal-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important; /* レスポンシブ対応 */
    font-weight: 900 !important;
    color: #ffffff !important;
    text-shadow: 
        0 0 15px rgba(253, 166, 140, 0.6), 
        0 0 20px rgba(0, 0, 0, 1),
        2px 2px 0px rgba(0, 0, 0, 1);
    margin-bottom: 25px !important;
}

.appeal-message {
    color: #ffffff !important;
    font-size: clamp(1rem, 4vw, 1.25rem) !important;
    font-weight: 700 !important;
    line-height: 2.0 !important;
    text-shadow: 0 0 10px #000, 0 0 20px #000, 0 0 30px rgba(0,0,0,0.8);
}

/* 矢印アニメーション */
.scroll-down i {
    color: #fd8c7e !important; /* 魂のサーモンピンク */
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}




