/* ----------------------------------------------------------------------------
/* reset
---------------------------------------------------------------------------- */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
}
body {
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}
a, a:link, a:active, a:visited, a:hover, a:focus {
  text-decoration: none;
}
body * {
  text-shadow: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: normal;
}
dl, dl dt, dl dd {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}
a {
  color: #333333;
  transition: 0.7s;
}





/* ----------------------------------------------------------------------------
/* common
---------------------------------------------------------------------------- */
body {
  position: relative;
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6em;
  color: #333333;
}
body {
  background-color: #f9f9f9;
}
#container {
  display: grid;
  place-content: center;
  width: calc(100% - 40px);
  min-height: calc(100vh - 80px);
  padding: 40px 20px;
}
#content {
  max-height: calc(100% - 80px);
  padding: 40px 20px;
  background-color: #ffffff;
}
#content h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
#content h1 img {
  width: 100%;
  height: auto;
  max-width: 160px;
  max-height: 50px;
}
#content h1 span {
  display: block;
}
#content > dl {
  margin-top: 40px;
  padding: 20px;
  border: 2px solid #777777;
}
#content dl dt {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
#content a {
  text-decoration: underline;
}
#content a:hover,
#content a:active,
#content a:focus {
  text-decoration: none;
}

@media (960px <= width) {
  #content dl dd + dd {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #aaaaaa;
  }
  #content dl dd + dd {
    display: flex;
    gap: 20px;
  }
  #content dl dd dl {
    flex: 1;
  }
}
@media (width < 960px) {
  #content dl + dl,
  #content dl dd + dd {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #aaaaaa;
  }
}
@media (768px <= width) {
  #content {
    max-height: calc(100% - 120px);
    padding: 60px;
  }
}


