/*********************
ROOT
**********************/
:root {
  --base: #FFF;
  --bg-1: #F9FAF5;
  --bg-2: #ECEAE1;
  --text-main: #2E0F0A;

  --accent-color-1: #CEA704;
  --accent-color-2: #2E0F0A;

  --font-min: "Shippori Mincho", serif;
  --font-default: "Lato", sans-serif;
  --font-material: 'Material Icons Round';
  --light: 300;
  --normal: 400;
  --bold: 700;
  --spacing-wide: 0.1em;
  --spacing-medium: 0.05em;

  --container: calc(1920px + 6%);
  --container-side: 3%;
  --container-ll: 1600px;
  --container-l: 1400px;
  --container-m: 960px;
  --container-s: 660px;
  --container-ss: 480px;

}


.display-none {
  display: none;
}

/* 買い物を続ける・ご購入手続きボタン */
ul.btn-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 60px 0 60px;
}

ul.btn-list li.btn-item {
  width: 260px;
  height: 60px;
}

ul.btn-list li.btn-item a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  border: 1px solid #2E0F0A;
}

ul.btn-list li.btn-item.btn-next a {
  background-color: var(--accent-color-1);
  border: none;
  color: #fff;
  font-weight: 700;
}

.userBox div.bottom {
  padding: 1.5em;
}

@media screen and (max-width: 768px) {
  .userBox div.bottom {
    padding: 1em;
  }
}

/**************************************************************
1. カート
**************************************************************/
/* カートタイトル */
.cartNo-title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #ECEAE1;
  font-size: 16px;
  padding: 15px 1.5em;
}

.message-quantity{
  background: #FFF8E1;
  border: 1px solid var(--accent-color-1);
  border-radius: 4px;
  padding: .85em 1.85em;
  margin: .5em 0;
  color: #5a4400;
  font-weight: bold;
  font-size: .88em;
}

/* カートの中身 */
.productList {
  background: #FCFBF8;
  padding: 1.85em;
  margin-bottom: 40px;
}

/*カートに商品がありません*/
p.nocart-message {
  background-color: #FCFBF8;
  padding: 4em 0;
  text-align: center;
}

/**********************
 カート 上 ボックス
**********************/
.list .product:not(:first-child) {
  padding-top: 1.25em;
}

dl.productBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 1.25em;
  border-bottom: 1px solid #cccccc;
  gap: 3.5%;
}

dl.productBox dt img {
  width: 160px;
}

dl.productBox dd.productName {
  flex: 1;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  min-width: 200px;
}

.quantity {
  padding-top: 1.25em;
}

.fred {
  display: block;
  width: fit-content;
  line-height: 1.5em;
  padding-top: .5em;
  color: #c14f1d;
  text-align: left;
  font-size: 14px;
}

dl.productBox dd.PriceTaxQuantity {
  text-align: right;
  width: 200px;
}

dl.productBox dd.PriceTaxQuantity input[type=text] {
  margin-top: 0;
}

dl.productBox dd.PriceTaxQuantity p.taxRate {
  font-size: 0.88em;
  padding-top: .65em;
}

/* 数量を増やすボタンのCSS */
.btn-qty {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background: #F8F8F8;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
}

.btn-qty:disabled {
  color: #cccccc !important;
  cursor: not-allowed;
  /* 禁止マークのカーソル */
  border-color: #cccccc !important;
  background-color: inherit;
}

.qty-input {
  width: 50px !important;
  height: 40px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}


/**********************
 商品小計
**********************/
dl.productBox dd.subtotalBox {
  width: 100%;
  max-width: 240px;
  border-left: 1px solid #cccccc;
  padding-left: 2.5em;
  text-align: right;
}

dd.subtotalBox .subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 1.25em;
}

