@charset "euc-jp";

html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

body {
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #393939;
  background-color: #fff;
}
h1{
	font-size: 1.4em;
}
a {
  color: #393939;
}
a:hover {
  color: #4e4e4e;
  text-decoration: none;
}

ul, ol, form, p {
  margin: 0;
}
ul {
	list-style-type: none;
}
/* layout */
.wrapper {
  position: relative;
}

.gnavi {
  width: 100%;
}

.footer {
  background: #db4550;
  width: 100%;
}

.container {
  max-width: 87.14375em;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.container:after {
  clear: both;
  content: "";
  display: table;
}
#contents-main {
    width: 100%;
}
/* module */
.section__title-h2 {
  margin: 0;
  font-size: 1.14286em;
}
.section__suffix {
  font-size: 0.71429em;
}

.menu__section {
  margin: 0 0 30px;
  border-radius: 5px;
  border: 2px solid #2c5697;
}
.menu__title-h2 {
  padding: 13px 0 13px 18px;
  color: #ffffff;
  background: #2c5697;
}
.menu__suffix {
  padding-left: 10px;
}

.menu-list {
  list-style-type: none;
}
.menu-list__link {
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  display: table;
  table-layout: fixed;
}
.menu-list__text {
  padding-right: 20px;
  height: 100%;
  width: 90%;
  display: table-cell;
  vertical-align: middle;
}
.menu-list__icon {
  height: 100%;
  width: 10%;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.product-list {
  height: auto;
  width: 100%;
  margin: 0;
  list-style-type: none;
  letter-spacing: -.4em;
  display: inline-block;
}
.product-list__title {
  width: 65%;
  display: block;
}
.product-list__unit {
  margin: 0 0 30px;
  position: relative;
  letter-spacing: normal;
  display: inline-block;
  vertical-align: top;
  float: none;
  text-align: center;
}
.product-list__image:hover {
  opacity: .8;
}
.product-list__name {
  margin: 10px 0 0;
  font-size: 0.96em;
  font-weight: bold;
}
.product-list__text {
  display: block;
  text-align: left;
}
.product-list__expl {
  margin: 10px 0 0;
  font-size: 1em;
}
.product-list__prices {
  margin: 10px 0 0;
  font-size: 1em;
  color:#2d2d2d;
}
.product-list__price-regular {
  text-decoration: line-through;
}
.product-list__price-soldout {
  color: #ff0000;
}
.product-list__discount-rate {
  color: #ff0000;
}

.rank__box {
  z-index: 3;
}
.rank__box--upper {
  position: absolute;
  top: 10px;
  left: 10px;
}

.rank__number {
  padding: 3px 0 0;
  height: 22px;
  width: 22px;
  position: absolute;
  background: #ffffff;
  color: #000000;
  font-weight: bold;
  border-radius: 50%;
  display: block;
  text-align: center;
  font-size: 0.71429em;
  border: 1px solid #000000;
}

.rank__number-color--1 {
  background: #ffea22;
  border: 1px solid #ffea22;
}
.rank__number-color--2 {
  background: #cbcbcb;
  border: 1px solid #cbcbcb;
}
.rank__number-color--3 {
  background: #d9a300;
  border: 1px solid #d9a300;
}

.contents__title-h2 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #000000;
  border-bottom: 2px solid #000000;
}
.contents__suffix {
  padding-left: 10px;
}

.side__section {
  margin: 0 0 30px;
  padding: 20px;
  position: relative;
  border: 2px solid #999999;
}
.side__title-h2 {
  padding: 12px 20px;
  position: absolute;
  top: 10px;
  left: -12px;
  color: #ffffff;
  background: #57acad;
  line-height: 1;
  z-index: 2;
}
.side__title-h2:before {
  height: 0;
  width: 0;
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  border: 5px solid transparent;
  border-top: 5px solid #346a6a;
  border-right: 5px solid #346a6a;
}
.side__title-h2:after {
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  right: -40px;
  content: "";
  border: 20px solid #57acad;
  border-right-color: transparent;
}

.breadcrumb {
  margin-bottom: 30px;
}
.breadcrumb-list {
  margin-bottom: 5px;
  font-size: 0.92857em;
}

.btn-primary {
  color: #ffffff;
  background: #000000;
  border: 1px solid #000000;
}
.btn-primary:hover {
  color: #ffffff;
  background: #333333;
  border: 1px solid #333333;
}
.btn-secondary {
  color: #ffffff;
  background: #2c5697;
  border: 1px solid #2c5697;
}
.btn-secondary:hover {
  color: #ffffff;
  background: #ae9c64;
  border: 1px solid #ae9c64;
}

.txt--sm {
  font-size: 0.71429em;
}
.txt--md {
  font-size: 0.85714em;
}
.txt--lg {
  font-size: 1.14286em;
}
.txt--c {
  text-align: center;
}
.txt--l {
  text-align: left;
}
.txt--r {
  text-align: right;
}
.txt--red {
  color: #ff0000;
}

.border--none {
  border: none;
}

.pad-t--20 {
  padding-top: 20px;
}
.pad-r--10 {
  padding-right: 10px;
}
.pad-r--20 {
  padding-right: 20px;
}
.pad-l--20 {
  padding-left: 20px;
}

.mar--0 {
  margin: 0;
}
.mar-t--20 {
  margin-top: 20px;
}
.mar-b--0 {
  margin-bottom: 0;
}
.mar-b--10 {
  margin-bottom: 10px;
}
.mar-b--20 {
  margin-bottom: 20px;
}
.mar-b--40 {
  margin-bottom: 40px;
}
.mar-b--60 {
  margin-bottom: 60px;
}

