@charset "UTF-8";

/* ----注文フローステップ---- */

/* ----商品購入規約---- */

.block-goods-agreement {
  margin: 10px;
}

.block-goods-agreement--header {
  margin: -10px -10px 0 -10px;
}

/* ----カートアイテム ---- */

.block-cart--body {
  padding: 0 15px;
}

.block-cart--order-btn-gift {
  background: #ffa200;
  border: #d28500 1px solid;
}

.block-cart--subtotal-container {
  margin: 30px 0 8px;
}

.block-cart--promotion-freespace + .block-cart--subtotal-container {
  margin-top: 0;
}

.block-cart--update {
  color: #62767D;
  font-weight: bold;
  border: 2px solid #62767D;
  border-radius: 4px;
  background: #FFF;
  padding: 2px 15px;
  margin: 0 0 12px;
}

.block-cart--ship-schedule {
  margin: 0 0 10px;
}

.block-cart-ship-schedule-message {
  background: #F9FBEA;
  padding: 5px 10px;
  border-radius: 5px;
}

.block-cart--contents {
  border-top: 1px solid #DDD;
}

.block-cart--goods-list li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px 0;
  border-bottom: 1px solid #DDD;
}

.block-cart--goods-list-link:hover {
  text-decoration-line: none;
}

.block-cart--item-list .block-icon {
  margin: 0 0 10px;
}

.block-cart--goods-list-item-name,
.block-cart--goods-point-info .block-cart--goods-point {
  font-weight: bold;
}

.block-cart--goods-list-item-size,
.block-cart--goods-list-item-color {
  display: flex;
}

.block-cart--goods-list-item-sales-info {
  display: flex;
  flex-direction: column-reverse;
}

.block-cart--goods-list-item-set-name:not(:has(*)),
.block-cart--goods-list-item-sales-info:not(:has(*)) {
  display: none;
}

.block-cart--goods-list-item-price-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 3px 5px;
  margin: 10px 0 0;
}

.block-cart--goods-list .block-goods-price--on-sales-off-percent {
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  margin: 0;
  padding: 2px 7px 1px;
}

.block-cart--goods-list .block-goods-price--on-sales-countdown,
.block-cart--goods-list .block-goods-price--on-sales-countdown > div {
  display: inline;
  font-size: 11px;
  color: #d53115;
}

.block-cart--goods-list-item-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 18px 0 0;
  padding: 15px 12px;
  background: #F8F8F8;
  border-radius: 5px;
}

.block-cart--goods-list-item-subtotal {
  font-weight: bold;
  line-height: 1.3;
}

.block-cart--goods-list-item-subtotal dd {
  font-size: 16px;
}

.block-cart--goods-list-item-subtotal dd span {
  font-size: 12px;
}

.block-cart--goods-list-item-qty dd {
  display: flex;
  gap: 10px;
}

.block-cart--goods-list-item-qty-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #828282;
}

.block-cart--goods-list-item-qty-btn:not(.inactive) {
  cursor: pointer;
}

.block-cart--goods-list-item-qty-btn.minus:before,
.block-cart--goods-list-item-qty-btn.plus:before,
.block-cart--goods-list-item-qty-btn.plus:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 2px;
  background: #FFF;
}

.block-cart--goods-list-item-qty-btn.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.block-cart--goods-list-item-qty-btn.inactive {
  background: #FFF;
  pointer-events: none;
}

.block-cart--goods-list-item-qty-btn.inactive:before,
.block-cart--goods-list-item-qty-btn.inactive:after {
  background: #B4B4B4;
}

input.block-cart--goods-list-item-qty-input {
  width: 54px;
  border: 1px solid #DDD;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  padding: 0;
  background: #FFF;
}

.block-cart--goods-list-item-qty-input::-webkit-inner-spin-button,
.block-cart--goods-list-item-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance:textfield;
}

.block-cart--goods-list-item-calc {
  display: table-cell;
}

.block-cart--goods-list-item-calc {
  width: 80px;
}

.block-cart--goods-list-item-calc-btn {
  width: 70px;
}

.block-cart--goods-list-item-delete {
  position: relative;
  width: 100%;
  text-align: right;
  margin: 15px 0 0;
}

.block-cart--goods-list-item-delete:before,
.block-cart--goods-list-item-delete:after {
  content: '';
  position: absolute;
  top: 12px;
  right: 32px;
  width: 10px;
  height: 1px;
  background: #221815;
  transform: rotate(45deg);
}

.block-cart--goods-list-item-delete:after {
  transform: rotate(-45deg);
}

.btn.block-cart--goods-list-item-delete-btn {
  position: relative;
  color: #221815;
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
  background: none;
  padding: 0 0 0 14px;
  border-radius: 0;
  border-bottom: 1px solid #221815;
}

.block-cart--infomation {
  background: #fff;
  border: 1px solid #666;
  padding: 10px;
  margin: 5px;
}

.block-cart--continue-shopping {
  text-align: center;
  margin: 30px 0 50px;
}

.block-cart--continue-shopping-link {
  padding: 0 0 0 18px;
  background: url(../../img/usr/common/icon_back.png) no-repeat left center / 11px;
  text-decoration: underline;
}

.block-cart--amazonpay {
  text-align: center;
}

.block-cart--amazonpay-description {
  text-align: left;
  font-size: 12px;
  margin: 5px 0;
}

.block-cart--amazonpay-error {
  color: #a94442;
}

.block-promotion-message--content {
  border: 1px solid var(--color-red);
  background-color: #FFEEEE;
  padding: 10px 20px;
  margin: 0 0 8px;
  font-weight: bold;
  border-radius: 5px;
}

.block-cart--goods-list-image {
  width: 30%;
  margin: 0 14px 0 0;
  border-radius: 5px;
  overflow: hidden;
}

.block-cart--goods-list-image figure {
  width: 100%;
  aspect-ratio: 1;
}

.block-cart--goods-list-item-container {
  flex: 1;
}

.block-cart--goods-list-item-price {
  font-feature-settings: 'palt';
}

.block-goods-price--on-sales-off-percent + .block-cart--goods-list-item-price {
  color: var(--color-red);
}

.block-cart--goods-embroidery-setting {
  width: 100%;
  border: 1px solid #DDD;
  border-radius: 5px;
  padding: 20px 20px 10px;
  margin: 15px 0 0;
}

.block-cart--goods-embroidery-setting--title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
}

.block-cart--goods-embroidery-setting--contents dl {
  display: flex;
  margin: 0 0 4px;
}

.block-cart--goods-embroidery-setting--contents dl:last-child {
  justify-content: flex-end;
  margin: 0;
}

.block-cart--goods-embroidery-setting--contents dt {
  flex-shrink: 0;
}

.block-cart--procedure-container .action-buttons {
  width: 100%;
  display: table;
  table-layout: fixed;
}

.block-cart--procedure-container__fixed .action-buttons {
  width: 85%;
  display: table;
  table-layout: fixed;
  margin: auto;
}

.block-cart--procedure-container .action-buttons .action {
  width: 100%;
  display: table-cell;
}

.block-cart--procedure-container .action-buttons .action .btn {
  margin-top: 0;
  font-size: 100%;
}

.block-cart--procedure-container .action-buttons .action:first-child {
  padding-right: 5px;
}

.block-cart--procedure-container .action-buttons .action:last-child {
  padding-left: 5px;
}

.block-cart--promotion-criteria-list-container {
  padding-bottom: 10px;
}

.promotion-criteria-list-message {
  text-align: center;
}

.promotion-criteria-list-message > span {
  color: #f00;
  font-weight: bold;
  font-size: 13px;
}

.block-cart--subtotal-container .block-cart--subtotal {
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  font-weight: bold;
}

.block-cart--subtotal-container .block-cart--subtotal-price,
.block-cart--promotion-discount-price {
  font-size: 20px;
  font-weight: bold;
}

.block-cart--subtotal-container .block-cart--subtotal-price span,
.block-cart--promotion-discount-price span {
  font-size: 14px;
}

.block-cart--procedure {
  margin: 15px -15px;
  padding: 15px;
  background: #F8F8F8;
}

.block-cart--order-button-description-fixed {
  width: 85%;
  margin: auto;
}
.block-cart--amazonpay-description-fixed {
  width: 85%;
  margin: auto;
}

.js-order-fixed-box-dummy {
  display: none;
}

.block-cart--amazonpay-button-fixed {
  margin: auto;
}

.block-cart--rule {
  display: none;
}

.block-cart--order-button-description {
  font-weight: bold;
  margin: 0 0 8px;
}

.btn.block-cart--order-modal-btn {
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  background: var(--color-orange);
  width: 80%;
  margin: 0 auto;
  padding: 14px 0;
}

.block-cart--order-gift-message {
  margin: 12px 0 0;
}

.block-cart-order-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 12;
}

.block-cart-order-modal--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(98, 118, 125, .42);
}

.block-cart-order-modal--contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFF;
  border-radius: 10px;
  padding: 30px 15px;
  width: calc(100% - 50px);
}

.block-cart-order-modal--close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
}

.block-cart-order-modal--close:before,
.block-cart-order-modal--close:after {
  content: '';
  position: absolute;
  top: 14px;
  left: 5px;
  width: 22px;
  height: 2px;
  background: #221815;
  transform: rotate(45deg);
  border-radius: 5px;
}

.block-cart-order-modal--close:after {
  transform: rotate(-45deg);
}

.block-cart-order-modal--title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 25px;
}

.block-cart-order-modal-item.normal {
  margin: 0 0 30px;
}

.block-cart-order-modal-item--head {
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  margin: 0 0 10px;
}

.block-cart-order-modal-item--btn {
  position: relative;
  margin: 0 0 10px;
}

.block-cart-order-modal-item--btn:after {
  content: '';
  position: absolute;
  top: 22px;
  right: 15px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-45deg);
}

.block-cart-order-modal-item--btn input.btn {
  display: block;
  width: 100%;
  padding: 14px 0;
}

.normal .block-cart-order-modal-item--list {
  padding: 58px 0 0;
  background: url(../../img/usr/common/img_cart_normal.png) no-repeat center top / 58px;
}

.normal .block-cart-order-modal-item--list li {
  text-indent: -14px;
  padding: 0 0 0 14px;
  margin: 0 0 6px;
}

.normal .block-cart-order-modal-item--list li:last-child {
  margin: 0;
}

.gift .block-cart-order-modal-item--list {
  padding: 60px 12px 0;
  background: url(../../img/usr/common/img_cart_gift.png) no-repeat center top / 142px;
}

.gift .block-cart-order-modal-item--list li {
  padding: 2px 0 2px 40px;
  margin: 0 0 8px;
}

.gift .block-cart-order-modal-item--list li:nth-child(1) {
  background: url(../../img/usr/common/icon_cart_gift01.png) no-repeat center left 6px / 17px;
}

.gift .block-cart-order-modal-item--list li:nth-child(2) {
  background: url(../../img/usr/common/icon_cart_gift02.png) no-repeat center left 5px / 24px;
}

.gift .block-cart-order-modal-item--list li:nth-child(3) {
  background: url(../../img/usr/common/icon_cart_gift03.png) no-repeat center left / 33px;
}

.gift .block-cart-order-modal-item--list li:nth-child(4) {
  margin: 0;
  background: url(../../img/usr/common/icon_cart_gift04.png) no-repeat center left 4px / 24px;
}

/* ----AmazonPayV2ボタン押下後表示メッセージ---- */
.block-cart--amazonpay-alert {
  display: none;
  color: #a94442;
}

/* ----注文方法指定画面---- */

/* 共通設定 */
.block-order-method {
  padding: 10px 15px 50px;
}

.block-order-method h2 {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  margin: 0 0 20px;
  padding: 0 0 6px;
}

.block-order-method--host-content input[type="text"],
.block-order-method--host-content input[type="tel"],
.block-order-method--host-content input[type="email"] {
  width: 100%;
}

.block-order-method--host-content input[type="tel"] {
  max-width: 210px;
}

.block-order-method--host-content input[type="email"],
.block-order-method--host-content input[type="text"] {
  max-width: 380px;
}

