@charset "UTF-8";


h1 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    padding-top: 30px;
}

h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    border-radius: 20px;
    background-color: #d2d2d2;
}


/* los header */

.lostop {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60vh;
    min-height: 450px;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../los/img/banner/top.jpg);
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.lostop p {
    margin-top: 10;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 3;
}

.lostop a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    border: solid 1px currentColor;
    border-radius: 30px;
    background-color: #3374b5;
    font-size: 14px;
    color: #ffffff;
}

.lostop a:hover {
    background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2));
}

/* eden header */

.edentop {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80vh;
    min-height: 450px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../eden/img/banner/top.jpg);
    background-position: left;
    background-size: cover;
    color: #ffffff;
}

.edentop p {
    margin-top: 10;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 3;
}

.edentop a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    border: solid 1px currentColor;
    border-radius: 30px;
    background-color: #3374b5;
    font-size: 14px;
}

.edentop a:hover {
    background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2));
}


/* story */

.story .container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
}

.story p {
    text-align: center;
    line-height: 2.5;
    font-size: 16px;
    padding-top: 20px;
}

@media (max-width: 767px) {
    .story img {
        width: 80%;
        height: auto;
    }
    
    .story .container {
        width: 100%;
        padding: 0;
    }
    .story h4 {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .chara h4 {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* character */

.chara {
    padding-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.chara .container {
    padding-top: 40px;
    padding-bottom: 10px;
}

.chara p {
    margin-top: 0;
}

.chara .text {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .chara .container {
        display: flex;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .chara .text {
        flex: 1;
    }
}

/* comic */
.comic {
    padding-top: 30px;
}

.comic .container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 10px;
    padding-bottom: 60px;
}

.comic p {
    margin: 0;
}

.comic ul {
    padding-left: 0;
}

.comic ul li {
    display: inline-block;
    margin: 10px;
}

.comic a:hover {
      opacity: 0.6;
}

@media (min-width: 768px) {
    .comic .episode {
        display: flex;
        padding-bottom: 20px;
    }
    
    .comic .text {
        margin-left: 20px;
    }
}

@media (max-width: 767px) {
    .comic img {
        width: 100%;
        height: auto;
    }
}