/*====================================================
	common
====================================================*/

.br_w1024 {
    display: block;
}

.item-lineup {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 2em;
    /*    background: #fff;*/
}

.item-lineup .sale-notice {
    font-size: 1.2rem;
    margin-bottom: 1em;
    padding: 0 2.5%;
    text-align: right;
}

.series_title {
    width: 90%;
    margin: auto auto 2em;
}

.seriesLogo {
    display: block;
    margin-bottom: 1em;
}

.seriesLogo img {
    max-width: 186px;
}

.series_title p {
    font-size: 1.6rem;
}

.itembox {
    position: relative;
}

.item-leadbox {
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
    padding: 0 3% 0;
}

.item {
    position: relative;
}

.item .icon-new {
    width: 80px;
    position: absolute;
    top: 1em;
    right: 1%;
    z-index: 1;
}

.item-photo {
    position: relative;
}

.item-photo .comment {
    text-align: right;
    display: block;
}

.item-photo .balloon {
    font-family: "Sawarabi Gothic";
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
}

.photo_notice{
    font-size: 1.1rem;
    display: block;
    padding-top: 5px;
    text-align: right;
}

.special_comment {
    width: 80%;
    margin: auto auto .5em;
    padding: .5em 0;
    color: #000;
    font-weight: bold;
    text-align: center;
    background: #ffcf27;
    display: block;
    border-radius: 100%;
}


dd.speciality span {
    width: 80%;
    margin: auto;
    padding: .25em;
    background: #fbcb00;
    text-align: center;
    border-radius: 2em;
    display: block;
    /**/
    background: -webkit-linear-gradient(left, #fbcb00 0, #fff0b2 50%, #fbcb00 100%);
    background: -moz-linear-gradient(left, #fbcb00 0, #fff0b2 50%, #fbcb00 100%);
    background: linear-gradient(to right, #fbcb00 0, #fff0b2 50%, #fbcb00 100%);
}


@media print,
screen and (max-width: 768px) {

    .item-lineup {
        padding: 0 1% 0;
    }

    .item .icon-new {
        width: 60px;
        position: absolute;
        top: 0;
        right: 1%;
        z-index: 1;
    }

    .item-photo .balloon {
        position: absolute;
        top: -1em;
        left: -2em;
        z-index: 200;
    }

    .special_comment {
        width: 95%;
    }

    dd.speciality span {
        display: inline-block;
        width: auto;
        padding-left: 2em;
        padding-right: 2em;
    }
}



/*------------balloon----------------*/

/* CHECK */

.balloon1 {
    position: relative;
    padding: 20px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 14px;
    background-color: #f00;
}

.balloon1::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 2px;
    bottom: 2px;
    border-right: 20px solid #f00;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(-45deg);
}


/* POINT */

.balloon2 {
    position: relative;
    padding: 10px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.1em;
    font-size: 16px;
    background-image: linear-gradient(-45deg,
        #ff3333 25%,
        #f00 25%, #f00 50%,
        #ff3333 50%, #ff3333 75%,
        #f00 75%, #f00);
    background-size: 15px 15px;
}

.balloon2::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: 2px;
    bottom: 2px;
    border-left: 20px solid #f00;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(45deg);
}

@media print,
screen and (max-width: 768px) {

    /* ///////// mobile /////////// */
    .balloon2 {
        padding: 2px;
        width: 75px;
        height: 75px;
        line-height: 75px;
        border-radius: 50%;
        text-align: center;
        color: #fff;
        letter-spacing: 0.1em;
        font-size: 12px;
    }
}


/* LOOK */

.balloon3 {
    position: relative;
    padding: 20px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 14px;
    background-color: #f00;
}

.balloon3::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 2px;
    top: 2px;
    border-right: 20px solid #f00;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(45deg);
}


/* GOOD */

.balloon4 {
    position: relative;
    padding: 20px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 14px;
    background-color: #f00;
}

.balloon4::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: 2px;
    top: 2px;
    border-left: 20px solid #f00;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(-45deg);
}

/*------------balloon end ----------------*/

/*====================================================
	// class dl.spec
====================================================*/

dl.spec {
    padding-top: 10px;
    margin-bottom: 2em !important;
}

.item-photo img.soldout {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    z-index: 500;
}

