﻿@charset "UTF-8";

/* 商品一覧 */
table.goodslist_ {
  text-align: left;
  margin-bottom: 10px;
  font-size: 12px;
}

table.goodslist_ {
  border: 1px solid #ccc;
}

table.goodslist_ td {
  padding: 3px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

table.goodslist_ .goods_ {
  width: 20%;
}

table.goodslist_ .item_code_ {
  width: 20%;
}

table.goodslist_ .name_ {
  width: 35%;
}

table.goodslist_ .qty_ {
  width: 16%;
  text-align: right;
}

table.goodslist_ .amt_ {
  width: 20%;
  text-align: right;
}

table.goodslist_ .money_ {
  width: 20%;
  text-align: right;
}

table.goodslist_ th,
table.goodslist_ .title_ {
  text-align: left;
  white-space: nowrap;
  font-weight: normal;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: #eef8f5;
  padding: 3px;
  padding: 8px 8px 6px;
}

/* --------------------------------------------------------------------
  商品系共通
--------------------------------------------------------------------- */

/* セミクローズドサイト時ログインボタン */
.btn_login {
  background-color: #577cc6;
  color: white;
  border: none;
  border-radius: 3px;
}

.btn_login_s {
  font-size: 11px;
  height: 30px;
  width: 60px;
}

.btn_login_m {
  font-size: 14px;
  height: 40px;
  width: 160px;
}

.btn_login_l {
  font-size: 15px;
  height: 50px;
  width: 220px;
}

.btn_login_0 {
  font-size: 14px;
  height: 40px;
  width: 200px;
}

/* --------------------------------------------------------------------
  商品詳細
--------------------------------------------------------------------- */
div.goods_ {
  clear: both;
}

div.goodsproductdetail_ {
  width: 100%;
}

table.goodsproductdetail_ {
  width: 100%;
}

table.goodsproductdetail_ td {
  vertical-align: top;
}

.goodsproductdetail_top_ {
  display: flex;
  align-items: center;
  gap: 16px;
}

.goodsproductdetail_name_ {
  flex: 1;
}

.goods_icon_ {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 24px;
}

.goods_icon_ img {
  height: 25px;
}

.goods_name_ {
  font-weight: bold;
}

h1.goods_name_ {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.555;
}

/* 仕様 */
.product-detail-specbox {
  margin: 16px -16px;
  border-bottom: 1px solid var(--borderColor);
}

.product-detail-specbox .product-detail-specbox-ttl {
  position: relative;
  padding: 12px 16px;
  font-weight: bold;
  font-size: 16px;
  border-top: 1px solid var(--borderColor);
}

.product-detail-specbox .product-detail-specbox-ttl::before,
.product-detail-specbox .product-detail-specbox-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 14px;
  height: 2px;
  margin: auto;
  background: var(--themeColor);
  transition: all .3s;
}

.product-detail-specbox .product-detail-specbox-ttl::after {
  transform: rotate(90deg);
}

.product-detail-specbox .product-detail-specbox-ttl.active::after {
  transform: rotate(180deg);
}

.product-detail-specbox dl {
  display: flex;
  flex-wrap: wrap;
}

.product-detail-specbox .spec-type,
.product-detail-specbox .spec-desc {
  padding: 15px 0 14px 16px;
  font-size: 14px;
  line-height: 1.428;
  border-top: 1px solid var(--borderColor);
  word-break: break-all;
}

.product-detail-specbox .spec-type {
  width: 46%;
  font-weight: bold;
  background: var(--bgColor);
}

.product-detail-specbox .spec-desc {
  width: 54%;
}

/* 使用例はこちら */
.goods_example_link_ {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 36px;
  margin: 24px auto 32px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: var(--cartBtnColor);
  border: 1px solid var(--cartBtnColor);
  border-radius: 4px;
}

.goods_example_link_::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 5px;
  height: 11px;
  margin: auto;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ネジ径 */
.goods_size_ {
  margin: 0 -16px;
}

.goods_size_title_ {
  margin: 0 16px 9px;
  padding: 0 0 0 8px;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  border-left: 3px solid var(--themeColor);
}

.goods_size_tab_ {
  display: flex;
  gap: 2px;
  padding: 0 0 16px;
  overflow-x: auto;
}

.goods_size_tab_link_ {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  height: 32px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  background: #fff;
  border: 1px solid var(--borderColor);
  white-space: nowrap;
}

.goods_size_tab_ .goods_size_tab_link_.active {
  font-weight: bold;
  color: #fff;
  background: var(--cartBtnColor);
  border-color: var(--cartBtnColor);
  pointer-events: none;
}

.goods_size_contents_ {
  /*margin: -12px 0 8px;
  padding: 24px 16px 16px;*/
  border: 1px solid var(--borderColor);
}

.goods_size_drawing_num_ {
  margin: 0 0 16px;
  font-weight: bold;
  font-size: 16px;
}

.goods_size_drawing_img_ {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 170px;
}

.goods_size_drawing_img_ img {
  width: 85%;
}

.goods_size_comment_ {
  margin: 0 !important;
}

.goods_size_comment_box_ {
  margin: 16px 0 0;
}

.goods_size_comment_box_:not(.active) {
  /*display: none;*/
}

/* お気に入り登録ボタン、商品問い合わせボタン */
.btn-add-bookmark.disp_none_ {
  display: none;
}

ul.option_buttons_ {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  display: none;
}

ul.option_buttons_ > li {
  margin: 0 0 8px;
}

