@charset "UTF-8";
/* -------------------------------------------
  initialize
 */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

ul li {
  list-style: none;
}

input,
select {
  vertical-align: middle;
}

img {
  height: auto;
  width: 100%;
}

/* -------------------------------------------
*inc
*/
/* -------------------------------------------
*common
*/
html {
  font-size: 16px;
}

body {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 1.5px;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

main {
  margin: 50px auto 0;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.pc-hidden {
  display: none;
}

.sp-hidden {
  display: block;
}

/* -------------------------------------------
* hedaer
*/
.head-link {
  height: 70px;
  background: #fafafa;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-link .wrapper {
  position: relative;
}

.head-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}

.head-link ul li {
  margin: 0 0 0 30px;
  line-height: 1.0;
}

.head-link ul li a {
  font-size: 14px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.head-link ul li a span {
  padding-right: 10px;
}

.head-link ul li a img {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}

.head-link ul li a:hover {
  opacity: 0.8;
}

.head-link .guide {
  position: relative;
}

.head-link .guide .guide-dropdown {
  display: none;
  top: 20px;
  width: 170px;
  left: -15px;
  z-index: 10;
  background: #fafafa;
  padding: 20px 0 0;
}

.head-link .guide .guide-dropdown li {
  margin: 0;
  padding: 0 15px;
  line-height: 2;
}

.head-link .guide .guide-dropdown li:hover {
  background: #333;
}

.head-link .guide .guide-dropdown li:hover a {
  color: #fff;
}

.head-link .charset {
  margin-left: 50px;
}

/* bland-site */
.brand-site {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: bold;
  position: relative;
}

.brand-site:hover {
  opacity: 0.8;
}

.brand-site img {
  width: 20px;
  height: 15px;
}

.brand-site::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

/* logo */
.logo {
  display: block;
  width: 185px;
}

/* header-inner */
.header-inner {
  padding: 16px 0 0;
  position: relative;
}

/* global-nav */
.global-nav {
  position: absolute;
  bottom: 16px;
  left: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}

.global-nav li {
  margin: 0 0 0 45px;
}

.global-nav li:first-child a,
.global-nav li:nth-child(2) a {
  padding: 0 24px 0 0;
  position: relative;
}

.global-nav li:first-child a::after,
.global-nav li:nth-child(2) a::after {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: 0;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: .3s all;
  transition: .3s all;
}

.global-nav li a {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.global-nav li a:hover {
  color: #f07f15;
}

.global-nav li a:hover::after {
  border-bottom: 2px solid #f07f15;
  border-left: 2px solid #f07f15;
}

.global-nav li:first-child .active,
.global-nav li:nth-child(2) .active {
  color: #f07f15;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.global-nav li:first-child .active::after,
.global-nav li:nth-child(2) .active::after {
  top: 60%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  border-bottom: 2px solid #f07f15;
  border-left: 2px solid #f07f15;
  -webkit-transition: .3s all;
  transition: .3s all;
}

/* head-serch-form*/
.head-serch-form {
  width: 250px;
  position: absolute;
  bottom: 16px;
  right: 0;
}

.head-serch-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.head-serch-form input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2px 5px;
  width: 100%;
  font-size: 14px;
  border-color: #333333;
  height: 26px;
}

.head-serch-form button {
  margin-left: -2px;
  width: 26px;
  height: 26px;
  background-image: url("https://shoporange.itembox.design/item/img/common/search-btn.svg");
  background-color: #333;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
}

/* -------------------------------------------
 * category-menu
 */
.category-menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 170px;
  left: 0;
  padding: 60px 0;
  background-color: #333333;
}

.category-menu .wrapper {
  position: relative;
}

.category-menu a {
  color: #fff;
  font-family: "游ゴシック", "Yu Gothic" , "游ゴシック体", YuGothic !important;
}

.category-list {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.category-list li {
  position: relative;
  margin: 0;
  padding: 0 28px;
  line-height: 17.6px;
  line-height: 1.1rem;
}

.category-list li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  right: 0;
  width: 1px;
  height: 20px;
  border-left: 1px solid #fff;
}

.category-list li:last-child::after {
  display: none;
}

.category-list li a {
  padding: 0;
  font-size: 18px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.category-list li a:hover {
  opacity: .8;
}

.category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.category-item li {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin: 0 4% 0 0;
}

.category-item li:nth-child(5) {
  margin: 0 2% 0 30px;
}

.category-item li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 25px;
  font-size: 14px;
  line-height: 17.6px;
  line-height: 1.1rem;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.category-item li a img {
  width: 23px;
}

.category-item li a:hover {
  opacity: .8;
}

.category-item li a span {
  padding: 0 10px 0 0;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.nav-arrow {
  position: absolute;
  top: -71px;
  left: 270px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 11px 6.5px;
  border-color: transparent transparent #333333;
}

.js_category-menu_apparel .nav-arrow {
  left: 430px;
}

.sp-search-form {
  display: none;
}

.fs-pt-column a {
  display: block;
  margin-top: 20px;
}

.fs-pt-column a:first-child {
  margin-top: 0;
}

/* -------------------------------------------
 * slide
 */
/* -------------------------------------------
 * banner-area
 */
.banner-area {
  margin: 90px auto 0;
}

.banner-area a {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.banner-area a:hover {
  opacity: .8;
}

.banner-area .banner-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px auto 50px;
}

.banner-area .banner-half a {
  display: block;
  width: 49%;
}

/* -------------------------------------------
*contents-area
*/
.contents-area {
  padding: 100px 0 155px;
  margin: 105px auto 0;
  background: #fafafa;
}

.contents-area section {
  max-width: 1300px;
  width: 100%;
  padding: 100px 50px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contents-area section h2 {
  margin: 0 auto 30px;
  text-align: center;
}

.contents-area section .view-btn {
  display: block;
  position: relative;
  margin: auto;
  display: block;
  width: 271px;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  border: 1px solid #333333;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.contents-area section .view-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #3f2f1e;
  border-right: 2px solid #3f2f1e;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: .3s all;
  transition: .3s all;
}

.contents-area section .view-btn:hover {
  letter-spacing: 2.5px;
  opacity: .8;
}

.contents-area section .view-btn:hover::after {
  right: 9%;
}

.contents-area .banner {
  margin: 60px auto;
}

.contents-area .banner a {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.contents-area .banner a:hover {
  opacity: .8;
}

.contents-area .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 70px auto 20px;
}

.contents-area .inner .box {
  max-width: 31%;
  width: 100%;
}

.contents-area .inner .box a {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.contents-area .inner .box a:hover {
  opacity: .8;
}

.contents-area .inner .box a:hover .product-text p {
  text-decoration: underline;
}

.contents-area .inner .box .product-img {
  position: relative;
  width: 100%;
  padding: 100% 0 0;
}

.contents-area .inner .box .product-img img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.contents-area .inner .box .product-text p {
  margin: 11px 0 0;
}

/* -------------------------------------------
*ranking
*/
.contents-area .ranking {
  margin: 0 auto 100px;
}

.contents-area .ranking .inner .box {
  max-width: 18%;
  width: 100%;
}

.contents-area .ranking .inner .box .product-img {
  position: relative;
  margin-bottom: 10px;
}

.contents-area .ranking .inner .box .order {
  position: absolute;
  top: -16px;
  right: 5px;
  font-size: 38px;
  font-style: italic;
  font-weight: bold;
  line-height: 17.6px;
  line-height: 1.1rem;
  font-family: 'Noto Sans JP', sans-serif;
}

/* -------------------------------------------
*media
*/
.contents-area .media {
  margin: 0 auto 100px;
}

.contents-area .media .inner {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contents-area .media .inner .box {
  max-width: 22%;
  margin: 0 0 60px;
}

/* -------------------------------------------
*brand
*/
.brand-tab {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 70px auto 0;
  padding-left: 110px;
  position: relative;
}

.brand-tab li {
  width: 30px;
  height: 30px;
  margin: 0 10px 10px;
  background: #eeeeee;
  border-radius: 50%;
  color: #1d1d1d;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

.brand-tab li.all {
  width: 90px;
  height: 90px;
  margin: 0;
  line-height: 90px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.brand-tab li.is-active {
  color: #fff;
  background: #444444;
}

.brand-panel {
  margin: 30px auto 0;
}

.brand-panel .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

.brand-panel .inner li {
  width: 120px;
  height: 120px;
  padding: 0 5px 10px;
}

.brand-panel .inner a {
  display: block;
  position: relative;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.brand-panel .inner a:hover {
  opacity: .8;
}

.brand-panel .inner a img {
  width: 100%;
}

/* -------------------------------------------
*footer
*/
footer {
  padding: 80px 50px 20px;
  background: #444444;
}

footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .copy {
  margin: 80px 0 0;
  text-align: center;
  color: #fff;
  font-size: 13px;
}

.footer-logo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-logo ul li {
  margin: 21px 0 0 12px;
}

.footer-logo a {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.footer-logo a:hover {
  opacity: .8;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-nav dl {
  margin: 0 0 0 52px;
}

.footer-nav dt {
  margin: 0 0 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer-nav dt a {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.footer-nav dt a:hover {
  color: #f08118;
}

.footer-nav dd {
  padding: 0 0 16px 20px;
  border-left: 1px solid #fff;
}

.footer-nav dd a {
  color: #fff;
  font-size: 14px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.footer-nav dd a:hover {
  color: #f08118;
}

.footer-nav dl:first-child {
  margin: 0 65px 0 85px;
}

/* 一覧ページ */
/* -------------------------------------------
 * 共通部分
 */
.contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.right-contents {
  max-width: 900px;
  width: 100%;
  margin-bottom: 80px;
}

.right-contents h2 {
  font-size: 18px;
  margin: 0 auto 22px;
}

/* -------------------------------------------
 * breadcrumb
 */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 35px;
  font-size: 14px;
}

.breadcrumb li {
  padding: 0 15px 0 0;
  margin: 0 15px 0 0;
  position: relative;
}

.breadcrumb li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #333333;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  -webkit-transition: .3s all;
  transition: .3s all;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb li a {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.breadcrumb li a:hover {
  opacity: .8;
  text-decoration: underline;
}

/* -------------------------------------------
 * side-nav
 */
.side-nav {
  width: 300px;
}

.side-nav p {
  padding: 0 0 0 20px;
  line-height: 36px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #eeeeee;
}

.side-nav nav {
  padding: 0 0 40px;
  margin: 28px 0 0;
  border-bottom: 1px solid #eeeeee;
}

.side-nav ul {
  margin: 0 0 0 20px;
}

.side-nav ul li {
  margin: 22px 0 0;
}

.side-nav ul li .nav-inner {
  margin: 0 0 0 30px;
}

.side-nav ul li a {
  display: block;
  position: relative;
  font-size: 14px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.side-nav ul li a img {
  width: 23px;
}

.side-nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 150px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #3f2f1e;
  border-left: 2px solid #3f2f1e;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: .3s all;
  transition: .3s all;
}

.side-nav ul li a:hover {
  opacity: .8;
}

.side-nav ul li a img {
  padding: 0 10px 0 0;
  vertical-align: text-bottom;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-sizing: initial;
          box-sizing: initial;
}

.side-nav li .is-open::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.nav-inner {
  display: none;
}

.nav-inner li {
  margin: 15px 0 0 !important;
}

.nav-inner li a {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.nav-inner li a::after {
  display: none !important;
}

.nav-inner li a:hover {
  text-decoration: underline;
}

.item-nav ul {
  margin: 40px 0 0 40px;
}

.item-nav ul li a {
  font-size: 16px;
  font-weight: bold;
}

.item-nav ul li a::after {
  display: none !important;
}

.side-nav .banner {
  margin: 42px auto 49px;
}

.side-nav .banner a {
  display: block;
  margin: 0 auto 20px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.side-nav .banner a:hover {
  opacity: .8;
}

.apparel-nav,
.outdoor-nav {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.outdoor-nav li a::after {
  left: 183px !important;
}

/* -------------------------------------------
 * 商品一覧
 */
.sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 24px;
  background: #eeeeee;
  margin: 0 0 32px;
}

.sort li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 30px 0 0;
}

.sort li:first-child select {
  width: 150px;
}

.sort label {
  padding: 0 10px 0 0;
  font-size: 14px;
}

.sort select {
  width: 120px;
  background-image: url(/img/common/select-arrow.png);
  background-repeat: no-repeat;
  background-position: 94% center;
}

.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-list .item-center {
  width: 195px;
  margin: 0 40px 43px 0;
}

.product-list .item-center a {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.product-list .item-center a:hover {
  opacity: .8;
}

.product-list .item-center a:hover .item-data p {
  text-decoration: underline;
}

.product-list .item-center .item-data {
  margin: 15px 0 0;
  font-size: 14px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.product-list .item-center .item-data p {
  margin: 8px 0 0;
}

.product-list .item-center .item-data .item-name {
  min-height: 43px;
}

.item-center:nth-child(4n) {
  margin: 0 0 43px;
}

.seal .price,
.sold-out .price {
  text-decoration: line-through !important;
}

.seal .seal-price {
  color: #be2222;
  font-weight: bold;
}

.sold-out .sold-out-price {
  font-size: 12px;
  text-align: center;
  background: #eeeeee;
}

/* -------------------------------------------
 * flag
 */
.item-flag {
  font-size: 14px;
  color: #fff;
  padding: 3px 11px;
  font-weight: bold;
}

.item-flag.new {
  background: #666666;
}

.item-flag.seal-flag {
  background: #be2222;
}

/* -------------------------------------------
 * pagination
 */
.pagination {
  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;
  margin: 55px auto 0;
}

.pagination a {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  line-height: 28px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid #333333;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.pagination a:hover {
  background: #333;
  color: #fff;
}

.pagination .active {
  background: #333;
  color: #fff;
}

/* -------------------------------------------
 * 商品詳細
 */
.puroduct-datail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.puroduct-datail .puroduct-img {
  width: 390px;
}

.puroduct-datail .product-data {
  width: 490px;
}

.product-data h3 {
  margin: 20px 0;
}

.product-data .model-nam {
  font-size: 14px;
}

.product-data .model-nam span {
  padding: 0 10px 0 0;
}

.product-data .product-price {
  margin: 40px auto 0;
  font-size: 20px;
  font-weight: bold;
}

.product-data dl {
  margin: 50px auto 0;
}

.product-data dl dt {
  font-size: 18px;
  font-weight: bold;
}

.product-data dl dd {
  margin: 30px auto 35px;
}

.product-data .spec {
  border-top: 1px solid #dcdcdc;
  padding: 49px 0 0;
}

.product-data .spec dd {
  margin: 0px auto 35px;
}

/* -------------------------------------------
 * 商品詳細 セール商品
 */
.product-data.seal .product-price {
  text-decoration: line-through !important;
}

.product-data.seal .seal-price {
  margin: 7px 0 0;
  font-size: 20px;
  color: #be2222;
}

/* -------------------------------------------
 *  price-list
 */
.price-list {
  margin: 49px auto 0;
}

.price-list table {
  border-collapse: inherit;
  margin: 0 -10px 0 0;
}

.price-list table th {
  text-align: center;
  font-weight: normal;
  background: #f8f8f8;
  border-right: 10px solid #fff;
  padding: 10px 0;
}

.price-list table td {
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid #dcdcdc;
  padding: 10px 0;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 17.6px;
  line-height: 1.1rem;
}

table tr th:last-child {
  width: 160px;
  border-right: none;
}

.color {
  vertical-align: top !important;
}

.btn-cart,
.btn-mail {
  display: block;
  width: 160px;
  height: 30px;
  padding: 0 0 0 19px;
  line-height: 30px;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.btn-cart:hover,
.btn-mail:hover {
  opacity: .8;
}

.btn-cart {
  background: #8c8c8c;
  color: #fff;
  background-image: url(/img/common/btn-cart.png);
  background-repeat: no-repeat;
  background-position: 92% center;
}

.btn-mail {
  background: #dcdcdc;
  color: #8c8c8c;
  background-image: url(/img/common/btn-mail.png);
  background-repeat: no-repeat;
  background-position: 92% center;
}
/*# sourceMappingURL=maps/pc.css.map */