p.catch {
    width: 98%;
    margin: auto auto 1em;
    padding: .25em 0;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}

/*　.icon */

.icon {
    border-radius: .2em;
    padding: .15em .5em;
}


.type {
    display: block;
}

.type .icon {
    /*    color: #666;*/
    color: #333;
    font-size: 1.2rem;
    font-weight: normal;
    background: #f2e9db;
    padding: 0 1em;
    border-radius: .2em;
}

/* 弦楽器　リコーダー　*/

dd.size span.icon,
.detail-icon,
dd.place span,
.material .icon {
    font-size: 1.2rem;
    /*    font-weight: bold;*/
    /*    color: #333;*/
    /*    background: #f7f1eb;*/
    color: #fff;
    background: #af9d75;
}


dd.set_detail span.detail {
    padding-top: .25em;
    display: block;
}

dl.spec dd.size {
    /*    text-align: right;*/
    margin-bottom: 1em;
}

dl.spec dd.size strong {
    /*    margin-right: .5em;*/
    margin-right: 0;
}

/*
dl.spec dd.size .deco {
    width: 3em;
    padding: .9em 0;
    text-align: center;
    line-height: 1.1;
    background: #f2e2c5;
    border-radius: 100%;
    display: inline-block;
}
*/


.detail-icon,
dd.place span,
.material .icon {
    margin-right: .25em;
    margin-bottom: .25em;
    display: inline-block;
}

dd.size span.icon {
    margin-right: .5em;
}


dl.spec .range .icon {
    font-size: 1.2rem;
    font-weight: normal;
    color: #fff;
    background: #c1874d;
}

dl.spec {
    margin-bottom: 1em;
}

dl.spec dt {
    font-size: 1.8rem;
    font-weight: bold;
}


dl.spec dt .maker small{
    font-size: 1.4rem;
}

dl.spec dd {
    margin-bottom: .5em;
}

dl.spec dt .reading {
    font-size: 1.2rem !important;
    font-weight: normal !important;
    display: block;
}



dl.spec dt .setname {
    font-size: 1.4rem;
}

dl.spec .model {
    /*    margin-left: .5em;*/
}


dl.spec .range {
    margin-bottom: .5em !important;
    display: block;
}

dl.spec dd.price {
    color: #c00;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0;
    /*       text-align: right;*/
}

dl.spec dd.price .price_1 {
    display: block;
    /*    border: #f00 thin solid;*/
}

dl.spec dd.price .type_container {
    width: 65%;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin-right: .5%;
    padding-top: .5em;
    color: #666;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: bold;
    /*    text-align: right;*/
    display: inline-block;
    vertical-align: baseline;
    /*    border: #f00 thin solid;*/
    display:block;
}



dl.spec dd.price .type_container span {
    display: inline-block;
    margin-right: 2%;
}

#bow dl.spec dd.price .type_container {
    width: 100%;
    display: block;
}

dl.spec dd.price .eo {
    color: #666;
    font-size: 1.2rem;
    display: block;
}


dl.spec dt .openprice {
    font-size: 1.4rem;
    font-weight: normal;
    display: block;
}

dl.spec dd.price .red-price {
    font-size: 1.8rem;
    color: #c00;
}

dl.spec dd.price i {
    padding: 0 .5em;
}


dl.spec dd.price .price_head {
    margin-right: .5em;
    display: inline-block;
}


dl.spec .status {
    margin-bottom: 1em;
}

dl.spec .status .stock {
    font-weight: bold;
    color: #fff;
    background: #f00;
    padding: .1em 1em;
    border-radius: 2em;
    text-align: center;
}



dl.spec dd.copy {
    margin-bottom: 1em;
    padding-top: .5em;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    /**/
    justify-content: space-between;
    align-items: flex-start;
}


dl.spec .copy .copytxt {
    width: 75%;
    float: left;
}

dl.spec .copy .makerPhoto {
    width: 20%;
    float: right;
}

dl.spec .copy .item_descript {
    width: 76%;
    /*    float: right;*/
}


dl.spec dd.copy .comment {
    font-size: 1.2rem;
    padding-top: 1em;
    display: block;
}

.price-before {
    color: #999;
}

.price-red {
    color: #f00;
    font-size: 2.0rem;
    font-weight: bold;
}

.open-price {
    color: #000;
    font-weight: normal;
    font-size: 1.3rem;
}