.w--23per {
  width: 23%;
}
.w--31per {
  width: 31%;
}

.hide {
  display: none;
}

.pos--rel {
  position: relative;
}
.pos--abs {
  position: absolute;
}

/* snavi */
.snavi {
  z-index: 15;
}
.snavi__inner {
  background: #ffffff;
  border-bottom: 2px solid #333333;
}
.snavi__suffix {
  padding-left: 10px;
}

.snavi-list {
  position: relative;
}
.snavi-list__unit {
  padding: 0;
  text-align: center;
}
.snavi-list__link {
  padding: 15px 0;
  display: block;
  color: #333333;
}
.snavi-list__link:hover {
  color: #ffffff;
}
.snavi-list__link--menu {
  position: relative;
  color: #ffffff;
  background: #333333;
}
.snavi-list__triangle {
  position: absolute;
  right: 50%;
  bottom: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #fcfcfc transparent;
  z-index: 60;
}

.mnavi {
  position: absolute;
  top: 51px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 2px solid #333333;
  z-index: 50;
  display: none;
}

.mnavi-list {
  padding: 39px;
  list-style-type: none;
  text-align: left;
}
.mnavi-list__unit {
  padding: 10px;
  text-align: left;
  width: 31%;
  display: inline-block;
  vertical-align: top;
}
.mnavi-list__link {
  display: block;
  width: 100%;
}

.mnavi-bottom {
  border-top: 2px solid #333333;
}

.mnavi-bottom-list {
  margin: 0;
  padding: 20px 0;
  float: right;
}
.mnavi-bottom-list__unit {
  padding: 0 10px;
}

.text-pr {
  margin: 0;
  padding: 17px 0;
  font-size: 0.92857em;
  float: left;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* header */
.header {
  background: #1e50a2;
  border-top: 5px solid #000000;
  border-bottom: 0 solid #112d8d;
  background-image: url(https://file001.shop-pro.jp/PA01300/067/template_jpg/bg_hairline.png);
}
.header h1 {
	margin: 10px 0 60px;
}
.header__inner {
  padding: 0 0 0;
}
.header__right {
  text-align: right;
}
.header-search {
  margin: 10px 0 0;
}
.header-search__select {
  border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: none;
  height: 40px;
  width: 200px;
  font-size: 0.92857em;
}
.header-search__select:focus {
  outline: none;
  border-color: #666666;
}
.header-search__box {
  border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: none;
  padding: 8px 8px 8px 14px;
  height: 40px;
  width: 41%;
  font-size: 0.92857em;
}
.header-search__box:focus {
  outline: none;
  border-color: #666666;
}
.header-search__btn {
  height: auto;
  width: 80px;
  padding: 14px 0;
  border-radius: 5px;
  font-size: 0.78571em;
}
.header-tools {
  margin: 0;
  font-weight: bold;
  font-size: 0.92857em;
}
.header-tools__unit {
  margin-left: 32px;
  display: inline;
  line-height: 1.4;
}
.header-tools__unit a{
	color: #ededed;
	font-weight: bold;
}
.header-tools__unit-cart {
  margin-left: 12px;
}
.header-tools__btn {
  height: auto;
  width: 150px;
  padding: 10px 0 12px 20px;
  border-radius: 0 0 5px 5px;
  border-top: none;
}
.header-tools__btn:hover {
  border-top: none;
}
.header-tools__btn i {
  position: absolute;
  top: 2px;
  left: 20px;
}
.header-tools__count {
  padding: 0 3px;
  font-size: 1.14286em;
  letter-spacing: -.5px;
}
.header-logo {
  margin-bottom: 10px;
}

.header-tools-phone {
	float: right;
	margin-top: 3px;
	margin-right: 20px;
}
.header-tools-phone__unit {
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}
.header-tools-phone--current {
  background: #7b8bba;
}
.header-tools-phone__unit a {
    color: #edf3ff;
}

/* global navigation */
.gnavi {
  position: absolute;
  bottom: 0px;
  z-index: 10;
  padding: 0;
}
.gnavi__unit {
  margin: 0 0;
  height: 100%;
  width: 16.666%;
  padding: 0;
  border: 1px solid #000;
  background: #ffffff;
  text-align: center;
  font-size: 1.14286em;
}
.gnavi__link {
  padding: 5px 10px;
  height: 100%;
  width: 100%;
  display: block;
}
.gnavi__link:hover {
  color: #ffffff;
  background: #333333;
}
.gnavi__suffix {
  display: block;
}

/* slider */
div#ad{
	width: 96%;
	max-width: 87.14375em;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background-color: #ffffff;
}

div#ad:after {
  	content:" ";
    display:block;
    clear:both;
  }
