﻿@charset "UTF-8";

/* ----テーブル---- */

.table,
.table td,
.table th {
  border-collapse: collapse;
  border: 1px solid #c8c8c8;
}

.table {
  table-layout: fixed;
  width: 100%;
}

.table td,
.table th {
  padding: 5px;
}

.table th {
  font-weight: normal;
  background-color: #f8f8f8;
  width: 35%;
  text-align: left;
}

.table td {
  background-color: #fff;
}

/* ----パネル---- */

.panel {
  padding: 10px;
  overflow: hidden;
  border: solid 1px #dcdcdc;
  background: #fff;
}

/* ----バッジ---- */

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  background-color: #777;
}

.badge:empty {
  display: none;
}

/* ----ページャー---- */

.pager {
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 20px 0;
  overflow: hidden;
}

.pager>* {
  display: inline-block;
  vertical-align: top;
}

.pager-scope {
  display: none;
}

.block-goods-list-naviframe--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 25px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 3px;
}

.pager-total {
  text-align: center;
  margin-bottom: 38px;
  font-size: 14px;
  line-height: 1.5;
}

.pager-total .pager-count span {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.01em;
  padding-right: 2px;
}

.pagination>li a {
  display: block;
  min-width: 28px;
  font-size: 12px;
  font-weight: 500;
  line-height: 28px;
}

.pager-first,
.pager-last {
  display: none;
}

.pagination .pager-previous a,
.pagination .pager-next a {
  color: #CE1032;
  border: 1px solid #CE1032;
  padding: 13px 26px 13px 27px;
  border-radius: 3px;
  position: relative;
}

.pagination .pager-next a::before,
.pagination .pager-previous a::before {
  font-size: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pagination .pager-next a::before {
  content: "次へ";
  left: 11px;
}

.pagination .pager-previous a::before {
  content: "前へ";
  right: 11px;
}

.pagination .pager-next a::after,
.pagination .pager-previous a::after {
  content: "";
  width: 8px;
  height: 9px;
  display: block;
  background-size: 9px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.pagination .pager-next a::after {
  background-image: url(../../img/usr/common/pager-next-arrow.png);
  right: 8px;
}

.pagination .pager-previous a::after {
  background-image: url(../../img/usr/common/pager-previous-arrow.png);
  left: 8px;
}

.pager-current {
  color: #CE1032;
  background-color: #FCF4F4;
  min-width: 28px;
  padding: 8px 0;
  line-height: 1;
  font-size: 12px;
  border-radius: 3px;
  font-weight: bold;
}

.pagination .pager-previous.disabled a,
.pagination .pager-next.disabled a {
  color: #888;
  border-color: #888;
  pointer-events: none;
}

.pagination .pager-previous.disabled a::after,
.pagination .pager-next.disabled a::after {
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #888;
  margin-top: -3px;
  content: "";
  background: none;
}

.pagination .pager-previous.disabled a::after {
  border-left: 1px solid #888;
  margin-right: 7px;
  transform: rotate(-45deg);
}

.pagination .pager-next.disabled a::after {
  border-right: 1px solid #888;
  margin-left: 7px;
  transform: rotate(45deg);
}

/* ----ツールチップ---- */

.balloontip {
  min-width: 20px;
  max-width: 100%;
  padding: 10px;
  border-radius: 6px;
  opacity: 1;
  z-index: 32767;
  text-align: left;
  font-size: 12px;
  color: #fff;
  background: #333;
}

/* ----ドロップダウン---- */

.dropdown {
  z-index: 11000;
}

.dropdown li {
  background: #444;
}

.dropdown li span {
  display: block;
  padding: 13px 15px;
  margin: 0;
  text-decoration: none;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

.dropdown li span:hover {
  background: #616d0b;
}

/* ----モーダルダイアログ---- */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 10000;
}

.modal-overlay-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 10002;
}

.modal-alert {
  padding: 0 10px;
  width: 100%;
  max-width: 600px;
  z-index: 10003;
}

.modal-dialog {
  padding: 0 10px;
  width: 100%;
  max-width: 600px;
  z-index: 10000;
}

.modal-body {
  padding: 10px;
}

.modal-body p {
  margin-bottom: 10px;
}

.modal-footer {
  padding: 0 10px 10px;
}

.modal-footer .btn {
  margin-top: 5px;
  width: 100%;
}

/* ----ヘッダー警告---- */

.header-warning {
  position: relative;
  padding: 10px;
  background: #fffacd;
  border-bottom: 1px solid #b0c4de;
}

.header-warning-contents {
  display: block;
  padding-right: 18px;
  text-align: center;
  background: transparent;
}

.header-warning-close {
  display: block;
  position: absolute;
  width: 18px;
  cursor: pointer;
  font-weight: bold;
  top: 10px;
  right: 10px;
  background: transparent;
}

/* ----検索エンジン向けH1タグ---- */

.optimaized-h1 {
  margin: 0;
  padding: 0;
  font-size: 10px;
}

/* ----ホワイトスペース制御----*/

.white-space-pre-wrap {
  white-space: pre-wrap;
}

/* ----カテゴリ・ジャンルツリー----*/

.expand-tree-open i:before {
  content: "\f068";
}

/* ----Google reCAPTCHAロゴ位置---- */
.grecaptcha-badge {
  margin-bottom: 60px;
}

/* ---- !!!! ここより下にスタイルを追加しないこと !!!! */

/* ----表示・非表示---- */

.hidden {
  display: none !important;
}

.show {
  display: block !important;
}