﻿@charset "UTF-8";

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #222;
}

a {
  color: #222;
}

a img {
  transition: opacity 0.3s;
}

a:hover img {
  opacity: 0.8;
}

input[type="checkbox"] {
  width: 21px;
  height: 21px;
  margin-right: 8px;
}

input[name="pwd_display"] {
  margin-top: -5px;
}

.page-estimate input[name="pwd_display"] {
  margin-top: 0;
}

h1,
.h1 {
  margin: 50px 0 32px;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  border: 0;
}

h2,
.h2 {
  margin: 0 0 16px;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #222;
  border: 0;
}

h3,
.h3 {
  margin: 0 0 24px;
  padding: 8px 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #222;
  border-bottom: 1px solid #111;
}

h4,
.h4 {
  margin: 0;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  color: #222;
  border-bottom: 0;
}

h5,
.h5 {
  font-size: 14px;
  font-weight: bold;
}

h6,
.h6 {
  font-size: 14px;
  font-weight: 500;
}

/* ----------------------------------
 フォームパーツ
---------------------------------- */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
	outline: none;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="url"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid #E8E8E7;
  border-radius: 3px;
  background-color: #fff;
  color: #222;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  padding: 0 20px 0 10px;
  border: 1px solid #E8E8E7;
  border-radius: 3px;
  line-height: 46px;
  background-image: url("../../img/usr/common/select_arrow.png");
  background-position: calc(100% - 5px) center;
  -webkit-background-size: 7px 6px;
  background-size: 7px 6px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  background-color: #fff;
  color: #222;
}
input[type="number"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  min-width: 50px;
  min-height: 46px;
  padding: 0 5px;
  border: 1px solid #E8E8E7;
  border-radius: 3px;
  background-color: #fff;
  color: #222;
  box-sizing: border-box;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="url"],
input[type="number"] {
  min-height: 48px;
  margin: 0;
}
input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
label.radio,
label.checkbox,
input[type="radio"],
input[type="radio"] + label,
input[type="checkbox"],
input[type="checkbox"] + label,
select {
  cursor: pointer;
}
input[type="text"][disabled] {
  background: #dcdcdc;
  cursor: not-allowed;
}
/* radio */
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  width: 20px;
  height: 20px;
  margin-bottom: 3px;
  margin-right: 5px;
  border: #CCCCCC 1px solid;
  border-radius: 10px;
  background: #fff;
  position: relative;
  outline: 0;
  transition: 0.3s;
}
input[type="radio"]:before {
  transition: 0.3s;
}
input[type="radio"]:checked {
  border: #CCCCCC 1px solid;
}
input[type="radio"]:before {
  content: "";
  width: 12px;
  height: 12px;
  margin: 0;
  border: #CCCCCC 1px solid;
  border-radius: 6px;
  background: #CCCCCC;
  position: absolute;
  left: calc(50% - 6px);
  top: calc(50% - 6px);
  display: block;
}
input[type="radio"]:checked:before {
  border: #241754 1px solid;
  background: #241754;
}
input[type="radio"]:checked + label {
  color: #241754;
  font-weight: 700;
}
/* checkbox */
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border: 0;
	border-radius: 3px;
  position: relative;
  background: #D5D5D5;
  outline: 0;
  transition: 0.3s;
}
input[type="checkbox"]:before {
  content: "";
  width: 9px;
  height: 6px;
  margin: 0;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  left: calc(50% - 4px);
  top: calc(50% - 4px);
  display: block;
  transition: 0.3s;
}
input[type="checkbox"]:checked {
  background: #241754;
}
input[type="checkbox"] + label {
	font-size: 12px;
  font-weight: bold;
}
.checkbox-wrap label {
	padding: 12px 8px;
	border-radius: 2px;
	font-size: 12px;
	font-weight: bold;
	box-sizing: border-box;
	background: #F5F5F5;
	color: #222;
}
.checkbox-wrap label.checked {
	background: #241754;
	color: #fff;
}

/* ----------------------------------
 Common
---------------------------------- */
img {
  vertical-align: top;
}

.block-goods-list--pager-top {
  display: none;
}

.price {
  color: #222;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pager > * {
  display: block;
}

.count-msg {
	margin-top: 5px;
	font-size: 11px;
	color: #a94442;
	display: block;
}

.form-error {
	margin: 4px 0 0;
	font-size: 11px;
	color: #a94442;
	display: block;
}

.block-goods-list--pager.pager {
  border: 0;
}

.pager[class*="-pager-top"],
[class*="-pager-top"] > .pager {
  display: none;
}

.pager-total {
  display: none;
  margin-right: 30px;
}

.pager-page-count {
  font-family: "Montserrat", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  line-height: 2.0;
  margin-right: auto;
  padding: 3px 0;
}

.pager-current {
  color: #222;
}

.pagination > * {
  margin: 0 2px;
  padding: 0;
  border: 0;
}

.pagination li a {
  display: block;
  width: 44px;
  height: 32px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 32px;
  color: #999;
  text-align: center;
  background: #F5F5F5;
}

.pagination li.pager-current span {
  display: block;
  width: 44px;
  height: 32px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  line-height: 32px;
  color: #FFF;
  text-align: center;
  background: #241754;
}

.pagination li.pager-first,
.pagination li.pager-last {
  margin: 0;
}

.pagination li.pager-previous {
  margin: 0 6px 0 0;
}

.pagination li.pager-next {
  margin: 0 0 0 6px;
}

.pagination li.pager-first a,
.pagination li.pager-previous a,
.pagination li.pager-next a,
.pagination li.pager-last a {
  position: relative;
  width: 46px;
  font-size: 0;
  background: none;
}

