@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 62.5%;
  font: inherit;
  line-height: 1.6;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
}
ol, ul, li {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  width: 100%;
  vertical-align: bottom;
}
h1 {
  font-size: 3em;
  font-weight: 600;
}
h2 {
  font-size: 2em;
  font-weight: 600;
}
h3 {
  font-size: 1.6em;
  font-weight: 600;
}
h4 {
  font-size: 1.4em;
  font-weight: 600;
}
h5 {
  font-size: 1.1em;
  font-weight: 600;
}
h6 {
  font-size: .8em;
  font-weight: 600;
}
/* フレックスボックス */
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.flex2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.flex5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.flexno {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.flex2no {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
/*grid*/
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1em;
}
/*grid*/
.grid2t {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1em;
		  text-align: center;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1em;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1em;
}
.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1em;
}
/*--- END_SPF ---*/
@media screen and (max-width: 620px) {
  .flex2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
  nav .flex2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
  .flexno {
    justify-content: center;
}
  /*grid*/
  .grid3, .grid4, .grid5 {
    grid-template-columns: repeat(1, 1fr);
  }
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.3em;
  }
  h4 {
    font-size: 1.1em;
  }
  h5 {
    font-size: 1em;
  }
  h6 {
    font-size: .8em;
  }
}
/*--- END_960 ---*/