ul.option_buttons_ > li:last-of-type {
  margin-bottom: 0;
}

ul.option_buttons_ > li .btn-add-bookmark,
ul.option_buttons_ > li .btn-contact-goods {
  display: block;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 12px 4px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
}

ul.option_buttons_ > li .btn-registed-bookmark {
  display: block;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 12px 4px;
  border: 1px solid #ba3737;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #ba3737;
  text-align: center;
  box-sizing: border-box;
  background: #f8eaea;
}

ul.option_buttons_ > li .btn-contact-goods::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 24px;
  margin-right: 8px;
  vertical-align: top;
  background: url(../../img/usr/icon_contact_goods_sp.png) center center / 17px auto no-repeat;
}

ul.option_buttons_ > li .btn-add-bookmark::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 8px;
  left: calc(50% - 145px);
  transform: translateY(30%);
  background: url(../../img/usr/icon_add_bookmark_sp.png) center center / 18.5px auto no-repeat;
}

ul.option_buttons_ > li .btn-registed-bookmark::before {
  content: "";
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  position: absolute;
  top: 8px;
  left: calc(50% - 125px);
  transform: translateY(30%);
  background: url(../../img/usr/icon_registed_bookmark_sp.png) center center / 18.5px auto no-repeat;
}

/* 商品画像 */
.goodsproductdetail_ .goodsimg_ {
  width: 120px;
  height: 100%;
  display: block;
  user-select: none;
}

.goodsproductdetail_ .goodsimg_ .comment_ {
  margin-top: 2vw;
  text-align: left;
}

.goodsproductdetail_ .goodsimg_ .img_c_ {
  margin-bottom: 4px;
}

.goodsproductdetail_ .goodsimg_ .swiper-slider-main {
  text-align: center;
  margin-bottom: 4px;
}

.goodsproductdetail_ .goodsimg_ .swiper-slider-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.goodsproductdetail_ .goodsimg_ .swiper-slider-thumbnail {
  max-width: none;
  margin: 0 -16px 16px;
  padding: 0 16px;
  display: none;
}

.goodsproductdetail_ .goodsimg_ .swiper-slider-thumbnail .swiper-slide {
  width: 16vw;
  height: 16vw;
  border: 0;
  box-sizing: border-box;
}

.goodsproductdetail_ .goodsimg_ .swiper-slider-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 商品添付ファイル */
div.goods-affix-list {
  margin-bottom: 10px;
}

div.goods-affix-list--item {
  margin: 0 0 16px;
}

div.goods-affix-list--item--name {
  margin: 0 0 2px;
}

div.goods-affix-list--item--name a {
  display: inline;
  width: auto;
  padding: 0;
  border: 0;
  box-shadow: none;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  color: #3763ba;
  word-break: break-all;
  background: none;
}

div.goods-affix-list--item--name a::before {
  display: inline-block;
  width: 14px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  background: url(../../img/sys/file.gif) center center / 100% auto no-repeat;
  content: "";
}

div.goods-affix-list--item--button a {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 9px 4px;
  border: 1px solid #afafaf;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #505050;
  word-break: break-all;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
}

div.goods-affix-list--item--button a::before {
  display: inline-block;
  width: 15px;
  height: 19px;
  margin-right: 8px;
  vertical-align: middle;
  background: url(../../img/sys/file_button.png) center center / 100% auto no-repeat;
  content: "";
}

div.goods-affix-list--item--image {
}

div.goods-affix-list--item--comment {
  margin: 2px 0 0;
  font-size: 12px;
}

/* 商品スペック */
div.goodsspec_ {
  display: none;
}

dl.goodsspec_ {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 20px;
  border: 1px solid #dedede;
  box-sizing: border-box;
}

dl.goodsspec_ dt {
  width: 108px;
  padding: 3px 8px 3px 16px;
  color: #333;
  font-size: 13px;
  line-height: 1.61538;
  color: #333;
  word-wrap: break-word;
  box-sizing: border-box;
}

dl.goodsspec_ dd {
  width: calc(100% - 108px);
  padding: 3px 16px 3px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #111;
  word-break: break-all;
  box-sizing: border-box;
}

dl.goodsspec_ dt:first-child,
dl.goodsspec_ dd:nth-child(2) {
  padding-top: 19px;
}

dl.goodsspec_ dt:nth-last-child(2),
dl.goodsspec_ dd:last-child {
  padding-bottom: 19px;
}

div.goodsspec_ div.to_detaillink_ {
  text-align: right;
}

