﻿@charset "UTF-8";

/* ----テーブル---- */

.table,
.table td,
.table th {
  border-collapse: collapse;
  border: 1px solid #c8c8c8;
}

.table td,
.table th {
  padding: 10px;
}

.table th {
  font-weight: bold;
  background-color: #f8f8f8;
}


/* ----テキストカラー----*/

.text-muted {
  color: #777;
}

.text-warning {
  color: #8a6d3b;
}

.text-danger {
  color: #a94442;
}
.exchange-price {
  color: #555;
}

/* ----プロモーションメッセージ--- */

.promotion-criteria,
.promotion-benefit {
  color: #f00;
  font-weight: bold;
}

/* ----商品説明リスト---- */

.goods-detail-description {
  display: table;
  width: 100%;
}

.goods-detail-description dt {
  display: table-cell;
  width: 100px;
  font-weight: bold;
}

.goods-detail-description dd {
  display: table-cell;
}

/* ----パネル---- */

.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: 2.0rem 0;
}

.pager > * {
  display: inline-block;
  vertical-align: top;
}

.pager-scope {
  display: inline-block;
  padding: 3px;
  margin-right: 5px;
}

.pager-total {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.pager-total .pager-count {
  font-size: 1.3rem;
  font-weight: 500;
}
.pager-total .pager-count > span {
  font-family: var(--font-jost);
  font-size: 2.0rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.pagination-frame {
  position: relative;
  padding: 1.0rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.pagination-frame::before,
.pagination-frame::after {
  display: block;
  content: '';
  position: absolute;
  left: calc((100% - var(--fullWindowSize)) / 2);
  right: calc((100% - var(--fullWindowSize)) / 2);
  height: 1px;
  background: #e8e8e8;
}
.pagination-frame::before { top: 0; }
.pagination-frame::after { bottom: 0; }

.pagination {
  display: flex;
  gap: 1px;
}
.pagination-num {
  gap: 0 1.5rem;
}

.pagination li a,
.pagination li span {
  position: relative;
  width: 2.4rem;
  height: 4.0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--font-jost);
}

.pagination > .disabled {
  color: #777;
}
.pager-current {
  color: var(--color-red);
}

.pager-first a:before,
.pager-first a:after,
.pager-previous a:before,
.pager-last a:before,
.pager-last a:after,
.pager-next a:before {
  display: block;
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  left: calc(50% - 0.2rem);
  top: calc(50% - 0.25rem);
}
.pager-first a:before,
.pager-first a:after,
.pager-previous a:before {
  transform: rotate(-135deg);
}
.pager-last a:before,
.pager-last a:after,
.pager-next a:before {
  transform: rotate(45deg);
}
.pager-first a:before {
  left: calc(50% - 0.2rem - 2px);
}
.pager-first a:after {
  left: calc(50% - 0.2rem + 2px);
}
.pager-last a:before {
  left: calc(50% - 0.2rem - 2px);
}
.pager-last a:after {
  left: calc(50% - 0.2rem + 2px);
}

.block-goods-list--pager-bottom {
  margin-top: 4rem;
  padding: 1px;
}
/* ----画像センタリング配置---- */

.img-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-center img {
  flex-shrink: 0;
  text-align: center;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}

/* ----画像幅調整---- */
.img-width-enlarge img {
  width: 100%;
}

/* ----ツールチップ---- */

.balloontip {
  min-width: 20px;
  padding: 10px;
  border-radius: 6px;
  opacity: 1;
  z-index: 32767;
  text-align: left;
  font-size: 12px;
  border: 1px solid rgb(119, 119, 119);
  box-shadow: rgb(85, 85, 85) 4px 4px 4px;
  color: rgb(255, 255, 255);
  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 {
  width: 400px;
  z-index: 10003;
}

.modal-dialog {
  width: 600px;
  z-index: 10001;
}

.modal-dialog,
.modal-alert {
  position: fixed;
  inset: 0;
  height: fit-content;
  margin: auto;
}

.modal-header {
  padding: 15px 20px 15px;
  font-size: 14px;
  font-weight: bold;
  clear: both;
  border-bottom: none;
  line-height: 1;
  color: #fff;
  background-color: #333;
}

.modal-content {
  background: #eee;
}

.modal-body {
  padding: 20px;
}

.modal-body p {
  margin-bottom: 10px;
}

.modal-body li {
  border-bottom: 1px dotted #444;
}

.modal-body li a {
  padding: 12px;
  color: #4da7ba;
  display: flex;
  max-width: 560px;
  font-size: 16px;
}
.modal-body li a i {
  margin: 0 10px 0 auto;
  color: #444;
  font-size: 16px;
}

.modal-body li a:hover {
  text-decoration: none;
}

.modal-body li a:hover i {
  color: #4da7ba;
  text-decoration: none;
}

.modal-footer {
  padding: 0 10px 15px;
}

.modal-alert .modal-footer {
  text-align: center;
}

.modal-alert .modal-footer input {
  width: 40%;
}

.modal-close {
  display: block;
  width: 18px;
  cursor: pointer;
  float: right;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.modal-dialog .modal-footer {
  text-align: center;
}

.modal-dialog .modal-footer .btn {
  min-width: 150px;
  margin-right: 5px;
}

/* ----ヘッダー警告---- */

.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;
  font-size: 10px;
}

/* ----レビュー---- */

.star-base {
  cursor: pointer;
  width: 60px;
  height: 15px;
  background: url("../../img/usr/user_review/star.png");
}

.star-select {
  width: 60px;
  height: 15px;
  background: url("../../img/usr/user_review/star.png");
  background-repeat: no-repeat;
}

/* ----注文ステータス---- */

.status-order,
.status-cancel,
.status-income,
.status-reserve,
.status-rship,
.status-ship,
.status-verify,
.status-return,
.status-status_,
.status-status_1,
.status-status_2,
.status-status_3,
.status-status_4,
.status-status_9 {
  width: 385px;
  height: auto;
  min-height: 50px;
  border: #ccc solid 1px;
  padding: 5px 0;
}

.block-purchase-history-cardupdate--status .status-order,
.block-purchase-history-cardupdate--status .status-cancel,
.block-purchase-history-cardupdate--status .status-income,
.block-purchase-history-cardupdate--status .status-reserve,
.block-purchase-history-cardupdate--status .status-rship,
.block-purchase-history-cardupdate--status .status-ship,
.block-purchase-history-cardupdate--status .status-verify,
.block-purchase-history-cardupdate--status .status-return,
.block-purchase-history-cardupdate--status .status-status_,
.block-purchase-history-cardupdate--status .status-status_1,
.block-purchase-history-cardupdate--status .status-status_2,
.block-purchase-history-cardupdate--status .status-status_3,
.block-purchase-history-cardupdate--status .status-status_4,
.block-purchase-history-cardupdate--status .status-status_9 {
  border: none;
  margin: 0 auto;
}

.status-message,
.status-name {
  display: block;
  padding: 0 5px;
}

.status-message {
  width: 90%;
  font-size: 12px;
  padding: 4px 0;
  margin: auto;
}

.status-name {
  color: #031241;
  font-size: 24px;
  text-align: center;
}

[class^="status-progress"] {
  display: block;
  position: relative;
  width: 90%;
  height: 14px;
  margin: 0 auto;
  background: #ccc;
}

[class^="status-progress"]:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  border-right: #031241 solid 4px;
  background: #1e5799;
}

.status-progress-20:after {
  width: 20%;
}

.status-progress-40:after {
  width: 40%;
}

.status-progress-60:after {
  width: 60%;
}

.status-progress-80:after {
  width: 80%;
}

.status-progress-100:after {
  width: 100%;
}

.status-reserve .status-message,
.status-cancel .status-message,
.status-return .status-message,
.status-status_ .status-message,
.status-status_1 .status-message,
.status-status_2 .status-message,
.status-status_3 .status-message,
.status-status_4 .status-message,
.status-status_9 .status-message {
  width: 90%;
}

.status-reserve [class^="status-progress"]:after {
  border-right: #ea7500 solid 4px;
  background: #f79800;
}

.status-return [class^="status-progress"]:after {
  border-right: #028900 solid 4px;
  background: #00ab0b;
}

.status-progresbar {
  display: block;
  position: relative;
  width: 90%;
  height: 60px;
  margin: 0 auto;
}

.status-progresbar-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #ccc;
  height: 7px;
}

.status-progresbar-item {
  flex: 1;
  padding: 7px;
  text-align: center;
  background-color: #ccc;
  border: solid #031241;
  border-width: 1px 0 1px 1px;
  position: relative;
}

.status-progresbar-item:last-child {
  border: solid #031241;
  border-width: 1px;
  position: relative;
}

.status-progresbar-completed {
  background-color: #1e5799;
  color: white;
}

.status-progresbar-completed {
  background-color: #1e5799;
  color: white;
}

/* ステータス説明テキストのスタイル */
.status-progresbar-description {
  position: absolute;
  right: -15px;
  bottom: -14px;
  font-size: 12px;
  color: #666;
  box-sizing: border-box;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 7px;
}

/* ----ホワイトスペース制御----*/

.white-space-pre-wrap {
  white-space: pre-wrap;
}

/* ----Google reCAPTCHAロゴ位置---- */
.grecaptcha-badge {
  margin-bottom: 80px;
}

/* ---- !!!! ここより下にスタイルを追加しないこと !!!! */

/* ----表示・非表示---- */

.hidden {
  display: none;
}

.show {
  display: block;
}
