@charset "utf-8";

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

.sec-intro {
  padding: var(--space-m) var(--side-space);
}
.intro {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  text-align: left;
}
.intro .txt_lead {
  font-family: var(--ff-wf);
  font-weight: 700;
  padding-bottom: var(--space-2s);
}
.intro .txt_lead .line2 {
  font-size: 130%;
  display: block;
  padding-top: 0.5rem;
  color: var(--red);
  line-height: 1.4;
}
.intro .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width:961px) {
  .intro {
    grid-template-columns: 60% auto;
  }
  .intro .txt {
    padding-right: var(--space-m);
  }
  .intro .txt_lead .line2 span:last-of-type {
    display: block;
  }
}
@media print, screen and (max-width:960px) {
  .sec-intro {
    padding-bottom: var(--space-l);
  }
  .intro .txt {
    padding-bottom: var(--space-s);
  }
  .intro .photo img {
    aspect-ratio: 2 / 1;
  }
}

/*--------------------------------------------------------------------------------
  例えばこんな災害
--------------------------------------------------------------------------------*/
.sec-ex {
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  overflow: hidden;
}
.ex {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  position: relative;
}
.ex-col1 {
  padding-top: var(--space-m);
}
.ex-col1:before {
  content: "";
  width: 100vw;
  min-width: 360px;
  height: calc(100% - var(--space-l));
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: var(--bg-blue);
  z-index: -1;
}
.ex-line1 b {
  margin-top: 0.5rem;
  display: inline-block;
  line-height: 1.6;
}
.ex-col2 {
  padding-top: var(--space-s);
}
.ex-line2 span {
  display: inline-block;
  margin-bottom: 1rem;
}
.ex-line2 b {
  font-family: var(--ff-wf);
  font-weight: 700;
}
.ex-list {
  list-style: none;
  display: grid;
  text-align: center;
  padding-top: var(--space-s);
}
.ex-list li {
  display: flex;
  background-color: #FFF;
}
.ex-list li .img,
.ex-list li .txt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
.ex-list li .img img {
  width: 80%;
}
.ex-list li .txt {
  flex-grow: 1;
  height: 100%;
  line-height: 1.5;
  padding: 1.2em 1em;
  background-color: var(--blue);
  color: #FFF;
  font-size: var(--fs-m);
}
@media print, screen and (min-width:761px) {
  .ex-list {
    grid-template-columns: repeat(3,1fr);
  }
  .ex-list li {
    flex-direction: column;
  }
  .ex-list li .img {
    padding: calc(var(--space-2s) + 1em) var(--space-2s);
    border-left: 1px solid rgba(var(--blue-rgba),0.1);
  }
  .ex-list li:first-child .img {
    border-left-color: #FFF;
  }
  .ex-list li .txt {
    border-left: 1px solid rgba(255,255,255,0.15);
  }
  .ex-list li:first-child .txt {
    border-left-color: var(--blue);
  }
}
@media print, screen and (max-width:760px) {
  .ex-list li:not(:first-child) .img {
    border-top: 1px solid rgba(var(--blue-rgba),0.1);
  }
  .ex-list li:not(:first-child) .txt {
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .ex-list li .img {
    padding: var(--space-2s);
    width: 40%;
    min-width: 140px;
  }
  .ex-list li .txt {
    width: 60%;
  }
}

/*--------------------------------------------------------------------------------
  サポート
--------------------------------------------------------------------------------*/
.sec-support {
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  padding-top: var(--space-s);
  padding-bottom: var(--space-l);
}
.support {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.support p:not(:first-of-type) {
  padding-top: var(--space-2s);
}
