@charset "UTF-8";

/* =========================
   フォント読み込み
========================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* =========================
   リセット
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 
        "Google Sans",
        -apple-system,
        BlinkMacSystemFont,
        "Noto Sans JP",
        "Helvetica Neue",
        Arial,
        sans-serif;
    background-color: #031126;
    color: #ffffff;
    overflow-x: hidden;
    position: relative; /* 左右ティッカーの基準位置にするため */
    font-kerning: none;
  font-feature-settings: "palt" 1;
  letter-spacing: 2px;
}

/* =========================
   ヘッダー（全幅・両サイド40px・左ロゴ / 右メニュー&ボタン）
========================= */
.site-header {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background-color: #031126;
    position: relative;
    z-index: 10;
}

/* 左側：ロゴ ＋ サブテキスト */
.header-left {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-sub {
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* 右側：ナビゲーション ＋ お問い合わせボタンをまとめるエリア */
.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.navigation a:hover {
    opacity: 0.5;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button .material-symbols-outlined {
    font-size: 18px;
}

.contact-button:hover {
    background-color: #ffffff;
    color: #031126;
}

/* =========================
   TOP / メインビジュアル (FV)
========================= */
.hero {
    width: 100%;
    min-height: calc(100vh - 90px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 40px;
}

/* ネオン背景が入るボックス */
.hero-bg-box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 70%;
    height: 80vh;
    background-image: url('../img/top_img1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 4px;
}

/* ネオン背景の中に配置する人物エリア */
.hero-visuals {
    position: absolute;
    bottom: 0;
    left: 40px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

/* --- 男性スタッフ個別のサイズ調整 --- */
.staff-man {
    height: 88%;
    max-height: 98%; /* ここで高さを調整 */
    position: relative;
    z-index: 2;
    left: 60px;
}

/* --- 女性スタッフ個別のサイズ調整 --- */
.staff-woman {
    height: 80%;
    max-height: 78%; /* ここで高さを調整（男性と別々の比率にできます） */
    position: relative;
    l
    z-index: 1;
}

/* 右側のコンテンツエリア（テキストとタブレット） */
.hero-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; /* 元の 30px から 15px（または 10px）などに縮める */
    padding-right: 20px;
}
/* キャッチコピーなど */
.hero-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px; /* ここを小さく調整（例: 6px〜8px） */
}
.title-bg {
    background-color: #ffffff;
    color: #031126;
    padding: 6px 16px;
    display: inline-block;
    width: fit-content;
}

.hero-subtext {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin: 20px 0 0 0;
}

/* タブレット画像 */
.hero-tablet {
    width: 100%;
    max-width: 480px;
}

.hero-tablet img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}


/* =========================
   左右の縦流れるティッカー（アニメーション）
========================= */
.side-ticker {
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    overflow: hidden;
    z-index: 20; /* ヘルパーより上に表示 */
    pointer-events: none;
}

/* 左端に完全に密着させる */
.side-ticker-left {
    left: 0px;
}
.side-ticker-left .ticker-track {
    animation: verticalScrollDown 20s linear infinite;
}

/* 右端に完全に密着させる */
.side-ticker-right {
    right: 10px;
}
.side-ticker-right .ticker-track {
    animation: verticalScrollUp 20s linear infinite;
}

.ticker-track {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    width: 100%;
}

/* 左側用：上から下へ */
@keyframes verticalScrollDown {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* 右側用：下から上へ */
@keyframes verticalScrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.ticker-track span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    padding: 20px 0;
    text-transform: uppercase;
}


/* =========================
   フッター
========================= */
.site-footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    background-color: #031126;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}


/* =========================
   スマートフォン用レスポンシブ (max-width: 768px)
========================= */
@media screen and (max-width: 768px) {
    .site-header {
        height: 70px;
        padding: 0 20px;
    }

    .navigation {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 70px);
    }

    .side-ticker {
        display: none; 
    }
}