dl.spec dd.copy .balloon-area {
    margin-bottom: .5em;
    display: block;
}

dl.spec dd.copy .balloon-area .first-balloon {
    color: #9b7c25;
    font-size: 2.0rem;
    font-weight: bold;
}

dl.spec dd.copy .balloon-area .second-balloon {
    font-weight: bold;
}

dl.spec dd.set:before {
    content: '\30BB\30C3\30C8\5185\5BB9';
    margin: 0 7px 0 0;
    padding: 0.3em 0.5em 0.2em;
    color: #fff;
    background: #b9a873;
    border-radius: 2px;
    font-size: 0.9em;
}


.item-url a {
    width: 80%;
    margin: auto;
    color: #333;
    padding: .5em .25em;
    border-radius: 2em; 
    text-align: center;
    display: block;
   /* background: #eee5d5; */
   background: #F0E1BC;
}





@media screen and (max-width: 1024px) {
    /* dl.spec dd.price .type_container {
        display: block;
    } */

    .br_w1024 {
        display: block;
    }

}


@media screen and (min-width: 769px) and (max-width: 1023px) {
    .item-photo img.soldout {
        width: 270px;
    }
}

@media screen and (max-width: 1023px) {
    .item-leadbox {
        font-size: 1.8rem;
        margin-bottom: 1em;
    }

    dl.spec dt {
        font-size: 1.8rem;
    }

    dl.spec .status .stock {
        font-size: 1.6rem;
        padding: .2em 1em;
        text-align: center;
    }

    .item-lineup {
        width: 95%;
        margin: auto auto 3em;
    }

    .item-lineup .sale-notice {
        font-size: 1.2rem;
        margin-bottom: 1em;
        padding: 0 5%;
        text-align: left;
    }
}

@media screen and (max-width: 768px) {

    p.catch {
        width: 90%;
        padding: .5em 1em;
        font-size: 1.4rem;
    }

    dl.spec {
        width: 90%;
        margin: auto;
    }

    dl.spec dd.price .type_container {
        width: 60%;
        margin-right: 0%;
    }

    dl.spec dd.copy {
        font-size: 1.4rem;
    }

    dl.spec dd.copy .balloon-area .first-balloon {
        font-size: 1.8rem;
    }

    .item-lineup {
        width: auto;
        margin: auto auto 1em;
    }

    .item {
        width: 98% !important;
        padding: .5em 0 .5em !important;
    }
	
	.item-url a {
		width: auto;
	}
	
}


@media screen and (max-width: 320px) {
    dl.spec dd.copy {
        font-size: 1.3rem;
    }
}



/*====================================================
	.box-1 pc
====================================================*/

