@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500&display=swap');
/* ====================================================

    ┏───────────────────────┓
    │   Table Of Contents   │
    ┗───────────────────────┛

    1. Pager Block


==================================================== */
/* ====================================

    1. Pager Block

==================================== */
.pager-block
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 45px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 768px)
{
    .pager-block
    {
        margin-top: 6vw;

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
}

.pager-block > .item
{
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 50px;
    height: 50px;

    color: #999;
    background-color: #ddd;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 769px)
{
    .pager-block > .item
    {
        -webkit-transition: background-color .4s ease-out, color .4s ease-out;
                transition: background-color .4s ease-out, color .4s ease-out;
    }
    .pager-block > .item:hover
    {
        color: #fff;
        background-color: #38c1f4;
    }
}

@media screen and (max-width: 768px)
{
    .pager-block > .item
    {
        font-size: 16px;
        font-size: 1.6rem;

        width: 9.86667vw;
        height: 9.86667vw;
    }
}

.pager-block > .item + .item
{
    margin-left: 14px;
}

@media screen and (max-width: 768px)
{
    .pager-block > .item + .item
    {
        margin-left: 2.66667vw;
    }
}

.pager-block > .item.-current
{
    color: #fff;
    background-color: #38c1f4;
}

@media screen and (min-width: 769px)
{
    .pager-block > .arrow:hover > .icon
    {
        fill: #ffe420;
    }
}

.pager-block > .arrow > .icon
{
    width: 12px;
    height: 21px;

    fill: #ddd;
}

@media screen and (min-width: 769px)
{
    .pager-block > .arrow > .icon
    {
        -webkit-transition: fill .4s ease-out;
                transition: fill .4s ease-out;
    }
}

@media screen and (max-width: 768px)
{
    .pager-block > .arrow > .icon
    {
        width: 2.88vw;
        height: 5.04vw;
    }
}

.pager-block > .arrow.-prev
{
    margin-right: 30px;
}

@media screen and (max-width: 768px)
{
    .pager-block > .arrow.-prev
    {
        margin-right: 4.66667vw;
    }
}

.pager-block > .arrow.-next
{
    margin-left: 30px;
}

@media screen and (max-width: 768px)
{
    .pager-block > .arrow.-next
    {
        margin-left: 4.66667vw;
    }
}

.pager-block > .arrow.-disable
{
    pointer-events: none;
}

.pager-block > .arrow.-disable > .icon
{
    fill: #eee;
}

.pager-block > .blank
{
    position: relative;

    width: 6px;
    height: 6px;
    margin-right: 30px;
    margin-left: 30px;

    border-radius: 50%;
    background-color: #bbb;
}

@media screen and (max-width: 768px)
{
    .pager-block > .blank
    {
        width: .93333vw;
        height: .93333vw;
        margin-right: 4.26667vw;
        margin-left: 4.26667vw;
    }
}

.pager-block > .blank::before,
.pager-block > .blank::after
{
    position: absolute;
    top: 50%;

    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-right: 30px;
    margin-left: 30px;

    content: '';

    border-radius: 50%;
    background-color: #bbb;
}

@media screen and (max-width: 768px)
{
    .pager-block > .blank::before,
    .pager-block > .blank::after
    {
        width: .93333vw;
        height: .93333vw;
        margin-top: -.46667vw;
    }
}

.pager-block > .blank::before
{
    left: -16px;
}

@media screen and (max-width: 768px)
{
    .pager-block > .blank::before
    {
        left: -5.86667vw;
    }
}

.pager-block > .blank::after
{
    right: -16px;
}

@media screen and (max-width: 768px)
{
    .pager-block > .blank::after
    {
        right: -5.86667vw;
    }
}

/* ====================================

    2. Article

==================================== */
.article-head
{
    margin-bottom: 30px;
}

@media screen and (max-width: 768px)
{
    .article-head
    {
        margin-bottom: 8vw;
    }
}

.article-head > .sub
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 20px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px)
{
    .article-head > .sub
    {
        margin-bottom: 4vw;
    }
}

.article-head > .sub > .category
{
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 30px;

    width: 120px;
    height: 30px;
    margin-right: 20px;

    text-align: center;
    letter-spacing: .1em;

    color: #fff;
}

@media screen and (max-width: 768px)
{
    .article-head > .sub > .category
    {
        font-size: 10px;
        font-size: 1rem;
        line-height: 6.66667vw;

        width: 26.66667vw;
        height: 6.66667vw;
        margin-right: 4vw;
    }
}

.article-head > .sub > .category.-lifeplan
{
    background-color: #38c1f4;
}

.article-head > .sub > .category.-howto
{
    background-color: #f67375;
}

.article-head > .sub > .category.-datalab
{
    background-color: #7488eb;
}

.article-head > .sub > .category.-money
{
    color: #000;
    background-color: #ffe420;
}

.article-head > .sub > .date
{
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;

    color: #999;
}

@media screen and (max-width: 768px)
{
    .article-head > .sub > .date
    {
        font-size: 10px;
        font-size: 1rem;
    }
}

.article-head > .title
{
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.42857;

    margin-bottom: 15px;
}

@media screen and (max-width: 768px)
{
    .article-head > .title
    {
        font-size: 22px;
        font-size: 2.2rem;

        margin-bottom: 2.66667vw;
    }
}

.article-head > .author
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px)
{
    .article-head > .author
    {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.article-head > .author > .icon
{
    width: 17px;
    height: 17px;
    margin-right: 6px;

    fill: #999;
}

@media screen and (max-width: 768px)
{
    .article-head > .author > .icon
    {
        width: 4vw;
        height: 4vw;
        margin-right: 1.33333vw;
    }
}

.article-head > .author > .link
{
    font-size: 12px;
    font-size: 1.2rem;

    color: #999;
}

@media screen and (max-width: 768px)
{
    .article-head > .author > .link
    {
        font-size: 11px;
        font-size: 1.1rem;
    }
}

.article-head > .author > .link.link-underline::before
{
    background-color: #d3d3d3;
}

.article-main > .eyecatch
{
    margin-bottom: 40px;
}

@media screen and (max-width: 768px)
{
    .article-main > .eyecatch
    {
        margin-bottom: 6.66667vw;
    }
}

.article-main > .eyecatch img
{
    width: 100%;
    height: auto;
}

.article-main > .button
{
    width: 280px;
    height: 60px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 768px)
{
    .article-main > .button
    {
        width: 74.66667vw;
        height: 16vw;
    }
}

.article-main > .button > .label
{
    font-size: 16px;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px)
{
    .article-main > .button > .label
    {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.article-body
{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;

    margin-top: 40px;
    margin-bottom: 40px;

    word-break: break-word;

    color: #666;
}

@media screen and (max-width: 768px)
{
    .article-body
    {
        margin-top: 10.66667vw;
        margin-bottom: 6.66667vw;
    }
}

.article-body > *
{
    margin-top: 35px;
}

@media screen and (max-width: 768px)
{
    .article-body > *
    {
        margin-top: 8vw;
    }
}

.article-body h1 + *,
.article-body h2 + *,
.article-body h3 + *,
.article-body h4 + *,
.article-body h5 + *,
.article-body h6 + *
{
    margin-top: auto;
}

.article-body h1
{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;

    margin-bottom: 30px;
    padding: 8px 18px;

    color: #000;
    background-color: #f0f0f0;
}

@media screen and (max-width: 768px)
{
    .article-body h1
    {
        margin-bottom: 8vw;
        padding: 2.13333vw 4.8vw;
    }
}

.article-body h2
{
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5;

    margin-bottom: 40px;
    padding-bottom: 25px;

    color: #000;
    border-bottom: 4px solid #ccc;
}

@media screen and (max-width: 768px)
{
    .article-body h2
    {
        margin-bottom: 10.66667vw;
        padding-bottom: 6.66667vw;

        border-bottom-width: 1.06667vw;
    }
}

.article-body h3
{
    font-size: 20px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;

    margin-bottom: 20px;
    padding-left: 15px;

    color: #000;
    border-left: 6px solid #ccc;
}

@media screen and (max-width: 768px)
{
    .article-body h3
    {
        margin-bottom: 5.33333vw;
        padding-left: 4vw;
    }
}

.article-body h4
{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;

    margin-bottom: 20px;
    padding-bottom: 10px;

    color: #000;
    border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px)
{
    .article-body h4
    {
        margin-bottom: 5.33333vw;
        padding-bottom: 2.66667vw;

        border-bottom-width: .26667vw;
    }
}

.article-body h5
{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;

    color: #000;
}

.article-body h6
{
    font-weight: 500;
    line-height: 1.5;

    color: #000;
}

.article-body img
{
    display: block;

    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
}

.article-body strong
{
    font-weight: bold;
}

.article-body em
{
    font-style: italic;
}

.article-body ul
{
    list-style-type: disc;
}

.article-body ul li
{
    margin-left: 1.5em;
}

.article-body ol
{
    list-style-type: decimal;
}

.article-body ol li
{
    margin-left: 1.5em;
}

.article-body blockquote
{
    padding: 40px;

    background-color: #f6f6f6;
}

@media screen and (max-width: 768px)
{
    .article-body blockquote
    {
        padding: 8vw;
    }
}

.article-body blockquote > p
{
    margin-top: 0;
    margin-bottom: 0;
}

.article-body a
{
    text-decoration: underline;

    color: #38c1f4;
}

@media screen and (min-width: 769px)
{
    .article-body a:hover
    {
        text-decoration: none;
    }
}

.article-body pre
{
    padding: 40px;

    white-space: pre-wrap;

    border: 1px solid #ccc;
}

@media screen and (max-width: 768px)
{
    .article-body pre
    {
        padding: 5.33333vw;
    }
}

.article-body table
{
    width: 100% !important;

    border: 1px solid #ccc;
}

.article-body table td
{
    padding: 10px;

    border: 1px solid #ccc;
}

@media screen and (max-width: 768px)
{
    .article-body table td
    {
        padding: 1.33333vw;
    }
}

.article-body > .lead
{
    line-height: 2;

    padding: 30px;

    color: #666;
    background-color: #f4f4f4;
}

@media screen and (max-width: 768px)
{
    .article-body > .lead
    {
        padding: 6vw;
    }
}

.article-body .profile
{
    font-size: 14px;
    font-size: 1.4rem;

    padding: 30px;

    border: 2px solid #eee;
}

@media screen and (max-width: 768px)
{
    .article-body .profile
    {
        padding: 8vw;

        border-width: .53333vw;
    }
}

.article-body .profile.-hasavatar
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px)
{
    .article-body .profile.-hasavatar
    {
        display: block;
    }
}

.article-body .profile.-hasavatar > .avatar
{
    max-width: 200px;
    margin-right: 20px;
}

@media screen and (max-width: 768px)
{
    .article-body .profile.-hasavatar > .avatar
    {
        max-width: initial;
        margin-right: 0;
        margin-bottom: 2.66667vw;
    }
}

.article-body .profile.-hasavatar > .avatar img
{
    width: 100%;
    height: auto;
    margin-top: 0;
}

.article-body .profile.-hasavatar > .main
{
    -webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
}

.article-body .profile a
{
    text-decoration: none;

    color: #666;
}

.article-body .profile a::before
{
    background-color: #9c9c9c;
}

.article-supervision
{
    margin-top: 80px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
}

@media screen and (max-width: 768px)
{
    .article-supervision
    {
        margin-top: 21.33333vw;
        padding-right: 5.33333vw;
        padding-bottom: 5.33333vw;
        padding-left: 5.33333vw;
    }
}

.article-supervision + .article-tags
{
    margin-top: 30px;
}

@media screen and (max-width: 768px)
{
    .article-supervision + .article-tags
    {
        margin-top: 5.33333vw;
    }
}

.article-supervision.-lifeplan
{
    background-color: #ebf9fe;
}

.article-supervision.-lifeplan > .title
{
    background-color: #38c1f4;
}

.article-supervision.-money
{
    background-color: #fffad2;
}

.article-supervision.-money > .title
{
    color: #000;
    background-color: #ffe420;
}

.article-supervision.-howto
{
    background-color: #fef1f1;
}

.article-supervision.-howto > .title
{
    background-color: #f67375;
}

.article-supervision.-datalab
{
    background-color: #f1f3fd;
}

.article-supervision.-datalab > .title
{
    background-color: #7488eb;
}

.article-supervision > .title
{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;

    position: relative;
    top: -20px;
    left: -30px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 280px;
    height: 40px;
    margin-bottom: -20px;

    text-align: center;

    color: #fff;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 768px)
{
    .article-supervision > .title
    {
        top: -5.33333vw;
        left: auto;

        height: 10.66667vw;
        margin-right: auto;
        margin-left: auto;
    }
}

.article-supervision > .head
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 20px;
    margin-bottom: 20px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px)
{
    .article-supervision > .head
    {
        margin-top: 5.33333vw;
        margin-bottom: 5.33333vw;

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
}

.article-supervision > .head > .avatar
{
    max-width: 100px;
    margin-right: 20px;
}

@media screen and (max-width: 768px)
{
    .article-supervision > .head > .avatar
    {
        max-width: 26.66667vw;
        margin-right: 4vw;
    }
}

.article-supervision > .head > .avatar img
{
    max-width: 100%;
    height: auto;
}

.article-supervision > .head > .profile
{
    -webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
}

.article-supervision > .head > .profile > .name
{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;

    margin-bottom: 10px;
}

@media screen and (max-width: 768px)
{
    .article-supervision > .head > .profile > .name
    {
        font-size: 14px;
        font-size: 1.4rem;

        margin-bottom: 1.33333vw;
    }
}

@media screen and (max-width: 768px)
{
    .article-supervision > .head > .profile > .title
    {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.article-supervision > .detail
{
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
}

.article-supervision > .detail a
{
    text-decoration: underline;

    color: #000;
}

@media screen and (min-width: 769px)
{
    .article-supervision > .detail a:hover
    {
        text-decoration: none;
    }
}

.article-tags
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: -10px;
    margin-bottom: 40px;

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 769px)
{
    .article-tags > .tag:hover
    {
        color: #fff;
    }
    .article-tags.-lifeplan > .tag:hover
    {
        background-color: #38c1f4;
    }
    .article-tags.-money > .tag:hover
    {
        background-color: #ffe420;
    }
    .article-tags.-howto > .tag:hover
    {
        background-color: #f67375;
    }
    .article-tags.-datalab > .tag:hover
    {
        background-color: #7488eb;
    }
}

@media screen and (max-width: 768px)
{
    .article-tags
    {
        margin-top: -1.33333vw;
        margin-bottom: 5.33333vw;
    }
}

.article-tags > .tag
{
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 40px;

    display: inline-block;

    height: 40px;
    margin: 10px;
    padding-right: 20px;
    padding-left: 20px;

    color: #666;
    border-radius: 20px;
    background-color: #eee;
}

@media screen and (min-width: 769px)
{
    .article-tags > .tag
    {
        -webkit-transition: background-color .4s ease-out, color .4s ease-out;
                transition: background-color .4s ease-out, color .4s ease-out;
    }
}

@media screen and (max-width: 768px)
{
    .article-tags > .tag
    {
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 10.66667vw;

        height: 10.66667vw;
        margin: 1.33333vw;
        padding-right: 4vw;
        padding-left: 4vw;

        border-radius: 5.33333vw;
    }
}

.article-sns
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 40px;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 768px)
{
    .article-sns
    {
        margin-top: 5.33333vw;
    }
}

.article-sns > .item
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 173px;
    height: 50px;

    background-color: #666;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 769px)
{
    .article-sns > .item
    {
        position: relative;
    }
    .article-sns > .item::before
    {
        position: absolute;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 0;

        content: '';
        -webkit-transition: all .4s cubic-bezier(.645, .045, .355, 1);
                transition: all .4s cubic-bezier(.645, .045, .355, 1);
    }
    .article-sns > .item:hover::before
    {
        top: 0;
        bottom: auto;

        height: 100%;
    }
}

@media screen and (max-width: 768px)
{
    .article-sns > .item
    {
        width: calc(25% - .8vw);
        height: 10.66667vw;
    }
}

.article-sns > .item > .icon
{
    position: relative;
    z-index: 1;

    fill: #fff;
}

.article-sns > .item.-line > .icon
{
    width: 44px;
    height: 15px;
}

@media screen and (max-width: 768px)
{
    .article-sns > .item.-line > .icon
    {
        width: 8.8vw;
        height: 3vw;
    }
}

@media screen and (min-width: 769px)
{
    .article-sns > .item.-line::before
    {
        background-color: #00c100;
    }
}

.article-sns > .item.-facebook > .icon
{
    width: 12px;
    height: 22px;
}

@media screen and (max-width: 768px)
{
    .article-sns > .item.-facebook > .icon
    {
        width: 2.4vw;
        height: 4.4vw;
    }
}

@media screen and (min-width: 769px)
{
    .article-sns > .item.-facebook::before
    {
        background-color: #4b6dad;
    }
}

.article-sns > .item.-twitter > .icon
{
    width: 22px;
    height: 18px;
}

@media screen and (max-width: 768px)
{
    .article-sns > .item.-twitter > .icon
    {
        width: 4.4vw;
        height: 3.6vw;
    }
}

@media screen and (min-width: 769px)
{
    .article-sns > .item.-twitter::before
    {
        background-color: #19b2f5;
    }
}

.article-sns > .item.-hatena > .icon
{
    width: 21px;
    height: 17px;
}

@media screen and (max-width: 768px)
{
    .article-sns > .item.-hatena > .icon
    {
        width: 4.2vw;
        height: 3.4vw;
    }
}

@media screen and (min-width: 769px)
{
    .article-sns > .item.-hatena::before
    {
        background-color: #00b3e4;
    }
}

.article-related
{
    margin-top: 60px;
    margin-bottom: 100px;
}

@media screen and (max-width: 768px)
{
    .article-related
    {
        margin-top: 10.66667vw;
        margin-bottom: 13.33333vw;
    }
}

.article-related.-lifeplan > .heading > .label::before
{
    background-color: #38c1f4;
}

.article-related.-money > .heading > .label::before
{
    background-color: #ffe420;
}

.article-related.-howto > .heading > .label::before
{
    background-color: #f67375;
}

.article-related.-datalab > .heading > .label::before
{
    background-color: #7488eb;
}

.article-related > .heading
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.article-related > .heading > .icon
{
    width: 32px;
    height: 33px;
    margin-bottom: 15px;

    fill: #ccc;
}

@media screen and (max-width: 768px)
{
    .article-related > .heading > .icon
    {
        width: 7.68vw;
        height: 7.68vw;
        margin-bottom: 4vw;
    }
}

.article-related > .heading > .label
{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;

    position: relative;

    margin-bottom: 35px;
    padding-bottom: 25px;
}

@media screen and (max-width: 768px)
{
    .article-related > .heading > .label
    {
        font-size: 22px;
        font-size: 2.2rem;

        margin-bottom: 9.33333vw;
        padding-bottom: 6.66667vw;
    }
}

.article-related > .heading > .label::before
{
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 24px;
    height: 4px;
    margin-left: -12px;

    content: '';
}

@media screen and (max-width: 768px)
{
    .article-related > .heading > .label::before
    {
        width: 6.4vw;
        height: 1.06667vw;
        margin-left: -3.2vw;
    }
}

.article-related > .list
{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.article-related > .list > .item
{
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 15px;
}

@media screen and (max-width: 768px)
{
    .article-related > .list > .item
    {
        margin-left: 4vw;
    }
    .article-related > .list > .item:last-of-type
    {
        display: none;
    }
}

.article-related > .list > .item:first-of-type
{
    margin-left: 0;
}

.article-seminar
{
    margin-top: 60px;
}

@media screen and (max-width: 768px)
{
    .article-seminar
    {
        margin-top: 8vw;
    }
}

.article-seminar > .banner img
{
    max-width: 100%;
    height: auto;
}
