/* ======================================================================
 common
====================================================================== */
.sm {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sm {
    display: block !important;
  }
  .md {
    display: none !important;
  }
}

.trans {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.trans:hover {
  opacity: 0.7;
}

main {
  padding-top: 90px;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 68px;
  }
}

/* ======================================================================
 kv
====================================================================== */
.kv {
  position: relative;
  background: url("../../img/shop/common/kv_pc.jpg") center center;
  background-size: cover;
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 768px) {
  .kv {
    height: 175px;
  }
}

#headline {
  background: url("../../img/shop/common/kv_pc.jpg") center center;
  background-size: cover;
}

.kv .box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kv .box .ttl {
  text-align: center;
  font-weight: 300;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .kv .box .ttl {
    font-size: 11px;
  }
}

.kv .box .ttl span {
  display: block;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .kv .box .ttl span {
    font-size: 22px;
    margin-bottom: 5px;
  }
}

.kv .btn {
  position: absolute;
  z-index: 1;
  background: #e46e2c;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  width: 235px;
  height: 52px;
  right: 30px;
  bottom: 30px;
}

@media screen and (max-width: 768px) {
  .kv .btn {
    width: 155px;
    height: 35px;
    font-size: 11px;
    right: 15px;
    bottom: 15px;
  }
}

.kv .btn img {
  width: 24.5px;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .kv .btn img {
    width: 16px;
    margin-right: 9px;
  }
}

/* ======================================================================
 breadcrumb
====================================================================== */
.breadcrumb {
  border-bottom: 1px solid #dbdbdb;
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}

.breadcrumb .list a {
  color: #dbdbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb .list a:after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  width: 6.5px;
  height: 6.5px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 15px;
}

/* ======================================================================
 title
====================================================================== */
.sec_ttl {
  font-weight: 400;
  text-align: center;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .sec_ttl {
    font-size: 22px;
  }
}

/* ======================================================================
 button
====================================================================== */
.sec_btn {
  position: relative;
  display: block;
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  margin: 0 auto;
  border: 1px solid;
  width: 280px;
  height: 60px;
  font-size: 15px;
}

.sec_btn:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: #e46e2c transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0;
}

.sec_btn:after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4.5px;
}

/* ======================================================================
 category
====================================================================== */
.category {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .category {
    padding: 37.5px 0;
  }
}

.category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0 50px;
}

@media screen and (max-width: 768px) {
  .category_list {
    margin: 20px 0 35px;
  }
}

.category_list a {
  position: relative;
  width: 23.5%;
  margin-top: 2%;
  background: #000;
  overflow: hidden;
  height: 175px;
}

@media screen and (max-width: 768px) {
  .category_list a {
    width: 48%;
    margin-top: 4%;
    height: 120px;
  }
}

.category_list a:not(:nth-child(4n)) {
  margin-right: 2%;
}

@media screen and (max-width: 768px) {
  .category_list a:not(:nth-child(4n)) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .category_list a:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}