/* 後で買うボタン */
.btn-save-later {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 180px;
  background-color: #ffffff;
  color: #c14f1d;
  border: 2px solid #c14f1d;
  padding: 7px 0;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5em;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-save-later:hover {
  background-color: #c14f1d;
  color: #ffffff;
}

/* 処理中のボタンのスタイル */
.btn-save-later.is-processing {
  background-color: #cccccc;
  color: #999999;
  border: 2px solid #999999;
  cursor: wait;
  opacity: 0.7;
  padding: 5px 15px;
}

.btn-save-later:disabled {
  pointer-events: none;
}


/* 削除ボタン */
.delete .delete-btn {
  color: #2761EB;
  font-size: 1.4rem;
  border-bottom: 1px solid #2761EB;
}

.delete .delete-btn::before {
  content: "×";
  font-size: 2rem;
}


/**********************
カート 下ボックス
 *********************/
.subcartOrder {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 1.85em;
  gap: 1.85em;
}

.subcartOrder-left {
  flex: 1;
  max-width: 700px;
}

.subcartOrder-left>div:not(:last-child) {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 1.25em;
  margin-bottom: 1.25em;
}

.pointBox dt {
  margin-bottom: 10px;
  font-weight: 500;
}


.title-left-border {
  font-size: 1.15em;
  padding-left: .65em;
  margin-bottom: 1em;
}


/**********************
 ポイント
 *********************/
.pointBox input[type=text] {
  width: 160px;
  margin: 0 .25em;
}
.shipping-fee-caution {
  margin: 1em 0 0.5em;
  font-size: .65em;
  text-align: right;
}

.shipping-fee-label {
  white-space: nowrap;
  flex-shrink: 0;
}

.shipping-fee-amount {
  text-align: right;
}

@media screen and (min-width: 961px) {
.pointBox .fred {
  margin-left: 0;
}
}

/**********************
 クーポン
*********************/
.hgcCouponCodeInputArea dl {
  display: flex;
  align-items: center;
}

.hgcCouponCodeInputArea dl dt {
  margin-right: 15px;
}

.couponBox .boxbtm span {
  font-weight: 500;
}

[id*="rblCouponInputMethod"] {
  border: none;
  margin-bottom: 10px;
}

[id*="rblCouponInputMethod"] td:first-child {
  display: none;
}

[id*="rblCouponInputMethod"] input[type="radio"] {
  display: none;
}

[id*="rblCouponInputMethod"] label {
  padding-left: 0 !important;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  cursor: default;
  display: none;
}

[id*="rblCouponInputMethod"] label::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: var(--accent-color-1);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}


/* ポップアップ */
.hgcCouponBox {
  position: fixed;
  z-index: 1201;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(128, 128, 128, 0.75);
}

#hgcCouponList {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 800px;
  height: 80vh;
  max-height: 600px;
  padding: 2.5em;
  background: #fff;
  z-index: 1202;
}

#hgcCouponList h2 {
  font-weight: bold;
  position: relative;
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.25em;
}

#hgcCouponList h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #CEA704;

}

.couponBoxInner {
  height: 83%;
  overflow: auto;

}

.couponUse {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 10px 0;
  border-radius: 4px;
  background: #CEA704;
  color: #ffffff;
  margin: 15px auto;
}

.couponClose {
  width: 100%;
  height: 3.5em;
  line-height: 3.5em;
  display: block;
  text-align: center;
  z-index: 3;
}

.couponClose a {
  border-bottom: 1px solid var(--accent-color-2);
}

.couponClose a::before {
  content: "×";
  font-size: 2rem;

}

ul.coupon-list {
  padding-top: 1.25em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2.5em;
}

ul.coupon-list li.coupon-list-item h3 {
  text-align: left;
}

ul.coupon-list li.coupon-list-item ul.coupon-detail-list {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  gap: 4px;
}

ul.coupon-list li.coupon-list-item ul.coupon-detail-list li {
  display: flex;
}

ul.coupon-list li.coupon-list-item ul.coupon-detail-list dt,
ul.coupon-list li.coupon-list-item ul.coupon-detail-list dd {
  padding: .5em;
}

ul.coupon-list li.coupon-list-item ul.coupon-detail-list dt {
  width: 200px;
  background-color: #F3ECD0;
}

ul.coupon-list li.coupon-list-item ul.coupon-detail-list dd {
  flex: 1;
  background-color: #F9F7EE;
}

.couponBoxButton {
  background: #2E0F0A;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
}

.couponBoxButton::before {
  content: "＋";
}


/* ノベルティ */
#dvRecommend h3 {
  font-family: "Shippori Mincho", serif;
}

#dvRecommend .listProduct {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 1em;
  gap: 2em 1em;
}

#dvRecommend .listProduct .glbPlist {
  width: 47%;
  min-width: 120px;
  max-width: 160px !important;
  font-size: 0.88em;
}

#dvRecommend .listProduct .glbPlist img {
  width: 100%;
  height: auto;
}

#dvRecommend .productInfoBlock {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#dvRecommend .productInfoBlock .name {
  flex: 1;
}

/* 常温便（shipping_type="001"）のカートにはノベルティを出力しない */
.novelty-target[data-shipping-type="001"] {
  display: none;
}

.novelty-target .novelty-quantity {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.6em;
}

.novelty-target .icon {
  display: none;
}

.novelty-target .name {
  margin-top: 0.5em;
}

.novelty-target .novelty-quantity .mypage-select {
  padding: .2em 24px .2em .5em;
}

.novelty-target .novelty-quantity label {
  white-space: nowrap;
}

.novelty-target .btn-novelty-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.6em;
  padding: 0.5em 0;
  background-color: #CEA704;
  color: #ffffff;
  font-size: 1.15em;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
}

.novelty-target .btn-novelty-add:hover {
  background-color: #b89203;
}


/* 小計・合計 */
.priceList {
  background-color: #ffffff;
  padding: 1.25em;
  border-radius: 5px;
  border: 1px solid #cccccc;
  width: 100%;
  max-width: 360px;
}