dl.goodsspec_ .price_,
dl.goodsspec_ .price_ .small_ {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

.togetherlist_ .g_price_::after {
  content: none;
}

/* セット商品 */
div.goodsset_ {
  margin-bottom: 10px;
}

h2.goodsset_title_ {
  margin: 0;
  padding: 4px 0;
  font-size: 13px;
  font-weight: bold;
}

dl.goodsset_ {
  margin: 0 10px;
}

dl.goodsset_ dt,
dl.goodsset_ dd {
  display: block;
  word-break: break-word;
}

dl.goodsset_ dt {
  font-size: 13px;
  padding: 1px 2px 1px 12px;
  background-color: #f0f0f0;
  border: 1px solid #cecece;
}

dl.goodsset_ dd {
  font-size: 13px;
  padding: 2px 2px 2px 12px;
  border: 1px solid #cecece;
}

.togetherlist_ .common_headline2_ {
  max-width: none;
  margin: 0 -8px 20px;
  padding: 8px 20px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #707070;
}

/* カートボタン関係 */
div.cartbox_ {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 24px;
}

div.cartbox_ input[type="text"] {
  width: 60px;
  height: 48px;
  padding: 6px 12px;
  margin: 0 4px;
  border: 1px solid #222;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
  box-sizing: border-box;
}

div.cartbox_ .unit_ {
  padding-right: 4px;
  display: inline-block;
  max-width: 50px;
  word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
}

div.cartvariation_ {
  margin: 0 0 32px;
}

div.cartvariation_ ul.cartvariation_ {
  text-align: left;
}

div.cartvariation_ ul.cartvariation_ > li {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 20px 0 16px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}

div.cartvariation_ ul.cartvariation_ > li .variation_img_ {
  width: 156px;
}

div.cartvariation_ ul.cartvariation_ > li .variation_img_ img {
  width: 100%;
  vertical-align: top;
}

div.cartvariation_ ul.cartvariation_ > li .variation_desc_ {
  width: calc(100% - 172px);
}

div.cartvariation_ ul.cartvariation_ .msg_ .name_,
div.cartvariation_ ul.cartvariation_ .msg_ .name_ a {
  display: -webkit-box;
  max-height: 3.0em;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
}

div.cartvariation_ ul.cartvariation_ .msg_ .name_ {
  margin: 0 0 2px;
}

div.cartvariation_ ul.cartvariation_ .msg_ .g_price_,
div.cartvariation_ ul.cartvariation_ .msg_ .g_price_ .price_ {
  font-size: 16px;
  font-weight: bold;
}

div.cartvariation_ ul.cartvariation_ .msg_ .maker_price_ {
  font-size: 10px;
  color: #6b6b6b;
}

div.cartvariation_ ul.cartvariation_ li .block_ {
  display: block;
  padding-left: 110px;
  padding-top: 4px;
  padding-right: 10px;
  min-height: 110px;
  background-repeat: no-repeat;
  background-position: 5px 50%;
  background-size: 100px auto;
  font-size: 13px;
}

div.cartvariation_ .original_price_ {
  display: block;
  font-size: 12px;
}

div.cartvariation_ div.variation_ {
  font-size: 3.733vw;
  font-weight: 600;
  text-align: right;
}

div.cartvariation_ ul.cartvariation_ .cartbox_ {
  flex-wrap: wrap;
  margin: 0;
}

div.cartvariation_ ul.cartvariation_ .qty_ {
  margin: 9px 0 0;
  width: 100%;
  word-break: break-all;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: left;
} 

div.cartvariation_ ul.cartvariation_ .cartbutton_,
div.cartvariation_ ul.cartvariation_ .cartbutton_ .btn_cart_ {
  width: 100%;
}

div.cartvariation_ ul.cartvariation_ .cartbutton_ {
  margin: 12px 0 0;
}

div.goodscomment1_,
div.goodscomment2_,
div.goodscomment3_,
div.goodscomment4_,
div.goodscomment5_,
div.goodscomment6_ {
  margin-bottom: 16px;
  word-break: break-word;
}

div.goods_ div.accessory_list_ {
  margin: 10px 0;
}

/* --------------------------------------------------------------------
  商品詳細　型番リスト
--------------------------------------------------------------------- */
.item_number_list_ {
  position: relative;
  width: 100%;
  margin: 8px 0 24px;
  padding-bottom: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; 
}
/* 上下のスクロールバーの設定 */
.item_number_list_top_scrollbar::-webkit-scrollbar,
.item_number_list_::-webkit-scrollbar {
  height: 8px;
  display: block;
}
.item_number_list_top_scrollbar::-webkit-scrollbar-track,
.item_number_list_::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.item_number_list_top_scrollbar::-webkit-scrollbar-thumb,
.item_number_list_::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  border: 1px solid #f1f1f1;
}
.item_number_list_top_scrollbar {
  position: sticky;
  top: 0;
  z-index: 6;
  width: 100%;
  height: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  background: #fff;
}

.item_number_list_link {
  margin-top: 10px;
  margin-bottom: 10px;
}

.item_number_list_anchor_ {
  display: block;
  position: absolute;
  top: -70px;
  visibility: hidden;
}

.item_number_list_anchor_adjust_ {
  display: none;
}

.item_number_list_quantity {
  font-size: 16px;
  text-align: right;
}

.item_number_list_quantity .goods_comment_ {
  display: inline-block;
  margin: 0 2px;
  font-weight: bold;
}

.item_number_list_table_ {
  width: auto;
  min-width: 100%;
  height: 100%;
  font-size: 14px;
  border-bottom: 1px solid var(--borderColor);
  table-layout: fixed;
  border-collapse: separate;
}

.item_number_list_table_ th {
  padding: 4px 12px 3px 12px;
  text-align: center;
  background: #e2efda;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  word-break: break-all;
  vertical-align: middle;
  white-space: nowrap;
}

.item_number_list_table_ td {
  padding: 9px 8px 7px 8px;
  background: #fff;
  word-break: break-all;
  vertical-align: middle;
  white-space: nowrap;
}

.item_number_list_table_ tr:nth-child(odd) td {
  background: var(--bgColor);
}

.item_number_list_table_ .item_number_list_spacer_ {
  width: auto;
  padding: 0;
}

.item_number_list_header_goods_,
.item_number_list_data_goods_ {
  /* width: 150px; */
  border-right: 1px solid var(--borderColor);
}

.item_number_list_header_goods_ {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
}