.pagination li.pager-first a::before {
  position: absolute;
  top: calc(50% - 4.5px);
  left: 50%;
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #241754;
  border-left: 2px solid #241754;
  transform: rotate(-45deg);
  content: "";
}

.pagination li.pager-first a::after {
  position: absolute;
  top: calc(50% - 4.5px);
  left: calc(50% - 9px);
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #241754;
  border-left: 2px solid #241754;
  transform: rotate(-45deg);
  content: "";
}

.pagination li.pager-previous a::before {
  position: absolute;
  top: calc(50% - 4.5px);
  left: calc(50% - 4.5px);
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #241754;
  border-left: 2px solid #241754;
  transform: rotate(-45deg);
  content: "";
}

.pagination li.pager-next a::before {
  position: absolute;
  top: calc(50% - 4.5px);
  right: calc(50% - 4.5px);
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #241754;
  border-right: 2px solid #241754;
  transform: rotate(45deg);
  content: "";
}

.pagination li.pager-last a::before {
  position: absolute;
  top: calc(50% - 4.5px);
  right: 50%;
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #241754;
  border-right: 2px solid #241754;
  transform: rotate(45deg);
  content: "";
}

.pagination li.pager-last a::after {
  position: absolute;
  top: calc(50% - 4.5px);
  right: calc(50% - 9px);
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #241754;
  border-right: 2px solid #241754;
  transform: rotate(45deg);
  content: "";
}

.action .btn {
	min-width: 160px;
	padding: 8px 24px;
	margin-top: 10px;
	border-bottom-width: 1px;
  border-radius: 9999px;
	font-size: 15px;
}

.btn-default {
  border: 1px solid #DEDEDE;
  color: #241754;
  font-weight: 500;
  background: #fff;
  border-radius: 9999px;
}

.btn-primary {
  border: 1px solid #241754;
  color: #FFF;
  font-weight: bold;
  background: #241754;
  border-radius: 9999px;
}

.btn-secondary {
  border: 1px solid #241754;
  color: #241754;
  font-weight: bold;
  background: #fff;
  border-radius: 9999px;
}

.btn-danger {
  border: 1px solid #CE2828;
  color: #CE2828;
  background: #FFF5F5;
  border-radius: 9999px;
}

.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-group {
  border-top: 1px solid #EEEDED;
  border-left: 1px solid #EEEDED;
  border-right: 1px solid #EEEDED;
}

.fieldset .form-group:last-of-type {
  border-bottom: 1px solid #EEEDED;
}

.fieldset .form-label {
  padding: 12px 16px;
  font-weight: bold;
  background: #F5F5F5;
}

.fieldset .constraint {
  background: #F5F5F5;
}

.fieldset .form-control {
  padding: 12px 16px;
  border-left: 1px solid #EEEDED;
}

.legend {
  font-size: 18px;
  font-weight: 500;
}

#switchObject {
  display: none !important;
}

/* ----------------------------------
 購入フローステップ
---------------------------------- */
.block-order-flow--step {
  margin: 30px auto 23px;
  padding: 0;
  text-align: center;
}
.block-order-flow--step ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-order-flow--step1,
.block-order-flow--step2,
.block-order-flow--step3,
.block-order-flow--step4,
.block-order-flow--step5 {
  min-width: 200px;
  height: 80px;
  padding: 2px 0 0 0;
  margin: 0;
  border-bottom: #8A8A8A 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: none;
  font-size: 15px;
  color: #8A8A8A;
}
.block-order-flow--step1:before,
.block-order-flow--step2:before,
.block-order-flow--step3:before,
.block-order-flow--step4:before,
.block-order-flow--step5:before {
  content: '';
  width: 100%;
  height: 16px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.block-order-flow--step1:before {
  content: 'STEP.1';
}
.block-order-flow--step2:before {
  content: 'STEP.2';
}
.block-order-flow--step3:before {
  content: 'STEP.3';
}
.block-order-flow--step4:before {
  content: 'STEP.4';
}
.block-order-flow--step5:before {
  content: 'STEP.5';
}
.block-order-flow--step1:after,
.block-order-flow--step2:after,
.block-order-flow--step3:after,
.block-order-flow--step4:after,
.block-order-flow--step5:after {
  content: '';
  width: 16px;
  height: 16px;
  border: none;
	border: #8A8A8A 1px solid;
  border-radius: 16px;
  position: absolute;
  top: auto;
  left: calc(50% - 8px);
  right: auto;
  bottom: -8.5px;
  background: #fff;
	box-sizing: border-box;
}
.block-order-flow--step-current {
  border-bottom: #241754 3px solid;
  background: none;
  font-weight: bold;
  color: #241754;
	position: relative;
	bottom: -1px;
}
.block-order-flow--step-current:after {
  border-left: none;
  border-color: #241754;
  background: #241754;
}

/* ----------------------------------
 モーダル
---------------------------------- */
.modal-overlay {
  opacity: 0.7;
}
.modal-dialog {
  max-height: 80vh;
}
.modal-content {
  border-radius: 4px;
  overflow: hidden;
  background: #FFF
}
.modal-header {
  position: relative;
  min-height: 52px;
  padding: 17px 42px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  color: #000;
  background: #EEEEEE;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  background: #000;
  font-size: 0;
  z-index: 1;
}
.modal-close::before {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 6px);
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
  background: #FFF;
  content: "";
}
.modal-close::after {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 6px);
  width: 12px;
  height: 2px;
  transform: rotate(-45deg);
  background: #FFF;
  content: "";
}