@charset 'UTF-8';

li{
    list-style: none;
}

html{
    scroll-behavior: smooth;
}
body{
    min-width: 360px;
    font-size: 0.9rem;
    line-height: 1.2;
    color: #333333;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    
}
.wrapper{
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
}
.header{
    width: 100%;
    height: 80px;
    background-color: rgb(18, 34, 40);
    opacity: 0.9;
    position: fixed;
    top: 0;
    z-index: 9;
}

.header__logo a{
    text-decoration: none;
    color: #fff;
    line-height: 80px;
    padding-left: 2rem;
}
.header__logo a:hover{
    text-decoration: none;
    color: #ff8400;
}
.header__ttl{
    font-size: 2rem;
}
.header__ttl::before{
    position: absolute;
    top: -20px;
    left: 35px;
    font-size: .5rem;
    content: 'from Chukyo';
    color: rgb(136, 223, 255);
}
.tel{
    position: fixed;
    top: 20px;
    right: 40px;
    width: 55px;
}
.phone{
    background-color: #fff;
    border-radius: 6px;
    max-height: 40px;
    width: 32px;
    animation-name: pho;
    animation-duration:1.5s;
    animation-timing-function:ease-in;
    animation-delay:.5s;
    animation-iteration-count:1;
    animation-direction:alternate;
    animation-fill-mode:forwards;
}
@keyframes pho {
    0%{
        transform: translateX(0px)rotate(0);
    }
    100%{
        transform: translateX(-20px)rotate(-350deg);
    }
}
/*ハンバーガー*/
#humBtn{
    position: fixed;
    top: -30px;
}
.Btn{
    position: fixed;
    top: 1.5rem;
    right: 1rem;
    width: 2rem;
    height: 1.8rem;
    cursor: pointer;
    z-index: 10;
}
.Btn::before,
.Btn::after,
.bar{
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background-color: #fff;
    border-radius: 5px;
    content: '';
    transition: transform 0.5s;
}
.Btn::before{
    top: 0;
}
.Btn::after{
    bottom: 0;
}
.bar{
    top: 42%;
    transition: opacity .5s;
}
#humBtn:checked + label .Btn::before{
    width: 110%;
    transform: translateY(12px)rotate(-315deg);
}
#humBtn:checked + label .Btn::after{
    width: 110%;
    transform: translateY(-12px)rotate(315deg);
}
#humBtn:checked + label .bar{
    opacity: 0;
}
#humBtn:checked ~ .bg__dark{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-color:#ff8400;
    z-index: -20;

}
/*navi-----------*/

.navi{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    width: 13rem;
    background-color: rgb(21, 21, 21);
    padding: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: transform .3s, opacity 0.3s;
}
.navi__list{
    margin-top: 60px;
}
.navi__listItem{
    border-top: solid 1px #fff;
}
.navi__listHead{
    position: relative;
    background-color: rgb(33, 33, 33);
}
.navi__listHead+.navi__listHead{
    border-top: solid 1px #fff;
}
.navi__listHead a{
    display: block;
    padding: 11px 0 25px 10px;
    text-decoration: none;
    color: #fff;
}
.navi__listHead a:hover{
    text-decoration: none;
    color: #65ffc4;
}
.itemruby{
    font-size: 0.8rem;
}
.ruby{
    position: absolute;
    top: 35px;
    left: 25px;
    font-size: 0.7rem;
}
.navi__head{
    display: block;
    padding: 10px;
    text-align: left;
    color: rgb(21, 21, 21);
    background-color: #fff;
}
.navi__listItem:last-child{
    border-bottom: solid 1px #fff;
}
.navi__listItem a{
    display: block;
    padding: 25px 0 25px 10px;
    text-decoration: none;
    color: #fff;
}
.navi__listItem a:hover{
    color: #ff8400;
    text-decoration: none;
}
.snslist{
    margin-top: 60px;
}
.snslist__item{
    padding: 10px 0;
}
.snslist__item a{
    text-decoration: none;
    color: #fff;
}
#humBtn:checked ~ .navi{
    background-color: #131313;
    transform: translateX(0);
    opacity: 0.9;
}

/*main-visual*/
.carousel-inner{
    width: 100%;
    max-height: 500px;
    margin-top: 80px;
}
.carousel-item{
    width: 100%;
    object-fit: cover;
}
.d-block{
    width: 100%;
}

/* 見出し*/

