/* レイアウト幅 */
.pane-goods-center {
  width: 850px;
  margin: 0 auto;
}

/* 個別マージン設定 */
.mb1rm {margin-bottom: 1rem;}
.mb2rm {margin-bottom: 2rem;}

/* タイトル */
.goods-heading-large {
  font-size: 1.5rem !important;
  font-weight: bold !important;
  margin: 5.5rem auto 1.5rem !important;
  padding: 1rem !important;
  border-left: 6px solid #00a8b5 !important;
  border-bottom: 0 !important;
  color: #333 !important;
  line-height: 1.5 !important;
}

/* 注意事項 */
.goods-caution {
  padding: 2.5rem;
  background: #efefef;
  margin-bottom: 3rem;
}

.caution-heading {
  position: relative;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.caution-heading::before {
  content: "";
  display: block;
  width: 2rem;
  height: .9rem;
  background: var(--mainColor);
  position: absolute;
  top: 50%;
  left: -2.5rem;
  transform: translateY(-50%);
}

.caution-title {
  font-size: .9rem;
  font-weight: bold;
  margin-bottom: .625rem;
}

.caution-list {
  margin-bottom: 2.5rem;
}

.caution-list:last-of-type {
  margin-bottom: 0;
}

.caution-list-item {
  padding: .75rem 0 .75rem 1rem;
  border-top: 1px dashed #333;
  position: relative;
}

.caution-list-item::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100vmax;
  background-color: #333;
  position: absolute;
  top: 1.5rem;
  left: 0;
}

.caution-list-item:first-of-type {
  border-top: 0;
  margin-top: -1rem;
}

.caution-list-item:last-of-type {
  padding-bottom: 0;
}

.caution-list-item a {
    text-decoration: underline;
    color: #4176dc;
    font-weight: 700;
}