.article{
    display: flex;
    flex-direction: column;
    margin-bottom: 60rem;
}
.article__div{
    display: flex;
    flex-direction: column;
    padding: 20rem;
}
.article__title-group{
    margin-bottom: 20rem;
    text-shadow: 0 3rem 0 var(--nmBlack);
}
.article__date{
    font-size: 14rem;
    color: var(--nmGreen);
    margin-bottom: 20rem;
}
.article__title{
    font-size: 24rem;
    font-family: 'DotGothic16';
}
.article__level{
    display: flex;
    font-size: 20rem;
    width: fit-content;
    margin-left: auto;
    color: #FFE600;
}
.article__level-title{
    margin-right: 10rem;
}
.article__level-star{
}
.article__photos{
    width: 100%;
}
.article__main-img{
    display: block;
    width: 100%;
    border: 5rem solid var(--nmWhite);
}
.article__list{
    padding: 10rem;
    overflow-x: scroll;
    display: flex;
    margin: 20rem 0 20rem;
}
.article__list::-webkit-scrollbar {
    background: none;
}
.article__item{
    flex-shrink: 0;
    width: 70rem;
    height: 70rem;
    margin-right: 10rem;
    cursor: url("../img/neo-morisalamd-cursor-hover.png"), auto;
}
.article__item:active{
    position: relative;
    bottom: -7rem;
    left: -5rem;
}
.article__item:active  .article__item-thum{
    border-color: var(--nmGreen);
    box-shadow: none;
}
.article__item-thum{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    border: 5rem solid var(--nmWhite);
}
.article__text{
    font-family: 'DotGothic16';
    font-size: 14rem;
    letter-spacing: 0.1em;
    border-radius: 5rem;
    padding: 15rem 20rem 30rem;
}
.article__link-div{
    display: block;
}
.article__link-iframe{
    display: block;
    padding: 20rem;
    width: 100%;
    margin: 0;
    height: 100%;
    min-height: 250rem;
    border-radius: 12rem;
}

@media screen and (min-width: 600px) {
    .article{
        display: block;
        max-width: 1100rem;
        margin: 0 auto 50rem;
    }
    .article__div{
        display: block;
        padding: 0;
    }
    .article__title-group{
        order: 1;
        padding: 40rem 50rem;
        margin-bottom: 0;
        width: 100%;
    }
    .article__date{
    }
    .article__title{
        font-size: 34rem;
    }
    .article__level{
        display: flex;
        font-size: 28rem;
        margin: 0 50rem 0 auto;
    }
    .article__level-title{
    }
    .article__level-star{
    }
    .article__photos{
        max-width: 50%;
        margin: 0 30rem 20rem;
        order: 2;
        float: left;
    }
    .article__main-img{
    }
    .article__list{
        display: flex;
        margin: 30rem 0 0;
    }
    .article__item{
        width: 80rem;
        height: 80rem;
        margin-right: 10rem;
    }
    .article__item:last-of-type{
        margin-right: 0;
    }
    .article__item-thum{
    }
    .article__text{
        font-size: 16rem;
        padding: 20rem 45rem 50rem;
        min-height: 600rem;
    }
    .article__text--min-height{
        min-height: 720rem;
    }
    .article__link-div{
        padding: 30rem;
        display: flex;
        justify-content: space-between;
    }
    .article__link-iframe{
        width: calc((100% - 20rem ) / 2);
    }
    .article__link-iframe:last-of-type{
        margin-right: 0;
    }
}

.article__item-thum{
    box-shadow: -5px 7px 0px var(--nmBlack);
}
.article__main-img{
    box-shadow: -5px 7px 0px var(--nmBlack);
}

@media screen and (min-width: 600px) {
    .article__item:hover{
        position: relative;
        bottom: -7rem;
        left: -5rem;
    }
    .article__item-thum{
        transition: .3s all ease;
    }
    .article__item:hover  .article__item-thum{
        border-color: var(--nmGreen);
        box-shadow: none;
    }
}


.page--kuseimo{
    background-color: var(--nmPurple);
}
.page--daretoku{
    background-color: var(--nmBlue);
}
.page--morisalike{
    background-color: var(--nmRed);
}

.article--kuseimo{
    background-color: #551b8c;
}
.article--daretoku{
    background-color: #0085a4;
}
.article--morisalike{
    background-color: #d72536;
}

.motto_impact{
    font-family: 'Shippori Mincho', serif;
    font-size: 30rem;
}
.metcha_impact{
    font-family: 'Shippori Mincho', serif;
    font-size: 24rem;
}
.impact{
    font-family: 'Shippori Mincho', serif;
    font-size: 20rem;
}
.normal{
    font-family: 'Shippori Mincho', serif;
    font-size: 16rem;
}
.not_impact{
    font-family: 'Shippori Mincho', serif;
    font-size: 12rem;
}

