@charset "UTF-8";
/*
===========================================================

  - Common
  - パンくず
  - フォーム
  - フォームサイズ
  - ページタイトル
  - 見出し大
  - 見出し中
  - 見出し小
  - チェックボックス
  - ラジオボタン
  - テキストボックス
  - セレクトボックス
  - お知らせ
  - 注意書き
  - ボタン
  - 削除ボタン
  - 離脱考慮のため追従ヘッダー未使用
  - カート
  - 顧客情報確認
  - 金額

===========================================================
*/
/*==========================
Common
==========================*/
#Wrap {
  overflow-x: hidden;
}

a:hover {
  opacity: 0.8;
  transition: all 0.2s;
  text-decoration: none;
}

::-moz-placeholder {
  color: rgba(41, 37, 37, 0.3);
}

:-ms-input-placeholder {
  color: rgba(41, 37, 37, 0.3);
}

::placeholder {
  color: rgba(41, 37, 37, 0.3);
}

input, select {
  color: var(--color-font);
  font-size: 14px;
}

input[type=text],
input[type=email],
input[type=tel],
select, option {
  font-family: var(--font-main);
}

input[type=checkbox] {
  cursor: pointer;
}

.form_errorInput {
  background-color: var(--color-bg-2) !important;
  border: 1px solid var(--color-lightRed) !important;
}

.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}

.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}

.flex_column {
  flex-direction: column;
}

.flex_row {
  flex-direction: row;
}

.error_inline:empty {
  display: none !important;
}

/*==========================
パンくず
==========================*/
.breadcrumbs ol {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 15px 0;
}
.breadcrumbs ol li {
  font-size: 12px;
  line-height: 1;
  position: relative;
}
.breadcrumbs ol li:not(:last-of-type) {
  padding-right: 20px;
}
.breadcrumbs ol li:not(:last-of-type)::after {
  content: ">";
  color: var(--color-gray);
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}
.breadcrumbs ol li a {
  color: var(--color-gray);
}

/*==========================
フォーム
==========================*/
.formInput_blk.flex_column > dt.form_minTitle._01 {
  margin: 20px 0 5px;
}
.formInput_blk.flex_column > dt.form_minTitle:empty {
  display: none;
}
.formInput_blk.flex_row {
  display: flex;
  align-items: center;
}
.formInput_blk.flex_row > dt {
  width: 210px;
  margin-right: 30px;
}
.formInput_blk.flex_row > dd {
  width: 760px;
}

.formTable .formInput_blk:nth-of-type(n+2) {
  margin-top: 25px;
}
.formTable .form_linking {
  margin-top: 10px !important;
}
.formTable .text_linking {
  margin-top: 0 !important;
}

/*==========================
フォームサイズ
==========================*/
input[type=text]._maxWidth,
input[type=email]._maxWidth,
input[type=tel]._maxWidth,
textarea._maxWidth {
  width: 100%;
}
input[type=text]._width110,
input[type=email]._width110,
input[type=tel]._width110,
textarea._width110 {
  width: 110px;
}
input[type=text]._width119,
input[type=email]._width119,
input[type=tel]._width119,
textarea._width119 {
  width: 119px;
}
input[type=text]._width140,
input[type=email]._width140,
input[type=tel]._width140,
textarea._width140 {
  width: 140px;
}
input[type=text]._width169,
input[type=email]._width169,
input[type=tel]._width169,
textarea._width169 {
  width: 169px;
}
input[type=text]._width318,
input[type=email]._width318,
input[type=tel]._width318,
textarea._width318 {
  width: 318px;
}

.form_selectBox > div._maxWidth {
  width: 100%;
}
.form_selectBox > div._width110 {
  width: 110px;
}
.form_selectBox > div._width119 {
  width: 119px;
}
.form_selectBox > div._width140 {
  width: 140px;
}
.form_selectBox > div._width169 {
  width: 169px;
}
.form_selectBox > div._width318 {
  width: 318px;
}

