@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900');

*, *::before, *::after {
    color: #555;
    font-size: 14px;
    box-sizing: border-box;
    font-family: "Noto sans JP"
}

/*
keycolor: #777bd7;
LED Logo: #08348a
*/
html, body, * {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4 {
    font-family: "Noto Sans JP";
    font-weight: 300;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
body {
    min-height: 100vh;
    line-height: 2.1;
    -webkit-font-smoothing: antialiased;
    background: #F5F5F5;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
.pc {
    display: none;
}
/* main */
nav .logo {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 135px;
}
    nav .logo .navLinkArea {
    }
/* header */
header {
    position: relative;
    height: 100dvh;
    background-image: linear-gradient(0deg, #f9e4f8 5%, transparent 25%);
    overflow: hidden;
}
    header::before {
        content: "";
        display: block;
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background-image: url(../img/MV_object_bg.jpg);
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;        
    }
    /*
    header::after {
        content: "";
        display: block;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        mix-blend-mode: screen;
        background-image: url(../img/MV_prism.png);
        background-size: contain;
        background-position: 0 20%;
        background-repeat: no-repeat;        
    }
    */
    header #mv_person {
        position: absolute;
        display: flex;
        justify-content: center;
        bottom: 0;
        width: 100%;
        z-index: -1;
    }
        header #mv_person img {
            display: block;
            margin: 0 auto;
            height: 90dvh;
            max-width: fit-content;
        }
    header h1 {
        position: absolute;
        bottom: 10%;
        text-align: center;
        width: 100%;
        font-size: 4rem;
        line-height: 4.4rem;
        font-style: italic;
        background: linear-gradient(0deg, #9aa0e4, #fea6ec);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
        header h1::before {
            position: absolute;
            content: "";
            top: 8px;
            left: -8px;
            width: 100%;
            height: 52px;
            background: rgba(255, 255, 255, 0.7);
            z-index: -1;
            transform: skewX(-14deg);
        }
        header h1::after {
            position: absolute;
            content: "";
            top: 68px;
            left: 48px;
            width: 90%;
            height: 56px;
            background: rgba(255, 255, 255, 0.8);
            z-index: -1;
            transform: skewX(-14deg);
        }
.flex {
    display: flex;
    flex-wrap: wrap;
}
    .flex > * {
        flex: 1 1 0;
    }
#instagramIcon {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 48px;
    z-index: 10;
}

/* article */
article {
    position: relative;
    background: linear-gradient(#f9e4f8, #cbddf6 25%, #f9e4f8 50%, #cbddf6);
}

/* section */
section {
    position: relative;
    padding: 40px 0;
}
    
    section h2 {
        padding: 36px 8px;
        font-size: 1.6rem;
        color: #777bd7;
        font-weight: 300;
        text-align: center;
        line-height: 2.4rem;
    }
    section > div {        
        position: relative;
    }
    section .textarea {
        padding: 16px;
        color: #555555;
        text-align: justify;
    }

    section > div .textarea p {
        font-size: 1rem;
    }
        section.img_pos_center .textarea {
        }
        section.img_pos_left .textarea {
        }
        section.img_pos_right .textarea {
        }
        section > div .textarea p span {
            font-size: 0.7rem;
        }

    section .imagearea {
        width: 80%;
        background-image: linear-gradient(0deg, rgba(255,255,255,.7), rgba(255,255,255,0.2))
    }
        section.img_pos_center .imagearea {
            margin: 0 10%;
            background: none;
        }
        section.img_pos_left .imagearea {
            margin-right: 20%;
            border-radius: 0 10em 0 0;
        }
            section.img_pos_left .imagearea .image {
                margin-left: 21%;
                width: 80%;
            }
        section.img_pos_right .imagearea {
            margin-left: 20%;
            border-radius: 10em 0 0 0;
        }
            section.img_pos_right .imagearea .image {
                margin-left: 20%;
                width: 80%;
            }
    
    /* beforeafter */
    section .beforeafter {
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }
        section .beforeafter > div {
            flex: 1 1 0;
            padding: 12px;
        }
        section .beforeafter::after {
            content: "▶";
            position: absolute;
            display: block;
            top: 30%;
            left: 50%;
            transform: translateX(-50%);
        }
    /* compareTable */
    section table.compareTable {
        margin-bottom: 40px;
        width: 100%;
    }
        section table.compareTable th,
        section table.compareTable td {
            padding: 8px;
            width: 50%;
            font-weight: 400;
            border-bottom: 1px solid #CCC;
        }
        section table.compareTable th {
            text-align: right;
        }
        section table.compareTable .ledextension {
            color: #08348a;
        }
            section table.compareTable span {
                font-size: 1.8rems;
                line-height: 0.7;
                letter-spacing: 0.1rem;
            }
        

    /* section01 */
        section.section01 .textarea {
            position: absolute;
            bottom: 20%;
            width: 60%;
        }
        section.section01 .flex {
            padding-bottom: 64px;
            text-align: center;
        }
            section.section01 .flex h4 {
                position: relative;
                margin: -8px auto 12px auto;
                padding: 0 12px;
                width: fit-content;
                color: #FFF;
                border-radius: 24px;                
                background: #CCC;
            }
            section.section01 .flex h4.ledextension {
                background: #08348a;
            }
            section.section01 .flex p {
                font-size: 2.8rem;
                line-height: 0.7;
                letter-spacing: 0.1rem;
            }
                section.section01 .flex p span {
                    font-size: 1.6rem;
                }

    /* authorizeArea */
    section.authorizeArea {
        background: #FFF;
    }
        section.authorizeArea h2 {
            padding-top: 0;
        }
        section.authorizeArea > p {
            margin: 0 20px;
            padding: 4px 24px;
            text-align: justify;
        }
    /* instagramArea */
    section.instagramArea {

    }
        section.instagramArea h3 {
            text-align: center;
        }
        section.instagramArea .flex > div {
            flex: unset;
            width: calc(100% / 3);
        }
    /* cmArea */
    section.cmArea {
        z-index: 3;
    }

/* footer */
footer {
    padding: 24px;
    text-align: center;
    background: #08348a;
}
    footer * {
        color: #FFF;
    }
    footer .flex > * {
        margin: 16px;
    }
    footer p {
        font-size: 0.8rem;
    }

    /* button */
.linkList {
    display: flex;
    padding-bottom: 54px;
    flex-wrap: wrap;
}
    .linkList > a {
        position: relative;
        display: block;
        flex: 1 1 0;
        margin: 12px 24px;
        padding: 20px;
        text-align: center;
        line-height: 1.2;
        border-radius: 36px;
        z-index: 1;
    }
        .linkList > a::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-radius: 36px;
            z-index: -1;
        }
            .linkList > a.led::before {
                background: linear-gradient(45deg, #0129fc, #9d00ff);
            }
            .linkList > a.instagram::before {
                background: linear-gradient(45deg, #fc01d8 0%, #fc01d8, #ff0f3f, #ffc500);
            }

        .linkList > a::after {
            content: "";
            position: absolute;
            width: calc(100% - 4px);
            height: calc(100% - 4px);
            top: 2px;
            left: 2px;
            background: rgba(255,255,255,0.9);
            border-radius: 36px;
            z-index: -1;
        }

        .linkList > a p {
            font-size: 1.2rem;
        }
            .linkList > a.led p {
                color: #0129fc;
            }
            .linkList > a.instagram p {
                color: #fc01d8;
            }

#instagram_link {
    position: absolute;
    display: block;
    margin: 24px 10%;
    width: 80%;
    text-align: center;
    z-index: 1;
}
    #instagram_link::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 36px;
        background: linear-gradient(45deg, #fc01d8 0%, #fc01d8, #ff0f3f, #ffc500);
        z-index: -1;
    }
    #instagram_link::after {
        content: "";
        position: absolute;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        top: 2px;
        left: 2px;
        background: rgba(255,255,255,0.9);
        border-radius: 36px;
        z-index: -1;
    }
    #instagram_link p {
        padding: 12px 0;
        color: #d83cfd;
        font-size: 1.2rem;
    }

/* Default Animation*/
.anim {
    transition: .8s;
}

.anim.blur {
    filter: blur(8px);
    transform: scale(1.2);
    opacity: 0;
}
.anim.opacity {
    opacity: 0;
}
.anim.slideup {
    transform: translateY(40px);
    opacity: 0;
}


/* SLIDE */
.slideArea {
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
    .slideArea p {
        animation: slideshow 4s linear infinite;
        infinite;
        display: none;
    }
    .slideArea p.active {
        position: relative;
        display: block;
        z-index: 1;
    }
        .slideArea p img {
            max-width: unset;
            height: 100dvh;
        }

@keyframes slideshow {
    0% {
        opacity: 0;
        transform:scale(1);
    }
    20%{
        opacity: 1;
    }
    100% {
        transform:scale(1.1);
    }
}

/* STAR */
.star {
    animation: shootingstar 20s linear;
    display: block;
    line-height: 1em;
    position: fixed;
    top: -1em;
    background: url("../img/star.png") no-repeat;
    background-size: contain;
    opacity: 0.6;
    z-index: 2;
}

@keyframes shootingstar {
    0% {
        transform:translateY(0);
    }
    100% {
        transform:translateY(calc(100vh + 1em));
    }
}

/* LOADER */
#preloadArea {
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    background-image: url(../img/MV_object_bg.jpg);
    background-size: cover;
    background-color: #FFF;
    z-index: 100;
}
    #preloadArea p {
        position: relative;
        margin: 24px auto;
        top: 30%;
        width: 60%;
        text-align: center;
        font-size: 1.4rem;
    }

/* PC */
@media screen and (min-width: 621px) {
    .pc {
        display: block;
    }
    #wrapper {
        display: flex;
    }
    header h1 {
        font-size: 4.8rem;
        line-height: 4.8rem;
    }
        header h1::before {
            top: 28px;
            left: -24px;
            width: 100%;
            height: 50px;
        }
        header h1::after {
            top: 90px;
            left: 65px;
            width: 90%;
            height: 48px;
        }
    nav {
        position: fixed;
        width: 100dvw;
        height: 100dvh;
        background: #F5F5F5;
        background-image: url(../img/MV_object_bg.jpg);
        background-size: cover;
        z-index: 1;
    }
        nav .logo {
            position: absolute;
            top: 25%;
            left: 5%;
            width: 20%;
            max-width: 360px;
        }
        nav .navLinkArea {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
            nav .navLinkArea > * {
                display: block;
                margin: 32px 8px;
                padding: 12px;
                opacity: 0.5;
                border-radius: 54px;
                box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.2);
                width: 30%;
                background: #FFF;
            }
                nav .navLinkArea > *:hover {
                    opacity: 1;
                }
    main {
        position: relative;
        top: 0;
        right: calc(-80% + 480px);
        width: 480px;
        box-shadow: 0 0 16px 0px rgba(0,0,0,0.2);
        z-index: 2;
    }
    footer {
        position: fixed;
        padding: 0 40px;
        right: 0;
        bottom: 12px;
        width: 20%;
        max-width: 280px;
        border-radius: 12px;
        background: none;
        z-index: 1;
    }
        footer .flex {
            flex-direction: column;
        }

    main header {
        overflow: visible;
    }
    section h2 {
        font-size: 2.4rem;
    }
    section > div .textarea p {
        font-size: 1.2rem;
    }
    .slideArea p {
        width: auto;
        height: 100dvh;
    }
        .slideArea p img {
            display: block;
            height: 120%;
            max-width: fit-content;
        }
    section.authorizeArea h2 {
        font-size: 2rem;
    }
}
/* POSITION ADJUST */
@media screen and (min-width: 951px) {
}