.priceList dl {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
}

.priceList dl dt,
.priceList dl dd {
  padding: 0.85em 0;
}

/* 合計 */
.priceList dl.result {
  border-bottom: none;
}

.result dt {
  font-size: 2rem;
  padding: 0;
}

.result dd {
  font-size: 2.4rem;
  padding: 0;
}


/* 総合計 */
.sum {
  background: #ECEAE1;
  display: flex;
  justify-content: space-between;
  padding: 3%;
}

.sum span,
.sum strong {
  font-size: 3.2rem;
  font-weight: bold;
}


@media screen and (max-width: 960px) {
  ul.btn-list {
    padding: 40px 0 40px;
  }

  .productList {
    padding: 1.25em;
  }

  dl.productBox dt img {
    width: 140px;
  }

  dl.productBox dd.subtotalBox {
    border-left: none;
    padding-left: 0;
    margin-left: auto;
    border-top: 1px solid #ccc;
    padding-top: 1.25em;
    margin-top: 1.25em;
    max-width: 280px;
  }

  .subcartOrder {
    display: block;
  }

  .subcartOrder-left {
    max-width: none;
  }

  .priceList {
    max-width: none;
    margin-top: 1.25em;
  }

  .sum span,
  .sum strong {
    font-size: 2.4rem;
  }

}

@media screen and (max-width: 768px) {
  ul.btn-list li.btn-item {
    flex: 1;
    width: 100%;
    max-width: 200px;
    height: 50px;
  }

  ul.btn-list li.btn-item a {
    font-size: 14px;
  }

  dl.productBox dd.productName {
    min-width: none;
  }

  dl.productBox dd.PriceTaxQuantity {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
  }

  ul.coupon-list {
    padding-top: 0;
    display: flex;
    gap: 20px;
  }

  ul.coupon-list li.coupon-list-item ul.coupon-detail-list dt {
    width: 100%;
  }

  ul.coupon-list li.coupon-list-item ul.coupon-detail-list li {
    display: block;
  }

  #hgcCouponList {
    padding: 1.25em;
  }
}


@media screen and (max-width: 560px) {
  .cartNo-title {
    padding: 10px 1em;
  }

  .productList {
    padding: 1em;
  }

  dl.productBox dt img {
    width: clamp(80px, 21.2vw, 120px);
  }


  dl.productBox dd.PriceTaxQuantity {
    width: calc(100% - clamp(80px, 21.2vw, 120px) - 10px);
  }

  dl.productBox dd.subtotalBox {
    width: 100%;
  }

  .btn-save-later {
    max-width: 140px;
    font-size: 12px;
  }

  .priceList {
    padding: .77em;
  }

  .priceList dl.result dt,
  .priceList dl.result dd {
    font-size: 2rem;
  }

}

/**************************************************************
2. お届け先
**************************************************************/
.is-hidden {
    display: none !important;
}
.shippingWrapper{
  margin: 60px 0;
}
table.formTable{
	border-collapse: separate;
	border-spacing: 0 10px;
	width:100%;
}
.mypage-select.long {
  max-width: none;
  margin-top: 0.5em;
}
.shippingSelectBox{
	margin-bottom:4rem;
}
/* 注文者情報 */
.orderInfoPannel{
  padding: 1.5em;
  background: #f7f4e8;
  border: 1px solid var(--accent-color-1);
}

.easyUserText {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1em;
}

.easyUserText p {
  flex: 1;
}
.easyUserText p.easyUser {
    color: #cf4104;
    background-color: #feff80;
    border: 1px solid #cf4104;
    padding: .5em;
}

.toggle-btn {
    position: relative;
    padding: .25em 2.25em .25em 1.25em;
    border-radius: 999px;
    background: #2E0F0A;
    color: #fff;
}

.toggle-btn::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    transition: all ease .4s;
}

.toggle-btn.is-active::after {
    transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 768px) {
  .shippingWrapper{
				margin-bottom:0;
			}
  .orderInfoPannel {
    padding: 1em;
}
  .easyUserText {
    flex-direction: column;
}
  .toggle-btn {
    max-width: 280px;
    margin: auto;
}
}

/* 注文者情報変更 */
.userBox {
  background: #f7f4e8;
  margin-bottom: 60px;
  border-left: 1px solid var(--accent-color-1);
  border-right: 1px solid var(--accent-color-1);
  border-bottom: 1px solid var(--accent-color-1);
}
.userSelect{
margin-bottom:4rem;
}
.table.formTable input[type=name] {
  max-width: 340px;
}
.address-search {
    background-color: #2E0F0A;
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    padding: .25em 1em;
    margin-left: 10px;
    text-decoration: none !important;
}
/* 注文者情報ボックス側の.submainだけに適用（.submainはページ内の別箇所でも使われる共通クラスのため） */
#CartList > .main > .submain{
	margin-bottom:-30px;
}
/* 共通CSS(mypage.css)の #ctl00_ContentPlaceHolder1_upUpdatePanel{padding-top:40px;} が
   注文者情報ボックスと入力フォームの間に隙間を作っていたため、このページだけ打ち消す */