.block-order-method--host-content input[type="text"][name="s_name"],
.block-order-method--host-content input[type="text"][name="s_name2"],
.block-order-method--host-content input[type="text"][name="s_kana"],
.block-order-method--host-content input[type="text"][name="s_kana2"] {
  max-width: 180px;
}

.block-order-method--host-content input[type="text"][name="s_zip"] {
  max-width: 170px;
}

.block-order-method--contents .block-order-method--payment-content input[type="text"][name="promotion_code"],
.block-order-method--contents .block-order-method--payment-content input[type="text"][name="coupon"] {
  width: 100%;
  max-width: 400px;
}

/* ご注文主 */
.block-order-method--orderer {
  margin: 0 0 30px;
}

.block-order-method--orderer-name {
  padding-bottom: 5px;
}

.block-order-method--host-title-confirmation {
  background: #fff;
  border: solid 1px #dcdcdc;
  padding: 10px;
  margin-bottom: 10px;
}

.block-order-method--value-label {
  display: block;
}

.block-order-method--host-name {
  font-weight: bold;
}

.block-order-method--host .fieldset-vertical {
  background: #fff;
  border: solid 1px #dcdcdc;
  margin: 0;
}

.block-order-method--host-content .form-group:not(:last-child) {
  border-bottom: solid 1px #dcdcdc;
}

.block-order-method--host-content .form-group {
  padding: 10px;
  margin: 0;
}

.block-order-method--dest-input .fieldset-vertical {
  background: #fff;
  border: solid 1px #dcdcdc;
  margin: 0;
}

.block-order-method--dest-input .form-group:not(:last-child) {
  border-bottom: solid 1px #dcdcdc;
}

.block-order-method--dest-input .form-group {
  padding: 10px;
  margin: 0;
}

/* お届け方法(定期明細追加) */
.block-order-method--destmethod-detail {
  background: #fff;
  border: solid 1px #dcdcdc;
  padding: 10px;
}

.block-order-method--destmethod-select li {
  margin: 5px 0 5px 0;
}

/* 定期申し込み内容(定期明細追加) */
.block-order-method--regular-add-list-detail {
  background: #fff;
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  padding: 10px;
}

.block-order-method--regular-add-list-detail:last-of-type {
  border-bottom: 1px solid #dcdcdc;
}

.block-order-method--regular-add-info .block-order-method--regular-add-info-detail {
  padding: 1px 10px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 12px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
}

.block-order-method--regular-add-info-detail > span {
  font-size: 12px;
  width: 50%;
}

.block-order-method--regular-add-info-detail > span:last-of-type {
  text-align: right;
}

.block-order-method--regular-add-info .block-order-method--regular-add-goods-info {
  padding: 5px 10px;
  border: 1px solid #ddd;
  font-size: 12px;
  width: 100%;
  background-color: #fff;
}

.block-order-method--regular-add-goods-item > ul {
  display: flex;
  flex-direction: row;
}

.block-order-method--regular-add-goods-item > ul > li {
  width: 50%;
}

.block-order-method--regular-add-goods-item-name {
  max-width: 100%;
}

.block-order-method--regular-add-goods-item-name > span {
  width: 100%;
  display: block;
  word-wrap: break-word;
  padding-left: 10px;
}

.block-order-method--regular-add-goods-item-unit-amount {
  margin: auto auto auto 0;
  text-align: right;
}

.block-order-method--regular-add-goods-item-qty {
  display: inline-block;
  padding: 0 0 0 12px;
}

.block-order-method--regular-add-goods-item-amount {
  display: inline-block;
  padding: 0 0 0 6px;
  color: #3e3e3e;
}

/* お届け先 */
.block-order-method--dest {
  margin: 0 0 40px;
}

.block-order-method--dest-content {
  border-bottom: none;
}

.block-order-method--dest-content .block-order-method--sender-message {
  padding-bottom: 5px;
}

.block-order-method--dest-item-title {
  padding-bottom: 5px;
}

.block-order-method--dest-item {
  border-bottom: 1px solid #DDD;
  padding: 0 0 15px;
  margin: 0 0 18px;
}

.block-order-method--dest-item-nickname {
  font-weight: bold;
}

.block-order-method--dest-item address {
  padding: 0 0 0 26px;
}

.block-order-method--amazonpay-dest-title {
  font-weight: bold;
}

.block-order-method--dest-edit {
  display: none;
}

.btn.btn-default.block-order-method--delivery-address-add-btn {
  width: 68%;
  padding: 6px 10px;
  margin-right: 0;
}

.block-order-method--dest #addressBookWidgetDiv {
  background: #fff;
  padding: 10px;
}

.block-order-method--dest-change {
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #dcdcdc;
  width: auto;
}

.block-order-method--dest-title-salesinclude {
  background: #fff;
  font-weight: bold;
  font-size: 15px;
}

.block-order-method--dest-note-salesinclude {
  background: #fff;
}

/* お支払い情報 */
.block-order-method--payment {
  margin: 0 0 40px;
}

.block-order-method--payment-method,
.block-order-method--point-use,
.block-order-method--promotion {
  margin: 0 0 25px;
}

.block-order-method--payment-method-select li,
.block-order-method--point-use-select li {
  margin: 8px 0;
}

.block-order-method--promotion-title,
.block-order-method--point-use-title,
.block-order-method--payment-method-title,
.block-order-method--coupon-title {
  font-size: 16px;
  font-weight: bold;
}

.block-order-method--payment-method-content {
  margin: 10px 0 0;
}

.block-order-method--current-point-num {
  font-size: 16px;
  font-weight: bold;
}

.block-order-method--payment-method-select .help-block {
  padding-left: 30px;
}

input.block-order-method--point-use-input {
  width: 90px;
  text-align: center;
  margin-right: 5px;
}

input.block-order-method--point-use-input::-webkit-inner-spin-button {
  -webkit-appearance: none; 
  margin: 0;
  -moz-appearance: textfield;
}

.btn.btn-default.block-order-method--coupon-available-btn {
  width: 68%;
  padding: 8px 10px 6px;
  margin: 10px 0 0 auto;
  font-weight: bold;
}

.block-order-method--coupondialog-table {
  margin: 0 0 10px 0;
}

.block-order-method--coupondialog-data-btn .btn {
  display: block;
  margin: 5px 0 5px 0;
  padding: 10px 0 10px 0;
  width: 100%;
}

.block-order-method--point-use-content {
  padding-top: 5px;
}

.block-order-method--point-pay {
  padding: 5px 0;
}

.block-order-method--promotion-content p,
.block-order-method--coupon-content p {
  margin: 8px 0 10px;
}

.block-order-method--promotion-content input,
.block-order-method--coupon-content input {
  width: 100%;
}

.block-order-method--point-use-content .help-block {
  color: #000;
  font-size: 12px;
}

/* お届け日時指定 */
.block-order-method--delivery-datetime {
  margin: 0 0 40px;
}

.block-order-method--delivery-datetime h3 {
  font-size: 16px;
  font-weight: bold;
  margin: -4px 0 10px;
}

.block-order-method--date-spec {
  margin: 0 0 15px;
}

.block-order-method--date-spec-title,
.block-order-method--time-spec-title {
  margin: 0 0 5px;
}

.block-order-method--date-spec-content .help-block {
  color: #000;
  font-size: 12px;
}

.block-order-method--delivery-datetime-content select {
  min-width: 270px;
}

/* 定期購入お届けサイクル */
.block-order-method--regular-content,
.block-regular-cycle--deliv_date {
  padding: 10px;
}

.block-order-method--regular-cycle-title {
  font-weight: bold;
}

.block-order-method--regular-cycle label {
  margin: 5px 0 5px 0;
  display: inline-block;
}

/* 商品情報 */
.block-order-method--goods h2 {
  margin: 0;
}

.block-order-method--goods-list li {
  padding: 25px 0;
  border-bottom: 1px solid #DDD;
}