div#slideshow {
	width: 100%;
}
.slider {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-bottom: 0 solid #112d8d;
  padding-bottom: 30px;
}
.slider__inner {
  height: auto;
  width: 100%;
  /* max-width: 87.14375em; */
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.slider__inner::after {
  clear: both;
  content: "";
  display: table;
}

.bx-wrapper {
  z-index: 0;
}

.bx-wrapper img {
  width: 100%;
  height: auto;
}

.slider .bx-wrapper {
  z-index: 0;
  margin-bottom: 0;
}

.slider .bx-wrapper .bx-viewport {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  left: 0 !important;
  border: none !important;
}

.slider .bx-wrapper .bx-caption {
  background: #000;
  background: rgba(0, 0, 0, 0.6);
}

.slider .bx-wrapper .bx-caption span {
  padding: 30px;
  font-size: 1.28571em;
}

.slider .bx-wrapper .bx-pager {
  padding-top: 0 !important;
  bottom: -20px !important;
}
/* main */
.main__section {
  padding-top: 0px;
  background: url(https://file001.shop-pro.jp/PA01300/067/template_jpg/bg_hairline.png), /* linear-gradient(#f5f1e9, #ffffff), */ center repeat;
}
.main__section--top {
  padding-top: 0;
}
.main__section--top-slideshow {
  padding-top: 0px;
}
.main__inner {
  padding: 20px 20px 60px;
  background: #ffffff;
}

/* sidebar */
div#shop_menu {
  	display: none;
  }
.sidebar {
  padding: 0 20px 0 0;
}

.subcategory-list {
  padding: 10px 0;
  display: none;
  background: #f5f5f5;
}

.side_cal {
  padding: 20px 15px 0;
}

.side_cal_memo {
  padding: 0 15px 20px;
  text-align: center;
  font-size: 0.85714em;
}

.tbl_calendar {
  margin-bottom: 20px;
  font-size: 0.78571em;
  display: table;
  border-collapse: separate;
}
.tbl_calendar caption {
  text-align: center;
  padding-bottom: 5px;
}
.tbl_calendar th {
  padding: 3px 0;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
.tbl_calendar td {
  padding: 5px 0;
  width: 14.2%;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
#business_hour {
	width: 100%;
}
#business_hour td{
	border: solid 1px #acacac;
	margin: -1px 0 0 -1px;
	text-align: center;
}
#business_hour tr.tuesday{
	background-color: #dbdbdb;
	color: #ff0000;
	}
#business_hour tr.saturday,
#business_hour tr.sunday {
	background-color: #ebd9b0;
}
.seller-list-left {
  margin: 0;
}
.seller-list-left__wrap {
  padding: 20px 20px 0;
}
.seller-list-left__name--downer {
  margin: 2px 0 0 30px;
}

.sidebar-banner-list__unit {
  margin: 0 0 30px;
}

/* contents */
.contents {
  padding: 0 0 0 20px;
  float: right;
}
.contents-main {
  padding: 0;
}

.info-list {
  margin: 0;
  list-style-type: none;
}
.info-list__unit {
  width: 100%;
  padding-bottom: 4px;
}
.info-list__date {
  width: 100px;
  display: block;
  float: left;
}
.info-list__date

.free-space__section,
.info__section,
.arrival__section,
.recommend__section,
.eyecatch__section,
.together__section,
.history__section {
  margin-bottom: 30px;
}

.contents-sub {
  padding: 0 0 0 20px;
}

.push-list__unit {
  margin: 0;
}

.seller-list-right__unit:last-child {
  margin-bottom: 0;
}
.seller-list-right__name {
  margin-left: 30px;
}

/* footer */
.mail-mag {
  background: #eeeeee;
  text-align: center;
}
.mail-mag__inner {
  padding: 30px 0;
}
.mail-mag__title-h2 {
  padding-bottom: 20px;
  color: #000000;
  font-size: 1.28571em;
  line-height: .5;
}
.mail-mag__suffix {
  padding-left: 10px;
  font-size: 0.71429em;
}
.mail-mag i {
  padding-right: 20px;
}
.mail-mag__box {
  border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: none;
  margin-right: 20px;
  padding: 13px;
  height: auto;
  width: 75%;
}
.mail-mag__box:focus {
  outline: none;
  border-color: #666666;
}
.mail-mag__btn {
  height: auto;
  width: 10%;
  padding: 13px 0;
  border-radius: 5px;
  font-size: 1.14286em;
}
.mail-mag br {
  display: none;
}

.guide {
  background: #1e50a2;
  border-top: 3px solid #000000;
  border-bottom: 0 solid #112d8d;
  background-image: url(https://file001.shop-pro.jp/PA01300/067/template_jpg/bg_hairline.png);
  color: #ffffff;
}
.guide__inner {
  border-bottom: 2px solid #ffffff;
  padding: 60px 0;
}
.guide__h2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 4px double #ffffff;
}
.guide__name {
  padding-bottom: 4px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}
.guide__other {
  padding-bottom: 30px;
  margin: 0;
  color: #ffffff;
}
.guide__other:last-child {
  padding-bottom: 0;
}

.shop-owner {
  overflow: hidden;
}
.shop-owner__image {
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}
.shop-owner__info {
  float: left;
}
.shop-owner__name {
  font-weight: bold;
}
.shop-owner__memo {
  line-height: 1.8;
}
.shop-owner__memo a {
  color: #ffffff;
}
.shop-owner__memo a:hover {
  color: #999999;
}

.sns-list {
  display: table;
}
.sns-list__unit {
  display: table-cell;
}
li.sns-list__unit a{
    color: #253746;
}

.pagetop__section {
  padding: 0;
}
.pagetop__btn {
  margin: 2px 0;
  padding: 13px 0;
  border-radius: 0;
  width: 100%;
  color: #ffffff;
  background: none;
  border: none;
}
.pagetop__btn:hover {
  color: #333333;
  background: #3a5892;
  border: none;
}

.fnavi-list {
  padding-top: 30px;
  font-size: 0.92857em;
  color: #ffffff;
  text-align: center;
}
.fnavi-list__unit {
  display: inline-block;
}
.fnavi-list__link {
  color: #ffffff;
}
.fnavi-list__link:hover {
  color: #999999;
}