#ctl00_ContentPlaceHolder1_upUpdatePanel{
	padding-top:0;
}

/* 注文者情報：会員情報不足 or 非ログイン(ゲスト)の場合のみ、
   本来 IsEasyUser / else(ゲスト) 分岐でインライン<style>出力されていたルール。
   .orderInfoPannel.force-content-visible は同分岐でのみ付与される(OrderShippingSelect.aspx側)。 */
.orderInfoPannel.force-content-visible .js-content-target{
	display:block !important;
}

@media screen and (max-width: 960px) {
  #ctl00_ContentPlaceHolder1_upUpdatePanel{
	padding-top:0px;
}
}
@media screen and (max-width: 768px) {
  .userBox {
    padding: 0em;
  }
}

@media screen and (max-width: 560px) {
  .address-search {
    font-size: 12px;
    padding: 4px 12px;
    margin-left: 4px;
}
}

/* カート */
.cartBox {
  padding: 1.5em;
  background:#FCFBF8;
}
.cartNoTitle{
  display:flex;
  align-items: center;
  padding: .25em 1.5em;
	background: var(--accent-color-1);
	color:#fff;
	font-weight:bold;
}

/* 配送先の中身 */
section.shippingInfomation{
	width: 46%;
	margin-right:4%;
}
.cartNoTitle img{
	width: 24px;
}
.delete .shipping-delete-btn {
	color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cartNoTitle .delete{
	margin-left: auto;
  font-size: 0.88em;
}
.shipping-wrap{
  display:flex;
  flex-wrap:wrap;
  margin-bottom:60px;
  padding: 1.5em;
  border: 2px solid var(--accent-color-1);
  background: #faf8f1;
}
.shipping-item:nth-of-type(even) .cartNoTitle {
  background-color: #95a05b;
}
.shipping-item:nth-of-type(even) .shipping-wrap {
  border: 2px solid #95a05b;
  background-color: #f8f9f6;
}
.shipping-item:nth-of-type(even) .userList div.subbox p {
  padding: 11px 15px;
  background-color: #e7eae1;
}
.shipping-item:nth-of-type(even) .title-left-border {
  border-left: 6px double #95a05b;
}
.shipping-item:nth-of-type(even) input:focus,
.shipping-item:nth-of-type(even) select:focus,
.shipping-item:nth-of-type(even) textarea:focus {
    border: 2px solid #95a05b;
}
.shipping-item:nth-of-type(even) .checkBox input:checked+label::before {
    background-color: #95a05b;
    border: 1px solid #95a05b;
}
.shipping-item:nth-of-type(even) .userList div.subbox .radioBtn input:checked+label::before {
  border-color: #95a05b;
}
.shipping-item:nth-of-type(even) .userList div.subbox .radioBtn input:checked+label::after {
    background-color: #95a05b;
}

@media screen and (max-width: 768px) {
  .shipping-wrap {
    padding: .88em;
    margin-bottom: 0;
  }
}

/* 配送先の中身 - 送り主・お届け先 */
.subbox br {
  display: none;
}
.subbox span {
  display: block;
}
.noshi-copy{
	background: #2b1108;
	color: #fff;
	padding: .25em 1em;
	border-radius: 999px;
	margin-top: 1em;
	display: inline-block;
}
.sender-selector tr{
	display: flex;
  flex-direction: column;
	gap: .5em;
}
.divShippingDisp{
	background:#ffffff;
	padding: 1em;
  margin-top: 0.5em;
}
.divShippingDisp p{
	font-weight: bold;
	font-size: 1.15em;
	margin-bottom: .5em;
}
.shippingAddressInfo{
	display: flex;
	margin-bottom: 0.25em;
	flex-wrap: wrap;
}
.deliveryDateTime dl dt{
	margin-top: 1em;
}
input[type=tel].input-short{
	width:120px;
}
.shippingDateSelect{
	margin-bottom:4rem;
}
@media screen and (max-width: 768px) {
  .cartBox {
    padding: 0;
}
}
/* 配送先の中身 - 定期便 */
dl.fixedDerivaryDate{
	display:flex;
	flex-wrap:wrap;
  gap: .25em;
	margin-top:15px;
}
.shipping-pattern-list dl.pattern-select dt {
    display: flex;
    padding: 10px 0 15px 0;
}
.shipping-pattern-list dl.pattern-select dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  gap: 5px;
  font-size: 14px;
}
.shipping-pattern-list .mypage-select.short {
  width: 80px;
}
.first-day-title {
  color: #CF4104;
}
.fixedDerivaryDate dt{
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 210px;
  background-color: #efebe0;
  padding: 8px;
}
.fixedDerivaryDate dd {
  flex: 1;
}
.fixedDerivaryDate dd span {
  display: block;
  width: 100%;
  min-width: 210px;
  text-align: center;
  padding: .5em 1em;
  background: #ffffff;
  font-size: 1.6rem;
}
.fixedDerivaryDate dd .mypage-select {
  min-width: 210px;
  max-width: none;
  text-align: center;
  margin-top: 0;
}
.fixedDerivaryDateMessage,
.companyNameText {
  margin-top:5px;
}