/*==========================
ページタイトル
==========================*/
.pageTitleHead {
  padding-top: 20px;
}
.pageTitleHead > .form_title {
  margin-bottom: 45px;
  color: var(--color-font);
  text-align: center;
}
.pageTitleHead > .form_title > span {
  display: block;
}
.pageTitleHead > .form_title > span:nth-of-type(1) {
  font-family: var(--font-baskerville);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.pageTitleHead > .form_title > span:nth-of-type(2) {
  margin-top: 20px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.15em;
}
.pageTitleHead > .cartflow_textBox {
  display: flex;
  justify-content: space-between;
}
.pageTitleHead > .cartflow_textBox > .leadTxt {
  font-family: var(--font-main);
  font-size: 14px;
  font-family: 300;
  line-height: 1.71428571;
  letter-spacing: 0.1em;
}
.pageTitleHead > .cartflow_textBox > img {
  display: block;
  width: 280px;
  margin-left: 30px;
}

/*==========================
見出し大
==========================*/
.form_sectionTitle {
  margin-top: 60px;
  padding: 7.5px 18px;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: var(--color-main);
}
.form_sectionTitle._first {
  margin-top: 20px;
}

/*==========================
見出し中
==========================*/
.form_subTitle {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: var(--color-font);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: var(--color-bg-1);
}
.form_subTitle::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.form_subTitle._shipping::before {
  width: 22px;
  height: 22px;
  background-image: url(../../../Contents/ImagesPkg/order/shippingIcon.svg);
}
.form_subTitle._payment::before {
  width: 24px;
  height: 24px;
  background-image: url(../../../Contents/ImagesPkg/order/paymentIcon.svg);
}

/*==========================
見出し小
==========================*/
.form_minTitle {
  display: block;
  color: var(--color-font);
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.form_minTitle._01 {
  font-size: 16px;
}
.form_minTitle._02 {
  width: 130px;
  margin-right: 25px;
  font-size: 14px;
}
.form_minTitle._required::after {
  content: "*";
  display: inline-block;
  color: var(--color-red);
}

.form_subText {
  margin-top: 6px;
  color: var(--color-font);
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.76923077;
  letter-spacing: 0.1em;
}
.form_subText > span {
  color: var(--color-red);
}

/*==========================
チェックボックス
==========================*/
.form_checkBox {
  display: flex;
  align-items: center;
}
.form_checkBox > input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  transition: opacity 0.2s ease;
}
.form_checkBox > input[type=checkbox]::before, .form_checkBox > input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.form_checkBox > input[type=checkbox]::before {
  border: 1px solid var(--color-gray);
}
.form_checkBox > input[type=checkbox]:checked::before {
  border: 1px solid var(--color-main);
}
.form_checkBox > input[type=checkbox]:checked::after {
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: var(--color-main);
}
.form_checkBox > label {
  margin-left: 10px;
  color: var(--color-font);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.form_checkBox._mailMagagine > label {
  font-weight: 300;
}

/*==========================
ラジオボタン
==========================*/
.form_radioBox {
  margin-bottom: 10px;
}
.form_radioBox > input[type=radio] {
  display: none;
}
.form_radioBox > input[type=radio]:checked + label::before, .form_radioBox > input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
}
.form_radioBox > input[type=radio]:checked + label::before {
  left: 0;
  width: 18px;
  height: 18px;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
}
.form_radioBox > input[type=radio]:checked + label::after {
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--color-main);
}
.form_radioBox > label {
  position: relative;
  display: block;
  padding: 0 30px 0 32px;
  color: var(--color-font);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.form_radioBox > label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 100%;
}
.form_radioBox > label:nth-of-type(n+2) {
  margin-top: 16px;
}
.form_radioBox._sexBox {
  display: flex;
  margin-bottom: 0;
}
.form_radioBox._sexBox > label {
  font-weight: 300;
}
.form_radioBox._sexBox > label:nth-of-type(n+2) {
  margin-top: 0;
}

/*==========================
テキストボックス
セレクトボックス
==========================*/
.form_textBox,
.form_selectBox {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form_textBox input[type=text], .form_textBox input[type=email], .form_textBox input[type=tel], .form_textBox > textArea, .form_textBox > div > select,
.form_selectBox input[type=text],
.form_selectBox input[type=email],
.form_selectBox input[type=tel],
.form_selectBox > textArea,
.form_selectBox > div > select {
  padding: 12px 15px;
  background-color: var(--color-bg-1);
  border: 1px solid var(--color-main);
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form_textBox textArea,
.form_selectBox textArea {
  height: 60px;
}
.form_textBox._multipleForm,
.form_selectBox._multipleForm {
  gap: 12px;
}
.form_textBox._multipleForm > span,
.form_selectBox._multipleForm > span {
  font-size: 14px;
}
.form_textBox > span,
.form_selectBox > span {
  font-family: var(--font-main);
}

.form_textBox li {
  display: flex;
  align-items: center;
  width: 100%;
}
.form_textBox span {
  font-size: 14px;
}

.form_selectBox > div {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 13px;
  position: relative;
}
.form_selectBox > div > select {
  width: 100%;
}
.form_selectBox > div > select:hover {
  cursor: pointer;
}
.form_selectBox > div::before, .form_selectBox > div::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  margin: auto;
}
.form_selectBox > div::before {
  right: 40px;
  bottom: 0;
  width: 1px;
  height: 20px;
  background-color: var(--color-sub-2);
  border-radius: 10px;
}
.form_selectBox > div::after {
  right: 16px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--color-sub-2);
  border-bottom: 1px solid var(--color-sub-2);
  transform: rotate(45deg);
}