@media print,
screen and (min-width: 1024px) {

    /* //////////////// pc //////////////////////////// */
    .box-1.itembox {
        margin: auto auto 1em;
        background: #fff;
        padding: 2em 2.5% 2em;
        position: relative;
    }

    .box-1 .item {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .box-1.itembox .item-photo {
        width: 35%;
        max-width: 346px;
        margin-left: 1%;
        margin-right: 45px;
    }

    .box-1.itembox .item-photo img {
        width: 100%;
        /*        max-width: 270px;*/
    }

    .box-1 .item-txt {
        width: 67%;
    }

    .box-1 .price {
        margin-bottom: 1em;
    }

    .box-1.itembox figure {
        position: relative;
    }

    .box-1 dl.spec {
        margin-top: 2em;
    }
}


figure img.noimg_pc {
    max-width: 346px !important;
}

/*====================================================
	//CLASS .box-2 pc
====================================================*/

@media print,
screen and (min-width: 1024px) {

    /* ////////// pc /////////// */
    .box-2.itembox {
        width: 100%;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .box-2 .item {
        width: 44%;
        margin: 0 0 1.5em;
        background: #fff;
        padding: 2em 2.5% 2em;
        position: relative;
        /*        border: #f00 thin solid;*/
    }

    .box-2 .item dl.spec dt {
        /*        font-size: 1.6rem !important;*/
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .box-2 .item dl.spec dt .openprice {
        font-weight: normal;
        font-size: 1.6rem !important;
    }

    .box-2 .item dl.spec dd.price {
        margin-bottom: .5em;
    }

    .box-2.itembox .item-photo {
        margin-bottom: 1.5em;
        text-align: center;
    }

    .box-2.itembox .item-photo img {
        width: 100%;
        /*        max-width: 346px;*/
        max-width: 450px;
    }

}


/*====================================================
	// CLASS .box-3 pc
====================================================*/


@media print,
screen and (min-width: 1024px) {
    .box-3.itembox {
        width: 100%;
        margin: auto;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        /**/
        justify-content: flex-start;
        flex-wrap: wrap;
    }


    .box-3 .item {
        /*        width: 30%;*/
        width: 29%;
        /*        margin: 0 1.6% 1em;*/
        margin: 0 2.16% 1em;
        padding: 2em 0 0;
        position: relative;
        background: #fff;
    }

    .box-3.itembox .item-photo {
/*        margin-bottom: 1em;*/
        text-align: center;
    }

    .box-3.itembox .item-photo img {
        width: 100%;
        max-width: 324px;
    }

}


/*====================================================
	// CLASS .box-4 pc
====================================================*/

@media print,
screen and (min-width: 1024px) {

    .box-4.itembox {
        width: 100%;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
    }

    .box-4 .item {
        width: 22.5%;
        margin: 0 0 1em;
        background: #fff;
        padding: 2em 1%;
        position: relative;
    }

    .box-4.itembox .item-photo {
        width: 100%;
        margin-bottom: 1em;
        text-align: center;
    }

    .box-4.itembox .item-photo img {
        width: 100%;
    }

    .box-4 dl.spec dt {
        font-size: 1.4rem;
    }

    .box-4 dl.spec dt .maker {
        font-size: 1.6rem;
    }

    .box-4 dl.spec dt .reading {
        font-size: 1.3rem;
        display: block;
    }

    .box-4 .price-red {
        display: block;
        text-align: right;

    }

    .box-4 .red-price {
        font-size: 1.8rem !important;
    }

}


/*====================================================
	// CLASS .box mobile-single-setup
====================================================*/


.mobile-single-setup .itembox figure .item_pc {
    display: block;
}

.mobile-single-setup .itembox figure .item_mob {
    display: none;
}


@media screen and (max-width: 1024px) {
    .mobile-single-setup .itembox figure .item_pc {
        display: none;
    }
    .mobile-single-setup .itembox figure .item_mob {
        display: block;
    }
}




@media screen and (max-width: 1023px) {

    .mobile-single-setup .itembox {
        width: 100%;
        margin: auto;
        position: relative;
    }

    .mobile-single-setup .item {
/*        margin: auto auto 3em;*/
        margin: auto auto 15px;
        /*        padding: 1em 2.5%;*/
        padding: 1em 5%;
        background: #fff;
        position: relative;
        /*border-bottom: #999 thin dotted;*/
    }

    .mobile-single-setup .itembox .item-photo {
        /*        width: 90%;*/
        width: 75%;
        max-width: 690px;
        text-align: center;
        margin: auto auto 1em;
        position: relative;

    }

    .mobile-single-setup .itembox .item-photo img {
        width: 80%;
        /*        max-width: 690px !important;*/
        margin: auto auto 1em;

    }





    .mobile-single-setup .price {
        margin-bottom: .5em;
    }

    dl.spec dt .reading {
        display: block;
    }

}

@media screen and (max-width: 768px) {
    .mobile-single-setup .box-3.itembox .item-photo img {
        width: 100%;
        max-width: 690px !important;
    }

}

/*====================================================
	.box mobile-side-setup
====================================================*/

@media screen and (max-width: 1023px) {

    /* /////////// mobile ///////////////////////// */
    .mobile-side-setup .itembox {
        position: relative;
    }

    .mobile-side-setup .item {
        width: 95%;
        display: flex;
        justify-content: space-between;
        margin: auto auto 1em;
        padding: 0;
        list-style: none;
        border-bottom: #999 thin dotted;
    }

    .mobile-side-setup .itembox .item-photo {
        width: 33% !important;
    }

    .mobile-side-setup .item-txt {
        width: 65%;
    }

    .mobile-side-setup .price {
        margin-bottom: 1em;
    }

}



@media screen and (max-width: 1023px) {

    /* //////////////////// mobile ///////////////////// */
    .mobile-side-setup .itembox dl.spec dt {
        font-size: 1.6rem;
    }
}
