@charset "utf-8";

#contents {
    width: 100%;
    margin: 0 auto;
    font-family: 'メイリオ', Osaka, 'MS PGothic', arial, helvetica, sans-serif;

}

#contents * {
    box-sizing: border-box;
}

#contents a {
    text-decoration: none;
}

#contents a:hover {
    text-decoration: none;
}

.sp {
    display: none !important;
}

.pc {
    display: block !important;
}


/*PC---------------------------------------------------------------------------------------------------------------*/

/*------title------*/

#contents .title {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

#contents .title img {
    width: 100%;
}

/*------about------*/

#contents .about ul {
    width: 1024px;
    margin: 50px auto 140px;
}

#contents .about ul li {
    display: flex;
    flex-flow: wrap;
    margin: 0 auto 40px;
}

#contents .about ul li p {
    width: 50%;
    font-size: 25px;
    text-align: center;
    line-height: 44px;
    font-weight: bold;
    color: #1f1f1f;
    margin: 120px 0 0 0;
    padding: 0 50px 0 0;
}

#contents .about ul li img {
    width: 50%;
}

#contents .about ul li:last-child {
    display: flex;
    flex-flow: wrap;
    flex-direction: row-reverse;
}

#contents .about ul li:last-child p {
    padding: 0 0 0 50px;
}

/*------shere------*/

#contents .shere {
    width: 1024px;
    margin: 50px auto;
    text-align: center;
}

#contents .shere h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0B308B;
    margin: 50px;
}
#contents .shere h2.pickup img{
    height:32px;
    width: auto;
    vertical-align:middle;
    margin:0 10px;
}

.slideUp {
    width: 100%;
    max-width: 700px;
    margin:0 auto;
    opacity: 0;
    transform: translateY(140px);
    will-change: transform, opacity;
    border-radius: 12px;
    display: block;
}
.slideUp.is-visible {
    animation: slideUp 0.6s cubic-bezier(0.12, 0, 0.39, 0) forwards;
}
@keyframes slideUp {
    0% {
        transform: translateY(140px);
        opacity: 0;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    65% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#contents .shere ul {
    width: 1024px;
    display: flex;
    justify-content: space-between;
}

#contents .shere li {
    width: 32%;
}

#contents .shere .txt {
    font-size: 16px;
    font-weight: 600;
    color: #0B308B;
    margin: 20px auto;
}

#contents .shere li img {
    width: 100%;
    border-radius: 2em;
}

#contents .shere .btn {
    padding: 10px 20px;
    background-color: #0B308B;
    color: #fff;
    display: inline-block;
    border-radius: 20px;
}

#contents .shere .other {
    padding: 10px 80px;
    margin-top: 50px;
    margin-bottom: 100px;
}

#contents .shere a:hover {
    opacity: 0.6;
}


/*------product------*/
#contents .product h2 {
    margin: 0 auto 100px;
    text-align: center;
    border-bottom: #0B308B 1px dashed;
    position: relative;
}

#contents .product h2 span {
    padding: 0 20px;
    background: #fff;
    font-size: 30px;
    line-height: 28px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #0B308B;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    width: 400px;
    margin: 0 auto;
}

/*------ラインアップ共通------*/
#contents .line_up {
    width: 1024px;
    margin: 0 auto 30px;
}

#contents .line_up ul {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-content: flex-start;
}

#contents .line_up ul li {
    width: 33.333%;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto 50px;
    position: relative;
}

#contents .line_up ul li .new {
    background: #ED1C24;
    position: absolute;
    left: 20px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    padding: 18px 0 0;
    width: 60px;
    height: 60px;
    border-radius: 100px;
}

#contents .line_up ul li img {
    width: 260px;
}

#contents .line_up ul li h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: #111;
    margin: 30px auto 25px;
}

#contents .line_up ul li p {
    font-size: 18px;
    line-height: 30px;
    color: #111;
    text-align: left;
    margin: 0 auto;
    width: 80%;
}

/* TOPへボタン */
#page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
}

#page_top a {
    background: #E30011;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
}

#page_top a:hover {
    background-color: #c4000d;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}


/*SP---------------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    #contents img {
        width: 100%;
        height: auto;
    }

    /*------title------*/

    #contents .title {
        max-width: 100%;
    }

    /*------about------*/

    #contents .about ul {
        width: 100%;
        margin: 30px auto 100px;
    }

    #contents .about ul li {
        display: block;
        margin: 0 auto 30px;
    }

    #contents .about ul li p {
        width: 100%;
        font-size: 16px;
        line-height: 28px;
        margin: 0 auto 30px;
        padding: 0;
    }

    #contents .about ul li img {
        width: 100%;
    }

    #contents .about ul li:last-child {
        display: block;

    }

    #contents .about ul li:last-child p {
        padding: 0;
    }

    /*------shere------*/

    #contents .shere {
        width: 90%;
        margin: 50px auto;
    }

    #contents .shere h2 {
        font-size: 20px;
        line-height: 150%;
        margin: 20px;
    }

    #contents .shere h2.pickup{
        font-size: 5.2vw;
        margin: 20px 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    #contents .shere h2.pickup img{
        height:20px;
        vertical-align: -0.15em;
        margin: 0 5px;
    }

    #contents .shere ul {
        width: 90%;
        margin: auto;
        display: block;
    }

    #contents .shere li {
        width: 100%;
        margin: 15px 0 30px 0;
        text-align: center;
    }


    #contents .shere .other {
        padding: 10px 80px;
        margin-top: 20px;
        margin-bottom: 50px;
    }


    /*------product------*/
    #contents .product h2 {
        margin: 0 auto 50px;
    }

    #contents .product h2 span {
        padding: 0 10px;
        font-size: 22px;
        width: 80%;
    }

    /*------ラインアップ共通------*/
    #contents .line_up {
        width: 90%;
        margin: 0 auto 30px;
    }

    #contents .line_up ul li {
        width: 100%;
        margin: 0 auto 30px;
    }

    #contents .line_up ul li .new {
        left: 10px;
        font-size: 16px;
        color: #fff;
        padding: 12px 0 0;
        width: 50px;
        height: 50px;
    }

    #contents .line_up ul li img {
        width: 80%;
    }

    #contents .line_up ul li h3 {
        font-size: 18px;
        margin: 20px auto 10px;
    }

    #contents .line_up ul li p {
        font-size: 18px;
        line-height: 28px;
        color: #111;
        text-align: left;
        margin: 0 auto;
        width: 90%;
    }

}