@charset "utf-8";
 /*========= 画像スライダー ===============*/
.slider {/*横幅90%で左右に余白を持たせて中央寄せ*/
    width:90%;
    margin:0 auto;
    /* display: none; 初期状態では非表示 */
    visibility: hidden; /* 読み込み途中にちらつかないようにする */
}

.slider.lazyloaded {
    /* display: block; 遅延読み込み後に表示 */
    visibility: visible;
    opacity: 1; /* スムーズな表示 */
    transition: opacity 0.5s ease-in-out;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 8px;
}

.slick-slide{
    height: auto;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 26%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 1px solid #666;/*矢印の色*/
    border-right: 1px solid #666;/*矢印の色*/
    height: 16px;
    width: 16px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -3.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -3.5%;
    transform: rotate(45deg);
}

/*========= お気に入り属性 ===============*/
.radio-okni-type {
    display: flex;
    justify-content: center;
}
.radio-okni-type label {
    display: block;
    width: 50px;
    background: #e1e1e1;
    color: #000;
    padding: 5px;
    margin: 2px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}
.radio-okni-type input:checked + label {
    /* background: #6c757d; */
    background: #e3342f;
    color: #FFF;
}
.radio-okni-type input {
    display: none;
}

/*========= お気に入り追加モーダル ===============*/
.modal-radio-okni-type {
    display: flex;
    justify-content: center;
}
.modal-radio-okni-type label {
    display: block;
    background: #e1e1e1;
    color: #000;
    padding: 25px;
    margin: 10px;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 50px;
}
.modal-radio-okni-type input:checked + label {
    background: #6c757d;
    color: #FFF;
}
.modal-radio-okni-type input {
    display: none;
}

/*========= 価格スライダー ===============*/
.noUiSlider-wrap .inner-block {
    padding: 50px;
}

@media screen and (max-width:500px) {
    .noUiSlider-wrap .inner-block {
        padding: 26px;
    }
}

.noUiSlider-wrap .text-wrap {
    margin: 30px auto;
}

.noUi-horizontal .noUi-handle {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    top: -12px;
}

.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after {
    content: none;
}

.noUi-connect {
    background-color: #dddddd;
}

.noUi-horizontal {
    height: 7px;
}

#rangeslider {
    width: 85%;
    margin: 20px auto 20px;
}

.rangeslider2{
    width: 85%;
    margin: 20px auto 20px;
}

/*========= クロス検索 ===============*/
.chk-container{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.chk-lbl {
    margin-left: 5px;
}

.check_lb {
    display:block;
}

.check_lb > input {
    display: inline;
}

.lbl {
    margin-bottom:10px;    /*要素の外側下部の余白*/
}

.con {
    height: 0;           /*縦幅*/
    width: 100%;         /*横幅*/
    opacity: 0;          /*不透明度*/
    padding: 0 10px;     /*要素の内部側の余白*/
    transition: 0.5s;    /*アニメーション速度*/
    visibility: hidden;  /*表示設定*/
    font-size: 13px;     /*フォントサイズ設定*/
}

.cc-chk{
    margin-bottom: 10px !important;
}

.con-series {
    height: auto;        /*縦幅*/
    /* opacity: 1;          不透明度 */
    margin-bottom: 10px; /*要素の外側下部の余白*/
    /* visibility: visible; 表示設定 */
}

/*========= 商品詳細注文テーブル ===============*/
.table_box {
    position: relative;
    height: auto;
    overflow-y: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.order-table-both-fix {
    border-collapse: collapse;
    border-spacing: 0;
}
.order-table-both-fix th,
.order-table-both-fix td {
    padding: 15px;
    color: #000;
    /* border-bottom: #aaa 1px dotted; */
    border-right: #aaa 1px dotted;
}

.sticky_row,
.sticky_col,
.sticky_cross {
    border: none;  /* 本体の枠線は削除 */
    position: sticky;
    background: #fff;
    z-index: 2;
}

.sticky_cross {
    z-index: 3;  /* 最上位に配置 */
}

.sticky_row::before,
.sticky_col::before,
.sticky_cross::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border-bottom: #aaa 1px dotted; */
    border-right: #aaa 1px dotted;
    background: #fff;
    z-index: -1;
}


/*========= 商品一覧画像リンク ===============*/
.image-container {
    position: relative;
    display: inline-block;
}

.image {
    display: block;
    height: auto;
}

.link-area {
    position: absolute; /* 絶対位置を指定 */
    top: 60px; /* 上からの距離を指定 */
    height: 245px; /* リンクの高さを指定 */
    z-index: 10; /* 他の要素より前面に表示 */
    /* 背景色を設定して範囲を確認 */
    /*background-color: rgba(255, 0, 0, 0.5); /* デバッグ用 */
}

/*========= Loading spinner ===============*/
#loading {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

body:not(.loading) #loading {
    display: none;
}

.ac-color{
    accent-color: #3490dc;

}
