@charset "UTF-8";
.m_PConly {
  display: none;
}

@media screen and (min-width: 960px) {
  .m_PConly {
    display: block;
  }
}

/*　レイアウト系　*/
.m_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m_flex-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.m_flex-3 > * {
  width: 48%;
}

.m_flex-3 > *:nth-of-type(odd) {
  margin-right: 4%;
}

.m_flex-js {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.m_flex-sa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.m_flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.m_flex-re {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.m_floatBox-center {
  text-align: center;
}

.m_floatBox-center > * {
  display: inline;
}

.m_flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .m_flex-3 > * {
    width: 32%;
  }
  .m_flex-3 > *:not(:nth-of-type(3n)) {
    margin-right: 2%;
  }
  .m_flex-3 > *:nth-of-type(3n) {
    margin-right: 0;
  }
}

.m_grid {
  display: -ms-grid;
  display: grid;
}

/* テーブル */
.m_table01 th,
.m_table01 td {
  display: block;
}

.m_table01 th {
  background-color: #fffcdb;
  text-align: left;
}

.m_table01 td input,
.m_table01 td select,
.m_table01 td textarea {
  border: 1px solid #a8a8a8;
  width: 100%;
  padding: 0.5em 1em;
}

.m_table01 td input[type="radio"],
.m_table01 td input[type="checkbox"] {
  width: 1em;
}

.m_table01 td input[type="file"] {
  border: none;
}

/* 装飾系 */
.br-8 {
  border-radius: 10px;
}

@media screen and (min-width: 960px) {
  .m_PConly {
    display: block;
  }
  .m_table01 {
    border: 1px solid #888;
  }
  .m_table01 tr {
    display: table;
    width: 100%;
  }
  .m_table01 tr:not(:last-of-type) th,
  .m_table01 tr:not(:last-of-type) td {
    border-bottom: 1px solid #888;
  }
  .m_table01 th,
  .m_table01 td {
    display: table-cell;
    text-align: center;
  }
  .m_table01 th {
    width: 35%;
  }
  .m_table01 td {
    border-left: 1px solid #888;
    text-align: center;
  }
}

/* テキスト系 */
.m_font-80 {
  font-size: 80%;
}
/*# sourceMappingURL=module.css.map */