@charset "UTF-8";
@import url("//fonts.googleapis.com/css?family=Marcellus&subset=latin-ext");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* =======================================
CommonElements
======================================= */
body {
  position: relative;
  height: 100%;
  color: #2e2624;
  background: #f7f7f7;
  word-wrap: break-word;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, Helvetica, sans-serif;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

body#ordersheet,
body#reserve {
  background: #fff;
}

a {
  color: #00bcd4;
  text-decoration: none;
}

a:active,
a:hover {
  color: #0097a7;
  text-decoration: none;
}

/* ------------------------------------
common module
------------------------------------ */
.pc_non {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .pc_non {
    display: inline-block !important;
  }
}

.sp_non {
  display: inline-block !important;
}
@media only screen and (max-width: 768px) {
  .sp_non {
    display: none !important;
  }
}

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

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

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

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

.font_ll {
  font-size: 2rem !important;
}

.font_s {
  font-size: 1.2rem !important;
}

.font_block {
  display: inline-block;
}

.text_attention {
  color: #9D2121;
}

.text_point {
  color: #BE7B7B;
}

.text_info {
  color: #7b90be;
}

/* PC hover */
@media only screen and (min-width: 768px) {
  .disable:hover {
    opacity: 1 !important;
    cursor: default;
  }
}
/* ------------------------------------
badge
------------------------------------ */
.badge {
  display: inline-block;
  font-size: 1rem;
  padding: 0.1rem 0.5rem;
}
.badge.required {
  background: #BE7B7B;
  color: #fff;
}
.badge.any {
  background: #C1A293;
  color: #fff;
}

/* ------------------------------------
alert Message
------------------------------------ */
.alert_message {
  width: 98%;
  max-width: 1080px;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin: 4rem auto;
  border-radius: 0.25rem;
}
.alert_message .alert_inner::before {
  content: "!";
  color: #fff;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  text-align: center;
  position: relative;
  line-height: 2rem;
  font-weight: bold;
  margin-right: 0.5rem;
}
.alert_message.error {
  color: #9D2121;
  background-color: #F7EFEF;
}
.alert_message.error .alert_inner::before {
  background: #9D2121;
}
.alert_message.success {
  color: #0097A7;
  background-color: #DEF1F4;
}
.alert_message.success .alert_inner::before {
  background: #00bcd4;
}
.alert_message.normal {
  color: #965A3D;
  background-color: #F4F2EE;
}
.alert_message.normal .alert_inner::before {
  background: #965A3D;
}

.remodal .alert_message {
  margin-top: 0.5rem;
}

.modal_order .product_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.modal_order .product_area > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border: 1px solid #f0f0f0;
  background: #f0f0f0;
  margin: 0 0.5rem 2rem;
  padding: 1rem;
}
@media only screen and (max-width: 800px) {
  .modal_order .product_area > div {
    margin: 0 0.25rem 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .modal_order .product_area > div {
    margin: 0 0.1rem 2rem;
  }
}
.modal_order .product_area > div figure {
  width: 100%;
  max-width: 144px;
  max-height: 144px;
  text-align: center;
  overflow: hidden;
  background: #fff;
  margin: auto;
}
.modal_order .product_area > div figure img {
  width: 100%;
  max-width: 144px;
}
.modal_order .product_area > div dl {
  padding: 1rem 0 1.5rem;
  width: 100%;
  text-align: left;
}
.modal_order .product_area > div dl dd.info {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin: 0.5rem auto 1.5rem;
}
.modal_order .product_area > div dl dd.info > span.amount {
  font-size: 1.1rem;
  font-weight: bold;
}
.modal_order .product_area > div dl dd.price,
.modal_order .product_area > div dl dd.quantity {
  width: 100%;
  max-width: 250px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal_order .product_area > div dl dd.price > span:first-of-type,
.modal_order .product_area > div dl dd.quantity > span:first-of-type {
  width: 25%;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  min-width: 35px;
}
.modal_order .product_area > div dl dd.price div,
.modal_order .product_area > div dl dd.quantity div {
  width: 75%;
}
.modal_order .product_area > div dl dd.price div .small,
.modal_order .product_area > div dl dd.quantity div .small {
  font-size: 1.1rem;
  padding: 0 0.1rem;
}
.modal_order .product_area > div dl dd.price,
.modal_order .product_area > div dl dd.quantity {
  margin: 1rem 0 0 auto;
}
.modal_order .product_area > div dl dd.price input,
.modal_order .product_area > div dl dd.quantity input {
  width: 100%;
  max-width: 65px;
  text-align: right;
}
.modal_order .product_area > div.not_sale figure {
  position: relative;
  overflow: hidden;
}
.modal_order .product_area > div.not_sale figure::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(136, 136, 136, 0.8);
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.modal_order .product_area > div.not_sale figure::after {
  position: absolute;
  content: attr(data-text) "";
  display: inline-block;
  top: 50%;
  width: calc(100% - 3rem);
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 2;
}
.modal_order .product_area > div.not_sale input {
  pointer-events: none;
  background: #f0f0f0;
  opacity: 0.7;
}
.modal_order .product_area.w05 > div {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: wrap column;
  flex-flow: wrap column;
  position: relative;
  padding-bottom: 75px;
  width: calc(50% - 1rem);
}
.modal_order .product_area.w05 > div figure {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
}
.modal_order .product_area.w05 > div figure img {
  width: 100%;
  max-width: 200px;
}
.modal_order .product_area.w05 dl dt {
  font-size: 1.6rem;
}
.modal_order .product_area.w05 dl dt span {
  font-size: 1.2rem;
  line-height: 1.8rem;
  display: block;
}
.modal_order .product_area.w05 dl dd.amount {
  margin: 2rem 0 0 auto;
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
.modal_order .product_area.w05 dl dd.price,
.modal_order .product_area.w05 dl dd.quantity {
  position: absolute;
  bottom: 55px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 1rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
.modal_order .product_area.w05 dl dd.quantity {
  bottom: 10px;
}

/* ------------------------------------
BUTTON
------------------------------------ */
a.btn,
.btn {
  display: block;
  position: relative;
  border-radius: 25px;
  font-size: 1.4rem;
  text-align: center;
  width: auto;
  min-width: 200px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  padding: 1rem;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, Helvetica, sans-serif;
}

.btn.move {
  color: #2e2624;
}
.btn.move::before {
  -webkit-box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-color: #f7f7f7;
  border-radius: 25px;
  top: 0;
  left: 0;
  content: "";
}
.btn.move:hover {
  -webkit-box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
  box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
}
.btn.move:hover::before {
  opacity: 0.5;
}
.btn.move:active {
  color: rgba(46, 38, 36, 0.6);
  -webkit-box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
  box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
}
.btn.move:active::before {
  opacity: 0;
}
.btn.move.next::after {
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #2e2624;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn.move.prev::after {
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-right: 4px solid #2e2624;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.btn.res107d {
  color: #386b26;
}
.btn.res107d::before {
  background-color: #bad9af;
}

.btn.large {
  padding: 20px 0;
  width: 90%;
  max-width: 280px;
  border-radius: 40px;
}
.btn.large::before {
  border-radius: 40px;
}

.btn.login {
  color: #00bcd4;
  padding: 20px 0;
  width: 90%;
  max-width: 280px;
  border-radius: 40px;
  min-width: 80px;
}
.btn.login::before {
  -webkit-box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-color: #f7f7f7;
  border-radius: 40px;
  top: 0;
  left: 0;
  content: "";
}
.btn.login:hover {
  -webkit-box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
  box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
}
.btn.login:hover::before {
  opacity: 0.5;
}
.btn.login:active {
  color: rgba(46, 38, 36, 0.6);
  -webkit-box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
  box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
}
.btn.login:active::before {
  opacity: 0;
}

.btn.color {
  color: #c5a4cc;
  padding: 10px 0;
  width: 90%;
  max-width: 280px;
  border-radius: 40px;
  min-width: 80px;
  margin: auto;
}
.btn.color i {
  margin-right: 10px;
}
.btn.color::before {
  -webkit-box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-color: #f7f7f7;
  border-radius: 40px;
  top: 0;
  left: 0;
  content: "";
}
.btn.color:hover {
  -webkit-box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
  box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
}
.btn.color:hover::before {
  opacity: 0.5;
}
.btn.color:active {
  color: rgba(46, 38, 36, 0.6);
  -webkit-box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
  box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
}
.btn.color:active::before {
  opacity: 0;
}

@media screen and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .btn.move {
    box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
    background-color: #f7f7f7;
  }
  *::-ms-backdrop,
  .btn.login {
    box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
    background-color: #f7f7f7;
  }
  *::-ms-backdrop,
  .btn.move::before {
    box-shadow: none;
  }
  *::-ms-backdrop,
  .btn.login::before {
    box-shadow: none;
  }
}
.btn.send {
  padding: 20px 0;
  width: 90%;
  max-width: 280px;
  border-radius: 40px;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #fff;
  background: #00bcd4;
  -webkit-box-shadow: 1px 5px 10px -2px rgba(0, 151, 167, 0.5);
  box-shadow: 1px 5px 10px -2px rgba(0, 151, 167, 0.5);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.btn.send:hover {
  -webkit-box-shadow: 1px 1px 10px -2px rgba(0, 151, 167, 0.5);
  box-shadow: 1px 1px 10px -2px rgba(0, 151, 167, 0.5);
}
.btn.send:active {
  background: #0097A7;
  color: #00bcd4;
}

.btn.primary {
  color: #fff;
  background: #00bcd4;
  -webkit-box-shadow: 1px 5px 10px -2px rgba(0, 151, 167, 0.5);
  box-shadow: 1px 5px 10px -2px rgba(0, 151, 167, 0.5);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.btn.primary:hover {
  -webkit-box-shadow: 1px 1px 10px -2px rgba(0, 151, 167, 0.5);
  box-shadow: 1px 1px 10px -2px rgba(0, 151, 167, 0.5);
}
.btn.primary:active {
  background: #0097A7;
  color: #00bcd4;
}

.btn.min {
  padding: 0.5rem;
}

.btn.sub {
  display: inline-block;
  text-align: center;
  overflow: hidden;
  min-width: 70px;
  color: #00bcd4;
}
.btn.sub.next::after {
  display: inline-block;
  margin: 0 0.5rem;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #00bcd4;
  content: "";
  vertical-align: middle;
  line-height: 1;
}
.btn.sub.prev::before {
  display: inline-block;
  margin: 0 0.5rem;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-right: 4px solid #00bcd4;
  content: "";
  vertical-align: middle;
  line-height: 1;
}
.btn.sub.delete {
  color: #BE7B7B;
}
.btn.sub.delete::before {
  display: inline;
  content: "× ";
}

/* ------------------------------------
form module
------------------------------------ */
*:focus {
  outline: none;
}

* {
  -webkit-tap-highlight-color: rgba(46, 38, 36, 0.1);
}

input[type=text],
input[type=url],
input[type=tel],
input[type=password],
input[type=email],
input[type=number],
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, Helvetica, sans-serif;
  border-radius: 0;
  border: 1px solid #959595;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}
input[type=text]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus {
  border: 1px solid #959595;
}
input[type=text]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aaa;
}
input[type=text]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
}
input[type=text]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #aaa;
}
input[type=text]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #aaa;
}
input[type=text]::placeholder,
input[type=url]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #aaa;
}