.shippingHome {
  display: block;
}
.shippingHome .shippingHome_detail {
  display: none !important;
}

/*==========================
お知らせ
注意書き
==========================*/
.pickup_box {
  margin-bottom: 60px;
  padding: 25px 20px;
  background-color: var(--color-lightGray);
}
.pickup_box_title, .pickup_box_text {
  color: var(--color-font);
  font-family: var(--font-main);
  letter-spacing: 0.1em;
}
.pickup_box_title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.pickup_box_text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6153;
}

.cautionWording {
  margin: 15px 0 20px;
  padding: 20px;
  background-color: var(--color-bg-2);
}
.cautionWording_title, .cautionWording_text {
  font-family: var(--font-main);
  letter-spacing: 0.1em;
}
.cautionWording_title {
  color: var(--color-red);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.cautionWording_text {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--color-font);
  font-size: 13px;
  line-height: 1.6153;
}
.cautionWording_text > dt {
  margin-right: 6px;
}
.cautionWording_text > dd {
  width: 100%;
}
.cautionWording_text > dd > span {
  color: var(--color-red);
}

/*==========================
ボタン
==========================*/
.bottomBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.bottomBtn.flex_column > li:nth-of-type(n+2) {
  margin-top: 10px;
}
.bottomBtn.flex_row > li:nth-of-type(n+2) {
  margin-left: 20px;
}

.primary_btn > *,
.secondary_btn > * {
  display: block;
  width: 100%;
  height: 100%;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 50px;
}
.primary_btn.positive_btn, .primary_btn.negative_btn,
.secondary_btn.positive_btn,
.secondary_btn.negative_btn {
  width: 220px;
  height: 46px;
  margin: 0 20px;
  line-height: 46px;
}
.primary_btn.address_btn,
.secondary_btn.address_btn {
  width: 92px;
  height: 36px;
  line-height: 36px;
}
.primary_btn.changeInfo_btn,
.secondary_btn.changeInfo_btn {
  width: 110px;
  height: 36px;
  margin: 20px 0 40px auto;
  line-height: 36px;
}

.primary_btn > * {
  color: var(--color-white) !important;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
}

.secondary_btn > * {
  color: var(--color-main) !important;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
}

