.contentBlock +.contentBlock {
  margin-top: min(120px, 16vw);
}
.h2Title {
  width: fit-content;
  margin: 0 auto 3em;
  font-size: clamp(1rem, 0.2889rem + 1.4815vw, 1.4rem);
  text-align: center;
  line-height: 1.6;
  position: relative;
}
.h2Title::before, .h2Title::after{
  content: "";
  width: 2px;
  height: 1.5em;
  position: absolute;
  bottom: 0;
  background: #000;
}
.h2Title::before {
  left: -1em;
  transform: rotate(-40deg);
}
.h2Title::after{
  right: -1em;
  transform: rotate(40deg);
}
.h3Title {
  width: fit-content;
  margin: 0 auto 1em;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1rem, -0.0667rem + 2.2222vw, 1.6rem);
}
.h4Title {
  width: fit-content;
  background: #f7701b;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1em;
  padding: 0 .2em;
}
.innerBox {
  width: fit-content;
  margin: 0 auto;
}
.innerBox p+p {
  margin-top: 1em;
}
.colorRed {
  color: #ff0000;
}
.tableContent {
  max-width: 1032px;
  width: 90%;
  margin: 0 auto;
}
.basicTable {
  width: 100%;
  margin: 2em 0 1em;
  background: #fff;
  border-collapse: collapse;
  border: 1px solid #c9c9c9;
  font-size: 12px;
  line-height: 1.6;
}
.basicTable thead {
  background: #f1f1f1;
}
.basicTable tr {
  border: 1px solid #c9c9c9;
}
.basicTable tr th, .basicTable tr td {
  border-right: 1px solid #c9c9c9;
  padding: 10px;
}
.basicTable tr td:nth-child(n+3){
  text-align: right;
}
.basicTable .w15 {
  width: 15%;
}
.basicTable .w20 {
  width: 20%;
}
.basicTable .w50 {
  width: 50%;
}
.basicTable .bg01 {
  background: #fae4e4;
}
.basicTable .bg02 {
  background: #e1ebf5;
}
.basicTable .bg03 {
  background: #e2efda;
}
.basicTable .bg04 {
  background: #fff2cc;
}
.basicTable .bg05 {
  background: #f2f2f2;
}
.basicTable .bg06 {
  background: #e8e8ff;
}
.basicTable a {
  color: currentColor;
  font-weight: bold;
}
.basicTable a:hover {
  opacity: .7;
  transition: .3s all;
}
.notes>li {
  font-size: 11px;
  padding-left: 1em;
  text-indent: -1em;
}
@media print, screen and (max-width: 768px) {
  .tableScroll {
    overflow-x: auto;
  }
  .basicTable {
    min-width: 680px;
  }
}

@media print, screen and (min-width: 769px) {
  .basicTable {
    font-size: 14px;
  }
  .notes>li {
    font-size: 12px;
  }
}

.modal{
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 100;
}
.modalBg{
  height: 100vh;
  width: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  left: 0;
  top: 0;
}
.modalContent{
  width: min(600px, 90%);
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  padding: min(20px, 4vw) min(30px, 5vw) min(50px, 12vw);
  transform: translate(-50%,-50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}
.modalContent p+p{
  margin-top: .5em;
}
.modal-close-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  cursor: pointer;
}
.modal-close-btn::after {
  content: "×";
  display: inline-block;
  font-size: clamp(1.8rem, 0.3778rem + 2.963vw, 2.6rem);
  line-height: 1;
}
.modalTitle {
  color: #f7701b;
  font-size: clamp(0.9rem, 0.5444rem + 0.7407vw, 1.1rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1em;
}
.periodTxt {
  display: inline-block;
  background: #fff;
  border: 2px solid #f7701b;
  color: #f7701b;
  font-weight: bold;
  padding: 0 .2em;
  line-height: 1.4;
  margin-right: 1em;
}
.moreLink {
  text-align: right;
}
.moreLink a{
  display: inline-block;
  border-bottom: 1px solid currentColor;
  color: #f7701b;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  transition: .3s ease-in;
}
.moreLink a:hover{
  opacity: .7;
  transition: .3s ease-in;
}
.moreLink a::after{
  content: "";
  display: inline-block;
  width: 8px;
  height: 10px;
  position: absolute;
  left: calc(100% + 5px);
  top: 50%;
  background: #f7701b;
  clip-path: polygon(0 0, 0% 100%, 98% 50%);
  transform: translateY(-50%);
}
.parallel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px calc(66/890*100%);
}
.parallel a {
  transition: .2s ease-in;
}
.parallel a:hover {
  opacity: .7;
  transition: .2s ease-in;
}
.parallel+ .parallel{
  margin-top: min(80px, 12vw);
}
.parallel img{
  width: 100%;
  height: auto;
}

@media print, screen and (min-width: 769px) {
  .parallel {
    flex-direction: row;
  }
  .parallel.align-start {
    align-items: flex-start;
  }
  .parallel.reverse {
    flex-direction: row-reverse;
  }
  .parallel .col {
    width: calc(412/890*100%);
  }
}