@charset "UTF-8";
.badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: calc(-1 * 0.75rem);
  right: calc(-1 * 0.75rem);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background-color: #c72937;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #a0a0a0;
  border-radius: 3px;
  background-color: #ffffff;
  color: #171717;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  padding: .25em 1em;
}

.button:focus {
  outline: none;
}

.button:hover {
  background-color: #f3f3f3;
}

.button.m-readonly, .button:disabled {
  border-color: #d2d1d1;
  color: #a0a0a0;
  pointer-events: none;
}

.button.m-fill {
  border-color: transparent;
  background-color: #555252;
  color: #ffffff;
}

.button.m-fill svg {
  fill: #ffffff;
}

.button.m-fill:hover {
  background-color: #171717;
}

.button.m-warning-fill {
  border-color: transparent;
  background-color: #c72937;
  color: #ffffff;
}

.button.m-warning-fill svg {
  fill: #ffffff;
}

.button.m-warning-fill:hover {
  background-color: #ad0e30;
}

.button.m-warning-border {
  border-color: #c72937;
  background-color: #fdeef1;
  color: #c72937;
}

.button.m-warning-border svg {
  fill: #c72937;
}

.button.m-warning-border:hover {
  border-color: transparent;
  background-color: #ad0e30;
  color: #ffffff;
}

.button.m-warning-border:hover svg {
  fill: #ffffff;
}

.button .icon:not(:first-child) {
  margin-left: .375em;
}

.button .icon:not(:last-child) {
  margin-right: .375em;
}

.button.m-full {
  width: 100%;
}

.button.m-size-xl {
  min-height: 60px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 16px;
}

.button.m-size-l {
  min-height: 40px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 16px;
}

.button.m-size-m {
  min-height: 32px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 14px;
}

.button.m-size-s {
  min-height: 28px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 12px;
}

.button.m-warning-fill.m-size-m, .button.m-warning-fill.m-size-l, .button.m-warning-fill.m-size-xl {
  font-weight: bold;
}

.button + .button {
  margin-left: 20px;
}

.delete-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  right: .5em;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 99px;
  background-color: #f7f5f4;
  cursor: pointer;
  outline: none;
}

.delete-button:hover, .delete-button:focus {
  border: none;
  outline: none;
}

.delete-button:hover {
  background-color: #e8e8e8;
}

.float-button-container {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 99;
}

.float-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 55px;
  height: 55px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 10px;
  cursor: pointer;
  outline: none;
}

.float-button:hover {
  border: none;
}

.float-button svg {
  fill: #ffffff;
}

.float-button-text {
  font-size: 10px;
}

