@charset "utf-8";

.l-pgttl { background-image: url("../image/pgttl.jpg"); background-position: center bottom; }

/*--------------------------------------------------------------------------------
  流れ
--------------------------------------------------------------------------------*/
.sec-flow {
  padding: var(--space-m) var(--side-space) var(--space-l) var(--side-space);
}
.flow {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.flow-list {
  list-style: none;
  width: 100%;
  padding-top: var(--space-s);
  padding-bottom: var(--space-s);
  display: grid;
  row-gap: 2em;
}
.flow-list li {
  line-height: 1.8;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
}
.flow-list li:not(:last-child):before {
  content: "";
  width: 2.5em;
  height: 1.25em;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background-color: var(--yellow);
  clip-path: polygon(100% 0, 50% 100%, 0% 0%);
}
.flow-list li .step {
  font-family: var(--ff-wf);
  font-weight: 700;
  background-color: var(--blue);
  color: #FFF;
  padding: 1em 0.25em 1em 2em;
  position: relative;
  display: flex;
  align-items: center;
}
.flow-list li .step .no {
  font-size: var(--fs-l);
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.25em;
  position: relative;
  z-index: 3;
}
.flow-list li .step:after {
  content: "";
  width: 4px;
  height: 100%;
  background-color: var(--blue);
  position: absolute;
  right: -2px;
  top: 0;
  z-index: 2;
}
.flow-list li p {
  padding: 1.5em 1.5em 1.5em 4em;
  background-color: var(--bg-blue);
  position: relative;
  overflow: hidden;
}
.flow-list li p:before {
  content: "";
  width: 2.5em;
  height: 12em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--blue);
  clip-path: polygon(100% 50%, 0% 100%, 0% 0%);
}
@media print, screen and (max-width:760px) {
  .flow-list li .step {
    padding: 0.5em 0 0.5em 1.75em;
  }
  .flow-list li p {
    padding: 1em 1em 1em 3.75em;
  }
}
@media print, screen and (max-width:640px) {
  .flow-list {
    font-size: 95%;
  }
}

/*--------------------------------------------------------------------------------
  塗替えサイン
--------------------------------------------------------------------------------*/
.sec-signs {
  padding: var(--space-m) var(--side-space) var(--space-l) var(--side-space);
  background-color: var(--bg-gray);
}
.signs {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.signs-hd {
  font-size: var(--fs-4l);
  font-family: var(--ff-wf);
  font-weight: 700;
  line-height: 1.6;
}
.signs-gpttl {
  font-size: var(--fs-l);
  font-family: var(--ff-wf);
  font-weight: 700;
  line-height: 1.6;
  background-color: var(--gblue);
  color: #FFF;
  padding: 0.5em 0.75em;
  margin-top: var(--space-m);
}
.signs-gpttl:first-of-type {
  margin-top: var(--space-s);
}
.signs-gp {
  display: grid;
  row-gap: 1.5em;
  padding-top: calc(var(--space-2s) * 1.5);
}
.signs-gp_item {
  display: grid;
  background-color: #FFF;
}
.signs-gp_item .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signs-gp_item .txt {
  padding: calc(var(--space-2s) * 1.5);
}
.signs-gp_item .txt .ttl {
  font-size: var(--fs-l);
  line-height: 1.6;
  padding-bottom: 0.5em;
}
@media print, screen and (min-width:641px) {
  .signs-gp_item {
    grid-template-columns: max(240px, 33%) auto;
  }
}
@media print, screen and (max-width:760px) {
  .signs-gp_item .photo img {
    aspect-ratio: 2 / 1;
  }
}

/*--------------------------------------------------------------------------------
  診断結果報告
--------------------------------------------------------------------------------*/
.sec-report {
  padding: var(--space-m) var(--side-space) var(--space-l) var(--side-space);
}
.report {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: grid;
}
.report-hd {
  font-size: var(--fs-4l);
  font-family: var(--ff-wf);
  font-weight: 700;
  line-height: 1.6;
}
.report-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.report-txt .btn {
  padding-top: var(--space-s);
}
@media print, screen and (min-width:961px) {
  .report {
    grid-template-columns: 60% auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
      "report-hd report-photo"
      "report-txt report-photo";
  }
  .report-hd {
    grid-area: report-hd;
  }
  .report-txt {
    grid-area: report-txt;
    padding-right: var(--space-m);
    padding-top: var(--space-2s);
  }
  .report-photo {
    grid-area: report-photo;
  }
}
@media print, screen and (max-width:960px) {
  .report-hd {
    padding-bottom: var(--space-s);
  }
  .report-txt {
    padding-top: var(--space-s);
  }
  .report-photo img {
    aspect-ratio: 2 / 1;
  }
}
