@charset "shift_jis";

#jissekiArea {
    background: #f7f8fa;
    padding: 3rem;
    border-bottom: 1px solid #e0e0e0;
}


/*-------------------------
ｈ2見出し装飾
-------------------------*/

#jissekiArea h2.jisseki {
    position: relative;
    font-size: 1.5rem;
    color: #333;
    border-bottom: 3px solid #a30f1c;
    display: block;
    width: fit-content;
    margin: 1px auto 2rem;
    text-align: center;
    padding: 10px 1rem;
}

#jissekiArea h2.jisseki span.Big {
    font-size: 2rem;
    color: #a30f1c;
}

#jissekiArea h2.jisseki::before,
#jissekiArea h2.jisseki::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

#jissekiArea h2.jisseki::before {
    background-color: #a30f1c;
}

#jissekiArea h2.jisseki::after {
    bottom: -11px;
    background-color: #fff;
}


/* スマホ */
@media screen and (max-width: 767px) {

    #jissekiArea h2.jisseki {
        border-bottom: 2px solid #a30f1c;
    }

    #jissekiArea {
        padding: 1rem;
    }

    #jissekiArea h2.jisseki {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 1rem;
    }

    #jissekiArea h2.jisseki span.Big {
        font-size: 1.6rem;
        display: block;
    } 
 
}




/*-------------------------
スライド
-------------------------*/


.jisseki_list {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.jisseki_list li {
    list-style: none;
}

.jisseki_list img {
    width: 100%;
    height: auto;
    display: block;
}

/* スマホ */
@media screen and (max-width: 767px) {

    #jissekiArea {
        padding: 1rem;
    }

    .jisseki_box {
        width: 100%;
    }

    .jisseki_slider_wrap {
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 20px 0;
    }

    .jisseki_list {
        display: block;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .jisseki_list li {
        float: left;
        list-style: none;
        width: 180px;
        height: 230px;
        margin: 0 8px;
        line-height: 0;
        position: relative;
    }

    .jisseki_list img {
        width: 180px;
        height: 180px;
        display: block;
        margin: 25px auto;
        opacity: 0.65;
        -webkit-transform: scale(0.88);
        transform: scale(0.88);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .jisseki_list img.active {
        opacity: 1;
        -webkit-transform: scale(1.22);
        transform: scale(1.22);
    }

    .jisseki_slider_wrap .caroufredsel_wrapper {
        height: 230px !important;
    }

    .jisseki_slider_wrap .caroufredsel_wrapper .jisseki_list {
        height: 230px !important;
    }
}


#jissekiPager {
    text-align: center;
    margin-top: 10px;
}

#jissekiPager a {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #ccc;
    border-radius: 8px;
    text-indent: -9999px;
    overflow: hidden;
}

#jissekiPager a.active {
    background: #c00;
}

.jisseki_coment {
    margin: auto;
    font-size: 1.2rem;
    width: 770px;
    padding-bottom: 3rem;
    font-weight: 800;
    text-align: center;
}


@media screen and (max-width: 767px) {
    .jisseki_coment {
        width: 100%;
        font-size: 14px;
        padding: 1rem 0;
        line-height: 1.6;
    }
}

.catch {
    color: #a30f1c;
}


/*-------------------------
パソコンスマホ出し分け
-------------------------*/

.pcNone {
    display: none !important;
}

.smNone {
    display: block !important;
}

@media screen and (max-width:767px) {
    .smNone {
        display: none !important;
    }

    .pcNone {
        display: block !important;
    }
}