@charset "utf-8";

/* 変数定義 */
:root {
    --white: #fff;
    --black: #1B1B1B;
}

/* common */
body {
    font-family: zen-old-mincho, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
    background-color: #fff;
}

main {
    overflow: hidden;
}

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

h1 {
    font-family: "senobi-gothic", serif;
    font-weight: 500;
    font-size: 30pt;
}

h2 {
    font-family: "senobi-gothic", serif;
    font-weight: 500;
    font-size: 30pt;
}

h3 {
    font-family: "senobi-gothic", serif;
    font-weight: 500;
    font-size: 22pt;
}

p {
    font-size: 12pt;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--black);
}

li {
    list-style: none;
}

/* header */
header {
    .drawer-hamburger {
        background-color: var(--black);

        .drawer-hamburger-icon,
        .drawer-hamburger-icon::before,
        .drawer-hamburger-icon::after {
            background-color: var(--white);
        }

    }

    .drawer-menu {
        padding-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;

        .drawer-menu-item {
            font-family: "senobi-gothic", serif;
            font-size: 1.5rem;
        }
    }
}

/* fooer */
footer {
    background-color: var(--black);
    margin-top: 150px;

    .copyright {
        color: var(--white);
        text-align: center;
        padding: 10px 20px;
        font-family: "senobi-gothic", serif;
    }
}

/* common */
.title {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    display: inline-block;
    margin-bottom: 80px;
    padding: 10px 20px;
}

/* btn */
.btn {
    background-color: #931610;
    padding: 10px 20px;
    font-family: "senobi-gothic", serif;
    font-size: 2rem;
    color: var(--white);
    -webkit-transition: all .3s;
    transition: all .3s ease;
}

.btn:hover {
    transform: scale(1.05, 1.05);
}

/* followbtn */
.sp-followbtn {
    display: none;
}

.pc-followbtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: fit-content;
    margin-left: auto;
    z-index: 100;

    .btn {
        display: inline-flex;
        align-items: last baseline;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
        text-align: center;
        outline: none;
        color: #fff;
        background-color: #931610;
        position: relative;
        -webkit-transition: all .3s;
        transition: all .3s;
        border: 3px solid #fff;
        font-weight: 700;
        font-size: 18pt;

        .btntext {
            position: relative;
            padding: 30px 10px;
            line-height: 100%;
            text-align: left;
        }
    }

    .btn:hover {
        color: #fff;
        background-color: #931610;
    }

    .btn::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        -webkit-transition: all .3s;
        transition: all .3s;
        transition-property: transform;
    }

    .btn:hover .btnicon {
        filter: none;
    }

    .btnicon::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: right;
        transition-property: transform;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
}

.top {
    .mainvisual {
        display: block;
        background-image: url(../img/top_main.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        height: 100vh;
        width: 100%;
    }

    .mainvidual-sp {
        display: none;
    }

    .sentence {
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;

        .pctext {
            text-align: center;
            font-size: 1.1rem;
            margin-top: 30px;
        }

        .sptext {
            text-align: center;
            margin-top: 30px;
            display: none;
            font-size: 0.9rem;
        }
    }

    .eventinfo {
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;

        .thanks {
            text-align: center;
            margin-bottom: 80px;
        }

        .info {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 80px;

            .emphasis {
                font-size: 1.5rem;
            }

            .subtext {
                margin-left: 3rem;
            }

            .mail {
                color: #0B9F9F;
            }

            .mail:hover {
                border-bottom: 1px solid #0B9F9F;
            }
        }
    }

    .access {
        background-image: url(../img/top_mapbg.png);
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        margin-top: 150px;
        padding: 100px 0;

        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--white);

            .accessinfo {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 30px;

                .maplink {
                    margin-left: 1.2rem;
                    color: #fff;
                }

                .neareststation {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;

                    li {
                        list-style: circle;
                    }
                }

                .mapimgs {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;

                    img {
                        background-color: var(--white);
                    }

                    a {
                        color: var(--white);
                    }
                }
            }
        }
    }

    .exhibitor {
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;

        .grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(4, 1fr);
            gap: 50px 2%;
            margin-bottom: 80px;

            .artist {
                .imgarea {
                    overflow: hidden;
                }

                img {
                    -webkit-transition: all .3s;
                    transition: all .5s;
                }

                img:hover {
                    transform: scale(1.1);
                }

                .EdelWorksPrj {
                    border: solid 1px #1B1B1B;
                }
            }
        }

        .costumeslink {
            background-color: #931610;
            padding: 20px;
            color: var(--white);
            -webkit-transition: all .3s;
            transition: all .3s ease;
        }

        .costumeslink:hover {
            transform: scale(1.05, 1.05);
        }
    }
}

