body {
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
    background-color: black;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header, section, footer {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 300px;
    height: auto;
}

h1, h2 {
    color: pink;
    font-size: 2em;
}

#registration button {
    background-color: pink;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#popupForm {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
}

#popupForm form {
    display: flex;
    flex-direction: column;
}

#popupForm label, #popupForm input {
    margin: 10px 0;
}

.speaker {
    display: inline-block;
    margin: 10px;
}

.speaker img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.sponsor-logos img {
    margin: 10px;
    height: 50px;
}

footer {
    background-color: grey;
    color: white;
}

.hidden {
    display: none;
}
#countdown {
    color: pink;
    margin: 20px 0;
}

#time {
    font-size: 1.5em;
    letter-spacing: 3px;
}

.video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2; /* 背景動画のz-indexを下げる */
}

.overlay {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* オーバーレイの色と透明度 */
    z-index: -1; /* オーバーレイのz-indexを背景動画より上、コンテンツより下に設定 */
}

body, html {
    height: 100%;
    margin: 0;
}

body {
    position: relative;
    z-index: 1; /* コンテンツのz-indexをオーバーレイより上に設定 */
}
#scrollTopButton {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: pink;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 50%;
}
.ripple {
    position: fixed;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 1s linear;
    pointer-events: none;
    z-index: 1000;
    border: 2px solid pink; /* 円線をピンク色に設定 */
    width: 20px; /* 初期サイズ */
    height: 20px; /* 初期サイズ */
    opacity: 0.75;
    margin-left: -10px; /* X軸中心に配置 */
    margin-top: -10px; /* Y軸中心に配置 */
}

@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 0.75;
    }
    80% {
        transform: scale(3);
        opacity: 0.4;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}
#schedule img {
    max-width: 100%;
    height: auto;
    display: block; /* 画像をブロック要素として扱う */
    margin: 0 auto; /* 中央揃え */
}