.companyNameText {
    display: inline-block;
    font-size: 14px;
    text-indent: -1.3em;
    padding-left: 1em;
    line-height: 1.5em;
    padding-top: 4px;
}

.fixedDerivaryDateMessage,
.zipText,
.billText {
	font-size:1.4rem;
}
@media screen and (max-width: 768px) {
  section.shipping-wrap section.shippingInfomation{
		width:100%;
		margin-right:0;
		margin-bottom:4rem;
	}
	section.shipping-wrap section.shippingProductInfo{
		width:100%;
		margin-bottom:4rem;
	}
  .fixedDerivaryDateMessage,
.companyNameText,
.zipText,
.billText{
		font-size:1.2rem;
	}
}

/* 配送先の中身 - 商品情報 */
.singleProduct:not(:first-of-type) {
  padding-top: 1em;
  margin-top: 1em;
  border-top: 1px solid var(--bg-2);
}
.singleProduct dl {
  display:flex !important;
  flex-wrap: wrap;
}
.singleProduct dl dt{
  margin-right:15px;
}
.singleProduct dl dt a img {
  width:120px;
}
.singleProduct dl dd {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  flex: 1;
}
.singleProduct dl dd .name {
  font-family:"Shippori Mincho",serif;
	text-decoration:none;
	font-size:1.15em;
}
.productPrice .price{
  font-size:1.15em;
}
.quantityControl span{
	display:flex;
}
.quantityControl span>a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantityControl input[type=text] {
    width: 70px;
    height: auto;
    padding: 0;
    margin: 0 .15em;
    text-align: center;
}

/* 新しい配送先を追加 */
.add-shipping-container {
    position: relative;
    text-align: center;
    margin: 30px 0;
    z-index: 1;
    overflow: hidden;
}
.add-shipping-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #2E0F0A;
    transform: translateY(-50%);
    z-index: -1;
}
.add-shipping-button {
    display: inline-block;
    position: relative;
    padding: 12px 30px 12px 50px;
    background-color: #2E0F0A;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-size: 1.8rem;
    line-height: 1;
    font-family: sans-serif;
}
.add-shipping-button::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: center;
    background-size:
        12px 2px,
        2px 12px;
}
.add-shipping-button:hover {
  background-color: #6d4d48;
    opacity: 1;
}
.add-shipping-button {
		margin: 0 0 5px 21px;
	}