.copyright {
  margin: 0 0 10px;
}
.copyright__section {
  padding: 50px 0 20px;
  font-size: 1em;
  text-align: center;
}
.copyright__image {
  margin: 0 0 5px 5px;
  height: 18px;
  width: 200px;
}
.copyright__link {
  color: #ffffff;
}
.copyright__link:hover {
  color: #999999;
}
#footer a{
	color: #ffbd5b;
}
#footer a:hover{
	color: #ffd392;
}
/* product list */
.product-list__section {
  position: relative;
  padding: 0;
}
.product-list__freespace-top {
  padding-bottom: 30px;
}
.product-list__freespace-bottom {
  padding-bottom: 60px;
}
.product-list__noitem {
  padding-bottom: 60px;
}

.sort__section {
  position: absolute;
  top: 35px;
  right: 10px;
}
.sort__sub-layer {
  border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: none;
  height: 37px;
  width: 200px;
  font-size: 0.92857em;
}
.sort__sub-layer:focus {
  outline: none;
  border-color: #666666;
}

.sub-list {
  height: auto;
  width: 100%;
  letter-spacing: -.4em;
  display: inline-block;
}
.sub-list__unit {
  margin-bottom: 6px;
  letter-spacing: normal;
  display: inline-block;
  vertical-align: top;
  float: none;
}
.sub-list__image {
  display: block;
}

.more__btn {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.85714em;
}

/* pagenation */
.pagenation {
  text-align: center;
}
.pagenation-top {
  margin: 30px 0;
}
.pagenation-bottom {
  margin: 20px 0 60px;
}
.pagenation-pos span {
  padding-right: 3px;
  padding-left: 3px;
  font-size: 1.28571em;
  font-weight: bold;
}

.pagenation-list {
  margin: 20px 0 0;
  letter-spacing: -.4em;
}
.pagenation-list__unit {
  margin: 0 2px;
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
}
.pagenation-list__unit a {
  height: 40px;
  width: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #000;
  line-height: 2.5;
}
.pagenation-list__unit a:hover {
  background: #333;
  color: #fff;
}
.pagenation-list__unit span {
  height: 40px;
  width: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #ccc;
  line-height: 2.5;
  color: #ccc;
}
.pagenation-list__unit i {
  line-height: 2;
}
.pagenation-list__navi-end a {
  background: #333;
  color: #fff;
}
.pagenation-list__navi-end a:hover {
  background: #555;
  border: 2px solid #555;
}

/* product */
.product__section {
  padding: 0;
}
.product__name {
  padding: 0 0 30px;
  font-size: 1.42857em;
}
.product__model {
  color: #999999;
  font-size: 0.71429em;
}
.product__image {
  padding-right: 40px;
  padding-left: 0;
}
.product__image-main {
  text-align: center;
}
.product__guide {
  padding-right: 20px;
  padding-left: 0;
}
.product__prices {
  padding-bottom: 30px;
}
.product__price {
  padding-right: 5px;
  font-size: 1.42857em;
}
.product__price-part {
  margin-bottom: 5px;
}
.product__price-regular {
  margin-bottom: 5px;
}
.product__price-establish {
  margin-bottom: 5px;
  color: #999999;
}
.product__discount {
  color: #ff0000;
}
.product__stock-str {
  padding-top: 30px;
  font-size: 1.42857em;
}
.product-social-list__unit {
  margin-bottom: 5px;
}
.product-related-list__link {
  display: block;
  padding: 5px 0;
}
.product__explain {
  padding: 0 0 60px;
  line-height: 1.8;
}
.product__explain p.important {
	color: #ff0000;
}
.product__explain img {
  margin: 10px 0 10px;
}
.product__order {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 30px 20px 35px;
  background: #f5f1e9;
}

.image-thumb {
  padding: 2px;
  border: 2px solid #fff;
}
.image-thumb:hover {
  opacity: .8;
}
.image-thumb--active {
  border: 2px solid #2c5697;
}

.image-thumb-list {
  margin: 10px 0 0;
}
.image-thumb-list__unit {
  margin: 0 0 10px;
  padding: 0 2px;
  cursor: pointer;
  text-align: center;
}

.option {
  padding: 0 0 20px;
}

.option-list__name {
  padding-bottom: 10px;
}
.option-list__detail {
  margin: 0;
}
.option-list__select {
  border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: none;
  height: 40px;
  width: 100%;
}
.option-list__select:focus {
  outline: none;
  border-color: #666666;
}

.text-titles {
  padding: 0 0 20px;
}

.text-titles-list__name {
  padding-bottom: 10px;
}
.text-titles-list__detail-text {
  border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: none;
  padding: 8px;
  height: auto;
  width: 100%;
}
.text-titles-list__detail-text:focus {
  outline: none;
  border-color: #666666;
}

.order {
  padding: 0 0 5px;
}

.init-list {
  margin: 0;
}
.init-list__name {
  padding-bottom: 5px;
}
.init-list__detail {
  margin: 0;
}
.init-list__detail-num {
  border: 2px solid #000000;
  border-radius: 5px;
  box-shadow: none;
  padding: 8px;
  height: auto;
  width: 170px;
}
.init-list__detail-num:focus {
  outline: none;
  border-color: #666666;
}
.init-list__detail-updw {
  margin: 0;
  padding-left: 10px;
  vertical-align: middle;
  display: inline-block;
}