.float-button-text.m-small {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media screen and (max-width: 767px) {
  .mypage-button-container {
    bottom: 75px;
  }
}

.input {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  padding: 0 0.5em;
  border-width: 1px;
  border-style: solid;
  border-color: #cccbcb;
  border-radius: 3px;
  font-size: 1rem;
  width: 200px;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .input {
    font-size: 16px;
  }
}

.input.m-readonly {
  border-color: #d2d1d1;
  background-color: #f3f3f3;
  color: #a9a8a8;
  pointer-events: none;
}

.input.m-error {
  border-color: #d2d1d1;
  background-color: #fdeef1;
}

.input.m-short {
  width: 100px;
}

.input.m-medium {
  width: 270px;
}

.input.m-long {
  width: 350px;
}

.input.m-full {
  width: 100%;
}

.input:focus {
  outline: none;
  border: 1px solid #eab746;
}

.input::-webkit-input-placeholder {
  color: #a9a8a8;
}

.input:-ms-input-placeholder {
  color: #a9a8a8;
}

.input::-ms-input-placeholder {
  color: #a9a8a8;
}

.input::placeholder {
  color: #a9a8a8;
}

.textarea {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  padding: 0 0.5em;
  border-width: 1px;
  border-style: solid;
  border-color: #cccbcb;
  border-radius: 3px;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .textarea {
    font-size: 16px;
  }
}

.textarea.m-readonly {
  border-color: #d2d1d1;
  background-color: #f3f3f3;
  color: #a9a8a8;
  pointer-events: none;
}

.textarea.m-error {
  border-color: #d2d1d1;
  background-color: #fdeef1;
}

.textarea:focus {
  outline: none;
  border: 1px solid #eab746;
}

.textarea::-webkit-input-placeholder {
  color: #a9a8a8;
}

.textarea:-ms-input-placeholder {
  color: #a9a8a8;
}

.textarea::-ms-input-placeholder {
  color: #a9a8a8;
}

.textarea::placeholder {
  color: #a9a8a8;
}

.select {
  display: inline-block;
  position: relative;
  width: 300px;
  height: 40px;
}

.select::after {
  width: 1rem;
  height: 1rem;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #171717;
  content: "";
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  position: absolute;
  top: calc((100% - 0.5rem * 1.414) / 2);
  right: calc((0.5rem / 2) + 0.5em);
  width: 0.5rem;
  height: 0.5rem;
  border-width: 0 2px 2px 0;
  border-color: #cccbcb;
  pointer-events: none;
}

.select.m-full {
  width: 100%;
}

.select.m-full select {
  width: 100%;
}

select {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  padding: 0 0.5em;
  border-width: 1px;
  border-style: solid;
  border-color: #cccbcb;
  border-radius: 3px;
  font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  padding-right: calc(0.5em * 2 + 1rem);
  background-color: #ffffff;
  cursor: pointer;
}

select:focus {
  outline: none;
  border: 1px solid #eab746;
}

@media screen and (max-width: 767px) {
  select {
    font-size: 16px;
    color: #171717;
  }
}

select.m-readonly {
  border-color: #d2d1d1;
  background-color: #f3f3f3;
  color: #a9a8a8;
  pointer-events: none;
}

select.m-error {
  border-color: #d2d1d1;
  background-color: #fdeef1;
}

.check-radios {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .check-radios {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.check-radios.m-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.check-radios.m-vertical .checkbox:not(:last-child),
.check-radios.m-vertical .radio:not(:last-child) {
  margin-right: 0;
}

.checkbox,
.radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .checkbox,
  .radio {
    display: block;
  }
}

.checkbox:not(:last-child),
.radio:not(:last-child) {
  margin-right: 40px;
}

.checkbox > input[type="checkbox"],
.radio > input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  opacity: 0;
}

.checkbox > input[type="checkbox"] + label,
.radio > input[type="radio"] + label {
  display: inline-block;
  position: relative;
  max-width: 100%;
  margin: .75rem 0;
  padding: .125rem;
  overflow-wrap: break-word;
  cursor: pointer;
}

.checkbox.m-check-centered > input[type="checkbox"] + label::before {
  top: calc(50% - (20px / 2));
}

.checkbox.m-check-centered > input[type="checkbox"] + label::after {
  top: calc(50% - (.5rem));
}

.checkbox > input[type="checkbox"].m-readonly {
  pointer-events: none;
}

.checkbox > input[type="checkbox"].m-readonly + label {
  color: #707070;
  pointer-events: none;
}

.checkbox > input[type="checkbox"].m-readonly + label::before {
  border-color: #e8e8e8;
  background-color: #f3f3f3;
}

.checkbox > input[type="checkbox"].m-readonly:checked + label::before {
  background-color: #f3f3f3;
}

.checkbox > input[type="checkbox"].m-readonly:checked + label::after {
  border-color: #a9a8a8;
}

.checkbox > input[type="checkbox"].m-error + label::before {
  background-color: #fdeef1;
}

.checkbox > input[type="checkbox"] + label {
  padding-left: calc(20px + 1em + 2px);
}

.checkbox > input[type="checkbox"] + label::before {
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  top: 0;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: #ffffff;
  content: "";
}

.checkbox > input[type="checkbox"] + label::after {
  display: block;
  position: absolute;
  top: 0.175rem;
  left: calc(.45rem + 2px);
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  width: .5rem;
  height: .75rem;
  border-top-width: 0;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 0;
  border-style: solid;
  border-color: transparent;
  content: "";
}

.checkbox > input[type="checkbox"]:checked + label::before {
  border-color: transparent;
  background-color: #c72937;
}

.checkbox > input[type="checkbox"]:checked + label::after {
  border-color: #ffffff;
}

.checkbox.m-circle > input[type="checkbox"] + label::before {
  border-radius: 999px;
}

.checkbox.m-circle > input[type="checkbox"] + label::after {
  border-color: #e3e1e0;
}

.radio.m-check-centered > input[type="radio"] + label::before {
  top: calc(50% - (20px / 2));
}

.radio.m-check-centered > input[type="radio"] + label::after {
  top: calc(50% - (12px / 2));
}

.radio > input[type="radio"].m-readonly {
  pointer-events: none;
}

.radio > input[type="radio"].m-readonly + label {
  color: #707070;
  pointer-events: none;
}

.radio > input[type="radio"].m-readonly + label::before {
  border-color: #e8e8e8;
  background-color: #f3f3f3;
}

.radio > input[type="radio"].m-readonly:checked + label::before {
  background-color: #f3f3f3;
}

.radio > input[type="radio"].m-readonly:checked + label::after {
  background-color: #a9a8a8;
}

.radio > input[type="radio"].m-error + label::before {
  background-color: #fdeef1;
}

.radio > input[type="radio"] + label {
  padding-left: calc(20px + 10px + 2px);
}

.radio > input[type="radio"] + label::before {
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  top: 0;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 1000px;
  background-color: #ffffff;
  content: "";
}

.radio > input[type="radio"] + label::after {
  display: block;
  position: absolute;
  top: calc((20px - 12px) / 2);
  bottom: auto;
  left: calc(((20px - 12px) / 2) + 2px);
  width: calc(12px);
  height: calc(12px);
  border-radius: 1000px;
  background-color: transparent;
  content: "";
}

.radio > input[type="radio"]:checked + label::before {
  border-color: #cccbcb;
  background-color: #ffffff;
}

.radio > input[type="radio"]:checked + label::after {
  background-color: #c72937;
}

label {
  margin: 0;
}

.label {
  display: inline-block;
  color: #171717;
  font-weight: bold;
  font-size: 1rem;
}

.label:not(:last-child) {
  margin-bottom: 10px;
}

.field.m-horizontal > .field_label > .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .field.m-horizontal > .field_label > .label {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}

.label_item + .label_item {
  margin-left: .75rem;
}

.form-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-style: solid;
  border-color: #d2d1d1;
  border-width: 1px 0 1px 0;
}

.form-section.m-confirm .form-group {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .form-section.m-confirm .form-group {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.form-group + .form-group {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #d2d1d1;
}

.field {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.field + .field {
  margin-top: 1.25rem;
}

.field.m-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .field.m-horizontal {
    display: block;
  }
  .field.m-horizontal .field_label {
    margin-bottom: 10px;
    padding: 0;
  }
}

.field_label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0px;
      flex-basis: 0px;
  padding-top: .75rem;
  text-align: left;
}

.field_label.m-normal {
  padding: 0;
}

.field_body {
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  -ms-flex-preferred-size: 0px;
      flex-basis: 0px;
  margin-left: .75rem;
}

@media screen and (max-width: 767px) {
  .field_body {
    margin-left: 0;
  }
}

.form-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-controls.m-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.form-controls.m-vertical .form-control + .form-control {
  margin-top: .75rem;
}

.form-controls:not(.m-vertical) .form-control + .form-control {
  margin-left: 30px;
}

.form-control {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.field-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .field-columns {
    display: block;
  }
}

.field-column {
  width: calc(50% - 15px);
}

@media screen and (max-width: 767px) {
  .field-column {
    width: 100%;
  }
  .field-column + .field-column {
    margin-top: 1.25rem;
  }
}

.field-column:first-child {
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .field-column:first-child {
    margin-right: 0;
  }
}

.field-column:not(:first-child) {
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .field-column:not(:first-child) {
    margin-left: 0;
  }
}

.field-validation-error {
  display: block;
  color: #c72937;
  font-weight: normal;
}

.field-validation-error:not(:first-child) {
  margin-top: 5px;
}

.field-validation-error:not(:last-child) {
  margin-bottom: 5px;
}

svg {
  width: 1rem;
  height: 1rem;
  fill: #171717;
}

.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  font-size: 1rem;
}

.icon.m-size-1 {
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
  font-size: 2.25rem;
}

.icon.m-size-1 svg {
  width: 2.25rem;
  height: 2.25rem;
}

.icon.m-size-2 {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  font-size: 1.75rem;
}

.icon.m-size-2 svg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon.m-size-3 {
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.25rem;
  min-height: 2.25rem;
  font-size: 1.5rem;
}

.icon.m-size-3 svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon.m-size-4 {
  width: 1.75rem;
  min-width: 1.75rem;
  height: 1.75rem;
  min-height: 1.75rem;
  font-size: 1.25rem;
}

.icon.m-size-4 svg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon.m-size-5 {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  font-size: 1rem;
}