/* ご注文メモ・ご注文内容 */
.cart-bottom {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.cart-bottom .priceList {
  max-width: none;
}
section.shippingProductInfo{
	width:50%;
	position: relative;
}
textarea{
	width:100% !important;
	height:200px !important;
}
@media screen and (max-width: 768px) {
  .cart-bottom {
    flex-direction: column;
    gap: 2em;
    padding: 2em 1em 4em;
    margin-bottom: 0;
}
section.shippingInfomation {
    width: 100%;
    margin-right: 0;
}
section.shippingProductInfo {
    width: 100%;
}
.add-shipping-button {
    font-size: 1.6rem;
}
}

/* ボタン付近注意書き */
.btn-message {
	max-width: 530px;
    margin: auto;
    background-color: #fcfbf8;
    padding: 1em;
    color: #cf4104;
}
.btn-message.top {
	margin-bottom: 60px;
}
.btn-message p {
	position: relative;
	padding-left: 1.5em;
}
.btn-message p::before {
	position: absolute;
	top: 4px;
	left: 0;
    content: "";
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-image: url(/Contents/ImagesPkg/common/guide/delivery/exclamation.svg);
    background-size: cover;
    background-color: inherit;
}
@media screen and (max-width: 960px) {
	.btn-message.top {
	margin-bottom: 40px;
}
}

/**************************************************************
3. お支払い情報
**************************************************************/
.payment-main .shipping-wrap {
  border: none;
  background: #FCFBF8;
}
.orderBox.payment {
  margin-bottom: 4rem;
}
.divCreditCardNoToken {
  margin-top: 0.5em;
  margin-bottom: 1em;
  padding: 1em;
  background: #fff;
}
.divCreditCardNoToken .mypage-select.long {
  margin-top: 0;
}
.payment-main strong {
  display: inline-block;
  margin-bottom: 0.5em;
}
.orderBox.payment dd {
  margin-left: 1.5em;
}
.orderBox.payment dl.list dt:not(:first-of-type) {
  margin-top: 1.5em;
}
.orderBox.payment dl.list .CreditCardDisp {
  margin-top: 0.5em;
}
.orderBox.payment dl.list .CreditCardDisp p {
  margin-bottom: 0.65em;
}
.orderBox.payment .credit-name {
  margin-left: 2em;
}
.orderBox.payment .credit-name strong {
  margin-top: .5em;
}
.payment-main .priceList {
  margin-top: 2em;
  margin-left: auto;
  max-width: none;
}
.columnRight .receipt-detail {
  display: flex;
  flex-direction: column;
  gap: .25em;
  margin-top: 0.5em;
  margin-left: 1.5em;
}
.payment-main .sumBox,
.confirm-main .sumBox {
    background: #ECEAE1;
    padding: 2em 4em;
}
.payment-main .subSumBox p,
.confirm-main .subSumBox p {
    display: flex;
    justify-content: space-between;
}
.payment-main .sumBox dl,
.confirm-main  .sumBox dl{
	display:flex;
	justify-content: flex-end;
}
.payment-main .sumBox dl:after,
.confirm-main .sumBox dl:after{
  display:none;
}
.payment-main .sumBox dl dt,
.confirm-main .sumBox dl dt {
  font-weight: var(--normal);
}
.payment-main .sumBox strong,
.confirm-main .sumBox strong {
  margin-bottom: 0;
}
.payment-main .subSumBox p,
.confirm-main .subSumBox p{
	display:flex;
	justify-content: space-between;
}
.payment-main .subSumBox p::after,
.confirm-main .subSumBox p::after{
	display:none;
}
.payment-main .subSumBox p span,
.payment-main .subSumBox p strong,
.confirm-main .subSumBox p span,
.confirm-main .subSumBox p strong{
	font-size:2em;
	font-weight:bold;
}
dl.list {
  margin-top: 0.5em;
}
.payment-main .point-coupon-wrap {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 2em;
}
.payment-main .point-coupon-wrap .pointBox .checkBox {
  margin-top: 0.5em;
}
.payment-main .point-coupon-wrap .couponBox h4 {
  margin-top: 1em;
}

.payment-main .btn-cart {
  width: fit-content;
  display: block;
  background-color: var(--accent-color-2);
  color: #fff;
  padding: 0.5em 1.5em;
  border-radius: 4px;
}
.payment-main .point-coupon-wrap .couponBox dl {
    display: flex;
    align-items: center;
    gap: .5em;
    margin-top: 1em;
}
/* 再入力ボタン */
a#ctl00_ContentPlaceHolder1_rCartList_ctl00_rPayment_ctl00_lbEditCreditCardNoForToken {
    display: inline-block;
    background-color: var(--accent-color-2);
    color: #fff;
    padding: 0.5em 1.5em;
    margin-left: .5em;
    border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .payment-main strong {
    margin-bottom: 0;
  }
  .payment-main .sumBox,
  .confirm-main .sumBox {
    background: #ECEAE1;
    padding: 1em 2em;
  }
  .receipt-detail input[type=text] {
    margin-top: 0;
  }
  .payment-main .btn-cart {
    margin-left: auto;
  }
}
@media screen and (max-width: 560px) {
  .payment-main .sumBox,
  .confirm-main .sumBox {
    padding: .88em;
  }
  .payment-main .subSumBox p span,
  .payment-main .subSumBox p strong,
  .confirm-main .subSumBox p span,
  .confirm-main .subSumBox p strong {
    font-size: 1.5em;
  }
}

