.formReport .scrollContainer {
  max-width: 1050px;
}

.formReport .template-table__table {
  width: 1050px;
}

@media screen and (min-width: 1050px) {
  .formReport .template-table__table {
    width: auto;
  }
}

@media screen and (min-width:1050px) {
  .formReport .paddingL-20 {
    padding-left: 0;
  }
}

@media screen and (max-width:1049px) {
  .formReport .paddingL-20 {
    padding-left: 50px;
    margin-left: 0;
  }

  .formReport .template-table__table {
    margin-right: 50px;
  }
}

@media screen and (max-width:767px) {
  .formReport .template-table__table {
    margin-right: 20px;
  }

  .formReport .paddingL-20 {
    padding-left: 20px;
    margin-left: 0;
  }
}

.width-120 {
  width: 120px;
  flex-shrink: 0;
}

.width-524 {
  width: 524px;
}

.width-247 {
  width: 247px;
  flex-shrink: 0;
}

.width-157 {
  width: 157px;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .width-120 {
    width: 120px;
  }

  .width-524 {
    width: 524px;
  }

  .width-247 {
    width: 247px;
  }

  .width-157 {
    width: 157px;
  }
}

.formReport__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formReport__table__text p,
.formReport__table__text__option p {
  justify-content: center;
  display: flex;
  min-height: 36px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .formReport__table__text__option p {
    min-height: 42px;
  }
}

.formReport__table__text__option>p,
.formReport__table__price__option>div {
  margin-top: 10px;
}

.formReport .template-table__item:hover {
  color: var(--color-main);
}

.formReport .template-table__item:last-of-type {
  border-bottom: 1px solid var(--color-pale);
}

.formReport__priceArea {
  width: 320px;
  display: flex;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .formReport__priceArea {
    width: 500px;
  }
}

.formReport__sum {
  width: 95px;
  font-size: 2rem;
  font-weight: var(--fw-semibold-jp);
  color: #fff;
  text-align: center;
  background-color: var(--color-point);
  padding: 16px 0;
}

@media screen and (min-width: 768px) {
  .formReport__sum {
    width: 209px;
    font-size: 2.4rem;
    padding: 20px 0;
  }
}

.formReport__price {
  width: calc(320px - 95px);
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border-bottom: 1px solid var(--color-point);
}

@media screen and (min-width: 768px) {
  .formReport__price {
    width: calc(500px - 209px);
    gap: 6px;
  }
}

.formReport__tax {
  font-size: 1.7rem;
  font-weight: var(--fw-semibold-jp);
}

@media screen and (min-width: 768px) {
  .formReport__tax {
    font-size: 1.9rem;
    font-weight: var(--fw-semibold-jp);
  }
}

.reportConfirm__mainPrice {
  font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
  .reportConfirm__mainPrice {
    font-size: 1.5rem;
  }
}

/* 初期表示制御 */
.is-init-show {
  display: block;
}

.is-init-hide {
  display: none;
}

/* 表示/非表示の汎用ユーティリティ */
.is-hidden {
  display: none;
}

.is-shown {
  display: block;
}

/* 30件超過時の送信ボタン無効化用 */
.is-disabled {
  pointer-events: none;
  opacity: .5;
}

/* 例：スクロールテーブルなど、要素のデフォルトdisplayが不定な場合の補助 */
.table-block {
  display: block;
}

.flex-block {
  display: flex;
}

/* ローディングの見た目を明示したい場合 */
.loading-visible {
  visibility: visible;
}

.loading-hidden {
  visibility: hidden;
}