﻿@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: 8px;
}

.table th {
  font-weight: normal;
  background-color: #f8f8f8;
  width: 35%;
  text-align: left;
}

.table td {
  background-color: #fff;
}

/* ----テキストカラー----*/

.text-muted {
  color: #777;
}

.text-warning {
  color: #8a6d3b;
}

.text-danger {
  color: #a94442;
}

.default-price {
  text-decoration: line-through;
}

.net-price {
  font-size: 14px;
}

.exchange-price {
  color: #555;
}

/* ----パネル---- */

.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;
}

/* ----ページャー---- */

.pagination {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 65px;
}

.pagination .pager-previous,
.pagination .pager-next {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 55px;
  height: 38px;
  border-radius: 2px;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  background: #F5F5F5 url(../../img/usr/common/arrow_prev03.png) no-repeat center / 7px;
}

.pagination .pager-next {
  left: auto;
  right: 0;
  background-image: url(../../img/usr/common/arrow_next03.png);
}

.pagination  li {
  margin: 0 3px;
}

.pagination li.hide {
  display: none;
}

.pagination li.pager-bw {
  position: relative;
  padding: 0 0 0 16px;
  margin: 0 3px 0 0;
}

.pagination li.pager-bw::before {
  content: '...';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  padding: 7px 0 0;
}

.pagination li.pager-current + li.pager-bw {
  padding: 0 16px 0 0;
  margin: 0 0 0 3px;
}

.pagination li.pager-current + li.pager-bw::before {
  left: auto;
  right: 0;
}

.pagination li:not(.pager-previous):not(.pager-next) a,
.pagination li:not(.pager-previous):not(.pager-next) span {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: #FFF;
  border: 1px solid #DEDEDE;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
}

.pagination li.pager-current span {
  background: #DEDEDE !important;
}

/* ----画像センタリング配置---- */

.img-center {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-center img {
  text-align: center;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}

/* ----ツールチップ---- */

.balloontip {
  min-width: 20px;
  max-width: 100%;
  padding: 10px;
  border-radius: 6px;
  opacity: 1;
  z-index: 32767;
  text-align: left;
  font-size: 12px;
  border: 1px solid #8D075C;
  box-shadow: 0px 4px 12px rgb(37 28 41 / 6%);
  color: #AA0046;
  font-weight: bold;
  background: #fff;
}

/* ----ドロップダウン---- */

.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;
}

/* ----モーダルダイアログ---- */

.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 20px;
  width: 100%;
  max-width: 600px;
  z-index: 10001;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: bold;
  border-bottom: none;
  line-height: 1;
  background-color: #F0F0F0;
}

.modal-content {
  background: #fff;
}

.modal-body {
  padding: 10px;
}

.modal-body p:not(:last-child) {
  margin-bottom: 10px;
}

.modal-body li {
  border-bottom: 1px solid #E8E8E8;
}

.modal-body li a {
  display: inline-block;
  color: #AA0046;
  padding: 12px;
}

.modal-footer {
  padding: 0 10px 20px;
}

.modal-footer .btn {
  margin-top: 5px;
  width: 100%;
  color: #AA0046;
  border: solid 1px #8D075C;
  background-color: #FFF;
  border-radius: 30px;
  padding: 8px 0;
}

.modal-close {
  display: block;
  width: 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

/* ----ヘッダー警告---- */

.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;
}

/* ----レビュー---- */

.star-base {
  float: left;
  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;
}

.star-select-link {
  color: #66f;
  float: left;
  margin-left: 5px;
}

/* ----注文ステータス---- */

.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 {
  height: auto;
  min-height: 50px;
}

.status-message,
.status-percentage {
  text-align: center;
}

.status-message {
  font-size: 12px;
  margin-top: 5px;
}

.status-percentage {
  color: #031241;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

[class^="status-progress"] {
  display: block;
  position: relative;
  width: 96%;
  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: 100%;
}

.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: 40px;
  margin: 40px auto 0;
}
.status-progresbar-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #dedede;
  height: 3px;
  border-radius: 20em;
}
.status-progresbar-item {
  text-align: center;
  position: relative;
  margin: auto;
  width: calc(100% / 4);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.status-progresbar-item::before {
  content: "";
  display: inline-block;
}
.status-progresbar-item::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  left: 0;
  margin: auto;
  width: 15px;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: #dedede;
}
.status-progresbar-list:not(.last-all-completed) .status-progresbar-item.last-completed+.status-progresbar-item::before,
.status-progresbar-list:not(.last-all-completed) .status-progresbar-item.last-completed~.status-progresbar-item::before {
  background-color: rgb(212 127 162);
}
.status-progresbar-item:not(.last-completed)+.status-progresbar-item .status-progresbar-description,
.status-progresbar-item .status-progresbar-description {
  color: #dedede;
  font-size: 0.8em;
  margin-top: 15px;
}
.status-progresbar-list:not(.last-all-completed) .status-progresbar-item.status-progresbar-completed.last-completed::before {
  background-color: #AA0046;
}
.status-progresbar-list:not(.last-all-completed) .status-progresbar-item.status-progresbar-completed.last-completed .status-progresbar-description {
  color: #aa0046;
  font-size: 1.2em;
  font-weight: bold;
}
.status-progresbar-item.status-progresbar-completed::after,
.status-progresbar-item:not(.status-progresbar-completed)+.status-progresbar-item::after {
  display: none;
}
@media (max-width: 800px) {
  .status-progresbar-list:not(.last-all-completed) .status-progresbar-item.status-progresbar-completed.last-completed .status-progresbar-description {
    font-size: 0.9em;
  }
}

/* ----ホワイトスペース制御----*/

.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;
}

.show {
  display: block;
}
