@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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  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 {
  vertical-align: bottom;
}

*, *:before, *:after {
  /* width は border と padding　を加算して算出  */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}

/*

@mixin font-face-url($name, $path,$weight: null, $style: null, $exts: woff otf ttf) {
  $src: null;
  $formats: (
    woff: "woff",
    otf: "opentype",
    ttf: "truetype"
  );

  @each $ext in $exts {
    $format: map-get($formats, $ext);
    $src: append($src, url(quote($path)) format(quote($format)), comma);
  }

  @font-face {
    font-family: quote($name);
    font-style:  $style;
    font-weight: $weight;
    src: $src;
  }
}

@mixin font-face-local($name,  $path,$weight: null, $style: null, $exts: woff otf ttf) {
  $src: null;

  $formats: (
    woff: "woff",
    otf: "opentype",
    ttf: "truetype"
  );

  @each $ext in $exts {
    $format: map-get($formats, $ext);
    $src: append($src, local(quote($path)) format(quote($format)), comma);
  }

  @font-face {
    font-family: quote($name);
    font-style:  $style;
    font-weight: $weight;
    src: $src;
  }
}

*/
a:link, a:visited {
  color: #0a2278;
}

a:active, a:hover {
  color: #0a2278;
}

main {
  padding: 0 15px;
}
main #faq {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 30px 0;
}
main #faq ul {
  max-width: 900px;
  margin: 0 20px 30px;
}
main #faq ul li {
  border-bottom: dashed 1px #ddd;
  background-image: url(../image/faq/listleft.png);
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: 10px;
  line-height: 1.5;
}
main #faq ul li:hover {
  background-color: #eaf6ff;
}
main #faq ul li a {
  display: block;
  padding: 10px 20px 10px 25px;
}
main #faq > section {
  max-width: 900px;
  background-color: #eaeaea;
  border-radius: 10px;
  margin: 20px 20px 20px 0;
  padding: 15px;
  margin: 0 auto;
}
main #faq > section h2 {
  font-weight: bold;
  font-size: 125%;
  padding: 5px;
  line-height: 1.5;
  border-bottom: solid 2px #031c47;
  color: #031c47;
}
main #faq > section > div {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
main #faq > section > div > div:first-of-type {
  width: 5%;
  line-height: 1.5;
  color: #b12b44;
  font-weight: bold;
}
main #faq > section > div > div:last-of-type {
  width: 95%;
  line-height: 1.5;
}
main #faq > section > div > div:last-of-type h4 {
  font-weight: bold;
}
main #faq > section > div > div:last-of-type h4:nth-of-type(n+2) {
  margin-top: 15px;
}
main #faq > section > div > div:last-of-type span {
  color: #cc0000;
}
main #faq > section + a {
  display: block;
  text-align: right;
  margin: 10px 20px 40px 20px;
  font-size: 88%;
}
@media screen and (max-width: 768px) {
  main {
    min-width: 320px;
  }
  main #faq {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
  }
  main #faq ul {
    margin: 0 0 30px;
  }
  main #faq ul li {
    border-bottom: dashed 1px #ddd;
    background-image: url(../image/faq/listleft.png);
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 10px;
    line-height: 1.5;
  }
  main #faq ul li:hover {
    background-color: #eaf6ff;
  }
  main #faq ul li:last-of-type {
    border-bottom: none;
  }
  main #faq ul li a {
    display: block;
    padding: 10px 20px 10px 25px;
  }
  main #faq > section > div > div:first-of-type {
    width: 3%;
  }
  main #faq > section > div > div:last-of-type {
    width: 97%;
    padding-left: 5px;
  }
}