.order-btn-list {
  margin: 0;
  padding-top: 20px;
  padding-right: 0;
}
.order-btn-text {
  vertical-align: middle;
  font-weight: bold;
}

.order__btn {
  height: auto;
  width: 100%;
  padding: 17px 0;
  border-radius: 5px;
  font-size: 1em;
}
.order__btn-addcart {
  color: #ffffff;
  background-color: #f3a847;
  border: 1px solid #f3a847;
}
.order__btn-addcart:hover {
  color: #ffffff;
  background: #f5b35f;
  border: 1px solid #f5b35f;
}
.order__btn-quick {
  color: #ffffff;
  background: #4da6ff;
  border: 1px solid #4da6ff;
  padding: 16px 0;
}
.order__btn-quick:hover {
  color: #ffffff;
  background: #66b3ff;
  border: 1px solid #66b3ff;
}
.order__btn-soldout.disabled {
  color: #ffffff;
  background-color: #ff0000;
  border: 1px solid #ff0000;
  font-weight: bold;
}
.order__btn-soldout[disabled] {
  color: #ffffff;
  background-color: #ff0000;
  border: 1px solid #ff0000;
  font-weight: bold;
}

.related-list {
  margin: 0;
  text-align: right;
  font-size: 0.92857em;
}
.related-list__unit {
  display: inline-block;
}

.table-bordered {
  margin: 0;
  background: #ffffff;
  border: 1px solid #000000;
  border-left: 0;
}
.table-bordered th {
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}
.table-bordered td {
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
}

.stock_error {
  text-align: center;
  color: #ff0000;
}

/* sk */
.sk__section {
  margin-top: -73px;
  margin-bottom: 40px;
  padding-top: 73px;
  padding-bottom: 0;
}

.sk-lead {
  margin: 0 0 20px;
}

.sk-list {
  margin: 0 0 20px;
  line-height: 1.8;
}
.sk-list__dt {
  padding: 20px 0 5px;
}
.sk-list__dt:first-child {
  padding: 0 0 5px;
}
.sk-list__dd {
  margin: 0;
}

/* option stock */
.ex-option__title-h2 {
  margin-bottom: 20px;
}
.ex-option__section {
  padding: 20px;
  text-align: center;
}
.ex-option__price-regular {
  color: #999999;
  text-decoration: line-through;
}
.ex-option__discount-rate {
  color: #ff0000;
  font-size: 0.85714em;
}
.ex-option__none {
  margin-bottom: 20px;
}

/* banner */
.contents-sub-banner-list,
.contents-main-banner-list,
.contents-accent-banner-list {
  margin-bottom: 60px;
}

/* free page */
.contents-free {
  padding-bottom: 60px;
}