td.item_number_list_data_goods_ {
  position: sticky;
  left: 0;
  padding-right: 30px;
  text-align: left;
  z-index: 2;
}

.item_number_list_data_goods_ .btn-add-bookmark {
  position: absolute;
  right: 6px;
  width: 18px;
  height: 18px;
  font-size: 0;
  background: url(../../img/usr/icon_add_bookmark.png) no-repeat center / contain;
}

.item_number_list_data_goods_ .btn-add-bookmark.btn-registed-bookmark {
  background-image: url(../../img/usr/icon_registed_bookmark.png);
}

.item_number_list_header_filter_,
.item_number_list_data_filter_ {
  /* width: 80px; */
}

.item_number_list_header_filter_ {
  position: sticky;
  top: 0;
  z-index: 2;
}

.item_number_list_data_filter_ {
  position: sticky;
  text-align: center;
  z-index: 1;
}

.item_number_list_header_price_,
.item_number_list_header_stock_,
.item_number_list_header_qty_ {
  position: sticky;
  top: 0;
  z-index: 2;
}

.item_number_list_data_price_,
.item_number_list_data_stock_,
.item_number_list_data_qty_ {
  position: sticky;
  z-index: 1;
}

.item_number_list_header_price_,
.item_number_list_data_price_ {
  /* width: 80px; */
}

.item_number_list_header_price_ span {
  display: block;
  font-size: 10px;
  line-height: 1;
}

.item_number_list_data_price_ {
  text-align: center;
}

.item_number_list_data_price_ .price_ {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

.item_number_list_header_stock_,
.item_number_list_data_stock_ {
  display: none;
  /* width: 80px; */
}

.item_number_list_data_stock_ {
  text-align: center;
}

.item_number_list_header_qty_,
.item_number_list_data_qty_ {
  /* width: 90px; */
}

.item_number_list_data_qty_ {
  text-align: center;
}

.item_number_list_data_qty_ .unit_ {
  display: none;
}

.item_number_list_data_qty_ .data_item_qty_box_ {
  position: relative;
  width: 90px;
  margin: 0 auto 0 0;
}

/* 20260522 FO Chrome, Safari, Edge, Opera */
.item_number_list_data_qty_ .data_item_qty_box_ input[type=number]::-webkit-outer-spin-button,
.item_number_list_data_qty_ .data_item_qty_box_ input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 20260522 FO Firefox */
.item_number_list_data_qty_ .data_item_qty_box_ input[type=number] {
  -moz-appearance: textfield;
}

.item_number_list_data_qty_ .data_item_qty_box_::before,
.item_number_list_data_qty_ .data_item_qty_box_::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 5px;
  background: var(--themeColor);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 4;
}

.item_number_list_data_qty_ .data_item_qty_box_::after {
  top: auto;
  bottom: 8px;
  transform: scale(1, -1);
}

.item_number_list_data_qty_ .data_item_qty_box_ input[type=number] {
  position: relative;
  width: 100%;
  padding: 4px 20px 4px 8px;
}

.item_number_list_data_qty_ .data_item_qty_box_ input[type=number]:not(:focus) {
  color: transparent;
  z-index: 1;
}

.item_number_list_data_qty_ .data_item_qty_box_ input[type=number]:focus {
  background: #fff;
  z-index: 3;
}

.item_number_list_data_qty_ .data_item_qty_box_ .qty-button {
  position: absolute;
  right: 0;
  width: 25px;
  height: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  z-index: 5;
}

.item_number_list_data_qty_ .data_item_qty_box_ .qty-up {
  top: 0;
}

.item_number_list_data_qty_ .data_item_qty_box_ .qty-down {
  bottom: 0;
}

.item_number_list_data_qty_ .data_item_qty_box_ .data_item_qty_comma_ {
  position: absolute;
  inset: 0;
  margin: auto 20px auto auto;
  padding: 6px 9px;
  text-align: left;
  background: transparent;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}

.ec-ga-goods-detail-cartbox-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(255,255,255,0.8);
  box-shadow: 0 -4px 12px rgb(0,0,0,0.1);
  visibility: hidden;
  z-index: 10;
}

.ec-ga-goods-detail-cartbox-fixed .ec-ga-goods-detail-cartbox-fixed-inner {
  padding: 10px 0;
}

.ec-ga-goods-detail-cartbox-fixed .ec-ga-goods-detail-cartbox {
  margin: 0;
}

/* --------------------------------------------------------------------
  商品検索
--------------------------------------------------------------------- */
.page-search .common_headline1_ {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.page-search p.message_ {
  margin: 0 0 16px;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
}

dl.goodssearch_ {
  border: 1px solid #cecece;
}

dl.goodssearch_ dt,
dl.goodssearch_ dd {
  display: block;
  border-bottom: 1px solid #cecece;
}

dl.goodssearch_ dt:last-child,
dl.goodssearch_ dd:last-child {
  border-bottom: 0;
}

dl.goodssearch_ dt {
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  background: #f0f0f0;
}

dl.goodssearch_ dd {
  margin: 0;
  padding: 12px 12px;
}

dl.goodssearch_ + input[type="submit"] {
  display: block;
  width: 180px;
  height: auto;
  margin: 24px auto 60px;
  padding: 12px 4px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
  background: #222;
}

dl.goodssearch_ dd input,
dl.goodssearch_ dd select {
  max-width: 100%;
  vertical-align: middle;
}

dl.goodssearch_ dd input[type="text"],
dl.goodssearch_ dd input[type="date"],
dl.goodssearch_ dd select {
  width: 100%;
  height: 40px;
  padding: 4px;
  border: 1px solid #222;
  border-radius: 4px;
  box-sizing: border-box;
}

dl.goodssearch_ dd input[name="min_price"],
dl.goodssearch_ dd input[name="max_price"],
dl.goodssearch_ dd input[name="last_sdt"],
dl.goodssearch_ dd input[type="date"] {
  width: 38%;
  box-sizing: border-box;
}

dl.goodssearch_ dd select,
dl.goodssearch_ dd.genre_ .genre_select_box_select_area_ {
  padding: 4px 32px 4px 12px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../../img/usr/sp/down_arrow.png) center right 11px / 9.5px auto no-repeat;
}

