﻿@charset "UTF-8";
.bookmarklist_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 17px;
}
.bookmarklist_nav .cmn-btn {
  width: calc(50% - 5px);
  height: 42px;
  font-size: 14px;
  font-weight: bold;
}
.bookmarklist_count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 17px;
  font-size: 13px;
}
.bookmarklist_count_num {
  font-weight: bold;
}
.bookmarklist_count_num strong {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
}
.bookmarklist .bookmarklist_item--search, .bookmarklist .bookmarklist_item {
  padding: 20px 15px;
  margin-top: 20px;
  margin-right: -15px;
  margin-left: -15px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.bookmarklist_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 10px auto 10px auto;
      grid-template-areas: "img txt" "memo memo" "btn btn";
  -ms-grid-columns: 130px 25px auto;
  grid-template-columns: 130px auto;
  gap: 10px 25px;
}
.bookmarklist_item--search_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.bookmarklist_item_imgcol {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: img;
}
.bookmarklist_item_img img {
  width: 100%;
  aspect-ratio: 1/1;
}
.bookmarklist_memo {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: memo;
  margin-top: 5px;
}
.bookmarklist_memo_btn {
  position: relative;
}
.bookmarklist_memo_input {
  width: 100%;
  height: 40px;
  padding-right: 40px;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
}
.bookmarklist_memo_submit {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0 none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 8px;
  right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  padding: 3px;
  line-height: 1;
}
.bookmarklist_memo_submit img {
  width: 100%;
  height: 100%;
}
.bookmarklist_item_txtcol {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-area: txt;
}
.bookmarklist_item_brand {
  font-size: 12px;
  line-height: 1.5;
  font-weight: bold;
}
.bookmarklist_item_name {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
}
.bookmarklist_item--search .bookmarklist_item_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 0;
}
.bookmarklist_item--search .bookmarklist_item_name .icn-search {
  margin-top: 2px;
  width: 18px;
  height: 18px;
}
.bookmarklist_item_registed {
  margin-top: 6px;
  margin-bottom: 12px;
  font-size: 10px;
  line-height: 1.5;
  color: #878787;
}
.bookmarklist_item_price {
  font-size: 12px;
  text-align: right;
}
.bookmarklist_item_price .cmn-price--current strong {
  font-size: 22px;
}
.bookmarklist_item_price .cmn-price--current.is-discount strong {
  color: #e21836;
}
.bookmarklist_item_price .cmn-price--default {
  margin-top: 6px;
}
.bookmarklist_item_price .cmn-price--default strong {
  margin-left: 12px;
}
.bookmarklist_btns {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  display: -ms-grid;
  display: grid;
  grid-area: btn;
  -ms-grid-columns: 26.0869565217% 71.5942028986%;
  grid-template-columns: 26.0869565217% 71.5942028986%;
  gap: 8px;
}
.bookmarklist_btn .btn,
.bookmarklist_btn .btn-danger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  color: #323232;
  background-color: #fff;
  border-color: #e5e5e5;
  border-radius: 4px;
  font-weight: 500;
}
.bookmarklist_btn .cmn-btn,
.bookmarklist_btn .cmn-btn--primary {
  width: 100%;
  min-width: initial;
  height: 42px;
}
.bookmarklist_btn .cmn-btn--primary i {
  width: 20px;
}

/* ----システムのスタイルを上書き---- */
/* ----ゲストお気に入り画面---- */
.block-guest-favorite-synchronize-title {
  margin-top: 18px;
  font-weight: bold;
  font-size: 16px;
}

.block-guest-favorite-synchronize-description {
  font-size: 14px;
}

.block-guest-favorite-synchronize-link {
  text-align: center;
}