@charset "utf-8";
/*----------------------------------------------------------------------------------------------------

  解体店舗例
  
----------------------------------------------------------------------------------------------------*/
.ex__img {
  padding: 0.25em;
}
@media print, screen and (min-width:641px) {
  .ex {
    display: flex;
    flex-wrap: wrap;
  }
  .ex__txt1 {
    width: 100%;
    order: 0;
  }
  .ex__img {
    align-self: flex-end;
    width: 30%;
    order: 2;
  }
  .ex__txt2 {
    width: 70%;
    order: 1;
    padding-right: var(--box-space-m);
  }
}
@media screen and (max-width:640px) {
  .ex__img {
    text-align: center;
    padding-top: 1em;
  }
  .ex__img img {
    width: 50%;
    max-width: 200px;
  }
}

/*----------------------------------------------------------------------------------------------------

  解体を行なう店舗の種別
  
----------------------------------------------------------------------------------------------------*/
.type__box {
  width: 100%;
  background-color: #fff;
  line-height: var(--line-height-m);
  padding: var(--box-space-m);
  font-size: var(--fs-s);
}
.type__box .ttl {
  font-size: var(--fs-l);
  color: var(--color-green);
}
@media print, screen and (min-width:641px) {
  .type {
    display: flex;
  }
  .type__box {
    text-align: center;
  }
  .type__box:not(:first-of-type) {
    border-left: 1px solid rgba(0,0,0,0.15);
  }
  .type__box:first-of-type {
    border-radius: 0 0 0 0.5rem;
  }
  .type__box:last-of-type {
    border-radius: 0 0 0.5rem 0;
  }
  .type__box .ttl:after {
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .type__box--tenant .ttl:after { background-image: url("../image/tenpo_type_ill1.png"); }
  .type__box--dokuritsu .ttl:after { background-image: url("../image/tenpo_type_ill2.png"); }
  .type__box--ogara .ttl:after { background-image: url("../image/tenpo_type_ill3.png"); }
}
@media screen and (max-width:640px) {
  .type__box:not(:first-of-type) {
    border-top: 1px solid rgba(0,0,0,0.15);
  }
  .type__box:last-of-type {
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .type__box p {
    padding-left: 28%;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 24% auto;
  }
  .type__box--tenant p { background-image: url("../image/tenpo_type_ill1.png"); }
  .type__box--dokuritsu p { background-image: url("../image/tenpo_type_ill2.png"); }
  .type__box--ogara p { background-image: url("../image/tenpo_type_ill3.png"); }
}