.pro__container{
    max-width: 1140px;
    margin: 20px auto;
    background-color:rgba(5, 109, 109, 0.85);
    padding: 1rem 15px;
    color: #fff;
}
.deli__container{
    max-width: 1140px;
    margin: 20px auto;
    background-color:rgba(0, 88, 165, 0.85);
    padding: 1rem 15px;
    color: #fff;
}
.pro__ttl{
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #aaa;
}
.text-sm{
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: left;

    
}
.coution{
    color: #fff065;
}
.coution__01{
    padding-bottom: 0.2px;
    border-bottom: 1px solid #fff065;
    color: #fff065;
}

/*メーカーリスト*/
#maker{
    margin: 50px 0 10px ;
}  
.maker__inner{
    max-width: 760px;
    margin: 0 auto;
}
.maker__header{
    text-align: center;
}
.maker__ttl{
    text-align: center;
    margin: 10px 0;
    font-size: 2.2rem;
    padding-bottom: 0.8rem;
    border-bottom: solid 2px rgb(0, 68, 92);
}
.maker__list{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.maker__item img{
    width: 100%;
    max-width: 200px;
    height: 80px;
}
.maker__item {
    list-style: none;
    padding:10px;
}
/*商品一覧*/
.maker__container{
    max-width: 1140px;
    margin: 20px auto;
}
.marker__picList{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.maker__pic{
    display: flex;
    align-items: center;
    width: 167px;
    height: 167px;
    border: solid 1px rgb(179, 179, 179);
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 1px 5px 0 rgb(179, 179, 179);
}
.maker__pic a{
    width: 100%;
    height: 100%;
    padding: 9px;
}
.maker__pic img{
    width: 100%;
    padding: 22px 0;
}
.maker__pic--long img{
    padding: 0;
    min-width: 95%;
}
.marker__picList li{
    position: relative;
}
.lady::before{
    content: "Lady";
    font-weight: 400;
    font-size: 16px;
    background-color: #d84a98;
    color: #fff;
    border-radius: 5px;
    padding: 0 8px;
    position: absolute;
    top: 20px;
    left: 20px;
}
.sale::after{
    content: "For Sale";
    font-weight: 400;
    font-size: 20px;
    background-color: #dc3232;
    color: #fff;
    border-radius: 5px;
    padding: 0 12px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.new::after{
    content: "New";
    font-weight: 700;
    font-size: 8px;
    background-color: #ffff65;
    color: #333333;
    border-radius: 5px 0 0 5px;
    padding: 4px 10px 4px 8px;
    box-shadow: 0 1px 2px 0 rgb(179, 179, 179);
    position: absolute;
    top: 20px;
    right: 11px
}
.chk::before{
    content: "CHECK";
    font-weight: 700;
    font-size: 12px;
    background-color: #fa5b2b;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 5px 10px;
    box-shadow: 0 1px 2px 0 rgb(179, 179, 179);
    position: absolute;
    bottom: 20px;
    left: 11px
}
/*取扱準備の案内*/
.wait{
    text-align: center;
    margin-top: 70px;
    background-color: #65a52dd2;
    color: #fff;
}
.wait__ttl{
    font-size: 1.8rem;
    padding: 2rem 0 0 ;
}
.wait__txt{
    padding-bottom: 2rem;
}

/*アシックス*/
#asics{
    margin-top: -80px;
    padding-top: 80px;
}
.asics__header{
    background-image: url(../images/ttl_asics.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 200px;
    max-width: 1140px;
    margin: 50px auto;
}
.asics__cover{
    background-color: rgb(18, 34, 40);
    width: 100%;
    height: 100%;
    opacity: .7;
    text-align: center;
}
.asics__ttl{
    color: #fff;
    font-size: 3.2rem;
    line-height: 200px;

}
/*シモン*/
#simon{
    margin-top: -80px;
    padding-top: 80px;
}
.simon__header{
    background-image: url(../images/ttl_simon.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 200px;
    max-width: 1140px;
    margin: 50px auto;
}
.simon__cover{
    background-color: rgb(18, 34, 40);
    width: 100%;
    height: 100%;
    opacity: .7;
    text-align: center;
}
.simon__ttl{
    color: #fff;
    font-size: 3.2rem;
    line-height: 200px;

}
/*ドンケル*/
#donkel{
    margin-top: -80px;
    padding-top: 80px;
}
.donkel__header{
    background-image: url(../images/ttl_donkel.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 200px;
    max-width: 1140px;
    margin: 50px auto 0;
}
.donkel__cover{
    background-color: rgb(18, 34, 40);
    width: 100%;
    height: 100%;
    opacity: .7;
    text-align: center;
}
.donkel__ttl{
    color: #fff;
    font-size: 3.2rem;
    line-height: 200px;

}
/*DIADORA*/
#diadora{
    margin-top: -80px;
    padding-top: 80px;
}
.diadora__header{
    background-image: url(../images/ttl_diadora.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 200px;
    max-width: 1140px;
    margin: 50px auto 0;
}
.diadora__cover{
    background-color: rgb(18, 34, 40);
    width: 100%;
    height: 100%;
    opacity: .7;
    text-align: center;
}
.diadora__ttl{
    color: #fff;
    font-size: 3.2rem;
    line-height: 200px;

}
/*ミズノ*/
#mizuno{
    margin-top: -80px;
    padding-top: 80px;
}
.mizuno__header{
    background-image: url(../images/ttl_mizuno.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 200px;
    max-width: 1140px;
    margin: 50px auto 0;
}
.mizuno__cover{
    background-color: rgb(18, 34, 40);
    width: 100%;
    height: 100%;
    opacity: .7;
    text-align: center;
}
.mizuno__ttl{
    color: #fff;
    font-size: 3.2rem;
    line-height: 200px;

}
/*日進ゴム*/
#hyper{
    margin-top: -80px;
    padding-top: 80px;
}
.hyper_header{
    background-image: url(../images/ttl_hyper-v.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 200px;
    max-width: 1140px;
    margin: 50px auto 0;
}
.hyper__cover{
    background-color: rgb(18, 34, 40);
    width: 100%;
    height: 100%;
    opacity: .7;
    text-align: center;
}
.hyper__ttl{
    color: #fff;
    font-size: 3.2rem;
    line-height: 200px;

}

  /*footer*/
  .footer{
    width: 100%;
    text-align: center;
    background-color: rgb(18, 34, 40);
    opacity: 0.9;
    color: #fff;
    padding-bottom: 20px;
}
  .nav-link{
      font-size: 0.9rem;
      color: #fff;
  }
  .nav-link:hover{
      color: #ff8400;
  }

  /*モーダル*/
  /* ul li a:hover {
    opacity: 0.8;
  }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: none;
  }

.bigimg {
    position: absolute;
    width: 90%;
    max-width: 800px;
    top: 80px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
  }

.close-btn {
    color: #fff;
    font-size: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
  }

.close-btn a {
    color: #fff;
    text-decoration: none;
  } */


/*-----詳細ページのCSS---------------------------------------*/
.detail__wrapper{
    height: 100vh;
}
.detail__contaier{
    box-sizing: border-box;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color:#fff;
    border-radius: 8px;
    box-shadow: 1px 3px 7px 0 rgb(179, 179, 179);
}
.detail__ttl{
    padding: 15px 30px;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 400;
    background-color: rgb(18, 34, 40);
    color: #fff;
}
.detail__inner{
    max-width: 800px;
    min-height: 450px;
    position: relative;
}
.detail__img{
    min-height: 400px;
}
.detail__inner img {
    width: 100%;
    margin: 18% auto 0;
    padding: 10px;
    padding-top: 50px;
}
.discount{
    position: absolute;
    top: 8%;
    right: 4%;
    background-color: rgb(177, 0, 0);
    font-size: 2.8rem;
    font-weight: 600;
    width: 120px;
    height: 120px;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}
.discount::after{
    position: absolute;
    font-size: 2rem;
    content:'off';
    bottom: 11px;
    right: 18px;
}

.detail__lsize{
    position: absolute;
    top: 9%;
    left: 3%;
    font-size: 1.2rem;
    background-color: #d84a98;
    color: #fff;
    border-radius: 10px;
    padding: 10px 25px;
}


/*商品の規格*/
.type__ja{
    width: 100%;
    padding: 8px 32px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 108, 180, 0.842);

}
.type__jb{
    width: 100%;
    padding: 8px 32px;
    font-size: 1.4rem;
    text-align: center;
    color: #111111;
    background-color: rgba(228, 255, 51, 0.899);
}
.type__js{
    width: 100%;
    padding: 8px 32px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 180, 96, 0.842);
}
.type__jh{
    width: 100%;
    padding: 8px 32px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    background-color: rgba(104, 66, 23, 0.911);
}
.type__jl{
    width: 100%;
    padding: 8px 32px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    background-color: rgba(138, 1, 159, 0.842);
}
.type__je{
    width: 100%;
    padding: 8px 32px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    background-color: rgba(7, 203, 111, 0.934);
}
.type__no{
    width: 100%;
    padding: 8px 32px;
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    background-color: rgba(160, 28, 28, 0.934);
}
.detail__right{
    margin-right: 20px;
    margin-left: 20px;
}
.price__inner{
    width: 100%;
    text-align: center;
    font-size: 2rem;
    background-color: rgb(244, 244, 244);
    box-shadow: 1px 3px 7px 0 rgb(179, 179, 179);
    opacity: .8;
    border-radius: 10px;
    margin: 20px 0 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
}
.price__inner p{
    margin-bottom: 0;
}
.price__name{
    width: 100%;
    padding: 10px 0 4px;
    font-size: 1.6rem;
    color: rgba(0, 108, 180, 0.842);
    font-weight: 500;
    border-bottom: #999999 solid 2px;
}
.mprice__name{
    width: 100%;
    padding: 10px 0 4px;
    font-size: 1.2rem;
    color: #555555;
}
.Hprice__inner{
    width: 100%;
}
.price_c{
    display: none;
}
.price{
    width: 100%;
    font-size: 1.6rem;
    line-height: 1;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #999999;
}

.mprice{
    width: 100%;
    line-height: 1;
    font-size: 1.5rem;
    padding-bottom: 10px;
}
.tax{
    font-size: 1rem;
}
.extax{
    color:#631212;
    font-size: 1.6rem;
    line-height: 1;
    width: 100%;
    padding: 10px 0 10px;

}
.detail__anno{
    font-size: 1rem;
    color: #ff0000;
    margin-left: 20px;
}
.item__detail{
    background-color: darkcyan;
    color: #fff;
    font-size: 1.5rem;
    padding:10px 20px;
}
.detail__txt{
    text-align: center;
    padding: 20px;
    background-color: rgb(18, 34, 40);
    width: 100%;
    font-size: 1.2rem;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
    color: #fff;
}
.t__detail{
    width: 100%;
   
}
.t__detail tr{
    border-bottom: solid 1px #333333;
}
.t__detail tr th{
    max-width: 33%;
    padding: 8px 20px ;
}
.t__detail tr td{
    max-width: 44%;
    padding: 8px 20px ;
}

  @media (min-width: 480px) {
    .tel{
        display: none;
    }
    .maker__list{
        margin: 0 auto;
        max-width: 1140px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .maker__item img{
        width: 100%;
        max-width: 320px;
        height: 110px;
    }
    .maker__item {
        list-style: none;
        padding:15px;
    }
    .Hprice__inner{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
    }
    .price{
        width: 48%;
        font-size: 1.6rem;
        line-height: 1;
        padding-bottom: 10px;
        padding-top: 10px;
        border-bottom: none;
    }
    .price_c{
        display: block;
        width: 4%;
        color: #555555;
        font-size: 1.2rem;
    }
    .mprice{
        width: 100%;
        line-height: 1;
        font-size: 1.5rem;
        padding-bottom: 10px;
    }
    .tax{
        font-size: 1rem;
    }
    .extax{
        color:#631212;
        font-size: 1.6rem;
        line-height: 1;
        width: 48%;
        padding: 10px 0 10px;
    
    }
    .detail__inner img {
        padding: 20px;

    }

  }
  @media (min-width: 800px) {
      /* 商品詳細ページ */
      .detail__inner{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: flex-start;
        justify-content: space-between;
    }
    .detail__img img {
        box-sizing: border-box;
        margin: 5% auto;
        max-width: 400px;
        width: 100%;
        padding: 90px 20px 20px;
    }
    .detail__right{
        margin-top: 40px;
        max-width: 44%;
    }
    .discount{
        position: absolute;
        top: 30px;
        right: 50px;
        background-color: rgb(177, 0, 0);
        font-size: 2.8rem;
        font-weight: 600;
        width: 120px;
        height: 120px;
        padding-top: 20px;
        text-align: center;
        color: #fff;
        border-radius: 50%;
    }
    .detail__lsize{
        position: absolute;
        top: 15%;
        left: 3%;
    }
    .Hprice__inner{
        display: block;
        width: 100%;
    }
    .price{
        width: 100%;
        border-bottom: 1px solid #999999;
    }
    .price_c{
        display: none;
    }
    .extax{
        width: 100%;
    }
}