@charset "UTF-8";
/* ---------------------------------------------------------
　■ header
--------------------------------------------------------- */
header#header.procedure {
  border-bottom: 1px solid #edf1f5;
}
header#header.procedure .buy {
  margin: 0 auto;
  font-weight: bold;
}
header#header.procedure .buy .ttl {
  font-size: 26px;
}

/* ---------------------------------------------------------
　■ procedure画面
--------------------------------------------------------- */
.form-card {
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

h2.form-title {
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
  margin-bottom: 18px;
}

.form-card:nth-child(n+2) {
  margin-top: 28px;
}

.form-card--address .radio-group label.radio-item {
  border-top: 1px solid #e3eaf2;
  padding: 28px 36px;
}
.form-card--address .radio-group input[type=radio] {
  margin-top: 6px;
}

.form-card--payment .radio-group {
  border-top: 1px solid #e3eaf2;
  padding-top: 10px;
  padding-bottom: 20px;
}
.form-card--payment .radio-group label.radio-item {
  padding: 10px 36px;
}

.procedure .form-card--cart {
  background-color: initial;
  box-shadow: initial;
  padding: 0;
}
.procedure .cart-item + .cart-item {
  margin-top: 20px;
}
.procedure .cart-item {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-card--cart .cart-card {
  box-shadow: initial;
}
.form-card--cart .cart-card .product-img {
  padding: 5px 27px 0 15px;
}
.form-card--cart .cart-card .product-info {
  padding-right: 5%;
}
.form-card--cart .cart-card .product-info .product-title {
  line-height: 1.5;
}
.form-card--cart .cart-card .product-info .shipping-fee {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.1428571429;
}
.form-card--cart .cart-card .product-info .price {
  margin-top: 15px;
  font-weight: 700;
}
.form-card--cart .cart-card .product-info .price .reference-price,
.form-card--cart .cart-card .product-info .price .reference-price .num,
.form-card--cart .cart-card .product-info .price .off,
.form-card--cart .cart-card .product-info .price .off .num {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1428571429;
}
.form-card--cart .cart-card .product-info .price .reference-price,
.form-card--cart .cart-card .product-info .price .off {
  margin-left: 12px;
}
.form-card--cart .cart-card .product-info .price .off .num {
  color: #a40000;
}
.form-card--cart .cart-card .product-info .product-qty {
  margin-top: 13px;
}

.form-card--save {
  border-radius: 5px;
  border: 1px solid #33629c;
  padding: 22px 24px 27px;
}

.radio-group label.radio-item {
  padding: 0 36px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.radio-group input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #a6a6a6;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  vertical-align: top;
  transition: border 0.2s ease;
}
.radio-group input[type=radio]:checked {
  border: 5px solid #33629c;
}
.radio-group input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}
.radio-group .address-content {
  flex: 1;
}
.radio-group .company-name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5555555556;
}
.radio-group .postal-address {
  font-size: 14px;
  line-height: 2;
}
.radio-group .postal-address .postal-code {
  margin-right: 5px;
}
.radio-group .address-row {
  display: flex;
  font-size: 14px;
  line-height: 2;
}
.radio-group .address-row .label {
  width: 70px;
}
.radio-group .address-row .value {
  flex: 1;
}

.actions {
  padding: 18px 24px 0;
  border-top: 1px solid #e3eaf2;
  display: flex;
  align-items: center;
  gap: 26px;
}
.actions button {
  background-color: #ffe509;
  text-align: center;
  border: none;
  border-radius: 20px;
  max-width: 260px;
  width: 100%;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.3s;
}
.actions button:hover {
  background-color: #f0c000;
}
.actions a {
  display: inline-block;
  color: #33629c;
  font-size: 16px;
  line-height: 1.375;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  line-height: 1.6666666667;
  font-weight: 700;
}
.info-box .info-icn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #33629c;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.checkbox-item .ui-checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid #a6a6a6;
  background: #fff;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transition: all 0.15s ease;
}
.checkbox-item .ui-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #a6a6a6;
  border-bottom: 2px solid #a6a6a6;
  transform: rotate(45deg);
}

