/* coming_soon.css */

/* --- ヘッダーのロゴを最初から強制表示する設定 --- */
.header-logo-link {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* メニュー展開時にロゴを非表示 */
header.menu-open .header-logo-link {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* コンテンツ配置 */
.coming-soon-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    position: relative;
}

/* スクロール判定ターゲット：画面最上部に配置 */
#hero-logo-target {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* ここを通り過ぎると白ヘッダー化 */
    pointer-events: none;
}

.cs-hero {
    width: 100%;
    text-align: center;
    padding: 100px 20px;
}

.cs-content {
    max-width: 700px;
    margin: 0 auto;
}

/* テーマカラーの緑 */
.text-green {
    color: #27ae60;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cs-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* 戻るリンク */
.back-link a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.back-link a:hover {
    color: #27ae60;
}

@media (max-width: 768px) {
    .text-green { font-size: 1.8rem; }
}