.input_wrap textarea {
  width: 100%;
  background: transparent;
}

.error dd.quantity {
  position: relative;
}
.error .error_point {
  display: block;
  width: 100%;
  position: absolute;
  margin: 0.7rem auto;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.5rem 1rem;
  opacity: 1;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: rgba(157, 33, 33, 0.8);
  border-radius: 1rem;
  -webkit-box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.3);
  box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.3);
  pointer-events: none;
  z-index: 10;
}
.error .error_point::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 10%;
  margin-left: -0.5rem;
  border: 0.5rem solid transparent;
  border-bottom: 0.5rem solid rgba(157, 33, 33, 0.8);
}
.error .error_point.min {
  width: 50px;
  height: 1.6rem;
  font-size: 1.1rem;
  margin: 0.3rem auto;
  padding: 0 0.1rem;
  overflow: hidden;
  line-height: 1.6rem;
  white-space: nowrap;
}
.error input[type=text],
.error input[type=url],
.error input[type=tel],
.error input[type=password],
.error input[type=email],
.error input[type=number],
.error textarea {
  border: 1px solid #9D2121;
  background: #F7EFEF !important;
  color: #9D2121;
}
.error input[type=text]:focus,
.error input[type=url]:focus,
.error input[type=tel]:focus,
.error input[type=password]:focus,
.error input[type=email]:focus,
.error input[type=number]:focus,
.error textarea:focus {
  border: 1px solid #9D2121;
}
.error input[type=text]:focus + .error_point,
.error input[type=url]:focus + .error_point,
.error input[type=tel]:focus + .error_point,
.error input[type=password]:focus + .error_point,
.error input[type=email]:focus + .error_point,
.error input[type=number]:focus + .error_point,
.error textarea:focus + .error_point {
  opacity: 0.5;
}
.error .select_wrap {
  border: 1px solid #9D2121;
  background: #F7EFEF !important;
}
.error .select_wrap select {
  color: #9D2121;
}
.error .rad_point::before {
  background: #F7EFEF;
  border: 1px solid #9D2121;
}
.error .rad_text {
  color: #9D2121;
}
.error .error_message {
  font-size: 1rem;
  color: #9D2121;
  display: block;
  line-height: 1.4rem;
  margin: 0.2rem auto;
}

.hint_message {
  font-size: 1rem;
  color: #6A6563;
  display: block;
}

.info_message {
  font-size: 1.2rem;
  color: #6A6563;
  display: block;
}

.disabled {
  opacity: 0.7;
}
.disabled input {
  pointer-events: none;
  background: #f0f0f0;
  opacity: 0.7;
}

.board.disabled {
  opacity: 1;
}
.board.disabled input {
  opacity: 1;
  border: 1px solid #f0f0f0;
  background: #f0f0f0;
}

.pass_wrap {
  position: relative;
}
.pass_wrap input {
  padding: 0.5rem 3rem 0.5rem 0.5rem;
}
.pass_wrap .icon_area {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #888;
}
.pass_wrap .icon_area .tgl_pass i::before {
  content: "\f070";
}
.pass_wrap .icon_area .tgl_pass.active i::before {
  content: "\f06e";
}

.form_area {
  margin: auto;
}
.form_area dl {
  margin: 4rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .form_area dl {
    margin: 2rem auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
}
.form_area dl dt {
  width: 40%;
  padding: 1rem;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .form_area dl dt {
    width: 98%;
    margin: auto;
    padding: 0 0 1rem;
  }
}
.form_area dl dd {
  width: 60%;
}
.form_area dl dd .input_wrap {
  width: 100%;
}
.form_area dl dd .input_wrap input {
  margin: 0 auto;
  background: transparent;
  width: 100%;
  display: block;
  padding: 0.5rem;
}
.form_area dl dd .input_wrap.no_input {
  padding-top: 5px;
}
@media only screen and (max-width: 768px) {
  .form_area dl dd {
    width: 98%;
    margin: auto;
  }
}
.form_area.text dl,
.form_area.text p {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .form_area.text dl,
  .form_area.text p {
    padding-bottom: 2rem;
  }
}
.form_area.text dl:first-of-type,
.form_area.text p:first-of-type {
  padding-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .form_area.text dl:first-of-type,
  .form_area.text p:first-of-type {
    padding-top: 2rem;
  }
}
.form_area.text dl dt,
.form_area.text p dt {
  padding: 0;
}
.form_area.card {
  margin: 4rem auto;
  border: 1px solid #d6d6d6;
  padding: 1rem 3rem;
}
.form_area.card dl {
  margin: 2rem auto;
}
.form_area.card dl dt {
  padding: 0;
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .form_area.card dl dt {
    width: 98%;
    font-size: 1.2rem;
  }
}
.form_area.card dl dd {
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .form_area.card dl dd {
    width: 98%;
    border-bottom: 1px dotted #d8d8d8;
    padding-bottom: 0.5rem;
  }
}

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

.rad_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  position: relative;
  padding: 0.5rem 1.6rem 0.5rem 1rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 1rem 0 0;
}

.rad_input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}

.rad_point {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  border-radius: 100px;
  background: #00bcd4;
  position: relative;
  display: block;
}
.rad_point::before {
  content: "";
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #ddd;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.rad_input:checked + .rad_point::before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.rad_text {
  margin-left: 1.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #6A6563;
}

.rad_input:checked ~ .rad_text {
  color: #2e2624;
}

.select_wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  border: 1px solid #959595;
  background: transparent;
  width: 100%;
}

.select_wrap::before {
  position: absolute;
  top: 50%;
  right: 0.5em;
  padding: 0;
  width: 0;
  height: 0;
  border-top: 6px solid #959595;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  pointer-events: none;
}

