.colorChange{
  color: #e74c3c!important;
}

h4.title {
  width: 900px;
  margin-top: 16px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: bold;
  clear: both;
}

.pvText--span{
  font-size:12px!important;
}

.pvTitle {
  display: flex;
  align-items: center;
  width: 900px;
  margin-left: 10px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: bold;
  clear: both;
}

.pvTitle:before,
.pvTitle:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #999;
}

.pvTitle:before {
  margin-right: 1rem;
}

.pvTitle:after {
  margin-left: 1rem;
}

@media screen and (max-width:639px){
  h4.title {
    width: 100%;
    margin-left: 0;
  }

  .pvTitle {
    width: auto;
    margin-left: 10px;
  }
}

.contentTitle {
  margin: 20px 0px 20px;

}

/* モーダルトリガーリンク */
.modal-trigger {
  font-weight: bold;
  color: #0066cc;
  text-decoration: underline;
  cursor: pointer;
}

/* モーダルオーバーレイ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* モーダル本体 */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 650px;
  z-index: 1001;
  border-radius: 4px;
}

/* モーダルヘッダー */
.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: #666;
}

/* モーダル本文 */
.modal-body {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(650px - 60px);
}

/* テーブルスタイル */
.table-wrapper {
  overflow-x: auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.info-table th,
.info-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.info-table th {
  background: #ccc;
}

/* レスポンシブ対応 */
@media screen and (max-width: 639px) {
  .modal {
    width: 95%;
    max-height: 450px;
    margin: 10px auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .modal-body {
    max-height: calc(450px - 60px);
    padding: 15px;
  }

  .info-table {
    font-size: 14px;
  }

  .info-table th,
  .info-table td {
    padding: 6px;
  }

  .modal-header {
    padding: 10px 15px;
  }

  .modal-close {
    right: 15px;
  }
}

/* フッター削除による余白調整 */
#wrap #secContent{
	padding-bottom:0px;
}