.contents-free ul,
.contents-free ol {
  margin: 0 0 10px 25px;
  padding: 0;
}
.sale_link a {
	display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #f7f7f7;
    border-left: solid 6px #ff7c5c;/*左線*/
    color: #ff7c5c;/*文字色*/
    font-weight: bold;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    margin: 20px 0 20px;
}
.sale_link a:active {
	box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
    transform: translateY(2px);
}
/* -------------------------------------
*     改造
* ------------------------------------- */
.mod table th,
.mod table td {
	padding: 2px 4px 2px;
}
.mod table th {
	background-color: #03166d;
	color: #ffffff;
}
/* -------------------------------------
*     求人
* ------------------------------------- */
div.kyujin h1{
	font-size: 1.4em;
	font-weight: bold;
}
div.kyujin p{
	margin: 10px 0 10px;
}
div.kyujin table {
	width: auto;
	min-width: 100px;
	margin: 10px  0;
}
div.kyujin table td {
	padding: 3px 10px 3px;
	border: solid 1px #626262;
}
/* -------------------------------------
*     Google Maps, Youtube Responsive
* ------------------------------------- */
.google-maps,
.youtube {
margin: 20px 0 20px;
position: relative;
width: 100%;
padding-top: 56.25%;
}
.google-maps iframe,
.youtube iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
/* -------------------------------------
*     フリースペース装飾
* ------------------------------------- */
.strong {
	color: #ff0005;
	background-color: #fffe00;
	font-size: 1.3em;
}
.gray_box {
	width: 100%;
	border: solid 2px #444444;
	padding: 10px;
}
@media screen and (max-width: 980px) {
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }

  /* layout */
  .container {
    width: 100%;
  }

  /* module */
  .menu__section {
    margin-bottom: 0;
    border-radius: 0;
    border: none;
  }
  .menu__title-h2 {
    padding: 13px 0 13px 18px;
    color: #ffffff;
    background: #2c5697;
  }
  .menu__suffix {
    padding-left: 10px;
  }

  .product-list__title {
    width: 100%;
  }

  .rank__box {
    position: absolute;
    top: 10px;
    left: 15px;
  }

  .breadcrumb-list {
    font-size: 0.92857em;
  }

  /* header */
  .header {
  	width: 100%;
  	height: 50px;
  	position: fixed;
  	z-index: 999;
  }
  .header h1 {
  	margin-bottom: 0px;
  }
  .header__inner {
    padding: 0;
    text-align: left;
  }
  #header:after,
  .header__inner:after {
    content:" ";
    display:block;
    clear:both;
  }
  .header__right {
    display: none;
  }
  .header-search {
    margin-top: 0;
  }
  .header-search__select {
    margin: 0 0 10px;
    height: 40px;
    width: 100%;
  }
  .header-search__box {
    margin: 0 0 10px;
    height: auto;
    width: 100%;
  }
  .header-search__btn {
    height: auto;
    width: 100%;
  }
  .header-logo {
  	width: 92px;
  	height: 36px;
  	margin-top: -6px;
    padding-right: 0px;
    padding-left: 10px;
  }

  .tab-block {
    background: #f3f4ff;
    box-shadow: 0 3px #c76e0e inset;
    margin-top: 45px;
  }
  .tab-block--visible {
    display: block;
  }
  .tab-block--hidden {
    display: none;
  }
  .tab-block-list {
  	width: 100%;
  	height: auto;
  	max-height: 90vh;
  	overflow-y: scroll;
  	margin-top: 42px;
    padding: 25px 20px 40px;
    text-align: left;
    z-index: 999;
  }
  .tab-block-list__unit {
    font-weight: bold;
    list-style-type: none;
  }
  .tab-block-list__link {
    padding: 10px;
    height: 100%;
    width: 100%;
    display: block;
  }

  .tb-pulldown-list__unit {
    font-weight: normal;
    list-style-type: none;
  }
  .tb-pulldown-list__link {
    padding: 10px;
    height: 100%;
    width: 100%;
    display: block;
  }
  .tb-pulldown-list__link:before {
    content: '- ';
  }

  /* global navigation */
  .gnavi {
    display: none;
  }

  /* slider */
  #ad{
	width: 100%;
	max-width: 87.14375em;
	margin: 0;
	}
	#ad:after {
  	content:" ";
    display:block;
    clear:both;
  }
  #slideshow {
	width: 100%;
	float: none;
	}
  .slider {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .slider__inner {
    height: auto;
    width: 100%;
  }

  /* main */
  .main__section {
    padding-top: 0;
  }
  .main__section--top {
    padding-top: 0;
  }
  .main__inner {
    padding-right: 0;
    padding-left: 0;
  }

  /* sidebar */
  div#shop_menu {
  	display: block;
  }
  .sidebar {
  	margin-top: -50px;
    padding: 50px 0;
  }

  .seller-list-left__name--downer {
    margin-top: 10px;
    margin-left: 0;
  }

  .sidebar-banner-list {
    padding: 60px 20px 0;
  }
  .sidebar-banner-list__unit {
    margin: 0 0 30px;
  }

  /* contents */
  .contents {
  	margin-top: 50px;
    padding-right: 20px;
    padding-bottom: 0;
    padding-left: 20px;
    float: none;
  }
  .contents-main {
    padding: 0;
  }

  .contents-sub {
    display: none;
  }

  /* footer */
  .mail-mag__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .mail-mag__box {
    margin-right: 0;
    margin-bottom: 10px;
    padding: 8px;
    height: auto;
    width: 100%;
  }
  .mail-mag__btn {
    height: auto;
    width: 49%;
    padding: 8px 0;
    font-size: 0.85714em;
  }

  .guide {
    padding: 0 20px;
  }

  /* product list */
  .sort__section {
    padding-bottom: 30px;
    position: static;
  }
  .sort__sub-layer {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .slider .bx-wrapper .bx-caption span {
    padding: 10px 20px;
    font-size: 1em;
  }

  /* footer */
  .mail-mag i {
    padding-right: 0;
    padding-bottom: 20px;
    display: block;
  }

  .guide__inner {
    padding: 30px 0;
  }

  .shop-owner {
    margin-bottom: 30px;
    text-align: center;
  }
  .shop-owner__image {
    margin-right: 0;
    margin-bottom: 20px;
    float: none;
  }
  .shop-owner__info {
    float: none;
  }
  .shop-owner__name {
    margin-bottom: 10px;
  }

  .sns-list {
    margin-right: auto;
    margin-left: auto;
  }

  .pagetop__section {
    padding: 0;
  }

  .fnavi-list {
    font-size: 0.78571em;
    line-height: 1.8;
  }

  .guide-list__link {
    color: #ffffff;
  }
  .guide-list__link:hover {
    color: #999999;
  }

  /* pagenation */
  .pagenation-list__navi-end {
    margin: 0 22px;
  }

  /* product */
  .product__name {
    font-size: 1.28571em;
  }
  .product__image {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .product__guide {
    padding-right: 0;
  }
  .product__price {
    font-size: 1.28571em;
  }
  .product__stock-str {
    font-size: 1.28571em;
  }
  .product__info {
    padding-bottom: 60px;
  }
  .product-related-list {
    font-size: 0.92857em;
  }
  .product__explain {
    padding-top: 30px;
    border-top: 2px solid #f5f1e9;
  }
  .product__order {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .option-list__unit--sec {
    padding-top: 20px;
  }

  .order-btn-list {
    padding-left: 0;
  }

  .order__btn-quick {
    margin-top: 10px;
  }

  .related-list {
    padding: 20px 0 0;
    line-height: 2.2;
    text-align: left;
  }
  .related-list__unit {
    display: block;
  }

  /* sk */
  .sk__section {
    margin-top: -10px;
    padding-top: 10px;
  }
}
/* -------------------------------------
*     フリーページ
* ------------------------------------- */
#freepage {
	width: 100%;
}
#freepage h1{
	width: 100%;
	font-size: 1.6em;
	font-weight: bold;
	margin: 30px 0 10px 0;
	border-bottom : 2px solid #444444;
}
#freepage h2{
	width: 100%;
	font-size: 1.4em;
	font-weight: bold;
	margin: 30px 0 10px 0;
	padding-left: 8px;
	border-left: 14px solid #ff771c;
    background-color: bisque;
}
#freepage h3{
	width: 100%;
	font-size: 1.2em;
	font-weight: bold;
	margin: 30px 0 10px 0;
	border-bottom : 2px solid #9d9d9d;
    background-color: aliceblue;
}
#freepage h4{
    width: auto;
	font-size: 1.1em;
	font-weight: bold;
    margin: 30px 0 10px 0;
    border-bottom : 1px solid #9d9d9d;
}
#freepage h5{
    width: auto;
	font-size: 1.1em;
	font-weight: bold;
    border-bottom : 1px dashed #9d9d9d;
}
#freepage p{
	width: 100%;
	margin: 1.6em auto 1.6em;
	font-size: 1.1em;
}
#freepage .strong {
	color: #ff0005;
	background-color: #fffe00;
	font-size: 1.3em;
}
#freepage ul {
	width: 100%;
	margin: 10px auto 10px;
}
#freepage ul li{
	font-size: 1.1em;
}
#freepage a{
	text-decoration: underline;
	color: #1e2bff;
}
#freepage .important {
	color: #ff000d;
}
#freepage table {
	margin: 10px 0px 10px;
	overflow-y: scroll;
}
#freepage table.shipping tr.table_total {
	background-color: #edea8d;
}
#freepage table.shipping tr th {
	padding: 2px 8px 2px;
	border: solid 1px #858585;
	background-color: #092c7d;
	color : #ffffff;
	text-align: center;
	white-space: nowrap;
}
#freepage table.shipping tr td {
	padding: 2px 6px 2px;
	border: solid 1px #858585;
	text-align: right;
	white-space: nowrap;
}
#freepage table.shipping tr#todofuken td{
	text-align: center
}
/* -------------------------------------
*     買取
* ------------------------------------- */
a.kaitori_sheet {
	position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #fd9535;/*背景色*/
    border-bottom: solid 2px #d27d00;/*少し濃い目の色に*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
}
a.kaitori_sheet:active {
    border-bottom: solid 2px #fd9535;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}
ul#buylist_button {
	margin-bottom: 8px;
}
ul#buylist_button li {
	position: relative;
	width: 31%;
	height: 58px;
	float: left;
	background-color: #ff771c;
	margin: 1%;
}
ul#buylist_button li a {
	display: table-cell;
	width: 258px;
	height: 58px;
	color: #ffffff;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
}
ul#buylist_button li:hover {
	background-color: #ff933f;
}
.buy table th{
	text-align: center;
	background-color: #002b57;
	color: #ffffff;
}
.buy table th,
.buy table td{
	border: solid 1px #b9bebd;
	border-collapse:collapse;
	padding: 4px;
}
.buy table td.price,
.buy table td.price1,
.buy table td.price2,
.buy table td.price3,
.buy table td.price4 {
	text-align: right;
}
.buy table td.maker {
	font-weight: bold;
	color: #ffffff;
	background-color: #005097;
}
.buy table td.product {
	font-weight: bold;
	color: #ffffff;
	background-color: #0076bf;
}
.buy table td.price,
.buy table td.price1,
.buy table td.price2 {
	background-color: ;
}
.buy table td.price3,
.buy table td.price4 {
	background-color: #aed1ef;
}
.buy .limited{
	background-color: ;
}
.buy table td.price:after,
	.buy table td.price1:after,
	.buy table td.price3:after {
	content: " 円";
}
@media screen and (max-width: 768px) {
  ul#buylist_button li, ul#buylist_button li a {
  position: relative;
	width: 100%;
	float: left;
  }
  .buy table th {
  	display: none;
  }
  .buy table td {
	display: block;
	text-align: center;
	border: none;
	}
	.buy table td.price,
	.buy table td.price1,
	.buy table td.price2,
	.buy table td.price3,
	.buy table td.price4 {
	text-align: center;
}
	.buy table td.product,
	.buy table td.price1,
	.buy table td.price2,
	.buy table td.price3,
	.buy table td.price4,
	.buy table td.adding {
		margin-top: -1px;
	}
	.buy table td.price1,
	.buy table td.price3 {
	border-bottom: hidden;
	}
	.buy table td.price2,
	.buy table td.price4 {
	border-top: hidden;
	}
	td.maker {
	margin-top: 10px;
	}
	.buy table td.price:before {
	content: "買取上限金額 ";
	}
	.buy table td.price1:before {
	content: "買取上限金額 ";
	}
	.buy table td.price2:before {
	content: "期間限定UP ";
	}
	.buy table td.price3:before {
	content: "Five G 販売分 ";
	}
	.buy table td.price4:before {
	content: "期間限定UP ";
	}
}
/* clearfix */
    .clearfix:after {
  clear: both;
  content: '';
  display: block;
}
/* -------------------------------------
*     買取・新
* ------------------------------------- */
/* 買取ナビゲーション */

