﻿@charset "UTF-8";

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--black1);
  word-break: break-word;
}

a {
  color: var(--black1);
}

input[name="pwd_display"] {
  margin-top: -5px;
}

.page-estimate input[name="pwd_display"] {
  margin-top: 0;
}

h1,
.h1 {
  margin: 0 0 20px;
  padding: 16px 0;
  font-size: 32px;
  font-weight: bold;
  color: var(--black1);
  border: 0;
}

h2,
.h2 {
  margin: 0 0 24px;
  padding: 12px 0;
  font-size: 24px;
  font-weight: bold;
  color: var(--black1);
}

h3,
.h3 {
  margin: 0 0 24px;
  padding: 12px 0;
  font-size: 20px;
  font-weight: bold;
  color: var(--black1);
}

h4,
.h4 {
  margin: 0;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--black1);
  border-bottom: 0;
}

h5,
.h5 {
  font-size: 14px;
  font-weight: bold;
}

h6,
.h6 {
  font-size: 14px;
  font-weight: 500;
}

.block-goods-list--pager-top {
  display: block;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: var(--black1);
  font-family: "Roboto", sans-serif;
}

.price::after {
  font-size: 12px;
}

.price::after,
.default-price::after {
  content: "税込";
  margin-left: 2px;
  font-weight: 400;
}

.net::after,
.net-price::after,
.default-net::after {
  content: "税抜";
  margin-left: 2px;
  font-size: 12px;
  font-weight: 400;
}

.pager {
  margin: 0;
  padding: 21px 0 32px;
  border-top: 0;
}

.block-goods-list--pager.pager {
}

.pager[class*="-pager-top"] .pagination,
[class*="-pager-top"] > .pager .pagination {
  display: none;
}

[class*="-pager-bottom"] .pager,
.pager[class*="-pager-bottom"] {
  text-align: center;
}

[class*="-pager-bottom"] .pager-total {
  display: none;
}

.pager-total {
  margin-right: 30px;
}

.pager-current {
  /* color: #000; */
}

.pagination > * {
  margin: 0 4px;
  border: 0;
}

.pagination li a {
  /* color: #bbb; */
}

.pagination li.pager-first a,
.pagination li.pager-previous a,
.pagination li.pager-next a,
.pagination li.pager-last a {
  position: relative;
  /* display: block;
  width: 18px;
  height: 21px; */
  font-size: 0;
}

.pagination li.pager-first a::before {
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 6px);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: rotate(-45deg);
  content: "";
}

.pagination li.pager-first a::after {
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% + 2px);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: rotate(-45deg);
  content: "";
}

.pagination li.pager-previous a::before {
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 2px);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: rotate(-45deg);
  content: "";
}

.pagination li.pager-next a::before {
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 2px);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: rotate(45deg);
  content: "";
}

.pagination li.pager-last a::before {
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% + 2px);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: rotate(45deg);
  content: "";
}

.pagination li.pager-last a::after {
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 6px);
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: rotate(45deg);
  content: "";
}

.btn {
  line-height: 1.4;
}

.action .btn {
  border-bottom-width: 1px;
}

.btn-default {
  border: 1px solid var(--black2);
  color: var(--black1);
  background: #fff;
  border-radius: 28px;
  transition: .3s;
}
.btn-default:not(.disabled, [disabled]):hover {
  background-color: var(--blue1);
  color: #fff;
  border-color: var(--blue1);
}

.btn-primary {
  border: 1px solid var(--blue3);
  color: #fff;
  background: var(--blue3);
  border-radius: 28px;
  font-size: 13px;
  font-weight: bold;
  transition: .3s;
}

.btn-primary:not(.disabled, [disabled]):hover {
  background-color: #fff;
  color: var(--blue3);
}

.btn-secondary {
  border: 1px solid #9d9896;
  color: #fff;
  background: #9d9896;
  transition: .3s;
}

.btn-danger {
  color: var(--black2);
  background: var(--gray1);
  border-radius: 28px;
  font-size: 13px;
  font-weight: bold;
  border: none;
  transition: .3s;
}
.btn-danger:not(.disabled, [disabled]):hover {
  opacity: .7;
}

.star-base {
  width: 110px;
  height: 22px;
  background-position: 0 0;
  background-size: 110px 44px;
}

.star-select {
  width: 110px;
  height: 22px;
  background-position: -110px -22px;
  background-size: 110px 44px;
}

.fieldset .form-control {
  padding-left: 24px;
}
