/* フォントカラー */
.cutsom-fc-red {
  color: #E9381B;
}
.cutsom-fc-orange {
  color: #F18D25;
}

/* 料金メニュー */
.custom-element {
  position: relative;
}
.cutsom-board-red {
  border: 3px solid #E9381B;
  background: #fff;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
/* 吹き出し */
/*テキスト*/
.fs-lg {
  font-size: 130%;
}

.fs-sm {
  font-size: 75%;
}

.fs-xs {
  font-size: 60%;
}
.cutsom-board-orange {
  border: 3px solid #F18D25;
  background: #fff;
  /* max-width: 520px; */
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 12px 24px;
}

.cutsom-board-orange::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top: 12px solid #fff;
  z-index: 2;
}
.cutsom-board-orange::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 14px solid transparent;
  border-top: 14px solid #F18D25;
  z-index: 1;
}
.custom-icn-plus {
  width: 40px;
  height: 40px;
  background: url(/service/electricity/images_v10/index/icn-plus.svg) no-repeat center center/contain;
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 20px);
}

/* Jcomアプリ */
.border-bottom-red {
  padding-bottom: 10px;
  border-bottom: 2px solid #E9381B;
}
@media screen and (max-width: 767px) {
  .border-bottom-red {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* 下線 黒 */
.dec-black-line {
  text-decoration: underline;
}