@charset "UTF-8";

html, body {
  margin: 0;
  line-height: 1.8;
  background: #ffffff;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 1em;
  color: #333333;
  font-weight: 300;
}
a {
  text-decoration: underline;
  color: #2B70BE;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
@media print, screen and (min-width: 700px) {
  a:hover, a:visited {
    color: #85b4e9;
  }
}



/*-- HEADER (BP: 0, 700) -----------------------------------------------------*/
nav {
  background: #2B70BE;
}
nav ul {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  list-style: none;
  font-size: 0.9em;
}
nav ul li {
  margin: 0 2.5%;
  height: 45px;
  text-align: center;
}
nav ul li:first-child {
  margin: 0 auto 0 2.5%;
}
nav ul li a {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  color: #ffffff;
}
nav ul li a:hover, a:visited {
  color: #ffffff;
}
nav ul li:first-child a {
  font-family: 'Noto Serif JP', serif;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
}
@media print, screen and (min-width: 700px) {
  nav ul {
    padding: 0;
  }
  nav ul li:first-child a {
    font-size: 1.4em;
  }
}



/*-- HEADING (BP: 0, 700) -----------------------------------------------------*/
h1 {
  margin: 50px 0 0 0;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 2em;
  font-weight: 700;
  color: #2B70BE;
}
h2 {
  max-width: 1100px;
  margin: 60px auto 20px auto;
  padding: 0 5%;
  font-size: 1.2em;
  color: #000000;
}
.faq-one h2 {
  margin: 30px auto 20px auto;
}
@media print, screen and (min-width: 700px) {
  h1 {
    margin: 60px 0 0 0;
    font-size: 2.5em;
  }
  h2 {
    margin: 60px auto 30px auto;
    font-size: 1.6em;
  }
  .faq-one h2 {
    margin: 40px auto 30px auto;
  }
}
@media print, screen and (min-width: 1000px) {
  h1 {
    font-size: 3.5em;
  }
  h2 {
    font-size: 1.8em;
  }
}



/*-- FAQ LIST (BP: 0, 700, 1200)----------------------------------------------*/
.faq-list {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: #E6E6E6 solid 1px;
  font-size: 1em;
}
.faq-list dt::before {
  content: 'Q';
  display: inline-block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1.4em;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4em;
  font-weight: 700;
  color: #2B70BE;
}
.faq-list dt {
  position: relative;
  padding: 1em 2em;
  border-top: #E6E6E6 solid 1px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
}
.faq-list dt span {
  display: block;
  position: absolute;
  top: 1.8em;
  left: calc(100% - 1.5em);
  width: 15px;
  height: 2px;
  background: #666666;
}
.faq-list dt span:last-child {
  top: 1.8em;
  left: calc(100% - 1.5em);
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform .3s linear;
}
.faq-list dt span.closs-close {
  transform: rotate(0deg);
  transition: transform .3s linear;
}
.faq-list dd {
  display: block;
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 0 0 0 2em;
  line-height: 0;
  border-top: 0 white solid;
  color: #666666;
  transition:
    visibility .1s ease-out,
    opacity .1s ease-out,
    padding-top .4s ease-out,
    padding-bottom .4s ease-out,
    line-height .2s ease-out,
    border-top .4s ease-out;
}
.faq-list dd.open {
  visibility: visible;
  opacity: 1;
  margin: 0;
  padding: 0 0 1em 2em;
  line-height: 1.6;
  border-top: 1px white solid;
  transition:
    visibility .5s linear,
    opacity .5s linear,
    padding-top .5s ease-out,
    padding-bottom .5s ease-out,
    line-height .2s ease-out,
    border-top .5s ease-out;
}
.small-text {
  display: inline-block;
  padding: 0 0 0 -1em;
  text-indent: 1;
  font-size: 0.8em;
  color: #666666;
}
@media print, screen and (min-width: 700px) {
  .faq-list {
    font-size: 1.1em;
  }
  .faq-list dt::before {
    top: 0.4em;
  }
}
@media print, screen and (min-width: 1200px) {
  .faq-list {
    font-size: 1.2em;
  }
  .faq-list dt::before {
    top: 0.1em;
    width: 1.7em;
    font-size: 1.7em;
  }
  .faq-list dt {
    padding: 1em 2em 1em 2.75em;
  }
  .faq-list dd {
    padding: 0 0 0 2.75em;
  }
  .faq-list dd.open {
    padding: 0 0 1em 2.75em;
  }
}



/*-- FOOTER (BP: 0, 700, 1000) -----------------------------------------------*/
.note {
  max-width: 1100px;
  margin: 50px auto 0 auto;
  padding: 0 5%;
  font-size: 1em;
}
.note a:hover, .note a:visited {
  color: #2B70BE;
}
.copyright {
  margin: 40px 0 20px 0;
  text-align: center;
  font-size: 0.7em;
}
.copyright .bq {
  display: block;
}
@media print, screen and (min-width: 700px) {
  .note {
    font-size: 1.1em;
  }
  .copyright .bq {
    display: none;
  }
}
@media print, screen and (min-width: 1000px) {
  .note {
    font-size: 1.2em;
  }
  .copyright {
    font-size: 0.8em;
  }
}