.select_wrap select {
  padding: 0.8rem 3rem 0.8rem 0.8rem;
  max-width: 100%;
  width: 100%;
  outline: none;
  border: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #000;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/* ------------------------------------
table
------------------------------------ */
.ct_table_wrap {
  position: relative;
  overflow: scroll;
  margin: auto auto 2rem;
  width: calc(100% - 1rem);
  height: 70vh;
  max-height: 570px;
}
@media only screen and (max-width: 768px) {
  .ct_table_wrap {
    height: auto;
    max-height: initial;
    overflow-x: scroll;
    overflow-y: visible;
  }
}

.col_table_wrap {
  position: relative;
  margin: auto auto 2rem;
  width: calc(100% - 1rem);
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .col_table_wrap {
    height: auto;
    max-height: initial;
    overflow-x: scroll;
    overflow-y: visible;
    padding-bottom: 10px;
  }
}

.ct_table_wrap.not_sale,
.col_table_wrap.not_sale {
  overflow: hidden;
}
.ct_table_wrap.not_sale::before,
.col_table_wrap.not_sale::before {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: rgba(136, 136, 136, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 20;
}
.ct_table_wrap.not_sale::after,
.col_table_wrap.not_sale::after {
  position: absolute;
  content: attr(data-text) "";
  display: inline-block;
  top: 50%;
  width: calc(100% - 3rem);
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  z-index: 21;
}

.ct_table {
  border-collapse: separate;
  table-layout: fixed;
}
.ct_table thead th,
.ct_table tfoot th {
  position: sticky;
  z-index: 10;
  white-space: nowrap;
}
.ct_table thead th:first-child,
.ct_table tfoot th:first-child {
  z-index: 12;
}
@media only screen and (max-width: 768px) {
  .ct_table thead th:first-child,
  .ct_table tfoot th:first-child {
    z-index: 9;
  }
}
@media only screen and (max-width: 768px) {
  .ct_table thead th,
  .ct_table tfoot th {
    position: static;
  }
}
.ct_table thead tr.tone th {
  top: 0;
  height: 30px;
  background: #fff;
}
.ct_table thead tr.tone th:nth-of-type(n+2) {
  background: #2e2624;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Marcellus", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.1rem;
  vertical-align: middle;
  border: 1px #d8d8d8 solid;
}
.ct_table thead tr.color_image th {
  top: 30px;
  background: #fff;
}
.ct_table thead tr.color_image th:nth-of-type(n+2) {
  border: 1px #d8d8d8 solid;
}
.ct_table thead tr.color_image th figure {
  position: relative;
  width: 72px;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
}
.ct_table thead tr.color_image th figure img {
  width: 100%;
  max-width: 72px;
}
.ct_table thead tr.color_name th,
.ct_table tfoot tr.color_name th {
  top: 93px;
  background: #fff;
}
.ct_table thead tr.color_name th:nth-of-type(n+2),
.ct_table tfoot tr.color_name th:nth-of-type(n+2) {
  border: 1px #d8d8d8 solid;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.2rem;
  color: #595757;
  vertical-align: middle;
  padding: 5px 3px;
}
.ct_table tfoot {
  display: none;
}
@media only screen and (max-width: 768px) {
  .ct_table tfoot {
    display: table-footer-group;
  }
  .ct_table tfoot tr.color_name th {
    top: auto;
  }
}
.ct_table th:first-child {
  position: sticky;
  left: 0;
  z-index: 10;
}
.ct_table tbody tr th,
.ct_table tbody tr td {
  border: 1px #d8d8d8 solid;
  text-align: center;
  vertical-align: middle;
  padding: 3px;
}
.ct_table tbody tr .noborder {
  border: none;
}
.ct_table tbody tr th {
  width: 20px;
  font-size: 1.4rem;
  font-family: "Marcellus", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  background: #888;
  color: #fff;
}
.ct_table tbody tr td {
  padding: 5px 0 20px;
  position: relative;
  background: #f0f0f0;
}
@media only screen and (max-width: 768px) {
  .ct_table tbody tr td {
    padding: 5px 0 5px;
  }
}
.ct_table tbody tr td input[type=number] {
  width: 50px;
  margin: 5px auto 0;
  height: 26px;
  text-align: right;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .ct_table tbody tr td input[type=number] {
    height: 30px;
    margin: 8px auto 0;
  }
}
.ct_table tbody tr td.sale {
  background: #fff;
}
.ct_table tbody tr td.release_202102 {
  background: #FFF7D3;
}
.ct_table tbody tr td.release_202103 {
  background: #FFECD3;
}
.ct_table tbody tr td.release_202104 {
  background: #DDE7ED;
}

.flip_boards {
  position: relative;
  z-index: 1;
}
.flip_boards .board {
  float: left;
  position: relative;
  width: 70px;
  height: 60px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media only screen and (max-width: 768px) {
  .flip_boards .board {
    height: 70px;
  }
}
.flip_boards .board div {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
}
.flip_boards .board div img {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  width: 50px;
}
@media only screen and (max-width: 768px) {
  .flip_boards .board div img {
    width: 40px;
  }
}
.flip_boards .board div.flipped {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: #fff;
}

.release_202102 .flip_boards div.flipped {
  background: #FFF7D3;
}

.release_202103 .flip_boards div.flipped {
  background: #FFECD3;
}

.release_202104 .flip_boards div.flipped {
  background: #DDE7ED;
}

input.sam_view {
  display: none;
}

label.all_sam_view {
  cursor: pointer;
}

#all_view:checked + label {
  background: url(/img/ordersheet/btn_colorsam_non.png) #2f2624 no-repeat center center;
}

label.sam_view {
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  background: url(/img/ordersheet/icon_sam_view.png) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  label.sam_view {
    top: 2px;
    right: -5px;
    z-index: 2;
  }
}

input.sam_view:checked + div + label.sam_view {
  background: url(/img/ordersheet/icon_sam_non.png) no-repeat center center;
}

input.sam_view:checked + div > div.board {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
input.sam_view:checked + div > div.board .error_point {
  opacity: 0;
}

@media screen and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  input.sam_view:checked + div > div.board {
    transform: rotateY(0deg);
  }
  *::-ms-backdrop,
  .flip_boards .board div.flipped {
    display: none;
    transform: rotateY(0deg);
  }
  *::-ms-backdrop,
  input.sam_view:checked + div > div.board div.front {
    display: none;
  }
  *::-ms-backdrop,
  input.sam_view:checked + div > div.board div.flipped {
    display: block;
  }
}
/* ------------------------------------
Layout header inside
------------------------------------ */
.header {
  background: #fff;
  position: relative;
  z-index: 100;
  -webkit-box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.1);
  box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.1);
}
.header .inner {
  width: 98%;
  max-width: 1400px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
}
@media only screen and (max-width: 768px) {
  .header .inner {
    padding: 10px 0;
  }
}
.header .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .title h1 {
  width: 160px;
}
.header .title h1 a img {
  width: 100%;
  vertical-align: middle;
}
.header .title h1 span {
  display: block;
  font-size: 1.1rem;
  color: #C1A293;
  margin: 0 auto 1rem;
  padding-top: 5px;
}
.header .title .dealer {
  display: inline-block;
  font-size: 1.1rem;
  background: #C1A293;
  color: #fff;
  padding: 3px 10px;
}
@media only screen and (max-width: 768px) {
  .header .title .dealer {
    padding: 3px 6px;
  }
}
.header .header_nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .header_nav .salon_cart {
  display: block;
  width: 36px;
  height: 30px;
  position: relative;
}
.header .header_nav .salon_cart a {
  width: 100%;
  height: 100%;
  display: block;
  line-height: 30px;
  color: #2e2624;
  font-size: 2.5rem;
}
.header .header_nav .salon_cart .badge {
  position: absolute;
  top: 0;
  right: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00bcd4;
  z-index: 10;
}
.header .header_nav .salon_name {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding-right: 10px;
  text-align: right;
  color: #595757;
}
@media only screen and (max-width: 768px) {
  .header .header_nav .salon_name {
    display: none;
  }
}
.header .header_nav .salon_menu {
  padding: 0 10px;
}
.header .header_nav .salon_menu .salon_btn {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: block;
}
.header .header_nav .salon_menu .salon_btn span {
  background-color: #666;
  position: absolute;
  border-radius: 2px;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 4px;
  height: 4px;
}
.header .header_nav .salon_menu .salon_btn span:nth-child(1) {
  top: 0;
  left: 6px;
}
.header .header_nav .salon_menu .salon_btn span:nth-child(2) {
  top: 8px;
  left: 6px;
}
.header .header_nav .salon_menu .salon_btn span:nth-child(3) {
  bottom: 0;
  left: 6px;
}
.header .header_nav .salon_menu.open .salon_btn span:nth-child(1) {
  -webkit-transform: rotate(45deg) scaleX(0.7);
  transform: rotate(45deg) scaleX(0.7);
  top: 10PX;
  left: -3px;
  width: 14px;
  height: 2px;
}
.header .header_nav .salon_menu.open .salon_btn span:nth-child(2) {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-duration: 50ms;
  transition-duration: 50ms;
}
.header .header_nav .salon_menu.open .salon_btn span:nth-child(3) {
  -webkit-transform: rotate(-45deg) scaleX(0.7);
  transform: rotate(-45deg) scaleX(0.7);
  top: 10PX;
  left: 3px;
  width: 14px;
  height: 2px;
}
.header .header_nav .salon_menu ul {
  display: none;
}
.header .header_nav .salon_menu.open ul {
  display: block;
  position: absolute;
  width: 200px;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  -webkit-box-shadow: 0px -2px 10px 0px rgba(46, 38, 36, 0.1);
  box-shadow: 0px -2px 10px 0px rgba(46, 38, 36, 0.1);
  right: 3px;
  top: 30px;
}
.header .header_nav .salon_menu.open ul::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 15px;
  margin-left: -0.5rem;
  border: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #fff;
}
.header .header_nav .salon_menu.open ul li {
  border-bottom: 1px dotted #d6d6d6;
  font-size: 1.4rem;
  padding: 1rem 0;
}
.header .header_nav .salon_menu.open ul li.name {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header .header_nav .salon_menu.open ul li.name {
    display: block;
    color: #595757;
    line-height: 1.8rem;
  }
}
.header .header_nav .salon_menu.open ul li:last-child {
  border-bottom: none;
}
.header .header_nav .salon_menu.open ul li a {
  width: 100%;
  height: 100%;
  display: block;
}