.icon.m-size-5 svg {
  width: 1rem;
  height: 1rem;
}

.icon.m-size-6 {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  min-height: 1rem;
  font-size: .825rem;
}

.icon.m-size-6 svg {
  width: .825rem;
  height: .825rem;
}

.icon.m-size-7 {
  width: .875rem;
  min-width: .875rem;
  height: .875rem;
  min-height: .875rem;
  font-size: .75rem;
}

.icon.m-size-7 svg {
  width: .75rem;
  height: .75rem;
}

.icon.m-size-8 {
  width: .75rem;
  min-width: .75rem;
  height: .75rem;
  min-height: .75rem;
  font-size: .625rem;
}

.icon.m-size-8 svg {
  width: .625rem;
  height: .625rem;
}

.input-password {
  display: inline-block;
  position: relative;
}

.input-password.m-show .input-password_toggle::before {
  content: "非表示";
}

.input-password.m-full {
  width: 100%;
}

.input-password.m-full .input {
  width: 100%;
}

.input-password .input {
  padding-right: calc(40px + 1em);
}

.input-password .input.m-error + .input-password_toggle {
  color: #c72937;
}

.input-password_toggle {
  display: block;
  position: absolute;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  text-align: center;
  cursor: pointer;
  outline: none;
}

.input-password_toggle::before {
  display: inline;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  content: "表示";
  pointer-events: none;
}

.input-password_toggle:focus, .input-password_toggle:hover {
  border: none;
  outline: none;
}

.input-rating {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.input-rating input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  margin: 0;
  opacity: 0;
}

.input-rating_label {
  position: relative;
  display: block;
  width: 1em;
  height: 1em;
  border: none;
  background-image: url("/shop/files/commonfiles/images/icons/svg/review-star-line.svg");
  background-repeat: repeat-x;
  background-size: 1em;
  background-color: transparent;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}

@media screen and (max-width: 767px) {
  .input-rating_label {
    font-size: 20px;
  }
}

.input-rating_label:hover, .input-rating_label:focus {
  border: none;
  outline: none;
}

.input-rating_label.m-selected {
  background-image: url("/shop/files/commonfiles/images/icons/svg/review-star.svg");
}

.input-rating_label + .input-rating_label {
  margin-left: .25em;
}

.ranking {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
  padding-top: 25%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  pointer-events: none;
}

.ranking.m-1 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0122.png");
}

.ranking.m-2 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0123.png");
}

.ranking.m-3 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0124.png");
}

.ranking.m-4 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0125.png");
}

.ranking.m-5 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0126.png");
}

.ranking.m-6 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0127.png");
}

.ranking.m-7 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0128.png");
}

.ranking.m-8 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0129.png");
}

.ranking.m-9 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0130.png");
}

.ranking.m-10 {
  background-image: url("/shop/files/commonfiles/images/icons/icon_0131.png");
}

.review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review_label {
  font-size: 12px;
}

.review_label:not(:first-child) {
  margin-left: .5rem;
}

.stars {
  display: inline-block;
  position: relative;
  width: 5em;
  height: 1em;
  font-size: 16px;
}

.stars.m-borderless::after {
  background-image: none;
}

.stars::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 100%;
  background-image: url("/shop/files/commonfiles/images/icons/svg/review-star.svg");
  background-repeat: repeat-x;
  background-size: 1em;
  content: "";
}

.stars::after {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-image: url("/shop/files/commonfiles/images/icons/svg/review-star-line.svg");
  background-repeat: repeat-x;
  background-size: 1em;
  content: "";
}

.stars.m-0-0::before {
  width: 0%;
}

.stars.m-0-1::before {
  width: 2%;
}

.stars.m-0-2::before {
  width: 4%;
}

.stars.m-0-3::before {
  width: 6%;
}

.stars.m-0-4::before {
  width: 8%;
}

.stars.m-0-5::before {
  width: 10%;
}

.stars.m-0-6::before {
  width: 12%;
}

.stars.m-0-7::before {
  width: 14%;
}

.stars.m-0-8::before {
  width: 16%;
}

.stars.m-0-9::before {
  width: 18%;
}

.stars.m-1-0::before {
  width: 20%;
}

.stars.m-1-1::before {
  width: 22%;
}

.stars.m-1-2::before {
  width: 24%;
}

.stars.m-1-3::before {
  width: 26%;
}

.stars.m-1-4::before {
  width: 28%;
}

.stars.m-1-5::before {
  width: 30%;
}

.stars.m-1-6::before {
  width: 32%;
}

.stars.m-1-7::before {
  width: 34%;
}

.stars.m-1-8::before {
  width: 36%;
}

.stars.m-1-9::before {
  width: 38%;
}

.stars.m-2-0::before {
  width: 40%;
}

.stars.m-2-1::before {
  width: 42%;
}

.stars.m-2-2::before {
  width: 44%;
}

.stars.m-2-3::before {
  width: 46%;
}

.stars.m-2-4::before {
  width: 48%;
}

.stars.m-2-5::before {
  width: 50%;
}

.stars.m-2-6::before {
  width: 52%;
}

.stars.m-2-7::before {
  width: 54%;
}

.stars.m-2-8::before {
  width: 56%;
}

.stars.m-2-9::before {
  width: 58%;
}

.stars.m-3-0::before {
  width: 60%;
}

.stars.m-3-1::before {
  width: 62%;
}

.stars.m-3-2::before {
  width: 64%;
}

.stars.m-3-3::before {
  width: 66%;
}

.stars.m-3-4::before {
  width: 68%;
}

.stars.m-3-5::before {
  width: 70%;
}

.stars.m-3-6::before {
  width: 72%;
}

.stars.m-3-7::before {
  width: 74%;
}

.stars.m-3-8::before {
  width: 76%;
}

.stars.m-3-9::before {
  width: 78%;
}

.stars.m-4-0::before {
  width: 80%;
}

.stars.m-4-1::before {
  width: 82%;
}

.stars.m-4-2::before {
  width: 84%;
}

.stars.m-4-3::before {
  width: 86%;
}

.stars.m-4-4::before {
  width: 88%;
}

.stars.m-4-5::before {
  width: 90%;
}

.stars.m-4-6::before {
  width: 92%;
}

.stars.m-4-7::before {
  width: 94%;
}

.stars.m-4-8::before {
  width: 96%;
}

.stars.m-4-9::before {
  width: 98%;
}

.stars.m-5-0::before {
  width: 100%;
}

.switch {
  display: inline-block;
  position: relative;
}

