/* ====== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: source-han-sans-japanese, sans-serif;
    font-style: normal;
    font-weight: 100;
    color: black;
}

/* ← 背景色は body にだけ指定 */
body {
    background:white;
}

/* ====== HEADER ====== */
.header {
	background: transparent;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.header-sub {
    font-size: 12px;   /* ← 好きなサイズに変更 */
    font-weight: 400;  /* ← 細さも調整できる（任意） */
	color: black;
}

.header-left h1 {
    font-size: 20px;
    font-weight: bold;
}

.header-left p {
    font-size: 12px;
    margin-top: 2px;
}

.header-icons a {
    font-size: 22px;
    color: black;
    text-decoration: none;
    transition: opacity 0.2s;
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-right a:hover {
    opacity: 0.6;

}
/* SNSアイコンリンクの下線を完全に無効化 */
.sns-icon-link {
    text-decoration: none !important;
    border: none !important;
}

.sns-icon {
    color: black!important;
    font-size: 22px;
    transition: 0.3s;
}

.sns-icon:hover {
    opacity: 0.5;
}

/* ヘッダー：サイトタイトルのリンク */
.site-link {
    font-size: 25px;       /* ← 元の大きさに戻す（お好みで調整OK） */
    font-weight: 300;      /* ← 太字に戻す */
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.site-link:hover {
    opacity: 0.5;
}

/* ====== 背景動画（スクロールすると消える） ====== */
.video-wrap {
    width: 100vw;
    aspect-ratio: 16 / 9;
    margin-top: 70px; /* ヘッダー分 */
    overflow: hidden;
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ====== MAIN CONTENT ====== */
.content {
    padding: 100px 10vw;  /* 左右に10%ずつ余白 → 可変で美しい */
    max-width: 1400px;    /* 900px → 1400px に拡張 */
    margin: auto;
    line-height: 1.9;     /* 読みやすく */
    font-size: 11px;      /* 文字少し大きく */
	color: black;
}

.WORK {
	margin-top: 60px;
}
/* ====== EVENT IMAGE GRID ====== */
.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 50px 0;
}

.event-grid a {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形維持 */
    overflow: hidden;
}

.event-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.event-grid img:hover {
    opacity: 0.7;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .header {
        height: 60px;
        padding: 0 18px;
    }
    .header-left h1 {
        font-size: 16px;
    }
    .event-grid {
        grid-template-columns: 1fr;
    }
}

/* ← メディアクエリの外に置く */
.Event-Caption {
    padding: 50px 40px;
    max-width: 900px;
    margin: auto;
    color: black;
    margin-top: 70px;
}