dl.goodssearch_ dd.genre_ .genre_select_box_select_area_ {
  width: 100%;
  padding-top: 8.5px;
  padding-bottom: 8.5px;
  border: 1px solid #222;
  border-radius: 4px;
  font-size: 14px;
  font-weight: normal;
  color: #222;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.goodssearch_ .keyword_search_method_ {
  margin-top: 5px;
}

.goodssearch_ .keyword_search_method_ input[type="radio"],
.goodssearch_ .keyword_search_method_ label {
  vertical-align: middle;
  cursor: pointer;
}

.goodssearch_ .keyword_search_method_ label {
  font-size: 2.8vw;
  margin-right: 10px;
}

.goodssearch_ .genre_ {
  position: relative;
}

.goodssearch_ .genre_ .search_genre_ {
  width: 100%;
  z-index: 1;
  display: none;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: white;
  color: #000;
  padding: 5px;
  max-height: 30vh;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
  overflow-y: auto;
}

.goodssearch_ .genre_ .search_genre_ input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  margin-bottom: 10px;
  vertical-align: middle;
  cursor: pointer;
}

.goodssearch_ .genre_ .search_genre_ label {
  font-size: 16px;
  cursor: pointer;
}

.goodssearch_ .genre_ .genre_select_box_disp_area_ {
  width: 100%;
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background-color: #f9f9f9;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
  font-size: 16px;
}

.goods-filter-description {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #cbcbcb;
}

.goodssearch_.goods-filter-data-list {
  overflow-y: hidden;
}

.goodssearch_ .search_filter,
.goodssearch_ .search_filter_selection {
  white-space: unset;
  word-break: break-all;
}

.goodssearch_ .search_filter_selection input[type="checkbox"],
.goodssearch_ .search_filter_selection label {
  vertical-align: middle;
}

.goodssearch_ .search_filter_selection input[type="checkbox"] {
  max-width: 16px;
  min-width: 16px;
  margin-right: 6px;
}

.goodssearch_ .search_filter_selection label {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
}

.goodssearch_ #toggle-filter-accordion-header,
.goodssearch_ #toggle-filter-accordion-footer {
  text-align: center;
  background-color: unset;
}

.goodssearch_ #toggle-filter-accordion-header::before {
  content: "";
  display: block;
  position: relative;
  right: -76%;
  top: 16px;
  width: 2px;
  height: 10px;
  background-color: #222;
}

.goodssearch_ #toggle-filter-accordion-header::after {
  content: "";
  display: block;
  position: relative;
  right: -74.7%;
  top: -11px;
  width: 10px;
  height: 2px;
  background-color: #222;
}

.goodssearch_ #toggle-filter-accordion-footer::after {
  content: "";
  display: block;
  position: relative;
  right: -70%;
  top: -12px;
  width: 10px;
  height: 2px;
  background-color: #222;
}

/* --------------------------------------------------------------------
  商品一覧　タグ表示 2026.03.12 mod F1 100002
--------------------------------------------------------------------- */
div.goods_ {
  background-color: #fff;
}

.page-top div.goods_:has(ul.goods_h_),
.page-goods div.goods_:has(ul.goods_h_) {
  margin: 0;
  display: flex;
  overflow-x: auto;
}

.page-top div.goods_:has(ul.goods_h_) ul.goods_h_,
.page-goods div.goods_:has(ul.goods_h_) ul.goods_h_ {
  display: flex;
  flex-wrap: nowrap;
  text-align: left;
  width: max-content;
  gap: unset;
  overflow: unset;
  padding-bottom: 5px;
}

.page-top div.goods_:has(ul.goods_h_) ul.goods_h_ li,
.page-goods div.goods_:has(ul.goods_h_) ul.goods_h_ li {
  width: 40vw;
  flex: 0 0 auto;
  padding-right: 13px;
}

ul.goods_h_ {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 8px;
}

ul.goods_h_ li {
  width: calc((100% - (8px*2))/3);
}