.switch_input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.switch_input:checked + .switch_label .switch_button {
  background-color: #c72937;
}

.switch_input:checked + .switch_label .switch_button::before {
  -webkit-transform: translateX(calc(36px - 14px - (20px - 14px)));
          transform: translateX(calc(36px - 14px - (20px - 14px)));
}

.switch_label {
  z-index: 1;
  padding-right: calc(36px + 1rem);
  background-color: transparent;
  cursor: pointer;
}

.switch_button {
  display: block;
  position: absolute;
  top: calc(-1 * (20px - 1em) / 2);
  right: 0;
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background-color: #a9a8a8;
  pointer-events: none;
}

.switch_button::before {
  display: block;
  position: absolute;
  top: calc((20px - 14px) / 2);
  left: calc((20px - 14px) / 2);
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background-color: #ffffff;
  content: "";
  -webkit-transition: all .3s 0s ease;
  transition: all .3s 0s ease;
}

.tag {
  display: inline-block;
  padding: .125em .75em;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  background-color: #f3f3f3;
  color: #171717;
  font-size: 1rem;
}

.tag:not(:first-child) {
  margin-left: .75em;
}

.tag:not(:last-child) {
  margin-right: .75em;
}

.tag.m-plain-border {
  border-color: #d2d1d1;
  background-color: #ffffff;
}

.tag.m-warning-l {
  background-color: #fdeef1;
}

.tag.m-warning-r {
  background-color: #c72937;
  color: #ffffff;
}

.tag.m-attention-l {
  background-color: #fbf2d6;
}

.tag.m-attention-d {
  background-color: #c38704;
  color: #ffffff;
}

.tag.m-plain-d {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #555252;
  color: #ffffff;
}

.tag.m-plain-l {
  padding-top: 0;
  padding-bottom: 0;
  border-color: #d2d1d1;
  background-color: #ffffff;
}

.tag.m-white-fill {
  background-color: #ffffff;
  color: #000000;
}

.tag.m-required {
  border-radius: 2px;
  background-color: #ad0e30;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.tag.m-optional {
  border-radius: 2px;
  background-color: #a9a8a8;
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
}

.toggle-button:not(.m-pc):not(.m-mobile) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

.toggle-button:not(.m-pc):not(.m-mobile) .radio {
  margin: 0 !important;
}

.toggle-button:not(.m-pc):not(.m-mobile) .radio:nth-of-type(1) label {
  border-radius: 3px 0 0 3px;
}

.toggle-button:not(.m-pc):not(.m-mobile) .radio:not(:nth-of-type(1)) label {
  margin-left: -2px;
}

.toggle-button:not(.m-pc):not(.m-mobile) .radio:nth-last-of-type(1) label {
  border-radius: 0 3px 3px 0;
}

.toggle-button:not(.m-pc):not(.m-mobile) input[type="radio"] {
  margin: 0;
  padding: 0;
}

.toggle-button:not(.m-pc):not(.m-mobile) input[type="radio"].m-readonly + label {
  color: #a9a8a8 !important;
  pointer-events: none;
}

.toggle-button:not(.m-pc):not(.m-mobile) input[type="radio"].m-readonly:checked + label {
  z-index: 1;
  background-color: #a9a8a8 !important;
  color: #ffffff !important;
}

.toggle-button:not(.m-pc):not(.m-mobile) input[type="radio"].m-error + label {
  background-color: #fdeef1;
}

.toggle-button:not(.m-pc):not(.m-mobile) input[type="radio"]:checked + label {
  z-index: 1;
  background-color: #c72937;
  border-color: transparent;
  color: #ffffff;
}

.toggle-button:not(.m-pc):not(.m-mobile) label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 80px;
  padding: .75em 1em !important;
  margin: 0 !important;
  border-width: 1px;
  border-style: solid;
  border-color: #cccbcb;
  background-color: #f3f3f3;
  color: #171717;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.toggle-button:not(.m-pc):not(.m-mobile) label::before, .toggle-button:not(.m-pc):not(.m-mobile) label::after {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .toggle-button.m-pc {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
  }
  .toggle-button.m-pc .radio {
    margin: 0 !important;
  }
  .toggle-button.m-pc .radio:nth-of-type(1) label {
    border-radius: 3px 0 0 3px;
  }
  .toggle-button.m-pc .radio:not(:nth-of-type(1)) label {
    margin-left: -2px;
  }
  .toggle-button.m-pc .radio:nth-last-of-type(1) label {
    border-radius: 0 3px 3px 0;
  }
  .toggle-button.m-pc input[type="radio"] {
    margin: 0;
    padding: 0;
  }
  .toggle-button.m-pc input[type="radio"].m-readonly + label {
    color: #a9a8a8 !important;
    pointer-events: none;
  }
  .toggle-button.m-pc input[type="radio"].m-readonly:checked + label {
    z-index: 1;
    background-color: #a9a8a8 !important;
    color: #ffffff !important;
  }
  .toggle-button.m-pc input[type="radio"].m-error + label {
    background-color: #fdeef1;
  }
  .toggle-button.m-pc input[type="radio"]:checked + label {
    z-index: 1;
    background-color: #c72937;
    border-color: transparent;
    color: #ffffff;
  }
  .toggle-button.m-pc label {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-width: 80px;
    padding: .75em 1em !important;
    margin: 0 !important;
    border-width: 1px;
    border-style: solid;
    border-color: #cccbcb;
    background-color: #f3f3f3;
    color: #171717;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
  }
  .toggle-button.m-pc label::before, .toggle-button.m-pc label::after {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .toggle-button.m-mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
  }
  .toggle-button.m-mobile .radio {
    margin: 0 !important;
  }
  .toggle-button.m-mobile .radio:nth-of-type(1) label {
    border-radius: 3px 0 0 3px;
  }
  .toggle-button.m-mobile .radio:not(:nth-of-type(1)) label {
    margin-left: -2px;
  }
  .toggle-button.m-mobile .radio:nth-last-of-type(1) label {
    border-radius: 0 3px 3px 0;
  }
  .toggle-button.m-mobile input[type="radio"] {
    margin: 0;
    padding: 0;
  }
  .toggle-button.m-mobile input[type="radio"].m-readonly + label {
    color: #a9a8a8 !important;
    pointer-events: none;
  }
  .toggle-button.m-mobile input[type="radio"].m-readonly:checked + label {
    z-index: 1;
    background-color: #a9a8a8 !important;
    color: #ffffff !important;
  }
  .toggle-button.m-mobile input[type="radio"].m-error + label {
    background-color: #fdeef1;
  }
  .toggle-button.m-mobile input[type="radio"]:checked + label {
    z-index: 1;
    background-color: #c72937;
    border-color: transparent;
    color: #ffffff;
  }
  .toggle-button.m-mobile label {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-width: 80px;
    padding: .75em 1em !important;
    margin: 0 !important;
    border-width: 1px;
    border-style: solid;
    border-color: #cccbcb;
    background-color: #f3f3f3;
    color: #171717;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
  }
  .toggle-button.m-mobile label::before, .toggle-button.m-mobile label::after {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .from-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .until-pc {
    display: none !important;
  }
}

