@charset "UTF-8";
/* CSS Document */

/* 全体の基本設定 */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* スクロールをメインラッパーで制御 */
.main-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto; /* 縦スクロールを有効に */
    z-index: 15;
}

/* 地図とオーバーレイ */
#map {
    position: fixed; /* 固定配置にして背景にする */
    top: 0;
    width: 100%;
    height: 100%;
}
#overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10;
    pointer-events: none;
    transition: opacity 1.5s ease;
    opacity: 1;
}

/* 固定ヘッダー */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 30;
}
.site-header .logo {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
}
.lang-switcher {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
}
.lang-switcher span.active {
    color: #fff;
    font-weight: bold;
}

/* ヒーローセクション */
.hero {
    height: 100vh; /* 画面いっぱいの高さ */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-title h1 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-title .subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
}

/* 【主役】すりガラスコンテナ */
.glass-container {
    max-width: 800px;
    margin: 0 auto 10vh auto;
    padding: 60px 50px;
    box-sizing: border-box;
    
    /* グラスモフィズムのコア設定 */
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* コンテンツ各セクション */
.content-section {
    margin-bottom: 60px;
}
.content-section h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* ステートメントのテキスト */
.statement-text p {
    font-size: 0.95rem;
    line-height: 2;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

/* 2カラムレイアウト（経歴・受賞歴用） */
.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .grid-two-col { grid-template-columns: 1fr; }
}

/* リストのデザイン */
.meta-list, .project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.meta-list li {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
    display: flex;
}
.meta-list li span:first-child {
    width: 60px;
    color: rgba(255,255,255,0.4);
}
.project-list li {
    margin-bottom: 15px;
}
.project-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}
.project-list a small {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-left: 10px;
}
.project-list a:hover { opacity: 0.7; }

/* フッター */
.content-footer {
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
}
.sns-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.sns-links a:hover { color: #fff; }
.copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 25px;
    letter-spacing: 0.05em;
}

/* Mapbox公式ロゴ類の非表示 */
.mapboxgl-ctrl-logo, .mapboxgl-ctrl-attrib {
    display: none !important;
}

/* 【言語切り替え用】表示制御 */
body.lang-en .jp { display: none !important; }
body.lang-jp .en { display: none !important; }