/**************************************************************
4. ご注文内容の確認
**************************************************************/
.confirm-main .btn_change a {
  margin: auto;
}
.confirm-main .btn_change a {
  display: block;
	width: 140px;
	color:#ffffff;
	text-align:center;
	border-radius: 999px;
  padding: .25em 1em;
	background:var(--accent-color-2);
}
.confirm-main .userInfomationText{
	flex: 1;
}
.confirm-main .userInfoBox {
    border: 1px solid #CEA704;
    background: #ffffff;
    margin-bottom: 2.5em;
    padding: 1.5em;
    width: 100%;
}
.confirm-main .confirm-top {
  margin-bottom:60px;
}
.confirm-main .confirm-top .shippingProductInfo{
	width:50%;
	position: relative;
}
.confirm-main .cartBox {
  margin-bottom: 60px;
}
.confirm-main .userInfoBox .userInfomationBox {
  display: flex;
  gap: 1em;
  padding-bottom: 0;
}
.confirm-main .confirm-top .wrap {
	display:flex;
  margin-bottom: 2em;
  gap: 1em;
}
.confirm-main .confirm-top .priceList {
  max-width: none;
}
.confirm-main .confirm-top .shippingInfomation {
  width: 50%;
}
.confirm-main .shipping-wrap {
  display: block;
}
.confirm-main .userInfomationBox {
  padding-bottom: 2em;
}
.confirm-main .userInfomationBox.line {
  padding-top: 2em;
  border-top: 1px solid var(--bg-2);
}
.confirm-main .userInfomationBox .wrap {
  display: flex;
  gap: 1em;
}
.confirm-main .userInfomationBox .singleProduct:not(:first-of-type) {
  padding-top: 0;
  border: none;
}
@media screen and (max-width: 768px) {
  .confirm-main .confirm-top {
    padding: 1em 1em 0;
  }
  .confirm-main .confirm-top .wrap {
    flex-direction: column;
  }
  .confirm-main .last {
    padding: 0 1em;
  }
  .confirm-main .userInfoBox {
    padding: 1em;
}
  .confirm-main .userInfoBox .userInfomationBox {
    flex-direction: column;
  }
  .confirm-main .userInfomationBox .wrap {
    flex-direction: column;
  }
  .confirm-main .confirm-top .shippingInfomation {
    width: 100%;
    margin-bottom: 0;
  }
  .confirm-main .confirm-top .shippingProductInfo {
    width: 100%;
  }
  .confirm-main .confirm-top .shippingProductInfo .priceList {
    margin-top: 0;
  }
}

/* 定期配送 */
.confirm-main .shipping-infomation {
  display: flex;
}
.confirm-main .deliverydate dt {
    font-weight: 700;
}
.confirm-main h3.fixedOrderTitle {
  font-weight:bold;
  position: relative;
  padding-left: 1em;
}
.confirm-main h3.fixedOrderTitle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: .5em;
  height: .5em;
  background-color: var(--accent-color-1);
}
.confirm-main .sbscriction .block + .block {
  padding-top: .5em;
  margin-top: .5em;
  border-top: 1px solid var(--bg-2);
}
.confirm-main .sbscriction-wrap{
	display:grid;
	grid-template-columns: 120px auto;
	column-gap: 1em;
	row-gap: 1em;
	align-items: start;
}
.confirm-main .sbscriction-wrap .sbscriction.name dl dd strong {
  display: block;
	font-family:"Shippori Mincho",serif;
	font-weight:500;
  padding-bottom: 0.5em;
}
.confirm-main .sbscriction-wrap .fixedPurchasePriceList{
	grid-column: 1/-1;
	margin-top: .5em;
}
.confirm-main .sbscriction-wrap .result {
  margin-top: 0.5em;
}
.confirm-main .sbscriction-wrap dl.result.userInfomation dt,
.confirm-main .sbscriction-wrap dl.result.userInfomation dd {
	font-size:1em;
}
.confirm-main dl.userInfomation,
.confirm-main dl.userInfomation span{
	display:flex !important;
	flex-wrap:wrap;
	padding-bottom:1px;
}
.confirm-main dl.userInfomation dt,
.confirm-main dl.userInfomation span dt{
	float:none;
	width:auto;
	font-weight:500;
}
.confirm-main .deliverydate {
  margin: .5em 0;
}
.confirm-main .fixedtotal {
  display: flex;
  gap: 2em;
  margin-top: 2em;
  font-size: 1.25em;
}
.confirm-main .fixedtotal .fixedPurchasePriceList .result {
  display: flex;
}
.confirm-main .fixedtotal .fixedPurchasePriceList .result dt,
.confirm-main .fixedtotal .fixedPurchasePriceList .result dd {
  font-size: 1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .confirm-main .shipping-infomation {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .confirm-main .fixedtotal {
    flex-direction: column;
    gap: 0;
}
}
/* レコメンド：【舟納豆倶楽部】15本コース */
.subscription-upsell {
  margin: 60px 0;
  border: 2px solid #f16334;
  background-color: #fbf6f4;
  padding: 1.85em;
  text-align: center;
}
.subscription-upsell a {
  display: block;
  margin: 1em auto 0;
  width: fit-content;
}
.subscription-upsell a img {
  width: 100%;
  max-width: 300px;
}
.subscription-upsell h3 {
  font-weight: 700;
  font-size: 1.25em;
  text-align: center;
  padding-bottom: .5em;
  margin-bottom: 1em;
  position: relative;
  color: #f16334;
}

.subscription-upsell h3::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #f16334;
}
@media screen and (max-width: 768px) {
  .subscription-upsell a img {
    max-width: 160px;
}
}

