@charset "UTF-8";

/* 基本的なリセット */
body{
    text-align: center;
    /* padding-top: 70px;  <-- この行を削除 */
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #282727;
}

h1{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
    font-size: 3rem;
} 

h2{
    font-size: 4rem;
    line-height: 1rem;
}
p{
    font-size: 2rem;
}
section{
    align-items: center;
}
.font_change{
    font-size: 3rem; 
    color: red;
    font-weight: bold;
}

.section-divider {
    border: none;
    border-top: 2px solid #fffbfb;
    margin: 20px auto;
    width: 80%;

}

.content_center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* ヘッダーの高さ */
    background-color: rgba(52, 46, 46, 0.95); /* 少し透過させて高級感を出す */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 下に影をつけて浮き上がらせる */
    z-index: 1000; /* 他の要素より前面に */
    display: flex;
    align-items: center;
}

/* コンテナで幅を制限し中央寄せ */
.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* ロゴとメニューを両端に */
    align-items: center;
}

/* ロゴのスタイル */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f4f0f0;
    margin: 0;
    letter-spacing: 1px;
}

/* ナビゲーション */
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* メニュー間の余白 */
}

.nav-menu a {
    text-decoration: none;
    color: #f4eeee;
    font-weight: 500;
    transition: color 0.3s;
}

/* ホバー時の演出（フィットネスらしく色を変える例） */
.nav-menu a:hover {
    color: #ff4500; /* オレンジ系のアセントカラー */
}

/* --- ハンバーガーボタンのスタイル --- */
.hamburger {
    display: none; /* PCでは隠す */
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

/* ボタンがアクティブ（OPEN）になった時の形（X印） */
.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
}

/* --- スマホ用レイアウト（画面幅768px以下） --- */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block; /* スマホで表示 */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* 画面の外に隠しておく */
        width: 80%;   /* メニューの幅 */
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        transition: all 0.5s;
        z-index: 1500;
        padding-top: 100px; /* ロゴと重ならないよう余白 */
    }

    /* メニューがOPENした時 */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column; /* 縦並びに変更 */
        align-items: center;
        gap: 40px;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }
}

.gif-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* 背景として後ろに配置 */
}

.gif-background img {
    width: 100%;
    height: 100%;
    /* 画面全体を覆うように引き伸ばす・切り取る */
    object-fit: cover;
    /* GIFが画面中央に来るように微調整する別手法 */
    /* position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); */
}

.content {
    position: relative;
    z-index: 1; /* 手前に表示 */
    color: white;
    padding: 20px;
}

/* コンテンツ全体を包む要素（背景より上に来る） */
.content-wrapper {
    position: relative;
    z-index: 1; /* 背景(-1)より大きい数値 */
    color: #ffffff; /* 文字色を白にすると動画映えします */
    
    /* ここにヘッダー分の余白を追加 */
    padding-top: 70px; 
}

.first-view-section {
    display: flex;          /* Flexboxコンテナとして設定 */
    flex-direction: column; /* 要素を縦方向に並べる（h2, p, buttonの順） */
    justify-content: center; /* 主軸方向（縦方向）の中央揃え */
    align-items: center;     /* 副軸方向（横方向）の中央揃え */
    
    /* HTMLで指定されているスタイルはそのまま */
    height: calc(100vh - 70px);
}

/* ブランドタイトルの装飾（お好みで） */
.brand-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8); /* 青白く光らせる */
    margin-bottom: 10px;
}

.sub-title {
    color: #00ffff;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
}

/* ネオンボタンの本体 */
.btn-neon {
    background: transparent;      /* 背景は透過 */
    color: #00ffff;              /* サイバーな水色 */
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.3em;       /* 文字の間隔を広げて高級感を出す */
    padding: 15px 40px;
    border: 2px solid #00ffff;   /* 枠線 */
    border-radius: 5px;          /* 少し角を丸める */
    cursor: wait;                /* Coming Soonなので「準備中」のカーソル */
    
    /* 外側の光（ネオンエフェクト） */
    box-shadow: 0 0 10px #00ffff, inset 0 0 5px #00ffff;
    
    /* ふわふわ光るアニメーションを追加 */
    animation: neon-pulse 1.5s infinite alternate;
    transition: 0.3s;
}

/* ホバーした時のエフェクト */
.btn-neon:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 30px #00ffff;
}

footer {
    background-color: #1a1a1a; 
    color: #b0b0b0; 
    padding: 40px 20px; 
    text-align: center; 
    border-top: 1px solid #333;
}

/* 点滅アニメーションの定義 */
@keyframes neon-pulse {
    from {
        opacity: 1;
        box-shadow: 0 0 10px #00ffff;
    }
    to {
        opacity: 0.7;
        box-shadow: 0 0 20px #00ffff, 0 0 40px rgba(0, 255, 255, 0.4);
    }
}
