@charset "utf-8";

/* CSS Document */

@media screen and ( max-width:767px) {
    /* メディアクエリー */
    /********************************************************/
    /*************************common*************************/
    /********************************************************/
    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-font-feature-settings: "palt";
        font-feature-settings: "palt";
    }
    body {
        min-width: 100%;
        color: #666;
        font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    }
    header,
    article,
    footer,
    aside,
    time,
    nav,
    small,
    section {
        display: block;
    }
    p {
        color: #666;
        font-size: 14px;
        line-height: 1.5rem;
        text-align: left;
        margin-bottom: 4%;
    }
    a {
        text-decoration: none;
    }
    a:hover {
        opacity: 0.8;
    }
    img {
        vertical-align: bottom;

    }
    a:hover img {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.7;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
    }

    strong {
        font-weight: bolder;
        font-size: 110%;
    }

    section {
        padding: 0 0 3% 0;
    }

    .pc {
        display: none;
    }
    h1 {}
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {}
    h5 {}

    .list_btn {
        border: 1px solid #fff;
        padding: 5px 40px;
        color: #666;
        margin: 20px 0;
        display: inline-block;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    .list_btn:hover {
        background: #fff;
        color: #666;
    }
    /************************* パンくず *************************/
    #pankuzu {
        border-bottom: 1px solid #ccc;
        color: #666;
        background: #fff;
    }
    #pankuzu ul {
        box-sizing: border-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        margin: 0 auto;
        max-width: 100%;
        padding: 3%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    #pankuzu li {
        display: inline;
        font-size: 12px;
        padding: 2px 10px 0 10px;
    }
    #pankuzu a {
        color: #666;
    }

    /************************* header *************************/
    .header_main {
        width: 100%;
        height: 55px;
        padding: 0;
        position: fixed;
        z-index: 99;
        -webkit-transition: 1s;
        transition: 1s;
        background: #FFF;
        top: 0;
    }

    .is-animation {
        opacity: 0;
        margin-top: -120px;
    }

    .header_txt {
        display: none;
    }

    .header_inner {
        max-width: 100%;
        margin: 0 auto;

    }
    .header_main .logo img {
        max-width: 130px;
    }


    /************************* ハンバーガーメニュー *************************/
    .drawer-nav {
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        background: #fff;
        color: #000;
        text-align: center;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
        width: 80%;
        height: 100%;
        overflow: auto;
        border-right: 1px solid #bf0000;
    }

    .drawer-nav .sp {}
    .drawer-nav .drawer-menu {

        background: #fff;
        margin: 0 auto;
        padding: 0;
        width: 100%;

        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .drawer-nav .drawer-menu .w100 {
        background: #ce009f;
        color: #fff;
        padding: 10px 0;
        text-align: center;
    }

    .drawer-nav .drawer-menu .w100 a {
        color: #fff;
    }
    
    .drawer-nav .drawer-menu .moushikomi {
        background: #ce009f;
        color: #fff;
    }

    .drawer-nav .drawer-menu .moushikomi a {
        color: #fff;
    }

    .font200 {
        font-size: 20px;
        font-weight: bold;
        line-height: 150%;
    }

    .font70 {
        font-size: 16px;
        font-weight: bold;
    }

    .drawer-nav .drawer-menu li {
        font-size: 0.9em;
        list-style-type: none;
        padding: 0;
        width: 100%;
        border-bottom: 1px dotted #ccc;
        text-align: left;
    }

    .drawer-nav .drawer-menu li:last-child {

    }

    .drawer-nav .drawer-menu li ul {
        text-indent: 1em;
    }

    .drawer-nav .drawer-menu li ul li a {
        padding: 0.8em;
    }
    
    .drawer-nav .drawer-menu li img{
        max-width: 80%;
        width: auto;
    }

    .drawer-nav a {
        display: block;
        color: #666;
        padding: 1em;
        display: flex;
        align-items: center;
    }
    .drawer-nav a:hover {}
    /* このクラスを、jQueryで付与・削除する */
    .drawer-nav.active {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    
    .drawer-nav div {
        padding: 2px;
    }
    
    .drawer-nav div img {
        max-width: 100%;
        height: auto;
    }
    
    .drawer-nav div input[type="submit"] {
        margin: 10px 0;
        width: 80%;
        padding: 5px;
    }

    .navToggle {
        display: block;
        position: fixed;
        /* bodyに対しての絶対位置指定 */
        right: 0;
        top: 0;
        width: 55px;
        height: 55px;
        cursor: pointer;
        z-index: 999;
        background: #ce009f;
        text-align: center;
    }

    .navToggle span {
        display: block;
        position: absolute;
        /* .navToggleに対して */
        width: 30px;
        border-bottom: solid 3px #eee;
        -webkit-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 12px;
    }

    .navToggle span:nth-child(1) {
        top: 14px;
    }

    .navToggle span:nth-child(2) {
        top: 23px;
    }

    .navToggle span:nth-child(3) {
        top: 32px;
    }

    .navToggle span:nth-child(4) {
        border: none;
        color: #eee;
        font-size: 9px;
        font-weight: bold;
        top: 34px;
    }

    /* 最初のspanをマイナス45度に */
    .navToggle.active span:nth-child(1) {
        top: 23px;
        left: 12px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    /* 2番目と3番目のspanを45度に */
    .navToggle.active span:nth-child(2),
    .navToggle.active span:nth-child(3) {
        top: 23px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .login_btn {
        display: block;
        position: fixed;
        /* bodyに対しての絶対位置指定 */
        right: 55px;
        top: 0;
        width: 55px;
        height: 55px;
        z-index: 999;
    }
    .login_btn a {
        color: #fff;
        display: block;
        width: 55px;
        height: 55px;
        background: #282d33;
        text-align: center;
        color: #fff;
        line-height: 45px
    }

    .cart_btn {
        display: block;
        position: fixed;
        /* bodyに対しての絶対位置指定 */
        right: 110px;
        top: 0;
        width: 55px;
        height: 55px;
        z-index: 999;
    }
    .cart_btn a {
        display: block;
        width: 55px;
        height: 55px;
        background: #ce009f;
        text-align: center;
        color: #fff;
        background-image: url(../img/cart_icon_w.png);
        background-position: 5px 15px;
        background-repeat: no-repeat;
    }



    .cart_btn .number {
        display: block;
        position: relative;
        top: 5px;
        left: 25px;
        margin: 0;
        color: #ce009f;
        width: 25px;
        border-radius: 50px;
        background: #fff;
        text-align: center;
    }

    .search_box {
        background: #282d33;
        padding: 15px;
        margin: 55px 0 0 0;
    }
    .search_box .search_box_in {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .search_box .search_box_in .s_title {
        display: none;
    }
    .search_box .form_parts {
        width: 100%;
    }
    .search_box .selectBox {
        display: none;
    }

    .search_box .selectBox select {
        width: 100%;
        padding-left: 10px;
        margin: 0 10px 0;
        cursor: pointer;
        font-size: 16px;
        color: #999;
        height: 60px;
        line-height: 60px;
        background: #fff;
        border: none;
        border-radius: 5px;

    }

    .search_box .search {
        position: relative;
        width: 100%;
        border-radius: 2px;
        font-size: 13px;
        color: #acacac;
        font-weight: normal;
    }
    .search_box .search input {}
    .search_box .search input[type="text"] {
        width: 100%;
        height: 40px;
        line-height: 40px;
        padding-left: 14px;
        background: #fff;
        border: none;
        border-radius: 5px;
        font-size: 16px;
    }

    .search_box .search input[type="image"] {
        position: absolute;
        top: 10px;
        right: 15px;
        border: none;
        width: 21px;
        padding: 0;
    }
    /************************* ページナビ *************************/
    .page_navi {
        text-align: center;
        padding: 10px 0;
        margin: 30px 0;
    }
    .page_navi span {
        color: #ce009f;
        padding: 3px 10px;
        display: inline!important;
    }

    .page_navi a {
        background-color: #ce009f;
        background-repeat: no-repeat;
        color: #fff;
        padding: 3px 5px;
        margin: 2px;
        display: inline;
        border-radius: 3px;
    }
    .page_navi a:hover {
        border: 2px solid #ce009f;
    }
    .pages {
        border: 1px solid #ce009f;
        color: #317dbe;
        padding: 3px 5px;
    }
    .current {
        border: 1px solid #ce009f;
        color: #ce009f;
        padding: 3px 5px;
        margin: 0 2px;
    }


    /************************* メインビジュアル *************************/
    #mv_sp {
        margin: 0;

    }
    #mv_sp img {
        position: relative;
        vertical-align: top;
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: top center;

    }


    #mv_sp .slick-dots {
        margin: -100px 0 100px;
    }

    #mv_pc {
        display: none;
    }


    /*************************トップ共通*************************/
    .content_wrap {
        max-width: 100%;
        margin: 0 auto;
    }
    .title_group {
        text-align: center;
        margin-top: 50px;
    }
    .title_group h2 {
        text-align: center;
        font-size: 18px;
        margin: 10px 0;
        color: #666;
        font-weight: bold
    }
    .title_group span {
        font-weight: bolder;
        color: #ce009f;

    }
    .title_group img {
        max-width: 100%;
        height: auto;
    }

        /*************************検索*************************/
        #search {
            margin: 0 0 30px 0;
        }
    
        .search_wrap {
    
        }
        .form_wrap form{
            display: flex;
            flex-flow: row wrap;
            justify-content: start;
            align-items: center;
        }
        .form_wrap .dropdown{
            margin: 5px 5px 5px 0;
            width: 100%;
        }
    
        .form_wrap .dropdown select{
            padding: 10px;
            margin: 5px;;
            width: calc(48% - 5px);
        }

        .form_wrap .freeword{
            width: 100%;
        }

        .form_wrap .freeword input[type="text"] {
            margin: 5px 5px 10px 0;
            padding: 10px;
            width: 100%;
        }
    
        .form_wrap .btn {
            width: 100%;
        }

        .form_wrap .btn input[type=submit] {
            width: 100%;
            border-radius: 5px;
            text-align: center;
            background: #ce009f;
            color: #fff;
            cursor: pointer;
        }

    /*************************news*************************/
    #news {}

    .news_inner {
        max-width: 100%;
        margin: 0 auto;
    }

    .news_inner ul {
        width: 100%;
        background: #edeae7;
    }

    .news_inner li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 10px;
        border-bottom: 1px dashed #999;
        font-size: 14px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .news_inner a {
        color: #666;
    }

    .news_inner ul a:hover {
        color: #fbb82d;
    }
    .news_inner .news_list_date {
        margin-right: 20px;
    }
    .news_inner .blog_list_title {
        font-size: 13px;
        line-height: 1.3rem;
    }

    #news .list_btn {
        float: right;
    }



    /************************* footer *************************/
    #to_top {
        bottom: 10px;
        position: fixed;
        right: 0;
        text-align: center;
    }
    #to_top img {
        max-width: 75%;
    }

    #footer {}

    #footer .footer_inner {
        display: none;
    }


    #footer .copyright {
        width: 100%;
        margin: 0 auto;
        padding: 5px 0;
        background: #282d33;
    }

    #footer .copyright p {
        color: #fff;
        text-align: center;
        font-size: 12px;
    }

    /************************* 固定ページ共通 *************************/
     .cont_box {
        max-width: 100%;
        margin: 30px auto;
        text-align: center;

    }
    
    #page_common p{
        margin-bottom: 15px;
    }

    #page_common h3 {
        font-size: 18px;
        margin: 15px;
        padding: 0 0 5px 10px;
        font-weight: bold;
    }

    /* お問合せフォーム
    ----------------------------------------------------------- */
    .form_area {
        max-width: 100%;
        margin: 30px auto 50px;
    }

    .form_area p {
        text-align: center;
        margin: 30px 0;
    }


    .form_area table {
        width: 95%;
        margin: 0 auto 50px;
        border: 1px solid #194675;
    }

    .form_area table th {
        background-color: #194675;
        color: #fff;
        width: 100%;
        padding: 10px;
        text-align: left;
        vertical-align: top;
        white-space: nowrap;
        display: block;

    }

    .form_area table th span {
        font-size: 70%;
    }

    .form_area table td {
        padding: 10px;
        display: block;
    }

    .hissu::after {
        content: "必須";
        background: #ce009f;
        color: #fff;
        padding: 2px 10px;
        font-size: 50%;
        margin-left: 10px;
        border-radius: 5px;
        position: relative;
        top: -1px;
    }

    /**ボタンCSSのリセット**/
    .input_but {
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .input_but {
        background-color: #ce009f;
        color: #fff;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        position: relative;
        overflow: hidden;
        -webkit-transition: 0.3s ease;
        transition: 0.3s ease;
        border-radius: 5px;
        margin: 10px auto;
    }

    .input_but:hover {
        opacity: 0.5;
    }

    #inputbut_area {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        margin: 0 auto;
        flex-flow: column;
    }

    /**radioのcss**/
    input[type=radio] {
        width: auto;
    }
    .radio {
        display: none;
        /* まず、＜input＞タグの表示を消します*/
    }

    label {
        position: relative;
        /* ＜label＞を位置の指標になる指示を書きます*/
        display: inline-block;
        padding: 3px 3px 3px 20px;
        cursor: pointer;
    }

    .radio + span::before,
    /* ＜span＞タグの疑似要素を作ります*/
    span::after {
        position: absolute;
        content: '';
        top: 50%;
        border-radius: 100%;
        -webkit-transition: all .2s;
        transition: all .2s;
    }

    .radio + span::before {
        left: 0;
        width: 14px;
        height: 14px;
        margin-top: -8px;
        background: #f3f3f3;
        /* ラジオボタンの元の色の指定*/
        border: 1px solid #ccc;
    }

    .radio + span:hover::before {
        background: #fff;
        /* ラジオボタンのマウスオーバーしたときの色の指定*/
    }

    .radio + span::after {
        opacity: 0;
        left: 4px;
        width: 8px;
        height: 8px;
        margin-top: -4px;
        background: #be2828;
        /* ラジオボタンのチェックした時の色の指定*/
        -webkit-transform: scale(2);
        transform: scale(2);
    }

    .radio:checked + span::before {
        /* ラジオボタンがチェックされたときの隣接しているタグへの指示を書きます*/
        background: #fff;
        border: 1px solid #be2828;
        /* ラジオボタンのチェックした時の枠の線の指定*/
    }

    .radio:checked + span::after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    input {
        font-size: 106%;
    }

    input,
    select {
        padding: 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 5px;
        width: 100%;
    }

    .tex_01 {
        width: 60%;
    }

    .tex_02 {
        width: 100%;
    }

    .tex_03 {
        width: 40%;
    }

    .text_box {
        width: 100%;
        height: 200px;
        padding: 5px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 5px;
        font-size: 106%;
        border: 1px solid #ccc;
        font-family: 'Noto Sans Japanese', sans-serif;
    }

    .form_area .mwform-tel-field .post {
        width: 30%;
    }


    .fom_area table td .nomal {
        margin: 0;
        width: 100%;
    }

    .fom_area table td .nomal th {
        font-size: 86%;
        width: 30%;
    }

    .day_box {
        margin-bottom: 5px;
        width: 50%;
    }
    .mw_wp_form input[type="file"] {
        display: inline-block;
        margin: 0 0 5px;
    }


    /* オンラインショップトップ
    ----------------------------------------------------------- */
    #side-column {
        width: 100%;
        order: 1;
    }

    .main-colum {
        width: 95%;
        order: 2;
        margin: 0 auto;
    }
    #shop .main-colum .heading {}

    #pickup01 {}

    #pickup01 h2 {
        padding-bottom: 4px;
        color: #E32952;
        font-size: 18px;
        border-bottom: 2px solid #E32952;
    }

    #pickup02 h2 {
        padding-bottom: 4px;
        color: #018040;
        font-size: 18px;
        border-bottom: 2px solid #018040;
    }

    .product-list {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
    }
    .product-list .image {
        text-align: center;
        border: 1px solid #ccc;
        background: #fff;
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形に */
  overflow: hidden;
    }
    .product-list li {
        width: 46%;
        margin: 10px 5px 20px;
    }
    .product-list li a {
        display: block;
    }
    .product-list .image img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* 画像の比率を保ってトリミング */
        display: block;
    }

    .product-name {
        font-size: 14px;
        color: #666;
        line-height: 1.3;
        padding: 5px 0;
    }
    .price {
        font-size: 20px;
        color: #a70011;
        font-weight: bold;
        line-height: 1.2rem;
    }


    #side-column .ec_cat {
        margin-bottom: 30px;
    }
    #side-column .ec_cat .heading {
        text-align: center;
    }
    #side-column .ec_cat .heading h2 {
        display: block;
        padding: 10px ;
        margin-bottom: 0px;
        font-size: 16px;
        background: #ce009f;
        color: #fff;
    }

    #side-column ul.category-list li a {
        display: block;
        color: #666;
        font-size: 14px;
        font-weight: bold;
        padding: 16px 0;
        border-bottom: 1px solid #dddddd;
        text-indent: 1em;
    }

    #side-column ul.category-list li ul {
        padding-left: 1rem;
    }

    #side-column ul.category-list li:before {
        content:  "";
        width: 12px;
        height: 12px;
        display:  inline-block;
        position:  relative;
        top: 16px;
        left: 10px;
        margin-right: 5px;
        background-image:  url(../img/arow.png);
        background-size:  contain;
        background-repeat:  no-repeat;
        vertical-align: top;
    }
    
    #side-column ul.category-list li a{
        display: block;
        color: #666;
        font-size: 14px;
        font-weight: bold;
        padding: 0 0 12px 15px;
        border-bottom: 1px solid #dddddd;
        text-indent: 1em;
    }
    
    #side-column .ec_cal .heading {}
    #side-column .ec_cal h3 {
        text-align: center;
        display: block;
        padding: 8px 0 10px;
        margin-bottom: 0px;
        font-size: 16px;
        background: #333;
        color: #fff;
    }
    #side-column .ec_cal h3:before {
        content: url(../img/cal_icon.png);
        margin: 0 10px 0;
        position: relative;
        top: 4px;
    }

    #side-column .ec_cal .ec_cal_inner {
        border: 2px solid #333;
        padding: 10px;
    }

    #side-column .ec_cal .ec_cal_inner h3 {
        display: none;
    }

    .ec_cal caption {
        font-size: 13px;
        margin: 10px 0;
    }
    .ec_cal li .usces_calendar {
        width: 100%;
        border: 1px solid #ccc;
        margin-bottom: 15px;
    }
    .ec_cal li .usces_calendar th {
        padding: 5px;
        border: 1px solid #ccc;
        text-align: center;
        background: #06c;
        color: #fff;
    }
    .ec_cal li .usces_calendar td {
        padding: 5px;
        border: 1px solid #ccc;
        text-align: center;
    }

    #shop_guide {
        max-width: 95%;
        margin: 20px auto;
        padding: 0;
        border: 1px solid #ce009f;
    }
    #shop_guide h2 {
        background: #ce009f;
        padding: 10px 0;
        text-align: center;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
    }

    #shop_guide .s_guide_wrap {
        display: flex;
        flex-flow: column;
        padding: 10px;
    }

    #shop_guide .s_guide_wrap div {
        width: 100%;
    }

    #shop_guide h3 {
        color: #ce009f;
        font-size: 18px;
        font-weight: bold;
        border-bottom: 2px solid #ce009f;
        padding-bottom: 5px;
        margin: 10px 0 0;
    }


    /* オンラインショップ関連
    ----------------------------------------------------------- */
    .item_page_title {
        padding: 8px;
        font-size: 18px;
        color: #666;
        font-weight: bold;
        margin-bottom: 20px;
        border-bottom:2px solid #333;
    }

    #page_common #itempage .itemimg{
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        text-align: center;
    }

    #page_common #itempage .itemimg img{
        max-width: 100%;
        height: auto;
    }


    #page_common #itempage .item_name{
        padding: 10px;
        margin-left: 0;
        background: #ce009f;
        color: #fff;
    }

    #page_common #itempage .field {
        padding: 10px;
        display: flex;
        justify-content: space-between;
        margin: 0 ;
        width: 100%;
        font-size: 14px;
    }



    #page_common #itempage .exp {
        padding: 10px;
        margin-bottom: 10px;
    }

    #page_common #itempage .exp h3{
        padding: 10px;
        margin: 20px 0 10px;
        font-weight: bold;
        background: #e5e5e5;
        color: #333;
        font-size: 14px;
        border-bottom: 2px solid #ce009f;
    }

    #page_common #itempage .exp h4{
        padding: 10px;
        margin: 20px 0 10px;
        font-weight: bold;
        border-left: 4px solid #e5e5e5;
        color: #333;
        font-size: 14px;
    }

    #page_common #itempage .exp p{
        padding:0 0 10px;
        color: #333;
        font-size: 14px;
    }



    #page_common #itempage table.skumulti {
        padding: 0px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 10px;
        margin-left: 0px;
        width: 100%;
        border: none;
        border-collapse: collapse;
        font-size: 14px;
    }

    #page_common #itempage table.skumulti thead {
