@charset "UTF-8";

.pc__mainimg {
    height: 100vh;
    /* 画面の高さ100% */
    overflow: hidden;
}

.pc__mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像をはみ出さずに拡大・トリミングして表示 */
}

.section--coffee .title__box {
    position: relative;
    margin-top: 88px;
}

.section--coffee .section__title {
    text-align: right;
    right: 10px;
    top: 0;
    position: absolute;
}

.section--coffee .section__title::before {
    content: '';
    display: block;
    width: 0.5px;
    height: 49px;
    background: #fff;
    margin-left: 60%;
}

.section--coffee .main__img {
    width: 375pxpx;
    height: auto;
    margin: 0 auto;
}

.explanation {
    margin: 34px 11% 37px;
    font-size: 1.4rem;
    line-height: 28px;
    letter-spacing: 0.35px;
}

.sub__explanation {
    font-size: 1.4rem;
    letter-spacing: 0.21px;
    margin: 0 11% 66px;
}

.section--coffee .sub__title {
    font-family: "Nothing You Could Do";
    font-size: 2.6rem;
    text-align: center;
}

.section--coffee .sub__title::before {
    content: '';
    display: block;
    width: 0.5px;
    height: 49px;
    background: #232321;
    margin: 0 auto;
}

.section--coffee .second__img {
    width: 310px;
    height: auto;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

.coffee__contents {
    padding: 36px 9.6% 73px;
}

.coffee__contents .topic {
    padding-top: 30px;
    padding-bottom: 30px;

}

.coffee__contents .title {
    font-size: 2.4rem;
    font-weight: 600;
}

.coffee__contents .title__decorete,
.method {
    font-size: 1.4rem;
    line-height: 28px;
    letter-spacing: 0.35px;
}

.coffee__contents .method {
    padding-top: 20px;
}

.coffee__contents .txt {
    padding-top: 20px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1.19px;
    text-align: justify;
}


/* pc */
@media screen and (min-width:769px) {
    .section--coffee .main__img {
        width: 100%;
        height: auto;
    }

    .section--coffee .section__title {
        right: 60px;
        font-size: 3.6rem;
    }

    .coffee__contents .topic {
        margin-left: 7%;
    }

    .explanation {
        font-size: 1.6rem;
        text-align: center;
    }

    .sub__explanation {
        margin: 35px 19% 72px;
        letter-spacing: 1.52px;
    }

    .section--coffee .second__img {
        width: 80%;
        height: auto;
    }

    .coffee__contents .title {
        font-size: 2.6rem;
    }

    .coffee__contents,
    .title__decorete,
    .method,
    .txt {
        font-size: 1.6rem;
    }

    .coffee__contents .topic {
        padding-right: 5%;
    }


}
/* フェードアップアニメーション */
@keyframes fadeUpAnime {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUp {
    opacity: 0;
}

.fadeUp.animated {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}