table.service_navi {
    width: 100%;
    border-collapse:separate;
    border-spacing: 0;
}
table.service_navi tr:nth-of-type(1) td:nth-of-type(1),
table.service_navi tr:nth-of-type(1) td:nth-of-type(2){
    border-top: solid 1px #a8b7c5;
}
table.service_navi tr td {
    position: relative;
    width: 50%;
    font-size: 1.4em;
    font-weight: bold;
    border-left: solid 1px #a8b7c5;
    border-bottom: solid 1px #a8b7c5;
    text-decoration: none;
    z-index: 1;
    padding: 22px 12px;
}
table.service_navi tr td:last-child {
    border-right: solid 1px #a8b7c5;
}
table.servicenavi tr td p {
    display: block;
    text-decoration: none;
    color: #1f1f1f;
    z-index: 7;
}
table.service_navi tr td a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}
table.service_navi tr td a:hover {
    background-color: rgba(155, 167, 255, 0.17);
}
table.service_navi tr td {
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}
table.service_navi tr:nth-of-type(1) td:nth-of-type(1) {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/icon_kaitori_takuhai.png");
}
table.service_navi tr:nth-of-type(1) td:nth-of-type(2) {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/icon_kaitori_tentou.png");
}
table.service_navi tr:nth-of-type(2) td:nth-of-type(1) {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/icon_kaitori_shuccho.png");
}
table.service_navi tr:nth-of-type(2) td:nth-of-type(2) {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/icon_kaitori_shitadori.png");
}