.category_list a .box {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 10%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.category_list a .box .ttl {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2222222222222223;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .category_list a .box .ttl {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.category_list a .box .txt {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .category_list a .box .txt {
    display: none;
  }
}

.category_list a .img {
  opacity: .5;
}

/* ======================================================================
 pickup
====================================================================== */
.pickup {
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .pickup {
    padding: 37.5px 0;
  }
}

.pickup .count {
  text-align: center;
  font-size: 20px;
  margin-top: 18.5px;
}

@media screen and (max-width: 768px) {
  .pickup .count {
    font-size: 17px;
  }
}

.pickup .pager {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .pickup .pager {
    margin: 50px 0 12.5px;
  }
}

.pickup .pager .count {
  margin-bottom: -20px;
}

@media screen and (max-width: 768px) {
  .pickup .pager .count {
    margin-bottom: -15px;
  }
}

.pickup .pager .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pickup .pager .link li {
  width: 50%;
}

.pickup .pager .link li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .pickup .pager .link li a {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .pickup .pager .link li a.next {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.pickup .pager .link li a.next:after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #222;
  margin: 0 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .pickup .pager .link li a.prev {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.pickup .pager .link li a.prev:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #222;
  margin: 0 10px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.pickup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0 50px;
}

@media screen and (max-width: 768px) {
  .pickup_list {
    margin: 20px 0 35px;
  }
}

.pickup_list a {
  position: relative;
  width: 23.5%;
  margin-top: 2%;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .pickup_list a {
    width: 48%;
    margin-top: 4%;
  }
}

.pickup_list a:not(:nth-child(4n)) {
  margin-right: 2%;
}

@media screen and (max-width: 768px) {
  .pickup_list a:not(:nth-child(4n)) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .pickup_list a:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}

.pickup_list a .ttl {
  font-weight: 600;
  font-size: 16px;
  margin: 5px 0;
}

.pickup_list a .txt {
  font-weight: 400;
  font-size: 12px;
  margin: 5px 0;
}

.pickup_list a .price {
  font-weight: 600;
  font-size: 14px;
}

.pickup_list a .img {
  overflow: hidden;
  height: 175px;
}
.pickup_list a .img img {
    max-height: 175px;
    margin: 0 auto;
    width: auto;
    display: block;
}
@media screen and (max-width: 768px) {
  .pickup_list a .img {
    height: 120px;
  }
  .pickup_list a .img img {
    max-height: 120px;
  }
}

/* ======================================================================
 about
====================================================================== */
.about {
  margin-bottom: 125px;
}

@media screen and (max-width: 768px) {
  .about {
    margin-bottom: 50px;
  }
}

.about .inner {
  border: 1px solid #dbdbdb;
  padding: 47.5px 0;
}

@media screen and (max-width: 768px) {
  .about .inner {
    padding: 1% 4%;
  }
}

.about .inner .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .about .inner .list {
    display: block;
  }
}

.about .inner .list li {
  width: 25%;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .about .inner .list li {
    width: 100%;
    padding: 5% 0 0;
  }
}

.about .inner .list li:not(:last-child) {
  border-right: 1px solid #dbdbdb;
}

@media screen and (max-width: 768px) {
  .about .inner .list li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #dbdbdb;
  }
}

.about .inner .list li .ttl {
  font-weight: 600;
  font-size: 16px;
}

.about .inner .list li .txt {
  font-size: 12px;
  line-height: 1.6666666666666667;
  margin: 1em 0;
}

.about .inner .list li .cap {
  font-size: 10px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .about .inner .list li .cap {
    margin: 1em 0;
  }
}

/* ======================================================================
 item_detail
====================================================================== */
.item_detail {
  padding: 90px 0;
}

@media screen and (max-width: 768px) {
  .item_detail {
    padding: 5% 0;
  }
}

.item_detail .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .item_detail .inner {
    display: block;
  }
}

.item_detail .inner .slider {
  width: 43%;
  margin-right: 4.5%;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .slider {
    width: 100%;
    margin: 0 0 5%;
  }
}

.item_detail .inner .desc {
  width: 52.5%;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc {
    width: 100%;
  }
}

.item_detail .inner .desc .top {
  border-bottom: 1px solid #dbdbdb;
}

.item_detail .inner .desc .top .ttl {
  font-size: 30px;
  line-height: 1.0623333333333334;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .top .ttl {
    font-size: 25px;
  }
}

.item_detail .inner .desc .top .spec {
  font-size: 16px;
  line-height: 1.125;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .top .spec {
    font-size: 14px;
  }
}

.item_detail .inner .desc .top .price {
  font-size: 26px;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .top .price {
    font-size: 20px;
  }
}

.item_detail .inner .desc .top .price .tax {
  color: #868686;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .top .price .tax {
    font-size: 14px;
  }
}

.item_detail .inner .desc .top .txt {
  font-size: 14px;
  line-height: 1.8571428571428572;
  margin-top: 10px;
}

.item_detail .inner .desc .top .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f3f3f3;
  font-size: 14px;
  margin: 25px 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .top .cart {
    margin: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .top .cart .quantity {
    width: 20%;
    margin-left: 4%;
  }
}

.item_detail .inner .desc .top .cart .input-text {
  width: 80px;
  height: 45px;
  margin-left: 20px;
  padding: 10px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .top .cart .input-text {
    padding: 10%;
    width: 100%;
    height: 50px;
    margin-left: 0;
  }
}

.item_detail .inner .desc .top .cart .button {
  font-size: 16px;
  margin-left: 20px;
  border: none;
  width: 280px;
  height: 45px;
  color: #FFF;
  background: #222;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .top .cart .button {
    height: 40px;
    width: 55%;
    margin-left: 4%;
    font-size: 13px;
  }
}

.item_detail .inner .desc .btm .spec {
  font-size: 24px;
  font-weight: 400;
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
  .item_detail .inner .desc .btm .spec {
    font-size: 22px;
  }
}

.item_detail .inner .desc .btm .ttl {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.625;
  margin-top: 10px;
}

.item_detail .inner .desc .btm .txt {
  font-size: 14px;
  line-height: 1.8571428571428572;
  margin-top: 2.5px;
}

.item_detail .inner .desc .btm img {
  margin-top: 15px;
}
/*# sourceMappingURL=style.css.map */


/* 20210320追加 */
.sct_explain a {
  color: #457bfb;
}

.imgbox {
  width: 120px;
}
.item_detail .inner .desc .btm .bodyText4 {
  margin-top: 1em;
}
.item_detail .inner .desc .btm h5 span {
  display: block;
  color: #1C1F87;
  margin: 1.2em 0 0.5em;
  font-weight: bold;
  font-size: 1.2em;
}

.item_detail .inner .desc .btm .tbl_item3 th {
  font-weight: normal;
  text-align: left;
  padding: 0 10px 0 0;
  width: 60px;
  box-sizing: border-box;
  vertical-align: top;
}
.item_detail .inner .desc .btm .tbl_item3 th img {
  margin-top: 0;
}

.item_detail .inner .desc .btm .tbl_item3 td {
  font-weight: normal;
  text-align: left;
  padding: 0;
  color: #333;
  vertical-align: top;
}
