@charset "UTF-8";

/* 共通 */
.lsd > li {
  list-style: disc;
}
h2 {
  width: 100%;
}

/* flex */
.jcc {
  justify-content: center !important;
}
.jcs {
  justify-content: start !important;
}
.aic {
  align-items: center !important;
}
.ais {
  align-items: stretch !important;
}

/* grid */
.grid2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid5 {
  grid-template-columns: repeat(5, 1fr);
}

/* gap */
.g05 {
  gap: 0.5rem;
}
.g1 {
  gap: 1rem;
}
.g2 {
  gap: 2rem;
}

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

/* PC */
@media screen and (min-width: 680px) {
  /* flex */
  .flexBox {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .flexBox > div {
    flex-grow: 1;
  }

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

  /* gird */
  .gridBox {
    display: grid;
  }

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

  /* width */
  .w60per {
    width: 60% !important;
  }
  .w40per {
    width: 40% !important;
  }

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

  /* 打ち消し */
  .floatN {
    float: none !important;
  }

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

  /* やむを得ず追加 */
  /* ハウスクリーニング */
  .muryou {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.25rem;
  }

  /* 教習所 */
  .moving {
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* サン工房-1 */
  div.w4to6 > div:first-of-type {
    width: 40%;
  }
  /* サン工房-2 */
  div.w4to6 > div:last-of-type {
    width: 60%;
  }
}

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

/* SP */
@media screen and (max-width: 679px) {
  /* flex_sp */
  .flexBox_sp {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .flexBox_sp > div {
    flex-grow: 1;
  }
  .fd-cr {
    flex-direction: column-reverse;
  }

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

  /* width */
  .w60per_sp {
    width: 60% !important;
  }
  .w40per_sp {
    width: 40% !important;
  }

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

  /* やむを得ず追加 */
  /* 谷工務店 */
  .tani_sp {
    padding-left: 2.5rem;
  }
}
