@charset "UTF-8";

/**/
#info_contents {
    justify-content: center;
    display: flex;
    align-items: center;
}

#q10color_casual {
    max-width: 720px;
}



#kampo_woman {
    color: #322C28;
    text-align: center;
    margin: 0 auto;
    /* padding-bottom:40px; background-color:#FFFBEA;*/
}




/*透過png配置 */
.mainArea {
    position: relative;
}

.link_type1,
.link_type2,
.link_type3 {
    position: absolute;
    display: block;
}

/* Area */
.link_type1 {
    width: 110px;
    height: 210px;
    top: 27.16%;
    left: 21.80%;
}

.link_type2 {
    width: 110px;
    height: 210px;
    top: 27.16%;
    left: 42.36%;
}

.link_type3 {
    width: 110px;
    height: 210px;
    top: 27.16%;
    left: 62.5%;
}



/* 各商品Area */

.type1 {
    padding: 26px;
    background-image: url("../images/type1bg.gif");
    background-repeat: repeat;
    border-radius: 10px;
    max-width: 720px;
    margin: auto;
}

.type1con {
    background: #ffffff;
    border-radius: 15px;
    border: 3px solid #f7a150;
}





.type2 {
    padding: 26px;
    background-image: url("../images/type2bg.gif");
    background-repeat: repeat;
    border-radius: 10px;
    max-width: 720px;
    margin-top: 5%;
}

.type2con {
    background: #ffffff;
    border-radius: 15px;
    border: 3px solid #caa1d0;
}

.type3 {
    padding: 26px;
    background-image: url("../images/type3bg.gif");
    background-repeat: repeat;
    border-radius: 10px;
    max-width: 720px;
    margin-top: 5%;
}

.type3con {
    background: #ffffff;
    border-radius: 15px;
    border: 3px solid #82a8e2;
}

#kampo_woman .btn_cart1 {
    display: inline-block;
    padding: 3% 20%;
    border-radius: 50px;
    text-decoration: none;
    color: #FFF;
    background-image: linear-gradient(45deg, #ffc107 0%, #ff8b5f 100%);
    transition: .4s;
    font-size: 2em;
}

#kampo_woman .btn_cart2 {
    display: inline-block;
    padding: 3% 20%;
    border-radius: 50px;
    text-decoration: none;
    color: #FFF;
    background-image: linear-gradient(45deg, #b296d2 0%, #b26abf 100%);
    transition: .4s;
    font-size: 2em;
}

#kampo_woman .btn_cart3 {
    display: inline-block;
    padding: 3% 20%;
    border-radius: 50px;
    text-decoration: none;
    color: #FFF;
    background-image: linear-gradient(45deg, #86c4e3 0%, #557ad7 100%);
    transition: .4s;
    font-size: 2em;
}

#kampo_woman .btn_cart1:hover {
    background-image: linear-gradient(45deg, #ffc107 0%, #ff8b5f 100%);
}

#kampo_woman .btn_cart2:hover {
    background-image: linear-gradient(45deg, #b296d2 0%, #b26abf 100%);
}

#kampo_woman .btn_cart3:hover {
    background-image: linear-gradient(45deg, #86c4e3 0%, #557ad7 100%);
}

/* 医相・お問い合わせ */
.effect {
    text-align: left;
    padding: 2% 5% 5% 5%;
    font-size: 14px;
}

.effect_att {
    font-size: 12.5px;
    text-align: left;
    padding: 0 5% 5% 5%;
}

.effect span {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 1% 0;
    margin: 5% 0 2% 0;
    border-top: 1px dashed #777;
    border-bottom: 1px dashed #777;
}

.consul {
    line-height: 1.75;
    font-size: 0.85em;
    letter-spacing: 0.08em;
    padding: 5% 5% 2% 5%;
}

.consul {
    font-size: 1.35em;
}

.attention {
    padding-bottom: 20px;
}

.consul_section .contact_us,
.consul_section .attention {
    margin: 1em;
}

/* CPインクルード部分*/
/* PC表示 */
.include01 .name_box {
    font-size: 150%;
}

.include01 .price_box {
    font-size: 160%;
    margin: 1% 10% 4% 10%;
}

.include01 .r_img {
    width: 200px;
    margin-right: 15px;
}

.include01 .goods_set .btn {
    margin-top: 1em;
}

.include01 .btn img {
    min-width: 150px;
    width: 50%;
}


/* 動き */
/*translateX(-50px)  X軸（左横に）方向に50px */
/*translateY(50px)  Y軸（上縦に）方向に50px */
/*translateY(-50px)  Y軸（下縦に）方向に50px */

/* ふわっとアニメ */
/* 動作を適用する箇所 */
.fuwatAnime {
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    /* アニメ時間 */
    -ms-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-transition-delay: 0.5s;
    /* 開始時間 */
    -ms-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-animation-name: fuwatAnime;
    /* アニメ名 */
    -ms-animation-name: fuwatAnime;
    animation-name: fuwatAnime;
    visibility: visible !important;
}

/* 動作内容 */
@-webkit-keyframes fuwatAnime {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fuwatAnime {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-150px);
        -ms-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.kaiyuu {
    /*display:none;*/
    margin: 5% 0;
}


/*スマホ*/
@media print,
screen and (max-width: 768px) {

    .contents_main {
        margin: 0;
    }

    .link_type1,
    .link_type2,
    .link_type3 {
        width: 15.27%;
        height: 31.34%;
    }

    #kampo_woman sup {
        top: -0.25em;
    }

    .type1 {
        padding: 4% 2.5%;
        background-image: url("../images/type1bg.gif");
        background-repeat: repeat;
    }

    .type1con {
        background: #ffffff;
        border-radius: 10px;
        border: 2px solid #f7a150;
    }

    .type2 {
        padding: 4% 2.5%;
        background-image: url("../images/type2bg.gif");
        background-repeat: repeat;
    }

    .type2con {
        background: #ffffff;
        border-radius: 10px;
        border: 2px solid #caa1d0;
    }

    .type3 {
        padding: 4% 2.5%;
        background-image: url("../images/type3bg.gif");
        background-repeat: repeat;
    }

    .type3con {
        background: #ffffff;
        border-radius: 10px;
        border: 2px solid #82a8e2;
    }

    #kampo_woman .btn_cart1,
    #kampo_woman .btn_cart2,
    #kampo_woman .btn_cart3 {
        font-size: 1.6em;
    }

    .effect {
        font-size: 14px;
        letter-spacing: 0.02em;
        text-align: left;
        padding: 2% 5% 5% 5%;
    }

    .effect_att {
        font-size: 11.2px;
        letter-spacing: 0.02em;
        text-align: left;
        padding: 0 5% 5% 5%;
    }

    .effect span {
        text-align: center;
    }

    .include01 .name_box {
        font-size: 82%;
    }

    .include01 .price_box {
        font-size: 90%;
        margin: 0 15% 5% 15%;
    }

    .include01 .r_img {
        width: ;
    }

    .include01 .img_box {
        margin-right: 8px;
        width: 30%;
    }

    .include01 .goods_set .btn {
        margin-top: 10px;
    }

    * body .include01 .btn img {
        min-width: ;
        width: 60%;
        height: auto;
    }

    .kaiyuu {
        margin: 5% 2%;
    }

}