/**************************************************************
5. 注文完了
**************************************************************/
.orderComplete .cartstep{
  padding-top:60px;
}
.orderComplete .mypage-title {
  padding-bottom: 0;
}
.orderComplete .mypage-title:after{
		display:none;
}
.orderComplete .complete-text{
	text-align:center;
  margin: 3.5em 0;
}
.orderComplete .completeContact {
    border: 1px solid #CEA704;
    text-align: center;
    padding: 1.5em;
}
.orderComplete .completeContact h3 {
    font-weight: bold;
    font-size: 1.25em;
}
.orderComplete .completeContact p.tel{
	font-size: 1.25em;
  margin-top: .5em;
}
.completeContact a.button{
  display: block;
  width: fit-content;
	background:var(--accent-color-2);
	color:#fff;
	border-radius:999px;
	padding: .25em 1em;
  margin: .5em auto 0;

}
.orderComplete .attention-wrap{
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin-top: 3.5em;
}
.orderComplete .attention-top h3{
	background:#CF4104;
	color:#fff;
	display:inline-block;
	padding:.25em 1em;
}
.orderComplete .attention-top .payment-notice-box{
	border:1px solid #cf4104;
	padding:1em;
}
.orderComplete .attention-top p{
	font-size:.88em;
}
.orderComplete .attention-top .payment-notice-box table{
  width:100%;
	border-collapse:collapse;
	margin-top:1em;
	border-top:1px solid var(--bg-2);
	font-size:0.8em;
}
.orderComplete .attention-top .payment-notice-box table td,
.orderComplete dl.userInfomation table td{
  padding: .25em 0;
	vertical-align:top;
}
.orderComplete .attention-top .payment-notice-box table td:nth-child(2),
.orderComplete dl.userInfomation table td:nth-child(2) {
  padding: 0 .5em;
}
.orderComplete .attention-top .payment-notice-box table tr:first-of-type td {
  padding-top: 1em;
}
.orderComplete .attention-top .payment-notice-box p:empty{
	display:none;
}
.orderComplete .attention-top .payment-notice-box table a,
.orderComplete dl.userInfomation table a{
	display:inline-block;
	background:var(--accent-color-2);
	color:#fff;
	padding:.25em 1.5em;
	border-radius:999px;
}
.orderComplete dl.userInfomation {
    width: 100% !important;
}
.orderComplete .product:not(:first-of-type) .singleProduct {
    padding-top: 1em;
    margin-top: 1em;
    border-top: 1px solid var(--bg-2);
}
.orderComplete .userOrderNumber {
    border-bottom: 1px solid var(--bg-2);
    margin-bottom: 2em;
    padding-bottom: 2em;
}
.orderComplete.confirm-main {
  margin-top: 4em;
  background-color: #FCFBF8;
}
.orderComplete.confirm-main .confirm-top {
  margin-bottom: 0;
}
.orderComplete.confirm-main .cartBox {
  margin-bottom: 0;
}
.orderComplete .singleProduct dl dd:nth-child(3) {
  flex: auto;
  width: 100%;
}
.orderComplete .cart-summary-start{
	padding-top:2rem;
}
.orderComplete .cart-summary-box{
	background:#FCFBF8;
	padding:0 1.5em 1.5em;
}
.orderComplete .completeBox{
  margin-bottom:4rem;
}
.orderComplete .cart-summary-receipt-title{
	margin-top: 2.5rem;
}
.orderComplete .cart-empty-summary{
	display:none;
}
.orderComplete .login-false-message p {
  width: fit-content;
  margin: auto;
}
.orderComplete .payment-error-message .error_inline {
  width: fit-content;
  margin: 1em auto 0;
}
.orderComplete .login-false-message a,
.orderComplete .payment-error-message a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    letter-spacing: 0.1em;
    border-radius: 4px;
    width: 260px;
    height: 60px;
    margin: 1em auto 0;
  }
  .orderComplete .login-false-message a {
  background-color: var(--accent-color-2);
  color: #fff;
  }
  .orderComplete .payment-error-message a {
    border: 1px solid var(--accent-color-2);
  }
@media screen and (max-width: 768px) {
  .orderComplete .complete-text {
    margin: 2em 0;
  }
  .orderComplete .userOrderNumber {
    padding: 1em 1em 1em;
  }
  .orderComplete .completeBox{
    padding: 0 1em 1em;
  }
  .orderComplete .shipping-wrap .completeBox {
    padding: 0;
  }
  .orderComplete .order-memo {
    padding: 0 1em;
    margin: 1.5em 0;
  }
  .orderComplete .login-false-message a,
  .orderComplete .payment-error-message a {
    font-size: 16px;
    width: 220px;
    height: 50px;
}
}
@media screen and (max-width: 560px) {
  .orderComplete .attention-top p {
    font-size: 1em;
}
.orderComplete .attention-top .payment-notice-box table {
    font-size: 1em;
}
.orderComplete .attention-top .payment-notice-box table td,
.orderComplete dl.userInfomation table td {
    padding: 4px 0;
}
.orderComplete .box {
    padding: 0;
}
.orderComplete dl.userInfomation a {
    display: inline-block;
    background: var(--accent-color-2);
    color: #fff;
    padding: .25em 1.5em;
    border-radius: 999px;
}
}