.order_head {
  width: 100%;
  background: #f7f7f7;
  z-index: 100;
  top: 0;
  left: 0;
}
.order_head .inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  height: 100%;
  padding: 20px 10px;
  overflow: auto;
}
.order_head .inner h1 {
  font-family: "Marcellus", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 3rem;
  line-height: 3rem;
  vertical-align: middle;
  margin: 5px auto 20px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .order_head .inner h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
}
.order_head .inner h1 span {
  font-size: 1.2rem;
  display: inline-block;
}
.order_head .inner .reserve {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 8px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.order_head .inner .reserve .btn {
  padding-inline: 2rem;
}
@media only screen and (max-width: 768px) {
  .order_head .inner .reserve .btn {
    min-width: 120px;
    font-size: 1.2rem;
  }
}
.order_head #page_nav {
  width: 100%;
  background: #f7f7f7;
  padding-top: 10px;
}
.order_head .is_fixed {
  position: fixed;
  top: 0;
  z-index: 100;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.3);
  box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.3);
}
.order_head .page_nav {
  width: 98%;
  max-width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 0 auto;
}
.order_head .page_nav a {
  display: block;
  position: relative;
  color: #2e2624;
  font-weight: bold;
  text-align: center;
  padding: 0 0 10px;
  width: 100%;
  max-width: 220px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .order_head .page_nav a {
    font-size: 1rem;
    line-height: 13px;
  }
}
.order_head .page_nav a::after {
  display: block;
  width: 98%;
  height: 2px;
  background: #2e2624;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
}
@media only screen and (max-width: 768px) {
  .order_head .page_nav a::after {
    width: 96%;
  }
}
.order_head .page_nav a::before {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2624;
  display: block;
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
}

/* ------------------------------------
Layout header outside
------------------------------------ */
#login .info,
#reminder .info,
#reset .info,
#notfound .info,
#maintenance .info {
  width: 100%;
  background: #F7EFEF;
  padding: 1.4rem 0.5rem;
  position: relative;
  top: 0;
  left: 0;
}
#login .info .inner,
#reminder .info .inner,
#reset .info .inner,
#notfound .info .inner,
#maintenance .info .inner {
  width: 96%;
  max-width: 1080px;
  margin: auto;
}
#login .info h2,
#reminder .info h2,
#reset .info h2,
#notfound .info h2,
#maintenance .info h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #BE7B7B;
}
#login .info p,
#reminder .info p,
#reset .info p,
#notfound .info p,
#maintenance .info p {
  font-size: 1.4rem;
}
#login .alert_message,
#reminder .alert_message,
#reset .alert_message,
#notfound .alert_message,
#maintenance .alert_message {
  text-align: center;
}
#login main.login_panel,
#reminder main.login_panel,
#reset main.login_panel,
#notfound main.login_panel,
#maintenance main.login_panel {
  width: 100%;
  max-width: 720px;
  margin: 10rem auto;
  padding: 0 10px;
}
#login main.login_panel h1,
#reminder main.login_panel h1,
#reset main.login_panel h1,
#notfound main.login_panel h1,
#maintenance main.login_panel h1 {
  width: 98%;
  max-width: 300px;
  text-align: center;
  margin: 0 auto 4rem;
}
#login main.login_panel h1 img,
#reminder main.login_panel h1 img,
#reset main.login_panel h1 img,
#notfound main.login_panel h1 img,
#maintenance main.login_panel h1 img {
  width: 100%;
}
#login main.login_panel h1 span,
#reminder main.login_panel h1 span,
#reset main.login_panel h1 span,
#notfound main.login_panel h1 span,
#maintenance main.login_panel h1 span {
  display: block;
  font-size: 1.2rem;
  color: #C1A293;
  margin: 0 auto 1rem;
}
#login main.login_panel .login_inner,
#reminder main.login_panel .login_inner,
#reset main.login_panel .login_inner,
#notfound main.login_panel .login_inner,
#maintenance main.login_panel .login_inner {
  padding: 2rem 0 0;
}
#login main.login_panel dl,
#reminder main.login_panel dl,
#reset main.login_panel dl,
#notfound main.login_panel dl,
#maintenance main.login_panel dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
@media only screen and (max-width: 768px) {
  #login main.login_panel dl,
  #reminder main.login_panel dl,
  #reset main.login_panel dl,
  #notfound main.login_panel dl,
  #maintenance main.login_panel dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
}
#login main.login_panel dl dt,
#reminder main.login_panel dl dt,
#reset main.login_panel dl dt,
#notfound main.login_panel dl dt,
#maintenance main.login_panel dl dt {
  width: 30%;
  font-weight: bold;
  padding-top: 1rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #login main.login_panel dl dt,
  #reminder main.login_panel dl dt,
  #reset main.login_panel dl dt,
  #notfound main.login_panel dl dt,
  #maintenance main.login_panel dl dt {
    width: 90%;
    margin: auto;
    padding-top: 0;
  }
}
#login main.login_panel dl dd,
#reminder main.login_panel dl dd,
#reset main.login_panel dl dd,
#notfound main.login_panel dl dd,
#maintenance main.login_panel dl dd {
  width: 60%;
}
#login main.login_panel dl dd .input_wrap,
#reminder main.login_panel dl dd .input_wrap,
#reset main.login_panel dl dd .input_wrap,
#notfound main.login_panel dl dd .input_wrap,
#maintenance main.login_panel dl dd .input_wrap {
  width: 100%;
  max-width: initial;
}
@media only screen and (max-width: 768px) {
  #login main.login_panel dl dd,
  #reminder main.login_panel dl dd,
  #reset main.login_panel dl dd,
  #notfound main.login_panel dl dd,
  #maintenance main.login_panel dl dd {
    width: 90%;
    margin: auto;
  }
}
#login main.login_panel .input_wrap,
#reminder main.login_panel .input_wrap,
#reset main.login_panel .input_wrap,
#notfound main.login_panel .input_wrap,
#maintenance main.login_panel .input_wrap {
  margin: 0 auto 2rem;
  width: 98%;
  max-width: 360px;
}
#login main.login_panel .input_wrap input,
#reminder main.login_panel .input_wrap input,
#reset main.login_panel .input_wrap input,
#notfound main.login_panel .input_wrap input,
#maintenance main.login_panel .input_wrap input {
  margin: 0 auto;
  background: transparent;
  width: 100%;
  display: block;
  padding: 0.5rem;
}
#login main.login_panel .btn_area,
#reminder main.login_panel .btn_area,
#reset main.login_panel .btn_area,
#notfound main.login_panel .btn_area,
#maintenance main.login_panel .btn_area {
  margin: 4rem auto;
}
#login main.login_panel .btn_area.movie,
#reminder main.login_panel .btn_area.movie,
#reset main.login_panel .btn_area.movie,
#notfound main.login_panel .btn_area.movie,
#maintenance main.login_panel .btn_area.movie {
  margin: 8rem auto;
}
#login main.login_panel .btn_area .btn,
#reminder main.login_panel .btn_area .btn,
#reset main.login_panel .btn_area .btn,
#notfound main.login_panel .btn_area .btn,
#maintenance main.login_panel .btn_area .btn {
  margin: auto;
}
#login main.login_panel .btn_area .sub_link,
#reminder main.login_panel .btn_area .sub_link,
#reset main.login_panel .btn_area .sub_link,
#notfound main.login_panel .btn_area .sub_link,
#maintenance main.login_panel .btn_area .sub_link {
  margin: 4rem auto 0;
  text-align: center;
}
#login main.login_panel h2,
#reminder main.login_panel h2,
#reset main.login_panel h2,
#notfound main.login_panel h2,
#maintenance main.login_panel h2 {
  margin: 0 auto 2rem;
  text-align: center;
  color: #696362;
}
#login main.login_panel p,
#reminder main.login_panel p,
#reset main.login_panel p,
#notfound main.login_panel p,
#maintenance main.login_panel p {
  color: #696362;
  text-align: center;
}
#login main.login_panel .memo_area,
#reminder main.login_panel .memo_area,
#reset main.login_panel .memo_area,
#notfound main.login_panel .memo_area,
#maintenance main.login_panel .memo_area {
  margin: 4rem auto;
}
#login main.login_panel .memo_area p.memo,
#reminder main.login_panel .memo_area p.memo,
#reset main.login_panel .memo_area p.memo,
#notfound main.login_panel .memo_area p.memo,
#maintenance main.login_panel .memo_area p.memo {
  font-size: 1.4rem;
}