.block-order-method--goods-item-detail {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.block-order-method--goods-item-image {
  width: 29%;
  border-radius: 10px;
  overflow: hidden;
}

.block-order-method--goods-info {
  flex: 1;
}

.block-order-method--goods-info .block-icon {
  margin: 0 0 6px;
}

.block-order-method--goods-name {
  font-weight: bold;
  margin: 0 0 8px;
}

.block-order-method--goods-list .variation-name {
  display: block;
}

.block-order-method--sales-detail-append-item textarea {
  width: 100%;
}

.block-order-method--sales-detail-append-item .form-input-wrapper,
.block-order-method--sales-append-container .form-input-wrapper {
  display: block;
}

.block-order-method-embroidery-setting {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #DDD;
  padding: 18px 20px;
}

.block-order-method-embroidery-setting dt {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
}

/* ラッピング・メッセージカード */
.block-order-method--wrapping-content,
.block-order-method--message-card-content {
  background: #fff;
  border: solid 1px #dcdcdc;
  padding: 10px;
}

.block-order-method--wrapping-list,
.block-order-method--message-card-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.block-order-method--wrapping-item,
.block-order-method--message-card-item {
  display: inline-block;
  margin: 0 10px 10px 0;
  text-align: center;
  vertical-align: top;
  width: calc(50% - 20px);
}

.block-order-method--wrapping-price,
.block-order-method--message-card-price {
  display: block;
}

.block-order-method--message-card-input-title {
  font-weight: bold;
}

.block-order-method--message-card-input-textarea {
  width: 100%;
}

.block-order-method--wrapping-name,
.block-order-method--message-card-name {
  overflow-wrap: anywhere;
  word-break: break-all;
}

/* その他 */
.block-order-method--sales-append-container {
  background: #fff;
  border: solid 1px #dcdcdc;
  padding: 0 0 0 10px;
  margin: 0 0 10px 0;
}

.block-order-method--procedure-container {
  text-align: center;
  margin: 40px 0 0;
}

.btn.block-order-method--next-btn {
  width: 80%;
  font-size: 15px;
  background: #D58E00;
  padding: 14px 10px;
}

.block-order-method--regular-add-dest-info {
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.block-order-method--regular-add-dest-goods-info {
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.block-order-method--regular-add-dest-goods-list {
  padding-left: 10px;
}

.block-order-method--regular-add-error {
  color: #a94442;
}

/* ---- 注文内容確認(通常フロー) ---- */

/* 共通設定 */
.block-order-estimate {
  padding: 10px 15px 50px;
}

.block-order-estimate h2 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 1px solid #707070;
  margin: 0 0 20px;
  padding: 0 0 6px;
}

.block-order-estimate .form-error {
  font-weight: bold;
}

/* 注文を確定する */
.block-order-estimate--commit {
  margin: 0 -15px;
  padding: 0 15px 40px;
  text-align: center;
  background: #F8F8F8;
}

.btn.block-order-estimate--commit-btn {
  width: 80%;
  font-size: 15px;
  padding: 14px 0;
  margin: 0;
  background: var(--color-orange);
}

.block-order-estimate--commit-btn-include-loading {
  height: 70px;
  width: 65px;
  position: absolute;
  transform: scale(0.5);
}

.block-order-estimate--commit-block {
  order: -20;
}

.block-order-estimate--agree-terms {
  font-size: 12px;
  margin: 20px 0;
}

.block-order-estimate--order-terms-link {
  color: var(--main-color);
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

.btn.btn-default.block-order-estimate--return-agree {
  margin: 15px auto 0;
  padding: 9px 10px;
}

.block-order-estimate--side-area,
.block-order-estimate--procedure,
.block-order-estimate--procedure-container {
  display: contents;
}

/* 利用規約 */
.block-order-estimate--agreebody {
  width: 100%;
  height: 400px;
  font-size: 10px;
}

/* お選びできるノベルティがございます */
.block-order-estimate--promotion-novelty-content {
  border: 1px solid var(--color-red);
  background-color: #FFEEEE;
  padding: 10px 20px;
  margin: 0 0 15px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

/* お届け先 */
.block-order-estimate--dest {
  position: relative;
  margin: 0 0 40px;
}

.block-order-estimate--dest .btn.block-order-estimate--change-btn {
  right: 0;
  top: -6px;
  position: absolute;
  padding: 6px 0 7px;
}

.block-order-estimate--dest .block-order-estimate--salesinclude-btn {
  width: 75px;
  right: 10px;
  top: 60px;
  height: 31px;
  position: absolute;
  font-size: 12px;
  padding: 5px 0 !important;
}

/* お届け先の変更(ダイアログ)*/
.block-order-estimate--dest-address-container,
.block-order-estimate--guest-address-container,
.block-order-estimate--amazonpay-address-container {
  font-size: 14px;
}
.block-order-estimate--dest-address-container h2,
.block-order-estimate--guest-address-container h2,
.block-order-estimate--amazonpay-address-container h2 {
  font-size: 14px;
  background-color: #333;
  color: #fff;
  padding: 5px;
  margin: 10px 0 14px 0;
}

.block-order-estimate--dest .block-order--amazonpay-btn {
  width: 70px;
}

.block-order-estimate--address-frame {
  background: #f8f8f8;
  margin-top: 72px;
}

.block-order-estimate--value-label {
  display: block;
  margin: 5px 0;
}

/* ×ボタン */
.block-order-estimate--address-frame-close {
  position: relative;
  cursor: pointer;
}

.block-order-estimate--address-frame-close span {
  display: block;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
}

.block-order-estimate--address-frame-close span:before,
.block-order-estimate--address-frame-close span:after {
  position: absolute;
  top: 7px;
  right: 0;
  content: "";
  width: 15px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.block-order-estimate--address-frame-close span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.block-order-estimate--dest-address-list {
  padding-bottom: 10px;
}

.block-order-estimate--dest-address-item {
  background: #fff;
  border: solid 1px #dcdcdc;
  margin: 0 14px 14px 14px;
  padding: 10px;
}

.block-order-estimate--dest-address-title {
  font-weight: bold;
  padding-bottom: 5px;
}

.block-order-estimate--dest-address-item-buttons {
  margin: 10px 0 0;
}

.block-order-estimate--dest-address-item-buttons__selected {
  text-align: center;
  background: #fffcfc;
  border: solid 1px var(--color-red);
  margin-top: 10px;
  padding: 5px;
  color: var(--color-red);
  cursor: default;
  width: auto;
}

.block-order-estimate--dest-address-change-btn {
  padding: 5px;
  margin-top: 10px;
  width: 100%;
}

.block-order-estimate--dest-address-change-dest-btn {
  padding: 5px;
  margin-top: 10px;
  width: 100%;
}

.block-order-estimate--dest-address-item-register {
  background: #fff;
  border: solid 1px #dcdcdc;
  margin: 0 14px 14px 14px;
  padding: 10px;
}

.block-order-estimate--dest-address-register-btn {
  padding: 5px;
  width: 100%;
}

.block-order-estimate--dest-address-item-register-form {
  margin: 0 14px 14px 14px;
}

.block-order-estimate--dest-address-item-register-input-title {
  background: #333;
  color: #fff;
  border-radius: 0;
  border-bottom: solid 1px #dcdcdc;
  padding: 8px 2px 8px 14px;
}

.block-order-estimate--dest-address-item-register-input-form .fieldset-vertical {
  margin: 0;
}

.block-order-estimate--dest-address-item-register-input-form .form-group,
.block-order-estimate--dest-address-item-register-input-form .action-buttons {
  background-color: #fff;
  border: solid 1px #dcdcdc;
  border-top: 0;
  padding: 10px;
  margin: 0;
}

/* お届け先の変更(AmazonPay) */
.block-order-estimate--amazonpay-address-widget {
  padding: 0 10px 10px;
  width: auto;
  height: 100%;
}

.block-order-estimate--amazonpay-address-area .action {
  padding: 0 10px 10px 10px;
}

.block-order-estimate--amazonpay-address-area .action .btn {
  min-height: 24px;
  padding: 3px 0 2px 0;
  margin: 0;
}

/* お届け先の変更(ゲスト) */
.block-order-estimate--guest-address-container {
  padding-bottom: 14px;
}

.block-order-estimate--guest-address-input-form {
  background: #fff;
  border: 1px solid #dcdcdc;
  margin: 0 14px;
}

.block-order-estimate--guest-address-input-form .form-group {
  padding: 10px;
  border-bottom: 1px solid #dcdcdc;
  margin: 0;
}

/* お届け先の変更(会員・ゲスト) アクションボタン */
.block-order-estimate--dest-address-item-register-input-form .action-buttons,
.block-order-estimate--guest-address-input-form .action-buttons {
  width: 100%;
  padding: 10px;
  display: table;
}

.block-order-estimate--dest-address-item-register-input-form .action-buttons .action,
.block-order-estimate--guest-address-input-form .action-buttons .action {
  width: 50%;
  display: table-cell;
}

.block-order-estimate--dest-address-item-register-input-form .action-buttons .action .btn,
.block-order-estimate--guest-address-input-form .action-buttons .action .btn {
  margin-top: 0;
  padding: 3px 0;
  white-space: normal;
  min-height: 50px;
}

.block-order-estimate--dest-address-item-register-input-form .action-buttons .action:first-child,
.block-order-estimate--guest-address-input-form .action-buttons .action:first-child {
  padding-right: 5px;
}

.block-order-estimate--dest-address-item-register-input-form .action-buttons .action:last-child,
.block-order-estimate--guest-address-input-form .action-buttons .action:last-child {
  padding-left: 5px;
}

.block-order-estimate--dest-address-container .block-order-method--sender-message,
.block-order-estimate--guest-address-container .block-order-method--sender-message {
  padding: 0 10px;
}

/* お支払い情報 */
.block-order-estimate--method-pay {
  margin: 0 0 40px;
}

.block-order-estimate--method-pay-content,
.block-order-estimate--point,
.block-order-estimate--promotion-code,
.block-order-estimate--coupon {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 12px;
}

.block-order--amazonpay-btn {
  display: inline;
  right: 10px;
  top: 10px;
  position: absolute;
}

.block-order-method--amazonpay-btn {
  display: inline;
  right: 10px;
  top: 10px;
}

.block-order--amazonpay-btn:focus,
.block-order-method--amazonpay-btn:focus {
  outline: 0;
}

.btn.btn-default.block-order-estimate--change-btn {
  width: 80px;
  margin: 0;
  font-size: 14px;
  padding: 6px 10px;
}

.block-order-estimate--method-pay h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 3px;
}

/* クレジットカード設定 */
.block-order-estimate--pay-input {
  width: 100%;
  margin: 0 0 10px 0;
}

.block-order-estimate--pay-selectcard-keep {
  margin-bottom: 5px;
}

.block-order-estimate--pay-detail {
  background: #fff;
}

.block-order-estimate--pay-detail .form-group {
  border: solid 1px #dcdcdc;
  border-top: 0;
  margin: 0;
}

.block-order-estimate--pay-detail {
  border-top: solid 1px #dcdcdc;
}

.block-order-estimate--pay-detail .form-label {
  padding: 10px 10px 5px 10px;
}

.block-order-estimate--pay-detail .form-control {
  padding: 0 10px 10px 10px;
}

.block-order-estimate--pay-detail select[name="card_brand"],
.block-order-estimate--pay-detail input[name="card_num"] {
  width: 100%;
}

.block-order-estimate--pay-detail select[name="card_m"],
.block-order-estimate--pay-detail select[name="card_y"] {
  width: 100px;
  margin: 0 5px 0 0;
}

.block-order-estimate--pay-detail select[name="card_method"] {
  width: 100px;
}

.block-order-estimate--pay-selectcard .form-control {
  padding: 10px;
}

.block-order-estimate--pay-savecard .form-control {
  display: flex;
  align-items: center;
  padding: 10px;
}

.block-order-estimate--creditcard-newaddress-message {
  padding: 10px 0 0 0;
  color: #f00;
  font-size: 14px;
  font-weight: bold;
}

.block-order-estimate--creditcard-forceinput-message {
  padding: 10px 0 0 0;
  color: #f00;
  font-size: 14px;
  font-weight: bold;
}

.block-order-estimate--pay-detail .block-order-estimate--pay-selectcard {
  padding: 0;
}

.block-order-estimate--pay-security-code input[type="number"] {
  width: 90px;
}

/* コンビニ決済 */
.block-order-estimate--pay-input .block-order-estimate--cvs-select {
  border: solid 1px #dcdcdc;
  border-top: 0;
}

.block-order-estimate--amazonpay-wallet-widget {
  padding: 10px;
}

.block-order-estimate--amazonpay-login {
  background: #fff;
  padding: 10px;
  border: solid 1px #dcdcdc;
}

/* ご注文主様 */
.block-order-estimate--orderer {
  margin: 0 0 40px;
}

.block-order-estimate--orderer-content {
}

.block-order-estimate--orderer-content .block-order-estimate--change-btn {
  width: 70px;
  right: 10px;
  top: 10px;
  position: absolute;
}

/* ご注文内容 */

.block-order-estimate--summary {
  margin: 0 -15px;
  padding: 40px 15px 30px;
  background: #F8F8F8;
}

.block-order-estimate--summary-content {
}

.block-order-estimate--total-price {
  font-size: 20px;
  font-weight: bold;
}

.block-order-estimate--total-price:after {
  display: none;
}

.block-order-estimate--login-state-saving {
  margin-top: 10px;
}

.block-order-estimate--login-state-saving-message {
  margin-top: 10px;
}

/* ご注文内容 お届け先 */
.block-order-estimate--delivery-info-header {
  margin-right: 10px;
}

.block-order-estimate--delivery-name {
  font-weight: bold;
}

.block-order-estimate--delivery-summary {
  border-bottom: dashed 1px #dcdcdc;
  padding: 10px;
}

.block-order-estimate--price-items dl {
  display: table;
  width: 100%;
  overflow: hidden;
}

.block-order-estimate--price-items dt {
  width: 55%;
  display: table-cell;
  height: 100%;
  border: none;
  padding: 2px 4px;
  text-align: left;
  box-sizing: border-box;
}

.block-order-estimate--price-items dd {
  width: 45%;
  display: table-cell;
  height: 100%;
  border: none;
  padding: 2px 4px;
  text-align: right;
  box-sizing: border-box;
}

.block-order-estimate--total {
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 2px dashed #DDD;
}

.block-order-estimate--total dt {
  padding: 5px 4px;
  font-size: 16px;
  font-weight: bold;
}

.block-order-estimate--total dd {
  font-weight: bold;
  padding: 5px 4px;
}

.block-order-estimate--point-add-message {
  font-size: 12px;
}

.block-order-estimate--sales-delivery-comment {
  text-align: left;
  font-size: 12px;
}

.block-order-estimate--item,
.block-order-estimate--embroidery {
  padding: 0 0 0 25px;
}

/* ディスカウント情報 */
.block-order-estimate--promotion {
  margin: 0 0 15px;
}

.block-order-estimate--promotion-apply-message-list li:not(:last-child) {
  margin: 0 0 15px;
}

.block-order-estimate--discount-period {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  margin: 5px 0 0;
  background: #F2F2F2;
}

.block-order-estimate--goods-item-sales-period {
  display: none;
}

/* レフィル商品 注文内容確認画面 */
.block-order-estimate--goods-price--refill {
  display: inline-table;
  table-layout: fixed;
}
.block-order-estimate--goods-price--refill--price,
.block-order-estimate--goods-price--refill--refill-price {
  display: table-row;
}
.block-order-estimate--goods-price--refill--price-title,
.block-order-estimate--goods-price--refill--refill-price-title,
.block-order-estimate--goods-price--refill--price-num,
.block-order-estimate--goods-price--refill--refill-price-num {
  display: table-cell;
}

.block-order-estimate--goods-price--refill--price-num,
.block-order-estimate--goods-price--refill--refill-price-num {
  font-weight: bold;
}

.block-order-estimate--goods-refill-info {
  margin-top: 10px;
  padding-top: 4px;
  padding-left: 12px;
}

.block-order-estimate--goods-refill-info--title {
  font-weight: bold;
  margin-bottom: 4px;
}

.block-order-estimate--goods-refill-info--goods {
  padding: 4px;
}

.block-order-estimate--goods-refill-info--goods-image {
  display: table-cell;
  vertical-align: top;
}

.block-order-estimate--goods-refill-info--goods-image > figure {
  background: #f5f5f5;
  width: 80px;
  height: 80px;
}

.block-order-estimate--goods-refill-info--goods-image > figure > img {
  width: 72px;
}

.block-order-estimate--goods-refill-info--goods-description {
  padding-left: 10px;
  font-size: 12px;
  display: table-cell;
}

.block-order-estimate--goods-refill-info--goods-name {
  font-weight: bold;
}

.block-order-estimate--goods-refill-info--goods-price-qty {
  display: flex;
  justify-content: start;
}

.block-order-estimate--goods-refill-info--goods-sales-period {
  font-size: 12px;
  color: #777;
}

/* お届け日時指定 */
.block-order-estimate--date-spec-confirmation {
  margin: 0 0 40px;
}

.block-order-estimate--date-spec,
.block-order-estimate--time-spec {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 12px;
}

.block-order-estimate--date-spec h3,
.block-order-estimate--time-spec h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 3px;
}

.block-order-estimate--date-spec h3 sup,
.block-order-estimate--time-spec h3 sup {
  font-size: 10px;
  font-weight: normal;
  vertical-align: text-top;
}

.block-order-estimate--confirmation-message .help-block {
  color: #000;
  font-size: 12px;
  padding: 6px 0 0;
}

/* 定期購入お届けサイクル */
.block-order-estimate--regular-cycle-confirmation {
  position: relative;
}

.block-order-estimate--regular-cycle-title {
  display: inline-block;
}

.block-order-estimate--regular-cycle-content {
  background: #fff;
  border: solid 1px #dcdcdc;
  margin: 0 0 10px 0;
  padding: 10px;
}

.block-order-estimate--regular-cycle li {
  padding: 5px 10px;
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  font-size: 13px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}

.block-order-estimate--regular-cycle li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.block-order-estimate--regular-cycle > li > span {
  font-size: 13px;
  width: 50%;
}

.block-order-estimate--regular-cycle > li > span:last-of-type {
  text-align: right;
}

.block-order-estimate--prev-expected-dt,
.block-order-estimate--next-expected-dt {
  padding: 5px 5px 0 5px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  font-weight: bold;
}

.block-order-estimate--prev-expected-dt > span,
.block-order-estimate--next-expected-dt > span {
  font-size: 16px;
  width: 50%;
}

.block-order-estimate--prev-expected-dt > span:last-of-type,
.block-order-estimate--next-expected-dt > span:last-of-type {
  text-align: right;
}

.block-order-estimate--regular-add-info {
  border-top: 1px solid #dcdcdc;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 50px;
}

.block-order-estimate--regular-add-info > span {
  font-size: 15px;
}

.block-order-estimate--regular-add-btn {
  position: absolute;
  margin-top: 10px;
  right: 10px;
}

.block-order-estimate--regular-cycle-info {
  margin-top: 10px;
  font-size: 12px;
  text-align: right;
}

.block-order-estimate--regular-cycle-info span {
  display: block;
}

/* ノベルティ商品のノベルティ選択 */

.block-order-estimate--novelty {
  margin: 0 0 40px;
}

.block-order-estimate--novelty-item {
  display: table;
  margin-bottom: 10px;
  width: 100%;
}

.block-order-estimate--novelty-item-image,
.block-order-estimate--novelty-item-goods {
  display: table-cell;
  vertical-align: middle;
}

.block-order-estimate--novelty-item-image {
  width: 60px;
}

.block-order-estimate--novelty-item-goods {
  padding-left: 10px;
  width: auto;
}

.block-order-estimate--novelty-item-image figure {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
}


.block-order-estimate--novelty-none-item-image {
  display: table-cell;
  vertical-align: middle;
  width: 60px;
}
.block-order-estimate--novelty-none-item-image figure {
  width: 60px;
  height: 60px;
  background: #fff;
}

.block-order-estimate--novelty-displaynone {
  display: none;
}

/* ご注文商品 */
.block-order-estimate--goods {
  margin: 0 0 40px;
}

.block-order-estimate h2.block-order-estimate--goods-title {
  margin: 0;
}

.block-order-estimate--goods-list li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px 15px;
  padding: 30px 0;
  border-bottom: 1px solid #DDD;
}

.block-order-estimate--goods-list li:first-child {
  padding-top: 20px;
}

.block-order-estimate--goods-item-image {
  width: 29%;
  border-radius: 10px;
  overflow: hidden;
}

.block-order-estimate--goods-item-image figure {
  width: 100%;
  aspect-ratio: 1;
}

.block-order-estimate--goods-description {
  flex: 1;
}

.block-order-estimate--goods-description .block-icon {
  margin: 0 0 6px;
}

.block-order-estimate--goods-name {
  font-weight: bold;
}

.block-order-estimate--goods-item-comment {
  margin: 15px 0 0;
}
  

.block-order-estimate--goods-item-comment .variation-name {
  display: block;
}

.block-order-estimate--goods-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin: 10px 0 0;
  width: 100%;
}

.block-order-estimate--on-sales-off-percent {
  color: #FFF;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  margin: 0 8px 0 0;
  padding: 2px 7px 1px;
  background: var(--color-red);
  border-radius: 3px;
}

.block-order-estimate--goods-price-num {
  text-align: right;
}

.block-order-estimate--on-sales-off-percent + .block-order-estimate--goods-price-num {
  color: var(--color-red);
}

.block-cart--goods-point-info {
  width: 100%;
}

.block-order-estimate--goods-embroidery-setting {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #DDD;
  padding: 20px;
}

.block-order-estimate--goods-embroidery-setting dt {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 3px;
}

.block-order-estimate--point-not-applicable {
  color: var(--color-red);
  font-size: 13px;
  width: 100%;
  text-align: right;
}

.block-order-gift-confirmation--sending-item-detail-table .block-order-estimate--point-not-applicable {
  text-align: left;
  text-indent: -13px;
  padding: 0 0 0 13px;
  margin: 5px 0 0;
}

.block-order-estimate--goods-price-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8F8F8;
  border-radius: 5px;
  width: 100%;
  padding: 11px 15px 10px;
}

