@charset "utf-8";
/* CSS Document */

/* BASIC */
/* ============================================ */
* {
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
    color: #666;
}
body {
    font-family: YuMincho, 'Yu Mincho', serif !important;
    background: url(https://gigaplus.makeshop.jp/bodybutter/img/common/bg-body.jpg) !important;
    animation: fadeIn 1s ease 0s 1 normal !important;
    -webkit-animation: fadeIn 1s ease 0s 1 normal !important;
}
*:focus {
    outline: none!important;
}
/*p, a {
    font-size: 1.6rem;
    letter-spacing: .8pt;
    line-height: 2.8rem;
}*/
a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}
a:hover,
a:hover * {
    opacity: 0.7;
}
a * {
    transition: 0.3s;
}



/* FONT */
/* ============================================ */
@import url("//fonts.googleapis.com/earlyaccess/notosansjapanese.css");
body { font-family: 'Noto Sans Japanese', sans-serif;}

@import url("//fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap&subset=japanese");
@import url("//fonts.googleapis.com/earlyaccess/sawarabimincho.css");



/* ORIGINAL Add */
/* ============================================ */
.clearfix:after {
    content: "";
    clear: both;
    display: block;
}
.flexBox {
    display: flex;
    flex-wrap: wrap;
}
/* 文字省略表示 */
.abbr {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* ボタン表示 */
.moreBtn {
    display: block;
    padding: 1% 2%;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
    margin: 5% auto;
    width: 230px;
    font-size: 1.4rem;
}
.moreBtn:after {
    content: " >>";
}

.pc_none { display: none;}
.sp_none { display: block;}

@media screen and (max-width: 767px) {
.pc_none { display: block;}
.sp_none { display: none;}
}



/* #pageTop */
/* ============================================ */
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
#pageTop a {
    display: block;
    z-index: 999;
    padding: 7px 0 0 0;
    border-radius: 30px;
    width: 35px;
    height: 35px;
    background-color: #666;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}



/* SCROLL EFFECT */
/* ============================================ */
.effect-fadein {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 500ms;
}
.effect-fadein.effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
}
.effect .effect-fadein:nth-of-type(2) {
    -moz-transition-delay: 200ms;
    -webkit-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
}
.effect .effect-fadein:nth-of-type(3) {
    -moz-transition-delay: 400ms;
    -webkit-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
}
.effect .effect-fadein:nth-of-type(4) {
    -moz-transition-delay: 600ms;
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
}



/* SP版 表示用 */
/* ============================================ */
@media screen and (max-width: 767px) {
}
