@charset "UTF-8";

/*===== header =====*/
/*フィルムノイズ*/
.film-noise {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0.8;
    mix-blend-mode: multiply;
}

/*ロゴ*/
.page-header {
    width: 100%;
    height: 60px;
    background-color: black;
    color: white;
    position: fixed;
    top: 0;
    z-index: 10;
}

.logo-header a {
    width: 30%;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}

.logo-header a:hover {
    color: rgb(220, 220, 220);
}

.logo-image {
    width: auto;
    height: 90%;
    z-index: 10;
}

.logo-char {
    margin: 10px;
    font-size: 1.5rem;
    color: white;
    line-height: 1.5rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

/*メインナビ*/
.btn-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 2px solid rgba(255, 255, 255, .5);
    color: white;
    padding: 0 0.5rem 0 0.5rem;
}

.main-nav {
    background-color: black;
    width: 0;
    height: calc(100vh - 60px);
    position: absolute;
    top: 60px;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    overflow-y: auto;
}

.main-nav.open-menu {
    width: 100vw;
}


/*=== メインナビ 改良版 ===*/
/*=== header menu ===*/
.headermenu-area {
    width: 30%;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 10px;
}

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

/*headermenu-top*/
.headermenu-btn {
    width: 200px;
}

.headermenu-top {
    width: 100%;
    background-color: white;
    color: black;
    border: 15px solid black;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 1.0) inset;
}

.headermenu-top h3 {
    color: black;
}

/*headermenu-content*/
.headermenu-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    color: white;
    font-size: 18px;
    display: none;
    overflow-y: auto;
    /* スクロール可能にする */
}

.headermenu-content a {
    text-decoration: none;
    color: white;
}

.headermenu-content a:hover {
    color: yellow;
}

.headermenu-item {
    width: 90%;
    height: auto;
    border-top: 3px dashed white;
    padding-top: 10px;
    padding-bottom: 10px;
}

.headermenu-item-link {
    width: 90%;
    height: auto;
    padding-bottom: 5px;
}

.headermenu-item-link a {
    color: white;
    text-decoration: none;
}

.headermenu-item-title {
    margin-bottom: 5px;
}

.headermenu-pattern {
    width: 200px;
    height: auto;
}

.headermenu-item-ul-1 {
    list-style-type: none;
    padding-left: 20px;
}

.headermenu-item-ul-2 {
    list-style-type: none;
    padding-left: 40px;
}

.headermenu-item-ul-1 li::before {
    content: 'ー';
    color: white;
    font-size: 1.0rem;
    margin-right: 5px;
}

.headermenu-item-ul-2 li::before {
    content: '・';
    color: white;
    font-size: 1.0rem;
    margin-right: 0px;
}



/*===== title header =====*/
/*ページタイトル*/
.film-page-title {
    height: 200px;
    margin: 10px;
    margin-top: 70px;
    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-page-title::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;
    opacity: 0.5;
    z-index: 2;
}

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

.img-page-title {
    width: 90%;
    height: auto;
    margin: 10px;
    background-color: yellow;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 1.0) inset;
}





/*===== モバイル版 =====*/
@media (max-width: 800px) {

    /*===== header =====*/
    /*ロゴ*/
    .logo-header a {
        width: 85%;
        height: 60px;
    }

    .logo-header a:hover {
        color: rgb(220, 220, 220);
    }

    .logo-char {
        font-size: 1.8rem;
    }

    /*=== メインナビ 改良版 ===*/
    /*=== header menu ===*/
    .headermenu-area {
        width: 90%;
    }

    /*===== title header =====*/
    /*ページタイトル*/
    .film-page-title {
        height: 100px;
        margin: 10px;
        margin-top: 70px;
        padding: 5px;
    }

    .film-page-title h1 {
        font-size: 3.5rem;
    }

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

    .img-page-title {
        width: 90%;
        height: 70%;
        ;
        margin: 5px;
    }
}