@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    color: #90dfff;
    background-image: url(../img/thumbnail8.png);
    background-size: cover;
    /* 画像を画面全体に拡大 */
    background-position: center;
    /* 中央に配置 */
    background-repeat: no-repeat;
    /* 繰り返しを防止 */
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

a {
    color: #27359a;
}


/* メイン */

.wrapper {
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}

/* プロフィール */
#Profile {
    margin-bottom: 50px;
    margin-top: 110px;
}

#Profile .section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

#Profile .section-name {
    font-weight: normal;
    margin-bottom: 40px;
}

#Profile .detail {
    display: flex;
    justify-content: center;
    margin-top: 110px;
}

#Profile .s-title {
    font-size: 16px;
}

#Profile .detail .img {
    width: 50%;
}


#Profile .detail p {
    font-size: 14px;
    line-height: 2;
}

#Profile .Profile2 .text-title {
    margin-bottom: 20px;
}



/* プロフィール スマホ*/
@media screen and (max-width: 767px) {
    #Profile {
        margin-bottom: 30px;
        margin-top: 70px;
    }

    #Profile .section-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    #Profile .section-name {
        font-size: 14px;
        font-weight: normal;
        margin-bottom: 20px;
    }

    #Profile .detail {
        display: inline;
        justify-content: center;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    #Profile .detail .Profile1 {
        display: flex;
        justify-content: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    #Profile .Profile2 .text-title {
        margin-bottom: 10px;
    }

    #Profile .detail .img {
        width: 50%;
    }


    #Profile .detail p {
        font-size: 14px;
        line-height: 2;
    }
}



/* 発売 */

#notice {
    margin-bottom: 50px;
}

#notice .notice-title {
    font-size: 24px;
    text-align: center;
}

#notice a {
    color: #cdf1ff;
}

#notice span {
    font-size: 16px;
}



/* 発売 スマホ*/

@media screen and (max-width: 767px) {
    #notice {
        margin-bottom: 30px;
    }

    #notice .notice-title {
        font-size: 16px;
        text-align: center;
        margin-top: 20px;
    }

}