/*
Theme Name: medialabo
Theme URI: https://medialab-0617.jp
Author: Media Lab Inc.
Author URI: https://medialab-0617.jp
Description: 株式会社メディアラボ 公式サイト - 漆黒ベース・映像美・高級感をテーマにしたWordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: medialabo
*/

:root {
    --font-main: 'Noto Sans JP', sans-serif;
    --hero-title-font: 'Cormorant Garamond', 'Times New Roman', serif;
    --hero-title-size: clamp(48px, 8vw, 90px);
    --hero-title-weight: 400;
    --hero-title-style: normal;
    --hero-title-color: #ffffff;
    --hero-title-accent: #c9a84c;
    --hero-sub-color: rgba(255, 255, 255, 0.45);
    --hero-sub-spacing: 0.3em;
    --hero-bread-color: rgba(255, 255, 255, 0.3);
}

*,
*::before,
*::after {
    font-family: var(--font-main) !important;
}

body {
    font-family: var(--font-main) !important;
}

/* ================================
   PAGE HERO 共通（4子ページ）
================================ */
.page-hero {
    position: relative;
    padding: 80px 60px 0;
    overflow: hidden;
    background: #000;
}

.page-hero__bread {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--hero-bread-color);
    margin-bottom: 28px;
    font-family: 'Noto Sans JP', sans-serif;
}

.page-hero__title {
    font-family: var(--font-main);
    font-size: var(--hero-title-size);
    font-weight: var(--hero-title-weight);
    font-style: normal;
    color: var(--hero-title-color);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.page-hero__title em {
    font-family: var(--font-main);
    font-style: normal;
    color: var(--hero-title-accent);
}

.page-hero__sub,
.page-hero__ja {
    font-size: 11px;
    letter-spacing: var(--hero-sub-spacing);
    color: var(--hero-sub-color);
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 40px;
}

.page-hero__line-bottom {
    width: 100%;
    height: 1px;
    background: rgba(201, 168, 76, 0.2);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 24px 0;
    }

    .page-hero__title {
        font-size: clamp(40px, 10vw, 70px);
    }
}

/* TOPページのみ：ヘッダー背景をスクロールで切り替え */
.home .site-header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.4s ease;
}

.home .site-header.is-scrolled {
    background: #000;
}

