@charset "UTF-8";

/* リセット */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px; /* フッターの高さ分の余白 */
}

/* リンクのスタイル */
a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: orange;
}

.navbar {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

.navbar nav {
    display: flex;
    align-items: center; /* 中央揃え */
    justify-content: space-between; /* ロゴとメニューの間にスペースを作る */
}

.logo img {
    height: 40px; /* ロゴの高さを調整 */
    margin-left: 20px; /* 左側の余白 */
}

.navbar nav ul {
    list-style: none;
    padding: 0;
    margin: 0; /* マージンをリセット */
}

.navbar nav ul li {
    display: inline;
    margin: 0 15px;
}

.social-icon {
    height: 30px; /* インスタグラムアイコンの高さを調整 */
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
}

.container {
    flex: 1;
    padding-bottom: 60px; /* フッターの高さ分の余白 */
}

.left-image {
    flex: 1; /* 50%の幅を持つ */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* 背景色 */
}

.left-image img {
    max-width: 100%;
    height: auto;
}

.carousel {
    flex: 1; /* 50%の幅を持つ */
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

/* PC用のスタイル */
@media (min-width: 768px) {
    .left-image, .carousel {
        flex: 1; /* 50%の幅を持つ */
    }
}

/* メインコンテンツのスタイル */
.main-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px; /* フッターとの間隔を確保 */
}

/* フライヤー画像のスタイル */
.flyer-container {
    width: 100%;
}

.flyer-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* カルーセルのスタイル */
.carousel-container {
    width: 100%;
    position: relative;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel .slider {
    width: 100%;
    height: 100%;
    display: flex;
}

.carousel .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.carousel .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* PC表示用のスタイル */
@media (min-width: 768px) {
    .main-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .flyer-container {
        width: 50%;
    }

    .carousel-container {
        width: 50%;
    }
}

/* 水平スクロールギャラリーのスタイル */
.scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}

.scroll-content {
    height: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    transform: translateX(0);
    will-change: transform;
}

.scroll-item {
    height: 100%;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-item img {
    height: 100%;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* フッター */
.footer {
    background-color: #f5f5f5;
    color: #000000;
    text-align: center;
    padding: 40px 0 20px;
    width: 100%;
    margin-top: auto;
}

/* スクロールコンテンツにホバー時のスタイル定義は不要になりました */

/* アートイベント参加者情報のスタイル */
.event-info {
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
}

.event-section {
    margin-bottom: 30px;
}

.event-section h2 {
    font-family: "futura-pt", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.participant-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.participant {
    font-family: "futura-pt", sans-serif;
    line-height: 1.6;
}

.participant .name-jp {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.participant .name-en {
    font-size: 14px;
    margin-top: 1px;
    display: block;
}

@media (max-width: 768px) {
    .participant-list {
        grid-template-columns: 1fr;
    }
}

/* index.htmlページ専用スタイル */
.main-body {
    padding-top: 60px;
    background-color: #B0C4DE;
}

.main-navbar {
    height: 60px;
    background-color: #ffffff;
}

.logo-container {
    width: 100px;
}

.logo-image {
    height: 30px;
}

.social-container {
    width: 200px;
    justify-content: flex-end;
}

.blank-gallery-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
}

.social-icon {
    display: block;
    filter: brightness(0) saturate(100%);
}

.twitter-icon {
    height: 16px;
}

.instagram-icon {
    height: 20px;
}

.flyer-section {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}

.flyer-container {
    text-align: center;
    flex: 1;
    width: 100%;
}

.flyer-image {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.footer-text {
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-size: 12px;
}

/* PCでの画像等倍表示 */
@media (min-width: 768px) {
    .flyer-section {
        flex-direction: row;
        gap: 0;
    }
    
    .flyer-image {
        max-width: 100%;
        width: auto;
        height: auto;
    }
    
    /* 画像の元のサイズを超えないようにする */
    .flyer-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    
    .flyer-container a {
        display: block;
    }
}