.is-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .is-flex.m-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .is-full-mobile {
    width: 100% !important;
  }
}

.is-clipped {
  overflow: hidden !important;
}

.link {
  color: #171717;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.link:hover img {
  opacity: .75;
}

.link.m-underline {
  text-decoration: underline;
}

.link.m-underline:hover {
  text-decoration: none;
}

.link .icon:not(:first-child) {
  margin-left: .25em;
}

.link .icon:not(:last-child) {
  margin-right: .25em;
}

.link img {
  -webkit-transition: opacity .3s 0s ease;
  transition: opacity .3s 0s ease;
}

.img-link {
  -webkit-transition: opacity .3s 0s ease;
  transition: opacity .3s 0s ease;
}

.img-link:hover {
  opacity: .75;
}

.title {
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: #171717;
  font-size: 22px;
  line-height: 1.2;
}

.title.m-underline {
  padding-bottom: .5rem;
  border-bottom: 1px solid #e6e6e6;
}

.title.m-underline.m-dark {
  border-color: #555252;
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 20px;
  }
}

.title:not(:last-child) {
  margin-bottom: 20px;
}

.heading-1 {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
}

.heading-1.m-underline {
  padding-bottom: .5rem;
  border-bottom: 1px solid #e6e6e6;
}

.heading-1.m-underline.m-dark {
  border-color: #555252;
}

@media screen and (max-width: 767px) {
  .heading-1 {
    font-size: 18px;
  }
}

.heading-1:not(:last-child) {
  margin-bottom: 10px;
}

.heading-2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}

.heading-2.m-underline {
  padding-bottom: .5rem;
  border-bottom: 1px solid #e6e6e6;
}

.heading-2.m-underline.m-dark {
  border-color: #555252;
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 16px;
  }
}

.heading-2:not(:last-child) {
  margin-bottom: 10px;
}

.heading-3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
}

.heading-3.m-underline {
  padding-bottom: .5rem;
  border-bottom: 1px solid #e6e6e6;
}

.heading-3.m-underline.m-dark {
  border-color: #555252;
}

.heading-3:not(:last-child) {
  margin-bottom: 10px;
}

.message-area:not(:last-child) {
  margin-bottom: 20px;
}

.warning-message {
  background-color: #fdeef1;
  color: #c72937;
  padding: 20px;
}

.warning-message:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .warning-message {
    padding: 10px;
  }
}

.attention-message {
  background-color: #fbf2d6;
  padding: 20px;
}

.attention-message:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .attention-message {
    padding: 10px;
  }
}

.primary-message {
  background-color: #f7f5f4;
  padding: 20px;
}

.primary-message:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .primary-message {
    padding: 10px;
  }
}

.warning {
  color: #c72937;
  font-weight: normal;
  font-size: 13px;
}

.warning:not(:first-child) {
  margin-top: 5px;
}

.warning:not(:last-child) {
  margin-bottom: 5px;
}

.attention {
  color: #c38704;
  font-weight: normal;
  font-size: 14px;
}

.attention:not(:first-child) {
  margin-top: 5px;
}

.attention:not(:last-child) {
  margin-bottom: 5px;
}

.note {
  color: #a9a8a8;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.3;
}

.note:not(:first-child) {
  margin-top: 5px;
}

.note:not(:last-child) {
  margin-bottom: .5rem;
}

.help {
  font-weight: normal;
  font-size: 12px;
  line-height: 1.3;
}

.help:not(:first-child) {
  margin-top: 5px;
}

.help:not(:last-child) {
  margin-bottom: 5px;
}

.text-weight-bold {
  font-weight: bold !important;
}

.text-weight-normal {
  font-weight: normal !important;
}

.text-large {
  font-size: 16px !important;
}

.text-normal {
  font-size: 14px !important;
}

.text-small {
  font-size: 12px !important;
}

.text-align-left {
  text-align: left !important;
}

.text-align-centered {
  text-align: center !important;
}

.text-align-right {
  text-align: right !important;
}

.text-warning {
  color: #c72937 !important;
}

.text-warning svg {
  fill: #c72937 !important;
}

.text-attention {
  color: #c38704 !important;
}

.text-attention svg {
  fill: #c38704 !important;
}

.text-note {
  color: #a9a8a8 !important;
}

.text-note svg {
  fill: #a9a8a8 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-white svg {
  fill: #ffffff !important;
}

.text-indent {
  margin-left: 1em;
}

.text-indent-inside {
  margin-left: 2em;
}

.text-indent_point {
  display: inline-block;
  text-indent: -1em;
}

.section + .section {
  margin-top: 20px;
}

.grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 calc(-1 * (30px / 2));
}

@media screen and (max-width: 767px) {
  .grid {
    margin: 0 calc(-1 * (15px / 2));
  }
}

@media screen and (max-width: 767px) {
  .grid.m-pc {
    display: block;
    margin: 0;
  }
  .grid.m-pc > .grid_item {
    width: auto;
    padding: 0;
    margin: 0;
  }
}

