@charset "UTF-8";

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  margin-top: 0 !important;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #393939;
  word-break: break-all;
}

body *:focus {
  outline: none;
}

.cursor-default {
  cursor: default;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
button {
  cursor: pointer;
}

a {
  color: #393939;
  text-decoration: none;
}

a:hover,
a:active {
  color: #b2aa9d;
  text-decoration: none;
}

a:hover {
  color: #b2aa9d;
}

.text-primary {
  color: #b2aa9d !important;
}

.grap {
  height: 36px;
  background: rgba(211, 181, 114, 0.1);
}

.bg-gray-light {
  background: #EAE9E5;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.required {
  background: #C1272D;
  color: #fff;
  width: 60px;
  height: 20px;
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
}

@media only screen and (max-width: 767px) {
  .required {
    width: 32px;
  }
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 23px solid transparent;
  border-right: 23px solid transparent;
  border-bottom: 23px solid #a67c52;
}

/**
* Style OwlCarousel
*/
#scroll-top {
  width: 50px;
  overflow: hidden;
  display: inline-block;
  position: fixed;
  bottom: 15px;
  right: calc((100vw - 1150px) / 2);
  z-index: 9999;
}

.img-responsive {
  max-width: 100%;
}

.block-breadcrumb {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.block-breadcrumb .container {
  max-width: 1190px;
}

.block-breadcrumb .breadcrumb {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 0;
}

.block-breadcrumb .breadcrumb li {
  font-size: 13px;
  font-family: "Noto Sans CJK JP";
  color: #fff;
}

.block-breadcrumb .breadcrumb li a {
  color: #fff;
}

.page-order-method .common-breadcrumb li:nth-child(2) {
  margin-right: 5px;
}

.page-order-method .common-breadcrumb li:nth-child(2) a::before {
  background: none !important;
  width: 0;
}

.page-order-method .common-breadcrumb li:nth-child(2) a::after {
  content: "";
  width: 0;
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .page-order-method .common-breadcrumb ul li:first-child {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .block-breadcrumb .breadcrumb li a {
    color: #2f2f2f;
  }
}

@media only screen and (max-width: 767px) {
  .block-breadcrumb .breadcrumb li {
    color: #2f2f2f;
    font-weight: bold;
  }
}

.block-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
  content: "＞";
}

@media only screen and (max-width: 767px) {
  .block-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #2f2f2f;
  }
}

@media only screen and (max-width: 767px) {
  .block-breadcrumb {
    position: relative;
    top: 0;
    background: #ebf4fd;
  }
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dots button {
  width: 9px;
  height: 9px;
  background: #969696 !important;
  margin-right: 13px;
}

.owl-dots button.active {
  background: #346acc !important;
}

.pagination li a {
  font-size: 17px;
  color: #2f2f2f;
  line-height: 26px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  border-radius: 0 !important;
  padding: 0 2px;
  margin: 0 10px;
}

@media only screen and (max-width: 767px) {
  .pagination li a {
    margin: 0 5px;
  }
}

.pagination li.active a {
  background: none !important;
  border-bottom: 2px solid #3472b7 !important;
  color: #2f2f2f !important;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.form-control {
  border: 1px solid #F2F2F2;
  min-height: 40px;
  border-radius: 0;
  color: #393939;
  font-size: 16px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background: #fff;
}

.form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #E6E6E6;
  opacity: 1;
  /* Firefox */
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #E6E6E6;
}

.form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #E6E6E6;
}

.form-control.error {
  border: 1px solid #FF1D25;
}

.form-control:focus {
  box-shadow: none;
}

@media only screen and (max-width: 767px) {
  .form-control {
    background: #F9F9F9;
  }
}

select.form-control {
  -webkit-appearance: none;
  background: #fff url("../img/inc/angle-down.png") no-repeat;
  background-position: calc(100% - 10px) 15px;
}

@media only screen and (max-width: 767px) {
  select.form-control {
    background-color: #F9F9F9;
    background-position: calc(100% - 10px) 19px;
  }
}

