@charset "utf-8";
/* Product Detail CSS */

/* MAIN
----------------------------------------------------------------------------------------------------*/

/* Product Contents
*************************************** */
.single_product_box {
    display: flex;
    padding-bottom: 30px;
}

.btn {
    padding: 15px;
}

.btn_flex_cont .btn {
    height: auto;
}

/* Jacket
***************************** */
.carousel_box {
    position: relative;
    width: 452px;
}

.carousel_box .zoom {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 100%;
    max-width: 30px;
    border: none;
    z-index: 120;
}

.main_jacket {
    width: 452px;
    height: 452px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
}

.main_jacket .popup_img {
    position: relative;
    display: block;
    width: 450px;
    height: 450px;
    overflow: hidden;
}

.main_jacket .back_img {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    object-fit: cover;
    filter: blur(10px);
}

.main_jacket .on_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

.thm_jacket {
    margin: 10px auto 0;
    max-width: 370px;
}

.thm_jacket a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
}

.thm_jacket img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 50px;
    max-height: 50px;
    filter: opacity(35%);
}

.thm_jacket .slick-current img {
    filter: opacity(100%);
}

button.slick-prev,
button.slick-next {
    display: block;
    position: absolute;
    bottom: -55px;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border: 1px solid #a9a7a7;
    border-radius: 50%;
    background-color: #f6f6f6;
    transition: all .5s ease-in-out;
    z-index: 110;
}

button.slick-prev {
    left: -40px;
}

button.slick-next {
    right: -40px;
}

button.slick-prev::before,
button.slick-next::before {
    content: "";
    position: absolute;
    top: 9.5px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #a9a7a7;
    border-right: 1px solid #a9a7a7;
}

button.slick-prev::before{
    right: 7px;
    transform: rotate(225deg);
}

button.slick-next::before {
    left: 7px;
    transform: rotate(45deg);
}

/* Product Detail
***************************** */
.product_detail {
    width: 100%;
    max-width: 530px;
    margin-left: 25px;
    font-weight: bold;
}

.sale_title {
    margin: 5px 0 10px;
    font-size: 2.5rem;
    line-height: 1.4;
}

.type {
    padding: 3px 7px;
    border-radius: 3px;
}

.opus_type_0010,
.opus_type_0020,
.opus_type_0030,
.opus_type_0040,
.opus_type_0050,
.opus_type_0060,
.opus_type_0070,
.opus_type_0080,
.opus_type_0090,
.opus_type_0110,
.opus_type_0120,
.opus_type_0150,
.opus_type_0160,
.opus_type_0170,
.opus_type_0180,
.opus_type_XXXX {
    border: solid 1px #ec3227;
    background-color: #fff;
    color: #ec3227;
}

.opus_type_0140 {
    background-color: #01509d;
    color: #fff;
}

.opus_type_0100, .opus_type_0130 {
    background-color: #ef4e00;
    color: #fff;
}

.catch_cp {
    margin-top: 15px;
}

.product_detail .price {
    margin-bottom: 15px;;
    font-weight: bold;
    text-align: right;
}

.product_detail .price span {
    font-size: 2rem;
}

.select_title {
    margin: 15px 0 5px;
    text-align: center;
}

select {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    cursor: pointer;
    margin: 0 auto;
    padding: 5px;
    width: 95%;
    max-width: 400px;
    border-radius: 5px;
    border: solid 2px #dedede;
    background-color: #dedede;
    font-weight: bold;
    text-align: center;
    transition: all .2s ease-in-out;
    
}

/* Table
*************************************** */
table {
    margin: 20px auto 0;
    width: 100%;
    font-size: 1.6rem;
    font-weight: normal;
}

tr {
    border-bottom: solid 1px #a9a7a7;
}

th {
    padding-right: 15px;
    width: 120px;
    font-weight: bold;
}

td {
    padding: 5px 0;
    font-size: 1.4rem;
    line-height: 1.5;
}

/* Product Src Contents
*************************************** */
#product_src_cont {
    border-top: solid 1px #a9a7a7;
}

.tokuten_box {
    margin-bottom: 15px;
    padding: 15px 15px 0;
    border-radius: 4px;
    box-shadow: 0 0 7px 0 rgba(230, 0, 40, .3)
}

.tokuten_box .sub_title {
    color: #E60028;
    font-size: 4.5rem;
    font-weight: 400;
}