.grid_item {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  padding: 0 calc(30px / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.grid_item.m-1 {
  width: calc(8.33333% * 1);
}

.grid_item.m-offset-1 {
  margin-left: calc(8.33333% * 1);
}

.grid_item.m-2 {
  width: calc(8.33333% * 2);
}

.grid_item.m-offset-2 {
  margin-left: calc(8.33333% * 2);
}

.grid_item.m-3 {
  width: calc(8.33333% * 3);
}

.grid_item.m-offset-3 {
  margin-left: calc(8.33333% * 3);
}

.grid_item.m-4 {
  width: calc(8.33333% * 4);
}

.grid_item.m-offset-4 {
  margin-left: calc(8.33333% * 4);
}

.grid_item.m-5 {
  width: calc(8.33333% * 5);
}

.grid_item.m-offset-5 {
  margin-left: calc(8.33333% * 5);
}

.grid_item.m-6 {
  width: calc(8.33333% * 6);
}

.grid_item.m-offset-6 {
  margin-left: calc(8.33333% * 6);
}

.grid_item.m-7 {
  width: calc(8.33333% * 7);
}

.grid_item.m-offset-7 {
  margin-left: calc(8.33333% * 7);
}

.grid_item.m-8 {
  width: calc(8.33333% * 8);
}

.grid_item.m-offset-8 {
  margin-left: calc(8.33333% * 8);
}

.grid_item.m-9 {
  width: calc(8.33333% * 9);
}

.grid_item.m-offset-9 {
  margin-left: calc(8.33333% * 9);
}

.grid_item.m-10 {
  width: calc(8.33333% * 10);
}

.grid_item.m-offset-10 {
  margin-left: calc(8.33333% * 10);
}

.grid_item.m-11 {
  width: calc(8.33333% * 11);
}

.grid_item.m-offset-11 {
  margin-left: calc(8.33333% * 11);
}

.grid_item.m-12 {
  width: calc(8.33333% * 12);
}

@media screen and (max-width: 767px) {
  .grid_item {
    padding: 0 calc(15px / 2);
  }
}

.accordion {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #a0a0a0;
}

.accordion.m-show .accordion_toggle {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.accordion.m-show .accordion-content {
  height: auto;
}

.accordion.m-show .accordion-content-inner {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.accordion_label {
  position: relative;
  display: block;
  padding: 0.75rem calc(1rem + 1.5rem) 0.75rem 0.5rem;
  cursor: pointer;
}

.accordion_toggle {
  display: inline-block;
  position: absolute;
  top: calc(50% - (1rem / 2));
  right: .75rem;
  -webkit-transform: rotateZ(0);
          transform: rotateZ(0);
  width: 1rem;
  height: 1rem;
  -webkit-transition: -webkit-transform .3s 0s ease;
  transition: -webkit-transform .3s 0s ease;
  transition: transform .3s 0s ease;
  transition: transform .3s 0s ease, -webkit-transform .3s 0s ease;
}

.accordion_toggle svg {
  fill: #171717;
}

.accordion_input {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}

.accordion-content {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .3s 0s ease;
  transition: height .3s 0s ease;
}

.accordion-content-inner {
  position: relative;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 20px;
  -webkit-transition: -webkit-transform .3s 0s ease;
  transition: -webkit-transform .3s 0s ease;
  transition: transform .3s 0s ease;
  transition: transform .3s 0s ease, -webkit-transform .3s 0s ease;
}

.box {
  position: relative;
  border-width: 0;
  border-style: solid;
  border-color: #e8e8e8;
  background-color: #ffffff;
  padding: 20px;
}

.box.m-border {
  border-width: 1px;
}

.box.m-primary {
  border-color: #b9b6b6;
  background-color: #f7f5f4;
}

.box.m-warning {
  border-color: #c72937;
  background-color: #fdeef1;
}

.box.m-attention {
  border-color: #d9b45d;
  background-color: #fbf2d6;
}

.box.m-scroll {
  overflow-x: hidden;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .box {
    padding: 10px;
  }
}

.breadcrumbs {
  overflow-x: auto;
  overflow-y: hidden;
  margin-right: -20px;
  margin-left: -20px;
  background-color: #f6f4f3;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-right: -12px;
    margin-left: -12px;
  }
}

.breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
  max-width: 1216px;
  margin: 0 auto;
  line-height: 1.5;
  white-space: nowrap;
}

@media screen and (max-width: 1279px) {
  .breadcrumbs-list {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 0 .5em;
  }
}

.breadcrumbs-list_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 26px;
  font-size: 12px;
  line-height: 1;
}

.breadcrumbs-list_item:not(:first-child) {
  margin-left: 20px;
  padding-left: 20px;
}

.breadcrumbs-list_item:not(:first-child)::before {
  width: 1rem;
  height: 1rem;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #171717;
  content: "";
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  position: absolute;
  top: calc(50% - (0.425rem / 2));
  left: calc(-1 * (0.425rem / 2));
  width: 0.425rem;
  height: 0.425rem;
  border-color: #615e5e;
}

.breadcrumbs_link {
  text-decoration: none;
}

.breadcrumbs_link:hover {
  text-decoration: underline;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.buttons:not(:first-child) {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .buttons .button {
    width: 280px;
  }
}

@media screen and (max-width: 767px) {
  .buttons .button.m-cancel {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  .buttons .button.m-commit {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 60%;
            flex: 1 1 60%;
  }
}

@media screen and (max-width: 767px) {
  .buttons.m-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .buttons.m-vertical .button + .button {
    margin-bottom: 20px;
    margin-left: 0;
  }
  .buttons.m-vertical .button.m-cancel {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .buttons.m-vertical .button.m-commit {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
  .buttons.m-vertical.m-noreverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .buttons.m-vertical.m-noreverse .button {
    margin-bottom: 20px;
    margin-left: 0;
  }
  .buttons.m-vertical.m-noreverse .button:last-child {
    margin-bottom: 0;
  }
}

.card {
  position: relative;
  display: block;
  border: 1px solid #e8e8e8;
}

.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f7f5f4;
  border-bottom: 1px solid #e8e8e8;
}

.card-header.divider {
  display: initial;
}

.card-divider {
  padding-top: 1.5rem;
  margin: 1.5rem 1.5rem 0 1.5rem;
  border-top: 1px solid #a0a0a0;
}

.card-header_title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 10px 20px;
  overflow: hidden;
  font-weight: bold;
  overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
  .card-header_title {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.card-header_tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .card-header_tool {
    margin-right: 10px;
  }
}

.card-content {
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .card-content {
    padding: 10px;
  }
}

.card-content_note {
  border-bottom: 1px solid #e8e8e8;
  margin: 0 -20px;
  padding: 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .card-content_note {
    margin: 0 -10px;
    padding: 0 10px 10px;
  }
}

.drawer-box {
  position: relative;
  border-width: 0;
  border-style: solid;
  border-color: #e8e8e8;
  background-color: #ffffff;
  padding: 20px;
}

.drawer-box.m-border {
  border-width: 1px;
}

.drawer-box.m-primary {
  border-color: #b9b6b6;
  background-color: #f7f5f4;
}

.drawer-box.m-warning {
  border-color: #c72937;
  background-color: #fdeef1;
}

.drawer-box.m-attention {
  border-color: #d9b45d;
  background-color: #fbf2d6;
}

@media screen and (max-width: 767px) {
  .drawer-box {
    padding: 10px;
  }
}

.drawer-box.m-hide .drawer-box_toggle {
  -webkit-transform: rotateZ(-180deg);
          transform: rotateZ(-180deg);
}

.drawer-box.m-hide .drawer-box-content {
  height: 0;
}

.drawer-box.m-hide .drawer-box-content-inner {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.drawer-box-header {
  position: relative;
}

.drawer-box-header .title,
.drawer-box-header .heading-1,
.drawer-box-header .heading-2,
.drawer-box-header .heading-3 {
  margin-bottom: 0;
}

.drawer-box_label {
  display: block;
  padding-right: calc(1.5rem);
  cursor: pointer;
}

.drawer-box_toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotateZ(0);
          transform: rotateZ(0);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: -webkit-transform .3s 0s ease;
  transition: -webkit-transform .3s 0s ease;
  transition: transform .3s 0s ease;
  transition: transform .3s 0s ease, -webkit-transform .3s 0s ease;
}

.drawer-box_toggle svg {
  fill: #171717;
}

.drawer-box_input {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}

.drawer-box-content {
  position: relative;
  overflow: hidden;
  -webkit-transition: height .3s 0s ease;
  transition: height .3s 0s ease;
}

.drawer-box-content-inner {
  position: relative;
  padding-top: 20px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform .3s 0s ease;
  transition: -webkit-transform .3s 0s ease;
  transition: transform .3s 0s ease;
  transition: transform .3s 0s ease, -webkit-transform .3s 0s ease;
}

@media screen and (max-width: 767px) {
  .drawer-box-content-inner {
    padding-top: 10px;
  }
}

.dropdown {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .dropdown.m-active .dropdown-content {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

.dropdown_label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  padding: 5px 10px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

@media screen and (max-width: 767px) {
  .dropdown_label {
    padding: 0 10px;
  }
}

.dropdown_label:focus {
  border: none;
  outline: none;
}

.dropdown-content {
  -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  padding: 10px;
  background-color: #ffffff;
  z-index: 2;
}

.dropdown-list {
  min-width: 100%;
}

.dropdown-list_label {
  display: block;
  width: 100%;
  padding: .75rem 10px;
  border: none;
  background-color: transparent;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
}

.dropdown-list_label:hover {
  background-color: #f6f4f3;
}

.dropdown-list_label:focus {
  outline: none;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  width: 600px;
  max-width: 100%;
  max-height: 100%;
  padding: 20px;
  pointer-events: none;
}

.modal-message {
	padding: 20px 20px 0 20px;
}

@media screen and (max-width: 767px) {
  .modal {
    width: 100% !important;
    padding: 10px;
  }
  @supports (padding-bottom: calc(env(safe-area-inset-bottom) + 10px)) {
    .modal {
      padding-bottom: calc(env(safe-area-inset-bottom) + 10px);
    }
  }
}

.modal.m-size-xl {
  width: 800px;
}

.modal.m-size-l {
  width: 700px;
}

.modal.m-size-s {
  width: 350px;
}

.modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.modal-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  background-color: #ffffff;
  pointer-events: auto;
}

.modal-header_title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 50px;
  padding: 10px calc(2.5rem + (30px)) 10px 20px;
  border-bottom: 1px solid #e8e8e8;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .modal-header {
    padding-right: calc(2.5rem + (20px));
    padding-left: 10px;
  }
}

.modal-scroll {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: auto;
  width: 100%;
}

.modal-content {
  width: 100%;
  padding: 20px 20px 30px;
}

@media screen and (max-width: 767px) {
  .modal-content {
    padding: 10px 10px 30px;
  }
}

.modal_close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

@media screen and (max-width: 767px) {
  .modal_close {
    right: 10px;
  }
}

.modal_close:hover {
  background-color: #f3f3f3;
}

.modal_close:focus {
  border: none;
  outline: none;
}

.modal_close::before, .modal_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% / 3 * 2);
  height: 1px;
  background-color: #707070;
  content: "";
}

.modal_close::before {
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
          transform: translate(-50%, -50%) rotateZ(45deg);
}

.modal_close::after {
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
          transform: translate(-50%, -50%) rotateZ(-45deg);
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 60px;
  padding: 0 20px;
  border-top: 1px solid #e8e8e8;
}

@media screen and (max-width: 767px) {
  .modal-footer {
    padding: 10px;
  }
}

.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pager_button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

.pager_button:hover, .pager_button:focus {
  border: none;
  outline: none;
}

.pager_button:not(.m-current):hover {
  background-color: #e8e8e8;
}

.pager_button.m-current {
  background-color: #707070;
  color: #ffffff;
  pointer-events: none;
  cursor: auto;
}

.pager_button.m-ellipsis {
  width: auto;
  cursor: auto;
  background-color: transparent;
}

.pager_button.m-ellipsis:hover {
  background-color: transparent;
}

.pager_button + .pager_button {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .pager_button + .pager_button {
    margin-left: 8px;
    color: #171717;
  }
}

.read-more-content {
  position: relative;
  overflow: hidden;
}

.read-more-content-inner {
  position: relative;
}

.read-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 10px;
  border: none;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #ffffff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(bottom, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
  cursor: pointer;
  outline: none;
}