.block-order-estimate--goods-price-subtotal {
  display: flex;
  align-items: baseline;
  font-weight: bold;
}

.block-order-estimate--goods-price-subtotal dd {
  font-size: 18px;
}

.block-order-estimate--goods-price-subtotal dd span {
  font-size: 12px;
}

.block-order-estimate--goods-price-subtotal dd:after {
  font-weight: bold;
}

.block-order-estimate--goods-qty {
  font-weight: bold;
}

.block-order-estimate--goods-qty-value {
  font-size: 18px;
}

/* ご注文商品 その他 */
.block-order-estimate--sales-append {
  display: block;
  background: #fff;
  border: solid 1px #dcdcdc;
}

.block-order-estimate--sales-append .block-order-estimate--confirmation-title {
  padding: 10px 90px 10px 15px;
  position: relative;
}

.block-order-estimate--sales-append .block-order-estimate--confirmation-title h3 {
  padding-top: 0;
  padding-left: 0;
}

.block-order-estimate--sales-append .block-order-estimate--change-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 70px;
}

.block-order-estimate--sales-append-content {
  padding: 0 10px 10px 10px;
}

.block-order-estimate--sales-append-list th {
  vertical-align: top;
  background-color: #999;
  color: #fff;
}

/* ラッピング・メッセージカード */
.block-order-estimate--wrapping-content,
.block-order-estimate--message-card-content {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  margin: 0 0 10px 0;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.block-order-estimate--wrapping-item,
.block-order-estimate--message-card-item {
  display: grid;
  grid-column-gap: 10px;
  grid-template-columns: 110px auto auto;
  padding: 10px;
}

.block-order-estimate--wrapping-title-frame,
.block-order-estimate--message-card-title-frame {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
}

.block-order-estimate--wrapping-change-frame,
.block-order-estimate--message-card-change-frame {
  grid-column-start: 3;
  grid-row-start: 1;
  justify-self: right;
}

.block-order-estimate--wrapping-image-frame,
.block-order-estimate--message-card-image-frame {
  display: table-cell;
  grid-column-start: 1;
  grid-row-start: 2;
  grid-row-end: 4;
  justify-self: center;
  vertical-align: top;
}

.block-order-estimate--wrapping-info-frame,
.block-order-estimate--message-card-info-frame {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 2;
}

.block-order-estimate--message-card-input-frame {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 4;
  margin-top: 10px;
}

.block-order-estimate--wrapping-title,
.block-order-estimate--message-card-title {
  border: none;
  margin: 0;
  padding: 0;
}

.block-order-estimate--wrapping-change-frame .block-order-estimate--change-btn,
.block-order-estimate--message-card-change-frame .block-order-estimate--change-btn {
  position: static;
}

.block-order-estimate--wrapping-image,
.block-order-estimate--message-card-image {
  width: 110px;
}

.block-order-estimate--wrapping-name,
.block-order-estimate--message-card-name,
.block-order-estimate--message-card-input-title {
  font-weight: bold;
}

.block-order-estimate--wrapping-amt,
.block-order-estimate--message-card-amt {
  font-weight: bold;
}

.block-order-estimate--message-card-input-value {
  border: solid 1px #dcdcdc;
  padding: 10px;
}

/* ご注文商品 注文明細拡張情報 */
.block-order-estimate--sales-detail-append-link-edit {
  text-decoration: underline;
}

/* 備考 */
.block-order-estimate--comment {
  margin: 0 0 40px;
}

.block-order-estimate--comment-content textarea {
  display: block;
  width: 100%;
  min-height: 100px;
  resize: vertical;
}

/* メールニュース登録 */
.form-group.block-order-estimate--mailnews {
  margin: 0;
}

.block-order-estimate--mailnews .form-label {
  font-weight: bold;
  padding-bottom: 10px;
}

.block-order-estimate--mailnews-checkbox {
  margin: 8px 0 0;
}

/* 会員登録 */

.block-order-estimate--entry {
  order: -5;
  border: 1px solid #DDD;
  border-radius: 5px;
  padding: 20px;
  margin: 0 0 40px;
}

.block-order-estimate--register-customer {
  margin: 0 0 20px;
}

.block-order-estimate--register-customer > .form-control {
  display: flex;
}

.block-order-estimate--register-customer-checkbox,
.block-order-estimate--register-customer-checkbox-message {
  display: table-cell;
}

.block-order-estimate--register-customer-checkbox-message {
  font-size: 16px;
  font-weight: bold;
}

.block-order-estimate--addr-retention-message {
  font-size: 12px;
}

.block-order-estimate--addr-retention-checkbox,
.block-order-estimate--addr-retention-checkbox-message {
  display: table-cell;
}

.block-order-estimate--addr-retention-checkbox-message {
  margin-top: 3px;
}

.block-order-estimate--entry-customer-message {
  margin: 12px 0 18px;
  font-size: 14px;
}

.block-order-estimate--entry-customer-point {
  color: var(--color-red);
  font-size: 16px;
  font-weight: bold;
}

.block-order-estimate--entry-customer-point span {
  font-size: 18px;
}

.block-order-estimate--register-customer a {
  text-decoration: underline;
}

.block-order-estimate--uid-label {
  margin-bottom: 3px;
}

.block-order-estimate--uid-label-font {
  margin-right: 10px;
}

.block-order-estimate--pwd {
  padding: 20px 0;
  border-top: 2px dashed #DDD;
  border-bottom: 2px dashed #DDD;
}

.block-order-estimate--pwd-label {
  margin-bottom: 3px;
}

.block-order-estimate--pwd-label-font {
  margin-right: 10px;
}

.block-order-estimate--customer-name-label {
  margin-bottom: 3px;
}

.block-order-estimate--customer-name-label-font {
  margin-right: 10px;
}

.block-order-estimate--customer-name input[type="text"] {
  display: block;
  margin-bottom: 3px;
}

.block-order-estimate--mailnews-label {
  margin-bottom: 3px;
  font-weight: bold;
  margin-right: 10px;
} 

.block-order-estimate--mailnews-message {
  font-size: 12px;
}

.block-order-estimate--commit-ft .span {
  display: block;
  padding-top: 10px;
  padding-bottom: 24px;
  font-size: 13px;
}

.block-order-estimate--entry .fieldset-vertical {
  margin: 0;
}

/* AmazonPayローディング */
.block-order-amazonpay--loading {
  padding-top: 50px;
  text-align: center;
}

.block-order-amazonpay--order-back {
  margin: 10px;
}
.block-order-amazonpay--order-back-btn {
  font-size: 12px;
  background: transparent;
  padding: 18px 0 !important;
  border: 0;
  border-top: solid 1px #dcdcdc;
  border-bottom: solid 1px #dcdcdc;
}

/* ---- 注文完了(通常・ギフトフロー共通) ---- */

.block-order-complete--body {
  padding: 10px;
  text-align: center;
}

.block-order-complete--wrapper,
.block-order-complete--customerentry,
.block-order-complete--rules,
.block-order-complete--home {
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

.block-order-complete--home {
  margin-bottom: 0;
}

.block-order-complete .block-accessory-list {
  margin-top: 0;
}

.block-order-complete h1 {
  margin: -10px -10px 10px;
}

.block-order-complete--message {
  margin: 10px;
}

.block-order-complete--message p {
  padding: 10px;
}

.block-order-complete table th {
  width: 40%;
}

.block-order-complete--orderid {
  margin-bottom: 10px;
}

.block-order-complete--salesinclude {
  margin-bottom: 10px;
}

.block-order-complete--home a {
  text-decoration: underline;
}

.block-order-complete--cart p {
  font-size: 17px;
}

.block-order-complete--cart span {
  color: var(--color-red);
  font-weight: bold;
  font-size: 20px;
}

.block-order-complete--cart a {
  text-decoration: underline;
}

.block-order-complete--customerentry-header {
  margin: 0 -10px 10px;
}

.block-order-complete--orderid td a {
  text-decoration: underline;
}

.block-order-complete--salesinclude td a {
  text-decoration: underline;
}

.block-order-complete--cash-paymentinfo-items td {
  overflow-wrap: anywhere;
  text-align: left;
}

.block-order-complete--cash-paymentinfo-items td a {
  text-decoration: underline;
}

.block-order-complete--cash-paymentinfo-remarks {
  margin-top: 5px;
  font-size: 13px;
}


/* ---------------------- */
/* ----ギフトフロー------- */
/* ---------------------- */

/* ---- 配送先選択 ---- */

.block-order-gift-dest {
  padding: 10px 15px 50px;
}

.block-order-gift-dest--list {
  margin: 0 0 40px;
}

.block-order-gift-dest h2 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

.block-order-gift-dest--check-all {
  margin: 15px 0 0;
}

.block-order-gift-dest--list .block-order-gift-dest--check-all label {
  display: block;
  color: #62767D;
  width: 210px;
  border: 1px solid #62767D;
  border-radius: 30px;
  text-align: center;
  font-weight: 500;
  padding: 7px 0 5px;
}

.block-order-gift-dest--check-all input {
  display: none;
}

/* お届け先配送情報エリア */
.block-order-gift-dest--list-body {
  border-top: 1px solid #707070;
  margin: 8px 0 0;
}

.block-order-gift-dest--address-item {
  padding: 20px 0;
  border-bottom: 1px solid #DDD;
}

.block-order-gift-dest--address-item-title {
  font-weight: bold;
  margin-bottom: 3px;
}

.block-order-gift-dest--address-item address {
  margin-left: 30px;
}

.block-order-gift-dest--address-new {
  position: relative;
  margin: 0 0 7px;
}

.block-order-gift-dest--address-new:before,
.block-order-gift-dest--address-new:after {
  content: '';
  position: absolute;
  top: 16px;
  left: 32px;
  width: 9px;
  height: 1px;
  background: #FFF;
  z-index: 1;
}

.block-order-gift-dest--address-new:after {
  transform: rotate(90deg);
}

.block-order-gift-dest--address-change {
  margin: 6px 0 0;
}

.btn.btn-default.block-order-gift-dest--address-change-btn {
  width: 188px;
  padding: 6px 0;
  margin: 0 0 0 auto;
}

.btn.btn-default.block-order-gift-dest--address-new-btn {
  width: 250px;
  font-size: 14px;
  margin: 0;
  padding: 7px 10px 7px 25px;
}

.block-order-gift-dest--comment {
  font-size: 12px;
}

.block-order-gift-dest--cart-back {
  margin: 20px 0 0;
  text-align: center;
}

.block-order-gift-dest--cart-back-link {
  font-weight: 500;
  text-decoration: underline;
  padding: 0 0 0 18px;
  background: url(../../img/usr/common/icon_back.png) no-repeat center left / 11px;
}

/* 贈り主情報エリア */
.block-order-gift-dest--method-sender {
  margin: 0 0 40px;
}

.block-order-gift-dest--method-sender-container {
  border-top: 1px solid #707070;
  margin: 8px 0 0;
  padding: 20px 0 0;
}

.block-order-gift-dest--method-sender-change {
  padding: 15px;
  margin: 15px 0 0;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
}

.block-order-gift-dest--method-sender-btn {
  display: flex;
  gap: 5px;
  padding: 0 8px;
  margin: 10px 0 0;
}

.block-order-gift-dest--method-sender-input {
  background-color: #fff;
  border: 1px solid #DDD;
  margin: 20px 0 15px;
}

.btn.btn-default.block-order-gift-dest--address-copy-btn {
  width: 194px;
  margin: 0;
  padding: 8px 0 6px;
}

.btn.btn-default.block-order-gift-dest--address-clear-btn {
  flex: 1;
  margin: 0;
  color: #FFF;
  background: #B4B4B4;
  padding: 8px 0 6px;
}

.btn.block-order-gift-dest--next-btn {
  display: block;
  background: var(--color-orange);
  margin: 0 auto;
  width: 80%;
  padding: 14px 0;
}

.block-order-gift-dest--method-sender-input .form-group {
  margin: 0;
}

.block-order-gift-dest--method-sender-input .form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F8F8F8;
  border-bottom: 1px solid #DDD;
  padding: 10px 10px 10px 12px;
  margin: 0;
  width: 100%;
}

.block-order-gift-dest--method-sender-input .form-label label {
  font-weight: normal !important;
}

.block-order-gift-dest--method-sender-input .form-label .constraint {
  float: none;
  margin: 0;
}

.block-order-gift-dest--method-sender-input .form-label .required:after {
  width: 42px;
  font-size: 13px;
}

.block-order-gift-dest--method-sender-input .form-control {
  padding: 12px 14px;
  border-bottom: 1px solid #DDD;
}

.block-order-gift-dest--method-sender-input .form-group:last-child .form-control {
  border: 0;
}

.block-order-gift-dest--method-sender-input .help-block {
  color: #221815;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .block-order-gift--dest-address-name-sei,
  .block-order-gift--dest-address-kana-sei {
    margin: 0 0 8px;
  }
}

.block-order-gift-dest--value-label {
  display: block;
}

/* ---- 配送先商品追加 ---- */

.block-order-gift-select {
  padding: 10px 15px 50px;
}

.block-order-gift-select--text {
  font-size: 12px;
  background: #F9FBEA;
  border-radius: 5px;
  padding: 8px 10px;
  margin: 0 0 26px;
}

.block-order-gift-select--text-caution {
  margin: 5px 0 0;
}

.block-order-gift-select--text-caution li {
  font-size: 11px;
  font-weight: bold;
  text-indent: -11px;
  padding: 0 0 0 11px;
}

.block-order-gift-select--sender {
  margin: 0 0 30px;
}

.block-order-gift-select--delivery-dest-add {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 30px;
}

.block-order-gift-select--delivery-dest-add select {
  flex: 1;
}

.btn.btn-default.block-order-gift-select--delivery-dest-add-btn {
  width: 155px;
  font-size: 14px;
  margin: 0 0 0 10px;
  padding: 6px 0;
}

.block-order-gift-select--delivery-dest {
  position: relative;
  margin: 0 0 40px;
}

.block-order-gift-select--delivery-dest:has(.block-order-gift-select--delivery-dest-delete-btn) {
  margin: 0 0 50px;
}

.btn.block-order-gift-select--next-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 0;
  width: 80%;
  background: var(--color-orange);
}