ul.goods_h_ li .block_ {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

ul.goods_h_ li .block_ div.icon_ {
  margin: 0 0 4px;
  min-height: 24px;
}

ul.goods_h_ li .block_ div.icon_ {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 40px;
  overflow: hidden;
}

ul.goods_h_ li .block_ div.icon_ span {
  display: flex;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  height: 20px;
}

ul.goods_h_ li .block_ div.icon_ img {
  flex-shrink: 0;
  width: 154px;
  max-width: unset;
  object-fit: cover;
}

ul.goods_h_ li .block_ span.icon_src6 {
  font-weight: bold;
  align-items: center;
  max-height: 20px;
  
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: -0.05em;
  width: 100%;

}

ul.goods_h_ li .block_ div.goods_img_ {
  box-shadow: 0 0 6px rgb(0, 0, 0, 0.2);
}

ul.goods_h_ li .block_ div.goods_img_ a {
  position: relative;
  display: block;
  padding-top: 100%;
}

ul.goods_h_ li .block_ div.goods_img_ img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

ul.goods_h_ li .block_ div.goods_detail_icon_ {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin: 8px 0 0;
  max-height: 44px;
}

ul.goods_h_ li .block_ div.goods_detail_ {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin: 8px 0 0;
}

ul.goods_h_ li .block_ div.name_ {
  display: -webkit-box;
  max-height: 12em;
  font-size: 14px;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: none;
}

ul.goods_h_ li .block_ div.series_ {
  font-weight: bold;
  text-align: center;
  color: var(--themeColor);
}

ul.goods_h_ li .block_ .comment_ {
  font-size: 12px;
  text-align: center;
}

ul.goods_h_ li .block_ div.size_ {
  /*display: none;*/
}

ul.goods_h_ li .block_ div.size_title_ {
  /*padding: 2px 0;*/
  text-align: center;
  color: #fff;
  background: var(--textColor);
  font-size: 12px;
}

ul.goods_h_ li .block_ .size_list_ {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 9px 0 0;
}

ul.goods_h_ li .block_ .goods_h_tile_ {
  /*width: calc((100% - 5px)/2);*/
}

/* F1 サイズタイル1列表示 Add*/
ul.goods_h_ li .size_tile_cols1 li {
  width: 100%;
}

/* F1 サイズタイル2列表示 Add*/
ul.goods_h_ li .size_tile_cols2 li {
  width: 45%;
}

/* F1 サイズタイル3列表示 Add*/
ul.goods_h_ li .size_tile_cols3 li {
  width: 45%;
}

ul.goods_h_ li .size_list_ li a {
  display: block;
  height: 100%;
  padding: 3px 0;
  text-align: center;
  border: 1px solid var(--textColor);
  border-radius: 4px;
  word-break: break-word;
}

ul.goods_h_ li .block_ .g_price_ {
  display: none;
  margin: auto 0 0;
}

ul.goods_h_ li .block_ .g_price_ .price_ {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}
ul.goods_h_ li .block_ .g_price_ .price_ .large_ {
  font-size: inherit;
}

ul.goods_h_ li .block_ .semiclosed_value_,
ul.goods_h_ li .block_ .maker_price_ {
  font-size: 10px;
  color: #6b6b6b;
}

ul.goods_h_ li .block_ .qty_ {
  display: none;
  margin: 9px 0 12px;
  font-size: 12px;
  color: #6b6b6b;
  min-height: 40px;
}

ul.goods_h_ li .block_ .qty_ input[type="text"] {
  width: 60px;
  height: 40px;
  margin: 0 4px;
  padding: 4px 12px;
  border: 1px solid #222;
  border-radius: 2px;
  font-size: 14px;
  box-sizing: border-box;
  background: #fff;
}

ul.goods_h_ li .block_ .add-cart-btn {
  display: none;
  min-height: 41px;
}

ul.goods_h_ li .btn_cart_.cart_s_button_ {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 0 10px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  background: #3763ba;
}

ul.goods_h_ li .btn_cart_.cart_s_button_::before {
  position: absolute;
  width: 16px;
  height: 1.5em;
  top: calc(50% - 0.75em);
  margin-left: calc(50% - 80px);
  vertical-align: top;
  background: url(../../img/usr/btn_cart.png) center center / 16px auto no-repeat;
  content: "";
}

/* --------------------------------------------------------------------
  商品一覧　一覧
--------------------------------------------------------------------- */

ul.goods_l_ {
  text-align: left;
  background: #fff;
}

ul.goods_l_ li {
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
}

ul.goods_l_ li:first-of-type {
  border-top: 1px solid #eaeaea;
}

ul.goods_l_ .icon_ {
  margin: 0 0 12px;
}

ul.goods_l_ .name_ {
  display: -webkit-box;
  max-height: 4.5em;
  margin: 0 0 2px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
}

ul.goods_l_ li .comment_ {
  display: none;
}

ul.goods_l_ li .g_price_,
ul.goods_l_ li .g_price_ .price_ {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

ul.goods_l_ li .semiclosed_value_,
ul.goods_l_ li .maker_price_ {
  font-size: 10px;
  color: #6b6b6b;
}

ul.goods_l_ li .semiclosed_value_ {
  word-break: break-all;
}

ul.goods_l_ li .cartbox_ {
  margin: 12px 0 0;
}

ul.goods_l_ li .cartbox_ .qty_ {
  flex-shrink: 0;
  color: #6b6b6b;
  white-space: nowrap;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  display: flex;
}

/* --------------------------------------------------------------------
  商品一覧　比較表
--------------------------------------------------------------------- */
.compare_list_wrapper_ {
  position: relative;
  width: 100%;
  margin: 8px 0 24px;
  padding: 0 0 16px;
  overflow: auto;
}

.compare_list_table_ {
  /* width: 100%; */
  width: auto;
  height: 100%;
  font-size: 14px;
  border-bottom: 1px solid var(--borderColor);
  /* table-layout: fixed; */
  border-collapse: separate;
}

.compare_list_table_ th {
  padding: 4px 12px 3px 12px;
  text-align: center;
  background: var(--bgColor);
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  word-break: break-all;
  vertical-align: middle;
  white-space: nowrap;
}

.compare_list_table_ td {
  padding: 9px 8px 7px 8px;
  background: #fff;
  word-break: break-all;
  vertical-align: middle;
  white-space: nowrap;
}

.compare_list_table_ tr:nth-child(odd) td {
  background: var(--bgColor);
}

.compare_list_table_ .compare_list_spacer_ {
  width: auto;
  padding: 0;
}

.compare_list_goods_code_header_,
.compare_list_goods_code_data_ {
  /* width: 150px; */
  border-right: 1px solid var(--borderColor);
}

.compare_list_goods_code_header_ {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
}

td.compare_list_goods_code_data_ {
  position: sticky;
  left: 0;
  padding-right: 30px;
  text-align: left;
  z-index: 2;
}

.compare_list_goods_code_data_ .btn-add-bookmark {
  position: absolute;
  right: 6px;
  width: 18px;
  height: 18px;
  font-size: 0;
  background: url(../../img/usr/icon_add_bookmark.png) no-repeat center / contain;
}

.compare_list_goods_code_data_ .btn-add-bookmark.btn-registed-bookmark {
  background-image: url(../../img/usr/icon_registed_bookmark.png);
}

.compare_list_filter_header_,
.compare_list_filter_data_ {
  /* width: 80px; */
}

.compare_list_filter_header_ {
  position: sticky;
  top: 0;
  z-index: 2;
}

.compare_list_filter_data_ {
  position: sticky;
  text-align: center;
  z-index: 1;
}

.compare_list_price_header_,
.compare_list_stock_header_,
.compare_list_qty_header_ {
  position: sticky;
  top: 0;
  z-index: 2;
}

.compare_list_price_data_,
.compare_list_stock_data_,
.compare_list_qty_data_ {
  position: sticky;
  z-index: 1;
}

.compare_list_price_header_,
.compare_list_price_data_ {
  /* width: 80px; */
}

.compare_list_price_header_ span {
  display: block;
  font-size: 10px;
  line-height: 1;
}

.compare_list_price_data_ {
  text-align: center;
}

.compare_list_price_data_ .price_ {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

.compare_list_stock_header_,
.compare_list_stock_data_ {
  display: none;
  /* width: 80px; */
}

.compare_list_stock_data_ {
  text-align: center;
}

.compare_list_qty_header_,
.compare_list_qty_data_ {
  /* width: 90px; */
}

.compare_list_qty_data_ {
  text-align: center;
}

.compare_list_qty_data_ .unit_ {
  display: none;
}

.compare_list_qty_data_ .data_item_qty_box_ {
  position: relative;
  width: 75px;
  margin: 0 auto 0 0;
}

.compare_list_qty_data_ .data_item_qty_box_::before,
.compare_list_qty_data_ .data_item_qty_box_::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 5px;
  background: var(--themeColor);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 4;
}

.compare_list_qty_data_ .data_item_qty_box_::after {
  top: auto;
  bottom: 8px;
  transform: scale(1, -1);
}

.compare_list_qty_data_ .data_item_qty_box_ input[type=number] {
  position: relative;
  width: 100%;
  padding: 4px 20px 4px 8px;
}

.compare_list_qty_data_ .data_item_qty_box_ input[type=number]:not(:focus) {
  color: transparent;
  z-index: 1;
}

.compare_list_qty_data_ .data_item_qty_box_ input[type=number]:focus {
  background: #fff;
  z-index: 3;
}

.compare_list_qty_data_ .data_item_qty_box_ .qty-button {
  position: absolute;
  right: 0;
  width: 25px;
  height: 50%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  z-index: 5;
}

.compare_list_qty_data_ .data_item_qty_box_ .qty-up {
  top: 0;
}

.compare_list_qty_data_ .data_item_qty_box_ .qty-down {
  bottom: 0;
}

.compare_list_qty_data_ .data_item_qty_box_ .data_item_qty_comma_ {
  position: absolute;
  inset: 0;
  margin: auto 20px auto auto;
  padding: 6px 9px;
  text-align: left;
  background: transparent;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}

/* --------------------------------------------------------------------
  商品一覧　タグ表示 2025.11.14 mod F1 100002
-------------------------------------------------------------------- 
ul.goods_h_ {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 13px;
  overflow: hidden;
  text-align: left;
}

ul.goods_h_ li {
  width: calc(50% - 6.5px);
}

ul.goods_h_ li .block_ {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

ul.goods_h_ li .block_ div.goods_img_ {
  margin: 0 0 12px;
}

ul.goods_h_ li .block_ div.goods_img_ img {
  width: 100%;
  object-fit: contain;
}

ul.goods_h_ li .block_ div.goods_detail_ {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto auto;
  flex-grow: 1;
}

ul.goods_h_ li .block_ div.icon_ {
  margin: 0 0 4px;
  min-height: 24px;
}

ul.goods_h_ li .block_ div.name_,
ul.goods_h_ li .block_ div.name_ a,
ul.goods_h_ li .block_ div.name_ span.name_ {
  display: -webkit-box;
  max-height: 12em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
}

ul.goods_h_ li .block_ div.name_ {
  margin: 0 0 2px;
}

ul.goods_h_ li .block_ .comment_ {
  display: none;
}

ul.goods_h_ li .block_ .g_price_,
ul.goods_h_ li .block_ .g_price_ .price_ {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

ul.goods_h_ li .block_ .g_price_ {
  margin: 0;
}

ul.goods_h_ li .block_ .g_price_ .price_ .large_ {
  font-size: inherit;
}

ul.goods_h_ li .block_ .semiclosed_value_,
ul.goods_h_ li .block_ .maker_price_ {
  font-size: 10px;
  color: #6b6b6b;
}

ul.goods_h_ li .block_ .qty_ {
  margin: 9px 0 12px;
  font-size: 12px;
  color: #6b6b6b;
  min-height: 40px;
}

ul.goods_h_ li .block_ .qty_ input[type="text"] {
  width: 60px;
  height: 40px;
  margin: 0 4px;
  padding: 4px 12px;
  border: 1px solid #222;
  border-radius: 2px;
  font-size: 14px;
  box-sizing: border-box;
  background: #fff;
}

ul.goods_h_ li .block_ .add-cart-btn {
  min-height: 41px;
}

ul.goods_h_ li:last-child {
  border-bottom-style: none;
}

ul.goods_h_ li .btn_cart_.cart_s_button_ {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 0 10px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  background: #3763ba;
}

ul.goods_h_ li .btn_cart_.cart_s_button_::before {
  position: absolute;
  width: 16px;
  height: 1.5em;
  top: calc(50% - 0.75em);
  margin-left: calc(50% - 80px);
  vertical-align: top;
  background: url(../../img/usr/btn_cart_sp.png) center center / 15.5px auto no-repeat;
  content: "";
}

div.goods_h_tile_ a {
  border: 1px solid #eee;
}
*/
/* --------------------------------------------------------------------
  関連商品
--------------------------------------------------------------------- */
div.title_block_ {
  max-width: none;
  margin: 0 -8px 20px;
  padding: 8px 20px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #707070;
}

.page-goods .accessory_list_ .common_headline2_ {
  max-width: none;
  margin: 0 -8px 20px;
  padding: 8px 20px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #707070;
}

.accessory_list_ .g_price_::after {
  content: none;
}

.accessory_list_ .goods_,
.togetherlist_ .goods_ {
  padding-bottom: 10px;
}

.category-list-content {
  display: flex;
}

.category-name {
  display: grid;
  margin-left: 10px;
  width: 60%;
  align-content: center;
  word-break: break-all;
}

.genre-list-content {
  display: flex;
}

.genre-name {
  display: grid;
  margin-left: 10px;
  width: 60%;
  align-content: center;
  word-break: break-all;
}

/* --------------------------------------------------------------------
  買い物かごメッセージ一覧
--------------------------------------------------------------------- */
.goods_agree_list_modal_ {
  position: fixed;
  overflow-y: auto;
  text-align: left;
  top: 70px !important;
  font-size: 12px;
}

.goods_agree_list_modal_ .ui-dialog-title {
  font-size: 16px;
}

.goods_agree_list_modal_ .ui-dialog-content {
  font-size: 14px;
}

.goods_agree_list_modal_ .agree_list_goods_ {
  width: 30%;
}

.goods_agree_list_modal_ .agree_list_name_ {
  width: 30%;
}

.goods_agree_list_modal_ .agree_list_msg_ {
  width: 40%;
}

/* --------------------------------------------------------------------
  タブ表示 2025.11.14 mod F1 100002
--------------------------------------------------------------------- */
.cartvariation_ {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* タブナビゲーション */
.tab-navigation {
 /* display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;*/
}

.tab-title {
  font-weight: bold;
  margin-right: 20px;
  padding: 10px 0;
  color: #333;
}

.tab-button {
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  height: 32px;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--borderColor);
  white-space: nowrap;
}

.tab-button:hover {
  color: #333;
  background-color: #f5f5f5;
}

.tab-button.active {
  color: #007bff;
  border-bottom-color: #007bff;
  font-weight: bold;
}

.product-info {
  display: none;
  margin-bottom: 20px;
  padding: 20px;
  /*background-color: #f8f9fa;*/
  border-radius: 8px;
}

.product-info.active {
  display: block;
}

.product-info h3 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 24px;
  font-weight: bold;
}

.product-info img {
  max-width: 300px;
  height: auto;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  /*box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.goodscomment7_ {
  margin-top: 15px;
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  color: #555;
  line-height: 1.6;
}

.formlist_.goods_.StyleB_Frame_.variation_ {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.formlist_.goods_.StyleB_Frame_.variation_ th,
.formlist_.goods_.StyleB_Frame_.variation_ td {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid #ddd;
}

.formlist_.goods_.StyleB_Frame_.variation_ th {
  background-color: #f8f9fa;
  font-weight: bold;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 10;
}

.formlist_.goods_.StyleB_Frame_.variation_ tbody tr {
  background-color: #fff;
}

.formlist_.goods_.StyleB_Frame_.variation_ tbody tr.hover-group {
  background-color: #e8f4f8 !important;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: table-row-group;
}

.quantity-input {
  width: 60px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  /*text-align: center; 中央寄せ解除*/
}

.quantity-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.btn_cart_.cart_s_button_.btn-cart-styleb {
  display: inline-block;
  padding: 12px 30px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn_cart_.cart_s_button_.btn-cart-styleb:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .product-info {
  padding: 15px;
  }
  
  .product-info h3 {
  font-size: 20px;
  }
  
  .product-info img {
  /*max-width: 100%;*/
  }
  
  .formlist_.goods_.StyleB_Frame_.variation_ {
  font-size: 12px;
  }
  
  .formlist_.goods_.StyleB_Frame_.variation_ th,
  .formlist_.goods_.StyleB_Frame_.variation_ td {
  padding: 8px 4px;
  }
  
  .tab-button {
  padding: 8px 15px;
  font-size: 14px;
  }
  
  .quantity-input {
  width: 50px;
  }
}
