@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;
}

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

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

.left_box {
    width: 50%;
}

.left_box p {
    line-height: 32px;
    margin-top: 100px;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.right_box {
    width: 50%;
    text-align: center;
    margin-top: 130px;
}

.right_box p {
    font-size: 170px;
    letter-spacing: -10px;
}

.p_1960 {
    margin-bottom: 130px;
}

.second_content {
    margin-top: 180px;
    display: flex;
    justify-content: space-between;
}

.second_content__text_wrapper {
    width: 50%;
    background-color: #00B4FF;
    display: flex;
    align-items: center;
}

.second_content__text_box {
    margin: 0 auto;
    /* background-color: antiquewhite; */
}

.second_content__p {
    text-align: center;
    font-size: 23px;
    font-family: termina, sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
}

.second_content__p02 {
    text-align: center;
    color: #ffffff;
    margin-top: 15px;
}

.second_content__p03 {
    color: #ffffff;
}

.second_content img {
    width: 50%;
    height: auto;
}

.timeline_content {
    margin-top: 350px;
}

.timeline_content__year {
    font-size: 300px;
    font-family: subway-new-york-sc, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.timeline_content__year_box {
    width: 50%;
    padding-bottom: 12px;
}

.timeline_content01 {
    border-bottom: 1px solid #cfcfcf;
    display: flex;
    justify-content: space-between;
}

.timeline_content01__text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    line-height: 32px;
    margin-top: 100px;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.timeline_content01__text img {
    margin-left: 50px;
    margin-bottom: 60px
}


.timeline_content02, .timeline_content03, .timeline_content04, .timeline_content05, .timeline_content06, .timeline_content07, .timeline_content08, .timeline_content09 {
    border-bottom: 1px solid #cfcfcf;
    display: flex;
    justify-content: space-between;
    margin-top: 130px;
}

.timeline_content02__text, .timeline_content04__text, .timeline_content05__text, .timeline_content06__text, .timeline_content09__text {
    width: 50%;
    display: flex;
    align-items: center;
    line-height: 32px;
    margin-top: 100px;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.timeline_content03__text, .timeline_content07__text {
    line-height: 32px;
    margin-top: 50px;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.timeline_content03__text_box, .timeline_content07__text_box, .timeline_content08__text_box {
    display: flex;
    align-items: center;
    width: 50%;
    margin-top: 110px;
}

.timeline_content03__text img {
    margin-top: 70px;
    margin-bottom: 90px;
}

.timeline_content07__text img {
    margin-top: 70px;
    margin-bottom: 90px;
}

.timeline_content08__text img {
    margin-top: 70px;
    margin-bottom: 90px;
}

footer {
    margin-top: 230px;
    margin-bottom: 80px;
}

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


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


/* 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;
}