.block-order-gift-select-not-set-modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100svh;
  z-index: 12;
}

.block-order-gift-select-not-set-modal--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(98, 118, 125, .42);
}

.block-order-gift-select-not-set-modal--contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFF;
  width: 87%;
  border-radius: 10px;
  padding: 50px 24px;
}

.block-order-gift-select-not-set-modal--message {
  font-size: 16px;
  margin: 0 0 30px;
}

.btn.btn-default.block-order-gift-select-not-set-modal--btn {
  width: 100%;
  margin: 0 0 20px;
  padding: 14px 0;
}

.block-order-gift-select-not-set-modal--back {
  text-align: center;
  text-decoration: underline;
}

/* お届け先 */
.block-order-gift-select--payment {
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid #DDD;
}

.block-order-gift-select h2 {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  padding: 0 0 8px;
  margin: 0 0 15px;
}

.block-order-gift-select--delivery-dest-address {
  margin: 0 0 25px;
}

.block-order-gift-select--delivery-dest-delete {
  position: absolute;
  top: -6px;
  right: 0;
}

.block-order-gift-select--delivery-dest-delete:before,
.block-order-gift-select--delivery-dest-delete:after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 10px;
  height: 1px;
  background: #FFF;
  transform: rotate(45deg);
  z-index: 1;
}

.block-order-gift-select--delivery-dest-delete:after {
  transform: rotate(-45deg);
}

.btn.btn-default.block-order-gift-select--delivery-dest-delete-btn {
  font-size: 14px;
  font-weight: normal;
  width: 160px;
  padding: 6px 0 6px 13px;
  margin: 0;
  background: #B4B4B4;
}

.block-order-gift-select--delivery-dest-head {
  font-size: 16px;
}

.block-order-gift-select--delivery-dest-nickname {
  font-weight: bold;
  margin: 0 0 4px;
  padding: 4px 130px 0 0;
}

.btn.block-order-gift-select--delivery-dest-noshi-all-btn {
  display: block;
  width: 290px;
  background: #62767D;
  margin: 0 auto 15px;
  padding: 9px 0;
  border: 0;
}

.block-order-gift-select--delivery-dest-content:has(.block-order-gift-select--delivery-dest-goods-noshi-all) .btn.block-order-gift-select--delivery-dest-noshi-all-btn {
  color: #B4B4B4;
  background: #DDD;
  pointer-events: none;
}

.block-order-gift-select--delivery-dest-goods-noshi-all {
  margin: 30px 0 0;
}

.block-order-gift-select--delivery-dest-goods-noshi-all-title {
  padding: 0 0 10px;
  margin: 0 0 15px;
  border-bottom: 1px solid #707070;
}

.block-order-gift-select--delivery-dest-goods-noshi-all-title h3 {
  margin: 0 0 5px;
  font-weight: bold;
}

.btn.btn-default.block-order-gift-select--delivery-dest-goods-noshi-all-btn {
  width: 218px;
  background: #B4B4B4;
  margin: 0;
}

.block-order-gift-select--delivery-dest-goods-noshi-all .block-order-gift-select--delivery-dest-goods-noshi-all-contents dl {
  display: flex;
  align-items: flex-start;
}

.block-order-gift-select--delivery-dest-goods-noshi-all .block-order-gift-select--delivery-dest-goods-noshi-all-contents dt {
  position: relative;
  width: 145px;
  padding: 0 15px 0 0;
}

dd .block-order-gift-select--delivery-dest-goods-noshi-all-contents dt {
  display: inline-flex;
  align-items: center;
}

.block-order-gift-select--delivery-dest-goods-noshi-all-contents dt:after {
  content: ':';
  position: absolute;
  top: -1px;
  right: 8px;
}

dd .block-order-gift-select--delivery-dest-goods-noshi-all-contents dt:after {
  display: inline-block;
  position: static;
  width: 14px;
  text-align: center;
}

.block-order-gift-select--delivery-dest-goods-noshi-all .block-order-gift-select--delivery-dest-goods-noshi-all-contents dd {
  flex: 1;
}

