@charset "UTF-8";

/* Main
=======================================================*/
#pagetitle{
    display: none;
}
.shingle_wrapper{
    position: relative;
    padding: 150px 0 0;
    animation: fade 1.8s linear forwards;
}
@keyframes fade{
    0% { opacity: 0;}
    100% { opacity: 1;}
}

.single_title{
    font-size: 36px;
}
span.line {
    display: block;
    width: 0;
    height: 1px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--color_5), #ff6b6b);
    animation: line 1.2s ease-in-out 1s forwards;
}
@keyframes line{
    0% { width: 0;}
    100% { width: 100%;}
}
.shingle_wrapper p.en{
    position: absolute;
    bottom: 100px;
    right: 0;
    display: inline-block;
    font-size: 58px;
    font-weight: bold;
    font-family: "Nothing You Could Do", cursive;
    letter-spacing: 0.2em;
    transform: rotate(-13deg);
    color: transparent;
    background-image: linear-gradient(90deg, var(--color_5), #ff6b6b 50%, transparent 50%, transparent);
    background-position: 100% 0;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 200% 100%;
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1);

    animation: line2 0.6s ease-in-out 2.4s forwards;
}
@keyframes line2{
    0% { background-position: 100% 0;}
    100% { background-position: 0 0;}
}
.post-link {
    width: 300px;
    display: flex;
    justify-content: space-between;
    margin: 200px auto 0;
    color: var(--color_4);
}

@media screen and (max-width: 1024px) {
    .shingle_wrapper p.en{
        font-size: 48px;
    }
}

@media screen and (max-width: 896px) {
    .shingle_wrapper{
        padding: 80px 0 0;
    }
    .shingle_wrapper p.en{
        font-size: 48px;
    }
    .post-link {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .shingle_wrapper{
        padding: 50px 0 0;
    }
    .single_title{
        font-size: 24px;
    }
    .shingle_wrapper p.en{
        bottom: 100px;
        font-size: 36px;
    }
}
@media screen and (max-width: 350px) {
    .shingle_wrapper p.en{
        font-size: 30px;
    }
}