@charset "UTF-8";
/*  letter-spacing: tracking(140); */
/*  @include l_h(14, 16.8);*/
.last_submit_btn_wrap {
  margin-top: 50px;
  margin-bottom: 20px;
}

.last_back_btn_wrap {
  margin-top: 0;
  margin-bottom: 120px;
}

.order_single_wrap .cancel_order_btn_wrap {
  margin-top: 50px;
  margin-bottom: -20px;
}
.order_single_wrap .cancel_order_btn_wrap button {
  appearance: none;
  font-size: 16px;
  width: 100%;
  max-width: 500px;
  height: 59px;
  border-radius: 100px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}
.order_single_wrap .cancel_order_btn_wrap button.cancel_btn {
  background-color: #fff;
  color: #25682b;
  border: 2px solid #25682b;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.order_single_wrap .cancel_order_btn_wrap button.cancel_btn:hover {
  opacity: 0.6;
}
.order_single_wrap .cancel_order_btn_wrap button.cancel_btn:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 14px;
  background: center/cover no-repeat url(../image/order/btn_cancel.svg);
}
.order_single_wrap .cancel_order_btn_wrap button.cancel_now_btn {
  color: #fff;
  background-color: #7f7f7f;
}
.order_single_wrap .cancel_order_btn_wrap button.cancelled_btn {
  color: #333333;
  background-color: #dbdbdb;
}
.order_single_wrap {
  /* ========================
   モーダルの基本スタイル
   ======================== */
}
.order_single_wrap .modal {
  display: none; /* 初期状態は非表示 */
}
.order_single_wrap {
  /* Javascriptが is-open クラスを付与したら表示 */
}
.order_single_wrap .modal.is-open {
  display: block;
}
.order_single_wrap {
  /* 背景の暗い部分 */
}
.order_single_wrap .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.order_single_wrap {
  /* モーダルの白い箱 */
}
.order_single_wrap .modal__container {
  background-color: #fff;
  padding: 50px;
  max-width: 560px;
  width: 100%;
}
.order_single_wrap .modal__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.order_single_wrap .modal__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.order_single_wrap .cancel_p1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.order_single_wrap .cancel_p2 {
  margin-top: 1em;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ff0000;
}
.order_single_wrap .modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
}
.order_single_wrap .modal__footer {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.order_single_wrap .modal__footer > * {
  width: 220px;
  height: 51px;
  border-radius: 100px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}
.order_single_wrap .modal__btn {
  color: #333333;
  background-color: #fff;
  border: 2px solid #333333;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.order_single_wrap .modal__btn:hover {
  opacity: 0.6;
}
.order_single_wrap .final_cancel_btn {
  background-color: #25682b;
  color: #fff;
  border: none;
}
.order_single_wrap .modal__title.is-hidden {
  display: none;
}
.order_single_wrap .cancel_p.is-hidden {
  display: none;
}
.order_single_wrap .modal__toggle_btn.is-hidden {
  display: none;
}
.order_single_wrap .modal__to_top_btn {
  color: #333333;
  background-color: #fff;
  border: 2px solid #333333;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.order_single_wrap .modal__to_top_btn:hover {
  opacity: 0.6;
}
.order_single_wrap {
  /* ========================
   ふんわり表示させるアニメーション
   ======================== */
}
.order_single_wrap .micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.order_single_wrap .micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.order_single_wrap .micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.order_single_wrap .micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.mypage_order_section .delivery_situation_wrap span {
  border: none;
  color: #fff;
  font-size: 16px;
  background-color: #ff1c05;
  font-weight: 600;
  width: 170px;
  height: 39px;
}
.mypage_order_section .delivery_situation_wrap span.delivered {
  background-color: #b38c62;
}
.mypage_order_section .delivery_situation_wrap span.canceling {
  background-color: #7f7f7f;
}
.mypage_order_section .delivery_situation_wrap span.canceled {
  background-color: #dbdbdb;
  color: #333333;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/