dd .block-order-gift-select--delivery-dest-goods-noshi-all-contents dd {
  display: inline;
}

/* お届け先商品 */
.block-order-gift-select--delivery-dest-goods {
  margin: 0 0 20px;
}

.block-order-gift-select--delivery-dest-goods-added {
  margin: 40px 0 20px;
}

.block-order-gift-select--delivery-dest-goods-add {
  display: none;
}

.block-order-gift-select--delivery-dest-goods-message {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}

.block-order-gift-select--delivery-dest-goods-content-list .block-order-gift-select--delivery-dest-goods-checkbox-header {
  width: 30px;
}

.block-order-gift-select--delivery-dest-goods-content-list .block-order-gift-select--delivery-dest-goods-name-header {
  width: auto;
}

.block-order-gift-select--delivery-dest-goods-content-list .block-order-gift-select--delivery-dest-goods-qty-header {
  width: 50px;
}

.block-order-gift-select--delivery-dest-goods-qty input {
  width: 40px;
  text-align: right;
}

.block-order-gift-select--delivery-dest-goods-content-info th {
  width: 30%;
  max-width: 30%;
  vertical-align: middle;
  white-space: normal;
}

.block-order-gift-select--delivery-dest-goods-content-info td {
  background: #fff;
}

.block-order-gift-select--delivery-dest-goods-noshi-btn {
  font-size: 14px;
  padding: 4px 5px;
}

.block-order-gift-select--delivery-dest-goods-noshi-massage {
  padding: 0 0 10px;
}

.block-order-gift-select--delivery-dest-goods-delete {
  text-align: right;
}

.block-order-gift-select--delivery-dest-total {
  margin-top: 10px;
}

.block-order-gift-select--delivery-dest-total table th {
  width: 30%;
  max-width: 30%;
  vertical-align: middle;
  white-space: normal;
}

.block-order-gift-select--delivery-dest-total td {
  vertical-align: middle;
}

.block-order-gift-select--delivery-dest-total-price {
  display: inline-block;
  vertical-align: middle;
}

.block-order-gift-select--delivery-dest-total-price-calc {
  text-align: right;
  float: right;
  display: inline-block;
}

.block-order-gift-select--delivery-dest-goods-content-item {
  display: flex;
  border: 1px solid #DDD;
}

.block-order-gift-select--delivery-dest-goods-content-item:not(:last-child) {
  border-bottom: 0;
}

.block-order-gift-select--delivery-dest-goods-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  width: 32px;
  border-right: 1px solid #DDD;
}

.block-order-gift-select--delivery-dest-goods-checkbox input {
  margin: 0 !important;
  background: #FFF;
}

.block-order-gift-select--delivery-dest-goods-content-inner {
  flex: 1;
}

.block-order-gift-select--delivery-dest-goods-name {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #DDD;
}

.block-order-gift-select--delivery-dest-goods-content-item:has(.block-order-gift-select--delivery-dest-goods-checkbox) .block-order-gift-select--delivery-dest-goods-name,
.block-order-gift-select--delivery-dest-goods-content-item:has(.block-order-gift-select--delivery-dest-goods-checkbox) .block-order-gift-select--delivery-dest-goods-embroidery-setting {
  padding: 10px;
}

.block-order-gift-select--delivery-dest-goods-name figure {
  width: 50px;
  border-radius: 5px;
  overflow: hidden;
}

.block-order-gift-select--delivery-dest-goods-img > .block-goods-child {
  display: none;
}

.block-order-gift-select--delivery-dest-goods-name-text {
  flex: 1;
}

.block-order-gift-select--delivery-dest-goods-child-list {
  margin: 8px 0 0;
}

.block-cart--goods-list-item-set-name {
  margin: 0 0 10px;
}

.block-goods-child--name {
  font-size: 14px;
  text-indent: -14px;
  padding: 0 0 0 14px;
}

.block-order-gift-select--delivery-dest-goods-embroidery-setting {
  border-bottom: 1px solid #DDD;
}

.block-order-gift-select--delivery-dest-goods-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
}

.block-order-gift-select--delivery-dest-goods-qty dd {
  display: flex;
  gap: 10px;
}

.block-order-gift-select--delivery-dest-goods-qty-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #828282;
}

.block-order-gift-select--delivery-dest-goods-qty-btn:not(.inactive) {
  cursor: pointer;
}

.block-order-gift-select--delivery-dest-goods-qty-btn.minus:before,
.block-order-gift-select--delivery-dest-goods-qty-btn.plus:before,
.block-order-gift-select--delivery-dest-goods-qty-btn.plus:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 2px;
  background: #FFF;
}

.block-order-gift-select--delivery-dest-goods-qty-btn.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.block-order-gift-select--delivery-dest-goods-qty-btn.inactive {
  background: #F2F2F2;
  pointer-events: none;
}

.block-order-gift-select--delivery-dest-goods-qty-btn.inactive:before,
.block-order-gift-select--delivery-dest-goods-qty-btn.inactive:after {
  background: #B4B4B4;
}

input.block-order-gift-select--delivery-dest-goods-qty-input {
  width: 54px;
  border: 1px solid #DDD;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  padding: 0;
  background: #FFF;
}

.block-order-gift-select--delivery-dest-goods-qty-input::-webkit-inner-spin-button,
.block-order-gift-select--delivery-dest-goods-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance:textfield;
}

.btn.block-order-gift-select--delivery-dest-goods-checked-add-btn {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 9px 0;
}

.block-order-gift-select--delivery-dest-goods-content-info {
  position: relative;
  border: 1px solid #DDD;
  margin: 0 0 50px;
}

.block-order-gift-select--delivery-dest-goods-content-info:last-child {
  margin: 0;
}

.block-order-gift-select--delivery-dest-goods-delete {
  position: absolute;
  top: -29px;
  right: 0;
}

.block-order-gift-select--delivery-dest-goods-delete:before,
.block-order-gift-select--delivery-dest-goods-delete:after {
  content: '';
  position: absolute;
  top: 14px;
  left: 12px;
  width: 10px;
  height: 1px;
  background: #FFF;
  transform: rotate(45deg);
}

.block-order-gift-select--delivery-dest-goods-delete:after {
  transform: rotate(-45deg);
}

.btn.btn-default.block-order-gift-select--delivery-dest-goods-delete-btn {
  width: 66px;
  background: #B4B4B4;
  border-radius: 5px 5px 0 0;
  color: #FFF;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  padding: 4px 0 4px 13px;
}

.block-order-gift-select--delivery-dest-goods-content-info > dl {
  display: flex;
  border-bottom: 1px solid #DDD;
}

.block-order-gift-select--delivery-dest-goods-content-info > dl:last-of-type {
  border: 0;
}

.block-order-gift-select--delivery-dest-goods-content-info > dl > dt {
  display: flex;
  align-items: center;
  width: 75px;
  padding: 10px 8px;
  background: #F8F8F8;
  border-right: 1px solid #DDD;
}

.block-order-gift-select--delivery-dest-goods-content-info > dl > dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 75px);
  padding: 10px;
  flex: 1;
  word-break: break-all;
}

.block-order-gift-select--delivery-dest-goods-sales-qty dd:has(.block-order-gift-select--delivery-dest-goods-sales-qty-input) {
  flex-direction: row;
  justify-content: flex-start;
}

input.block-order-gift-select--delivery-dest-goods-sales-qty-input {
  border: 0;
  background: none;
  border-radius: 0;
  padding: 0 !important;
  pointer-events: none;
}

.block-order-gift-select--delivery-dest-goods-img {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 7px;
}

.btn.btn-secondary.block-order-gift-select--delivery-dest-goods-noshi-btn {
  font-size: 14px;
  line-height: 1.43;
  background: #62767D;
  white-space: normal;
  border: 0;
  padding: 8px 35px;
}

.btn.btn-default.block-order-gift-select--delivery-dest-goods-noshi-edit-btn {
  width: 64px;
  margin: 10px 0 0 auto;
}

.btn.btn-default.block-order-gift-select--delivery-dest-goods-all-delete-btn {
  width: 120px;
  background: #B4B4B4;
  font-weight: normal;
  margin: 0 0 0 auto;
}

/* 配送方法 */
.block-order-gift-select--delivery-date {
  margin: 0 0 30px;
}

.block-order-gift-select--delivery-date h3 {
  font-size: 14px;
}

.block-order-gift-select--delivery-date-content select {
  min-width: 270px;
}

/* お支払い情報 */
.block-order-gift-select--coupon-text {
  margin: 0 0 10px;
}

.btn.btn-default.block-order-gift-select--coupon-available-btn {
  font-size: 14px;
  width: 232px;
  padding: 7px 0 6px;
  margin: 12px 0 0 auto;
}

.block-order-gift-select--promotion {
  margin: 0 0 25px;
}

.block-order-gift-select--promotion-text {
  margin: 0 0 10px;
}

.block-order-gift-select--point-payment {
  margin: 0 0 25px;
}

.block-order-gift-select--current-point {
  margin: 0 0 8px;
}

.block-order-gift-select--current-point-num {
  font-size: 16px;
  font-weight: bold;
}

input.block-order-gift-select--point-payment-input {
  width: 90px;
  margin: 0 5px 0 0;
}

input.block-order-gift-select--point-payment-input::-webkit-inner-spin-button,
input.block-order-gift-select--point-payment-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

.block-order-gift-select--method {
  margin: 0 0 25px;
}

.block-order-gift-select--payment h3 {
  display: flex;
  gap: 12px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
}

.block-order-gift-select--payment h3 .required:after {
  display: block;
}

.block-order-gift-select--method-list li:not(:last-child) {
  margin: 0 0 8px;
}

.block-order-gift-select--notice {
  color: #000;
  font-size: 12px;
}

/* その他 */
.block-order-gift-select--other-title {
  margin: 10px -10px 0;
}

.block-order-gift-select--back { 
  margin-top: 20px;
  text-align: center;
}

.block-order-gift-select--back-link {
  text-decoration: underline;
  font-weight: 500;
  padding: 0 0 0 18px;
  background: url(../../img/usr/common/icon_back.png) no-repeat left center / 11px;
}

/* ---- のし・ラッピング設定 ---- */

.block-order-gift-noshi {
  padding: 10px 15px 50px;
}

.block-order-gift-noshi--title {
  font-size: 22px;
  margin: 0 0 25px;
}

.block-order-gift-noshi--goods {
  margin: 10px 0 25px;
  padding: 10px;
  background-color: #F9FBEA;
  border-radius: 5px;
  font-weight: 500;
}

.block-order-gift-noshi--goods span {
  margin: 0 0 0 10px;
}

.block-order-gift-noshi--sender p {
  font-weight: bold;
}

.block-order-gift-noshi--noshi-container-title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  padding: 0 0 8px;
  margin: 0 0 15px;
}

.block-order-gift-noshi--section h3,
.block-order-gift-noshi--wrap-container-title,
.block-order-gift-noshi--bag-container-title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  padding: 0 0 8px;
  margin: 25px 0 15px;
}

.js-order-gift-noshi-message-box-wrapper {
  margin-bottom: 60px;
}

.block-order-gift-noshi--paper-select,
.block-order-gift-noshi--nameprint-select,
.block-order-gift-noshi--covertype-select,
.block-order-gift-noshi--wrap-select,
.block-order-gift-noshi--bag-select,
.block-order-gift-noshi--message-select {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}

.block-order-gift-noshi--paper-select li,
.block-order-gift-noshi--nameprint-select li,
.block-order-gift-noshi--covertype-select li,
.block-order-gift-noshi--wrap-select li,
.block-order-gift-noshi--bag-select li,
.block-order-gift-noshi--message-select li {
  width: calc((100% - 10px) / 2);
}