/*==========================
削除ボタン
==========================*/
.itemDeleteBtn > a {
  display: flex;
  align-items: center;
  color: var(--color-darkGray);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.itemDeleteBtn > a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background-image: url(../../../Contents/ImagesPkg/order/trashIcon.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.itemDeleteBtn > a > span {
  text-decoration: underline;
}

/*==========================
離脱考慮のため追従ヘッダー未使用
==========================*/
.order .floating-content-area {
  display: none;
}

/*==========================
カート
==========================*/
.cartItem_box .cartItem {
  display: flex;
  position: relative;
  border-bottom: 1px solid var(--color-gray);
}
.cartItem_box .cartItem img {
  width: 100px;
  height: 120px;
}
.cartItem_box .cartItem .itemInfo_name {
  color: var(--color-font);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.71428571;
  letter-spacing: 0.1em;
}
.cartItem_box .cartItem .itemInfo_price {
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.cartItem_box .cartItem .itemInfo_price > span.afterPrice {
  color: var(--color-red);
}
.cartItem_box .cartItem .itemInfo_price.discount > span.beforePrice {
  text-decoration: line-through;
}
.cartItem_box .cartItem .item_count_delete_box {
  display: flex;
  justify-content: end;
}
.cartItem_box .cartItem .item_count_delete_box > .itemCount {
  padding-top: 50px;
  font-family: var(--font-main);
  font-size: 14px;
}
.cartItem_box._style1 .cartItem {
  align-items: center;
  padding: 0 40px 20px;
}
.cartItem_box._style1 .cartItem:nth-of-type(n+2) {
  padding: 20px 40px;
}
.cartItem_box._style1 .cartItem img {
  margin-right: 40px;
}
.cartItem_box._style1 .cartItem .itemInfo {
  display: flex;
  align-items: center;
}
.cartItem_box._style1 .cartItem .itemInfo_name {
  width: 325px;
  margin-right: 94px;
}
.cartItem_box._style1 .cartItem .itemInfo_price {
  width: 185px;
}
.cartItem_box._style1 .cartItem .itemInfo_price > span.afterPrice {
  display: block;
  margin-top: 5px;
}
.cartItem_box._style1 .cartItem .item_count_delete_box {
  align-items: center;
}
.cartItem_box._style1 .cartItem .item_count_delete_box > input {
  width: 80px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--color-gray);
  border-radius: 5px;
  text-align: right;
  box-sizing: border-box;
}
.cartItem_box._style1 .cartItem .item_count_delete_box .itemDeleteBtn {
  margin-left: 40px;
}
.cartItem_box._style1 .cartItem .item_count_delete_box .form_checkBox {
  margin-left: 160px;
}
.cartItem_box._style1 .cartItem .item_count_delete_box .form_checkBox > input:hover {
  cursor: pointer;
}
.cartItem_box._style1 .cartItem .item_count_delete_box .form_checkBox > label {
  display: none;
}
.cartItem_box._style2 .cartItem {
  justify-content: space-between;
  padding: 0 0 20px;
}
.cartItem_box._style2 .cartItem:nth-of-type(n+2) {
  padding: 20px 0;
}
.cartItem_box._style2 .cartItem img {
  margin-right: 20px;
}
.cartItem_box._style2 .cartItem .itemInfo {
  width: 260px;
}
.cartItem_box._style2 .cartItem .itemInfo_price {
  margin-top: 10px;
}
.cartItem_box._style2 .cartItem > .item_count_delete_box {
  display: flex;
  justify-content: end;
  width: 70px;
}
.cartItem_box._style2 .cartItem > .item_count_delete_box > .itemCount {
  padding-top: 50px;
  font-family: var(--font-main);
  font-size: 14px;
}

/*==========================
顧客情報確認
==========================*/
.confirm_blk {
  display: flex;
  margin: 7px 0;
}
.confirm_blk .confirm_text {
  color: var(--color-font);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.71428571;
  letter-spacing: 0.1em;
}

/*==========================
金額
==========================*/
.subTotalPrice_box > dl,
.totalPrice_box > dl {
  display: flex;
  justify-content: space-between;
}
.subTotalPrice_box > dl > dt, .subTotalPrice_box > dl > dd,
.totalPrice_box > dl > dt,
.totalPrice_box > dl > dd {
  color: var(--color-font);
  font-size: 14px;
}
.subTotalPrice_box > dl > dt,
.totalPrice_box > dl > dt {
  font-family: var(--font-main);
  letter-spacing: 0.1em;
}
.subTotalPrice_box > dl > dd,
.totalPrice_box > dl > dd {
  font-family: var(--font-main);
  letter-spacing: 0.08em;
}
.subTotalPrice_box > dl.discount > dd,
.totalPrice_box > dl.discount > dd {
  color: var(--color-red);
}

.subTotalPrice_box {
  margin-top: 16px;
}
.subTotalPrice_box > dl:nth-of-type(n+2) {
  margin-top: 12px;
}
.subTotalPrice_box > dl > dt {
  width: 340px;
}

.totalPrice_box {
  margin-top: 20px;
  padding: 15px 18px;
  background-color: var(--color-lightGray);
}
.totalPrice_box > dl > dt span, .totalPrice_box > dl > dd span {
  font-weight: 600;
}
.totalPrice_box > dl > dt > span {
  font-size: 18px;
}
.totalPrice_box > dl > dt > span > span {
  font-size: 14px;
}
.totalPrice_box > dl > dd > span {
  font-size: 18px;
}
.totalPrice_box > dl:nth-of-type(n+2) {
  margin-top: 12px;
}/*# sourceMappingURL=form.css.map */


/* 送料無料テキストのスタイル */
.free-shipping-text {
  margin-top: 6px;

  color: #888;
  letter-spacing: .025em;
}
.free-shipping-text .defPrice:not(.freeShipping) {
  margin: 0 .25ch;
  color: var(--color-red);
  font-weight: bold;
  letter-spacing: .1em;
}