textarea.form-control {
  line-height: normal;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.btn {
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  display: inline-block;
  cursor: pointer;
  max-width: 100%;
  height: 64px;
  line-height: 64px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  transition: linear 0.3s;
}

@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

.btn-primary {
  width: 420px;
  border: 1px solid #b2aa9d;
  background: #b2aa9d;
  color: #fff;
  border-radius: 6px;
  transition: linear 0.3s;
}

.btn-primary:hover {
  background: rgba(178, 170, 157, 0.5);
  box-shadow: none;
  border: 1px solid #b2aa9d;
}

.btn-primary:disabled {
  border: 1px solid #70707033 !important;
  background: #70707033 !important;
  opacity: .6 !important;
  color: #fff;
  cursor: no-drop;
}

.btn-primary.disabled {
  border: 1px solid #70707033 !important;
  background: #70707033 !important;
  opacity: .6 !important;
  color: #fff;
  cursor: no-drop;
}

.btn-outline-primary {
  width: 420px;
  border: 1px solid #b2aa9d;
  background: #fff;
  color: #b2aa9d;
  border-radius: 6px;
  transition: linear 0.3s;
}

.btn-outline-primary:hover {
  background: #b2aa9d;
  box-shadow: none;
  border: 1px solid #b2aa9d;
}

@media only screen and (max-width: 767px) {
  .btn {
    height: 50px;
    line-height: 50px;
  }
}

.text-note {
  font-size: 12px;
  width: 100%;
  color: #B3B3B3;
  white-space: pre-line;
  text-align: justify;
  font-weight: 500;
}

label.error {
  color: #FF1D25 !important;
  font-size: 12px !important;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-weight: bold !important;
  margin-bottom: 0 !important;
  margin-top: 8px !important;
  display: block !important;
  width: 100% !important;
  line-height: normal !important;
}

.bg-error.errorClass {
  background: #FFEEF0;
}

@media only screen and (max-width: 767px) {
  .bg-error.errorClass {
    background: none;
  }

  .address-errorClass {
    background: #FFEEF0;
  }
}

@media (min-width: 768px) {
  .mt-sm-90 {
    margin-top: 75px;
  }
}

@media only screen and (max-width: 767px) {
  .mt-sm-90 {
    margin-top: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .container .common-breadcrumb {
    margin-left: 0px;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.breadcrumb-item:first-child a:before {
  content: "";
  width: 10px;
  height: 11px;
  display: inline-block;
  margin-right: 9px;
  background: url("../img/inc/icon_home.png");
}

@media only screen and (max-width: 767px) {
  .breadcrumb-item:first-child a:before {
    display: none;
  }
}

.common-breadcrumb {
  display: block;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}

@media only screen and (max-width: 767px) {
  .common-breadcrumb {
    margin-left: 15px;
    margin-top: 0px !important;
  }
}

.common-breadcrumb ul {
  list-style-type: none;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 0px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .common-breadcrumb ul {
    margin-left: 0px;
    white-space: nowrap;
    overflow-x: auto;
    margin-top: 15px !important;
  }
}

.common-breadcrumb ul li {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  margin-right: 5px;
  font-weight: 500;
  color: #575757;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .common-breadcrumb ul li {
    font-size: 11px;
    margin-right: 0;
    color: #393939;
    height: auto;
    line-height: 1.5;
    margin-bottom: 7px;
  }
}

.common-breadcrumb ul li:first-child {
  display: none;
}

.common-breadcrumb ul li:first-child a:before {
  content: "";
  width: 10px;
  height: 11px;
  display: inline-block;
  margin-right: 9px;
  background: url("../img/inc/icon_home.png");
}

@media only screen and (max-width: 767px) {
  .common-breadcrumb ul li:first-child a:before {
    margin-right: 3px;
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .common-breadcrumb ul li:first-child {
    display: none;
  }
}

.common-breadcrumb ul li:nth-child(2) a:before {
  content: "";
  width: 10px;
  height: 11px;
  display: inline-block;
  margin-right: 2px;
  background: url("../img/inc/icon_home.png");
}

.common-breadcrumb ul li:nth-child(2) a:after {
  content: "";
  height: 11px;
  display: inline-block;
}

.common-breadcrumb ul li:nth-child(2):after {
  margin-left: 15px;
}

@media only screen and (max-width: 767px) {
  .common-breadcrumb ul li:nth-child(2):after {
    margin-left: 3px;
  }
}

.common-breadcrumb ul li a {
  text-decoration: underline;
  color: #575757;
}

@media only screen and (max-width: 767px) {
  .common-breadcrumb ul li a {
    text-decoration: none;
    color: #393939;
    padding-left: 3px;
  }
}

.common-breadcrumb ul li:last-child a {
  text-decoration: none;
}

.common-breadcrumb ul li:last-child:after {
  content: '';
  color: #575757;
  margin-left: 5px;
}

.common-breadcrumb ul li:after {
  content: '>';
  color: #575757;
  margin-left: 5px;
  display: inline-block;
}

.common__button-back {
  width: 420px;
  height: 64px;
  line-height: 64px;
  font-size: 16px;
  background: #ffff;
  border: 1px solid #b2aa9d;
  color: #b2aa9d;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all .3s;
}

@media only screen and (max-width: 767px) {
  .common__button-back {
    width: calc(100% - 32px);
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.common__button-back:hover {
  background: #b2aa9d;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .common__button-col {
    width: 100% !important;
  }
}

.common__button-confirm {
  width: 420px;
  height: 64px;
  line-height: 64px;
  font-size: 16px;
  background: #393939;
  border: 1px solid #393939;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .common__button-confirm {
    width: calc(100% - 32px);
    font-size: 14px;
  }
}

.common__pagination {
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  padding-top: 20px;
  margin-bottom: 20px;
  overflow: auto;
}

@media only screen and (max-width: 767px) {
  .common__pagination {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .common__pagination-col {
    width: 100% !important;
  }
}

.common__pagination ul {
  justify-content: center;
  margin-bottom: 0px;
}

.common__pagination ul li.active a {
  border: none !important;
  background-color: #F4F2F3 !important;
}

.common__pagination ul li:first-child a {
  border: none !important;
  color: #cbc4c4;
}

@media only screen and (max-width: 767px) {
  .common__pagination ul li:first-child a span {
    width: 3.93px !important;
    height: 7.87px !important;
    display: inline-block;
  }
}

.common__pagination ul li:last-child a {
  border: none !important;
  color: #cbc4c4;
}

@media only screen and (max-width: 767px) {
  .common__pagination ul li:last-child a span {
    width: 3.93px !important;
    height: 7.87px !important;
    display: inline-block;
  }
}

.common__pagination ul li a {
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  outline: none !important;
  color: #393939 !important;
  font-size: 16px !important;
  width: 52px;
  height: 54px;
  text-align: center;
  padding: 11px 0px !important;
  vertical-align: middle;
  line-height: 1.95rem !important;
}

@media only screen and (max-width: 767px) {
  .common__pagination ul li a {
    font-size: 11px !important;
    padding: 8.75px 0px !important;
    width: 36px;
    height: 37.5px;
    color: #393939 !important;
    border: none !important;
    line-height: 1.45rem !important;
  }

  .common__pagination ul li a img {
    width: 3.935px;
    height: 7.875px;
  }
}

.common__pagination ul li a:hover {
  background: #F4F3F2 !important;
}

.common__alert-error {
  font-size: 16px;
  font-weight: bold;
  padding: 19px 20px 19px 46px;
  background-color: #FFEEF0;
  border: 1px solid #FF1D25;
  color: #FF1D25;
  border-radius: 4px;
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .common__alert-error {
    font-size: 13px;
    padding: 15px 15px 15px 34px;
  }
}

.common__alert-error img {
  display: inline-block;
  position: absolute;
  top: 19px;
  left: 20px;
}

@media only screen and (max-width: 767px) {
  .common__alert-error img {
    width: 14px;
    top: 15px;
    left: 15px;
  }
}

.common__alert-error p {
  margin: 0 0 0 1em;
  text-indent: -1em;
  display: inline-block;
  vertical-align: middle;
}

.common__alert-error p+p {
  margin-top: 0.5em;
}

.alert-success-custom {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.alert-success-custom span {
  background-color: #29ABe2;
  min-width: 246px;
  padding: 0 5px;
  height: 52px;
  font-size: 12px;
  line-height: 52px;
  border: none;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 500;
  border-radius: 4px 0 0 4px;
}

.alert-success-custom-card-referer {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.alert-success-custom-card-referer span {
  background-color: #29ABe2;
  min-width: 246px;
  padding: 12px 24px;
  height: 96px;
  font-size: 12px;
  line-height: 24px;
  border: none;
  color: #fff;
  display: block;
  font-weight: 500;
  border-radius: 4px 0 0 4px;
}

.alert-success-custom-card-referer span a {
  color: #fff;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .alert-success-custom span {
    width: 85%;
  }

  .alert-success-custom-card-referer span {
    width: 85%;
    height: 112px;
  }
}

.alert-multiline {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.alert-multiline__success span {
  background-color: #29ABe2;
}

.alert-multiline__success span a {
  color: inherit;
  text-decoration: underline;
}

.alert-multiline__error span {
  background: #C1272D;
}

.alert-multiline span {
  min-width: 246px;
  padding: 12px 20px;
  font-size: 12px;
  border: none;
  color: #fff;
  display: block;
  text-align: left;
  font-weight: 500;
  border-radius: 4px 0 0 4px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .alert-multiline span {
    width: 90%;
    padding: 12px 10px;
  }
}

.datepicker {
  background: url("../img/inc/icon-date.png") no-repeat;
  background-position: calc(100% - 6px) 9px;
}

.font-xs-bold {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .font-xs-bold {
    font-weight: bold;
  }
}

@media only screen and (min-width: 992px) {
  .pl-55 {
    padding-left: 55px !important;
  }

  .ml-sm--15 {
    margin-left: -15px;
  }

  .fs-sm-16 {
    font-size: 16px !important;
  }

  .h-sm-auto {
    height: auto !important;
  }

  .h-sm-740 {
    height: 740px !important;
  }

  .h-sm-620 {
    height: 620px;
  }

  .fs-sm-18 {
    font-size: 18px !important;
  }

  .h-320-01 {
    height: 320.01px;
    min-height: 320.01px !important;
  }

  .fwc-sm-500 {
    font-weight: 500 !important;
  }

  .h-sm-668 {
    min-height: 628px !important;
  }

  .w-md-80 {
    width: 80px !important;
  }

  .h-sm-434 {
    height: 434px !important;
    min-height: 434px !important;
  }

  .py-sm-24 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .fwc-sm-b {
    font-weight: bold;
  }
}

@media only screen and (max-width: 767px) {
  .h-xs-1196 {
    min-height: 1196px;
  }

  .fs-xs-13 {
    font-size: 13px !important;
  }

  .fs-xs-12 {
    font-size: 12px !important;
    font-weight: 500;
  }

  .fw-xs-b {
    font-weight: bold !important;
  }

  .fw-xs-normal {
    font-weight: 500 !important;
  }

  .fs-xs-18 {
    font-size: 18px;
  }

  .fs-xs-16 {
    font-size: 16px !important;
  }

  .ptc-xs-0 {
    padding-top: 0 !important;
  }

  .pbc-xs-0 {
    padding-bottom: 0 !important;
  }

  .mtc-xs-15 {
    margin-top: 15px !important;
  }

  .mtc-xs-6 {
    margin-top: 6px !important;
  }

  .mlc-xs--16 {
    margin-left: -16px;
    margin-right: -16px;
  }

  .h-xs-363 {
    height: 363.5px;
    min-height: 363.5px !important;
  }

  .h-xs-276-5 {
    height: 276.5px !important;
  }

  .mtc-xs-14-5 {
    margin-top: 14.5px !important;
  }

  .mh-xs-32 {
    min-height: 32px !important;
  }

  select.form-control.mh-xs-32 {
    background-position: calc(100% - 10px) 11px;
  }

  .w-xs-147-25 {
    width: 147.25px !important;
    height: 25.5px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
  }

  .text-black {
    color: #000 !important;
  }

  .h-xs-auto {
    height: auto !important;
    margin-bottom: 20px !important;
  }

  .h-xs-50 {
    min-height: 50px !important;
  }

  .h-xs-1061 {
    min-height: 1061px !important;
  }
}

.button-close-modal {
  position: absolute;
  width: 40px;
  height: 40px;
  color: #fff;
  right: 0;
  top: 0;
  background-color: #000 !important;
  opacity: 1;
  border: 0 !important;
}

@media only screen and (max-width: 767px) {
  .button-close-modal {
    width: 30px;
    height: 30px;
  }
}

.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

input#txtDate {
  min-width: 162px;
  position: relative;
  height: 28px;
}

.custom-date-input {
  border: 1px solid #000;
  background-position: calc(100% - 6px) 4px;
}

#labelDate {
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 2px;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  #labelDate {
    background: none;
  }
}

@media only screen and (max-width: 767px) {
  .font-weight-medium {
    font-weight: 500 !important;
  }
}

.page-login-content-amazon img,
.page-point__block-report-point__bottom a,
.customer-history-list__right-items .history-item__top-btn button,
.customer-history-list__right-search button,
.page-confirm button,
.page-customer__address-content .row-body a,
.page-cart__products .data-list__item-btn,
.page-cart__products .data-list__buttons button,
.page-cart__amazon button,
.page-cart__amazon img,
.page-cart__pay-cp .amazon-link a img,
.page-cart__form form .item-form .btn_show,
.page-order-method__content-inner .item-content-inner .content-right a,
.page-order-method__custdest__table .td3 a,
.pagination-lg .page-item:last-child .page-link,
.pagination-lg .page-item:last-child .page-link *,
.pagination-lg .page-item .page-link,
.pagination-lg .page-item .page-link *,
.pagination-lg .page-item:first-child .page-link,
.pagination-lg .page-item:first-child .page-link *,
.page-fr-right-group .pagination .page-item .page-link,
.page-edit .block-content .info_payment-grid__amazon,
.page-card__item-btn,
.page-contact__contact-id,
.page-order-method__content-inner .item-content-inner .content-right a,
.page-order-method .serinumber,
.history-detail__header-btn-group button,
.page-edit .block-content .info_payment-grid__amazon img {
  transition: linear 0.3s;
}

.page-login-content-amazon img:hover,
.page-cart__pay-cp .amazon-link a img:hover,
.page-cart__amazon img:hover,
.page-edit .block-content .info_payment-grid__amazon img:hover {
  opacity: 0.8;
  transition: linear 0.3s;
}

.radio-check-group {
  display: flex;
}

.radio-check-group input[type="radio"]:checked+label {
  border-color: #b2aa9d !important;
  background: #b2aa9d !important;
  color: #fff;
}

.radio-check-group label {
  padding: 6px 20px;
  font-size: 14px;
  border: 1px solid #b2aa9d;
  background: #fff;
  color: rgba(178, 170, 157, 0.65);
  border-radius: 6px;
  transition: linear 0.3s;
  text-align: center;
  width: 120px;
  font-weight: 600;
  margin-bottom: 0px;
}

.radio-check-group label:hover {
  border-color: #b2aa9d !important;
  background: #b2aa9d !important;
  color: #fff;
  cursor: pointer;
}

.radio-check-group input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.radio-check-group .radio-toolbar label:hover {
  background-color: #dfd;
}

.radio-check-group.third label:nth-child(6) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.radio-check-group.third label:nth-child(4) {
  border-radius: 0;
  border-right: none;
}

.radio-check-group label.large {
  width: 150px;
}

.radio-check-group label:nth-child(2) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.radio-check-group label:nth-child(4) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media only screen and (max-width: 767px) {
  .radio-check-group {
    flex-direction: row;
  }

  .radio-check-group label {
    width: 100%;
    padding: 14px 10px;
  }
}

.pagination-container {
  padding-bottom: 20px;
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767px) {
  .pagination-container {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.pagination-container ul {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 0px;
}

.pagination-container ul li {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

@media only screen and (min-width: 992px) {
  .pagination-container ul li:hover a {
    border: 2px solid #F4F2F3;
    background-color: #F4F2F3;
  }
}

@media only screen and (min-width: 1200px) {
  .pagination-container ul li:hover a {
    border: 2px solid #F4F2F3;
    background-color: #F4F2F3;
  }
}

@media only screen and (min-width: 1920px) {
  .pagination-container ul li:hover a {
    border: 2px solid #F4F2F3;
    background-color: #F4F2F3;
  }
}

@media only screen and (min-width: 992px) {
  .pagination-container ul li:first-child:hover a {
    color: #F4F2F3;
  }
}

@media only screen and (min-width: 1200px) {
  .pagination-container ul li:first-child:hover a {
    color: #F4F2F3;
  }
}

@media only screen and (min-width: 1920px) {
  .pagination-container ul li:first-child:hover a {
    color: #F4F2F3;
  }
}

.pagination-container ul li:first-child a {
  border: none !important;
  color: #FFFFFF;
}

.pagination-container ul li:first-child a:before {
  content: "";
  width: 10px;
  height: 18px;
  margin-top: 8px;
  margin-left: 5px;
  display: inline-block;
  background: url("..//img/frequentApplication/icon_prev.png");
}

@media only screen and (max-width: 767px) {
  .pagination-container ul li:first-child a:before {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pagination-container ul li:first-child a {
    color: #cbc4c4;
    font-size: 13px;
  }
}

@media only screen and (min-width: 992px) {
  .pagination-container ul li:last-child:hover a {
    color: #F4F2F3;
  }
}

@media only screen and (min-width: 1200px) {
  .pagination-container ul li:last-child:hover a {
    color: #F4F2F3;
  }
}

@media only screen and (min-width: 1920px) {
  .pagination-container ul li:last-child:hover a {
    color: #F4F2F3;
  }
}

.pagination-container ul li:last-child a {
  border: none !important;
  color: #FFFFFF;
}

.pagination-container ul li:last-child a:before {
  content: "";
  width: 10px;
  height: 18px;
  display: inline-block;
  margin-top: 8px;
  margin-left: 5px;
  background: url("..//img/frequentApplication/icon_next.png");
}

@media only screen and (max-width: 767px) {
  .pagination-container ul li:last-child a:before {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pagination-container ul li:last-child a {
    color: #cbc4c4;
  }
}

.pagination-container ul li a {
  padding: 11px 10px;
  display: block;
  border: 2px solid rgba(0, 0, 0, 0.1);
  outline: none;
  color: #393939;
  text-decoration: none;
  background: #fff;
  width: 52px;
  height: 54px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pagination-container ul li a {
    padding: 8.75px 0px;
    width: 36px;
    height: 37.5px;
    text-align: center;
    color: #393939 !important;
    border: none !important;
    font-size: 11px;
  }
}

.pagination-container ul .navi-active a {
  border: 2px solid #F4F2F3;
  background-color: #F4F2F3;
}

.pagination-container li+li {
  margin-left: -1px;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
  background: #b2aa9d;
  color: #fff;
  border-color: #b2aa9d;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  background: #b2aa9d;
  color: #fff;
  border-color: #b2aa9d;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none !important;
}

.amazonpay-button-enabled {
  cursor: pointer;
}

.amazonpay-button-container-rows {
  grid-template-rows: 65% 10% 25%;
}

.amazonpay-button-container--mod {
  width: 420px !important;
  height: 92px !important;
}

@media only screen and (max-width: 767px) {
  .amazonpay-button-container--mod {
    width: 100% !important;
    height: 80.55px !important;
  }
}

.amazonpay-button-container {
  display: grid;
  justify-items: stretch;
  min-height: 42px;
  min-width: 113px;
  max-width: 420px;
  width: 100%;
  touch-action: manipulation;
  max-height: 193px;
  height: 100%;
  margin: 0 auto 20px auto;
}

.amazonpay-button-view1-gold {
  border-color: #a88734 #9c7e31 #846a29;
  background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
}

.amazonpay-button-view1 {
  grid-row: 1/2;
  border-radius: 3px;
  box-shadow: 0 1px 0 #ffffff66 inset;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-rows: 13% 13% 1fr 1fr 10% 16%;
  grid-template-columns: 4% 10% 6% 1fr 6% 10% 4%;
  justify-items: center;
  justify-self: stretch;
  align-self: stretch;
}

.amazonpay-button-view1 .amazonpay-button-logo {
  grid-row: 3/6;
  grid-column: 4/5;
}

.amazonpay-button-view1 .amazonpay-button-sandbox-logo img,
.amazonpay-button-view1 .amazonpay-signin-button-sandbox-logo img,
.amazonpay-button-view1 .amazonpay-button-logo img,
.amazonpay-button-view1 .amazonpay-signin-button-logo img,
.amazonpay-button-view1 .amazonpay-button-chevrons img {
  object-fit: contain;
}

.amazonpay-button-view1 .amazonpay-button-sandbox-logo img,
.amazonpay-button-view1 .amazonpay-signin-button-sandbox-logo img,
.amazonpay-button-view1 .amazonpay-button-logo img,
.amazonpay-button-view1 .amazonpay-signin-button-logo img,
.amazonpay-button-view1 .amazonpay-button-chevrons img,
.amazonpay-button-view3 .amazonpay-button-microtext img {
  display: block;
  height: 100%;
  width: 100%;
  user-select: none;
  -webkit-touch-callout: none;
}

.amazonpay-button-view1 .amazonpay-button-chevrons {
  grid-row: 3/5;
  grid-column: 6/7;
}

.amazonpay-button-view2 {
  grid-row: 2/3;
}

.amazonpay-button-view3 {
  grid-row: 3/4;
  justify-items: center;
  justify-self: stretch;
  align-self: stretch;
}

.page-point__no-data {
  text-align: center;
  font-size: 13px;
  margin-top: 60px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-point__no-data {
    font-size: 12px;
    margin-top: 40px;
  }
}

.page-order-method .sub-title {
  font-size: 24px;
  color: #393939;
  font-weight: bold;
  text-align: center;
  line-height: 28px;
}

@media only screen and (max-width: 767px) {
  .page-order-method .sub-title {
    font-size: 19px;
  }
}

@media only screen and (max-width: 767px) {
  .sp-w100 {
    width: 100%;
  }
}

.box-checkbox:hover [type=checkbox]:not(:checked)+label:before,
.box-checkbox:hover [type=checkbox]:checked+label:before {
  border: 1px solid #000000;
}

.box-checkbox [type=checkbox]:not(:checked)+label:before,
.box-checkbox [type=checkbox]:checked+label:before {
  content: "";
  position: absolute;
  top: 4px;
  border: 1px solid #999999;
  background: #fff;
}

.box-checkbox [type=checkbox]:not(:checked)+label:after,
.box-checkbox [type=checkbox]:checked+label:after {
  top: 2px;
}

@media (max-width: 767px) {
  .box-checkbox label {
    font-size: 16px !important;
  }

  .box-checkbox [type=checkbox]:not(:checked)+label:after,
  .box-checkbox [type=checkbox]:checked+label:after {
    top: -2px;
  }

  .box-checkbox [type=checkbox]:not(:checked)+label:before,
  .box-checkbox [type=checkbox]:checked+label:before {
    content: "";
    position: absolute;
    top: 0px;
    border: 1px solid #999999;
    background: #fff;
  }
}

.button-danger {
  background: #CA2D30 !important;
  color: #fff !important;
}

.button-primary {
  background: #b2aa9d !important;
  color: #fff !important;
}

.button-warning {
  background: #b2aa9d !important;
  color: #fff !important;
}

.btn-contact-danger {
  background: #C1272D;
  text-align: center;
  font-size: 16px;
  line-height: 47px;
  width: 278px;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: #fff;
}

.btn-view-more {
  min-width: 240px;
  line-height: 50px;
  background: #266cba;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-family: "Yu Gothic";
  padding: 0;
  position: relative;
}

.btn-view-more.btn-white {
  color: #266cba;
  background: #fff;
}

.btn-view-more i {
  position: absolute;
  right: 18px;
  font-size: 25px;
  top: 10px;
}

.btn-service {
  min-width: 320px;
  max-width: 100%;
  line-height: 62px;
  text-align: center;
  background: #266cba;
  border-radius: 6px;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-family: "Noto Sans CJK JP";
  font-weight: 500;
  position: relative;
}

.btn-service i {
  position: absolute;
  right: 24px;
  font-size: 22px;
  top: 18px;
}

@media only screen and (max-width: 767px) {
  .btn-service {
    min-width: 240px;
    line-height: 52px;
    font-size: 14px;
    border-radius: 4px;
  }

  .btn-service i {
    right: 18px;
    font-size: 15px;
    top: 18px;
  }
}

.btn-pg-primary {
  background: #b2aa9d;
  color: #fff;
  font-size: 16px;
  line-height: 19.2px;
  height: 60px;
  font-weight: bold;
  border: solid 1px #b2aa9d;
  transition: linear 0.3s;
  position: relative;
  border-radius: 4px;
  transition: linear 0.3s;
}

.btn-pg-primary img {
  position: absolute;
  right: 16px;
  width: 4.31px !important;
  height: 8.61px !important;
  object-fit: cover;
  top: 40%;
}

@media only screen and (max-width: 767px) {
  .btn-pg-primary img {
    right: 8px;
  }

  .page-contact__content .btn-pg-primary img {
    top: 42%;
    right: 8px;
  }

}

.btn-pg-primary:hover {
  background-color: rgba(178, 170, 157, 0.5);
}

@media only screen and (max-width: 767px) {
  .btn-pg-primary {
    height: 50px;
    font-size: 14px;
    line-height: 16.3px;
  }
}

.btn-primary-bg-graylight {
  background: #E6E6E6;
  border: solid 1px #E6E6E6 !important;
  border-radius: 4px;
  transition: linear 0.3s;
}

.btn-logout {
  font-size: 12px;
  line-height: 14.4px;
  font-weight: bold;
  border: solid 1px #b2aa9d;
  background: none;
  width: 131px;
  height: 33px;
  border-radius: 4px;
  color: #b2aa9d;
  transition: linear 0.3s;
}

.btn-logout:hover {
  background: #b2aa9d;
  color: #fff;
}

.btn-left {
  margin-right: 0;
  margin-left: auto;
}

.btn-outline-bg {
  border-radius: 4px;
  background: none;
  border: solid 1px #b2aa9d;
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  height: 64px;
  margin-top: 55px;
  transition: linear .3s;
  cursor: pointer;
  color: #b2aa9d;
  font-weight: bold;
}

.btn-outline-bg:hover {
  background: #b2aa9d;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .btn-outline-bg {
    height: 50px;
    font-size: 14px;
    font-weight: bold;
  }
}

.btn-primary-bg-blue {
  width: 236px;
  height: 52px;
  background: #29ABE2;
  font-size: 12px;
  line-height: 14.4px;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px 0 0 4px;
}

@media only screen and (max-width: 767px) {
  .btn-primary-bg-blue {
    width: 172px;
    height: 26px;
    font-size: 10px;
    line-height: 12px;
  }
}

.btn-background-graylight {
  border-radius: 4px;
  background: #70707033;
  width: 100%;
  display: block;
  max-width: 420px;
  height: 64px;
  border: solid 1px #70707033;
  color: #fff;
  transition: linear .3s;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .btn-background-graylight {
    height: 50px;
  }
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

[type="checkbox"]:not(:checked)+label,
[type="checkbox"]:checked+label {
  position: relative;
  padding-left: 33px;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked)+label:before,
[type="checkbox"]:checked+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #999999;
  background: #fff;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked)+label:after,
[type="checkbox"]:checked+label:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  font-size: 23px;
  line-height: 0.8;
  color: #09ad7e;
  transition: all 0.2s;
  width: 28px;
  height: 28px;
  background: url("../img/inc/tick.png") no-repeat center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
}

[type="checkbox"]:checked+label:after {
  opacity: 1;
  transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked)+label:before,
[type="checkbox"]:disabled:checked+label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

[type="checkbox"]:disabled:checked+label:after {
  color: #999;
}

[type="checkbox"]:disabled+label {
  color: #aaa;
}

/* accessibility */
/* hover style just for information */
.box-select {
  position: relative;
  font-family: Arial;
}

.box-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  border: 1px solid #666666;
  line-height: 108px;
  color: #4D4D4D;
  font-size: 16px;
  font-family: "NotoSansCJKjp-Regular", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  padding: 0 38px;
  height: 108px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  position: relative;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  content: "";
  background: url("../images/arrow-down.png") no-repeat top right;
  width: 12px;
  height: 7px;
  position: absolute;
  right: 38px;
  top: 50px;
  z-index: 99;
}

@media (max-width: 767px) {
  .select-selected:after {
    top: 40px;
  }
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  content: "";
  background: url("../images/arrow-down.png") no-repeat top right;
  width: 12px;
  height: 7px;
  transform: rotate(180deg);
  position: absolute;
  right: 38px;
  top: 50px;
  z-index: 99;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  border: 1px solid #666666;
  line-height: 108px;
  color: #4D4D4D;
  font-size: 16px;
  font-family: "NotoSansCJKjp-Regular", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  padding: 0 38px;
  height: 108px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  position: relative;
  cursor: pointer;
  user-select: none;
  margin-top: -1px;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: #F2F2F2;
}

.block-news {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .block-news {
    padding-bottom: 50px;
  }
}

.block-news .container {
  max-width: 890px;
}

@media only screen and (max-width: 767px) {
  .block-news .container {
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.block-news h3 {
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 32px;
  color: #2f2f2f;
  font-weight: bold;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .block-news h3 {
    font-size: 22px;
  }
}

.block-news__item {
  padding: 16px 23px;
  border-top: 1px solid #e2e2e2;
}

@media only screen and (max-width: 767px) {
  .block-news__item {
    padding: 10px 0px;
  }
}

.block-news__item:last-child {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 32px;
}

.block-news__item h4 {
  margin: 0;
}

.block-news__item h4 a {
  display: block;
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  line-height: 22px;
  color: #2f2f2f;
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .block-news__item h4 a {
    font-size: 13px;
    line-height: 18px;
    margin-top: 10px;
  }
}

.block-news__item span {
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-weight: bold;
  color: #898989;
  display: block;
}

.block-news__item span i {
  min-width: 84px;
  line-height: 25px;
  display: inline-block;
  border: 1px solid #266cba;
  color: #266cba;
  font-size: 12px;
  font-style: normal;
  text-align: center;
  margin-left: 15px;
}

@media only screen and (max-width: 767px) {
  .block-news__item span {
    font-size: 12px;
    display: flex;
    align-items: center;
  }

  .block-news__item span i {
    font-size: 9px;
    line-height: 20px;
    min-width: 63px;
    margin-left: 11px;
  }
}

.block-maps .container {
  max-width: 1190px;
}

.block-maps.list .container {
  max-width: 1090px;
}

@media only screen and (max-width: 767px) {
  .block-maps.list .container {
    padding: 0;
    overflow: hidden;
  }

  .block-maps.list .container .btn-view-more {
    margin-top: 25px;
  }
}

.block-maps img {
  max-width: 100%;
  border: 1px solid #bfbfbf;
}

@media only screen and (max-width: 767px) {
  .block-maps img {
    height: 355px;
    object-fit: cover;
  }
}

.block-maps h3 {
  font-family: "Noto Sans CJK JP";
  font-size: 32px;
  font-weight: bold;
  line-height: 56px;
  margin-bottom: 30px;
  margin-top: 85px;
  text-align: center;
  color: #2f2f2f;
}

@media only screen and (max-width: 767px) {
  .block-maps h3 {
    font-size: 22px;
    line-height: 36px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
}

.block-maps p {
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .block-maps p {
    font-family: "Noto Sans JP";
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 25px;
  }
}

.block-maps .note {
  font-size: 12px;
  line-height: 26px;
  color: #666666;
  margin-top: 8px;
  font-family: "Noto Sans CJK JP";
}

.block-maps .note span {
  color: #266cba;
}

@media only screen and (max-width: 767px) {
  .block-maps .note {
    font-size: 10px;
    line-height: 16px;
  }
}

.block-maps__item {
  margin-bottom: 30px;
  background: #f4f4f4;
  padding-right: 24px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .block-maps__item {
    margin-bottom: 5px;
  }
}

.block-maps__item .row {
  margin-left: -12.5px;
  margin-right: -12.5px;
}

.block-maps__item .col-sm-6 {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

@media only screen and (max-width: 767px) {
  .block-maps__item .col-sm-6.col-4 {
    padding-right: 0;
  }
}

.block-maps__item img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .block-maps__item img {
    width: 100%;
    height: 112px;
  }
}

.block-maps__item h4 {
  line-height: 22px;
  text-align: left;
  margin-top: 30px;
}

.block-maps__item h4 a {
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  color: #2f2f2f;
  line-height: 22px;
}

@media only screen and (max-width: 767px) {
  .block-maps__item h4 {
    margin-top: 13px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.block-maps__item-view-more {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .block-maps__item-view-more {
    bottom: 15px;
    right: 5px;
  }
}

.block-maps__item-view-more img {
  width: auto;
}

@media only screen and (max-width: 767px) {
  .block-maps__item-view-more img {
    height: auto;
  }
}

/**
 * Blog Title 1
 */
/**
 * Blog Title 2
 */
.page-title {
  font-size: 24px;
  line-height: 28.8px;
  font-weight: bold;
  text-align: center;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media only screen and (max-width: 767px) {
  .page-title {
    font-size: 19px;
    line-height: 23px;
  }
}

.title_2 {
  font-size: 21px;
  line-height: 25.2px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .title_2 {
    font-size: 16px;
    line-height: 19.2px;
    text-align: left;
  }
}

.page-sub {
  font-size: 16px;
  line-height: 24.2px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-sub {
    font-size: 13px;
    line-height: 21px;
    text-align: left !important;
    border-bottom: none !important;
    letter-spacing: -1px;
  }
}

.title_3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .title_3 {
    font-size: 16px;
    line-height: 19.2px;
    text-align: left;
  }
}

.block-contact {
  padding-bottom: 85px;
}

@media only screen and (max-width: 767px) {
  .block-contact {
    padding-bottom: 0px;
  }
}

.block-contact .container {
  max-width: 1080px;
}

.block-contact__info {
  background: #f7f7f7;
  padding: 40px 100px;
  margin-top: 100px;
  margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .block-contact__info {
    margin-top: 50px;
    padding: 30px 22px 40px;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .block-contact__info {
    padding: 27px 25px;
  }
}

.block-contact__info h3 {
  font-family: "KoburinaGoStdN W6";
  font-weight: bold;
  color: #040f27;
  font-size: 30px;
  line-height: 45px;
  margin-right: 50px;
}

@media only screen and (max-width: 767px) {
  .block-contact__info h3 {
    font-size: 22px;
    line-height: 18px;
    text-align: center;
    margin: 0 0 18px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .block-contact__info h3 {
    font-size: 30px;
    line-height: 70px;
    margin-right: 33px;
    min-width: max-content;
  }
}

.block-contact__info p {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  color: #555555;
  line-height: 26px;
  margin-bottom: 30px;
}

.block-contact__info .phone {
  height: 110px;
  border: 1px solid #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-direction: column;
}

@media only screen and (max-width: 767px) {
  .block-contact__info .phone {
    margin-bottom: 15px;
  }
}

.block-contact__info .phone h5 {
  font-family: "Noto Sans JP";
  font-size: 32px;
  color: #2f2f2f;
  margin-bottom: 0px;
  margin-top: 3px;
  font-weight: bold;
}

.block-contact__info .phone span {
  font-family: "Noto Sans JP";
  color: #666666;
  font-size: 14px;
  font-weight: 400;
}

.block-contact__info .phone span:first-child {
  font-weight: 500;
  color: #262626;
}

.block-contact__info a {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  height: 110px;
  background: #3372b7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.block-contact__list img {
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .block-contact__list .col-sm-4 {
    padding: 0;
  }

  .block-contact__list .col-sm-4 img {
    width: 100%;
    margin-bottom: 5px;
  }

  .block-contact__list .col-sm-4:last-child img {
    margin-bottom: 0;
  }
}

.block-content {
  background: #fff;
  border-radius: 4px;
  padding: 18.5px 25px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  .block-content {
    padding: 16px;
  }
}

.block-content__header {
  background: #F9F9F9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 52px;
}

@media only screen and (max-width: 767px) {
  .block-content__header {
    display: none;
  }
}

.block-content__main-item {
  display: flex;
  align-items: center;
  margin: 0 0 22.5px;
}

@media only screen and (max-width: 767px) {
  .block-content__main-item {
    flex-direction: column;
  }
}

.block-content__main-item-info {
  width: 46%;
  display: flex;
  align-items: center;
}

.block-content__main-item-info.w-full {
  width: 100%;
}

.block-content__main-item-info.new {
  width: 77.4%;
}

@media only screen and (max-width: 767px) {
  .block-content__main-item-info {
    width: 100%;
    border-right: none;
  }
}

@media only screen and (max-width: 767px) {
  .block-content__main-item-info {
    width: 100% !important;
  }
}

.block-content__main-item-value {
  width: 54%;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .block-content__main-item-value {
    flex-direction: column;
    width: 46%;
    margin-right: 0;
    margin-left: auto;
  }
}

.block-content__img {
  width: 137px;
  height: 162px;
  object-fit: cover;
  margin-right: 12px;
}

.block-content:last-child {
  margin-bottom: 0;
}

.block-background {
  background: #F4F2F3;
  padding: 16px;
}

@media only screen and (max-width: 767px) {
  .block-background {
    margin: 0 -15px;
  }
}

.page-table-row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border-top: solid 1px #F2F2F2;
}

.page-table-row:last-child {
  border-bottom: solid 1px #F2F2F2;
}

@media only screen and (max-width: 767px) {
  .page-table-row {
    flex-direction: column;
    border-top: none;
  }

  .page-table-row:last-child {
    border-bottom: none;
  }

  .page-table-row-margin-sp {
    margin-bottom: 20px;
  }
}

.page-table-row p {
  margin-bottom: 0;
}

.page-table-row p.nickname {
  color: #A09179;
  min-width: 124px;
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .page-table-row p.nickname {
    font-size: 13px;
  }

  .page-table-row input {
    background: #FFFFFF;
  }
}

.page-table-row__title {
  width: 361px;
  background: #F9F9F9;
  padding: 25px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
}

.page-table__address {
  width: 100%;
  flex-direction: column;
}

.page-table-row-address {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  .page-table-row-address {
    display: block;
  }
}

.page-table-row__title_address {
  width: 100px;
  background: #F9F9F9;
  padding: 25px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
}

.page-table__address__title_sp {
  display: none;
}

.page-table-row__title_address_sub {
  width: 261px;
  background: #F9F9F9;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  border-left: solid 1px #F2F2F2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12.5px 25px;
}

@media only screen and (max-width: 767px) {
  .page-table-row__title {
    width: 100%;
    line-height: 15.6px;
    font-size: 13px;
    padding: 10px 0 5px 5px;
    font-weight: 500;
  }

  .page-table-row__title_address {
    display: none;
  }

  .page-table__address__title_sp {
    display: block;
    background: #F9F9F9;
    margin-bottom: 0;

    width: 100%;
    line-height: 15.6px;
    font-size: 12px;
    padding: 10px 0 5px 5px;
    font-weight: bold;
  }

  .page-table-row__title_address_sub {
    width: 100%;
    background: #FFFFFF;
    line-height: 15.6px;
    font-size: 13px;
    padding: 10px 0 5px 5px;
    font-weight: 500;
    border-left: none;
    justify-content: flex-start;
  }

  .page-table-row__title_address_sub p {
    font-size: 12px;
    margin-right: 18px;
    font-weight: bold;
  }
}

.page-table-row__sub {
  font-size: 16px;
  font-weight: 500;
  padding: 20px 25px;
  margin-bottom: 0;
  width: calc(100% - 361px);
}

.page-table-row__sub_address {
  font-size: 16px;
  font-weight: 500;
  padding: 20px 25px;
  margin-bottom: 0;
  width: calc(100% - 361px);
}

@media only screen and (max-width: 767px) {
  .page-table-row__sub {
    width: 100%;
    font-size: 13px;
    padding: 10px 0 5px 10px;
    line-height: 15.6px;
    font-weight: bold;
  }

  .page-table-row__sub_address {
    width: calc(100% - 100px);
    font-size: 13px;
    padding: 10px 0 5px 10px;
    line-height: 15.6px;
    font-weight: bold;
  }
}

.group-input-text {
  font-size: 12px;
  line-height: 14.4px;
  color: #B3B3B3;
  margin: 6px 0;
  font-weight: 500;
}

.page-table-row__sub .password-additional-text {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .page-table-row__sub .password-additional-text {
    white-space: normal;
  }
}

.page-table-row__name {
  width: 225px;
  padding: 35px;
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 500;
  border-right: solid 1px #F2F2F2;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .page-table-row__name {
    width: 100%;
    padding: 10px 0;
    font-size: 13px;
    line-height: 15.6px;
    border-right: none;
    align-items: flex-start;
  }
}

.page-table-row__value {
  width: calc(100% - 225px);
  padding: 35px;
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 500;
  border-left: solid 1px #F2F2F2;
}

@media only screen and (max-width: 767px) {
  .page-table-row__value {
    width: 100%;
    padding: 10px 0;
    font-size: 13px;
    line-height: 21px;
    border-left: none;
  }
}

.page-table-head {
  background: #F9F9F9;
}

@media only screen and (max-width: 767px) {
  .page-table-head {
    display: none;
  }
}

.page-table-head .page-table-row__name {
  padding: 15px 35px;
  font-size: 16px;
}

.page-table-head .page-table-row__value {
  padding: 15px 35px;
}

body {
  position: relative;
  -webkit-text-size-adjust: none;
}

.header-sp {
  text-align: center;
  background: #4bb5ef;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 44px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  padding: 0 50px;
}

.header-sp p {
  margin: 0 0 10px 0;
}

.header-sp a {
  color: inherit;
  text-decoration: underline;
}

.header-sp a:link {
  color: inherit;
  text-decoration: underline;
}

.header-sp a:active {
  color: inherit;
  text-decoration: underline;
}

.header-sp a:visited {
  color: inherit;
  text-decoration: underline;
}

.header-sp a:hover {
  color: inherit;
  text-decoration: underline;
}

.header-sp nav:not(.mm-menu) {
  display: none;
}

.header-sp a {
  display: block;
  width: 28px;
  height: 28px;
  padding: 11px;
  margin: 2px;
  position: absolute;
  top: 0;
  right: 0;
}

.header-sp a:before {
  content: '';
  display: block;
  background: #fff;
  height: 2px;
}

.header-sp a:after {
  content: '';
  display: block;
  background: #fff;
  height: 2px;
}

.header-sp a span {
  background: #fff;
  display: block;
  height: 2px;
  margin: 6px 0;
}

:root {
  --mm-sidebar-expanded-size: 100%;
}

@media only screen and (min-width: 992px) {
  #menu {
    display: none !important;
  }
}

@media only screen and (min-width: 1920px) {
  #menu {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  #mm-menu {
    display: none !important;
  }
}

@media only screen and (min-width: 1920px) {
  #mm-menu {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  .mm-slideout {
    transform: none !important;
    width: 100% !important;
  }
}

@media only screen and (min-width: 1920px) {
  .mm-slideout {
    transform: none !important;
    width: 100% !important;
  }
}

.mm-menu {
  --mm-listitem-size: 50px;
  --mm-navbar-size: 50px;
  --mm-color-background: #266cba;
  --mm-color-text: #fff;
}

.mm-navbar_tabs span {
  display: inline-block;
  margin-left: 8px;
}

.mm-navbar {
  border-bottom: none !important;
  margin-bottom: 20px;
}

.mm-listitem {
  font-weight: bold;
  font-size: 13.76px;
  font-family: "Noto Sans CJK JP Bold";
  height: 50px;
  border-color: #fff !important;
  margin: 0px 30px 0px 10px !important;
}

.mm-listitem a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  margin-left: 20px !important;
}

.mm-btn_close:after {
  border-color: #fff !important;
  width: 10px !important;
  height: 10px !important;
}

.mm-btn_close:before {
  border-color: #fff !important;
  width: 10px !important;
  height: 10px !important;
  right: 10px !important;
}

.btn-msg {
  width: 240px;
  height: 54px;
  line-height: 54px;
  background-color: #fff;
  color: #266cba;
  cursor: pointer;
  margin: 40px auto;
  border: none;
  outline: none;
  display: block;
  position: relative;
}

.btn-msg img {
  position: absolute;
  width: 30px;
  height: 20px;
  top: 17px;
  left: 50px;
  margin-right: 15px;
}

.btn-msg span {
  margin-left: 55px;
  font-size: 15.7px;
  font-family: "Noto Sans CJK JP Bold";
  font-weight: bold;
}

.group-input .w-160 {
  width: 160px;
}

@media only screen and (max-width: 767px) {
  .group-input .w-160 {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .group-input .w-25 {
    width: 40% !important;
  }
}

.group-input .w-139 {
  width: 139px;
}

@media only screen and (max-width: 767px) {
  .group-input .w-139 {
    width: 100%;
  }
}

.group-input-date {
  display: flex;
  align-items: center;
}

.group-input-date select {
  width: 125px !important;
}

.group-input-date label {
  margin-bottom: 0;
  margin-left: 5px;
}

@media only screen and (max-width: 767px) {
  .group-input-date label {
    margin-bottom: 0px;
  }
}

.group-input .fs-label {
  font-size: 14px !important;
}

@media only screen and (max-width: 767px) {
  .group-input .fs-label {
    font-size: 13px !important;
  }
}

.group-input .w-80 {
  max-width: 80px !important;
}

@media only screen and (max-width: 767px) {
  .group-input .w-80 {
    max-width: 125px !important;
  }
}

.group-input .w-145 {
  max-width: 145px !important;
  width: 145px;
}

@media only screen and (max-width: 767px) {
  .group-input .w-145 {
    max-width: 100% !important;
    width: 100%;
  }
}

.group-input [type="radio"]:checked,
.group-input [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.group-input [type="radio"]:checked+label,
.group-input [type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #393939;
  min-width: 150px;
  width: fit-content;
}

.group-input [type="radio"]:checked+label:before,
.group-input [type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  border: 1px solid #000;
  border-radius: 100%;
  background: #fff;
}

.group-input [type="radio"]:checked+label:after,
.group-input [type="radio"]:not(:checked)+label:after {
  content: '';
  width: 13px;
  height: 13px;
  background: #000;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.group-input [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.group-input [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.group-input input[type="text"],
.group-input [type="email"],
.group-input [type="password"],
.group-input [type="number"] {
  border: solid 1px #F2F2F2;
  height: 40px;
  padding: 9px 10px;
  width: 100%;
  max-width: 385px;
  font-weight: 500;
}

.page-contact__content .group-input input[type="text"],
.page-contact__content .group-input [type="email"],
.page-contact__content .group-input [type="password"],
.page-contact__content .group-input [type="number"] {
  border: solid 1px #F2F2F2;
  height: 40px;
  padding: 9px 10px;
  max-width: 564px;
  font-weight: 500;
}

.page-contact__content .group-input input[type="text"].error,
.page-contact__content .group-input [type="email"].error,
.page-contact__content .group-input [type="password"].error,
.page-contact__content .group-input [type="number"].error {
  border: solid 1px #FF1D25;
}

.group-input input[type="text"]::placeholder,
.group-input [type="email"]::placeholder,
.group-input [type="password"]::placeholder,
.group-input [type="number"]::placeholder {
  font-size: 16px;
  color: #E6E6E6;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {

  .group-input input[type="text"],
  .group-input [type="email"],
  .group-input [type="password"],
  .group-input [type="number"] {
    width: 100%;
    max-width: 100%;
    height: 45px;
  }

  .group-input input[type="text"].error,
  .group-input select.classic.error,
  .group-input [type="email"].error,
  .group-input [type="password"].error,
  .group-input [type="number"].error {
    border: solid 1px #FF1D25;
    background-color: #FFEEF0;
  }

  .page-contact__content .group-input input[type="text"],
  .page-contact__content .group-input [type="email"],
  .page-contact__content .group-input [type="password"],
  .page-contact__content .group-input [type="number"] {
    width: 285px;
    background: #F9F9F9;
    max-width: 385px;
  }
}

@media only screen and (min-width: 992px) {

  .group-input input[type="text"].error,
  .group-input [type="email"].error,
  .group-input [type="password"].error,
  .group-input [type="number"].error {
    border: solid 1px #FF1D25;
  }
}

@media only screen and (min-width: 1920px) {

  .group-input input[type="text"].error,
  .group-input [type="email"].error,
  .group-input [type="password"].error,
  .group-input [type="number"].error {
    border: solid 1px #FF1D25;
  }
}

.group-input select {
  border: solid 1px #F2F2F2;
  height: 40px;
  padding: 9px 23px;
  width: 100px;
  background-color: #FFffff;
  color: #393939;
  text-indent: 1px;
  text-overflow: '';
  -moz-appearance: none;
  -webkit-appearance: none;
}

@media only screen and (max-width: 767px) {
  .group-input select {
    width: 100%;
    height: 45px;
  }
}

.group-input select option {
  color: #393939;
}

.group-input select::-ms-expand {
  display: none;
}

.group-input select.classic {
  background-image: url("../img/inc/icon_arrow_down.png");
  background-position: calc(100% - 4px) calc((100% - 0px) /2), calc(100% - 10px) calc(1em + 2px), 100% 0;
  background-size: 10px 6px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  background-color: #F9F9F9;
}

.error-title {
  width: 100%;
  background: #FFEEF0;
  border: solid 1px #FF1D25;
  border-radius: 4px;
  padding: 20px 25px;
  margin: 35px 0;
  font-size: 16px;
  color: #FF1D25;
  font-weight: bold;
  height: 64px;
  display: none;
}

@media only screen and (max-width: 767px) {
  .error-title {
    font-size: 13px;
    padding: 5px 10px;
    margin: 0 0 20px 0;
  }
}

.breadcrumb {
  background: none;
  padding: .75rem 0;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0;
  }
}

.breadcrumb-item {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-item:nth-of-type(n+5) {
    display: none;
  }
}

.breadcrumb-item::before {
  content: ">" !important;
}

.breadcrumb-item:first-of-type:before {
  content: "" !important;
}

.breadcrumb-item:last-of-type {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-item img {
    display: none !important;
  }
}

.breadcrumb-item a {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-item a {
    font-size: 11px;
    line-height: 13.2px;
  }
}

.common-progress-box {
  padding: 2rem 0;
}

@media only screen and (max-width: 767px) {
  .common-progress-box {
    padding: .5rem 0;
  }
}

.common-progress-box__title {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  text-align: center;
  font-weight: bold;
}

.common-progress-bar--pc__item,
.common-progress-bar--pc__item--is-complete,
.common-progress-bar--pc__item--is-active {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-right: 65px;
}

@media only screen and (max-width: 767px) {

  .common-progress-bar--pc__item,
  .common-progress-bar--pc__item--is-complete,
  .common-progress-bar--pc__item--is-active {
    margin-right: 0px;
    font-size: 12px;
    min-width: 22%;
  }

  .common-progress-bar--pc__item:nth-child(2),
  .common-progress-bar--pc__item--is-complete:nth-child(2),
  .common-progress-bar--pc__item--is-active:nth-child(2) {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.common-progress-bar--pc__item a,
.common-progress-bar--pc__item--is-complete a,
.common-progress-bar--pc__item--is-active a {
  color: #cccccc;
}

.common-progress-bar--pc__item:last-child,
.common-progress-bar--pc__item--is-complete:last-child,
.common-progress-bar--pc__item--is-active:last-child {
  margin-right: 0px;
}

.common-progress-bar--pc__item:before,
.common-progress-bar--pc__item--is-complete:before,
.common-progress-bar--pc__item--is-active:before {
  content: attr(data-step);
  display: inline-block;
  margin-right: 15px;
  background: #cccccc;
  color: #fff;
  width: 43px;
  height: 43px;
  text-align: center;
  line-height: 43px;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {

  .common-progress-bar--pc__item:before,
  .common-progress-bar--pc__item--is-complete:before,
  .common-progress-bar--pc__item--is-active:before {
    display: block;
    width: 21.5px;
    height: 21.5px;
    line-height: 21.5px;
    font-size: 8px;
    margin: 0 auto;
  }
}

.common-progress-bar--pc {
  display: flex;
  justify-content: center;
  align-items: center;
  table-layout: fixed;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .common-progress-bar--pc {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.common-progress-bar--pc__item--is-complete::before,
.common-progress-bar--pc__item--is-complete::after {
  color: #fff;
  background-color: #b2aa9d;
}

.common-progress-bar--pc__item--is-active a {
  color: #b2aa9d;
}

.common-progress-bar--pc__item--is-active::before {
  color: #fff;
  background-color: #b2aa9d;
}

.common-progress-bar--next-active:after {
  background-color: #b2aa9d;
}

.common-progress-bar--sp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}

.common-progress-bar--sp__progress {
  color: #b2aa9d;
  font-size: 2rem;
}

.buttons_added {
  opacity: 1;
  display: inline-block;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .buttons_added {
    margin-bottom: 3px;
  }
}

.buttons_added .is-form {
  overflow: hidden;
  position: relative;
  background-color: #E6E6E6;
  height: 58px;
  width: 39px;
  padding: 0;
  text-shadow: 1px 1px 1px #fff;
  border: 1px solid #ddd;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .buttons_added .is-form {
    height: 48px;
    width: 39px;
  }
}

.buttons_added .is-form.minus img {
  width: 10px;
  height: 2px;
}

@media only screen and (max-width: 767px) {
  .buttons_added .is-form.minus img {
    height: 1px;
  }
}

.buttons_added .is-form.plus img {
  width: 10px;
  height: 10px;
  color: #000000;
}

.buttons_added .is-form:focus,
.buttons_added .input-text:focus {
  outline: none;
}

.buttons_added .input-qty {
  background-color: #fff;
  height: 58px;
  width: 60px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin: 0 12px;
  font-size: 18px;
  padding: 0;
  border: 1px solid #f2f2f2;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .buttons_added .input-qty {
    height: 48px;
    width: 40px;
    margin: 0 13px;
    font-size: 18px;
    font-weight: bold;
  }
}

.buttons_added .input-qty::-webkit-outer-spin-button,
.buttons_added .input-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
}

.form-radio-group__horizontal {
  flex-direction: column;
  align-content: flex-start;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .form-radio-group-two {
    flex-direction: row !important;
    height: auto !important;
  }
}

@media only screen and (max-width: 767px) {
  .form-radio-group__col {
    height: 150px !important;
  }

  .form-radio-group__col .radio-item {
    width: 45% !important;
  }
}

@media only screen and (max-width: 767px) {
  .form-radio-group {
    flex-direction: column;
    height: auto;
    align-content: flex-start;
  }
}

.form-radio-group .radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin: 10px 25px 0 0px;
}

@media only screen and (max-width: 767px) {
  .form-radio-group .radio-item {
    margin: 10px 0px 0 0px;
    width: 100%;
  }
}

.form-radio-group .radio-item__last {
  margin: 10px 12px 0 0px;
}

@media only screen and (max-width: 767px) {
  .form-radio-group .radio-item__last {
    margin: 10px 0px 0 0px;
  }
}

.form-radio-group .radio-item input[type='radio'] {
  display: none;
}

.form-radio-group .radio-item label {
  color: #666;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .form-radio-group .radio-item label {
    font-size: 13px;
  }
}

.form-radio-group .radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 19px;
  height: 19px;
  border-radius: 11px;
  border: 1px solid #393939;
  background-color: transparent;
}

@media only screen and (max-width: 767px) {
  .form-radio-group .radio-item label:before {
    width: 18.35px;
    height: 18.35px;
  }
}

.form-radio-group .radio-item input[type=radio]:checked+label:after {
  border-radius: 100%;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 9px;
  left: 10.2px;
  content: " ";
  display: block;
  background: #393939;
}

@media only screen and (max-width: 767px) {
  .form-radio-group .radio-item input[type=radio]:checked+label:after {
    top: 8.7px;
    left: 9.4px;
    width: 11.59px;
    height: 11.59px;
  }
}

body {
  position: relative;
  -webkit-text-size-adjust: none;
}

.header-sm {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999 !important;
  background-color: #ffffff;
}

header {
  height: 76px;
  background: #fff;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media only screen and (max-width: 767px) {
  header {
    height: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  header {
    height: 60px;
  }
}

header .sm-space-text {
  display: none;
  height: 1px;
}

@media only screen and (max-width: 767px) {
  header .sm-space-text {
    display: block;
  }
}

header .container {
  max-width: 1180px;
}

header #navbar-hidden {
  display: none;
  opacity: .9;
  width: 20px;
  height: 20px;
  margin-left: 5px;
}

header .header {
  height: 76px;
  border-bottom: solid 1px #F2F2F2;
}

header .header-height {
  height: 76px;
}

@media only screen and (max-width: 767px) {
  header .header-height {
    height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  header .header {
    height: 60px;
  }
}

header .header .box-shops {
  display: none;
  position: absolute;
  padding: 16px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 88;
  background-color: #FFFFFF;
  width: 784px;
  flex-wrap: wrap;
}

header .header .box-shops a {
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  header .header .box-shops a {
    margin-right: 0px;
    margin-bottom: 4px;
    display: block;
  }
}

header .header .box-shops a:nth-child(5),
header .header .box-shops a:last-child {
  margin-right: 0px;
}

header .header .box-shops a:nth-last-child(-n+3) {
  margin-top: 12px;
}

@media only screen and (max-width: 767px) {
  header .header .box-shops a:last-child {
    margin-bottom: 0px;
  }

  header .header .box-shops a:nth-last-child(-n+2) {
    margin-top: 0px;
  }

  header .header .box-shops a:nth-last-child(-n+4) {
    margin-top: 0px;
  }
}

header .header .box-shops img {
  width: 134px;
  height: 45px;
}

@media only screen and (max-width: 767px) {
  header .header .box-shops img {
    width: 140px;
    height: 47px;
  }
}

@media only screen and (max-width: 767px) {
  header .header .box-shops {
    flex-direction: column;
    width: 172px;
    margin-left: 70px;
  }
}

header .header__logo .menu-home {
  background-color: #B0B0B0;
  color: #FFFFFF;
  border-radius: 15px;
  font-weight: 500;
  padding: 6px 12px;
  height: 30px;
  min-width: 108px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
  line-height: 1.2;
  border: none;
}

@media only screen and (max-width: 767px) {
  header .header__logo .menu-home {
    line-height: 1;
    padding: 6px 10px;
    min-width: 75px;
    width: 75px;
    margin-left: 10px;
  }
}

header .header__logo .menu-home .text-shop {
  min-width: 80%;
  text-align: center;
  display: block;
}

@media only screen and (max-width: 767px) {
  header .header__logo .menu-home .text-shop {
    min-width: 50%;
  }
}

header .header__logo .menu-home__icon {
  cursor: pointer;
  margin-left: 10px;
}

header .header__logo .menu-home__icon:after {
  content: '\f107';
  font-family: FontAwesome;
  text-align: center;
}

header .header__logo .menu-home .icon-active:after {
  content: '\f106';
  font-family: FontAwesome;
}

@media only screen and (max-width: 767px) {
  header .header__logo img {
    width: 160px;
  }
}

header .header__user {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

header .header__user img {
  width: 20px;
  height: 20px;
}

header .header__cart {
  margin-top: 4px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  header .header__cart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

header .header__cart-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

header .header__cart-item:first-child {
  margin-right: 15px;
}

header .header__cart-item span {
  font-size: 10px;
  color: #251E1C;
}

header .header__cart-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: none;
  position: relative;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

header .header__cart-btn img {
  width: 20px;
  height: 20px;
}

header .header__cart-btn span {
  background: #C1272D;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -5px;
  font-size: 11px;
}

@media only screen and (max-width: 767px) {
  header .header__cart-btn span {
    width: 16px;
    height: 16px;
    font-size: 10px;
    right: -6px;
    top: -6px;
  }
}

footer .footer .footer-sm {
  display: none;
}

@media only screen and (max-width: 767px) {
  footer .footer .footer-sm {
    display: block;
    background-color: #EEEDE9;
    padding: 30px 16px 25px;
  }
}

footer .footer .footer-sm__image a img {
  width: 220px;
}

footer .footer .footer-sm__sub {
  font-size: 12px;
  font-weight: 500;
  margin-top: 10px;
}

footer .footer .footer-sm__images {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  background-color: #EEEEEE;
  margin-top: 10px;
  margin-left: -4px;
  margin-right: -4px;
}

footer .footer .footer-sm__images a {
  width: 33%;
  padding: 4px 6px 16px;
}

footer .footer .footer-sm__images a img {
  width: 100%;
  height: auto;
}

footer .footer-block {
  background: #EAE9E5;
}

@media only screen and (max-width: 767px) {
  footer .footer-block {
    height: auto;
    padding: 20px;
    background-color: #FFFFFF;
  }
}

footer .footer-block-title {
  font-size: 14px;
  line-height: 24.5px;
  text-align: center;
  font-weight: 600;
  display: block;
  position: relative;
}

@media only screen and (max-width: 767px) {
  footer .footer-block-title {
    font-size: 12px;
    display: none;
  }
}

footer .footer-block-title p {
  font-weight: 500;
  margin-bottom: 0;
}

footer .footer-block-title img {
  width: 307px;
}

@media only screen and (max-width: 767px) {
  footer .footer-block-title img {
    width: 100%;
  }
}

footer .footer-block-top {
  width: calc(100% - 0px);
  padding-right: 10px;
}

@media only screen and (max-width: 767px) {
  footer .footer-block-top {
    display: none;
  }
}

footer .footer-block-top-img {
  margin: 5px auto;
  padding: 0 5px;
}

footer .footer-block-top-img img {
  max-height: 74.8px;
  height: 100%;
  object-fit: cover;
}

footer .footer-block .bg-white {
  background-color: #fff !important;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  footer .footer-block .bg-white {
    height: auto;
    line-height: normal;
    background: none !important;
  }
}

@media only screen and (max-width: 767px) {
  footer .footer-block-bottom {
    flex-direction: column-reverse;
  }
}

footer .footer-block-bottom ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 20px;
}

@media only screen and (max-width: 767px) {
  footer .footer-block-bottom ul {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
    margin: 15px 0 0 0;
  }
}

footer .footer-block-bottom ul li {
  list-style: none;
}

@media only screen and (max-width: 767px) {
  footer .footer-block-bottom ul li {
    width: 50%;
    margin-bottom: 15px;
    padding-left: 10px;
  }
}

footer .footer-block-bottom ul li a {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 500;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  footer .footer-block-bottom ul li a {
    font-size: 12px;
    line-height: 14.4px;
  }
}

footer .footer-block-bottom ul li::before {
  content: "|";
  padding: 0 22.5px;
}

@media (max-width: 1200px) {
  footer .footer-block-bottom ul li::before {
    padding: 0 5px;
  }
}

@media only screen and (max-width: 767px) {
  footer .footer-block-bottom ul li::before {
    content: "-" !important;
    padding: 0 5px 0 0;
  }
}

footer .footer-block-bottom ul li:first-of-type::before {
  content: "";
  padding-left: 0;
}

@media only screen and (max-width: 767px) {
  footer .footer-block-bottom-credit img {
    width: 80px;
    height: 41px;
  }
}

footer .footer-copyright {
  height: 66px;
  line-height: 66px;
  background: #3A3A3A;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  footer .footer-copyright {
    height: 55px;
    line-height: 55px;
  }
}

.form-loading {
  width: 100%;
  height: 100vh;
  background-color: rgba(106, 107, 110, 0.9);
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-loading img {
  width: 48px;
}

.menu-sp {
  width: 100%;
  background-color: #EEEEEE;
  min-height: 100vh;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 60px;
  left: 0;
  height: 100%;
  overflow-y: auto;
  padding-bottom: 50px;
}

@media only screen and (min-width: 992px) {
  .menu-sp {
    display: none !important;
  }
}

.menu-sp__links {
  margin-bottom: 20px;
}

.menu-sp__groups {
  width: 100%;
}

.menu-sp__groups .active-link {
  font-weight: bold;
  color: #000000;
  background-color: #ddd6cd;
  width: calc(100% + 15px);
  padding-right: 15px;
}

.menu-sp__groups h5 {
  height: 60px;
  line-height: 60px;
  font-weight: bold;
  padding-left: 15px;
  font-size: 14px;
  margin: 0px;
}

.menu-sp__groups ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  background-color: #FFFFFF;
}

.menu-sp__groups ul li {
  border-bottom: 1px solid #e2e2e2;
  height: 50px;
  padding-right: 15px;
}

.menu-sp__groups ul li a {
  display: flex;
  height: 50px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 13px;
  padding: 0 0px 0 20px;
  font-weight: 500;
}

.menu-sp__groups ul li a:hover {
  font-weight: bold;
  text-decoration: underline;
}

.menu-sp__btn-logout {
  width: 100%;
  text-align: center;
  padding: 15px 16px;
  margin-bottom: 20px;
}

.menu-sp__btn-logout button {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  height: 50px;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
}

.menu-sp__images {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0 12px 30px;
  background-color: #EEEEEE;
}

.menu-sp__images a {
  width: 50%;
}

.menu-sp__images a img {
  width: 100%;
  padding: 4px;
  height: 74px;
}

.menu-sp__user {
  background-color: #575757;
  color: #fff;
  height: 85px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 16px 0px 25px;
}

.menu-sp__user-login {
  height: 68px;
}

.menu-sp__user .user-info {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
}

.menu-sp__user .user-info .icon_rank {
  width: 31px;
  height: auto;
  margin-right: 15px;
}

.menu-sp__user .user-info__icon {
  background-color: #fff;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  text-align: center;
  padding-top: 3px;
  margin-right: 15px;
}

.menu-sp__user .user-info__icon img.icon-login {
  width: 17px;
}

.menu-sp__user .user-info__icon img {
  width: 20px;
}

.menu-sp__user .user-info__name h6 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}

.menu-sp__user .user-info__level {
  font-size: 12px;
  font-weight: bold;
}

.menu-sp__user .user-info__level img {
  width: 14px;
  height: 18px;
}

.menu-sp__user .icon-show {
  cursor: pointer;
}

.menu-sp__user .icon-show:after {
  content: '\f107';
  font-family: FontAwesome;
  text-align: center;
}

.menu-sp__user .active-item:after {
  content: '\f106';
  font-family: FontAwesome;
}

.menu-sp .form-login-sm {
  display: none;
  max-height: 0;
}

.menu-sp__form {
  padding: 30px 16px 45px;
  border-bottom: 2px solid #e2e2e2;
}

.menu-sp__form .form-control {
  height: 45px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-sp__form .text-forgot {
  padding-left: 40px;
  margin-top: 25px;
}

.menu-sp__form .text-forgot a {
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
}

.menu-sp__form .text-signup {
  text-align: center;
  margin-top: 25px;
}

.menu-sp__form .text-signup a {
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
}

.menu-sp__amazon {
  padding: 35px 15px;
  text-align: center;
  border-bottom: 2px solid #e2e2e2;
}

.menu-sp__amazon-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}

.menu-sp__amazon-sub {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 20px;
}

.menu-sp__amazon-btn img {
  width: 165px;
  height: 44px;
}

.page-login {
  color: #393939;
  overflow: hidden;
}

.page-login .breadcrumb {
  background: none;
  padding: .75rem 0;
}

@media only screen and (max-width: 767px) {
  .page-login .breadcrumb {
    padding: 0;
  }
}

.page-login .breadcrumb-item::before {
  content: ">";
}

.page-login .breadcrumb-item:first-of-type:before {
  content: "";
}

@media only screen and (max-width: 767px) {
  .page-login .breadcrumb-item img {
    display: none;
  }
}

.page-login .breadcrumb-item a {
  font-size: 14px;
  line-height: 16.8px;
  color: #575757;
}

@media only screen and (max-width: 767px) {
  .page-login .breadcrumb-item a {
    font-size: 11px;
    line-height: 13.2px;
    color: #393939;
  }
}

.page-login-head {
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .page-login-head {
    font-size: 24px;
    line-height: 25.2px;
  }
}

.page-login-head-signup {
  font-size: 12px;
  line-height: 14.8px;
  position: absolute;
  right: 16px;
  display: none;
  text-decoration: underline;
}

.page-login-head-signup:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .page-login-head-signup {
    display: inline-block;
  }
}

.page-login-content {
  margin-bottom: 107px;
}

@media only screen and (max-width: 767px) {
  .page-login-content {
    margin-bottom: 0;
    margin-top: 26px;
  }
}

.page-login-content .btn-pg-primary {
  max-width: 420px;
  margin: 0 auto;
  display: block;
}

.page-login-content-title {
  font-size: 22px;
  line-height: 28.8px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-login-content-title {
    font-size: 16px;
    line-height: 19.2px;
    text-align: center;
    padding: 14px 0;
    height: 50px;
  }
}

.page-login-content-txt {
  font-size: 14px;
  line-height: 20.8px;
  margin: 36px 0 28px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-login-content-txt {
    font-size: 13px;
    line-height: 18.6px;
    margin: 16px 0;
  }

  .page-login-content-txt br {
    display: none;
  }
}

.page-login-content-form-group {
  margin-bottom: 20px;
}

.page-login-content-form-group label {
  font-size: 14px;
  line-height: 16.8px;
  display: block;
  font-weight: bold;
  margin-bottom: 12px;
}

.page-login-content-form-group input {
  border: solid 1px #D4D4D4;
  width: 100%;
  border-radius: 2px;
  height: 39px;
}

@media only screen and (max-width: 767px) {
  .page-login-content-form-group input {
    height: 45px;
  }
}

.page-login-content-form a:hover {
  color: #b2aa9d;
}

@media only screen and (max-width: 767px) {
  .page-login-content-amazon {
    text-align: center;
  }
}

.page-login-content-amazon p:first-of-type {
  font-size: 22px;
  line-height: 28.8px;
  font-weight: bold;
  margin: 73px 0 27px 0;
}

@media only screen and (max-width: 767px) {
  .page-login-content-amazon p:first-of-type {
    font-size: 16px;
    line-height: 19.2px;
    text-align: center;
    padding: 15px 0;
    margin: 55px 0 15px 0;
  }
}

.page-login-content-amazon img {
  margin: 0 auto;
  display: block;
}

@media only screen and (max-width: 767px) {
  .page-login-content-amazon img {
    width: 165px;
    height: 43.5px;
  }
}

.page-login .common__alert-error {
  padding: 19px 20px;
}

@media only screen and (max-width: 767px) {
  .page-login .common__alert-error {
    padding: 15px;
  }
}

@media only screen and (min-width: 992px) {
  .page-login .page-contact__content form .item-form .col-sm-4 {
    flex: 0 0 391px;
    max-width: 391px;
  }

  .page-login .page-contact__content form .item-form .col-sm-8 {
    flex: 0 0 calc(100% - 391px);
    max-width: calc(100% - 391px);
  }
}

@media only screen and (max-width: 767px) {
  .page-login .page-contact__content form .item-form .form-control {
    min-height: 50px;
  }
}

.page-login .page-contact__content form .label {
  min-height: 59px;
}

.page-login .w-735 {
  width: 735px !important;
  max-width: 100%;
}

.page-login .w-725 {
  width: 725px !important;
  max-width: 100%;
}

.history-detail__header {
  margin-top: 35px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media only screen and (max-width: 767px) {
  .history-detail__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.history-detail__header-date {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .history-detail__header-date {
    display: none;
  }
}

.history-detail__header-date-sm {
  display: none;
  background-color: #fff;
  width: 100%;
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .history-detail__header-date-sm {
    display: block;
    margin-bottom: 0px;
    padding: 20px 20px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .history-detail__header-left {
    padding-left: 15px;
  }
}

.history-detail__header-no {
  height: 52px;
  min-width: 258px;
  background: #EEEEEE;
  line-height: 52px;
  font-size: 16px;
}

.history-detail__header-no .no-title {
  width: 91px;
  height: 52px;
  background: #B3B3B3;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.history-detail__header-no .no-text {
  display: inline-block;
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 500;
}

.history-detail__header-btn-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .history-detail__header-btn-group {
    background-color: #fff;
    padding: 10px 20px;
    justify-content: space-between;
  }
}

.history-detail__header-btn-group button {
  height: 40px;
  font-size: 14px;
  margin-bottom: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.history-detail__header-btn-group button.button-custom-width {
  max-width: 210px !important;
  margin-right: .6rem;
}

@media only screen and (max-width: 767px) {
  .history-detail__header-btn-group button.button-custom-width {
    max-width: 48% !important;
    width: 48% !important;
  }
}

.history-detail__header-btn-group button:first-child {
  width: 228px;
}

.history-detail__header-btn-group button:last-child {
  width: 127px;
}

.history-detail__header-btn-group button.w-260 {
  width: 250px;
  border: 0;
  text-align: left;
  height: auto !important;
  color: #b2aa9d;
  cursor: default;
}

@media only screen and (max-width: 767px) {
  .history-detail__header-btn-group button.w-260 {
    width: 48%;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 767px) {
  .history-detail__header-btn-group button {
    width: 48%;
    padding: 0px;
    font-size: 13px;
    height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .history-detail__header-right {
    background-color: #EEEEEE;
    padding: 15px 15px 0px;
    width: 100%;
  }
}

.history-detail__data {
  padding: 20px 20px 20px;
  background: #EEEEEE;
}

@media only screen and (max-width: 767px) {
  .history-detail__data {
    padding: 15px 15px 15px;
  }
}

.history-detail__back {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .history-detail__back {
    margin-top: 35px;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .history-detail-btn button {
    width: 100%;
    font-size: 13px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.history-detail .break-sm {
  height: 1px;
  display: none;
}

@media only screen and (max-width: 767px) {
  .history-detail .break-sm {
    display: block;
  }
}

.page-layouts__row {
  margin-top: 75px;
}

@media only screen and (max-width: 767px) {
  .page-layouts__row {
    margin-top: 55px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .page-layouts__row [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

.page-layouts__container {
  width: 1150px;
  margin: 0px auto 0;
}

@media only screen and (max-width: 767px) {
  .page-layouts__container {
    width: 100%;
    padding: 0px;
  }
}

.page-layouts__container-left {
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .page-layouts__container-left {
    margin-right: 0px;
    display: none;
  }
}

.page-layouts__container-left-item {
  padding: 20px 5px 20px 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.page-layouts__container-left-item .item-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-layouts__container-left-item .item-content {
  font-size: 14px;
  font-weight: 500;
}

.page-layouts__container-left-item .item-content__row {
  line-height: 1.5;
}

.page-layouts__container-left-item .item-content__row a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .3rem .5rem .3rem 0rem;
}

.page-layouts__container-left-item .item-content__row a span:hover {
  text-decoration: underline;
  font-weight: bold;
}

.page-layouts__container-left-item .item-content__row-status {
  font-size: 12px;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.page-layouts__container-left-item .item-content__row-status img {
  width: 16px;
  height: 20.4px;
  margin-right: 3px;
  margin-left: 10px;
}

.page-layouts__container-left .active-link {
  font-weight: bold;
  color: #000000;
  background-color: #EEEEEE;
  border-radius: 3px;
}

.page-layouts__container-right {
  margin-left: 55px;
  margin-top: -20px;
}

@media only screen and (max-width: 767px) {
  .page-layouts__container-right {
    margin-left: 0px;
    margin-top: -20px;
  }
}

.page-layouts__container-right-title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-layouts__container-right-title {
    font-size: 20px;
  }
}

.page-layouts__container-right-title-sm {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-layouts__container-right-title-sm {
    font-size: 19px;
  }
}

.customer-history-list__right-search {
  margin-top: 35px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.customer-history-list__right-search .text-error-custom {
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search .text-error-custom {
    font-size: 14px;
    margin-right: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search {
    border-bottom: none;
    padding-bottom: 10px;
  }
}

.customer-history-list__right-search .label-search {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search .label-search {
    font-size: 18px;
  }
}

.customer-history-list__right-search .group-inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search .group-inputs {
    flex-direction: column;
    padding: 0 16px;
  }
}

.customer-history-list__right-search .group-inputs__from {
  display: flex;
  justify-content: space-between;
  width: 60%;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search .group-inputs__from {
    width: 100%;
    justify-content: flex-start;
  }
}

.customer-history-list__right-search .group-inputs__to {
  display: flex;
  justify-content: space-between;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search .group-inputs__to {
    width: 100%;
    margin-top: 20px;
    justify-content: flex-start;
  }
}

.customer-history-list__right-search .group-inputs .icon-space {
  padding-left: 20px;
  padding-right: 30px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search .group-inputs .icon-space {
    padding-left: 0px;
    padding-right: 0px;
  }

  .customer-history-list__right-search .group-inputs .icon-space img {
    width: 13px;
    height: 17.5px;
  }
}

.customer-history-list__right-search .group-inputs__item {
  width: 45%;
  display: flex;
  align-items: center;
}

.customer-history-list__right-search .group-inputs__item label {
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search .group-inputs__item label {
    font-size: 16px;
  }
}

.customer-history-list__right-search .group-inputs__item select {
  width: 131px;
  height: 39px !important;
  padding: 3px 15px 3px 30px;
  font-size: 18px;
  margin-right: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: .8;
  color: #393939;
  font-weight: 500;
}

.customer-history-list__right-search .group-inputs__item select option {
  padding-left: 50px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search .group-inputs__item select {
    width: 100px;
    height: 32px !important;
    min-height: 32px;
    font-size: 16px;
    padding: 3px 15px 3px 15px;
    background-position: calc(100% - 10px) 12px;
  }
}

.customer-history-list__right-search button {
  cursor: pointer;
  background: #B2AA9F;
  border: 1px solid #B2AA9F;
  border-radius: 1px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 420px;
  height: 64px;
  margin: 35px auto 0;
  display: block;
  text-align: center;
  line-height: 64px;
  border-radius: 6px;
}

.customer-history-list__right-search button:hover {
  background-color: rgba(178, 170, 157, 0.5);
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-search button {
    width: calc(100% - 32px);
    height: 50px;
    font-size: 14px;
    line-height: 50px;
  }
}

.customer-history-list__right-items {
  padding: 35px 0px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items {
    padding: 30px 16px;
  }
}

.customer-history-list__right-items .history-item {
  margin-bottom: 43px;
}

.customer-history-list__right-items .history-item:last-child {
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item:last-child {
    margin-bottom: 20px;
  }
}

.customer-history-list__right-items .history-item__no {
  margin-right: 35px;
  height: 64px;
  width: 272px;
  background: #EEEEEE;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__no {
    font-size: 12px;
    height: 48px;
    min-width: 200px;
    width: auto;
    margin-right: 1px;
  }
}

.customer-history-list__right-items .history-item__no-title {
  background: #B3B3B3;
  width: 75px;
  height: 64px;
  display: inline-block;
  color: white;
  text-align: center;
  vertical-align: middle;
  padding-top: 10px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__no-title {
    width: 55px;
    height: 48px;
    padding-top: 7px;
  }
}

.customer-history-list__right-items .history-item__no-text {
  width: calc(272px - 75px);
  text-align: center;
  font-weight: bold;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__no-text {
    min-width: 145px;
    max-width: 175px;
    width: auto;
    padding: 0px 10px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__date {
    display: none;
  }
}

.customer-history-list__right-items .history-item__date span {
  font-weight: 500;
  font-size: 14px;
}

.customer-history-list__right-items .history-item__date span:first-child {
  margin-right: 10px;
}

.customer-history-list__right-items .history-item__date span:last-child {
  margin-left: 10px;
}

.customer-history-list__right-items .history-item__date-sm {
  display: none;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__date-sm {
    font-size: 12px;
    display: flex !important;
    align-items: center;
  }

  .customer-history-list__right-items .history-item__date-sm span {
    font-weight: bold;
  }
}

.customer-history-list__right-items .history-item__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__top {
    margin-bottom: 20px;
  }
}

.customer-history-list__right-items .history-item__top-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.customer-history-list__right-items .history-item__top-btn button {
  width: 179px;
  height: 56px;
  line-height: 56px;
  color: #ffff;
  background: #B2AA9F;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #B2AA9F;
}

.customer-history-list__right-items .history-item__top-btn button:hover {
  background: rgba(178, 170, 157, 0.5);
}

.customer-history-list__right-items .history-item__top-btn button img {
  position: absolute;
  right: 15px;
  top: 24px;
  width: 4.3px;
  height: 8.6px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__top-btn button img {
    width: 2.2px;
    height: 4.3px;
    right: 5px;
    top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__top-btn button {
    width: 123.5px;
    height: 44px;
    line-height: 44px;
    font-size: 12px;
  }
}

.customer-history-list__right-items .history-item__name {
  font-size: 18px;
  width: 190px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__name {
    font-size: 14px;
    font-weight: bold;
  }
}

.customer-history-list__right-items .history-item__phase {
  text-align: center;
  font-weight: 500;
  margin-bottom: 17px;
  font-size: 14px;
  min-width: 40%;
  height: 63px;
  vertical-align: bottom;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__phase {
    margin-bottom: 0px;
    min-width: 28%;
    height: auto;
  }
}

.customer-history-list__right-items .history-item__phase .icon-box {
  width: 37px;
  height: 39.5px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__phase .icon-box {
    width: 24.75px;
    height: 26.41px;
  }
}

.customer-history-list__right-items .history-item__phase .icon-car {
  margin-top: 11.5px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__phase .icon-car {
    width: 36.45px;
    height: 23.09px;
    margin-top: 0px;
  }
}

.customer-history-list__right-items .history-item__phase img {
  margin-bottom: 3px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__phase {
    font-size: 12px;
    width: 20%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px;
    font-weight: bold;
  }
}

.customer-history-list__right-items .history-item__info {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__info {
    display: flex;
    font-size: 13px;
    font-weight: bold;
  }
}

.customer-history-list__right-items .history-item__info-number {
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__info-number {
    margin-right: 10px;
  }
}

.customer-history-list__right-items .history-item__info-text span {
  display: block;
}

.customer-history-list__right-items .history-item__status {
  font-size: 18px;
  padding-left: 20px;
  font-weight: 500;
  min-width: 60%;
  text-align: center;
  line-height: 1.25;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__status {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
  }
}

.customer-history-list__right-items .history-item__status .space-md {
  display: block;
  height: 1px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__status .space-md {
    display: none;
  }
}

.customer-history-list__right-items .history-item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__bottom {
    flex-direction: column;
  }
}

.customer-history-list__right-items .history-item__bottom-left {
  width: 62%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 30px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__bottom-left {
    width: 100%;
    padding-right: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.customer-history-list__right-items .history-item__bottom-right {
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__right-items .history-item__bottom-right {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 12px;
  }
}

.customer-history-list__back {
  width: 100%;
  text-align: center;
  margin: 25px auto 100px;
}

@media only screen and (max-width: 767px) {
  .customer-history-list__back .btn-outline-primary {
    max-width: 343px;
  }
}

.page-contact .space-md {
  display: block;
  height: 1px;
}

@media only screen and (max-width: 767px) {
  .page-contact .space-md {
    display: none;
  }
}

.page-contact__title-page {
  font-size: 24px;
  text-align: center;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 29px;
  margin-top: -10px;
}

@media only screen and (max-width: 767px) {
  .page-contact__title-page {
    font-size: 19px;
  }
}

.page-contact__desc-page {
  font-size: 18px;
  text-align: center;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 29px;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .page-contact__desc-page {
    font-size: 14px;
    text-align: left;
  }
}

.page-contact__desc-page2 p {
  font-size: 14px;
  text-align: center;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 24px;
  margin-top: 45px;
}

@media only screen and (max-width: 767px) {
  .page-contact__desc-page2 p {
    font-size: 12px;
    text-align: left;
    margin-top: 10px;
  }
}

.page-contact__contact-id {
  width: 510px;
  max-width: 100%;
  line-height: 58px;
  text-align: center;
  border: 1px solid #A09179;
  color: #A09179;
  font-size: 16px;
  font-family: Helvetica;
  display: inline-block;
  border-radius: 50px;
}

@media only screen and (max-width: 767px) {
  .page-contact__contact-id {
    line-height: 46px;
    font-size: 14px;
  }
}

.page-contact #contactForm {
  margin-top: 50px;
}

@media only screen and (min-width: 992px) {
  .page-contact__content {
    padding-left: 32.5px;
    margin-bottom: 148px;
  }

  .page-contact__content.pl-35 {
    padding-left: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .page-contact__content {
    margin-bottom: 20px;
  }

  .page-contact__content .btn-back-sm {
    padding: 0 31px;
  }
}

.page-contact__content__info {
  background: #EFEDEB;
  padding: 36px 40px 37px;
  margin-bottom: 60px;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info {
    padding: 25px 16.25px;
    margin-bottom: 30px;
    margin-right: -16px;
    margin-left: -16px;
    height: auto;
  }
}

.page-contact__content__info h4 {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.page-contact__content__info__phone {
  background: #fff;
  border-radius: 4px;
  padding: 20px 0 21px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info__phone {
    padding: 15px 0 7px;
  }
}

.page-contact__content__info__phone h5 {
  font-size: 16px;
  text-align: center;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info__phone h5 {
    font-size: 12px;
  }
}

.page-contact__content__info__phone>div {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info__phone>div {
    margin-top: 5px;
  }
}

.page-contact__content__info__phone>div span {
  font-size: 14px;
  color: #393939;
  font-family: NotoSansCJKjp-Medium;
  line-height: 30px;
  display: inline-block;
}

.page-contact__content__info__phone>div span:first-child:after {
  content: "|";
  margin: 0 15px;
  color: #333;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info__phone>div span {
    font-size: 10px;
  }

  .page-contact__content__info__phone>div span:first-child:after {
    margin: 0 5px;
    font-size: 16px;
  }
}

.page-contact__content__info__phone a.button {
  width: 300px;
  line-height: 30px;
  color: #fff;
  max-width: 100%;
  border-radius: 15px;
  background: #A09179;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info__phone a.button {
    font-size: 12px;
    pointer-events: auto;
  }
}

.page-contact__content__info__phone a.phone {
  font-weight: bold;
  font-size: 36px;
  line-height: 63px;
  color: #A09179;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info__phone a.phone {
    font-size: 28px;
    line-height: 52px;
  }
}

.page-contact__content__info__phone a.phone img {
  margin-right: 15px;
}

.page-contact__content__info h6 {
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .page-contact__content__info h6 {
    font-size: 11.7px;
    line-height: 20px;
    margin-top: 15px;
    text-align: left;
  }
}

.page-contact__content form .label {
  background: #F9F9F9;
  min-height: 64px;
  padding: 12px 30px;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.page-contact__content form .label label {
  margin-bottom: 0;
  font-size: 16px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 21px;
  color: #393939;
}

.page-contact__content form .label span.required {
  background: #C1272D;
  width: 60px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .page-contact__content form .label {
    background: none;
    padding: 0;
    justify-content: flex-start;
    line-height: normal;
    min-height: auto;
  }

  .page-contact__content form .label label {
    font-size: 12px;
  }

  .page-contact__content form .label span.required {
    background: #C1272D;
    width: 32px;
    height: 20px;
    line-height: 18px;
    font-size: 12px;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-left: 6px;
  }
}

.page-contact__content form .item-form {
  border-bottom: 1px solid #F2F2F2;
}

@media only screen and (min-width: 992px) {
  .page-contact__content form .item-form .col-sm-7 {
    flex: 0 0 454px;
    max-width: 454px;
  }

  .page-contact__content form .item-form .col-sm-5 {
    flex: 0 0 376px;
    max-width: 376px;
  }

  .page-contact__content form .item-form .form-control {
    width: 100%;
  }
}

.page-contact__content form .item-form small {
  color: #B3B3B3;
  font-size: 12px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  margin-top: 12px;
  display: block;
}

.page-contact__content form .item-form:first-child {
  border-top: 1px solid #F2F2F2;
}

@media only screen and (max-width: 767px) {
  .page-contact__content form .item-form:first-child select {
    height: 45px;
    background-position: calc(100% - 10px) 19px;
    font-size: 14.5px;
  }
}

.page-contact__content form .item-form:nth-child(2) .label {
  min-height: 180px;
}

.page-contact__content form .item-form:nth-child(2) .label.--height-180 {
  min-height: 181px;
}

@media only screen and (max-width: 767px) {
  .page-contact__content form .item-form:nth-child(2) .label {
    min-height: auto !important;
  }
}

.page-contact__content form .item-form:nth-child(2) textarea {
  height: 130px;
}

@media only screen and (max-width: 767px) {
  .page-contact__content form .item-form:nth-child(2) textarea {
    height: 180px;
  }
}

.page-contact__content form .item-form:nth-child(3) {
  margin-bottom: 65px;
}

@media only screen and (max-width: 767px) {
  .page-contact__content form .item-form {
    border: none !important;
    margin-bottom: 15px;
    font-size: 13px;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }

  .page-contact__content form .item-form:nth-child(3) {
    margin-bottom: 35px;
  }

  .page-contact__content form .item-form.border-bottom-mb {
    border-bottom: 1px solid #F2F2F2 !important;
    padding-bottom: 5px;
  }
}

.page-contact__content-inner {
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  .page-contact__content-inner {
    padding-left: 0;
  }
}

.page-contact__content-inner h6 {
  font-size: 16px;
  line-height: 24px;
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .page-contact__content-inner h6 {
    font-weight: bold;
  }
}

.page-contact__history-list__no-history {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .page-contact__history-list__no-history {
    font-size: 14px;
  }
}

.page-contact__history-list__item {
  background: #EEEEEE;
  padding: 20px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .page-contact__history-list__item {
    padding: 16px;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 0px;
    margin-top: -20px;
  }
}

.page-contact__history-list__item__inner {
  background: #fff;
  font-size: 14px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #393939;
  line-height: 21px;
}

@media only screen and (max-width: 767px) {
  .page-contact__history-list__item__inner {
    font-size: 12px;
  }
}

.page-contact__history-list__item__inner p {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
  .page-contact__history-list__item__inner p {
    line-height: 26px;
  }
}

.page-contact__history-list__item__inner p.border-item {
  border-right: 1px solid #dee2e6;
}

@media only screen and (max-width: 767px) {
  .page-contact__history-list__item__inner p.border-item {
    border-right: 0;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 4.5px;
    padding-top: 11px;
  }
}

@media only screen and (min-width: 992px) {
  .page-contact__history-list__item__inner h3 {
    margin-bottom: 11px;
  }
}

.page-contact__history-list__item__inner h3 a {
  display: block;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail {
    margin-left: -16px;
    margin-right: -16px;
  }
}

.page-contact__detail__title {
  display: inline-flex;
  height: 63px;
  background: #EEEEEE;
  text-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  padding-right: 20px;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__title {
    max-width: 100%;
  }
}

.page-contact__detail__title span {
  min-width: 96px;
  padding: 0 10px;
  text-align: center;
  background: #B3B3B3;
  color: #fff;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__title {
    height: 48px;
    font-size: 12px;
    font-weight: 500;
  }

  .page-contact__detail__title span {
    min-width: 90px;
    height: 48px;
    width: 90px;
    padding: 0 5px;
  }
}

.page-contact__detail__content {
  background: #EEEEEE;
  padding: 19px 20px 1px;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content {
    padding: 16px;
  }
}

.page-contact__detail__content-box {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-contact__detail__content-box textarea {
  height: 178px;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box {
    padding: 16px 16.5px 14px;
    margin-bottom: 16px;
  }

  .page-contact__detail__content-box:nth-child(2) {
    padding: 16px 16.5px 6px;
  }

  .page-contact__detail__content-box textarea {
    background: none;
    padding: 8px;
  }
}

@media only screen and (min-width: 992px) {
  .page-contact__detail__content-box .pr-sm-6 {
    padding-right: 6px;
  }

  .page-contact__detail__content-box .pl-sm-6 {
    padding-left: 6px;
  }
}

.page-contact__detail__content-box ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

.page-contact__detail__content-box ul li {
  border-bottom: 1px solid #F2F2F2;
}

.page-contact__detail__content-box ul li span {
  line-height: 52px;
  float: left;
  padding-left: 20px;
  font-size: 14px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #393939;
}

.page-contact__detail__content-box ul li span:first-child {
  background: #F9F9F9;
  width: 225px;
  max-width: 100%;
  font-size: 16px;
  font-weight: bold;
}

.page-contact__detail__content-box ul li span.fw-xs-b {
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box ul li span {
    line-height: 26px;
    font-size: 12px;
    padding-left: 16px;
  }

  .page-contact__detail__content-box ul li span:first-child {
    font-size: 14px;
    width: 100%;
    font-weight: bold;
  }
}

.page-contact__detail__content-box ul li:last-child {
  border-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box ul li {
    margin-bottom: 12px;
  }

  .page-contact__detail__content-box ul li:last-child {
    margin-bottom: 0px;
  }
}

.page-contact__detail__content-box h4 {
  color: #393939;
  font-size: 16px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 15px;
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box h4 {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box textarea {
    font-size: 13px;
  }
}

.page-contact__detail__content-box .list-item {
  border-bottom: 1px solid #F2F2F2;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-contact__detail__content-box .list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.page-contact__detail__content-box .list-item__top {
  line-height: 52px;
  align-items: center;
  margin-bottom: 10px;
}

.page-contact__detail__content-box .list-item__top .date {
  background: #F9F9F9;
  width: 258px;
  max-width: 100%;
  display: inline-block;
  padding-left: 20px;
  font-size: 16px;
  font-weight: bold;
  color: rgba(57, 57, 57, 0.5);
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box .list-item__top .date {
    padding-left: 16px;
  }
}

.page-contact__detail__content-box .list-item__top a.orange {
  background-color: #fadfbd;
  border-color: #f9c685;
}

.page-contact__detail__content-box .list-item__top a.blue {
  background-color: #bbd5f7;
  border-color: #73adfa;
}

.page-contact__detail__content-box .list-item__top a {
  min-width: 86px;
  padding: 0 10px;
  height: 31px;
  line-height: 31px;
  border: 1px solid #F2F2F2;
  text-align: center;
  display: inline-block;
  margin: 0 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box .list-item__top a {
    margin: 0 0px 0px 15px;
  }
}

.page-contact__detail__content-box .list-item__top span {
  font-size: 14px;
  font-weight: 500;
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box .list-item__top {
    flex-wrap: wrap;
    line-height: 34px;
    margin-bottom: 0;
  }

  .page-contact__detail__content-box .list-item__top .date {
    width: 100%;
    line-height: 26px;
    margin-bottom: 5px;
    font-size: 13px;
    margin-left: 0px;
  }

  .page-contact__detail__content-box .list-item__top a {
    margin-left: 0;
    font-size: 12px;
    font-weight: bold;
    color: #393939;
  }
}

@media only screen and (max-width: 767px) and (max-width: 767px) {
  .page-contact__detail__content-box .list-item__top a {
    margin-left: 1em;
  }
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box .list-item__top span {
    font-size: 12px;
    font-weight: 500;
    color: #393939;
    margin-left: 1em;
  }
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box .list-item {
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
}

.page-contact__detail__content-box .list-item p {
  font-size: 14px;
  color: #393939;
  margin: 0;
  line-height: 24px;
  font-weight: 500;
  word-break: break-all;
}

.page-contact__detail__content-box .list-item p:nth-child(2) {
  margin-bottom: 4.5px;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box .list-item p {
    font-size: 12px;
    margin-top: 0px;
    padding: 0 1em;
  }

  .page-contact__detail__content-box .list-item p:first-child {
    font-weight: bold;
  }
}

.page-contact__detail__content-box .list-item p:nth-child(3) {
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-box .list-item p:nth-child(3) {
    font-size: 11.5px;
  }
}

.page-contact__detail__content-confirm {
  font-size: 16px;
  font-weight: 500;
  color: #393939;
  line-height: 24px;
  border-top: 1px solid #F2F2F2;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-top: 12px;
  word-break: break-word;
}

@media only screen and (max-width: 767px) {
  .page-contact__detail__content-confirm {
    font-size: 13px;
    line-height: 21px;
    margin-top: 6px;
    padding-top: 6px;
  }
}

.page-contact .btn {
  border-radius: 6px;
}

#drop-zone-wrap,
.upload-label,
.drop-zone-txt {
  position: relative;
}

#drop-zone-wrap {
  text-align: center;
  /* ホバー時 */
  /* inputは隠す */
}

@media only screen and (min-width: 992px) {
  #drop-zone-wrap {
    padding: 10px;
    height: 105px;
    background: #EFEDEB;
    border: 1px dashed #b2aa9d;
  }

  #drop-zone-wrap.active {
    background: #E0D7CD;
    border-style: solid;
  }
}

@media only screen and (max-width: 767px) {
  #drop-zone-wrap {
    text-align: left;
  }
}

#drop-zone-wrap #drop-zone {
  width: 100%;
  cursor: pointer;
  z-index: 1;
  box-sizing: border-box;
}

@media only screen and (min-width: 992px) {
  #drop-zone-wrap #drop-zone {
    padding: 50px 10px 20px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

#drop-zone-wrap #drop-zone .drop-zone-txt {
  display: none;
}

@media only screen and (min-width: 992px) {
  #drop-zone-wrap #drop-zone .drop-zone-txt {
    display: inline-block;
    margin: 1em auto 0;
    font-size: 13px;
    text-align: center;
  }
}

#drop-zone-wrap #drop-zone .upload-label {
  z-index: 2;
}

#drop-zone-wrap .upload-label {
  margin-bottom: 0;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  border-radius: 3px;
}

@media only screen and (max-width: 767px) {
  #drop-zone-wrap .upload-label {
    min-width: 10em;
    width: 50%;
  }
}

#drop-zone-wrap .upload-label:before {
  content: "";
  display: inline-block;
  background: url("/ecassets/img/inc/icon_paperclip.svg") no-repeat 0 0;
  background-size: cover;
  width: 16px;
  height: 16px;
}

#drop-zone-wrap .upload-label:hover {
  box-shadow: 0 8px 10px -2px rgba(0, 0, 0, 0.2);
  /* 影を表示 */
}

#drop-zone-wrap .upload-label input {
  display: none;
}

.drop-zone-confirm img {
  max-width: 100%;
  height: auto;
}

.drop-zone-confirm .card-body {
  padding: 0.5em 1.25rem;
}

@media only screen and (max-width: 767px) {
  .drop-zone-confirm .card-body {
    padding: 0.5em 1rem;
  }
}

.drop-zone-confirm .card-body p {
  margin-bottom: 0;
  font-size: 13px;
}

.drop-zone-confirm .btn-delete.btn-primary {
  margin-top: 0.5em;
  height: 40px;
  line-height: 40px;
}

.drop-zone-confirm.row {
  margin-right: -5px;
  margin-left: -5px;
}

.drop-zone-confirm div[class^=col-] {
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (max-width: 767px) {
  .drop-zone-confirm div[class^=col-]:first-child {
    margin-bottom: 1em;
  }

  .drop-zone-confirm div[class^=col-]:nth-child(2) {
    margin-bottom: 1em;
  }
}

#contentDropZone {
  margin-top: 1em;
}

.page-fr .sp {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .page-fr .sp {
    display: block !important;
  }
}

.page-fr-right-title {
  font-size: 24px;
  line-height: 28.8px;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-title {
    font-size: 19px;
    line-height: 23px;
  }
}

.page-fr-right-group {
  margin: 77px 0;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group {
    margin: 25px 0;
  }
}

.page-fr-right-group-item {
  margin-bottom: 40px;
}

.page-fr-right-group-item .item-top {
  border-bottom: solid 1px #E2E2E2;
  height: 64px;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-top {
    height: 48px;
  }
}

.page-fr-right-group-item .item-top-name {
  display: flex;
  align-items: center;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-top-name {
    width: 55%;
  }
}

.page-fr-right-group-item .item-top-name p {
  font-size: 16px;
  line-height: 19.2px;
  display: inline-block;
  margin-bottom: 0;
  padding: 12px 21.5px;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-top-name p {
    font-size: 12px;
    line-height: 14.4px;
  }
}

.page-fr-right-group-item .item-top-name p:first-of-type {
  font-weight: bold;
  color: #fff;
  background: #B3B3B3;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-top-name p:first-of-type {
    padding: 10px 15px 7px 15px;
    min-width: 55px;
    height: 48px;
  }
}

.page-fr-right-group-item .item-top-name p:last-of-type {
  background: #EEEEEE;
  display: flex;
  align-items: center;
  font-weight: 500;
  height: 64px;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-top-name p:last-of-type {
    padding: 0 15px;
    height: 48px;
  }
}

.page-fr-right-group-item .item-top-date {
  font-weight: 500;
  padding-left: 34px;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-top-date {
    display: none;
    font-size: 12px;
    line-height: 14.4px;
    font-weight: bold;
    margin: 15px 0;
    padding-left: 0;
  }
}

.page-fr-right-group-item .item-top button {
  width: 179px;
  position: relative;
  height: 90%;
  margin-bottom: 10px;
  margin-right: 0;
  margin-left: auto;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-top button {
    width: 123.5px;
    margin-bottom: 5px;
    height: 42px;
    font-size: 12px;
  }
}

.page-fr-right-group-item .item-top button img {
  position: absolute;
  right: 10px;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-top button img {
    width: 2.2px !important;
    height: 4.31px !important;
    top: 45%;
  }
}

.page-fr-right-group-item .item-bottom.header {
  margin-bottom: -10px;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-bottom.header {
    display: none !important;
  }
}

.page-fr-right-group-item .item-bottom.header .item-bottom-img,
.page-fr-right-group-item .item-bottom.header .item-bottom-price,
.page-fr-right-group-item .item-bottom.header .item-bottom-piece {
  min-height: 52px;
  background: #F9F9F9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-fr-right-group-item .item-bottom.header .item-bottom-img p,
.page-fr-right-group-item .item-bottom.header .item-bottom-price p,
.page-fr-right-group-item .item-bottom.header .item-bottom-piece p {
  margin-bottom: 0;
}

.page-fr-right-group-item .item-bottom.header .item-bottom-price,
.page-fr-right-group-item .item-bottom.header .item-bottom-piece {
  border-left: solid 1px #ffffff;
}

.page-fr-right-group-item .item-bottom {
  margin: 22.5px 0;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-bottom {
    flex-wrap: wrap;
    color: #000000;
  }
}

.page-fr-right-group-item .item-bottom-img {
  padding-right: 25px;
  display: flex;
  align-items: center;
  justify-content: left;
  width: 76%;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-bottom-img {
    width: 100%;
    padding-right: 0;
    align-items: flex-start;
  }
}

.page-fr-right-group-item .item-bottom-img .sp-info-container {
  width: 100%;
  text-align: right;
}

.page-fr-right-group-item .item-bottom-img .sp-info-container p {
  width: 100%;
  margin-bottom: 18px;
  border: none;
  display: block;
}

.page-fr-right-group-item .item-bottom-img .sp-info-container p.name {
  text-align: left;
}

.page-fr-right-group-item .item-bottom-img .sp-info-container div:first-of-type {
  border-top: 1px solid #F2F2F2;
  padding: 10px 0;
  margin-bottom: 10px;
}

.page-fr-right-group-item .item-bottom-img .sp-info-container div p:first-child {
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 0;
}

.page-fr-right-group-item .item-bottom-img .sp-info-container div p:last-child {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0;
}

.page-fr-right-group-item .item-bottom-img img {
  width: 137px;
  height: 137px;
  object-fit: cover;
  background-color: #F2F2F2;
  margin-right: 24px;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-bottom-img img {
    width: 137px;
    height: 137px;
  }
}

.page-fr-right-group-item .item-bottom-img .name {
  font-size: 16px;
  line-height: 22.6px;
  font-weight: bold;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-bottom-img .name {
    display: none;
  }
}

.page-fr-right-group-item .item-bottom-img .name span {
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 500;
  padding: 5px 0;
}

.page-fr-right-group-item .item-bottom-piece {
  font-size: 16px;
  line-height: 22.6px;
  border-left: solid 1px #F2F2F2;
  width: 24%;
  text-align: center;
  height: 100%;
  min-height: 162px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group-item .item-bottom-piece {
    display: none;
  }
}

.page-fr-right-group .btn-change {
  max-width: 200px;
  height: 40px;
  background: #b2aa9d;
  border: solid 1px #b2aa9d;
  padding: 1px 30px 1px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  border-radius: 6px;
  transition: all .3s;
}

.page-fr-right-group .btn-change:hover {
  background: rgba(178, 170, 157, 0.5);
}

.page-fr-right-group .btn-change img {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 12px;
  height: 15px;
  object-fit: cover;
  background-color: transparent;
}

.page-fr-right-group .btn-change:disabled {
  background-color: transparent;
  border-color: #C1272D;
  color: #C1272D;
  cursor: default;
  text-align: center;
  min-width: 126px;
}

.page-fr-right-group .btn-change:disabled:hover {
  background-color: transparent;
}

.page-fr-right-group .pagination .active {
  background: #F4F2F3;
}

.page-fr-right-group .pagination .active .page-link {
  border-bottom: rgba(255, 255, 255, 0) !important;
}

.page-fr-right-group .pagination .page-item {
  width: 52px;
  height: 54px;
  text-align: center;
  margin: 0 10px;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group .pagination .page-item {
    width: 36px;
    height: 37.5px;
    border: none;
  }
}

.page-fr-right-group .pagination .page-item:last-of-type .page-link,
.page-fr-right-group .pagination .page-item:first-of-type .page-link {
  border: none !important;
}

.page-fr-right-group .pagination .page-item:last-of-type .page-link span,
.page-fr-right-group .pagination .page-item:first-of-type .page-link span {
  display: none;
}

@media only screen and (max-width: 767px) {

  .page-fr-right-group .pagination .page-item:last-of-type .page-link img,
  .page-fr-right-group .pagination .page-item:first-of-type .page-link img {
    display: none;
  }

  .page-fr-right-group .pagination .page-item:last-of-type .page-link span,
  .page-fr-right-group .pagination .page-item:first-of-type .page-link span {
    display: block;
  }
}

.page-fr-right-group .pagination .page-item.active .page-link {
  border: none !important;
}

.page-fr-right-group .pagination .page-item .page-link {
  font-size: 16px;
  line-height: 54px;
  color: #393939;
  width: 52px;
  height: 54px;
  padding: 0 0px;
  margin: 0px 0px;
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group .pagination .page-item .page-link {
    font-size: 11px;
    line-height: 37.5px;
    width: 100%;
    border: none !important;
  }
}

.page-fr-right-group .pagination .page-item .page-link:hover {
  background: #F4F3F2 !important;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group .pagination .page-item .page-link img {
    width: 4px;
    height: 8px;
    object-fit: contain;
  }
}

.page-fr-right-group .btn-return {
  display: block;
  max-width: 420px;
  height: 64px;
  margin: 0 auto;
  background: none;
  border: solid 1px #393939;
  width: 100%;
  cursor: pointer;
  transition: linear .3s;
  font-weight: bold;
}

.page-fr-right-group .btn-return:hover {
  background: #393939;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .page-fr-right-group .btn-return {
    font-size: 14px;
    line-height: 16.2px;
    height: 50px;
  }
}

.page-card {
  width: 100%;
}

.page-card__description {
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .page-card__description {
    font-size: 13px;
    text-align: left;
    padding: 0 16px;
  }
}

.page-card__list {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .page-card__list {
    padding: 0 16px;
  }
}

.page-card__list-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-card__list-title {
    font-size: 16px;
    text-align: left;
  }
}

.page-card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .page-card__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .page-card__item-action {
    width: 100%;
    text-align: right;
  }
}

.page-card__item-info {
  font-weight: 500;
}

.page-card__item-info span:first-child {
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-card__item-info span:first-child {
    font-weight: bold;
    font-size: 12px;
  }
}

.page-card__item-info span:last-child {
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .page-card__item-info span:last-child {
    font-weight: 500;
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .page-card__item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .page-card__item-info span {
    display: block;
    line-height: 30px;
  }
}

.page-card__item-btn {
  background-color: #b2aa9d;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  width: 115px;
  position: relative;
  border-radius: 6px;
}

@media only screen and (max-width: 767px) {
  .page-card__item-btn {
    font-size: 12px;
    height: 48px;
    width: 123.5px;
    font-weight: bold;
  }
}

.page-card__item-btn:hover {
  background-color: rgba(178, 170, 157, 0.5);
}

.page-card__item-btn img {
  position: absolute;
  right: 10px;
  top: 15px;
  width: 8.61px;
  height: 8.61px;
}

@media only screen and (max-width: 767px) {
  .page-card__item-btn img {
    top: 21px;
  }
}

@media only screen and (max-width: 767px) {
  .page-card__item-btn img {
    width: 4.25px;
    height: 4.25px;
  }
}

.page-card__item-btn-edit {
  margin-right: 10px;
  cursor: pointer;
}

.page-card__item-btn-edit img {
  top: 16px;
  width: 4.5px;
  height: 8.61px;
}

@media only screen and (max-width: 767px) {
  .page-card__item-btn-edit img {
    top: 21px;
    width: 2.12px;
    height: 4.3px;
  }
}

.page-card__back-list {
  margin-top: 30px;
  width: 100%;
  text-align: center;
  margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .page-card__form {
    padding: 0 16px;
  }
}

.page-card__form .text-error {
  color: #FF1D25;
  font-weight: bold;
  font-size: 12px;
  padding-right: 15px;
}

@media only screen and (max-width: 767px) {
  .page-card__form .text-error {
    padding-right: 10px;
  }
}

.page-card__form-title {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-card__form-title {
    font-size: 16px;
    text-align: left;
  }
}

.page-card__form form label.error {
  display: block;
  width: 100%;
  float: left;
}

.page-card__form form .error-custom {
  display: block;
  width: 100%;
  float: left;
  font-size: 12px;
  color: #FF1D25;
  font-weight: bold;
  padding-top: 5px;
  margin-bottom: 0px;
}

.page-card__form form .form-date-custom .text-year {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .form-date-custom .text-year {
    font-size: 15px;
    display: none;
  }
}

.page-card__form form .form-date-custom span {
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .form-date-custom span {
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .page-card__form form .form-date-custom:first-child {
    margin-right: 25px;
  }
}

.page-card__form form .form-date-custom select {
  width: 80px;
  padding-right: 10px;
  font-size: 16px;
  background-color: #fff;
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .form-date-custom select {
    width: 125px;
    height: 45px !important;
    background-color: #F9F9F9;
    font-size: 16px;
  }
}

.page-card__form form .form-input-custom {
  display: flex;
  align-items: center;
}

.page-card__form form .form-input-custom input {
  width: 120px;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .form-input-custom input {
    height: 45px;
  }
}

.page-card__form form .form-input-custom .sub-text-input {
  color: #B3B3B3;
  font-size: 12px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .form-input-custom .sub-text-input {
    margin-left: .3rem !important;
  }
}

.page-card__form form .item-form {
  border-bottom: 1px solid #F2F2F2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F9F9F9;
}

.page-card__form form .item-form .errorClass {
  background: #FFEEF0;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .item-form .errorClass {
    background: none;
  }
}

.page-card__form form .item-form__label {
  width: 361px;
  background: #F9F9F9;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .item-form__label {
    width: 100%;
    background: #fff;
  }
}

.page-card__form form .item-form__label label {
  padding: 12px 30px;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .item-form__label label {
    padding: 0px;
    min-height: 20px;
    font-size: 12px;
    margin-bottom: 0px;
  }
}

.page-card__form form .item-form__input {
  width: calc(100% - 361px);
  padding-left: 26px;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .item-form__input .form-control {
    height: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .page-card__form form .item-form__input {
    width: 100%;
    padding-left: 0px;
  }
}

.page-card__form form .item-form:first-child {
  border-top: 1px solid #F2F2F2;
}

.page-card__form form .item-form-last {
  margin-bottom: 65px;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .item-form-last .label {
    min-height: auto;
  }
}

.page-card__form form .item-form-last textarea {
  height: 130px;
}

.page-card__form form .item-form-last small {
  color: #B3B3B3;
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
  display: block;
}

@media only screen and (max-width: 767px) {
  .page-card__form form .item-form {
    flex-direction: column;
    background: #fff;
    border: none !important;
    margin-bottom: 15px;
    padding: 0 .5em;
  }

  .page-card__form form .item-form__id {
    margin-bottom: 8px;
  }

  .page-card__form form .item-form:nth-child(2) {
    margin-bottom: 12px;
  }

  .page-card__form form .item-form.border-bottom-mb {
    border-bottom: 1px solid #F2F2F2 !important;
    padding-bottom: 5px;
  }
}

.page-card__note {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .page-card__note {
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.page-card__note-title {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.page-card__note-description {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .page-card__note-description {
    font-size: 13px;
  }
}

.page-card__note-left {
  width: 361px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 35px 35px 20px;
  height: 230px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-left {
    width: 100%;
    margin-bottom: 20px;
    height: 187px;
    padding: 25px 35px 20px;
  }
}

.page-card__note-left .group-card {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-left .group-card {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}

.page-card__note-left .group-card img {
  width: 56px;
  height: 36px;
}

.page-card__note-right {
  width: 400px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 35px 16px 20px;
  height: 230px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right {
    width: 100%;
    height: 467px;
  }
}

.page-card__note-right .card-info {
  display: flex;
  justify-content: space-around;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info {
    flex-direction: column;
    margin-top: 10px;
  }
}

.page-card__note-right .card-info__before {
  width: 50%;
  text-align: center;
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info__before {
    width: 100%;
    margin-bottom: 25px;
  }
}

.page-card__note-right .card-info__before img {
  width: 113px;
  height: 64px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info__before img {
    width: 150px;
    height: 74px;
  }
}

.page-card__note-right .card-info__before .card-info__description {
  padding-right: 10px;
}

.page-card__note-right .card-info__after {
  width: 50%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info__after {
    width: 100%;
  }
}

.page-card__note-right .card-info__after img {
  width: 123px;
  height: 74px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info__after img {
    width: 175px;
    height: 84px;
  }
}

.page-card__note-right .card-info__after .card-info__sub {
  margin-top: 1px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info__after .card-info__sub {
    margin-top: 10px;
  }
}

.page-card__note-right .card-info__after .card-info__description {
  padding-left: 10px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info__after .card-info__description {
    padding-left: 0px;
  }
}

.page-card__note-right .card-info__sub {
  font-size: 12px;
  font-weight: bold;
  margin-top: 7px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info__sub {
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 14px;
  }
}

.page-card__note-right .card-info__description {
  font-size: 12px;
  font-weight: 500;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  .page-card__note-right .card-info__description {
    font-size: 13px;
  }
}

.modal-delete .modal-backdrop {
  opacity: 0 !important;
}

.modal-delete.show {
  align-items: flex-start !important;
}

.modal-delete .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #bf1f1f !important;
}

.modal-delete .modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

.modal-delete .modal-content {
  width: 419px;
  height: 137px;
  margin-left: 210px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: none;
}

@media only screen and (max-width: 767px) {
  .modal-delete .modal-content {
    width: calc(100vw - 16px);
    height: auto;
    margin-left: 0px;
  }
}

.modal-delete .modal-body {
  padding: 20px 15px 15px 25px;
}

.modal-delete .modal-body .text-confirm {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .modal-delete .modal-body .text-confirm {
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .modal-delete .modal-body {
    padding: 20px 15px 15px 20px;
  }
}

.modal-delete .buttons-confirm {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.modal-delete .buttons-confirm button {
  width: 101px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
}

.modal-delete .buttons-confirm button:first-child {
  color: #29ABe2;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 10px;
}

.modal-delete .buttons-confirm button:last-child {
  color: #ffffff;
  background: #29ABe2;
  border: none;
}

@media only screen and (max-width: 767px) {
  .modal .modal-content h4 {
    font-size: 18px;
  }
}

.review-entry__subtext {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .review-entry__subtext {
    font-size: 13px;
    text-align: left;
    padding: 0px 16px;
  }
}

.review-entry__product {
  width: 100%;
  background-color: #EEEEEE;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
  height: 271px;
}

@media only screen and (max-width: 767px) {
  .review-entry__product {
    padding: 15px 16px;
    height: 515.5px;
  }
}

.review-entry__product .product-entry {
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  height: 231px;
}

@media only screen and (max-width: 767px) {
  .review-entry__product .product-entry {
    flex-direction: column;
    padding: 15px 16px;
    height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .review-entry__product .product-entry__image {
    width: 100%;
  }
}

.review-entry__product .product-entry__image img {
  width: 190px;
  height: 190px;
}

@media only screen and (max-width: 767px) {
  .review-entry__product .product-entry__image img {
    width: 100%;
    height: 310px;
  }
}

.review-entry__product .product-entry__text {
  margin-left: 40px;
}

@media only screen and (max-width: 767px) {
  .review-entry__product .product-entry__text {
    width: 100%;
    margin-left: 0px;
    margin-top: 15px;
  }
}

.review-entry__product .product-entry__text-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  .review-entry__product .product-entry__text-name {
    font-size: 16px;
  }
}

.review-entry__product .product-entry__text-description {
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .review-entry__product .product-entry__text-description {
    font-size: 13px;
    line-height: 1.6;
  }
}

.review-entry .entry-form {
  margin-top: 30px;
  padding: 10px 0px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form {
    padding: 10px 16px;
  }
}

.review-entry .entry-form .row {
  margin-right: 0px;
  margin-left: 0px;
}

.review-entry .entry-form .row .col-sm-5 {
  width: 361px;
  max-width: 361px;
  flex: 0 0 361px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form .row .col-sm-5 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.review-entry .entry-form .row .col-sm-7 {
  width: calc(100% - 361px);
  max-width: calc(100% - 361px);
  flex: 0 0 calc(100% - 361px);
  padding-right: 0px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form .row .col-sm-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.review-entry .entry-form .row .col-sm-7 .px-sm-3 {
  padding-right: 22px !important;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form .row .col-sm-7 .px-sm-3 {
    padding-right: 0px !important;
  }
}

.review-entry .entry-form__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form__title {
    font-size: 16px;
  }
}

.review-entry .entry-form form .label {
  background: #F9F9F9;
  min-height: 64px;
  padding: 12px 30px;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.review-entry .entry-form form .label label {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 21px;
  color: #393939;
}

.review-entry .entry-form form .label span.required {
  background: #C1272D;
  width: 60px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form form .label {
    background: none;
    padding: 0;
    justify-content: flex-start;
    line-height: normal;
    min-height: auto;
  }

  .review-entry .entry-form form .label label {
    font-size: 12px;
  }

  .review-entry .entry-form form .label span.required {
    background: #C1272D;
    width: 32px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-left: 6px;
  }
}

.review-entry .entry-form form .text-note {
  font-size: 12px;
  width: 100%;
  color: #B3B3B3;
  white-space: pre-line;
  text-align: justify;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form form .text-note-star {
    padding-left: 20px;
  }
}

.review-entry .entry-form form textarea {
  height: 180px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form form textarea {
    height: 245px;
  }
}

.review-entry .entry-form form .star-groups {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 345px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form form .star-groups {
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 35px;
  }
}

.review-entry .entry-form form .star-groups input.star {
  opacity: 0;
}

.review-entry .entry-form form .star-groups label.star {
  font-size: 24px;
  color: #444;
  transition: all .2s;
  margin-bottom: 0px;
  margin-right: 25px;
  width: 22.43px !important;
  height: 21.33px !important;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form form .star-groups label.star {
    font-size: 40.11px;
    padding-right: 0px;
  }
}

.review-entry .entry-form form .star-groups label.star:after {
  content: '\f005';
  font-family: FontAwesome;
  color: #E6E6E6;
  width: 22.43px;
  height: 21.33px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form form .star-groups label.star:after {
    width: 37.45px;
    height: 35.42px;
  }
}

.review-entry .entry-form form .star-groups input.star:checked~label.star:after {
  content: '\f005';
  color: #A09179;
  transition: all .25s;
}

.review-entry .entry-form form .item-form {
  border-bottom: 1px solid #F2F2F2;
}

.review-entry .entry-form form .item-form:first-child {
  border-top: 1px solid #F2F2F2;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form form .item-form {
    border: none !important;
    margin-bottom: 15px;
  }

  .review-entry .entry-form form .item-form:nth-child(2) {
    margin-bottom: 35px;
  }

  .review-entry .entry-form form .item-form.border-bottom-mb {
    border-bottom: 1px solid #F2F2F2 !important;
    padding-bottom: 5px;
  }

  .review-entry .entry-form form .item-form input.form-control {
    height: 45px;
  }
}

.review-entry .entry-form form .entry-btn {
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-form form .entry-btn {
    padding: 0px;
  }
}

.review-entry .entry-description {
  margin-top: 30px;
  padding: 10px 0px;
}

.review-entry .entry-description__title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__title {
    font-size: 16px;
  }
}

.review-entry .entry-description__box {
  width: 100%;
  padding: 20px;
  background-color: #EEEEEE;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__box {
    padding: 15px 16px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.review-entry .entry-description__content {
  background-color: #FFFFFF;
  padding: 35px 55px;
  font-size: 14px;
  font-weight: 500;
  white-space: pre-line;
  text-align: justify;
  height: 455px;
  overflow-y: scroll;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__content {
    padding: 18px;
    height: 310px;
    font-size: 12px;
  }
}

.review-entry .entry-description__content::-webkit-scrollbar {
  width: 10px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__content::-webkit-scrollbar {
    width: 5px;
  }
}

.review-entry .entry-description__content::-webkit-scrollbar-track {
  background: #E6E6E6;
}

.review-entry .entry-description__content::-webkit-scrollbar-thumb {
  background: #A09179;
  height: 40px;
}

.review-entry .entry-description__content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.review-entry .entry-description .error-custom {
  display: block;
  width: 100%;
  float: left;
  font-size: 12px;
  color: #FF1D25;
  font-weight: bold;
  padding-top: 5px;
  margin-bottom: 0px;
}

.review-entry .entry-description__confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.review-entry .entry-description__confirm .text-required {
  width: 60px;
  height: 20px;
  text-align: center;
  background-color: #C1272D;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  margin-right: 40px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__confirm .text-required {
    margin-right: 20px;
    width: 32px;
    height: 20px;
  }
}

.review-entry .entry-description__confirm .label-checkbox {
  font-weight: bold;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__confirm .label-checkbox {
    font-size: 12px;
  }
}

.review-entry .entry-description__confirm .checkbox-confirm {
  width: 28px;
  height: 28px;
  position: relative !important;
  left: auto !important;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__confirm .checkbox-confirm {
    width: 24px;
    height: 24px;
  }
}

.review-entry .entry-description__confirm .checkbox-confirm:after {
  width: 28px;
  height: 28px;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__confirm .checkbox-confirm:after {
    width: 24px;
    height: 24px;
  }
}

.review-entry .entry-description__confirm .checkbox-confirm:before {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid #F2f2f2;
  content: "";
  background: #FFF;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__confirm .checkbox-confirm:before {
    width: 24px;
    height: 24px;
  }
}

.review-entry .entry-description__confirm .checkbox-confirm:after {
  position: relative;
  display: block;
  left: 2px;
  top: -28px;
  width: 28px;
  height: 28px;
  border: none;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  .review-entry .entry-description__confirm .checkbox-confirm:after {
    top: -24px;
    width: 24px;
    height: 24px;
  }
}

.review-entry .entry-description__confirm .checkbox-confirm:checked:after {
  background-image: url("../img/review/icon-check.png");
}

.review-complete {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .review-complete {
    padding: 10px 16px;
  }
}

.review-complete__name {
  font-weight: bold;
  font-size: 18px;
  color: #393939;
  margin-top: 20px;
  margin-bottom: 60px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .review-complete__name {
    font-size: 16px;
    text-align: left;
    margin-bottom: 30px;
  }
}

.review-complete__comment {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #393939;
  line-height: 24px;
  white-space: pre-line;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .review-complete__comment {
    font-size: 13px;
    text-align: left;
    margin-bottom: 20px;
  }
}

.review-complete__note {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #393939;
  line-height: 24px;
  white-space: pre-line;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .review-complete__note {
    text-align: left;
    font-size: 11.8px;
    margin-bottom: 40px;
  }
}

.page-customer-content-block {
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block {
    margin-bottom: 17px;
    padding-bottom: 17px;
  }
}

.page-customer-content-block .btn-edit {
  width: 100%;
  display: block;
  max-width: 420px;
  margin: 0 auto;
  height: 64px;
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block .btn-edit {
    height: 50px;
  }
}

.page-customer-content-block .span__position {
  position: absolute;
  right: 0;
  top: -15px;
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block .span__position {
    top: -5px;
  }
}

.page-customer-content-block_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block_right {
    flex-direction: column;
    align-items: self-start;
  }
}

.page-customer-content-block_right .group-btn {
  text-align: right;
  width: 165px;
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block_right .group-btn {
    width: 100%;
    margin-top: 15px;
  }
}

.page-customer-content-block_right .group-btn button {
  width: 165px;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block_right .group-btn button {
    width: 123px;
    height: 48px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block_right .group-btn button .image-edit {
    width: 2.2px !important;
    height: 4.3px !important;
    top: 47%;
  }
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block_right .group-btn button .image-delete {
    width: 4.25px !important;
    height: 4.25px !important;
    top: 47%;
  }
}

.page-customer-content-block .page-table-row__name span {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: bold;
  color: #A09179;
  border: solid 1px #A09179;
  width: 130px;
  display: inline-block;
  text-align: center;
  padding: 8.5px 0;
  height: 37px;
  margin-top: 10.5px;
}

@media only screen and (max-width: 767px) {
  .page-customer-content-block .page-table-row__name span {
    font-size: 12px;
    line-height: 14.4px;
    width: 90px;
    height: 27px;
  }
}

.page-customer-content .btn-logout {
  width: 100%;
  max-width: 420px;
  height: 64px;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-customer-content .btn-logout {
    height: 50px;
  }
}

.text-error-btn {
  font-size: 12px;
  font-weight: 500;
  color: #C1272D;
  text-align: right;
  margin-top: 12px;
  display: none;
}

@media only screen and (max-width: 767px) {
  .text-error-btn {
    font-size: 9.5px;
    margin-top: 7px;
  }
}

.page-cus-edit {
  color: #393939;
}

.page-cus-edit .common-breadcrumb ul {
  margin-bottom: 75px !important;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit .common-breadcrumb ul {
    margin-bottom: 50px !important;
  }
}

.page-cus-edit-content-block {
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block .page-table-row {
    border-bottom: none;
    border-top: none;
  }
}

.page-cus-edit-content-block .page-table-row__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12.5px 25px;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block .page-table-row__title {
    padding: 12px 0;
    justify-content: flex-start;
  }

  .page-cus-edit-content-block .page-table-row__title .required {
    margin-left: 17px;
  }
}

.page-cus-edit-content-block .page-table-row__sub {
  padding: 12.5px 15px 12.5px 39px;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block .page-table-row__sub {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block .page-table-row__sub .group-input [type=password] {
    min-width: 200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block .page-table-row__sub .group-input {
    margin: 6.5px 0;
  }
}

.page-cus-edit-content-block .page-table-row__sub .group-input label {
  font-size: 16px;
  font-weight: 500;
  margin-right: 15px;
  min-width: 35px;
  margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block .page-table-row__sub .group-input label {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.group-input-link {
  font-size: 12px;
  line-height: 14px;
  color: #29ABE2;
  text-decoration: underline;
  margin-left: 17px;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .group-input-link {
    margin-left: 0;
  }

  .page-cus-edit-content-block .page-table-row__sub .group-input-link img {
    width: 12px;
    height: 12px;
  }
}

.page-cus-edit-content-block .page-table-row__sub .group-input .cus-w-100 {
  width: 160px;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block .page-table-row__sub .group-input .cus-w-100 {
    width: 100%;
  }
}

.page-cus-edit-content-block .layout-grid-select {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content-block .layout-grid-select {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .page-cus-edit-content-block .layout-grid-select .group-input:first-of-type {
    grid-column: 1/3;
  }
}

.page-cus-edit-content .btn-showpass {
  height: 40px !important;
  width: 165px !important;
  font-size: 14px;
  font-weight: 500;
  margin: 5px !important;
}

.page-contact__content .btn-showpass {
  height: 40px !important;
  width: 165px !important;
  font-size: 14px;
  font-weight: 500;
  margin: 5px !important;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content .btn-showpass {
    width: 102px !important;
    height: 45px !important;
    font-size: 12px;
  }

  .page-contact__content .btn-showpass {
    width: 102px !important;
    height: 45px !important;
    font-size: 12px;
  }

  .page-cus-edit-content .btn-showpass:hover {
    opacity: 1 !important;
    background-color: #b2aa9d;
  }

  .page-contact__content .btn-showpass {
    width: 102px !important;
    height: 50px !important;
    font-size: 12px;
  }

  .page-contact__content .btn-showpass:hover {
    opacity: 1 !important;
    background-color: #b2aa9d;
  }
}

.page-cus-edit-content .btn-showpass img {
  width: auto !important;
  height: auto !important;
}

.page-contact__content .btn-showpass img {
  width: auto !important;
  height: auto !important;
}

@media only screen and (max-width: 767px) {
  .page-cus-edit-content .btn-showpass img {
    width: 10px !important;
    height: 7px !important;
  }

  .page-contact__content .btn-showpass img {
    width: 10px !important;
    height: 7px !important;
  }
}

.page-cus-edit-content .btn-logout,
.page-cus-edit-content .btn-pg-primary {
  width: 100%;
  max-width: 420px;
  height: 64px;
  margin: 25px auto;
  display: block;
  font-size: 16px;
}

.page-contact__content .btn-pg-primary {
  width: 100%;
  max-width: 420px;
  height: 64px;
  margin: 25px auto;
  display: block;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {

  .page-cus-edit-content .btn-logout,
  .page-cus-edit-content .btn-pg-primary {
    height: 50px;
  }

  .page-contact__content .btn-pg-primary {
    height: 50px;
    font-size: 12px;
  }
}

.page-cus-edit .error-text-custom {
  color: #FF1D25 !important;
  font-size: 12px !important;
  font-weight: bold !important;
  margin-bottom: 0 !important;
  margin-top: 8px !important;
  display: block !important;
  width: 100% !important;
  line-height: normal !important;
}

.page-entry-edit-content {
  margin-top: 60px;
}

.page-detail.changeProduct {
  max-height: 95vh;
  overflow-y: auto;
}

.page-detail.changeProduct .block-content__main-item-info {
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.5em 0;
  border-top: 1px solid #F2F2F2;
}

.page-detail.changeProduct .block-content__img {
  width: 23%;
  max-width: 190px;
  height: auto;
  margin-right: 0;
}

.page-detail.changeProduct .block-content__txt {
  width: 45%;
  max-width: 345px;
}

.page-detail.changeProduct .block-content__txt__label {
  display: inline-block;
  background: #C1272D;
  color: #fff;
  text-align: center;
  font-size: 80%;
  line-height: 1;
  padding: 0.4em 1em 0.2em;
  border-radius: 1em;
}

.page-detail.changeProduct .block-content__txt__label.label_1_1 {
  /* DUO:エイジング */
  background: #C1272D;
}

.page-detail.changeProduct .block-content__txt__label.label_2_1 {
  /* CANADEL:ハリ */
  background: #C1272D;
}

.page-detail.changeProduct .block-content__txt__label.label_1_2 {
  /* DUO:大人の毛穴ケア */
  background: #D5AD02;
}

.page-detail.changeProduct .block-content__txt__label.label_2_2 {
  /* CANADEL:毛穴目立ちケア */
  background: #D5AD02;
}

.page-detail.changeProduct .block-content__txt__label.label_1_3 {
  /* DUO:黒ずみ毛穴ケア */
  background: #4F4B4B;
}

.page-detail.changeProduct .block-content__txt__label.label_2_3 {
  /* CANADEL:最高峰 */
  background: #4F4B4B;
}

.page-detail.changeProduct .block-content__txt__label.label_1_4 {
  /* DUO:くすみ */
  background: #8686B4;
}

.page-detail.changeProduct .block-content__txt__label.label_2_4 {
  /* CANADEL:美白 */
  background: #8686B4;
}

.page-detail.changeProduct .block-content__txt__label.label_1_5 {
  /* DUO:敏感肌 */
  background: #00AA8D;
}

.page-detail.changeProduct .block-content__txt__label.label_2_5 {
  /* CANADEL:ゆらぎ敏感肌ケア */
  background: #00AA8D;
}

.page-detail.changeProduct .block-content__txt__label.label_1_6 {
  /* DUO:温感ケア */
  background: #e1374f;
}

.page-detail.changeProduct .block-content__txt__label.label_6 {
  /* その他 */
  background: #B3B3B3;
}

.page-detail.changeProduct .block-content__txt-property:not(:last-child) {
  margin-bottom: 0.5em;
}

.page-detail.changeProduct .block-content__txt .block-content__txt-name a {
  display: inline-block;
  line-height: 1.2;
}

.page-detail.changeProduct .block-content__txt .price-text {
  font-size: 18px;
  font-weight: 700;
}

.page-detail.changeProduct .block-content__txt .value-text {
  color: #8F262A;
}

.page-detail.changeProduct .block-content__btn {
  width: 200px;
  text-align: right;
}

.page-detail.changeProduct .detail-btn {
  padding-top: 1em;
  border-top: 1px solid #F2F2F2;
}

.page-detail.changeProduct .detail-btn .btn {
  height: 40px;
  width: 200px;
  margin: 0;
}

.page-contact__content .btn-showpass img {
  width: auto !important;
  height: auto !important;
}

.page-detail.changeProduct .detail-btn .btn+.btn {
  margin-left: 20px;
}

.page-detail.changeProduct .detail-btn .btn-outline-bg {
  line-height: 40px;
}

@media only screen and (max-width: 767px) {
  .page-detail.changeProduct {
    max-height: 80vh;
  }

  .page-detail.changeProduct .block-content__img {
    width: 32%;
  }

  .page-detail.changeProduct .block-content__txt {
    width: 66%;
  }

  .page-detail.changeProduct .block-content__btn {
    padding-top: 0.5em;
    width: 100%;
  }
}

.page-detail .block-content .mw-200 {
  max-width: 200px;
}

.page-detail .block-content .mw-100 {
  max-width: 100px !important;
}

.page-detail .block-content__header span {
  text-align: center;
  font-weight: bold;
  border-right: solid 2px #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-detail .block-content__header span:first-of-type {
  width: 60%;
}

.page-detail .block-content__header span:nth-of-type(2) {
  width: 13.5%;
}

.page-detail .block-content__header span:nth-of-type(3) {
  width: 60px;
}

.page-detail .block-content__header span:nth-of-type(10) {
  width: 10%;
}

.page-detail .block-content__header span:last-of-type {
  width: 20.5%;
  margin-right: 0;
  margin-left: auto;
}

.page-detail .block-content__main {
  margin-top: 13px;
}

.page-detail .block-content__img {
  width: 137px;
  height: 162px;
}

.page-detail .block-content__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-detail .block-content__img button {
  font-size: 12px;
  line-height: 14.4px;
  width: 100%;
}

.page-detail .block-content__txt {
  width: calc(100% - 137px);
}

.page-detail .block-content__txt-property {
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 500;
}

.page-detail .block-content__txt-name span {
  font-size: 16px;
  line-height: 22.6px;
}

.page-detail .block-content__txt-name a {
  font-size: 16px;
  line-height: 22.6px;
  color: #0071BC;
  text-decoration: underline;
  font-weight: bold;
}

.page-detail .block-content__text {
  text-align: center;
  height: 162px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-left: solid 1px #e2e2e2;
  justify-content: center;
}

.page-detail .block-content__text:first-of-type {
  width: 31.8%;
  text-align: center;
}

.page-detail .block-content__text:nth-of-type(2) {
  width: 19%;
}

.page-detail .block-content__text:last-of-type {
  width: 41.2%;
  border-right: none;
}

.page-detail .block-content .row-title {
  background-color: #F9F9F9;
  padding: 20px 26px;
  font-weight: bold;
  font-size: 16px;
}

.page-detail .block-content .point-info .row {
  margin-left: -8px;
  font-weight: bold;
  height: 65px;
}

.page-detail .block-content .point-info .point-group .point-header {
  border: solid 1px;
  border-color: #F2F2F2;
}

.page-detail .block-content .point-info .point_amount {
  font-size: 24px;
}

.page-detail .block-content .point-info .point-group .point-header div:last-child {
  font-weight: normal;
  line-height: 35px;
}

.page-detail .block-content .point-info .point-group .point-header {
  text-align: center;
}

.page-detail .block-content .point-info .point-group .point-header .point_amount {
  border-bottom: solid 1px #F2F2F2;
}

.page-detail .block-content .point-info .point-group .point-header h6 {
  font-size: 12px;
  line-height: 54px;
}

.page-detail .block-content .point-info .point-group h6 {
  background: #A5A4A2;
  font-weight: bold;
  border-bottom: solid 1px;
  border-color: #F2F2F2;
}

.page-detail .block-content .point-info .total-points {
  background: #A5A4A2;
}

.page-detail .note {
  background: #F9F9F9;
  padding: 15px;
  color: #575757;
  font-size: 12px;
  line-height: 18.4px;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .page-detail .block-content .mw-200 {
    max-width: 100%;
  }

  .page-detail .block-content .mw-100 {
    max-width: 100% !important;
  }

  .page-detail .block-content__img {
    width: 147.5px;
    height: 143.5px;
  }

  .page-detail .block-content__txt {
    width: calc(100% - 147.5px);
  }

  .page-detail .block-content__txt-property {
    font-size: 12px;
    line-height: 14.4px;
    color: #000000;
  }

  .page-detail .block-content__txt-name span {
    font-size: 14px;
    line-height: 19px;
  }

  .page-detail .block-content__txt-name a {
    font-size: 14px;
    line-height: 19px;
  }

  .page-detail .block-content__text {
    align-items: end;
    border-right: none;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 100% !important;
    justify-content: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5.5px 0;
    text-align: right !important;
    border-left: none;
  }

  .page-detail .block-content__text span:first-child {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
  }

  .page-detail .block-content__text span:last-child {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
  }

  .page-detail .block-content .row-title {
    font-size: 13px;
    padding: 10px;
  }

  .page-detail .block-content .point-info {
    font-size: 12px;
  }

  .page-detail .block-content .point-info .row .point-type-data {
    text-align: center;
  }

  .page-detail .block-content .point-info .row .point-type-data p:last-child {
    font-weight: normal;
    font-size: 10px;
    color: #393939;
  }

  .page-detail .block-content .point-info .row .point-type-data .point_amount_sm {
    font-size: 22px;
  }

  .page-detail .block-content .point-info .total-point-header {
    background: #F9F9F9;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    height: fit-content;
  }

  .page-detail .block-content .point-info .point_amount {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .page-detail .note {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content {
    margin-top: 40px;
  }
}

.page-custdest .common-breadcrumb ul,
.page-fr .common-breadcrumb ul,
.page-customer .common-breadcrumb ul {
  margin-bottom: 75px !important;
}

@media only screen and (max-width: 767px) {

  .page-custdest .common-breadcrumb ul,
  .page-fr .common-breadcrumb ul,
  .page-customer .common-breadcrumb ul {
    margin-bottom: 50px !important;
  }
}

.page-mypage .breadcrumb {
  margin-bottom: 65px !important;
}

@media only screen and (max-width: 767px) {
  .page-mypage .breadcrumb {
    margin-bottom: 45px !important;
  }
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .no-style {
    pointer-events: none;
    border: none !important;
    background-color: #FFFFFF !important;
    color: #393939 !important;
    font-size: 13px !important;
    font-weight: bold !important;
  }

  .page-customer__address-content .no-style:after {
    width: 0px !important;
    height: 0px !important;
  }
}

.page-customer__address-content .no-style a {
  text-decoration: underline !important;
  color: inherit !important;
  background-color: inherit !important;
  border: none !important;
}

.page-customer__address-content .phone-md {
  display: block;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .phone-md {
    display: none;
  }
}

.page-customer__address-content .phone-sm {
  display: none;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .phone-sm {
    display: block;
  }
}

.page-customer__address-content .row-header {
  line-height: 52px;
  background: #F9F9F9;
  color: #393939;
  font-size: 16px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
}

.page-customer__address-content .row-header .col-sm-3 {
  border-right: 1px solid #FFFFFF;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-header .col-sm-3 {
    border-right: 0;
  }
}

.page-customer__address-content .row-body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #393939;
  line-height: 20px;
}

.page-customer__address-content .row-body .col-sm-7 {
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-body {
    font-size: 13px;
  }
}

.page-customer__address-content .row-body .row-item {
  min-height: 140px;
  border-bottom: 1px solid #F9F9F9;
}

.page-customer__address-content .row-body .row-item .col-sm-3 {
  border-right: 1px solid #F9F9F9;
  min-height: 140px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-body .row-item .col-sm-3 {
    min-height: auto;
    border: 0;
  }
}

.page-customer__address-content .row-body .row-item .col-sm-9 {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-body .row-item {
    padding: 23px 0;
  }
}

.page-customer__address-content .row-body h5 {
  font-size: 12px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #393939;
  margin-bottom: 6px;
  margin-top: 18px;
}

.page-customer__address-content .row-body p {
  color: #393939;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-body p {
    font-size: 13px;
    font-weight: bold;
  }
}

.page-customer__address-content .row-body span {
  display: inline-block;
  width: 130px;
  line-height: 37px;
  color: #A09179;
  border: 1px solid #A09179;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-body span {
    width: 90px;
    font-size: 12px;
    line-height: 27px;
    margin-top: 6px;
  }
}

.page-customer__address-content .row-body a {
  color: #fff;
  width: 165px;
  line-height: 40px;
  background: #b2aa9d;
  font-size: 14px;
  border-radius: 6px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
}

.page-customer__address-content .row-body a:hover {
  color: #b2aa9d;
  background: #fff;
  border: 1px solid #b2aa9d;
}

.page-customer__address-content .row-body a:hover:after {
  color: #B2AA9D;
  -webkit-filter: opacity(0.5) drop-shadow(0 0 0 #B2AA9D);
  filter: opacity(1) drop-shadow(0 0 0 #B2AA9D);
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-body a {
    width: 125px;
    font-size: 12px;
    font-weight: bold;
  }
}

.page-customer__address-content .row-body a:after {
  content: "";
  position: absolute;
  background: url("../img/inc/icon_arrow_right.png") no-repeat;
  background-size: contain;
  width: 4.31px;
  height: 8.61px;
  top: 16px;
  right: 10px;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-body a:after {
    width: 2.155px;
    height: 4.305px;
    top: 19px;
  }
}

.page-customer__address-content .row-body a.delete {
  margin-top: 10px;
}

.page-customer__address-content .row-body a.delete:after {
  content: "";
  position: absolute;
  background: url("../img/inc/x.png") no-repeat;
  background-size: contain;
  width: 8.61px;
  height: 8.61px;
  top: 15px;
  right: 10px;
}

@media only screen and (max-width: 767px) {
  .page-customer__address-content .row-body a.delete:after {
    width: 4.305px;
    height: 4.305px;
    top: 19px;
  }
}

.page-customer__address-content .row-footer {
  text-align: center;
  margin-top: 60px;
}

.page-customer__address-content .row-footer h6 {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  color: #393939;
  font-size: 16px;
  margin-bottom: 30px;
}

.page-login {
  font-size: 16px;
  color: #393939;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

.page-login__forget-title {
  font-size: 24px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  color: #393939;
  line-height: 29px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-login__forget-title {
    font-size: 19px;
  }
}

.page-login__forget-desc {
  font-size: 16px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #393939;
  line-height: 24px;
}

@media only screen and (max-width: 767px) {
  .page-login__forget-desc {
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px) {

  .page-login .item-form .w-50,
  .page-login .item-form .w-75 {
    width: 100% !important;
  }
}

.page-login .box-text-info {
  font-size: 14px;
  color: #575757;
}

@media only screen and (max-width: 767px) {
  .page-login .box-text-info {
    font-size: 12px;
  }
}

.page-login .btn {
  border-radius: 6px;
}

.page-login .back-to-top {
  line-height: 1.5;
  height: 75px;
}

.page-entry-edit {
  max-width: 1150px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit .select-box-custom .group-input label {
    margin-bottom: 0px !important;
  }
}

.page-entry-edit .error-text-custom {
  color: #FF1D25 !important;
  font-size: 12px !important;
  font-weight: bold !important;
  margin-bottom: 0 !important;
  margin-top: 8px !important;
  display: block !important;
  width: 100% !important;
  line-height: normal !important;
}

.page-entry-edit-content-block {
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}

.page-entry-edit-content-block .check label {
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .check label {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .page-table-row {
    border-bottom: none;
    border-top: none;
  }
}

.page-entry-edit-content-block .page-table-row__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12.5px 25px;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .page-table-row__title {
    padding: 12px 0;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .page-table-row__title p {
    font-size: 12px;
    margin-right: 18px;
    font-weight: bold;
  }
}

.page-entry-edit-content-block .page-table-row__sub {
  padding: 12.5px 0 12.5px 25px;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .page-table-row__sub {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .page-table-row__sub .group-input [type=password] {
    min-width: 200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .page-table-row__sub .group-input {
    margin: 6.5px 0px;
  }
}

.page-entry-edit-content-block .page-table-row__sub .group-input label {
  font-size: 16px;
  font-weight: 500;
  margin-right: 15px;
  min-width: 35px;
  margin-bottom: 0px;
}

.page-entry-edit-content-block .page-table-row__sub .group-input .w-160 {
  width: 160px;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .page-table-row__sub .group-input .w-160 {
    width: 100%;
  }
}

.page-entry-edit-content-block .page-table-row__sub .group-input .agree {
  font-size: 20px;
  font-weight: bold;
}

.page-entry-edit-content-block .layout-grid-select {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
}

.page-entry-edit-content-block .layout-flex-select {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .layout-flex-select .group-input label {
    min-width: 10px;
  }
}

.page-entry-edit-content-block .btn-showpass {
  height: 40px !important;
  width: 165px !important;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .btn-showpass {
    width: 102px !important;
    height: 45px !important;
    font-size: 12px;
  }

  .page-entry-edit-content-block .btn-showpass:hover {
    opacity: 1 !important;
    background-color: #b2aa9d;
  }
}

.page-entry-edit-content-block .btn-showpass img {
  width: auto !important;
  height: auto !important;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-block .btn-showpass img {
    width: 10px !important;
    height: 7px !important;
  }
}

.page-entry-edit-content-p {
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-p {
    font-size: 16px;
    line-height: 23px;
  }
}

.page-entry-edit-content-p span {
  font-size: 16px;
  line-height: 24.2px;
  font-weight: 500;
  margin-top: 14.5px;
  display: block;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-p span {
    font-size: 13px;
    line-height: 21px;
  }
}

.page-entry-edit-content-box {
  background: #F2F2F2;
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-box {
    padding: 16px;
    margin: 0 -15px;
  }
}

.page-entry-edit-content-box .content::-webkit-scrollbar-thumb {
  background-color: #A09179;
}

.page-entry-edit-content-box .content::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-box .content::-webkit-scrollbar {
    width: 0px;
  }
}

.page-entry-edit-content-box .content::-webkit-scrollbar-track {
  max-height: 50%;
  height: 50%;
}

.page-entry-edit-content .label-rule:before {
  top: 3px !important;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content .label-rule:before {
    top: -2px !important;
  }
}

.page-entry-edit-content .label-rule:after {
  top: 0px !important;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content .label-rule:after {
    top: -4px !important;
  }
}

.page-entry-edit-content .button input {
  margin: 0 auto;
  margin-top: 25px;
}

.page-entry-edit-content .button button {
  height: 64px;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  display: block;
  margin-top: 25px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content .button button {
    height: 50px;
    font-size: 14px;
  }
}

.page-entry-edit-content .btn-logout,
.page-entry-edit-content .btn-pg-primary {
  width: 100%;
  max-width: 420px;
  height: 64px;
  margin: 5px;
  display: block;
}

@media only screen and (max-width: 767px) {

  .page-entry-edit-content .btn-logout,
  .page-entry-edit-content .btn-pg-primary {
    height: 50px;
    margin: 0 0 0 5px;
  }
}

@media only screen and (max-width: 767px) {
  .customer-dm {
    padding: 10px 16px;
  }
}

.customer-dm__text {
  margin-top: 25px;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  white-space: pre-line;
}

@media only screen and (max-width: 767px) {
  .customer-dm__text {
    text-align: left;
    font-size: 13px;
    margin-top: 20px;
  }
}

.customer-dm__space {
  margin-bottom: 20px;
  height: 1px;
  width: 100%;
  background-color: #e2e2e2;
}

@media only screen and (max-width: 767px) {
  .customer-dm__space {
    display: none;
  }
}

.customer-dm__space-bottom {
  margin-bottom: 30px;
}

.customer-dm__space-bottom span {
  width: 267.68px;
  height: 52.25px;
}

.customer-dm form .row {
  margin-right: 0px;
  margin-left: 0px;
}

.customer-dm form .row .col-sm-5 {
  width: 361px;
  max-width: 361px;
  flex: 0 0 361px;
}

@media only screen and (max-width: 767px) {
  .customer-dm form .row .col-sm-5 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.customer-dm form .row .col-sm-7 {
  width: calc(100% - 361px);
  max-width: calc(100% - 361px);
  flex: 0 0 calc(100% - 361px);
  padding-right: 0px;
}

@media only screen and (max-width: 767px) {
  .customer-dm form .row .col-sm-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.customer-dm form .row .col-sm-7 .px-sm-3 {
  padding-right: 22px !important;
}

@media only screen and (max-width: 767px) {
  .customer-dm form .row .col-sm-7 .px-sm-3 {
    padding-right: 0px !important;
  }
}

.customer-dm form .label-custom {
  background: #F9F9F9;
  min-height: 88px;
  padding: 12px 30px;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.customer-dm form .label-custom label {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 21px;
  color: #393939;
}

.customer-dm form .label-custom span.required {
  background: #C1272D;
  width: 60px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .customer-dm form .label-custom {
    background: none;
    padding: 0;
    justify-content: flex-start;
    line-height: normal;
    min-height: auto;
  }

  .customer-dm form .label-custom label {
    font-size: 12px;
  }

  .customer-dm form .label-custom span.required {
    background: #C1272D;
    width: 32px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-left: 6px;
  }
}

.customer-dm form .text-note {
  font-size: 12px;
  display: block;
  width: 100%;
  color: #B3B3B3;
  white-space: pre-line;
  font-weight: 500;
  text-align: left;
  margin-top: 5px;
}

@media only screen and (max-width: 767px) {
  .customer-dm form .text-note-star {
    padding-left: 20px;
  }
}

.customer-dm form .item-form {
  border-bottom: 1px solid #F2F2F2;
}

.customer-dm form .item-form:first-child {
  border-top: 1px solid #F2F2F2;
}

@media only screen and (max-width: 767px) {
  .customer-dm form .item-form {
    border: none !important;
    margin-bottom: 5px;
  }

  .customer-dm form .item-form.border-bottom-mb {
    border-bottom: 1px solid #F2F2F2 !important;
    padding-bottom: 5px;
  }
}

.customer-dm form .entry-btn {
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .customer-dm form .entry-btn {
    padding: 0px;
  }
}

.customer-dm__sub-note {
  font-size: 12px;
  margin-top: 15px;
  margin-bottom: 65px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .customer-dm__sub-note {
    margin-bottom: 40px;
  }
}

.page-confirm button {
  max-width: 420px;
  margin: 25px auto;
  display: block;
  height: 64px;
  font-weight: bold;
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .page-confirm button {
    height: 50px;
    font-size: 14px;
  }
}

.page-confirm .page-table-row {
  height: 63px;
}

.page-confirm .page-table-row .text-not-uppercase {
  text-transform: initial;
}

.page-confirm .page-table-row__title {
  padding: 20px 25px;
}

@media only screen and (max-width: 767px) {
  .page-confirm .page-table-row__title {
    padding: 10px 0 5px 10px;
  }

  .page-confirm .page-table-address {
    height: 80px;
  }

  .page-confirm .page-table-row {
    margin-bottom: 10px;
  }
}

.page-confirm .common-breadcrumb ul li:nth-child(2):after {
  margin-left: 8px;
}

.page-confirm .common-breadcrumb ul li:nth-child(2) a::before {
  background: none !important;
  width: 0;
}

.page-confirm .common-breadcrumb ul li:nth-child(2) a::after {
  content: "";
  width: 0;
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .page-confirm .common-breadcrumb ul li:first-child {
    display: none;
  }

  .page-confirm .common-breadcrumb ul li:nth-child(2) {
    margin-right: 5px;
  }
}

.page-custdest-content .btn-logout,
.page-custdest-content .btn-pg-primary {
  width: 100%;
  max-width: 420px;
  height: 64px;
  margin: 25px auto;
  display: block;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {

  .page-custdest-content .btn-logout,
  .page-custdest-content .btn-pg-primary {
    height: 50px;
    font-size: 14px;
  }
}

.page-cart {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .page-cart {
    padding: 0 16px;
    margin-top: -15px;
  }

  .page-cart .box-step ul {
    margin: 35px 0;
  }
}

.page-cart .label-selects {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .page-cart .label-selects {
    font-size: 12px;
  }
}

.page-cart .errorClassBox {
  background: #FFEEF0 !important;
}

@media only screen and (max-width: 767px) {
  .page-cart .errorClassBox {
    background: none;
  }
}

.page-cart__user {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__user {
    margin-bottom: 5px;
    font-size: 16px;
  }
}

.page-cart__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__title {
    margin-bottom: 30px;
    font-size: 19px;
  }
}

.page-cart__no-data {
  text-align: center;
  width: 100%;
  margin-top: 90px;
  margin-bottom: 130px;
}

@media only screen and (max-width: 767px) {
  .page-cart__no-data {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.page-cart__no-data .sm-space-text {
  display: none;
  height: 1px;
}

@media only screen and (max-width: 767px) {
  .page-cart__no-data .sm-space-text {
    display: block;
  }
}

.page-cart__no-data h3 {
  color: #8F262A;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  .page-cart__no-data h3 {
    font-size: 18px;
  }
}

.page-cart__no-data .text-description {
  font-size: 16px;
  font-weight: 500;
  color: #393939;
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .page-cart__no-data .text-description {
    font-size: 12px;
    margin-bottom: 40px;
  }
}

.page-cart__campaign {
  width: 100%;
  min-height: 130px;
  padding: 40px;
  white-space: pre-line;
  background-color: #EFEDEB;
  color: #8F262A;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
}

.page-cart__campaign-cp {
  min-height: 104px !important;
}

@media only screen and (max-width: 767px) {
  .page-cart__campaign-cp {
    min-height: 94px !important;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__campaign {
    font-size: 12px;
    padding: 15px;
    min-height: 94px;
    margin-bottom: 20px;
  }
}

.page-cart__coupon {
  background-color: #EFEDEB;
  padding: 39px 40px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .page-cart__coupon {
    padding: 14.75px 16.5px;
  }
}

.page-cart__coupon-user {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .page-cart__coupon-user {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.page-cart__coupon .coupon-item {
  width: 100%;
  padding: 14px 25px;
  background-color: #fff;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100px;
}

@media only screen and (max-width: 767px) {
  .page-cart__coupon .coupon-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 14.75px 15px;
  }
}

.page-cart__coupon .coupon-item:last-child {
  margin-bottom: 0px;
}

.page-cart__coupon .coupon-item__name {
  width: 290px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__coupon .coupon-item__name {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 13px;
  }
}

.page-cart__coupon .coupon-item__name strong {
  font-size: 36px;
  line-height: 1;
  vertical-align: bottom;
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .page-cart__coupon .coupon-item__name strong {
    font-size: 24px;
    margin-right: 5px;
  }
}

.page-cart__coupon .coupon-item__name img {
  width: 31.6px;
  height: 20.4px;
  margin-right: 12px;
}

.page-cart__coupon .coupon-item__date {
  width: 200px;
  margin-right: 20px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-cart__coupon .coupon-item__date {
    font-size: 12px;
    margin-left: 0px;
    margin-top: 6px;
    margin-bottom: 7.11px;
  }
}

.page-cart__coupon .coupon-item__date span:last-child {
  margin-left: 8px;
}

.page-cart__coupon .coupon-item__date span:first-child {
  margin-right: 8px;
}

.page-cart__coupon .coupon-item__description span {
  white-space: pre-line;
  font-size: 16px;
  font-weight: 500;
  display: block;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .page-cart__coupon .coupon-item__description span {
    font-size: 12px;
    line-height: 1.6;
  }
}

.page-cart__coupon .coupon-item__description-red {
  color: #8F262A;
}

.page-cart__amazon {
  text-align: center;
  padding: 20px 0px;
}

@media only screen and (max-width: 767px) {
  .page-cart__amazon {
    padding: 10px 0px;
  }
}

.page-cart__amazon-description {
  font-size: 16px;
  font-weight: 500;
  color: #393939;
  white-space: pre-line;
}

@media only screen and (max-width: 767px) {
  .page-cart__amazon-description {
    font-size: 13px;
    line-height: 1.6;
  }
}

.page-cart__amazon button {
  background-color: #8F262A;
  color: #fff;
  width: 340px;
  height: 60px;
  border: solid 1px #8F262A;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  margin-bottom: 40px;
  margin-top: 45px;
  position: relative;
  transition: all .3s;
}

@media only screen and (max-width: 767px) {
  .page-cart__amazon button {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    margin-top: 35px;
    font-size: 14px;
  }
}

.page-cart__amazon button:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 22px;
}

.page-cart__amazon button:hover {
  background-color: #8F262A;
  opacity: 0.8;
  transition: all 0.3s;
}

.page-cart__amazon img {
  width: 420px;
  height: 85.1px;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  .page-cart__amazon img {
    width: 100%;
    height: 69.5px;
    margin-bottom: 6px;
  }
}

.page-cart__amazon .text-amazon {
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-cart__amazon .text-amazon {
    font-size: 12px;
    text-align: left;
  }
}

.page-cart__amazon .text-amazon-error {
  font-size: 16px;
  font-weight: 500;
  color: #8F262A;
  margin-top: 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__amazon .text-amazon-error {
    font-size: 13px;
  }
}

.page-cart__contents {
  margin: 20px 0px 60px;
}

@media only screen and (max-width: 767px) {
  .page-cart__contents {
    margin: 20px 0px 10px;
  }
}

.page-cart__contents .content-item {
  background-color: #EFEDEB;
  height: 130px;
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 35px;
  line-height: 130px;
}

@media only screen and (max-width: 767px) {
  .page-cart__contents .content-item {
    font-size: 12px;
    margin-bottom: 15px;
    height: 132.5px;
    line-height: 132.5px;
  }
}

.page-cart__contents .content-item:last-child {
  margin-bottom: 10px;
}

.page-cart__pay-cp {
  width: 100%;
  margin-top: 95px;
  margin-bottom: 145px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp {
    flex-direction: column-reverse;
    margin-top: 25px;
    margin-bottom: 45px;
  }
}

.page-cart__pay-cp .amazon-link {
  margin-right: 65px;
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp .amazon-link {
    margin-right: 0px;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp .amazon-link a {
    width: 100%;
    display: block;
  }
}

.page-cart__pay-cp .amazon-link a img {
  width: 296px;
  height: 60px;
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp .amazon-link a img {
    width: 100%;
    height: 69.5px;
  }
}

.page-cart__pay-cp .amazon-link__note {
  font-size: 14px;
  font-weight: 500;
  white-space: pre-line;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 13px;
  line-height: 1.5;
}

.page-cart__pay-cp .amazon-link__note .md-space-text {
  display: block;
  height: 1px;
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp .amazon-link__note .md-space-text {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp .amazon-link__note {
    width: 100%;
    text-align: left;
    font-size: 12px;
    white-space: normal;
  }
}

.page-cart__pay-cp button {
  width: 420px;
  height: 60px;
  color: #FFFFFF;
  background-color: #B2AA9D;
  border: solid 1px #B2AA9D;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  transition: all .3s;
}

.page-cart__pay-cp button:hover {
  background-color: rgba(178, 170, 157, 0.5);
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp button .text-md {
    display: none;
  }
}

.page-cart__pay-cp button .text-sm {
  display: none;
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp button .text-sm {
    display: inline-block;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__pay-cp button {
    width: 100%;
    margin-bottom: 15px;
    height: 50px;
  }
}

.page-cart__form {
  margin-bottom: 20px;
  position: relative;
}

.page-cart__form .dob-group-input {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .page-cart__form .dob-group-input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 13px;
  }

  .page-cart__form .dob-group-input .group-input-date:first-child {
    grid-column: 1/3;
  }
}

.page-cart__form .span__position {
  background: #29ABE2;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 4px;
  width: 236px;
  height: 52px;
  font-size: 12px;
  line-height: 14.4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.page-cart__form .span__position-notconfirm {
  position: absolute;
  right: 0;
  top: 35px;
  border-radius: 0 4px;
  width: fit-content;
  height: 52px;
  font-size: 12px;
  line-height: 14.4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: #C1272D;
  color: #fff;
  padding: 0 10px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form .span__position-notconfirm {
    height: 26px;
    font-size: 10px;
    line-height: 12px;
    top: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__form .span__position {
    width: 172px;
    height: 26px;
    font-size: 10px;
    line-height: 12px;
  }
}

.page-cart__form-title {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-cart__form-title {
    font-size: 19px;
    margin-bottom: 35px;
  }
}

.page-cart__form .row {
  margin-right: 0px;
  margin-left: 0px;
}

.page-cart__form .row .col-sm-4 {
  width: 361px;
  max-width: 361px;
  flex: 0 0 361px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form .row .col-sm-4 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.page-cart__form .row .col-sm-8 {
  width: calc(100% - 361px);
  max-width: calc(100% - 361px);
  flex: 0 0 calc(100% - 361px);
  padding-right: 0px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form .row .col-sm-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.page-cart__form .row .col-sm-8 .px-sm-3 {
  padding-right: 22px !important;
}

@media only screen and (max-width: 767px) {
  .page-cart__form .row .col-sm-8 .px-sm-3 {
    padding-right: 0px !important;
  }
}

.page-cart__form form .label-custom {
  background: #F9F9F9;
  min-height: 64px;
  padding: 12px 30px;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.page-cart__form form .label-custom label {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 21px;
  color: #393939;
}

.page-cart__form form .label-custom span.required {
  background: #C1272D;
  width: 60px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .label-custom {
    background: none;
    padding: 0;
    justify-content: flex-start;
    line-height: normal;
    min-height: auto;
  }

  .page-cart__form form .label-custom label {
    font-size: 12px;
  }

  .page-cart__form form .label-custom span.required {
    background: #C1272D;
    width: 32px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin-left: 17px;
  }
}

.page-cart__form form .text-note {
  font-size: 12px;
  color: #B3B3B3;
  white-space: pre-line;
  text-align: justify;
  font-weight: 500;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .text-note-star {
    padding-left: 20px;
  }
}

.page-cart__form form textarea {
  height: 180px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form textarea {
    height: 245px;
  }
}

.page-cart__form form .item-form {
  border-bottom: 1px solid #F2F2F2;
}

.page-cart__form form .item-form-top {
  border-top: 1px solid #F2F2F2;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form-top {
    border: none !important;
  }
}

.page-cart__form form .item-form:first-child {
  border-top: 1px solid #F2F2F2;
}

.page-cart__form form .item-form__flex {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form__flex .text-note-md {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form__flex-box {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form__flex {
    flex-direction: column;
    padding-left: 18px;
  }

  .page-cart__form form .item-form__flex .box-error {
    padding-left: 34px;
  }
}

.page-cart__form form .item-form .form-control__cp {
  width: 385px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-control__cp {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-control__phone {
    width: 232.5px !important;
  }
}

.page-cart__form form .item-form .form-control__code-post1 {
  width: 73px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-control__code-post1 {
    width: 65px;
  }
}

.page-cart__form form .item-form .form-control__code-post2 {
  width: 84px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-control__code-post2 {
    width: 79.5px;
  }
}

.page-cart__form form .item-form .form-control__select-district {
  width: 160px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-control__select-district {
    width: 100%;
    height: 45px;
    font-size: 13px;
  }
}

.page-cart__form form .item-form .form-control__select-day {
  width: 240px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-control__select-day {
    width: 125px;
    height: 45px;
    font-size: 13px;
  }
}

.page-cart__form form .item-form .box-check-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .box-check-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-cart__form form .item-form .box-check-info .text-banner {
  width: 280px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .box-check-info .text-banner {
    width: 100%;
    height: 132px;
    margin-top: 25px;
  }
}

.page-cart__form form .item-form .form-payment {
  margin: 10px 0px 10px 30px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment {
    margin: 10px 0px;
  }
}

.page-cart__form form .item-form .form-payment__item {
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.page-cart__form form .item-form .form-payment__item-label label {
  width: 140px;
  text-align: left;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-label label {
    width: 100%;
    font-size: 12px;
    font-weight: bold;
  }
}

.page-cart__form form .item-form .form-payment__item-input {
  width: calc(100% - 156px);
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input {
    width: 100%;
  }
}

.page-cart__form form .item-form .form-payment__item-input .input-text {
  margin-right: 15px;
  width: 561px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input .input-text {
    width: 100%;
  }
}

.page-cart__form form .item-form .form-payment__item-input .select-groups {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page-cart__form form .item-form .form-payment__item-input .select-groups__item {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input .select-groups__item .text-year {
    display: none;
  }
}

.page-cart__form form .item-form .form-payment__item-input .select-groups__item:first-child {
  margin-right: 30px;
}

.page-cart__form form .item-form .form-payment__item-input .select-groups__item span {
  font-weight: 500;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input .select-groups__item span {
    font-size: 13px;
  }
}

.page-cart__form form .item-form .form-payment__item-input .select-groups__item select {
  width: 80px;
  margin-right: 8px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input .select-groups__item select {
    width: 125px;
    height: 45px;
    font-size: 13px;
  }
}

.page-cart__form form .item-form .form-payment__item-input .input-groups {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input .input-groups {
    width: 100%;
  }
}

.page-cart__form form .item-form .form-payment__item-input .input-groups input {
  width: 120px;
  margin-right: 15px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input .input-groups input {
    width: 288.5px;
    margin-right: 5px;
  }
}

.page-cart__form form .item-form .form-payment__item-input .input-groups__sub-text {
  color: #B3B3B3;
  font-size: 12px;
  font-weight: 500;
  margin-right: 35px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input .input-groups__sub-text {
    display: inline-block !important;
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .form-payment__item-input .input-groups span {
    display: none;
  }
}

.page-cart__form form .item-form .form-payment__item-input .input-groups span img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.page-cart__form form .item-form .form-payment__item-input .input-groups span a {
  text-decoration: underline;
  font-size: 12px;
  font-weight: 500;
  color: #575757;
}

.page-cart__form form .item-form .post-codes {
  text-decoration: underline;
  color: #29ABe2;
  margin-left: 25px;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .post-codes {
    margin-left: 10px;
  }
}

.page-cart__form form .item-form .code-copy img {
  width: 14px;
  height: 14px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .code-copy img {
    width: 12px;
    height: 12px;
  }
}

.page-cart__form form .item-form .btn_show {
  border-radius: 6px;
  background-color: #B2AA9D;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  width: 165px;
  height: 40px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .btn_show {
    width: 102px;
    height: 45px;
    font-size: 12px;
    margin-left: 8px;
    transition: all .3s;
  }

  .page-cart__form form .item-form .btn_show:hover {
    opacity: 1 !important;
    background-color: #b2aa9d;
  }
}

.page-cart__form form .item-form .btn_show:hover {
  background-color: #b2aa9d;
}

.page-cart__form form .item-form .btn_show img {
  width: 13.69px;
  height: 9.34px;
  margin-left: 8px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form .btn_show img {
    width: 10.3px;
    height: 7.05px;
    left: 6px;
  }
}

.page-cart__form form .item-form__pre {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form__pre {
    align-items: center;
    justify-content: flex-start;
  }
}

.page-cart__form form .item-form__pre span {
  width: 34px;
  display: block;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form__pre span {
    font-size: 13px;
  }
}

.page-cart__form form .item-form__pre:first-child {
  margin-right: 25px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form__pre:first-child {
    margin-right: 0px;
  }
}

.page-cart__form form .item-form__pre input {
  width: 145px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form__pre input {
    width: calc(100% - 34px);
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .item-form {
    border: none !important;
    margin-bottom: 15px;
  }

  .page-cart__form form .item-form:nth-child(2) {
    margin-bottom: 35px;
  }

  .page-cart__form form .item-form.border-bottom-mb {
    border-bottom: 1px solid #F2F2F2 !important;
    padding-bottom: 5px;
  }

  .page-cart__form form .item-form input.form-control {
    height: 45px;
  }
}

.page-cart__form form .entry-btn {
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .entry-btn {
    padding: 0px;
  }
}

.page-cart__form form .box-rules {
  margin-top: 80px;
  width: 100%;
}

.page-cart__form form .box-rules__title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #393939;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__title .text-md {
    display: none;
  }
}

.page-cart__form form .box-rules__title .text-sm {
  display: none;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__title .text-sm {
    display: inline-block;
  }
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__title {
    font-size: 16px;
  }
}

.page-cart__form form .box-rules__sub-title {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #393939;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__sub-title {
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 1rem;
  }
}

.page-cart__form form .box-rules__box {
  background-color: #f2f2f2;
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__box {
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px;
  }
}

.page-cart__form form .box-rules__box-contents {
  background-color: #FFFFFF;
  padding: 35px 58px;
  overflow-y: scroll;
  height: 339px;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__box-contents {
    padding: 16px;
    font-size: 12px;
    height: 310px;
  }
}

.page-cart__form form .box-rules__box-contents::-webkit-scrollbar {
  width: 10px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__box-contents::-webkit-scrollbar {
    width: 5px;
  }
}

.page-cart__form form .box-rules__box-contents::-webkit-scrollbar-track {
  background: #E6E6E6;
}

.page-cart__form form .box-rules__box-contents::-webkit-scrollbar-thumb {
  background: #A09179;
  height: 40px;
}

.page-cart__form form .box-rules__box-contents::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.page-cart__form form .box-rules__confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 45px;
}

.page-cart__form form .box-rules__confirm .text-required {
  width: 60px;
  height: 20px;
  text-align: center;
  background-color: #C1272D;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  margin-right: 40px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__confirm .text-required {
    margin-right: 20px;
    width: 32px;
    height: 20px;
  }
}

.page-cart__form form .box-rules__confirm .label-checkbox {
  font-weight: bold;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__confirm .label-checkbox {
    font-size: 12px;
  }
}

.page-cart__form form .box-rules__confirm .checkbox-confirm {
  width: 28px;
  height: 28px;
  position: relative !important;
  left: auto !important;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__confirm .checkbox-confirm {
    width: 24px;
    height: 24px;
  }
}

.page-cart__form form .box-rules__confirm .checkbox-confirm:after {
  width: 28px;
  height: 28px;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__confirm .checkbox-confirm:after {
    width: 24px;
    height: 24px;
  }
}

.page-cart__form form .box-rules__confirm .checkbox-confirm:before {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid #F2f2f2;
  content: "";
  background: #FFF;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__confirm .checkbox-confirm:before {
    width: 24px;
    height: 24px;
  }
}

.page-cart__form form .box-rules__confirm .checkbox-confirm:after {
  position: relative;
  display: block;
  left: 2px;
  top: -28px;
  width: 28px;
  height: 28px;
  border: none;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  .page-cart__form form .box-rules__confirm .checkbox-confirm:after {
    top: -24px;
    width: 24px;
    height: 24px;
  }
}

.page-cart__form form .box-rules__confirm .checkbox-confirm:checked:after {
  background-image: url("../img/review/icon-check.png");
}

.page-cart .text-confirm {
  font-weight: bold;
  font-size: 14px;
}

.page-cart .buttons-confirm {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.page-cart .buttons-confirm button {
  width: 101px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
}

.page-cart .buttons-confirm button:first-of-type {
  color: #29ABe2;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 10px;
}

.page-cart .buttons-confirm button:last-of-type {
  color: #ffffff;
  background: #29ABe2;
  border: none;
}

.box-message-error {
  width: 800px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .box-message-error {
    width: 100%;
  }
}

.box-message-large {
  width: 890px !important;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .box-message-large {
    width: 100% !important;
  }
}

.item-product {
  background: #EFEDEB;
  padding: 40px 40px 25px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .item-product {
    padding: 16px;
    margin-bottom: 14px;
  }
}

.item-product__content {
  display: flex;
  position: relative;
  padding-bottom: 17px;
  border-bottom: 1px solid #B2AA9D;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .item-product__content {
    padding-bottom: 70px;
    margin-bottom: 10px;
  }
}

.item-product__content-image {
  margin-right: 32px;
}

@media only screen and (max-width: 767px) {
  .item-product__content-image {
    margin-right: 8px;
  }
}

.item-product__content-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .item-product__content-image img {
    width: 108px;
    height: 108px;
  }
}

.item-product a {
  width: 260px;
  line-height: 60px;
  background: #8F262A;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 17px;
  transition: all 0.3s;
}

.item-product a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.item-product a img {
  width: 7.5px;
  height: 11.5px;
  position: absolute;
  right: 15px;
  top: 23px;
}

@media only screen and (max-width: 767px) {
  .item-product a {
    width: 100%;
    bottom: 13px;
    line-height: 50px;
    font-size: 14px;
  }

  .item-product a img {
    width: 6px;
    height: auto;
    top: 21px;
  }
}

.item-product small {
  font-size: 13px;
  font-weight: 500;
  color: #393939;
}

@media only screen and (max-width: 767px) {
  .item-product small {
    font-size: 11px;
    line-height: 16px;
    display: block;
  }
}

.item-product__content-text .content-text__top {
  display: flex;
}

.item-product__content-text h3 {
  font-weight: bold;
  font-size: 32px;
  color: #393939;
  margin-top: 15px;
  margin-bottom: 35px;
  line-height: 38px;
}

@media only screen and (max-width: 767px) {
  .item-product__content-text h3 {
    font-size: 17px;
    line-height: 20px;
    margin-top: 8px;
    margin-bottom: 14px;
  }
}

.item-product__content-text p {
  font-size: 13px;
  font-weight: 500;
  color: #393939;
  line-height: 24px;
}

@media only screen and (max-width: 767px) {
  .item-product__content-text p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0;
  }
}

.item-product__content-text span {
  line-height: 37px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #8F262A;
}

.item-product__content-text span:first-child {
  background: #8F262A;
  color: #fff;
}

.item-product__content-text span img {
  width: 18px;
  height: 21.5px;
  margin-right: 7px;
}

@media only screen and (max-width: 767px) {
  .item-product__content-text span {
    height: 19px;
    font-size: 12px;
  }

  .item-product__content-text span img {
    width: 9px;
    height: 10.5px;
    margin-right: 5px;
  }
}

.slider1 {
  background: #EFEDEB;
  padding: 65px 0;
}

.slider1>h2 {
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .slider1>h2 {
    font-size: 26px;
  }
}

.slider1>p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 45px;
  margin-top: 6px;
}

@media only screen and (max-width: 767px) {
  .slider1>p {
    font-size: 13px;
  }
}

.slider1 .container {
  max-width: 1488px;
}

.slider1 .item {
  width: 360px;
}

@media only screen and (max-width: 767px) {
  .slider1 .item {
    width: auto;
  }
}

.slider1 .item-campaign img {
  margin-bottom: 12px;
  width: 360px;
  height: 180px;
  border-radius: 20px;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .slider1 .item-campaign img {
    max-width: 100%;
    height: 155px;
    margin-bottom: 9px;
  }
}

.slider1 .item-campaign .tag {
  display: flex;
  align-items: center;
}

.slider1 .item-campaign .tag span {
  margin-right: 4px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
}

.slider1 .item-campaign .tag span.w-105 {
  width: 105px;
}

.slider1 .item-campaign .tag span.p-12 {
  padding: 0 12px;
}

.slider1 .item-campaign .tag span.green {
  background: #00A73C;
}

.slider1 .item-campaign .tag span.pink {
  background: #FEA6C5;
}

.slider1 .item-campaign .tag span.red {
  background: #C81964;
}

.slider1 .item-campaign .tag span.immuno {
  background: #B20030;
}

.slider1 .item-campaign .tag span.orange {
  background: #FF9500;
}

.slider1 .item-campaign .tag span.blue {
  background: #00AFD7;
}

.slider1 .item-campaign .tag span.sitrana {
  background: #AD936F;
}

.slider1 .item-campaign .tag span.clayence {
  background: #796E69;
}

.slider1 .item-campaign .tag span.duo {
  background: #414141;
}

@media only screen and (max-width: 767px) {
  .slider1 .item-campaign .tag span {
    font-size: 12px;
  }
}

.slider1 .item-campaign h3 {
  font-size: 16px;
  font-weight: 500;
  color: #393939;
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .slider1 .item-campaign h3 {
    font-size: 14px;
  }
}

.slider1 .item-campaign p {
  font-size: 14px;
  font-weight: bold;
  color: #393939;
  line-height: 20px;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .slider1 .item-campaign p {
    font-size: 13px;
  }
}

.slider1 .item-campaign:hover img {
  opacity: 0.8;
}

.slider1 .item-campaign:hover h3 {
  color: #b2aa9d;
}

.slider1 .item-campaign:hover p {
  color: #b2aa9d;
}

.slider1 .note-text {
  padding: 24px;
  background: #fff;
  color: #393939;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
  max-width: 1070px;
  width: 1070px;
  margin: auto;
  display: inline-block;
  text-align: left;
  margin-top: 40px;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .slider1 .note-text {
    font-size: 13px;
    text-align: center;
    padding: 14px 8px;
    line-height: 22px;
    width: calc(100% - 32px);
    margin-top: 20px;
  }
}

.slider2 {
  background: #EFEDEB;
  padding: 0px 0 100px;
}

.slider2>h2 {
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .slider2>h2 {
    font-size: 26px;
  }
}

.slider2>p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 45px;
  margin-top: 6px;
}

@media only screen and (max-width: 767px) {
  .slider2>p {
    font-size: 13px;
  }
}

.slider2 .container {
  max-width: 1488px;
}

.slider2 .item {
  width: 360px;
}

@media only screen and (max-width: 767px) {
  .slider2 .item {
    width: auto;
  }
}

.slider2 .item-recommend {
  border-radius: 20px;
  background: #fff;
  display: block;
  padding-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .slider2 .item-recommend {
    padding-bottom: 16px;
  }
}

.slider2 .item-recommend img {
  width: auto;
  height: 280px;
  object-fit: cover;
  margin: 0px auto 20px;
}

@media only screen and (max-width: 767px) {
  .slider2 .item-recommend img {
    max-width: 100%;
    height: 240px;
    margin-bottom: 9px;
  }
}

.slider2 .item-recommend h3 {
  font-size: 16px;
  font-weight: 500;
  color: #393939;
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 20px;
  padding: 0 24px;
}

@media only screen and (max-width: 767px) {
  .slider2 .item-recommend h3 {
    font-size: 14px;
    padding: 0 18px;
  }
}

.slider2 .item-recommend p {
  font-size: 14px;
  font-weight: 500;
  color: #393939;
  line-height: 20px;
  text-align: left;
  padding: 0 24px;
  margin-bottom: 28px;
  min-height: 145px;
}

.slider2 .item-recommend p span {
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .slider2 .item-recommend p {
    font-size: 13px;
    padding: 0 18px;
  }

  .slider2 .item-recommend p span {
    font-size: 12px;
  }
}

.slider2 .item-recommend .price {
  padding: 0 24px;
}

.slider2 .item-recommend .price span:first-child {
  font-size: 16px;
  font-weight: bold;
}

.slider2 .item-recommend .price span:nth-child(2) {
  font-size: 24px;
  font-weight: bold;
}

.slider2 .item-recommend .price small {
  font-size: 12px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .slider2 .item-recommend .price {
    padding: 0 18px;
  }

  .slider2 .item-recommend .price span:first-child {
    font-size: 14px;
    font-weight: bold;
  }

  .slider2 .item-recommend .price span:nth-child(2) {
    font-size: 20px;
    font-weight: bold;
  }

  .slider2 .item-recommend .price small {
    font-size: 10px;
    font-weight: bold;
  }
}

.slider2 .item-recommend button {
  background: #B2AA9D;
  border: 0;
  border-radius: 4px;
  width: calc(100% - 48px);
  position: relative;
  line-height: 60px;
  padding: 0;
  color: #fff;
  margin-top: 13px;
  transition: all 0.3s;
}

.slider2 .item-recommend button:hover {
  background-color: rgba(178, 170, 157, 0.5);
  transition: all 0.3s;
}

.slider2 .item-recommend button img {
  width: 7.5px;
  height: 11.5px;
  position: absolute;
  right: 15px;
  top: 23px;
}

@media only screen and (max-width: 767px) {
  .slider2 .item-recommend button {
    width: calc(100% - 36px);
    line-height: 50px;
    font-size: 14px;
    margin-top: 10px;
  }

  .slider2 .item-recommend button img {
    top: 18px;
  }
}

.slider2 .note-text {
  padding: 24px;
  background: #fff;
  color: #393939;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
  max-width: 1070px;
  width: 1070px;
  margin: auto;
  display: inline-block;
  text-align: left;
  margin-top: 40px;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .slider2 .note-text {
    font-size: 13px;
    text-align: center;
    padding: 14px 8px;
    line-height: 22px;
    width: calc(100% - 32px);
    margin-top: 20px;
  }
}

.slider1 .owl-carousel .owl-nav {
  display: block;
}

.slider1 .owl-carousel .owl-nav button {
  font-size: 0;
  width: 42px;
  height: 42px;
  position: absolute;
}

.slider1 .owl-carousel .owl-nav button:first-child {
  background: url("../img/inc/arrow-l.png");
  background-size: 100%;
  left: 20px;
  top: calc(50% - 21px);
}

@media (min-width: 768px) {
  .slider1 .owl-carousel .owl-nav button:first-child {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .slider1 .owl-carousel .owl-nav button:first-child {
    top: calc(50% - 21px);
    left: 16px;
  }
}

.slider1 .owl-carousel .owl-nav button:last-child {
  background: url("../img/inc/arrow-r.png");
  right: 20px;
  top: calc(50% - 21px);
  background-size: 100%;
}

@media (min-width: 1488px) {
  .slider1 .owl-carousel .owl-nav button:last-child {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .slider1 .owl-carousel .owl-nav button:last-child {
    top: calc(50% - 21px);
    right: 16px;
  }
}

.slider2 .owl-carousel .owl-nav {
  display: block;
}

.slider2 .owl-carousel .owl-nav button {
  font-size: 0;
  width: 42px;
  height: 42px;
  position: absolute;
}

.slider2 .owl-carousel .owl-nav button:first-child {
  background: url("../img/inc/arrow-l.png");
  background-size: 100%;
  left: 20px;
  top: calc(50% - 21px);
}

@media (min-width: 768px) {
  .slider2 .owl-carousel .owl-nav button:first-child {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .slider2 .owl-carousel .owl-nav button:first-child {
    top: calc(50% - 21px);
    left: 6px;
  }
}

.slider2 .owl-carousel .owl-nav button:last-child {
  background: url("../img/inc/arrow-r.png");
  right: 20px;
  top: calc(50% - 21px);
  background-size: 100%;
}

@media (min-width: 1488px) {
  .slider2 .owl-carousel .owl-nav button:last-child {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .slider2 .owl-carousel .owl-nav button:last-child {
    top: calc(50% - 21px);
    right: 6px;
  }
}

.p-36 {
  padding-left: 36px;
  padding-right: 36px;
}

@media only screen and (max-width: 767px) {
  .p-36 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.p-24 {
  padding-left: 24px;
  padding-right: 24px;
}

@media only screen and (max-width: 767px) {
  .p-24 {
    padding-left: 3px;
    padding-right: 3px;
  }
}

.box-step ul {
  padding: 0;
  margin: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-step ul li {
  list-style: none;
  display: inline-block;
  float: left;
  margin-right: 65px;
}

@media only screen and (max-width: 767px) {
  .box-step ul li {
    margin-right: 0;
    min-width: 20%;
    text-align: center;
  }
}

.box-step ul li:hover {
  cursor: pointer;
}

.box-step ul li:last-child {
  margin-right: 0;
}

.box-step ul li span {
  color: #CCCCCC;
  font-size: 18px;
  font-weight: bold;
}

.box-step ul li span:first-child {
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  display: inline-block;
  background: #CCCCCC;
  color: #fff;
  font-size: 16px;
  border-radius: 50%;
  margin-right: 12px;
}

@media only screen and (max-width: 767px) {
  .box-step ul li span {
    font-size: 12px;
    display: block;
    margin-top: 7px;
  }

  .box-step ul li span:first-child {
    width: 21.5px;
    height: 21.5px;
    line-height: 21.5px;
    color: #fff;
    font-size: 8px;
    margin-right: 0px;
  }
}

.box-step ul li.active span {
  color: #B2AA9D;
}

.box-step ul li.active span:first-child {
  background: #B2AA9D;
  color: #fff;
}

.delivery-one-box {
  margin-top: 90px;
}

.delivery-one-box .delivery-box-custom {
  min-height: 250px !important;
}

@media only screen and (max-width: 767px) {
  .delivery-one-box .delivery-box-custom {
    min-height: auto !important;
  }
}

.delivery-one-box .delivery-box-custom .order-text-row {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #393939;
}

.modal-delete__custdest .modal-content {
  margin-left: 0 !important;
}

@media only screen and (max-width: 767px) {
  .modal-delete__custdest .modal-body .text-confirm {
    margin-bottom: 30px;
  }
}

.box-input-point {
  height: 40px;
  overflow-y: visible;
}

@media only screen and (max-width: 767px) {
  .box-input-point {
    height: auto;
  }
}

.box-input-point__text-point {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .box-input-point__text-point {
    font-weight: bold;
  }
}

.box-amazon-pay {
  padding-bottom: 40px !important;
}

@media only screen and (max-width: 767px) {
  .box-amazon-pay {
    padding-bottom: 20px !important;
  }
}

.box-amazon-pay__sub {
  font-size: 16px;
  font-weight: bold;
  color: #393939;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .box-amazon-pay__sub {
    font-size: 14px;
  }
}

.box-amazon-pay__text {
  font-size: 12px;
  font-weight: 500;
  color: #B3B3B3;
}

.box-amazon-pay__button {
  position: relative;
  height: 46px;
  width: 174px;
}

.box-amazon-pay__button span {
  font-size: 10px;
  font-weight: normal;
  position: absolute;
  left: 10px;
  top: 8px;
  line-height: 1.4;
  text-align: left;
}

.box-amazon-pay__button img {
  position: absolute;
  right: 10px;
  top: 17px;
  width: 5px;
  height: 8.61px;
}

.box-amazon {
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .box-amazon {
    padding-left: 0;
    margin-top: 0;
  }
}

.box-amazon p {
  color: #ff1d25;
  font-size: 12px;
  margin-bottom: 0;
  font-weight: bold;
}

.box-desc {
  font-size: 12px;
  margin-top: 10px;
  line-height: 16px;
}

@media only screen and (max-width: 767px) {
  .box-desc {
    width: 200%;
    margin-left: -100%;
    text-align: right;
    margin-bottom: 14px;
    line-height: 20px;
  }
}

.box-h1 {
  width: 360px;
  height: 228px;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
  max-width: 100%;
}

.box-h1 h6 {
  color: #393939;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 30px;
}

.box-h1 p {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: -1px;
}

.box-h2 {
  width: 360px;
  height: 228px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .box-h2 {
    padding: 15px;
    height: auto;
    margin-top: 12px;
  }
}

.box-h2 img {
  height: 65px;
  margin-bottom: 8px;
}

.box-h2 h6 {
  color: #393939;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 9px;
  margin-top: 13px;
}

.box-h2 h5 {
  color: #393939;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.box-h2 p {
  font-size: 12px;
  letter-spacing: -1px;
  text-align: left;
}

[type=checkbox]:checked+label.red:before {
  border-color: #8F262A !important;
}

[type=checkbox]:checked+label.red:after {
  background: url(../img/inc/checkred.png) no-repeat center;
}

.btn-amazon {
  max-width: 500px;
  max-height: 192px;
  min-height: 45px;
  min-width: 150px;
}

.item-bt {
  text-align: center;
  margin-bottom: 35px;
}

.item-bt h3 {
  color: #393939;
  font-weight: bold;
  font-size: 18px;
  margin-top: 11px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .item-bt h3 {
    font-size: 15px;
    margin-top: 11px;
    margin-bottom: 8px;
  }
}

.item-bt p {
  color: #393939;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .item-bt p {
    font-size: 13px;
    line-height: 21px;
  }
}

.item-bt .btn-user {
  line-height: 64px;
  min-width: 340px;
  background: #B2AA9D;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  margin-top: 50px;
  transition: all 0.3s;
}

.item-bt .btn-user:hover {
  background: rgba(178, 170, 157, 0.5);
}

@media only screen and (max-width: 767px) {
  .item-bt .btn-user {
    min-width: 343px;
    font-size: 15px;
    line-height: 50px;
    margin-top: 22px;
  }
}

.item-bt .text-note-itembt {
  font-size: 12px;
  line-height: 14px;
  margin-top: 9px;
  text-align: center;
}

.item-bt .btn-phone {
  line-height: 64px;
  min-width: 340px;
  max-width: 340px;
  background: #EEEEEE;
  border-radius: 40px;
  color: #8F262A;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.item-bt .btn-phone img {
  height: 24px;
}

@media only screen and (max-width: 767px) {
  .item-bt .btn-phone {
    min-width: 343px;
    max-width: 343px;
    background: #B2AA9D;
    border-radius: 6px;
    color: #fff;
    line-height: 50px;
  }

  .item-bt .btn-phone img {
    height: 24px;
  }
}

.item-bt small {
  margin-top: 25px;
  display: block;
  font-size: 14px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .item-bt small {
    text-align: center;
    margin-top: 20px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}

.page-error__title {
  font-size: 24px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  color: #393939;
  line-height: 29px;
  text-align: center;
  margin-top: 137px;
}

@media only screen and (max-width: 767px) {
  .page-error__title {
    margin-top: 85px;
    font-size: 19px;
  }
}

.page-error__desc {
  color: #C1272D;
  text-align: center;
  font-size: 16px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  margin-top: 28px;
}

@media only screen and (max-width: 767px) {
  .page-error__desc {
    margin-top: 43px;
    font-size: 13px;
  }
}

.page-error button {
  margin-top: 70px;
  margin-bottom: 60px;
}

.page-error button.error-index {
  margin-top: 138px;
}

@media only screen and (max-width: 767px) {
  .page-error button {
    margin-top: 40px;
    width: 90%;
    margin-bottom: 0;
  }

  .page-error button.error-index {
    margin-top: 119px;
  }
}

.page-entry-edit-content-box .content::-webkit-scrollbar {
  width: 10px;
}

@media only screen and (max-width: 767px) {
  .page-entry-edit-content-box .content::-webkit-scrollbar {
    width: 5px;
  }

  .menu-sp__images a {
    padding: 4px;
  }

  .menu-sp__images a img {
    width: 100%;
    height: auto;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1000px) {
  .menu-sp__images a {
    width: 20%;
  }
}

.page-entry-edit-content-box .content::-webkit-scrollbar-track {
  background: #E6E6E6;
}

.page-entry-edit-content-box .content::-webkit-scrollbar-thumb {
  background: #A09179;
  height: 40px;
}

.page-entry-edit-content-box .content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.border-1px {
  border: 1px solid #dedbd5;
}

.border-1px_c {
  border: 1px solid #999;
}

@media (min-width: 768px) {
  footer .footer-block-top .row {
    justify-content: center;
  }

  footer .footer-block-top-img {
    margin: 0 7px 14px;
    padding: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .data-list__item-information {
    margin-right: 16px;
  }
}

@media (max-width: 390px) {
  .item-product__content-text span {
    font-size: 11px;
  }
}

@media (max-width: 365px) {
  .item-product__content-text span {
    font-size: 9px;
  }
}

@media (max-width: 340px) {
  .item-product__content-text span {
    font-size: 7px;
  }
}

.page-point__safty {
  background-color: #fff;
  margin-top: 20px;
  font-weight: bold;
  padding: 20px;
  color: #000000;
  font-size: 12px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 18px;
}

.page-point__safty a {
  text-decoration: underline;
}

.text-spc-regular {
  color: #C1272D;
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
}

@media only screen and (max-width: 767px) {
  .text-spc-regular {
    color: #C1272D;
    font-size: 9.5px;
    margin-top: 7px;
  }
}

.method-title {
  font-size: 17px !important;
}

@media only screen and (max-width: 767px) {
  .method-title {
    font-size: 13px !important;
  }
}

form .page-cart__form .box-rules {
  margin-top: 80px;
  width: 100%;
}

form .page-cart__form .box-rules__title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #393939;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__title .text-md {
    display: none;
  }
}

form .page-cart__form .box-rules__title .text-sm {
  display: none;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__title .text-sm {
    display: inline-block;
  }
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__title {
    font-size: 16px;
  }
}

form .page-cart__form .box-rules__sub-title {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: #393939;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__sub-title {
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 1rem;
  }
}

form .page-cart__form .box-rules__box {
  background-color: #f2f2f2;
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__box {
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px;
  }
}

form .page-cart__form .box-rules__box-contents {
  background-color: #FFFFFF;
  padding: 35px 58px;
  overflow-y: scroll;
  height: 339px;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__box-contents {
    padding: 16px;
    font-size: 12px;
    height: 310px;
  }
}

form .page-cart__form .box-rules__box-contents::-webkit-scrollbar {
  width: 10px;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__box-contents::-webkit-scrollbar {
    width: 5px;
  }
}

form .page-cart__form .box-rules__box-contents::-webkit-scrollbar-track {
  background: #E6E6E6;
}

form .page-cart__form .box-rules__box-contents::-webkit-scrollbar-thumb {
  background: #A09179;
  height: 40px;
}

form .page-cart__form .box-rules__box-contents::-webkit-scrollbar-thumb:hover {
  background: #555;
}

form .page-cart__form .box-rules__confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 45px;
}

form .page-cart__form .box-rules__confirm .text-required {
  width: 60px;
  height: 20px;
  text-align: center;
  background-color: #C1272D;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  margin-right: 40px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__confirm .text-required {
    margin-right: 20px;
    width: 32px;
    height: 20px;
  }
}

form .page-cart__form .box-rules__confirm .label-checkbox {
  font-weight: bold;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__confirm .label-checkbox {
    font-size: 12px;
  }
}

form .page-cart__form .box-rules__confirm .checkbox-confirm {
  width: 28px;
  height: 28px;
  position: relative !important;
  left: auto !important;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__confirm .checkbox-confirm {
    width: 24px;
    height: 24px;
  }
}

form .page-cart__form .box-rules__confirm .checkbox-confirm:after {
  width: 28px;
  height: 28px;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__confirm .checkbox-confirm:after {
    width: 24px;
    height: 24px;
  }
}

form .page-cart__form .box-rules__confirm .checkbox-confirm:before {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid #F2f2f2;
  content: "";
  background: #FFF;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__confirm .checkbox-confirm:before {
    width: 24px;
    height: 24px;
  }
}

form .page-cart__form .box-rules__confirm .checkbox-confirm:after {
  position: relative;
  display: block;
  left: 2px;
  top: -28px;
  width: 28px;
  height: 28px;
  border: none;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  form .page-cart__form .box-rules__confirm .checkbox-confirm:after {
    top: -24px;
    width: 24px;
    height: 24px;
  }
}

form .page-cart__form .box-rules__confirm .checkbox-confirm:checked:after {
  background-image: url("../img/review/icon-check.png");
}

.history-detail-cancel__part .product-cancel-list__item {
  padding: 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.history-detail-cancel__part .product-cancel-list__item-info {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.history-detail-cancel__part .product-cancel-list__item-img {
  width: 137px;
  height: 137px;
  object-fit: cover;
  margin-right: 12px;
}

.history-detail-cancel__part .product-cancel-list__item-img img {
  width: 137px;
  height: 137px;
  object-fit: cover;
}

.history-detail-cancel__part .product-cancel-list__item-property {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.history-detail-cancel__part .product-cancel-list__item-name {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: bold;
}

.history-detail-cancel__part .product-cancel-list__item-name a {
  color: #0071BC;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .security-code-btn-showpass img {
    width: 10px !important;
    height: 7px !important;
  }
}

.security-code-btn-showpass img {
  width: auto !important;
  height: auto !important;
}

@media only screen and (max-width: 767px) {
  .sp-confirm-security-code {
    width: 290px;
    align-items: center !important;
  }
}

.page-order-confirm__item-btn {
  background-color: #b2aa9d;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  width: 115px;
  position: relative;
  border-radius: 6px;
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .page-order-confirm__item-btn {
    font-size: 12px;
    height: 48px;
    width: 98.5px;
    font-weight: bold;
    margin-right: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .sp-order-confirm-text {
    margin-right: 0.5rem !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-order-confirm-security-code {
    margin-right: 0rem !important;
  }
}

.pc-time-spec-text {
  display: block;
}

.sp-time-spec-text {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-time-spec-text {
    display: none;
  }

  .sp-time-spec-text {
    display: block;
  }
}

header .header__cart-item .nav-btn {
  border: none;
  background: none;
  display: none;
}

@media only screen and (max-width: 767px) {
  header .header__cart-item .nav-btn {
    display: inline-block;
  }
}

header .header__cart-item .nav-btn .line {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 6px 0;
  transition: all 0.3s;
}

header .header__cart-item .nav-btn.open .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

header .header__cart-item .nav-btn.open .line:nth-child(2) {
  opacity: 0;
}

header .header__cart-item .nav-btn.open .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}