table.buy_navi {
    width: 100%;
    border-collapse:separate;
    border-spacing: 0;
}
table.buy_navi tr:nth-of-type(1) td:nth-of-type(1),
table.buy_navi tr:nth-of-type(1) td:nth-of-type(2),
table.buy_navi tr:nth-of-type(1) td:nth-of-type(3){
    border-top: solid 1px #a8b7c5;
}
table.buy_navi tr td {
    position: relative;
    width: 33%;
    font-size: 1.15em;
    font-weight: bold;
    border-left: solid 1px #a8b7c5;
    border-bottom: solid 1px #a8b7c5;
    text-decoration: none;
    z-index: 1;
    padding: 26px 6px;
}
table.buy_navi tr td:last-child {
    border-right: solid 1px #a8b7c5;
}
table.buy_navi tr td p {
    display: block;
    text-decoration: none;
    color: #1f1f1f;
    z-index: 7;
}
table.buy_navi tr td a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}
table.buy_navi tr td a:hover {
    background-color: rgba(155, 167, 255, 0.17);
}
table.buy_navi tr td {
    background-size: cover;
    background-position: center;
}
table.buy_navi tr:nth-of-type(1) td:nth-of-type(1) {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/button_analog.jpg");
}
table.buy_navi tr:nth-of-type(1) td:nth-of-type(2)  {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/button_digital.jpg");
}
table.buy_navi tr:nth-of-type(1) td:nth-of-type(3)  {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/button_modular.jpg");
}
table.buy_navi tr:nth-of-type(2) td:nth-of-type(1)  {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/button_gadget.jpg");
}
table.buy_navi tr:nth-of-type(2) td:nth-of-type(2)  {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/button_drum.jpg");
}
table.buy_navi tr:nth-of-type(2) td:nth-of-type(3)  {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/button_keyboard.jpg");
}
table.buy_navi tr:nth-of-type(3) td:nth-of-type(1)  {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/button_effector.jpg");
}
table.buy_navi tr:nth-of-type(3) td:nth-of-type(2)  {
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/button_other_gears.jpg");
}
/* 買取カテゴリー */

div.kaitori_category {
    padding: 10px;
    margin-top: 30px;
    background-size: 20%;
    background-position: top right;
    background-repeat: no-repeat;
}
div.kaitori_category h2 {
    font-size: 2.2em !important;
    border-left: 0px !important;
    margin: 0px !important;
    padding: 60px 0 !important;
    background: none !important;
    background-color: none !important;
}
div#kaitori_takuhai {
    border: 4px solid #5fb23a ;
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/icon_kaitori_takuhai.png");
}
div#kaitori_tentou {
    border: 4px solid #2e4798 ;
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/icon_kaitori_tentou.png");
}
div#kaitori_shuccho {
    border: 4px solid #d0231e ;
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/icon_kaitori_shuccho.png");
}
div#kaitori_shitadori {
    border: 4px solid #e5aa21 ;
    background-image: url("https://img20.shop-pro.jp/PA01300/067/etc/icon_kaitori_shitadori.png");
}
img#fiveg_kaitori {
    float: left;
    margin: 10px;
}
div.kaitori_address {
    font-weight: bold;
    margin: 20px 0 20px;
    padding: 10px;
    border: 2px solid #ffed8a;
    background-color: #fff5da ;
}
div.kaitori_address h4 {
    margin: 0px 0px 20px
}

/* 買取リスト */
table.buy_list {
    width: 100%;
    border-collapse:separate;
    border-spacing: 0;
    vertical-align: center;
}
table.buy_list tr:nth-child(odd){
    background-color: #f8fcff;
}
table.buy_list tr th{
    color: #ffffff;
    background-color: rgb(34, 136, 237);
    border-top: solid 1px #74bcff;
    border-left: solid 1px #74bcff;
    border-bottom: solid 1px #74bcff;
    padding: 6px
}
table.buy_list tr th:last-child {
    border-right: solid 1px #74bcff;
}
table.buy_list tr td:nth-of-type(3) {
    text-align: right;
}
table.buy_list tr td {
    border-left: solid 1px #a8b7c5;
    border-bottom: solid 1px #a8b7c5;
    border-top: none;
    padding: 4px 10px 4px;
}
table.buy_list tr td:last-child {
    border-right: solid 1px #a8b7c5;
}
@media screen and (max-width: 768px) {
    table.service_navi tr td {
        font-size: 1em;
    }
    table.buy_navi tr td {
        background: url(none);
    }
    table.buy_navi tr td {
        font-size: 0.9em;
    }
    div.kaitori_category {
    background-size: 40%;
}
    div.kaitori_category h2 {
    font-size: 1.8em !important;
    border-left: 0px !important;
    margin: 0px !important;
    padding: 50px 0 !important;
}
}