@media screen and (min-width: 600px) {
    .article--morisalike{
        padding: 60rem;
    }
    .motto_impact{
        font-size: 60rem;
    }
    .metcha_impact{
        font-size: 40rem;
    }
    .impact{
        font-size: 24rem;
    }
    .normal{
        font-size: 20rem;
    }
    .not_impact{
        font-size: 14rem;
    }
}

.post__buttons{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding:0 40rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 40rem;
}
.post__button{
    display: block;
    font-size: 16rem;
    padding: 12rem 15rem 15rem;
    border: 5rem solid var(--nmBlack);
    background-color: var(--nmWhite);
    box-shadow: -5px 7px 0px var(--nmBlack);
    border-radius: 10rem;
}
.post__button--next{
    color: var(--nmGreen);
}
.post__button--back{
    color: var(--nmRed);
}
.post__butto--empty{
    background-color: gray;
    color: var(--nmBlack);
    box-shadow: none;
    position: relative;
    left: -5rem;
    top: 7rem;
}
.post__contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 0 auto 50rem;
}
.post__contact::before{
    content: "";
    display: block;
    width: 150rem;
    height: 100rem;
    background-image: url("../img/contact-visual.gif");
    background-repeat: no-repeat;
    background-size: contain;
}
.post__contact-text{
    width: 100%;
    text-align: center;
    font-size: 12rem;
    letter-spacing: 0.2em;
}
@media screen and (min-width: 600px) {
    .post__buttons{
        display: none;
        margin: 0 auto 60rem;
        max-width: 1100rem;
    }
    .post__button:hover{
        background-color: var(--nmGreen);
        color: var(--nmWhite);
        box-shadow: none;
        position: relative;
        left: -5rem;
        top: 7rem;
    }
    .post__button--next{
        margin-right: 50rem;
    }
    .post__butto--empty:hover{
        background-color: gray;
        color: var(--nmBlack);
    }
    .post__contact{
        margin: 0 auto 80rem;
    }
    .post__contact::before{
        width: 250rem;
        height: 180rem;
        background-image: url("../img/contact-visual.gif");
    }
    .post__contact-text{
        font-size: 16rem;
        letter-spacing: 0.2em;
    }
}

.sns-share__text{
    font-size: 14rem;
    width: fit-content;
    margin: 10rem auto 60rem;
}
.sns-share__list{
    display: flex;
    justify-content: space-between;
    width: fit-content;
    margin: 0 auto;
}
.sns-share__item{
    width: fit-content;
    display: block;
    margin-right: 10rem;
}
.sns-share__item:last-of-type{
    margin-right: 0;
}
.sns-share__link{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10rem;
    border-radius: 50%;
    border: 5rem solid var(--nmBlack);
    box-shadow: -3px 5px 0px var(--nmBlack);
}
.sns-share__link::before{
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 30rem;
    height: 30rem;
}
.sns-share__link--twitter{
    background: #1d9bf1;
}
.sns-share__link--twitter::before{
    background-image: url("../img/share-twitter.png");
}
.sns-share__link--facebook{
    background: #1877f2;
}
.sns-share__link--facebook::before{
    background-image: url("../img/share-facebook.png");
}
.sns-share__link--line{
    background: #01b901;
}
.sns-share__link--line::before{
    background-image: url("../img/share-line.png");
}
.button__group{

}
@media screen and (min-width: 600px) {
    .sns-share__link::before{
        width: 35rem;
        height: 35rem;
    }
    .sns-share__link:hover{
        box-shadow: none;
        position: relative;
        left: -3rem;
        bottom: -5rem;
    }
    .top__button:last-of-type{
        margin-right: 50rem;
    }
    .button__group{
        margin-bottom: 60rem;
    }
}


/* 追加コンテンツ */
.page--buyuroku{
    background-color: var(--nmBlue);
}
.article--buyuroku{
    background-color: #0088a9;
}
.article__text > a{
    background: var(--nmWhite);
    color: var(--nmPurple);
    font-weight: bold;
    cursor: url("../img/neo-morisalamd-cursor-hover.png"), auto;
    border-radius: 5rem;
    line-height: 1.8;
    padding: 0 3rem;
    text-decoration: underline;
}
a:hover{
    cursor: url("../img/neo-morisalamd-cursor-hover.png"), auto;
}
.article__img{
    width: 100%;
    height: auto;
    display: inline-block;
}
.sp__none{
    display: none;
}
.pc__none{
    display: block;
}
@media screen and (min-width: 600px) {
    .article__img{
        height: 100%;
    }
    .sp__none{
        display: block;
    }
    .pc__none{
        display: none;
    }
}