.profile {
    .logo {
        padding: 10px;
    }

    .introduction {
        max-width: 800px;
        margin: 0 auto;
        margin-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;

        .name {
            margin-bottom: 50px;
        }

        .biography {
            margin-top: 50px;
            margin-bottom: 30px;

            .text {
                margin-top: 10px;
                margin-left: 5%;
            }
        }

        .sns {
            a {
                color: #0B9F9F;
            }
        }
    }
}

.costume {
    .logo {
        padding: 10px;
    }

    .name {
        margin-bottom: 60px;
    }

    .explanation {
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;

        a {
            color: #0B9F9F;
        }

        a:hover {
            border-bottom: solid 1px #0B9F9F;
        }

        .row {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            gap: 50px;
        }

        .reverse {
            flex-direction: row-reverse;
        }

        iframe {
            width: 100%;
            height: 100vh;
        }

        .pdfbtn {
            margin: 20px 0 80px 0;
            padding: 20px;
            background-color: #1B1B1B;
            color: #fff;
            transition: transform 0.5s ease;
        }

        .pdfbtn:hover {
            transform: scale(1.1);
        }
    }

    .soubi_bg {
        /* background-color: #2d282e;
        color: #fff; */
        padding: 100px;
        /* フェード元 */
        background-color: #fff;
        color: #fff;
        transition: none;

        .title {
            background-color: #fff;
            color: #2d282e;
            white-space: nowrap;
        }

        .soubi_text {
            margin: 60px 0;
            text-align: center;

            h3 {
                text-align: center;
                white-space: nowrap;
            }

            p {
                margin-top: 30px;
                text-align: center;
            }

            .text {
                margin-top: 5px;
            }

            .souobi_onmyodama {
                margin-top: 100px;
            }
        }

        .soubi_title {
            color: #2d282e;
            background-color: #fff;
        }
    }

    footer {
        margin-top: 0;
    }
}

.costumelist {
    max-width: 1200px;
    margin: 0 auto;

    .titlearea {
        padding-top: 100px;
        text-align: center;
    }

    .list {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px 0;

        .row {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            background-color: rgba(255, 255, 255, 0.8);
            background-blend-mode: lighten;
            display: flex;
            align-items: center;
            padding: 20px 0 10px 20%;
            gap: 10%;
            width: 100%;
            transition: transform 0.5s ease;
        }

        .row:hover {
            background-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        .himari_reimu {
            background-image: url(../img/costume_himari_reimu.jpg);
            background-position: 50% 25%;
        }

        .marimo_marisa {
            background-image: url(../img/costume_marimo_marisa.jpeg);
        }

        .umi {
            background-image: url(../img/costume_umi1.jpg);
            background-position: 50% 25%;
        }

        .EdelWorksPrj {
            background-image: url(../img/costume_EdelWorksPrj.jpg);
            background-position: 50% 45%;
        }

        .himari_satori {
            background-image: url(../img/costume_himari_satori.jpg);
            background-position: 50% 25%;
        }

        .himari_koisi {
            background-image: url(../img/costume_himari_koisi.jpg);
            background-position: 50% 20%;
        }

        .marimo_okuu {
            background-image: url(../img/costume_marimo_okuu.png);
            background-position: 50% 45%;
        }

        .haku {
            background-image: url(../img/costume_haku1.jpeg);
            background-position: 50% 35%;
        }

        .mameta {
            background-image: url(../img/costume_mameta1.jpg);
            background-position: 50% 45%;
        }

        .namako {
            background-image: url(../img/costume_namako3.png);
            background-position: 50% 55%;
        }

        .sasara {
            background-image: url(../img/costume_sasara1.jpg);
            background-position: 50% 25%;
        }

        .nawo {
            background-image: url(../img/costume_nawo1.jpg);
            background-position: 50% 25%;
        }

        .Dai {
            background-image: url(../img/costume_Dai1.png);
            background-position: 50% 25%;
        }

        .ranek {
            background-image: url(../img/costume_ranek1.jpg);
            background-position: 50% 15%;
        }

        .yukichiro {
            background-image: url(../img/costume_yukichiro.jpeg);
        }

        .nasubi {
            background-image: url(../img/costume_nasubi1.jpeg);
            background-position: 50% 25%;
        }

        .soubi {
            background-image: url(../img/profile_soubi.png);
        }

        .acha {
            background-image: url(../img/costume_acha1.jpeg);
            background-position: 50% 25%;
        }

        .urara {
            background-image: url(../img/costume_urara3.jpeg);
            background-position: 50% 15%;
        }
    }
}