@charset "utf-8";

@keyframes loading {
	0% {opacity: 0; transform: scale(1.01);}
	100% {opacity: 1; transform: scale(1);}
}

body {
    background: #fff;
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    animation: loading 1.6s;
}

.container {
    width: 80vw;
    max-width: 920px;
    margin: 10vh auto 0;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
}

.myname {
    text-transform: uppercase;
}

main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contentLeft {
    display: flex;
    height: 320px;
    flex-direction: column;
    justify-content: space-between;
}

.cs {
    font-size: 1.2rem;
}

.contentLeft ul {
    font-size: 0.8rem;
    line-height: 1.2rem;
}

.contentRight {
    display: flex;
    height: 70vh;
    align-items: center;
}

.mainImg img {
    width: 480px;
}

footer {
    display: flex;
    width: 80vw;
    max-width: 920px;
    margin: 0 auto;
    justify-content: flex-end;
}

.youtubeLogo, .instaLogo {
    font-size: 1.4rem;
    margin-right: 12px;
}

.copyright {
    font-size: 1.2rem;
}

/* 主にスマホ用スタイル */
@media screen and (max-width: 768px) {

    .wrap {
        display: flex;
        height: 100vh;
        flex-direction: column;
        justify-content: space-between;
    }

    .container {
        width: 100vw;
        margin: 0;
    }

    h1 {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0;
        margin: 12px;
    }

    main {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: stretch;
    }

    .contentRight {
        display: block;
        height: auto;
    }

    .mainImg img {
        width: 100vw;
    }

    .contentLeft {
        display: flex;
        height: 390px;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 12px;
        padding: 12px;
    }

    .contentLeft ul {
        font-size: 0.9rem;
        line-height: 1.6rem;
    }

    footer {
        display: flex;
        width: 100vw;
        padding: 8px 12px;
    }

}