.block-order-gift-noshi--paper-select li label,
.block-order-gift-noshi--nameprint-select li label,
.block-order-gift-noshi--covertype-select li label,
.block-order-gift-noshi--wrap-select li label,
.block-order-gift-noshi--bag-select li label,
.block-order-gift-noshi--message-select li label {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.block-order-gift-noshi--paper-select li figure,
.block-order-gift-noshi--nameprint-select li figure,
.block-order-gift-noshi--covertype-select li figure,
.block-order-gift-noshi--wrap-select li figure,
.block-order-gift-noshi--bag-select li figure,
.block-order-gift-noshi--message-select li figure {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  text-align: center;
}

.block-order-gift-noshi--paper-select li figure img,
.block-order-gift-noshi--nameprint-select li figure img,
.block-order-gift-noshi--covertype-select li figure img,
.block-order-gift-noshi--wrap-select li figure img,
.block-order-gift-noshi--bag-select li figure img,
.block-order-gift-noshi--message-select li figure img {
  width: 60%;
}

.block-order-gift-noshi--paper-select li input,
.block-order-gift-noshi--nameprint-select li input,
.block-order-gift-noshi--covertype-select li input,
.block-order-gift-noshi--wrap-select li input,
.block-order-gift-noshi--bag-select li input,
.block-order-gift-noshi--message-select li input {
  margin-top: 3px;
}

.block-order-gift-noshi--paper-item-name,
.block-order-gift-noshi--item-name,
.block-order-gift-noshi--covertype-item-name,
.block-order-gift-noshi--wrap-item-name,
.block-order-gift-noshi--bag-item-name,
.block-order-gift-noshi--message-item-name {
  flex: 1;
}

.block-order-gift-noshi--paper-item-price,
.block-order-gift-noshi--item-price,
.block-order-gift-noshi--covertype-item-price,
.block-order-gift-noshi--wrap-item-price,
.block-order-gift-noshi--bag-item-price,
.block-order-gift-noshi--message-item-price {
  width: 100%;
  padding: 0 0 0 26px;
}

.block-order-gift-noshi--paper-message,
.block-order-gift-noshi--covertype-message,
.block-order-gift-noshi--wrap-message,
.block-order-gift-noshi--bag-message,
.block-order-gift-noshi--message-message {
  margin: 10px 0 0;
  background: #F5F5F5;
  border-radius: 5px;
  padding: 10px;
}

.block-order-gift-noshi--paper-input .control-label {
  font-weight: bold;
}

.block-order-gift-noshi--section {
  margin-bottom: 10px;
}

.block-order-gift-noshi--bag-input-title {
  font-weight: bold;
  margin: 25px 0 8px;
}

.block-order-gift-noshi--setting-message {
  margin: 40px 0 20px;
  padding: 30px 0 0;
  border-top: 1px solid #DDD;
}

.block-order-gift-noshi--paper-item-price,
.block-order-gift-noshi--wrap-item-price,
.block-order-gift-noshi--bag-item-price {
  display: block;
  width: 100%;
  padding: 0 0 0 26px;
}

.block-order-gift-noshi--item-price {
  display: inline-block;
}

.block-order-gift-noshi--covertype-item-price {
  width: 100%;
  padding: 0 0 0 26px;
}

.block-order-gift-noshi--wrap-item-price {
  display: inline-block;
}

.block-order-gift-noshi--bag-item-price {
  display: inline-block;
}

.block-order-gift-noshi--nameprint-name1-1,
.block-order-gift-noshi--nameprint-name1-2,
.block-order-gift-noshi--nameprint-name2-1,
.block-order-gift-noshi--nameprint-name2-2,
.block-order-gift-noshi--nameprint-name3-1,
.block-order-gift-noshi--nameprint-name3-2 {
  display: block;
  margin-bottom: 6px;
}

.btn.block-order-gift-noshi--setting-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 0;
  width: 80%;
  background: var(--color-orange);
}

.btn.block-order-gift-noshi--setting-all-btn {
  display: block;
  margin: 15px auto;
  width: 80%;
}

.btn.btn-default.block-order-gift-noshi--back-btn {
  width: auto;
  border-radius: 0;
  padding: 0 0 0 18px;
  margin: 25px auto 0;
  text-decoration: underline;
  color: #221815;
  background: url(../../img/usr/common/icon_back.png) no-repeat center left / 11px;
}

/* ---- 注文内容確認---- */

.block-order-gift-confirmation {
  padding: 10px 15px 50px;
}

.block-order-gift-confirmation--order-items {
  margin: 0 0 40px;
}

.block-order-gift-confirmation--promotion-novelty {
  margin: 0 0 30px;
}

.block-order-gift-confirmation .form-error {
  border: 1px solid var(--color-red);
  background-color: #FFEEEE;
  padding: 10px 20px;
  margin: 0 0 15px;
  color: #221815;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.block-order-gift-confirmation--header {
  margin: -10px -10px 0;
}

.block-order-gift-confirmation h2.block-order-gift-confirmation--order-item-header {
  margin-bottom: 8px;
}

.block-order-gift-confirmation--order-item-detail-table .block-order-gift-confirmation--item-name-header {
  width: 60%;
  white-space: nowrap;
}

.block-order-gift-confirmation--order-item-detail-table .block-order-gift-confirmation--item-name {
  vertical-align: middle;
}

.block-order-gift-confirmation--order-item-detail-table .block-order-gift-confirmation--item-qty-header {
  width: 15%;
  white-space: nowrap;
}

.block-order-gift-confirmation--item-qty {
  text-align: right;
}

.block-order-gift-confirmation--order-item-detail-table .block-order-gift-confirmation--item-amount-header {
  width: 25%;
  white-space: nowrap;
}

.block-order-gift-confirmation--item-amount {
  text-align: right;
}

.block-order-gift-confirmation--item-image figure {
  width: 110px;
  height: 110px;
  background: #f5f5f5;
}

.block-order-gift-confirmation--order-item-info {
  margin-bottom: 10px;
}

.block-order-gift-confirmation--order-summary-table {
  border: 0;
}

.block-order-gift-confirmation--order-summary-table th {
  background: none;
  border: 0;
  border-bottom: 1px solid #DDD;
  padding: 12px 0;
  width: 60%;
  font-weight: bold;
}

.block-order-gift-confirmation--order-summary-table td {
  text-align: right;
  border: 0;
  border-bottom: 1px solid #DDD;
  padding: 12px 0;
  width: 40%;
}

.block-order-gift-confirmation--order-summary-table .block-order-gift-confirmation--total th {
  font-size: 16px;
}

.block-order-gift-confirmation--order-summary-table .block-order-gift-confirmation--total td {
  font-size: 22px;
  font-weight: bold;
}

.block-order-gift-confirmation--order-summary-table .block-order-gift-confirmation--total td span {
  font-size: 16px;
}

.block-order-gift-confirmation--order-summary-message td {
  border: 0;
  padding-bottom: 0;
}

.block-order-gift-confirmation--order-summary-message .help-block {
  margin: 0;
}

.block-order-gift-confirmation .block-order-estimate--method-pay {
  margin-bottom: 10px;
}

.block-order-gift-confirmation--shipping {
  margin: 0 0 40px;
}

.block-order-gift-confirmation--shipping-header {
  margin: 0 -10px 10px;
}

.block-order-gift-confirmation--orderer-table {
  margin-bottom: 10px;
}

.block-order-gift-confirmation--ordered-item-table th {
  width: auto;
  white-space: nowrap;
}

.block-order-gift-confirmation--ordered-item-table td {
  text-align: right;
}

.block-order-gift-confirmation--ordered-item-info {
  display: none;
}

.block-order-gift-confirmation--ordered-item-table {
  margin-bottom: 10px;
}

.block-order-gift-confirmation--ordered-item-message td {
  text-align: left;
}

.block-order-gift-confirmation--sender-table {
  margin-bottom: 10px;
}

.block-order-gift-confirmation--destination-address-info {
  margin: 0 0 40px;
}

.block-order-gift-confirmation--destination-address-info-item:not(:last-child) {
  margin: 0 0 40px;
}

.block-order-gift-confirmation--destination-name {
  font-weight: bold;
  padding: 9px 10px;
  margin: 0 0 10px;
  background: #F9FBEA;
}

.block-order-gift-confirmation--destination-address {
  margin: 0 0 15px;
}

.block-order-gift-confirmation--destination-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid #DDD;
  margin: 0 0 20px;
  padding: 0 0 7px;
  font-weight: bold;
}

.block-order-gift-confirmation--destination-price dd {
  font-size: 18px;
}

.block-order-gift-confirmation--destination-price dd span {
  font-size: 14px;
  padding: 0 0 0 2px;
}

.block-order-gift-confirmation--sending-item-detail-table {
  border: 1px solid #DDD;
  margin: 20px 0 0;
}

.block-order-gift-confirmation--sending-item-detail-table:first-child {
  margin: 0;
}

.block-order-gift-confirmation--sending-item-detail-table dl {
  display: flex;
  border-bottom: 1px solid #DDD;
}

@media screen and (max-width: 768px) {
  .block-order-gift-confirmation--sending-item-detail-table dl:last-child {
    border: 0;
  }
}

.block-order-gift-confirmation--sending-item-detail-table dt {
  width: 22%;
  padding: 10px 8px;
  border-right: 1px solid #DDD;
  background: #F8F8F8;
}

.block-order-gift-confirmation--sending-item-detail-table dd {
  display: flex;
  align-items: center;
  width: 78%;
  padding: 10px;
}

.block-order-gift-confirmation--sending-item-name-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.block-order-gift-confirmation--goods-item-sales-period {
  display: none;
}

.block-order-gift-confirmation--sending-item-name figure {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
}

.block-order-gift-confirmation--sending-item-name-text {
  flex: 1;
  line-height: 1.4;
}

.block-order-gift-confirmation--sending-item-name p:nth-child(2) {
  margin: 6px 0 0;
}

.block-order-gift-confirmation--sending-item-name-text .block-goods-child:last-of-type {
  margin: 0 0 10px;
}

.block-order-gift-confirmation--sending-item-noshi-detail {
  margin: 20px 0 0;
  padding: 15px;
  border: 4px solid #DDD;
  border-radius: 5px;
  word-break: break-all;
}

.block-order-gift-confirmation--sending-item-noshi-detail-setting dt {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}

.block-order-gift-confirmation--sending-item-noshi-detail-charge {
  display: flex;
  align-items: baseline;
  gap: 15px;
  border-top: 1px solid #DDD;
  margin: 10px 0 0;
  padding: 12px 0 0;
  font-weight: bold;
}

.block-order-gift-confirmation--other-header {
  margin: 0 -10px 10px;
}

.block-order-gift-confirmation--other-detail th {
  vertical-align: top;
  background-color: #999;
  color: #fff;
}

.block-order-gift-confirmation--other-detail {
  margin-bottom: 10px;
}

.block-order-gift-confirmation--method-pay {
  margin: 0 0 40px;
}

.block-order-gift-confirmation h2.block-order-gift-confirmation--method-pay-title {
  margin-bottom: 15px;
}

.block-order-gift-confirmation--method h3 {
  font-size: 16px;
  font-weight: bold;
}

.block-order-gift-confirmation--order-comment textarea {
  display: block;
  width: 100%;
}

.block-order-gift-confirmation--order-comment {
  margin: 0 0 40px;
}

.block-order-gift-confirmation--order-comment-message {
  font-weight: bold;
  background: #FBF7EF;
  border-radius: 5px;
  padding: 8px 10px;
  margin: 0 0 30px;
}

.btn.block-order-estimate--commit-btn-staff {
  width: 100%;
  text-align: center;
  background: none;
  color: var(--color-red);
  font-weight: bold;
  border: 0;
  opacity: 1;
  border-radius: 0;
}

.btn.block-order-estimate--gift-order-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 0;
  width: 80%;
  background: var(--color-orange);
}

.block-order-gift-confirmation--back {
  text-align: center;
  margin: 30px 0 0;
}

.block-order-gift-confirmation--back-link {
  font-weight: 500;
  padding: 0 0 0 18px;
  text-decoration: underline;
  background: url(../../img/usr/common/icon_back.png) no-repeat left center / 11px;
}

.block-order-gift-confirmation--entry-customer-title {
  margin: 0 -10px 10px;
}

.block-order-gift-confirmation--entry-customer-message {
  margin-bottom: 10px;
}

.block-order-gift-confirmation--mailnews-title {
  margin: 0 -10px 10px;
}

.block-order-gift-confirmation--mailnews-message {
  margin-bottom: 10px;
}