.read-more:hover {
  outline: none;
}

.read-more.m-primary {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f6f4f3), to(rgba(246, 244, 243, 0)));
  background: linear-gradient(to top, #f6f4f3 50%, rgba(246, 244, 243, 0) 100%);
  background: -webkit-linear-gradient(bottom, #f6f4f3 50%, rgba(246, 244, 243, 0) 100%);
}

.read-more .icon:not(:first-child) {
  margin-left: .5em;
}

.steps {
  overflow-x: auto;
  overflow-y: hidden;
  height: 40px;
  background-color: #f0eceb;
  margin-right: -20px;
  margin-left: -20px;
}

@media screen and (max-width: 767px) {
  .steps {
    margin-right: -12px;
    margin-left: -12px;
  }
}

.steps.m-simple .step-list_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.steps.m-simple .step-list_item:not(:last-child) {
  margin-right: 0.5rem;
}

.steps.m-simple .step-list_item.m-current {
  padding-right: calc(0.5rem * 2.5);
}

.steps.m-simple .step-list_item:not(.m-current) .step_title {
  display: none;
}

.step-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  max-width: 1216px;
  height: 100%;
  margin: 0 auto;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .step-list {
    padding: 0 .5em;
  }
}

.step-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
  color: #a9a8a8;
  font-size: 12px;
}

.step-list_item:not(:last-child) {
  padding-right: calc(0.5rem * 1.5);
}

