.p-qua-overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.p-qua-box {
  color: var(--keycolor);
}
.p-qua-box + .p-qua-box {
  margin-top: 80px;
}
.p-qua-box__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}
.p-qua-box__title {
  font-family: var(--font-cormoront);
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.p-qua-box__catch {
  font-size: 14px;
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
}
.p-qua-box.-structure {
  --keycolor: #5D88A8;
}
.p-qua-box.-structure li {
  --bordercolor: #9FB5C5;
}
.p-qua-box.-comfortable {
  --keycolor: #7B9A00;
}
.p-qua-box.-comfortable {
  --bordercolor: #AEBE71;
}
.p-qua-box.-disaster {
  --keycolor: #9A5474;
}
.p-qua-box.-disaster {
  --bordercolor: #BE9BAB;
}

.p-qua-boxlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.p-qua-boxlist__item {
  border: 1px solid var(--bordercolor);
}
.p-qua-boxlist__item.-row2 {
  grid-row: span 2;
}
.p-qua-boxlist__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**************** PC & Tablet ****************/
@media screen and (min-width: 577px) {
  .p-qua-boxlist__item.-order01 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-qua-boxlist__item.-order02 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-qua-boxlist__item.-order03 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
/**************** SP ****************/
@media screen and (max-width: 1024px) {
  .p-qua-overview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: clamp(320px, 67.3575129534%, 520px);
    margin-right: auto;
    margin-left: auto;
  }
  .p-qua-overview__item {
    max-width: 520px;
    width: 100%;
  }
  .p-qua-overview__item:nth-child(n+2) {
    margin-top: 60px;
  }
  .p-qua-box__header {
    margin-bottom: 30px;
  }
  .p-qua-box__title {
    font-size: clamp(1.375rem, 0.5714rem + 2.2321vw, 2rem);
  }
  .p-qua-box__catch {
    font-size: clamp(0.75rem, 0.5893rem + 0.4464vw, 0.875rem);
  }
  .p-qua-boxlist {
    gap: min(3.90625vw, 40px);
  }
  .p-qua-boxlist__item {
    -ms-flex-item-align: start;
        align-self: start;
  }
  .p-qua-box + .p-qua-box {
    margin-top: 60px;
  }
}
@media screen and (max-width: 576px) {
  .p-qua-overview {
    width: 100%;
    margin-bottom: 50px;
  }
  .p-qua-overview__item:nth-child(n+2) {
    margin-top: min(11.6959064327%, 40px);
  }
  .p-qua-box__header {
    margin-bottom: min(4.1025641026vw, 16px);
  }
  .p-qua-box__title {
    font-size: 24px;
  }
  .p-qua-box__catch {
    font-size: 12px;
  }
  .p-qua-boxlist {
    grid-template-columns: 1fr;
    gap: min(6.6666666667vw, 26px);
  }
  .p-qua-box + .p-qua-box {
    margin-top: 50px;
  }
}