#maintenance .maintenance_message {
  margin: 4rem auto;
  text-align: center;
}
#maintenance .maintenance_message p {
  margin: 1rem auto;
}
#maintenance .maintenance_message div {
  margin: 3rem auto;
}

/* ------------------------------------
Layout main ordersheet
------------------------------------ */
main.order {
  width: 100%;
  margin: 0 auto;
}
main.order > .message_area {
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
  padding: 50px 10px 0;
}
main.order .inner {
  margin: 0 auto 50px;
  width: 100%;
  max-width: 1080px;
  padding: 50px 10px 0;
}
@media only screen and (max-width: 768px) {
  main.order .inner {
    margin: 0 auto 50px;
  }
}
main.order .inner .message_area .ct_info_mes {
  position: relative;
  padding: 0 140px 0 75px;
  display: block;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  main.order .inner .message_area .ct_info_mes {
    padding: 0 0 0 45px;
  }
}
main.order .inner .message_area .ct_info_mes:before {
  width: 60px;
  height: 2rem;
  display: inline-block;
  content: "";
  line-height: 2rem;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  background: #DDE7ED;
}
@media only screen and (max-width: 768px) {
  main.order .inner .message_area .ct_info_mes:before {
    width: 30px;
  }
}
main.order .inner .message_area .ct_info_mes.release_202102:before {
  background: #FFF7D3;
}
main.order .inner .message_area .ct_info_mes.release_202103:before {
  background: #FFECD3;
}
main.order .inner .message_area .ct_info_mes.release_202104:before {
  background: #DDE7ED;
}
main.order .inner .message_area.ct1 {
  padding-right: 160px;
  padding-bottom: 55px;
}
@media only screen and (max-width: 768px) {
  main.order .inner .message_area.ct1 {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 0.5rem;
  }
}
main.order .inner .message_area .btn.color {
  position: absolute;
  bottom: 0;
  right: 160px;
}
@media only screen and (max-width: 768px) {
  main.order .inner .message_area .btn.color {
    position: relative;
    right: 0;
  }
}
main.order .inner .message_area .all_sam_view {
  position: absolute;
  bottom: 0;
  right: 3px;
  width: 100%;
  text-align: right;
}
main.order .inner .message_area .all_sam_view label {
  width: 150px;
  display: inline-block;
  height: 45px;
  background: url(/img/ordersheet/btn_colorsam_view.png) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  main.order .inner .message_area .all_sam_view {
    position: relative;
    margin-top: 0.5rem;
  }
}
main.order .inner .message_area .error_message {
  margin: 0.2rem auto;
  color: #fff;
  background: rgba(157, 33, 33, 0.8);
  border-radius: 2rem;
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 0.5rem 1rem;
}
main.order .inner .message_area .disabled_message {
  margin: 0.2rem auto;
  color: rgba(157, 33, 33, 0.8);
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 0 1rem;
}
main.order .product_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
main.order .product_area > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  border: 1px solid #f0f0f0;
  background: #fff;
  margin: 0 0.5rem 2rem;
  padding: 1rem;
}
@media only screen and (max-width: 800px) {
  main.order .product_area > div {
    margin: 0 0.25rem 2rem;
  }
}
@media only screen and (max-width: 480px) {
  main.order .product_area > div {
    margin: 0 0.1rem 2rem;
  }
}
main.order .product_area > div figure {
  width: 100%;
  max-width: 144px;
  max-height: 144px;
  text-align: center;
  overflow: hidden;
  background: #fff;
  margin: auto;
}
main.order .product_area > div figure img {
  width: 100%;
  max-width: 144px;
}
main.order .product_area > div dl {
  padding: 1rem 0 1.5rem;
  width: 100%;
}
main.order .product_area > div dl dd.info {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin: 0.5rem auto 1.5rem;
}
main.order .product_area > div dl dd.info > span.amount {
  font-size: 1.1rem;
  font-weight: bold;
}
main.order .product_area > div dl dd.price,
main.order .product_area > div dl dd.quantity {
  width: 100%;
  max-width: 250px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
main.order .product_area > div dl dd.price > span:first-of-type,
main.order .product_area > div dl dd.quantity > span:first-of-type {
  width: 25%;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  min-width: 35px;
}
main.order .product_area > div dl dd.price div,
main.order .product_area > div dl dd.quantity div {
  width: 75%;
}
main.order .product_area > div dl dd.price div .small,
main.order .product_area > div dl dd.quantity div .small {
  font-size: 1.1rem;
  padding: 0 0.1rem;
}
main.order .product_area > div dl dd.price,
main.order .product_area > div dl dd.quantity {
  margin: 1rem 0 0 auto;
}
main.order .product_area > div dl dd.price input,
main.order .product_area > div dl dd.quantity input {
  width: 100%;
  max-width: 65px;
  text-align: right;
}
main.order .product_area > div.not_sale figure {
  position: relative;
  overflow: hidden;
}
main.order .product_area > div.not_sale figure::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(136, 136, 136, 0.8);
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
main.order .product_area > div.not_sale figure::after {
  position: absolute;
  content: attr(data-text) "";
  display: inline-block;
  top: 50%;
  width: calc(100% - 3rem);
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 2;
}
main.order .product_area > div.not_sale input {
  pointer-events: none;
  background: #f0f0f0;
  opacity: 0.7;
}
main.order .product_area.w01 > div {
  width: calc(100% - 1rem);
}
main.order .product_area.w01 > div figure {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  overflow: auto;
  background: #fff;
}
main.order .product_area.w01 > div figure img {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  main.order .product_area.w01 > div {
    width: 100%;
  }
  main.order .product_area.w01 > div figure {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    overflow: auto;
    background: #fff;
  }
  main.order .product_area.w01 > div figure img {
    max-width: 100%;
  }
}
main.order .product_area.w02 > div {
  width: calc(50% - 1rem);
}
@media only screen and (max-width: 768px) {
  main.order .product_area.w02 > div {
    width: 100%;
  }
  main.order .product_area.w02 > div figure {
    max-width: 100px;
    min-height: 160px;
    margin: auto;
    height: 100%;
  }
  main.order .product_area.w02 > div figure img {
    max-width: 100px;
  }
}
main.order .product_area.w02 > div dl {
  padding: 1.5rem 1rem 1rem;
}
main.order .product_area.w02 > div dl dt {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
main.order .product_area.gray > div {
  background: #f0f0f0;
}
main.order .product_area.w04 > div, main.order .product_area.w05 > div, main.order .product_area.w06 > div {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: wrap column;
  flex-flow: wrap column;
  position: relative;
  padding-bottom: 75px;
}
main.order .product_area.w04 dl dt, main.order .product_area.w05 dl dt, main.order .product_area.w06 dl dt {
  font-size: 1.6rem;
}
main.order .product_area.w04 dl dt span, main.order .product_area.w05 dl dt span, main.order .product_area.w06 dl dt span {
  font-size: 1.2rem;
  line-height: 1.8rem;
  display: block;
}
main.order .product_area.w04 dl dd.amount, main.order .product_area.w05 dl dd.amount, main.order .product_area.w06 dl dd.amount {
  margin: 2rem 0 0 auto;
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
main.order .product_area.w04 dl dd.price,
main.order .product_area.w04 dl dd.quantity, main.order .product_area.w05 dl dd.price,
main.order .product_area.w05 dl dd.quantity, main.order .product_area.w06 dl dd.price,
main.order .product_area.w06 dl dd.quantity {
  position: absolute;
  bottom: 55px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 1rem;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
main.order .product_area.w04 dl dd.quantity, main.order .product_area.w05 dl dd.quantity, main.order .product_area.w06 dl dd.quantity {
  bottom: 10px;
}
main.order .product_area.w04 > div {
  width: calc(25% - 1rem);
}
main.order .product_area.w04 > div figure {
  width: 100%;
  max-width: 300px;
  max-height: 300px;
}
main.order .product_area.w04 > div figure img {
  width: 100%;
  max-width: 300px;
}
main.order .product_area.w05 > div {
  width: calc(20% - 1rem);
}
main.order .product_area.w05 > div figure {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
}
main.order .product_area.w05 > div figure img {
  width: 100%;
  max-width: 200px;
}
main.order .product_area.w06 > div {
  width: calc(16.6666666667% - 1rem);
}
main.order .product_area.w06 > div figure {
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 810px) {
  main.order .product_area.w04 > div, main.order .product_area.w05 > div, main.order .product_area.w06 > div {
    width: calc(33.3333333333% - 0.5rem);
  }
}
@media only screen and (max-width: 480px) {
  main.order .product_area.w04 > div, main.order .product_area.w05 > div, main.order .product_area.w06 > div {
    width: calc(50% - 0.2rem);
  }
}
main.order .bg_gly {
  max-width: initial;
  background: #f0f0f0;
  width: 100%;
  margin: auto;
  overflow: hidden;
  padding: 50px 0 100px;
}
@media only screen and (max-width: 768px) {
  main.order .bg_gly {
    padding: 50px 0 0;
  }
}

/* ------------------------------------
Layout main ordersheet colorfantasy info
------------------------------------ */
main.order .colorfantasy {
  width: 100%;
}
main.order .colorfantasy .intro_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 0 auto 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .intro_area {
    margin: 0 auto 15px;
  }
}
main.order .colorfantasy .intro_area .intro_column {
  background: url(/img/ordersheet/ct_bg_01.png) no-repeat center center;
  background-size: auto 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 65%;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .intro_area .intro_column {
    width: 100%;
  }
}
main.order .colorfantasy .intro_area .intro_column h3 {
  margin: 20px auto;
  max-width: 80%;
  text-align: center;
}
main.order .colorfantasy .intro_area .intro_column h3 img {
  max-width: 100%;
}
main.order .colorfantasy .intro_area .intro_column p {
  color: #6a6563;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  line-height: 3rem;
  margin: 0 auto 20px;
}
main.order .colorfantasy .intro_area .intro_img {
  width: 35%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .intro_area .intro_img {
    width: 100%;
    text-align: center;
  }
}
main.order .colorfantasy .intro_area .intro_img figure {
  margin-bottom: 15px;
  padding-top: 40px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .intro_area .intro_img figure {
    padding-top: 0;
  }
}
main.order .colorfantasy .intro_area .intro_img figure img {
  margin-bottom: 20px;
  max-width: 280px;
  width: 100%;
}
main.order .colorfantasy .intro_area .intro_img figure figcaption {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .intro_area .intro_img figure figcaption {
    padding-left: 4%;
  }
}
main.order .colorfantasy .intro_area .intro_img figure figcaption span {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 10px;
}
main.order .colorfantasy .howto_area {
  background: #cdc9e4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding: 10px 0 10px 20px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .howto_area {
    padding: 0 0 10px 10px;
    margin: 0 auto 30px;
  }
}
main.order .colorfantasy .howto_area li {
  background: #fff;
  border-bottom: 1px solid #c5a4cc;
  border-left: 1px solid #c5a4cc;
  border-top: 1px solid #c5a4cc;
  margin-right: 20px;
  position: relative;
  width: calc(25% - 20px);
}
main.order .colorfantasy .howto_area li::before {
  background: url(/img/ordersheet/cf_arrow.png) no-repeat bottom 30px left #fff;
  background-size: 15px auto;
  border-left: 1px solid #c5a4cc;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: -20px;
  top: 0;
  width: 20px;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .howto_area li::before {
    display: none;
  }
}
main.order .colorfantasy .howto_area li img {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .howto_area li {
    width: calc(50% - 10px);
    margin-top: 10px;
    margin-right: 10px;
  }
}
main.order .colorfantasy .howto_area li:last-child {
  border-right: 1px solid #c5a4cc;
}
main.order .colorfantasy .howto_area li:last-child::before {
  display: none;
}
main.order .colorfantasy .howto_area dl dt {
  padding: 5px;
}
main.order .colorfantasy .howto_area dl dd {
  padding: 0 10px 15px 50px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .howto_area dl dd {
    padding: 0 3px 10px 3px;
  }
}
main.order .colorfantasy .bana_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
main.order .colorfantasy .bana_area a {
  width: 48%;
  display: block;
  padding: 1%;
  background: #cdc9e4;
  height: 100%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media only screen and (max-width: 768px) {
  main.order .colorfantasy .bana_area a {
    width: 98%;
    margin: 0 auto 5px;
  }
}
main.order .colorfantasy .bana_area a:hover {
  opacity: 0.6;
}
main.order .colorfantasy .bana_area a img {
  max-width: 100%;
}
main.order .colorfantasy .insta {
  padding: 20px 5px 20px 60px;
  border: 1px solid #cdc9e4;
  width: 100%;
  margin: 10px auto;
  background: url(/img/ordersheet/ico_insta.svg) no-repeat left 20px center;
  background-size: 30px 30px;
}
main.order .colorfantasy .insta span {
  color: #c5a4cc;
  font-size: 1.6rem;
  display: inline-block;
  margin: 0 10px;
}

.total_btn_area {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.total_btn_area .temporary_accounting {
  position: fixed;
  z-index: 30;
  bottom: 35px;
  right: 0;
  width: 70%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.3);
  box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 1rem;
  min-height: 90px;
}
@media only screen and (max-width: 768px) {
  .total_btn_area .temporary_accounting {
    position: relative;
    width: 100%;
    margin: 50px auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    height: 150px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #e2e2e2;
    bottom: auto;
    right: auto;
  }
}
.total_btn_area .temporary_accounting .subtotal {
  display: block;
  white-space: nowrap;
  padding: 0.5rem;
  margin: 0.5rem 0;
}
.total_btn_area .temporary_accounting .subtotal span {
  font-size: 1.2rem;
  padding: 0 0.2rem;
}
.total_btn_area .temporary_accounting .btn.primary {
  margin: 0.5rem 0;
}

.device107d_bana {
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.device107d_bana:hover {
  opacity: 0.6;
}
.device107d_bana img {
  max-width: 100%;
}

/* ------------------------------------
Layout main inside
------------------------------------ */
main .inner {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto 4rem;
  padding: 60px 20px 0;
}
@media only screen and (max-width: 768px) {
  main .inner {
    padding: 25px 15px 0;
  }
}
main .inner .inner_column {
  margin: 0 auto 8rem;
}
main .inner h1 {
  font-family: "Marcellus", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 3.4rem;
  vertical-align: middle;
  text-align: center;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  main .inner h1 {
    font-size: 3rem;
    line-height: 3rem;
    text-align: left;
  }
}
main .inner h1 span {
  font-size: 1.2rem;
  display: block;
}
@media only screen and (max-width: 768px) {
  main .inner h1 span {
    display: inline-block;
    text-align: left;
  }
}
main .inner h2 {
  font-size: 2.1rem;
  font-weight: 500;
  padding-left: 40px;
  position: relative;
  margin: 0 auto 2rem;
}
@media only screen and (max-width: 768px) {
  main .inner h2 {
    font-size: 18px;
    line-height: 2rem;
    padding-left: 26px;
  }
}
main .inner h2::before {
  content: "";
  width: 30px;
  height: 8px;
  background: #C1A293;
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}
@media only screen and (max-width: 768px) {
  main .inner h2::before {
    width: 20px;
  }
}
main .inner h2 span {
  font-weight: normal;
  font-size: 1.4rem;
  display: inline-block;
}
main .inner .message_area {
  margin: 0 auto 1em;
  position: relative;
  color: #6A6563;
}
main .inner .message_area.wide {
  padding: 4rem 0;
}
main .inner .message_area.wide p {
  font-size: 1.6rem;
}
main .inner .message_area p {
  font-size: 1.4rem;
}
main .inner .message_area span {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.1428571429;
}
@media only screen and (max-width: 768px) {
  main .inner .message_area span {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1666666667;
  }
}
main .inner .btn_area.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 90%;
  max-width: 640px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  main .inner .btn_area.flex a.btn,
  main .inner .btn_area.flex .btn {
    margin-bottom: 2rem;
  }
}
main .inner .btn_area .sub_link {
  margin: 4rem auto 0;
  width: 100%;
  text-align: center;
}

/* ------------------------------------
Layout main inside cart
------------------------------------ */
.list_head,
.list_detail dl,
.list_total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .list_head,
  .list_detail dl,
  .list_total {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
}
.list_head .list_product,
.list_detail dl .list_product,
.list_total .list_product {
  width: 55%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .list_head .list_product,
  .list_detail dl .list_product,
  .list_total .list_product {
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.list_head .list_wholesaleprice,
.list_detail dl .list_wholesaleprice,
.list_total .list_wholesaleprice {
  width: 18%;
  text-align: right;
}
.list_head .list_quantity,
.list_detail dl .list_quantity,
.list_total .list_quantity {
  width: 9%;
  text-align: right;
}
.list_head .list_quantity input,
.list_detail dl .list_quantity input,
.list_total .list_quantity input {
  text-align: right;
}
.list_head .list_subtotal,
.list_detail dl .list_subtotal,
.list_total .list_subtotal {
  width: 20%;
  text-align: right;
  padding-left: 1rem;
}
@media only screen and (max-width: 768px) {
  .list_head .list_wholesaleprice,
  .list_head .list_quantity,
  .list_head .list_subtotal,
  .list_head .list_tax,
  .list_detail dl .list_wholesaleprice,
  .list_detail dl .list_quantity,
  .list_detail dl .list_subtotal,
  .list_detail dl .list_tax,
  .list_total .list_wholesaleprice,
  .list_total .list_quantity,
  .list_total .list_subtotal,
  .list_total .list_tax {
    width: 100%;
    text-align: right;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0.5rem;
  }
  .list_head .list_wholesaleprice::before,
  .list_head .list_quantity::before,
  .list_head .list_subtotal::before,
  .list_head .list_tax::before,
  .list_detail dl .list_wholesaleprice::before,
  .list_detail dl .list_quantity::before,
  .list_detail dl .list_subtotal::before,
  .list_detail dl .list_tax::before,
  .list_total .list_wholesaleprice::before,
  .list_total .list_quantity::before,
  .list_total .list_subtotal::before,
  .list_total .list_tax::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    content: attr(data-title);
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    display: inline-block;
    width: 50%;
  }
}
.list_head .list_wholesaleprice span,
.list_head .list_quantity span,
.list_head .list_subtotal span,
.list_head .list_tax span,
.list_detail dl .list_wholesaleprice span,
.list_detail dl .list_quantity span,
.list_detail dl .list_subtotal span,
.list_detail dl .list_tax span,
.list_total .list_wholesaleprice span,
.list_total .list_quantity span,
.list_total .list_subtotal span,
.list_total .list_tax span {
  font-size: 1.1rem;
}
.list_head .list_staffname,
.list_detail dl .list_staffname,
.list_total .list_staffname {
  width: 25%;
  text-align: left;
  padding-right: 3%;
}
.list_head .list_staffmail,
.list_detail dl .list_staffmail,
.list_total .list_staffmail {
  width: 40%;
  text-align: left;
}
.list_head .list_contactable,
.list_detail dl .list_contactable,
.list_total .list_contactable {
  width: 15%;
  text-align: center;
}
.list_head .list_edit,
.list_detail dl .list_edit,
.list_total .list_edit {
  width: 20%;
  text-align: center;
}

.list_head {
  border-bottom: 1px solid #d6d6d6;
  font-size: 1.2rem;
}
.list_head div {
  padding: 1rem;
  letter-spacing: 0.3rem;
}
@media only screen and (max-width: 768px) {
  .list_head div {
    display: none;
  }
}
.list_head .list_product,
.list_head .list_wholesaleprice,
.list_head .list_quantity,
.list_head .list_subtotal {
  text-align: center;
}
.list_head .list_staffname,
.list_head .list_staffmail,
.list_head .list_contactable,
.list_head .list_edit {
  padding: 1rem 0.5rem;
  line-height: 1.6rem;
}

.list_total {
  width: 50%;
  margin: 0 0 0 auto;
  border-bottom: 1px solid #d6d6d6;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  padding: 2rem 0;
}
@media only screen and (max-width: 768px) {
  .list_total {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}
.list_total::before {
  position: absolute;
  left: 2rem;
  content: attr(data-title);
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  display: inline-block;
  width: 40px;
}
.list_total .list_quantity,
.list_total .list_subtotal {
  width: 39%;
  text-align: right;
  padding: 0 0.5rem;
}
@media only screen and (max-width: 768px) {
  .list_total .list_quantity {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  .list_total .list_subtotal {
    width: 55%;
  }
}

.list_detail {
  position: relative;
  margin: 0 auto;
}
.list_detail.history {
  padding: 10px 1rem 50px;
  background: #fff;
  margin: 0 auto 4rem;
}
.list_detail.history .list_orderinfo {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.list_detail.history .list_orderinfo .order_info {
  display: inline-block;
  font-size: 1.2rem;
  color: #888;
  padding-right: 1rem;
}
.list_detail.history .list_orderinfo .badge {
  margin-right: 1rem;
}
.list_detail.history .list_orderdate {
  position: relative;
  width: 100%;
  margin: 0 auto 1rem;
}
.list_detail.history .list_orderdate .order_date,
.list_detail.history .list_orderdate .order_id,
.list_detail.history .list_orderdate .sent_date,
.list_detail.history .list_orderdate .invoice_id {
  display: inline-block;
  font-size: 1.4rem;
  width: 155px;
  padding-right: 1rem;
  vertical-align: top;
}
.list_detail.history .list_orderdate .order_date span,
.list_detail.history .list_orderdate .order_id span,
.list_detail.history .list_orderdate .sent_date span,
.list_detail.history .list_orderdate .invoice_id span {
  font-size: 1.2rem;
  font-weight: bold;
}
.list_detail.history .list_orderdate .order_id,
.list_detail.history .list_orderdate .invoice_id {
  width: calc(100% - 160px);
}
@media only screen and (max-width: 420px) {
  .list_detail.history .list_orderdate .order_id,
  .list_detail.history .list_orderdate .invoice_id {
    width: 100%;
  }
}
.list_detail.history .delivery_data {
  position: relative;
  width: 100%;
  margin: 0 auto 1rem;
  border-top: 1px dotted #d8d8d8;
  border-bottom: 1px dotted #d8d8d8;
  padding-block: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.list_detail.history .delivery_data .delivery_name,
.list_detail.history .delivery_data .delivery_address,
.list_detail.history .delivery_data .delivery_tell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-size: 1.4rem;
  padding-right: 1rem;
  width: 50%;
}
@media only screen and (max-width: 490px) {
  .list_detail.history .delivery_data .delivery_name,
  .list_detail.history .delivery_data .delivery_address,
  .list_detail.history .delivery_data .delivery_tell {
    width: 100%;
  }
}
.list_detail.history .delivery_data .delivery_name span,
.list_detail.history .delivery_data .delivery_address span,
.list_detail.history .delivery_data .delivery_tell span {
  font-size: 1.2rem;
  font-weight: bold;
  width: 100px;
}
.list_detail.history .delivery_data .delivery_address {
  width: 100%;
}
.list_detail.history .list_ordertotal {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  width: calc(100% - 170px);
  text-align: right;
  border-top: 1px dotted #d8d8d8;
  padding-top: 1rem;
}
.list_detail.history .list_ordertotal span {
  font-size: 1.1rem;
}
@media only screen and (max-width: 768px) {
  .list_detail.history .list_ordertotal {
    width: calc(100% - 2rem);
  }
}
.list_detail.history .list_subtotal {
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .list_detail.history .list_subtotal {
    width: 100%;
    padding-left: 0;
  }
  .list_detail.history .list_subtotal:before {
    top: 0;
    position: relative;
    display: inline-block;
    width: auto;
  }
}
.list_detail.history dl:last-of-type {
  border-bottom: none;
}
.list_detail.history dl .list_product .list_product_name {
  width: calc(100% - 120px);
}
.list_detail.cancel dl,
.list_detail.cancel .list_ordertotal {
  opacity: 0.3;
}
.list_detail dl {
  padding-bottom: 1rem;
  border-bottom: 1px solid #d6d6d6;
}
.list_detail dl .list_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.list_detail dl .list_product figure {
  width: 100px;
  background: #fff;
  margin: 0 1rem 1rem 0;
  padding: 0;
}
.list_detail dl .list_product figure img {
  width: 100%;
  max-width: 100px;
}
.list_detail dl .list_product .list_product_name {
  width: calc(100% - 190px);
  padding-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .list_detail dl .list_product .list_product_name {
    width: calc(100% - 120px);
  }
}
.list_detail dl .list_product .list_product_name span {
  font-size: 1.4rem;
  display: block;
}
.list_detail dl .list_product .list_product_name .color_name {
  font-size: 1.2rem;
}
.list_detail dl .list_quantity {
  padding: 0 1rem;
}
.list_detail dl .list_quantity input {
  width: 60px;
  margin: 0.5rem 0;
}
.list_detail dl .list_quantity .error_message {
  margin-bottom: 1rem;
}
.list_detail dl .serial_code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  width: 155px;
  padding-right: 1rem;
  vertical-align: top;
}
.list_detail dl .serial_code span {
  font-size: 1.2rem;
  font-weight: bold;
}
.list_detail dl .list_wholesaleprice,
.list_detail dl .list_subtotal {
  padding: 0 0.5rem;
}
@media only screen and (max-width: 768px) {
  .list_detail dl .list_wholesaleprice,
  .list_detail dl .list_subtotal {
    width: 100%;
    padding-left: 50%;
  }
}
.list_detail dl .list_staffname,
.list_detail dl .list_staffmail,
.list_detail dl .list_contactable {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .list_detail dl .list_staffname,
  .list_detail dl .list_staffmail,
  .list_detail dl .list_contactable {
    width: 98%;
    border-bottom: 1px dotted #d8d8d8;
    padding-bottom: 0.5rem;
    margin: 0 auto 0.5rem;
    text-align: left;
  }
  .list_detail dl .list_staffname::before,
  .list_detail dl .list_staffmail::before,
  .list_detail dl .list_contactable::before {
    content: attr(data-title);
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    display: block;
  }
}
.list_detail dl .list_edit {
  margin: 0 auto 1rem;
}
@media only screen and (max-width: 768px) {
  .list_detail dl .list_edit {
    width: 98%;
  }
}
.list_detail dl .list_edit .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.list_detail dl .list_edit .btn_area .btn.min {
  padding: 0;
  line-height: 44px;
}
@media only screen and (max-width: 768px) {
  .list_detail dl .list_edit .btn_area .btn.min {
    width: 100px;
  }
}

main.cart .list_quantity input {
  background: transparent;
}
main.cart .list_detail dl .list_product .list_product_name {
  padding-bottom: 0;
}
main.cart .list_detail dl .list_product figure {
  margin: 0 1rem 0 0;
}

/* ------------------------------------
Layout main inside delivery_statement
------------------------------------ */
.list_detail.history .delivery_statement {
  width: 80px;
  height: 40px;
  position: absolute;
  margin: 0 0 0 auto;
  top: 10px;
  right: 1rem;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .list_detail.history .delivery_statement {
    position: relative;
    top: 0;
    right: 0;
  }
}
.list_detail.history .delivery_statement a {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  padding: 5px;
  font-size: 1.4rem;
  color: #595757;
  text-align: center;
  display: block;
  border: solid 1px #888;
  border-radius: 4px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.list_detail.history .delivery_statement a:hover {
  background: #ddd;
}
.list_detail.history .delivery_statement a i {
  margin: 0 5px 0 0;
}

.delivery_statement .inner h1 {
  margin: 0 auto 10px;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .inner h1 {
    text-align: center;
  }
}
.delivery_statement .inner h2::before {
  -webkit-print-color-adjust: exact;
  background-color: #C1A293 !important;
}
.delivery_statement .inner .inner_column {
  margin: 0 auto 2rem;
}
.delivery_statement .form_area dl {
  padding: 1rem 0;
  margin: auto;
}
.delivery_statement .form_area.text dl:first-of-type,
.delivery_statement .form_area.text p:first-of-type {
  padding-top: 1rem;
}
.delivery_statement .list_head .list_product,
.delivery_statement .list_detail dl .list_product {
  width: 35%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_head .list_product,
  .delivery_statement .list_detail dl .list_product {
    width: 100%;
  }
}
.delivery_statement .list_serialno,
.delivery_statement .list_detail dl .list_serialno {
  width: 17%;
  text-align: left;
  letter-spacing: 0rem;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_serialno,
  .delivery_statement .list_detail dl .list_serialno {
    width: 100%;
    padding-left: 50%;
    padding: 0 0.5rem;
    text-align: right;
    position: relative;
  }
}
.delivery_statement .list_detail dl .list_serialno {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_detail dl .list_serialno {
    min-height: 24px;
  }
}
.delivery_statement .list_detail dl .list_serialno::before {
  display: none;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_detail dl .list_serialno::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    content: attr(data-title);
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    display: inline-block;
    width: 50%;
  }
}
.delivery_statement .list_detail dl .list_product .list_product_name {
  width: 100%;
}
.delivery_statement .list_wholesaleprice,
.delivery_statement .list_detail dl .list_wholesaleprice {
  width: 12%;
}
.delivery_statement .list_quantity,
.delivery_statement .list_detail dl .list_quantity {
  width: 10%;
}
.delivery_statement .list_subtotal,
.delivery_statement .list_detail dl .list_subtotal {
  width: 14%;
}
.delivery_statement .list_tax,
.delivery_statement .list_detail dl .list_tax {
  width: 12%;
}
.delivery_statement .list_wholesaleprice,
.delivery_statement .list_detail dl .list_wholesaleprice,
.delivery_statement .list_quantity,
.delivery_statement .list_detail dl .list_quantity,
.delivery_statement .list_subtotal,
.delivery_statement .list_detail dl .list_subtotal,
.delivery_statement .list_tax,
.delivery_statement .list_detail dl .list_tax {
  padding: 0 0.3rem;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_wholesaleprice,
  .delivery_statement .list_detail dl .list_wholesaleprice,
  .delivery_statement .list_quantity,
  .delivery_statement .list_detail dl .list_quantity,
  .delivery_statement .list_subtotal,
  .delivery_statement .list_detail dl .list_subtotal,
  .delivery_statement .list_tax,
  .delivery_statement .list_detail dl .list_tax {
    width: 100%;
  }
}
.delivery_statement .list_quantity,
.delivery_statement .list_detail dl .list_quantity {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_quantity,
  .delivery_statement .list_detail dl .list_quantity {
    text-align: right;
  }
}
.delivery_statement .list_tax {
  text-align: right;
}
.delivery_statement .list_detail dl .list_tax,
.delivery_statement .list_total .list_tax {
  font-size: 1.4rem;
}
.delivery_statement .list_total {
  width: 67%;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_total {
    width: 100%;
    padding: 3rem 0 1rem;
  }
}
.delivery_statement .list_total::before {
  width: 200px;
  text-align: right;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_total::before {
    inset: 5px 0 auto 0;
    width: 100%;
    text-align: left;
  }
}
.delivery_statement .list_total .list_quantity {
  width: 15%;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_total .list_quantity {
    width: auto;
    padding: 0 1rem;
  }
}
.delivery_statement .list_total .list_subtotal {
  width: 21%;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_total .list_subtotal {
    width: auto;
    padding: 0 1rem;
  }
}
.delivery_statement .list_total .list_tax {
  width: 18%;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_total .list_tax {
    width: auto;
    padding: 0 1rem;
  }
}
.delivery_statement .list_total.intax {
  width: 100%;
}
.delivery_statement .list_total.intax::before {
  text-align: left;
}
.delivery_statement .list_total .list_intax {
  width: calc(100% - 250px);
  text-align: right;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .delivery_statement .list_total .list_intax {
    width: auto;
  }
}
.delivery_statement .list_total .list_intax span {
  font-size: 1.4rem;
}
.delivery_statement .delivery_data {
  font-size: 1.2rem;
  text-align: right;
}
.delivery_statement .delivery_data .dealerinfo {
  margin: 10px auto 0;
  padding-top: 10px;
  display: inline-block;
  border-top: 1px dotted #888;
}
.delivery_statement .delivery_data span {
  font-weight: bold;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px auto 50px;
  width: 98%;
  text-align: center;
}
.pagination span {
  width: 30px;
  height: 30px;
  margin: 0 2px;
}
.pagination span.current {
  background: #C1A293;
  color: #fff;
}
.pagination span a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #aaa;
  color: #aaa;
  text-decoration: none;
}

.pagination span.prev,
.pagination span.next,
.pagination span.prev a,
.pagination span.next a,
.pagination span.before,
.pagination span.after,
.pagination span.before a,
.pagination span.after a {
  border: 1px solid transparent;
  background: none;
  line-height: 25px;
}

.loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  background: rgba(222, 222, 222, 0.8);
  z-index: 1000;
}

.spinner {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-animation: spinner 1.2s infinite linear forwards;
  animation: spinner 1.2s infinite linear forwards;
}

@-webkit-keyframes spinner {
  0% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0.5);
    transform: translate(-50%, -50%) rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 11px 11px #C1A293, -11px -11px #C1A293, 11px -11px #C1A293, -11px 11px #C1A293;
    box-shadow: 11px 11px #C1A293, -11px -11px #C1A293, 11px -11px #C1A293, -11px 11px #C1A293;
    -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(1);
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
    transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
  }
}

@keyframes spinner {
  0% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0.5);
    transform: translate(-50%, -50%) rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 11px 11px #C1A293, -11px -11px #C1A293, 11px -11px #C1A293, -11px 11px #C1A293;
    box-shadow: 11px 11px #C1A293, -11px -11px #C1A293, 11px -11px #C1A293, -11px 11px #C1A293;
    -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(1);
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
    transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
  }
}
ul.basic_ul {
  margin-bottom: 2rem;
}
ul.basic_ul > li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  list-style-type: none;
  font-size: 1.4rem;
}
ul.basic_ul > li:before {
  display: block;
  float: left;
  margin-left: -2rem;
  width: 2rem;
  list-style-type: none;
  content: "・";
  font-weight: bold;
}
ul.basic_ul > li:last-child {
  margin-bottom: 0;
}

#privacy_policy_section {
  border: 1px solid #d6d6d6;
  padding: 2rem 1rem 0;
}
#privacy_policy_section a {
  margin-top: 0.5rem;
  display: inline-block;
}