.step-list_item:not(:last-child)::after {
  width: 1rem;
  height: 1rem;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #171717;
  content: "";
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  position: absolute;
  top: calc(50% - (0.5rem / 2));
  right: calc(0.5rem / 2);
  width: 0.5rem;
  height: 0.5rem;
  border-color: #a9a8a8;
}

.step-list_item.m-current {
  color: #171717;
}

.step-list_item.m-current .step_circle {
  background-color: #171717;
}

@media screen and (max-width: 767px) {
  .step-list_item.m-current .step_circle {
    margin-right: .5rem;
  }
}

@media screen and (max-width: 767px) {
  .step-list_item:not(.m-current) .step_title {
    display: none;
  }
}

.step_circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background-color: #a9a8a8;
  color: #f0eceb;
  line-height: 16px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  margin-right: .5rem;
}

@media screen and (max-width: 767px) {
  .step_circle {
    margin-right: 0;
  }
}

.step_title {
  position: relative;
  margin-right: .5rem;
  line-height: 1;
}

.table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid #d2d1d1;
}

.table-topleft {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.table-topleft .cell {
  border-right-width: 1px;
  border-bottom-width: 1px;
  background-color: #f7f5f4;
}

.table-column-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.table-column-header .cell {
  border-bottom-width: 1px;
  background-color: #f7f5f4;
}

.table-column-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.table-row-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.table-row-header .cell {
  border-right-width: 1px;
  background-color: #f7f5f4;
}

.table-row-header-inner {
  position: relative;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.table-scroll {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.table-body {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

.table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.table-row + .table-row .cell {
  border-top-width: 1px;
}

.cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
  border-width: 0;
  border-style: solid;
  border-color: #d2d1d1;
  background-color: #ffffff;
}

.cell.m-item-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cell.m-item-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.cell + .cell {
  border-left-width: 1px;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
}

.tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 60px;
}

@media screen and (max-width: 767px) {
  .tab-menu {
    height: 50px;
  }
}

.tab-menu_item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  height: 50px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .tab-menu_item {
    height: 40px;
  }
}

.tab-menu_item + .tab-menu_item {
  border-left: 2px solid #ffffff;
}

.tab-menu_item.m-active {
  height: 100%;
  font-weight: bold;
}

.tab-menu_item.m-active .tab-menu_label {
  background-color: #e2d9d7;
  color: #171717;
}

.tab-menu_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  height: 100%;
  padding: 1rem 0;
  background-color: #f3f3f3;
  color: #171717;
  line-height: 1.3em;
  text-align: center;
  cursor: pointer;
}

.tab-menu_label:hover {
  background-color: #f0eceb;
}

@media screen and (max-width: 767px) {
  .tab-menu_label {
    font-size: 12px;
    padding: 10px 20px;
  }
}

.tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  border: 1px solid #e8e8e8;
  border-top: 2px solid #e2d9d7;
}

.tab-content_item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 15px;
  opacity: 0;
  -webkit-transition: all .3s 0s ease;
  transition: all .3s 0s ease;
}

@media screen and (max-width: 767px) {
  .tab-content_item {
    padding: 10px;
  }
}

.tab-menu_radio {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.tab-menu_radio:checked + .tab-content_item {
  display: block;
  position: relative;
  z-index: 1;
  opacity: 1;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input {
  -webkit-appearance: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

h2 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

h3 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

h4 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

h5 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

a {
  color: #171717;
  cursor: pointer;
}

a:focus {
  outline: none;
}

img {
  vertical-align: bottom;
}

fieldset {
  margin: 0;
  padding: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-ms-clear {
  visibility: hidden;
}

input::-ms-reveal {
  visibility: hidden;
}

input,
select,
textarea,
button {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  font-weight: normal;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
}

iframe {
  border: none;
  vertical-align: top;
}

svg {
  overflow: visible;
}

.slick-slide:focus {
  outline: none;
}

.slick-prev {
  left: 0;
}

.slick-prev::before {
  left: 50%;
  -webkit-transform: translateX(-30%) translateY(-50%) rotateZ(135deg);
          transform: translateX(-30%) translateY(-50%) rotateZ(135deg);
}

.slick-next {
  right: 0;
}

.slick-next::before {
  right: 50%;
  -webkit-transform: translateX(30%) translateY(-50%) rotateZ(-45deg);
          transform: translateX(30%) translateY(-50%) rotateZ(-45deg);
}

.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  max-width: 30px;
  height: 80px;
}

@media screen and (max-width: 767px) {
  .slick-arrow {
    width: 7vw;
  }
}

.slick-arrow::before {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-width: 0 3px 3px 0;
  border-style: solid;
  border-color: #ffffff;
  content: "";
}

.slick-dots li button::before {
  font-size: 10px;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  opacity: .25;
}

.slick-dots li.slick-active button {
  opacity: 1 !important;
}

.os-scrollbar.os-scrollbar-horizontal {
  height: 12px !important;
}

.os-scrollbar.os-scrollbar-vertical {
  width: 12px !important;
}

.lazyload-wrapper {
  position: relative;
  overflow: hidden;
  background: #d9d9d9;
}

.lazyload-wrapper:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(200, 200, 200, 0.5)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.5), transparent);
  content: "";
  -webkit-animation: skeleton-animation 2.0s linear infinite;
          animation: skeleton-animation 2.0s linear infinite;
}

@-webkit-keyframes skeleton-animation {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes skeleton-animation {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.lazyload {
  width: 100%;
  height: auto;
}

html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  color: #171717;
  font-size: 14px;
  line-height: 1.3;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

@media screen and (max-width: 767px) {
  html {
    overflow-x: hidden;
  }
}

html.m-fixed {
  position: absolute;
  overflow: hidden;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  overflow: hidden;
  min-width: 1028px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
}

.main-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.main-contents {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  position: relative;
  overflow: hidden;
}

main {
  display: block;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  main {
    padding: 0 12px;
  }
}

.main-inner {
  max-width: 1216px;
  margin: 40px auto 20px auto;
}

@media screen and (max-width: 767px) {
  .main-inner {
    width: 100%;
  }
}

.fixed-return-top {
  display: none;
}

.fixed-return-top-button {
  width: 55px;
  height: 55px;
}

.fixed-return-top-button svg {
  fill: #ffffff;
}

.custom-scroll {
  position: relative;
  overflow: hidden;
}

.hidden {
  display: none;
}

#loader
{
	background-image: url("/shop/files/commonfiles/images/icons/svg/loading.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 80px;
}

@media screen and (max-width: 767px) {
  #loader
  {
    left: 0;
  }
}
