.form_wrapper {
  border: 1px solid var(--divider-02);
  border-radius: 4px;
  padding: 8px 16px;
}

.form_wrapper .form_content {
  display: flex;
  font-size: 12px;
  margin: 8px 0;
}

.form_wrapper .form_label {
  font-weight: 600;
  width: 20%;
}

.form_wrapper .form_item {
  line-height: 2;
  word-spacing: -0.2em;
  width: 80%;
}

.form_wrapper .form_item_factor {
  display: inline-block;
}

input#pt {
  display: none;
}

.form_wrapper .form_item input[type='checkbox'], .form_wrapper .form_item input[type='radio'] {
  accent-color: #146325;
  opacity: 0.5;
}

.form_wrapper .form_item select {
  appearance: none;
  background-color: var(--text-inverted);
  border: none;
  border-bottom: 1px solid var(--divider-02);
  cursor: pointer;
  color: inherit;
  font-size: inherit;
  padding: 4px 8px;
  position: relative;
  width: 160px
}

.form_wrapper .form_item select:focus {
  outline: none;
}

.form_wrapper .form_select {
  display: inline-block;
  position: relative;
}

.form_wrapper .form_select::after {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 12px;
  width: 8px;
  height: 6px;
  background-color: var(--background);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}

@media screen and (max-width:750px) {
  .form_wrapper .form_content {
    display: block;
    margin: 12px 0;
  }

  .form_wrapper .form_label, .form_wrapper .form_item {
    width: 100%;
  }
}

.form_wrapper .btn {
  background: var(--primary-main-01);
  border-radius: 16px;
  border: none;
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2);
  color: var(--text-inverted);
  display: block;
  font-size: inherit;
  margin: 8px auto;
  padding: 4px 32px;
}

.tab {
  display: flex;
}

.tab_item {
  border-bottom: 3px solid var(--divider-02);
  color: var(--text-03);
  font-weight: 600;
  padding: 4px 16px;
  position: relative;
  margin: 0 2px;
  text-align: center;
}

.tab_item input[type='checkbox'] {
  display: none;
}

.tab_item_sub {
  font-size: 10px;
  font-weight: 300;
  left: 22px;
  position: absolute;
  top: -10px;
}

@media screen and (max-width:750px) {
  .tab_item {
    font-size: 12px;
    padding: 4px;
    letter-spacing: 0;
  }

  .tab_item_sub {
    left: 12px;
  }
}

.tab_item_true {
  border-bottom: 3px solid var(--primary-main-01);
  color: var(--primary-main-01);
}

.wrapper .update_date {
  align-items: center;
  justify-content: flex-end;
  display: flex;
}

.items {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: scroll;
}

.item {
  border: 1px solid var(--divider-02);
  border-radius: 8px;
  list-style: none;
  padding: 8px 16px;
  position: relative;
  margin: 4px;
  min-width: 105px;
  width: 20%;
}

.item2 {
  border: 1px solid var(--divider-02);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  padding: 8px 16px;
  position: relative;
  margin: 12px 0;
}

.item .name, .item2 .name, .name_mb {
  font-size: 12px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 8px 0;
}

.item2 .name_mb {
  display: none;
  margin-left: 8px;
}

@media screen and (max-width:600px) {
  .item2, .item2 .name_mb {
    display: block;
  }

  .item2 .name {
    display: none;
  }
}

.rank {
  background: var(--primary-main-01);
  border: 4px solid var(--text-inverted);
  border-radius: 20px;
  color: var(--text-inverted);
  font-size: 12px;
  letter-spacing: 0;
  padding: 2px;
  position: absolute;
  top: 4px;
  left: 4px;
  text-align: center;
  width: 30px;
}

.rank_num {
  font-family: futura, 'Century Gothic', sans-serif;
  font-size: 14px;
}

.item_image {
  margin: 4px auto;
  height: 60px;
  width: 60px;
}

.price {
  color: #df3b3b;
  line-height: 1.2;
  position: relative;
}

.point_back {
  color: #c0801f;
}

.tag {
  border: 1px solid var(--text-03);
  border-radius: 4px;
  color: var(--text-03);
  font-size: 10px;
  padding: 2px 4px;
  white-space: nowrap;
}

.purchase_wrapper {
  display: block;
  margin: 16px auto 8px;
  text-align: center;
}

.purchase_store {
  color: var(--text-02);
  font-size: 12px;
  text-decoration: underline;
}

.purchase {
  background: orange;
  border-radius: 16px;
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2);
  margin: 4px auto;
  padding: 4px 8px;
  position: relative;
  text-align: center;
  max-width: 180px;
}

.purchase::after {
  content: '▶︎';
  font-size: 8px;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
  position: absolute;
}

.purchase_amazon {
  background: var(--brand-amazon);
}

.purchase_rakuten {
  color: var(--text-inverted);
  background: var(--brand-rakuten);
}

.purchase_yahoo {
  color: var(--text-inverted);
  background: var(--brand-yahoo);
}

.item_info {
  align-items: center;
  display: flex;
  padding: 0 8px;
}

.item_detail {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width:600px) {
  .item_detail {
    width: 100%;
    margin: 0;
  }
}

.item_table tr {
  text-align: center;
  line-height: 1;
}

.item_table th {
  background: var(--primary-main-02);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 300;
  width: 10%;
}

.memo_list_label {
  border-radius: 8px;
  font-size: 10px;
  padding: 0 2px;
}
.memo_list_label_true {
  border: 1px solid var(--primary-main-01);
  color: var(--primary-main-01);
}
.memo_list_label_false {
  border: 1px solid var(--text-03);
  background: var(--text-03);
  color: #fff;
}
.memo_atention_item {
  position: relative;
}
.memo_atention_item:after {
  --DOTSIZE: 4px;
  content: "";
  background-color: transparent;
  background-image:
  radial-gradient(var(--text-03) 30%, transparent 30%);
  background-size: var(--DOTSIZE) var(--DOTSIZE);
  background-repeat: repeat-x;
  width: 100%;
  height: var(--DOTSIZE);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%); 
}
.memo_atention_item a {
  color: var(--primary-main-01);
  margin-left: 8px;
}
.memo_atention_item_title {
  background: #fff3f2;
  padding-right: 8px;
  position: relative;
  z-index: 1;
}
