@charset "UTF-8";

/*===== index =====*/
body {
    background-color: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body a {
    color: white;
}

body a:hover {
    color: rgb(200, 200, 200);
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}

/*ロゴ設定*/
.logo-index {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-index-icon {
    width: 200px;
    height: auto;
    margin: 20px;
}

.logo-index-string {
    color: white;
}

.logo-index-string a {
    color: white;
}

.logo-index-string a:hover {
    color: rgb(200, 200, 200);
}

/*WELCOME 設定*/
.film-index {
    width: 300px;
    height: 80px;
    margin: 10px;
    margin-top: 50px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: black;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.film-index a {
    width: 90%;
    height: 70%;
    margin: 5px;
    background-color: white;
    color: black;
}

.film-index a:hover {
    background-color: red;
    color: yellow;
}

.film-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/texture/woodboard-02.jpg') !important;
    background-size: cover;
    background-position: center;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.5;
    z-index: 2;
}

.stripe-index {
    width: 95%;
    height: 10%;
    background: repeating-linear-gradient(90deg,
            white 0%,
            white 10%,
            black 10%,
            black 20%);
    background-size: 20% 100%;
    /* ストライプのサイズを適切に */
    animation: moveStripes-x 4s linear infinite;
    display: block;
}

.img-index {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.0rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 1.0) inset;
}