.block-order-gift-confirmation--mailnews {
  margin: 0 0 40px;
}

.block-order-gift-confirmation--novelty-header {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 1px solid #707070;
  margin: 0 0 20px;
  padding: 0 0 6px;
}

.block-order-gift-confirmation--novelty-item {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

.block-order-gift-confirmation--novelty-item-image,
.block-order-gift-confirmation--novelty-item-goods {
  display: table-cell;
  vertical-align: middle;
}

.block-order-gift-confirmation--novelty-item-image {
  width: 60px;
}

.block-order-gift-confirmation--novelty-item-goods {
  padding-left: 10px;
  width: auto;
}

.block-order-gift-confirmation--novelty-displaynone {
  display: none;
}

.block-order-gift-confirmation--novelty-item-image figure {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
}

.block-order-gift-confirmation--novelty-none-item-image {
  display: table-cell;
  vertical-align: middle;
  width: 60px;
}

.block-order-gift-confirmation--novelty-none-item-image figure {
  width: 60px;
  height: 60px;
  background: #fff;
}

.block-order-gift-confirmation--campaign-info {
  text-align: center;
  padding: 5px 0;
  margin: 10px 0;
}

.action-rakutenpay {
  text-align: center;
}
.action-rakutenpayv2 {
  text-align: center;
}

.block-order-estimate--commit-btn-rakutenpayv2 {
  border: none;
  background: transparent;
}

.block-order-estimate--commit .block-order-estimate--commit-btn-merpay {
  border: none;
  background: transparent;
  padding: 4px;
  height: 100%;
  width: 100%;
}

.block-paypay-dialog {
  text-align: center;
  width: 100%;
  font-size: 12px;
}

.block-paypay-dialog--return-top {
  padding-top: 20px;
}

.block-order-gift-confirmation h2 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  border-bottom: 1px solid #707070;
  margin: 0 0 20px;
  padding: 0 0 6px;
}

/* ディスカウント情報 */
.block-order-gift-confirmation--discount {
  margin: 0 0 30px;
}

.block-order-gift-confirmation--discount-period {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  margin: 5px 0 0;
  background: #F2F2F2;
}

.block-order-gift-confirmation--goods-item-sales-period {
  font-size: 12px;
  color: #777;
}

/* その他 */
.block-order-gift-confirmation--return-agree {
  text-align: center;
  margin: 10px 0;
}

.block-order-gift-confirmation--return-agree .btn.btn-default {
  padding: 10px 0 9px;
}

.block-order-gift-confirmation--sales-delivery-comment {
  font-size: 12px;
}

.block-order-gift-confirmation--agree-terms {
  font-size: 12px;
  text-align: center;
  margin: 20px 0;
}

.block-order-gift-confirmation--order-terms-link {
  color: var(--main-color);
  text-decoration: underline;
  font-weight: bold;
}

/* ----AmazonPayロード中表示---- */

.block-cart--amazonpay-loading {
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  background-color: #fff;
  opacity: 0.8;
  z-index: 2;
}

.block--cart-amazonpay-loading-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* 定期明細追加確認画面 */

/* 共通設定 */
.block-order-regular-add-confirm {
  margin: 0 10px 0 10px;
  font-size: 14px;
}

.block-order-regular-add-confirm h1 {
  margin: 0 -10px 0;
  text-align: center;
}

.block-order-regular-add-confirm h2 {
  margin: 20px 0 0 0;
  padding: 5px;
  background: transparent;
}

.block-order-regular-add-confirm .form-error {
  font-weight: bold;
}

/* 申し込みを確定する */
.block-order-regular-add-confirm--commit {
  margin: 5px 0 5px 0;
  text-align: center;
}

.block-order-regular-add-confirm--commit .action .btn {
  margin: 5px 0 5px 0;
  padding: 15px 0 15px 0;
  font-size: 18px;
}

.block-order-regular-add-confirm--order-terms-link {
  text-decoration: underline;
  cursor: pointer;
}

.block-order-regular-add-confirm--return-agree {
  margin: 5px 0 5px 0;
}

/* 利用規約 */
.block-order-regular-add-confirm--agreebody {
  width: 100%;
  height: 400px;
  font-size: 10px;
}

/* お支払い情報 */
.block-order-regular-add-confirm--method-pay-content {
  background: #fff;
  border: solid 1px #dcdcdc;
  padding: 10px;
  position: relative;
}

.block-order-regular-add-confirm--method {
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
}

.block-order-regular-add-confirm--method > span {
  width: 50%;
  font-size: 14px;
}

.block-order-regular-add-confirm--method > span:last-of-type {
  text-align: right;
}


/* ご注文主様 */
.block-order-regular-add-confirm--orderer-content {
  background: #fff;
  padding: 10px 90px 10px 10px;
  border: solid 1px #dcdcdc;
  position: relative;
}

.block-order-regular-add-confirm--message {
  text-align: center;
  font-size: 13px;
  letter-spacing: -0.1px;
  border: solid 1px #dcdcdc;
  padding: 10px 5px 10px 5px;
  margin-top: 20px;
}

/* ご注文内容 */
.block-order-regular-add-confirm--summary-content {
  background: #fff;
  border: solid 1px #dcdcdc;
}

.block-order-regular-add-confirm--total-price {
  font-weight: bold;
}

/* ご注文内容 お届け先 */

.block-order-regular-add-confirm--price-items {
  padding: 10px 10px 5px 10px;
}

.block-order-regular-add-confirm--price-items dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}

.block-order-regular-add-confirm--price-items dl > dt,
.block-order-regular-add-confirm--subtotal-tax {
  width: 50%;
  height: 100%;
  border: none;
  padding: 2px 4px;
  text-align: left;
  box-sizing: border-box;
}

.block-order-regular-add-confirm--price-items dl > dd,
.block-order-regular-add-confirm--subtotal-price {
  width: 50%;
  height: 100%;
  border: none;
  padding: 2px 4px;
  text-align: right;
  box-sizing: border-box;
}

.block-order-regular-add-confirm--total dt {
  border-top: 1px solid #dcdcdc;
  padding: 5px 4px;
  font-weight: bold;
}

.block-order-regular-add-confirm--total dd {
  border-top: 1px solid #dcdcdc;
  padding: 5px 4px;
}

/* 定期購入お届けサイクル */
.block-order-regular-add-confirm--regular-cycle-confirmation,
.block-order-regular-add-confirm--goods {
  position: relative;
}

.block-order-regular-add-confirm--regular-cycle-title,
.block-order-regular-add-confirm--goods-title {
  display: inline-block;
}

.block-order-regular-add-confirm--regular-cycle-content {
  background: #fff;
  border: solid 1px #dcdcdc;
  margin: 0 0 10px 0;
  padding: 10px;
}

.block-order-regular-add-confirm--change-btn {
  width: 75px;
  right: 10px;
  top: 20px;
  position: absolute;
}

.block-order-regular-add-confirm--regular-cycle li {
  padding: 5px 10px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 13px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}

.block-order-regular-add-confirm--regular-cycle > li > span {
  font-size: 13px;
  width: 50%;
}

.block-order-regular-add-confirm--regular-cycle > li > span:last-of-type {
  text-align: right;
}

.block-order-regular-add-confirm--next-expected-dt {
  padding: 5px;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  border-top: 1px solid #ddd;
  font-weight: bold;
}

.block-order-regular-add-confirm--next-expected-dt > span {
  font-size: 16px;
  width: 50%;
}

.block-order-regular-add-confirm--next-expected-dt > span:last-of-type {
  text-align: right;
}

.block-order-regular-add-confirm--regular-cycle-info {
  margin-top: 10px;
  font-size: 12px;
  text-align: right;
}

.block-order-regular-add-confirm--regular-cycle-info span {
  display: block;
}

.block-order-regular-add-confirm--regular-cycle-info a {
  display: block;
  margin: 5px;
  text-decoration: underline;
}

/* ご注文商品 */
.block-order-regular-add-confirm--goods-label {
  font-size: 16px;
  margin-left: 10px;
}

.block-order-regular-add-confirm--goods-content {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-bottom: none;
  margin: 0 0 15px 10px;
}

.block-order-regular-add-confirm--goods-list li {
  border-bottom: 1px solid #dcdcdc;
  padding: 10px;
}

.block-order-regular-add-confirm--goods-item-image {
  width: 110px;
  display: table-cell;
  vertical-align: top;
}

.block-order-regular-add-confirm--goods-item-image figure {
  background: #f5f5f5;
  width: 110px;
  height: 110px;
}

.block-order-regular-add-confirm--goods-description {
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
}

.block-order-regular-add-confirm--goods-price-first {
  font-weight: bold;
  font-size: 16px;
}

.block-order-regular-add-confirm--goods-price-repeat {
  font-size: 14px;
}

.block-order-regular-add-confirm--goods-name {
  font-weight: bold;
}

.block-order-regular-add-confirm--goods-item-sales-period {
  font-size: 12px;
  color: #777;
}

/* ご注文商品 注文明細拡張情報 */
.block-order-regular-add-confirm--sales-detail-append-link-edit {
  text-decoration: underline;
}

/* レフィル商品 定期明細追加画面 */
.block-order-regular-add-confirm--goods-price--refill {
  display: inline-table;
  table-layout: fixed;
}
.block-order-regular-add-confirm--goods-price--refill--price,
.block-order-regular-add-confirm--goods-price--refill--refill-price {
  display: table-row;
}
.block-order-regular-add-confirm--goods-price--refill--price-title,
.block-order-regular-add-confirm--goods-price--refill--refill-price-title,
.block-order-regular-add-confirm--goods-price--refill--price-num,
.block-order-regular-add-confirm--goods-price--refill--refill-price-num {
  display: table-cell;
}

.block-order-regular-add-confirm--goods-price--refill--price-num,
.block-order-regular-add-confirm--goods-price--refill--refill-price-num {
  font-weight: bold;
}

.block-order-regular-add-confirm--goods-refill-info {
  margin-top: 10px;
  padding-top: 4px;
  padding-left: 12px;
}

.block-order-regular-add-confirm--goods-refill-info--title {
  font-weight: bold;
  margin-bottom: 4px;
}

.block-order-regular-add-confirm--goods-refill-info--goods {
  padding: 4px;
}

.block-order-regular-add-confirm--goods-refill-info--goods-image {
  display: table-cell;
  vertical-align: top;
}

.block-order-regular-add-confirm--goods-refill-info--goods-image > figure {
  background: #f5f5f5;
  width: 80px;
  height: 80px;
}

.block-order-regular-add-confirm--goods-refill-info--goods-image > figure > img {
  width: 72px;
}

.block-order-regular-add-confirm--goods-refill-info--goods-description {
  padding-left: 10px;
  font-size: 12px;
  display: table-cell;
}

.block-order-regular-add-confirm--goods-refill-info--goods-name {
  font-weight: bold;
}

.block-order-regular-add-confirm--goods-refill-info--goods-price-qty {
  display: flex;
  justify-content: start;
}

/* ---- 明細追加完了 ---- */

.block-order-regular-add-complete--body {
  padding: 10px;
  text-align: center;
}

.block-order-regular-add-complete--wrapper,
.block-order-regular-add-complete--rules,
.block-order-regular-add-complete--home {
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

.block-order-regular-add-complete--home {
  margin-bottom: 0;
}

.block-order-regular-add-complete .block-accessory-list {
  margin-top: 0;
}

.block-order-regular-add-complete h1 {
  margin: -10px -10px 10px;
}

.block-order-regular-add-complete--message {
  margin: 10px;
}

.block-order-regular-add-complete--message p {
  padding: 10px;
}

.block-order-regular-add-complete table th {
  width: 40%;
}

.block-order-regular-add-complete--regular-sales {
  margin-bottom: 10px;
}

.block-order-regular-add-complete--home a {
  text-decoration: underline;
}

.block-order-regular-add-complete--cart p {
  font-size: 17px;
}

.block-order-regular-add-complete--cart span {
  color: #f00;
  font-weight: bold;
  font-size: 20px;
}

.block-order-regular-add-complete--cart a {
  text-decoration: underline;
}

.block-order-regular-add-complete--regular-sales td a {
  text-decoration: underline;
}