.delivery-time {
  background-color: #fff;
  border-bottom: 1px solid #e3eaf2;
  padding: 20px;
  font-size: 18px;
  line-height: 1.2222222222;
  font-weight: 700;
}

.order-notice .return-cart {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #e3eaf2;
}

.checkout-experience-rt-column .checkout-totals-sec .subtotal {
  margin-top: 23px;
  padding: 23px 20px 18px 27px;
  border-top: 1px solid #e3eaf2;
  display: flex;
}
.checkout-experience-rt-column .checkout-totals-sec .subtotal .label {
  font-size: 15px;
  margin-right: auto;
}
.checkout-experience-rt-column .checkout-totals-sec .subtotal .yen,
.checkout-experience-rt-column .checkout-totals-sec .subtotal .num {
  font-size: 20px;
}

.checkout-experience-rt-column .checkout-totals-sec .subtotal .select-btn {
  color: var(--BL);
  border: 1px solid Var(--BL);
}

.bg.cart .checkout-experience-rt-column .checkout-totals-sec .subtotal .address-area {
  font-size: 0.9em;
  opacity: 0.7;
}

.modal-content.address-modal .select-address:hover {
  background-color: #eff3f7;
  padding-left: 0.5em;
}

.checkout-experience-rt-column .checkout-totals-sec .price {
  padding-left: 27px;
  padding-right: 20px;
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.checkout-experience-rt-column .checkout-totals-sec .estimate-btns {
  border-top: 1px solid #e3eaf2;
  padding-top: 23px;
  padding-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.checkout-experience-rt-column .checkout-totals-sec .estimate-save,
.checkout-experience-rt-column .checkout-totals-sec .estimate-print {
  text-align: center;
  max-width: 260px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  background-color: #f2f6fa;
  border: 1px solid #d0d7df;
  border-radius: 20px;
  font-size: 15px;
  padding: 10px 0;
}

/* ---------------------------------------------------------
　■ cart画面
--------------------------------------------------------- */
.cart .column-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cart .form-card--cart .cart-card {
  border-top: 1px solid #e3eaf2;
}
.cart .form-card--cart .cart-price {
  border-top: 1px solid #e3eaf2;
  padding: 24px 24px 20px;
  text-align: right;
  font-weight: 700;
}
.cart .form-card--cart .cart-price .label {
  font-size: 18px;
}
.cart .form-card--cart .cart-price .yen {
  margin-left: 10px;
  font-size: 18px;
}
.cart .form-card--cart .cart-price .num {
  font-size: 26px;
}

/* ---------------------------------------------------------
　■ 会員情報編集
--------------------------------------------------------- */
.profile-container {
  padding: 70px 100px;
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.account-edit {
  border-top: 1px solid #e3eaf2;
}
.account-edit .form-row {
  padding: 20px 22px;
  border-bottom: 1px solid #e3eaf2;
  display: flex;
  align-items: center;
}
.account-edit .form-row.form-row-top {
  align-items: baseline;
}
.account-edit .form-row.form-row-gender {
  padding-top: 30px;
  padding-bottom: 25px;
}
.account-edit .form-row .form-label {
  max-width: 153px;
  width: 100%;
}
.account-edit .form-row .form-fields input,
.account-edit .form-row .form-fields select {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  font-size: 15px;
}
.account-edit .form-row .form-fields input {
  padding: 8px 15px;
}
.account-edit .form-row .form-fields.select {
  max-width: 298px;
  width: 100%;
  position: relative;
}
.account-edit .form-row .form-fields.select.birth {
  max-width: 120px;
}
.account-edit .form-row .form-fields.select select {
  background-color: #f3f7fa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.account-edit .form-row .form-fields.select::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #33619d;
  position: absolute;
  transform: rotate(90deg);
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}
.account-edit .form-row .form-fields.normal {
  max-width: 400px;
  width: 100%;
}
.account-edit .form-row .form-fields.name {
  display: flex;
  max-width: 520px;
  width: 100%;
  gap: 20px;
}
.account-edit .form-row .form-fields.email {
  max-width: 465px;
  width: 100%;
}
.account-edit .form-row .form-fields.email .input--email {
  display: block;
  width: 86%;
}
.account-edit .form-row .form-fields.email .input--emailConfirm {
  width: 86%;
  margin-left: 8px;
  margin-top: 18px;
}
.account-edit .form-row .form-fields--stack {
  max-width: 520px;
  width: 100%;
}
.account-edit .form-row .form-fields--stack input,
.account-edit .form-row .form-fields--stack select {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  font-size: 15px;
}
.account-edit .form-row .form-fields--stack input {
  padding: 8px 15px;
}
.account-edit .form-row .form-fields--stack .select {
  max-width: 130px;
  width: 100%;
  position: relative;
  margin-top: 10px;
}
.account-edit .form-row .form-fields--stack .select select {
  background-color: #f3f7fa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.account-edit .form-row .form-fields--stack .select::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #33619d;
  position: absolute;
  transform: rotate(90deg);
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}
.account-edit .form-row .form-fields--stack .address {
  display: flex;
  align-items: center;
  gap: 8px;
}
.account-edit .form-row .form-fields--stack .address .input--zip {
  max-width: 150px;
}
.account-edit .form-row .form-fields--stack .address .btn--ghost {
  padding: 11px 15px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  font-size: 15px;
  background-color: #f3f7fa;
  margin-left: 12px;
}
.account-edit .form-row .form-fields--stack .input--address {
  margin-top: 20px;
}
.account-edit .form-row .form-fields--radio {
  display: flex;
  gap: 35px;
}
.account-edit .form-row .form-fields--radio input {
  display: none;
}
.account-edit .form-row .form-fields--radio input + span {
  padding: 0 0 0 25px;
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}
.account-edit .form-row .form-fields--radio input + span::before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.account-edit .form-row .form-fields--radio input + span::after {
  content: "";
  padding: 2px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 5px solid #33619d;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: 0.3s;
}
.account-edit .form-row .form-fields--radio input:checked + span::after {
  opacity: 1;
}
.account-edit .form-row input:focus,
.account-edit .form-row select:focus {
  outline: none;
  border: 1px solid #E5E5E5;
  box-shadow: none;
}
.account-edit .form-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.account-edit .form-actions .btn {
  max-width: 300px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 0;
  border-radius: 4px;
}
.account-edit .form-actions .btn--primary {
  color: #fff;
  background-color: #2c3b4e;
  border: 1px solid #2c3b4e;
}
.account-edit .form-actions .btn--ghost {
  color: #33619d;
  background-color: #fff;
  border: 1px solid #E5E5E5;
}

.accordion {
  position: relative;
  display: inline-block;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
  /* デフォルト矢印を消す */
}

.accordion summary::after {
  content: "▼";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
  font-size: 12px;
}

.accordion[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}

/* dropdown部分 */
.accordion-content {
  position: absolute;
  top: 100%;
  /* summaryの下に配置 */
  left: 0;
  min-width: 160px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  z-index: 1000;
  overflow: hidden;
}

.accordion-content>div {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.accordion-content>div:hover {
  background: #f0f0f0;
}
.accordion-item {
  background: none;
  border: none;
  color: #00f;
  cursor: pointer;
  padding: 0;
  color: var(--BL)
}

.search-input-label {
  width: fit-content;
  height: fit-content;
  margin: auto 10px auto 0;
}

.search-input-label .search-input-img {
  width: 20px;
  height: 20px;
}
/*# sourceMappingURL=add_styles3.css.map */