.fa-gift:before {
    margin-right: 10px;
    font-family: "Font Awesome 5 Free";
}

/* コンテンツエディター対応CSS
**************************************/
.text a {
    font-weight: bold;
    color: #E60028;
    transition: .2s;
}

.text a:hover {
    color: #000;
}

.aligncenter {
    display: block;
    margin: 15px auto;
}

strong {
    font-weight: bold;
}

em {
    font-style: oblique; 
}

.text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.text ol {
    list-style-type: decimal;
    margin-left: 20px;
}

blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777777;
    border-left: 4px solid #E60028;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 0;
    content: "“";
    font-family: sans-serif;
    color: #E60028;
    font-size: 90px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #777777;
    font-size: 0.9em;
}

/* Gallery */
.text .gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 25px auto !important;
}

.text .gallery-item {
    display: block;
    margin: 0 auto;
    max-width: 47.5%;
}

.text .gallery img {
    width: 100% !important;
    height: 100%;
}


/* Youtube Contents */
.youtube {
    position: relative;
    margin: 25px auto;
    padding-top: 56.25%;
    width: 100%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Musics
*************************************** */
.music_box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 25px auto;
    font-size: 1.6rem;
}

.music_box .music_cont {
    margin-bottom: 25px;
    width: 47.5%;
}

.diskNmb {
    padding: 0 0 10px 10px;
    font-weight: bold;
    border-bottom: 1px solid #666;
}

.disc_nmb {
    padding: 0 0 10px 10px;
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 1px solid #666;
}

.music_box .music_cont ol li {
    position: relative;
    padding: 15px 85px 15px 10px;
    list-style-position: inside;
    font-size: 1.5rem;
}

.music_box .music_cont ol li:nth-child(2n) {
    background-color: rgba(230, 230, 230, 0.5);
}

.music {
    width: 100%;
    line-height: 1.4;
    list-style: decimal-leading-zero;
}

.music li a {
    display: block;
    cursor: pointer;
    margin-right: 10px;
}

.music li:nth-child(2n) {
    background-color: #f5f7f8;
}

.music_title {
    margin-left: 7px;
}

.play_list_box {
    position: absolute;
    display: flex;
    top: 10px;
    right: 0;
    line-height: 0;
}

/* プレーヤー 共通 */
.play_box,
.play_video_box {
    position: relative;
    overflow: hidden;
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    bottom: 0;
    padding: 2px;
    border-radius: 50%;
    cursor: pointer;
}

/* 試聴 */
.play, .pause {
    position: relative;
    text-align: left;
    cursor: pointer;
}

.play:before, .play:after, .pause:before {
    content: '';
    position: absolute;
    background-color: inherit;
}

.play, .play:before, .play:after {
    width: 7.5px;
    height: 7.5px;
    border-top-right-radius: 40%;
}

.play {
    transform: rotate(30deg) skewX(-30deg) scale(1,.866);
    margin: 5px 7.5px;
}

.play:before {
    transform: rotate(-135deg) skewX(-45deg) scale(1.414,.707) translate(0,-50%);
}

.play:after {
    transform: rotate(135deg) skewY(-45deg) scale(.707,1.414) translate(50%);
}

.pause:before {
    width: 11px;
    height: 11px;
    margin: 3.5px;
    transform: rotate(90deg);
}

.replay_box {
    background-color: #E60028;
}

.music li a .play_box .play.replay {
    background-color: #E60028;
}

.music li a .play_box,
.music li a .play_video_box {
    border: solid 1.5px #E60028;
    transition: .5s;
}

.music li a:hover .play_box,
.music li a:hover .play_video_box {
    background-color: #E60028;
}

.music li a .play_box .play {
    background-color: #E60028;
    transition: .5s;
}

.music li a:hover .play_box .play {
    background-color: #fff;
}

.music li a .play_box .pause:before {
    border-bottom: 3.5px solid #E60028;
    border-top: 3.5px solid #E60028;
    transition: .5s;
}

.music li a:hover .play_box .pause:before {
    background-color: #E60028;
    border-bottom: 3.5px solid #fff;
    border-top: 3.5px solid #fff;
}

