@charset "UTF-8";

body {
    background-color: #fcf7ee;
    font-family: 'Helvetica Neue', 'Helvetica', 'Arial', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
}

.wrapper {
    margin: 0 auto;
    width: 85%;
    color: #000000;
}

header {
    margin-top: 30px;
}

nav {
    display: flex;
    justify-content: space-between;
}

.crown_icon {
    width: 45px;
    height: auto;
}

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

li {
    margin-left: 80px;
}

.nav_underline_box {
    border-bottom: 3px solid #000033;
}

a {
    color: #000033;
    text-decoration: none;
    font-size: 20px;
    font-family: termina, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.artwork_highlight {
    font-size: 190px;
    font-family: subway-new-york-sc, sans-serif;
    font-style: normal;
    color: #1fbcff;
    margin-top: 40px;
}

.top_content {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.left_box {
    width: 80%;
}

.left_box__text {
    line-height: 32px;
    margin-top: 100px;
    font-size: 16px;
    letter-spacing: -0.2px;
}

.left_box__text p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #000000;
    font-weight: normal;
}

.description {
    display: flex;
    justify-content: space-between;
    margin-top: 200px;
}

.description h1 {
    font-size: 86px;
}

.description p {
    line-height: 32px;
    font-size: 18px;
}

.underline_box01 {
    position: relative;
}

.underline_box01 h1 {
    position: absolute;

}

.underline_box01 img {
    width: 430px;
    height: 20px;
    margin-top: 70px;
}

.number {
    font-family: subway-new-york-sc, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #00B4FF;
    font-size: 80px;
    margin-right: 10px;
}

.description h3 {
    font-size: 53px;
}

.description02, .description03 {
    margin-top: 70px;
}

.description_text {
    width: 50%;
}

.description_text p {
    margin-top: 30px;
    margin-bottom: 60px;
}

.best4 {
    margin-top: 160px;
}

.best4 h1 {
    font-size: 85px;
}

.best4 h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.best4 p {
    line-height: 32px;
    font-size: 18px;
}

.underline_box02 {
    position: relative;
}

.underline_box02 h1 {
    position: absolute;

}

.underline_box02 img {
    width: 750px;
    height: 20px;
    margin-top: 70px;
}

.best4_01 {
    display: flex;
    justify-content: space-between;
    margin-top: 130px;
}

.best4_02, .best4_03, .best4_04 {
    display: flex;
    justify-content: space-between;
    margin-top: 170px;
}

.best4_01__text, .best4_02__text, .best4_03__text, .best4_04__text {
    width: 47%;
}

.best4_01__img, .best4_02__img, .best4_03__img, .best4_04__img {
    width: 50%;
}

.best4_01__img img {
    width: 550px;
    height: auto;
    padding-left: 50px;
}

.best4_02__img img {
    width: 550px;
    height: auto;
    padding-left: 50px;
}

.best4_03__img img {
    width: 550px;
    height: auto;
    padding-left: 50px;
}

.best4_04__img img {
    width: 550px;
    height: auto;
    padding-left: 50px;
}

.footer_ul {
    display: flex;
    justify-content: space-between;
    width: 40%;
    margin: 0 auto;
    margin-top: 160px;
    margin-bottom: 80px;
}


/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
    opacity: 0;
}