display: none;
    }
    
    
    #page_common #itempage table.skumulti th.thborder {
        border-bottom-width: none;
        border-bottom-style: none;
        border-bottom-color: none;
    }

    #page_common #itempage table.skumulti th {
        background-color: #E6E6E6;
        text-align: center;
        padding: 10px 5px;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-right-style: solid;
        border-bottom-style: solid;
        border-right-color: #FFFFFF;
        border-bottom-color: #FFFFFF;
        margin: 0px;
        font-weight: normal;
        vertical-align: middle;
    }


    #page_common #itempage table.skumulti td {
        padding:10px 5px;
        margin: 0px;
        vertical-align: middle;
        text-align: center;
        border: 1px solid #ccc;
    }
    
    #page_common #itempage table.skumulti .price {
        font-size: 18px;
    }

    .skubutton{
        cursor: pointer;
        background: #ce009f;
        color: #fff;
        font-size: 80%;
        border: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        margin: 15px 0;
    }

    .catbox {
        max-width: 1000px;
        margin: 0 auto 100px;
    }
    .catbox #wc_cart {
    }
    .catbox  .cart_page_title {
        padding: 8px;
        font-size: 16px;
        color: #666;
        font-weight: bold;
        margin: 20px 0;
        border-bottom:2px solid #333;
    }

    .catbox .ucart {
        padding: 10px;
        font-weight: normal;
        font-size: 14px;
    }

    .catbox .ucart .ucart {
        background-size: contain;
    }

    .catbox div.usccart_navi ol.ucart{
        display: flex;
        height: auto;
    }
    
    .catbox div.usccart_navi li.usccart_cart {
        background: #ce009f;
    }
    .catbox div.usccart_navi li.usccart_customer {
        background: #ce009f;
    }
    .catbox div.usccart_navi li.usccart_delivery {
        background: #ce009f;
    }
    .catbox div.usccart_navi li.usccart_confirm {
        background: #ce009f;
    }


    .catbox #itempage .field {
        margin-left: 0;
        margin-bottom: 20px;
        padding: 10px;
    }

    .catbox input[type="submit"],.catbox input[type="button"] {
        width: 90%;
        cursor: pointer;
        background: #ce009f;
        color: #fff;
        font-size: 80%;
        border: none;
        padding: 5px 10px;
        font-weight: normal;
        border-radius: 2px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        margin: 10px 0;
    }


    .catbox #customer-info .send {
        text-align: center;
        width: auto;
        margin: 15px 0 20px;
        padding-top: 15px;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: #ccc;
    }

    .catbox #customer-info h5 {
        color: #FFFFFF;
        background-color: #333;

        padding: 10px;
    }

    .catbox #cart th, #cart td {
        padding: 10px;
    }
    .catbox #delivery-info th {
        font-size: 13px;
        line-height: 150%;
        font-weight: bold;
        color: #333;
        text-align: left;
        margin-right: auto;
        margin-left: auto;
        border: 1px solid #e6e6e6;
        background-color: #f3f3f3;
        padding: 5px 10px;
        width: 25%;
    }

    .catbox #delivery-info td {
        font-size: 13px;
        line-height: 150%;
        color: #333;
        border: 1px solid #e6e6e6;
        padding: 5px 10px;
    }

    .catbox .upbutton {
        margin-bottom: 20px;
    }

    .catbox #cart_table {
        font-size: 14px;
        border: none;
    }
    
    .catbox #cart_table thead{
        display: none;
    }
    
    .catbox #cart_table th{
        background: #bf0000;
    }
    
    .catbox #cart_table th,.catbox #cart_table td{
        display: block;
        width: 100%;
        border: 1px solid #ccc;
    }
    


    #cart .num {
        background: #bbb;
    }

    .catbox thead tr {
    }
    .catbox #cart th {
        background: #282d33;
        padding: 15px;
    }

    .catbox #confirm_table .ttl{
        background: #ccc;
    }

    .catbox #inside-cart .send {
        border-top: 1px dotted #ccc;
    }

    #customer-info table {
        margin-top: 10px;
        border-collapse: collapse;
        width: 100%;
    }

    .catbox #cart #point_table {
        width: 100%;
        margin: 20px auto;
    }

    .catbox #cart #point_table th,.catbox #cart #point_table td{
        padding: 10px;
        border: 1px solid #ccc;
    }

    .search_title{
        padding: 8px;
        color: #4E0A17;

        font-size: 18px;
        color: #666;
        font-weight: bold;
        margin-bottom: 20px;
        border-bottom:2px solid #4E0A17;
    }


    .catbox #memberpages div.loginbox {
        width: 90%;
        background-color: #F6F6F6;
        margin: 0 auto;
        border: 1px solid #CCCCCC;
        padding: 0px 30px 30px;

    }

    .member_page_title {
        padding: 8px;
        font-size: 16px;
        color: #666;
        font-weight: bold;
        margin: 20px;
        border-bottom:2px solid #333;
    }

    .catbox #memberpages #memberinfo h3 {
        background: #282d33;
    }
    
    .catbox #memberpages #memberinfo table {
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
 
    }
    .catbox #memberpages #memberinfo table:after {
        content: "※ この表は横にスクロールできます。";
        padding: 10px 0;
        font-size: 80%;
        display: block;
        color: #999;
    }
    .catbox #memberpages #memberinfo table th{
        padding: 10px;
        white-space: nowrap;

    }
    
    .catbox #memberpages #memberinfo table td{
        padding: 10px;
        white-space: nowrap;
    }
    
    /* カラーチャートイメージマップ */
    .c_chart {
        width: 100%;
    }
    .c_chart img {
        max-width: 100%;
        height: auto;
    }
    
    
    
    
    
    
    
    
    
    
    

    /* 会社概要・特商法ページ
    ----------------------------------------------------------- */
    #comp_01 h3 {
        text-align: center;
        margin: 0 0 50px;
    }

    .company_table {
        width: 95%;
        margin: 0 auto 5%;
        background-color: #ffffff;
        border-collapse: separate;
        border-spacing: 2px;
        font-size: 95%;
    }

    .company_table th {
        display: block;
        width: 100%;
        padding: 10px;
        background-color: #282d33;
        color: #ffffff;
        text-align: center;
        font-weight: normal;
    }

    .company_table td {
        width: 100%;
        display: block;
        padding: 10px;
        border: 1px solid #282d33;
        color: #333333;
        font-size: 14px;
        line-height: 1.4rem;
    }
    /* プライバシーポリシー
    ----------------------------------------------------------- */
    #pp {
        max-width: 95%;
        margin: 0 auto;
    }

    #pp .title_group {}

    #pp span {
        font-size: 20px;
        font-weight: bold;
        color: #4E0A17;
    }

    #pp .title_group h3 {
        text-align: center;
        font-size: 13px;
        margin: 10px 0 30px;
    }

    .text_area {
        margin-top: 20px;
    }

    .text_area h4 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        border-bottom: 2px solid #4E0A17;
        padding: 5px;
        color: #4E0A17;
    }
    .text_area h4 br {}
    .text_area p {
        margin-bottom: 30px;
    }
    .text_area ul {
        margin-bottom: 30px;
    }
    .text_area li {
        font-size: 13px;
    }

    /* News一覧、News詳細ページ
    ----------------------------------------------------------- */
    #but_area {
        display: flex;
        justify-content: space-between;
    }
    #but_area#seminar_info #next {
    }
    #but_area #next a {
        border: 1px solid #ccc;
        padding: 10px 15px;
        color: #333;
        margin: 30px 0;
        display: inline-block;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        font-size: 13px;
    }
    #but_area #prev {
    }
    #but_area #prev a {
        border: 1px solid #ccc;
        padding: 10px 15px;
        color: #333;
        margin: 30px 0;
        display: inline-block;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        font-size: 13px;
    }














}