/* 視聴 */
.play_video {
    box-sizing: border-box;
    position: absolute;
    display: block;
    top: 6px;
    left: 4.5px;
    width: 14px;
    height: 11px;
    box-shadow: 0 0 0 2px;
    border-radius:
        15px 15px 15px 15px /
        45px 45px 45px 45px;
    transform: scale(var(--ggs,1));
}

.play_video:before {
    content: "";
    display: block;
    position: absolute;
    top: 1.5px;
    left: 4.5px;
    width: 6px;
    height: 8px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.music li a .play_video {
    color: #E60028;
    transition: .5s;
}
  
.music li a:hover .play_video {
    color: #fff;
}

.music li a .play_video:before {
    background-color: #E60028;
    transition: .5s;
}

.music li a:hover .play_video:before {
    background-color: #fff;
}

/* リンク */
.play_link {
    position: absolute;
    margin-left: 5px;
    margin-top: 7.5px;
    width: 7px;
    height: 2px;
    background-color: currentColor;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.play_link:before {
    content: '';
    position: absolute;
    top: -2.5px;
    left: -7px;
    width: 10.5px;
    height: 7px;
    border-radius: 3px;
    border: solid 1.5px currentColor;
}

.play_link:after {
    content: '';
    position: absolute;
    top: -2.5px;
    right: -7px;
    width: 11.5px;
    height: 7px;
    border-radius: 3px;
    border: solid 1.5px currentColor;
}

.music li a .play_link {
    color: #E60028;
    transition: .5s;
}

.music li a:hover .play_link {
    color: #fff;
}

.music_detail {
    margin: 3px 0 0 37px;
    font-size: 1.4rem;
}

/* Related links
*************************************** */
.related_carousel_item .slick-slide {
    width: 100%;
    max-width: 220px;
}

.product_box {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding-top: 7px;
    text-align: left;
    transition: all .2s ease-in-out;
}

.product_box:hover {
    opacity: .7;
}

.product_box .jacket_box {
    width: 200px;
    height: 200px;
    margin: 0 10px 15px;
    background-color: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .2);
}

.product_box .jacket_box .jacket {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 200px;
    overflow: hidden;
}

.product_box .jacket_box .back_img {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    object-fit: cover;
    filter: blur(10px);
}

.product_box .jacket_box .on_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}

/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
    /* MAIN
    ----------------------------------------------------------------------------------------------------*/
    /* Product Contents
    *************************************** */
    .single_product_box {
        display: block;
    }

    .carousel_box {
        width: 100%;
        max-width: 452px;
    }

    .main_jacket {
        width: 100%;
        height: 100%;
        max-width: 452px;
        max-height: 452px;
    }

    .thm_jacket {
        width: 75%;
    }


    .product_detail {
        width: 100%;
        margin: 0 auto;
    }

    #product_cont .sale_title {
        font-size: 2rem;
    }

    /* Product Src Contents
    *************************************** */
    .tokuten_box .sub_title {
        font-size: 3rem;
    }

    .btn_flex_cont {
        justify-content: center;
    }

    /* Musics
    *************************************** */
    .music_box {
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        width: 95%;
    }

    .music_box .music_cont {
        margin-bottom: 25px;
        width: 100%;
    }

    .music_box .music_cont ol li {
        padding: 15px;
    }

    .play_list_box {
        position: static;
        margin-top: 10px;
    }

}
/* (max-width: 480px) end */


/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
    /* MAIN
    ----------------------------------------------------------------------------------------------------*/
    /* Product Contents
    *************************************** */
    .carousel_box {
        width: 40vw;
        max-width: 400px;
    }

    .main_jacket {
        width: 40vw;
        height: 40vw;
        max-width: 400px;
        max-height: 400px;
        min-width: 190px;
        min-height: 190px;
    }

    .main_jacket .popup_img {
        width: 40vw;
        height: 40vw;
        max-width: 400px;
        max-height: 400px;
        min-width: 190px;
        min-height: 190px;
    }

    .thm_jacket {
        width: 80%;
    }

    .product_detail {
        width: 50%;
    }

    #product_cont .sale_title {
        font-size: 2.3rem;
    }

    /* Musics
    *************************************** */
    .music_box {
        margin: 0 auto;
        width: 97.5%;
    }

    .music_box .music_cont ol li {
        padding: 15px;
    }

    .play_list_box {
        position: static;
        margin-top: 10px;
    }

}
/* (min-width: 481px) and (max-width: 1023px) end */
