@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
link_areea
---------------------------------------- */
#main .link_area{
    margin-bottom: 50px;
}
#main .link_area ul.link_list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
#main .link_area ul.link_list li{
    width: calc(50% - 10px);
    margin: 5px;
}
#main .link_area ul.link_list li a {
    display: flex;
    align-items: center;
    position: relative;
    color: #E31B72;
    border: 1px solid #E31B72;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    height: 5rem;
    line-height: 4.8rem;
}
#main .link_area ul.link_list li a:active{
    color: #fff;
    background-color: #E31B72;
}
#main .link_area ul.link_list li a span.arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    border-top: 2px solid #E31B72;
    border-right: 2px solid #E31B72;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
}
#main .link_area ul.link_list li a:active span.arrow{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
/*------------ voice PC用  ------------*/
@media screen and (min-width: 950px) {
    #main .link_area ul.link_list li{
        width: calc(25% - 10px);
    }
    #main .link_area ul.link_list li a:hover {
        color: #fff;
        background-color: #E31B72;
    }
    #main .link_area ul.link_list li a:hover span.arrow{
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }
}
/*----------------------------------------
voice
---------------------------------------- */
#main .voice{
    margin-bottom: 60px;
}
#main .voice h2{
    margin-bottom: 10px;
}
#main .voice ul.voice_container{
    margin-top: 10px;
}
#main .voice li.voice_list .voices_inner{
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 5px;
    background: #F7F7F7;
    text-align: justify;
    font-size: 1.4rem;
    line-height: 135%;
    letter-spacing: -0.1px;
    margin-bottom: 30px;
}
#main .voice li.voice_list .voices_inner a{
    color: #313131;
}
#main .voice li.voice_list .voices_inner a:active{
    text-decoration: none;
}
#main .voice li.voice_list .voices_inner .usage{
    font-weight: bold;
    margin-bottom: 10px;
}
#main .voice li.voice_list .voices_inner .name{
    margin-top: 10px;
}
#main .voice li.voice_list .voices_inner::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-top: 15px solid #F7F7F7;
}
#main .voice .btn{
    margin-bottom: 20px;
}
/*------------ voice PC用  ------------*/
@media screen and (min-width: 950px) {
    #main .voice h2{
        margin-bottom: 20px;
    }
    #main .voice ul.voice_container{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 20px;
    }
     #main .voice ul.voice_container li{
        width: 49%;
        margin-bottom: 10px;
    }
    #main .voice ul.voice_container li a:hover{
        text-decoration: none;
    }
}
/*----------------------------------------
mail_magazines
---------------------------------------- */
#main .mail_magazines{
    margin-bottom: 60px;
}
#main .mail_magazines .mail_magazines_list_wrapper{
    margin-top: 10px;
}
#main .mail_magazines ul.mail_magazines_list{
    margin-top: 10px;
    margin-bottom: 15px;
}
#main .mail_magazines ul.mail_magazines_list li{
    font-size:1.5rem;
    padding: 10px 0;
    border-top: 1px solid #E5E5E5;
    position: relative;
}
#main .mail_magazines ul.mail_magazines_list li:last-child{
    border-bottom: 1px solid #E5E5E5;
}
#main .mail_magazines ul.mail_magazines_list li:first-child span.delivery_date::after{
    content: 'NEW';
    color: #fff;
    background-color: #E31B72;
    padding: 0 10px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-left: 5px;
}
#main .mail_magazines ul.mail_magazines_list li a{
    color: #313131;
    text-decoration: none;
    display: flex;
    flex-wrap: nowrap;
    align-items:center;
}
#main .mail_magazines ul.mail_magazines_list li .mail_magazines_txt{
    line-height: 120%;
    width: 94%;
}
#main .mail_magazines ul.mail_magazines_list li span.delivery_date{
    margin-right: 5px;
    font-weight: bold;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 5px;
}
#main .mail_magazines ul.mail_magazines_list li span.mail_magazines_icon{
    right: 5px;
}
/*------------ voice PC用  ------------*/
@media screen and (min-width: 950px) {
    #main .mail_magazines .mail_magazines_list_wrapper{
        margin-top: 20px;
    }
    #main .mail_magazines ul.mail_magazines_list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    #main .mail_magazines ul.mail_magazines_list li{
        width: 46%;
        padding: 15px 0;
    }
    #main .mail_magazines ul.mail_magazines_list li:nth-of-type(3){
        border-bottom: 1px solid #E5E5E5;
    }
}
/*----------------------------------------
faq_area
---------------------------------------- */
/*表示非表示動作用*/
.faq_area .faq_item_wrapper{
    display: none;
}
.faq_area .faq_item_wrapper.open{
    display: block;
}
.faq_area .faq_a{
    display: none;
}
.faq_area .faq_item.open .faq_a{
    display: block;
}
/*装飾等*/
.faq_area {
    margin-bottom: 60px;
}
.faq_area .faq_nav {
    margin-top: 15px;
}
.faq_area .faq_nav .faq_content_wrapper{
    border: solid 1px #AAAAAA;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 1rem;
}
.faq_area .faq_nav .faq_header{
    padding-bottom: 5px;
    padding-right: 35px;
    font-size: 2rem;
    color: #313131;
    font-weight: 700;
    position: relative;
}
.faq_area .faq_nav .faq_header::after{
    content: '\25BC';
    font-size: 1.3rem;
    line-height: 1.3rem;
    position: absolute;
    right: 10px;
    top: calc( 50% - 0.6rem );
}
.faq_area .faq_nav .faq_header.open_header{
    color: #E31B72;
    padding-bottom: 10px;
}
.faq_area .faq_nav .faq_header.open_header::after{
    content: '\025b2';
    top: calc( 50% - 0.8rem );
}
.faq_area .faq_nav .faq_item{
    border-top: 1px solid #AAAAAA;
    padding-top: 5px;
    padding-bottom: 5px;
}
.faq_area .faq_nav .faq_item .faq_q,
.faq_area .faq_nav .faq_item .faq_a{
    padding: 5px;
    font-size: 1.6rem;
    color: #313131;
    position: relative;
    margin-left: 37px;
    text-indent: -37px;
    text-align: justify;
    line-height: 110%;
}
.faq_area .faq_nav .faq_item .faq_q{
    font-weight: 700;
    padding-right: 4rem;
}
.faq_area .faq_nav .faq_item .faq_q::before{
    content: 'Q';
    background-color: #E5E5E5;
    border-radius: 50%;
    padding: 5px;
    width: 3rem;
    height: 3rem;
    line-height: 120%;
    text-indent: 0;
    display: inline-block;
    text-align: center;
    margin-right: 5px;
}
.faq_area .faq_nav .faq_item .faq_q::after{
    content: '\25BC';
    font-size: 1.1rem;
    line-height: 1.1rem;
    position: absolute;
    right: -17px;
    top: calc( 50% - 0.5rem );
}
.faq_area .faq_nav .faq_item.open .faq_q{
    color: #59AA00;
}
.faq_area .faq_nav .faq_item.open .faq_q::after{
    content: '\025b2';
}
.faq_area .faq_nav .faq_item .faq_a{
    padding-right: 10px;
    line-height: 140%;
}
.faq_area .faq_nav .faq_item .faq_a::before{
    content: 'A';
    font-weight: 700;
    background-color: #E9B1AB;
    border-radius: 50%;
    padding: 5px;
    width: 3rem;
    height: 3rem;
    line-height: 120%;
    text-indent: 0;
    display: inline-block;
    text-align: center;
    margin-right: 5px;
}
.faq_area .faq_nav .faq_item .faq_a a{
    text-decoration: underline;
    font-weight: 500;
    display: inline;
}
.faq_area .faq_nav .faq_item .faq_a a:active{
    text-decoration: none;
}
/*------------ voice PC用  ------------*/
@media screen and (min-width: 950px) {
    .faq_area .faq_nav{
        margin-top: 30px;
    }
    .faq_area .faq_nav .faq_content_wrapper{
        cursor: pointer;
    }
    .faq_area .faq_item_wrapper,
    .faq_area .faq_item_wrapper.open{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .faq_area .faq_nav .faq_item{
        width: 48%;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .faq_area .faq_nav .faq_item .faq_a{
        margin-top: 10px;
    }
}
/*----------------------------------------
home
---------------------------------------- */
/*top_slide*/
#main #top_slide{
    padding: 0 20px;
}
#main #top_slide .swiper{
    margin-top: 20px;
    margin-bottom: 50px;
}
#main #top_slide .swiper .swiper-slide{
    position: relative;
    width: 310px;
    margin-right: 20px;
}
#main #top_slide .swiper .swiper-slide .top_slide_img{
    width: 310px;
    height: 207px;
    margin: 0 auto;
    margin-bottom: 5px;
}
#main #top_slide .swiper .swiper-slide .top_slide_img img{
    border-radius: 8px;
    box-shadow: 0px 3px 6px 0px rgba(191, 191, 191, 1);
}
#main #top_slide .swiper_pagination{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 10px;
}
#main #top_slide .swiper_pagination span{
    display: block;
}
#main #top_slide .swiper-pagination-bullet-active {
    background-color:#E31B72;
}
/*------------ home slide PC用  ------------*/
@media screen and (min-width: 950px) {
    body#product_index #main{
        max-width: 1290px;
        margin: 0 auto;
    }
    body#product_index #main #center_area {
        margin:0 auto;
        max-width: 980px;
    }
    body#product_index #main #top_slide .swiper .swiper-slide{
        width: 400px;
    }
    body#product_index #main #top_slide .swiper .swiper-slide .top_slide_img {
        width: 400px;
        height: 270px;
    }
}
/*category_area*/
.category_area{
    margin-bottom: 30px;
}
.category_area h2{
    margin-bottom: 20px;
}
.category_area .category_list{
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}
.category_area .category_list .category_item{
    border-top: solid #E5E5E5 1px;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: 700;
}
.category_area .category_list .category_item_heading{
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
}
.category_area .category_list:last-of-type .category_item:last-of-type{
    border-bottom: 1px solid #E5E5E5;
}
.category_area .category_list .category_item a{
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}
.category_area .category_image{
    width: 60px;
    height: 60px;
    padding: 5px;
    margin-right: 5px;
}
.category_area .category_image img{
    border: solid #E5E5E5 1px;
    border-radius: 50%;
}
/*------------ category_area PC用  ------------*/
@media screen and (min-width: 950px) {
    .category_area{
        margin-bottom: 60px;
    }
    .category_area .category_list{
        margin-bottom: 20px;
        margin-right: 0;
        margin-left:0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .category_area .category_list .category_item{
        width: 300px;
        padding: 0.8rem;
        margin-right: 20px;
        border-top: 0;
        border-bottom: 1px solid #E5E5E5;
    }
    .category_area .category_list .category_item:nth-of-type(1),
    .category_area .category_list .category_item:nth-of-type(2),
    .category_area .category_list .category_item:nth-of-type(3){
         border-top: 1px solid #E5E5E5;
    }
    .category_area .category_list .category_item_heading{
        padding: 0.8rem;
    }
    .category_area .category_list .category_item a{
        align-items: center;
        height: 50px;
    }
}
/*scenes_area*/
.scenes_area{
    margin-bottom: 60px;
}
.scenes_area .scenes_list{
    margin-top: 20px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}
.scenes_area .scenes_list .scenes_list_inner{
    display: none;
}
.scenes_area .scenes_list .scenes_list_inner.open{
    display: block;
}
.scenes_area .scenes_list .scenes_item{
    border-top: solid #E5E5E5 1px;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
}
.scenes_area .scenes_list .scenes_item_heading{
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}
.scenes_area .scenes_item_heading .scenes_item_name::after {
    content: '\25BC';
    font-size: 13px;
    line-height: 1.3rem;
    position: absolute;
    right: 35px;
    top: calc( 50% - 0.6rem );
}
.scenes_area .scenes_item_heading.open {
    color: #E31B72;
}
.scenes_area .scenes_item_heading.open .scenes_item_name::after {
    content: '\025b2';
}
.scenes_area .scenes_item_wrapper:last-of-type{
    border-bottom: solid #E5E5E5 1px;
}
.scenes_area .scenes_list .scenes_item a{
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}
.scenes_area .scenes_image{
    width: 40px;
    height: 40px;
    margin-right: 5px;
}
.scenes_area .scenes_image img{
    border: solid #E5E5E5 1px;
    border-radius: 50%;
}
/*------------ scenes_area PC用  ------------*/
@media screen and (min-width: 950px) {
     .scenes_area .scenes_list{
        margin-right: 0;
        margin-left:0;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .scenes_area .scenes_list .scenes_item_wrapper{
        width: 30%;
    }
    .scenes_area .scenes_list .scenes_list_inner{
        display: block;
    }
    .scenes_area .scenes_item_wrapper .scenes_list_inner:last-of-type{
        border-bottom: solid #E5E5E5 1px;
    }
    .scenes_area .scenes_item_wrapper:last-of-type{
         border-bottom: none;
    }
    .scenes_area .scenes_item_heading .scenes_item_name::after,
    .scenes_area .scenes_item_heading.open .scenes_item_name::after{
        content:'';
    }
    .scenes_area .scenes_item_heading.open {
        color: #313131;
    }
}
/*choose_by_price_area*/
.choose_by_price_area{
    margin-bottom: 60px;
}
.choose_by_price_area .choose_btn_wrapper{
     display: flex;
     flex-wrap: wrap;
     margin-top: 20px;
}
.choose_by_price_area .choose_btn{
    width: 30%;
    margin: 5px;
}
.choose_by_price_area .choose_btn a{
    color: #E31B72;
    border: 1px solid #E31B72;
    text-decoration: none;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 5px;
    text-align: center;
    height: 5rem;
    line-height: 4.8rem;
}
.choose_by_price_area .choose_btn a:active{
    color: #fff;
    background-color: #E31B72;
}
/*about_petitgift_area*/
.about_petitgift_area{
    margin-bottom: 80px;
}
.about_petitgift_area p{
    margin-top: 20px;
}
.about_petitgift_area .btn_link{
    margin-top: 15px;
}
.about_petitgift_area .btn_link a{
    font-size: 1.5rem;
}
/*how_to_send*/
.how_to_send {
    margin-bottom: 80px;
}
.how_to_send h3{
    margin-bottom: 10px;
}
.how_to_send ul{
    margin-top: 15px;
    margin-bottom: 30px;
}
.how_to_send ul li a{
    display: flex;
    flex-wrap: nowrap;
    text-decoration: none;
}
.how_to_send ul li{
    margin-bottom: 10px;
}
.how_to_send ul li .how_to_send_img{
    width: 33%;
    margin-right: 2%;
}
.how_to_send ul li .how_to_send_img img{
    border: 1px solid #EEEEEE;
}
.how_to_send ul li .how_to_send_txt{
    width: 65%;
}
.how_to_send ul li .how_to_send_txt p{
    font-size: 14px;
}
.how_to_send ul li .how_to_send_txt p.subheading{
    font-weight: 700;
    margin-bottom: 5px;
}
/*------------ scenes_area PC用  ------------*/
@media screen and (min-width: 950px) {
    .how_to_send ul{
        display: flex;
        flex-wrap: wrap;
    }
    .how_to_send ul li{
        width: 48%;
        padding: 1%;
    }
    .choose_by_price_area .choose_btn a:hover{
        color: #fff;
        background-color: #E31B72;
    }
}
/*decoto_recommend*/
.decoto_recommend{
    margin-bottom: 60px;
}
.decoto_recommend p{
    margin-top: 20px;
}
.decoto_recommend .decoto_recommend_contsnts{
    margin-top: 15px;
}
.decoto_recommend .decoto_recommend_list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border-top: 1px solid #EEEEEE;
    padding: 8px 0;
}
.decoto_recommend .decoto_recommend_list .heading_num{
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #59B224;
    border-bottom: 3px solid #FFE601;
    width: 10%;
}
.decoto_recommend .decoto_recommend_list .recommend_txt{
    font-size: 1.5rem;
    font-weight: 700;
    width: 64%;
    margin: 0 1% 0 5%;
}
.decoto_recommend .decoto_recommend_list .recommend_icon{
    width: 20%;
}
/*------------ scenes_area PC用  ------------*/
@media screen and (min-width: 950px) {
    .decoto_recommend .decoto_recommend_contsnts{
        display: flex;
        flex-wrap: nowrap;
    }
    .decoto_recommend .decoto_recommend_list{
        flex-wrap: wrap;
        justify-content: center;
    }
    .decoto_recommend .decoto_recommend_list .recommend_icon{
        width: 36%;
        padding: 10px;

    }
}
/*about_petitgift*/
.about_petitgift{
    margin-bottom: 60px;
}
.about_petitgift p{
    margin-top: 20px;
}
.about_petitgift .about_txt_outer{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.about_petitgift .about_txt_outer .about_txt_img{
    width: 47%;
}
.about_petitgift .about_txt_outer .about_txt_short{
    margin-right: 10px;
    margin-top: 10px;
    background-color: #FFF8E8;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 120%;
    color: #59B224;
    text-align: center;
    display: inline-grid;
    align-content: center;
}
.about_petitgift .about_txt_outer .about_txt_img{
    margin-top: 10px;
}
.about_petitgift .about_txt_outer .about_txt_img img{
    width: 130px;
}
.about_petitgift .btn_link{
    margin-top: 15px;
}
/*------------ about_petitgift PC用  ------------*/
@media screen and (min-width: 950px) {
    .about_petitgift .about_txt_wrapper{
        display: flex;
        flex-wrap: nowrap;
    }
    .about_petitgift .about_txt_outer{
        margin-right: 20px;
        width: 27%;
    }
    .about_petitgift .about_txt_outer .about_txt_img{
        width: auto;
    }
    .about_petitgift .txt_accordion{
        width: calc(73% - 20px);
    }
}
/*----------------------------------------
important_notice
---------------------------------------- */
.important_notice{
    text-align: justify;
    padding: 10px;
    border: 2px solid #AD06BD;
    margin-bottom: 70px;
}
.important_notice .important_notice_inner:nth-of-type(n+2){
    margin-top: 20px;
}
.important_notice .notice_heading{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.important_notice a{
    color: #E31B72;
}
/*----------------------------------------
mm メールマガジン
---------------------------------------- */
body.mm #title{
    margin: 0 auto;
    margin-bottom: 10px;
    max-width:600px;
}
body.mm .mm_area_wrapper,
body.mm #bn_area{
    margin: 0 auto;
    max-width: 800px;
    margin-bottom: 100px;
}
body.mm .mm_area_wrapper{
    border: solid 1px #E5E5E5;
    padding: 40px 20px;
    margin-bottom: 50px;
}
body.mm .contents_title p{
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-decoration:underline dashed 2px #FFAAA1;
    margin-bottom: 30px;
}
body.mm .mm_area p{
    white-space: pre-line;
    margin: auto;
    font-weight: 500;
    display: inline-block;
    overflow-wrap:anywhere;
    word-break: break-all;
}
body.mm .mm_area p a{
    color: #FFAAA1;
}
body.mm .mm_area p a:active{
    text-decoration: none;
}
body.mm #bn_area ul{
    border: solid 1px #E5E5E5;
    padding: 40px 20px;
    margin-top: 10px;
    margin-bottom: 50px;
    height: 300px;
    overflow: hidden;
    overflow-y: scroll;
}
body.mm #bn_area ul li{
    font-size: 1.5rem;
    margin-bottom: 20px;
}
body.mm #bn_area ul li::before{
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #313131;
    border-radius: 50%;
    margin-right: 5px;
}
body.mm #bn_area ul li a{
    display: inline;
}
body.mm #bn_area ul li a:active{
    color: #FFAAA1;
    text-decoration: none;
}
/*------------ body.mm PC用  ------------*/
@media screen and (min-width: 950px) {
    body.mm .mm_area p a:hover{
        text-decoration: none;
    }
    body.mm #bn_area ul li a:hover{
        color: #FFAAA1;
        text-decoration: none;
    }
}
