@charset "shift_jis";

#dog-treats {
  max-width: 900px;
  margin: 0 auto;
}

#dog-treats .pc_none {
  display: none;
}

#dog-treats h1 {
  width: 100%;
  background-color: #d8d8d8;
  margin-bottom: 10px;
}

/*タブ切り替え*/
#dog-treats .tab-wrap > ul {
  display: flex;
  gap: 10px;
}

#dog-treats .tab-btn {
  width: 50%;
  padding: 20px 0;
  text-align: center;
  list-style: none;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  background-color: #e7e7e7;
}

#dog-treats .tab-btn.show {
  background: #d85e14;
  color: #fff;
  width: 65%;
  transition: 0.2s;
  font-size: 18px;
}

#dog-treats .tab-contents {
  display: none;
  background-color: #d85e14;
  padding: 35px 25px;
}

#dog-treats .tab-contents.show {
  display: block;
}

/*商品3カラム*/
#dog-treats .col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

/*カラムデザイン*/
#dog-treats .col > li {
  text-align: center;
  width: 250px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

#dog-treats .col li img {
  max-width: 250px;
}

#dog-treats .col li .name {
  font-size: 15px;
  color: #333;
  /* background-color: #333; */
  line-height: 20px;
  padding: 5px 0;
  height: 50px;
  align-content: center;
}

#dog-treats .col li .size {
  font-size: 15px;
  color: #fff;
  background-color: #333;
  padding: 5px 0;
}

#dog-treats .col li .btn {
  width: 91%;
  margin: 0 auto 10px;
  font-size: 15px;
  color: #fff;
  background-color: rgb(230, 28, 28);
  border: solid 2px rgb(230, 28, 28);
  border-radius: 5px;
  padding: 5px 0;
  position: relative;
}

#dog-treats .col li .btn::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 36%;
  right: 13%;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

#dog-treats .col li:hover .btn {
  color: rgb(230, 28, 28);
  background-color: #fff;
  transition: 0.3s;
}

#dog-treats .col li:hover .btn::after {
  border-top: solid 2px rgb(230, 28, 28);
  border-right: solid 2px rgb(230, 28, 28);
  right: 8%;
}

/*価格プロ*/
#dog-treats .col li .buy_price {
  padding: 10px 0;
}

#dog-treats .col li .price {
  font-size: 24px;
  color: rgb(230, 28, 28);
}

#dog-treats .col li .price .spesicalprice {
  display: none;
}

#dog-treats .col li .intax {
  font-size: 12px;
  color: rgb(230, 28, 28);
}

/*トップページ*/
#dog-treats .pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}

#dog-treats .pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background-color: #222222c7;
  border-radius: 80px;
  width:70px;
  height:70px;
  line-height: 1.3em;
  transition: 0.3s all;
}

#dog-treats .pagetop a:hover{
  background-color: #4b8b91b0;
  color: #fff !important;
  transform: translateY(-2px);
}