<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* bxSlider関連 */
.container-section {
  opacity: 0; 
  transition: opacity .3s linear;
}
.bx-wrapper {
  margin: 0 !important;
}

ul.bxslider {
  margin-left: 0px !important;
      display: flex;
    align-items: center;
}

.bx-wrapper .bx-viewport {
  border: none;
  box-shadow: none;
  left: 0;
  background: transparent;
}

.custom-thumb li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  vertical-align: top;
  margin: 0;
  padding: 5px 5px 5px 0;
  display: flex;
  align-items: center;
}

.custom-thumb li a:hover {
  opacity: 0.7;
}

/* サムネイルactive時の枠を付ける */
.custom-thumb a {
  display: inline-block;
}

a.active {
  border: 1px solid #999;
}

/* 販売価格の文字強調 */
.product_sales {
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.2em;
}

/* 数量入力欄 */
input.product-cart-init-num {
  -webkit-appearance: none;
  border: 1px solid #ccc;
  height: 20px;
  width: 20%;
}

/* 名入れ入力欄 */
.product-order-form input[type="text"] {
  width: calc(100% - 14px);
}

/* カートボタン下マージン */
.product_cart_area {
  margin-bottom: 15px;
}

/* カートボタンのデザイン */
.btn-addcart {
  background-color: #beb21c;
  border: medium none;
  color: #111;
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 18px 0;
      transition: .3s;
}
.btn-addcart:hover {
  background-color: #eeeab5;
}
/* いいねボタンのズレ修正 */
.fb_adjust {
  position: relative;
  top: 1px;
}

/* IE11だけで適用されるスタイルシート */
@media all and (-ms-high-contrast:none) {

  *::-ms-backdrop,
  .custom-thumb img {
    width: 100%; //IE11のmax-width崩れ
  }
}
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  /* background-color: #fff; */
  width: 100%;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 50px;
  border-bottom: 3px solid #666;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#itemtxt:checked ~ #itemtxt_content,
#itemshosai:checked ~ #itemshosai_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #333;
  color: #fff;
}

.product_info_block.pc h2 {
  text-align: left!important;
}
.product-order-exp {
  max-width: inherit;
}
.pc_products_text {
  width: 41.666667%;
float: right;
}

@media (max-width: 768px) {
.product-order-exp {
}
.pc_products_text {
  width: 100%;
}
}
@media screen and (max-width : 767px){
 html,
 body {
 overflow-x: hidden!important;
 overflow-y: scroll;
 -webkit-overflow-scrolling: touch;
 }
}</pre></body></html>