@charset "UTF-8";
/*----------------------------------------------
 reset styles
----------------------------------------------*/
main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  display: block;
}
/*----------------------------------------------
 formatting styles
----------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 62.5%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6em; /* =13px */
  line-height: 1.6;
  color: #333;
  min-width: 1200px;
  margin: 0;
}
a {
  text-decoration: none;
}
a:visited {
}
a:hover {
}
img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
}
ul {
  list-style: none;
}
.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
    -webkit-text-size-adjust: 100%;
  }
  th,
  td {
  }
}
/*----------------------------------------------
 clearfix
----------------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
/* ----------------------------------------------
header
----------------------------------------------*/
header {
  display: flex;
  height: 100px;
  align-items: center;
}
header .logo {
  width: 260px;
  margin: 0 auto 20px 20px;
}
header .logo a {
  font-size: 1.1rem;
  color: #000;
}
header .logo img {
  display: block;
  width: 210px;
}
@media screen and (min-width: 768px) {
  header .logo a:hover img {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: auto;
    padding: 0 10px;
    margin: 15px 0;
  }
  header .logo {
    width: 260px;
    margin: 0 auto 0 0;
  }
  header .logo a {
    font-size: 1rem;
    color: #000;
  }
}
/* ----------------------------------------------
 *nav
 *---------------------------------------------- */
nav .btnMenu,
nav .homeBtn {
  display: none;
}
nav ul {
  display: flex;
  margin-right: 30px;
}
nav li {
  margin: 0;
}
nav li a {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 0 10px;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 45%,
    #fff 50%,
    rgba(255, 255, 255, 0) 56%
  );
  background-size: 8px 8px;
  position: relative;
  overflow: hidden;
}
nav li a p {
  display: none;
}
@media screen and (min-width: 768px) {
  nav li.aqua a,
  nav li.dust a {
    padding: 0 15px;
  }
  nav li.aqua a img {
    vertical-align: top;
    padding-bottom: 10px;
  }
  nav li.dust a img {
    vertical-align: top;
    padding-bottom: 15px;
  }
  nav li a::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: "";
  }
  nav li a,
  nav li a::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  nav li a::after {
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
  }
  nav li.aqua a:hover::after {
    top: 0;
    background-color: #e6f7ff;
  }
  nav li.dust a:hover::after {
    top: 0;
    background-color: #ebfcdc;
  }
  nav li a:hover::after {
    top: 0;
    background-color: #e6f0ff;
  }
}
@media screen and (max-width: 767px) {
  nav .btnMenu {
    position: fixed;
    z-index: 100;
    right: 10px;
    top: 10px;
    display: block;
    width: 50px;
    height: 50px;
    padding: 25px 9px 0;
    font-size: 1rem;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
  }
  header nav .menu {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    border-left: none;
    overflow-y: scroll;
  }
  nav ul {
    display: none;
    list-style: none;
    width: 100%;
  }
  nav .homeBtn {
    display: none;
  }
  header nav .btnMenu .line {
    display: block;
    width: 32px;
    background-color: #003f73;
    height: 2px;
    position: relative;
    transition: all 0.5s linear 0s;
  }
  header nav .btnMenu .line::before {
    content: "";
    display: block;
    border-top: 2px solid #003f73;
    position: absolute;
    left: 0;
    top: -8px;
    width: 100%;
    transition: all 0.4s linear 0s;
  }
  header nav .btnMenu .line::after {
    content: "";
    display: block;
    border-top: 2px solid #003f73;
    position: absolute;
    left: 0;
    top: 8px;
    width: 100%;
    transition: all 0.4s linear 0s;
  }
  header nav.open .btnMenu {
    background-color: #fff;
  }
  header nav.open .btnMenu .line {
    background-color: transparent;
    transition: all 0.2s linear 0s;
  }
  header nav.open .btnMenu .line::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-top: 2px solid #003f73;
  }
  header nav.open .btnMenu .line::after {
    top: 0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    border-top: 2px solid #003f73;
  }
  header nav .homeBtn {
    display: block;
  }
  header nav .homeBtn a {
    display: block;
    width: 5em;
    margin: 15px 20px;
    padding: 10px 5px;
    border: 1px solid #415a9b;
    border-radius: 5px;
    font-size: 1.6rem;
    text-align: center;
    color: #415a9b;
  }
  header nav ul {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 0 25px;
  }
  header nav ul li {
    margin: 0;
  }
  header nav ul li + li {
    border-top: 1px solid #e1ebff;
  }
  header nav ul li a {
    display: block;
    height: auto;
    padding: 20px 0;
    text-align: center;
    background: url("../img/header/arrow.png") no-repeat right center;
    background-size: 16px auto;
  }
  header nav ul li a p {
    display: block;
    font-size: 1.5rem;
    color: #333;
  }
  header nav ul li:nth-child(1) img,
  header nav ul li:nth-child(n + 4) img {
    display: none;
  }
  nav li a:active {
    background-color: #e6f0ff;
  }
  nav li.aqua a:active {
    background-color: #e6f7ff;
  }
  nav li.dust a:active {
    background-color: #ebfcdc;
  }
}
/* ----------------------------------------------
main
----------------------------------------------*/
section {
  padding: 110px 0;
}
h1 {
  width: 100%;
  padding: 0 calc((100% - 980px) / 2);
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 45%,
    #a5bedc 50%,
    rgba(255, 255, 255, 0) 56%
  );
  background-size: 8px 8px;
  position: relative;
}
h1::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  content: "";
  width: 26%;
  height: 100%;
  background-color: #a5bedc;
}
h2 {
  position: relative;
  padding: 0 0 15px;
  letter-spacing: 5px;
  font-size: 3.5rem;
  color: #003f73;
  text-align: center;
}
h2::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #003f73;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.leadTxt {
  max-width: 980px;
  margin: 0 auto;
  padding: 100px 0 55px;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section {
    padding: 60px 0;
  }
  h1 {
    width: 100%;
    padding: 0;
    background: none;
  }
  h1::after {
    display: none;
  }
  h2 {
    position: relative;
    padding: 0 0 10px;
    letter-spacing: 5px;
    font-size: 2.3rem;
    color: #003f73;
    text-align: center;
  }
  h2::after {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #003f73;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .leadTxt {
    max-width: 100%;
    padding: 60px 10px 30px;
    font-size: 1.6rem;
    text-align: left;
  }
}
/* ----------------------------------------------
links
----------------------------------------------*/
.links {
  width: 980px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 100px 0;
}
.links .linksBox {
  width: 33.33%;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
}
.links #topic,
.links #glossary,
.links #support {
  background-color: #dfecfc;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 45%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 56%
  );
  background-size: 8px 8px;
}
.links #support2,
.links #qa {
  background-color: #eef7fc;
}
.linksBox .midashi {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #003f73;
}
.links .linksBox .midashi img {
  margin-bottom: 10px;
}

.links .linksBox p {
  color: #003f73;
  justify-content: center;
  margin: 20px 0;
}
.linksBox .midashi p {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.links .linksBox .midashi p br {
  display: block;
}
.links .linksBox a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  margin: auto auto 0;

  border: 2px solid #003f73;
  background-color: #fff;
  color: #003f73;
  font-size: 1.8rem;
}
.links #topic.linksBox a,
.links #glossary.linksBox a {
  justify-content: flex-start;
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .links .linksBox a:hover {
    background-color: #003f73;
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 56%
    );
    background-size: 8px 8px;
    color: #fff;
  }
  .links .linksBox a:hover .iconArrow {
    fill: #fff;
  }
}
@media screen and (max-width: 767px) {
  .links {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  .links .linksBox {
    display: block;
    width: 100%;
    padding: 25px;
    font-size: 1.5rem;
  }
  .linksBox .midashi {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
  .links .linksBox .midashi img {
    margin-bottom: 10px;
  }
  .links .linksBox p {
    text-align: center;
  }
  .links .linksBox p br {
    display: block;
  }
  .linksBox .midashi p {
    display: block;
    height: auto;
    margin-bottom: 0;
  }
  .links .linksBox .midashi p br {
    display: none;
  }
  .links .linksBox a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 245px;
    height: 60px;
    margin: 40px auto 0;
    padding: 0;
    border: 2px solid #003f73;
    background-color: #fff;
    color: #003f73;
    font-size: 1.6rem;
  }
  .links .linksBox a:active {
    background-color: #003f73;
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 56%
    );
    background-size: 8px 8px;
    color: #fff;
  }
  .links .linksBox a:active .iconArrow {
    fill: #fff;
  }
}
/* ----------------------------------------------
footoer
----------------------------------------------*/
.footerList {
  display: flex;
  padding: 60px calc((100% - 815px) / 2);
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 45%,
    rgba(0, 63, 115, 0.1) 50%,
    rgba(255, 255, 255, 0) 56%
  );
  background-size: 8px 8px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.footerList .listBox {
  flex: 0 1 165px;
  max-width: 165px;
}
.footerList .listBox:nth-child(1) {
  flex: 0 1 650px;
  max-width: 650px;
}
.footerList .listBox ul {
  display: flex;
  flex-wrap: wrap;
}
.footerList .listBox ul li {
  width: 50%;
}
.footerList .listBox a {
  display: inline-block;
  padding: 10px;
  color: #333;
}
.footerList .listBox p.title {
  padding: 10px;
}
.footerList .listBox p {
  font-weight: bold;
  font-size: 1.6rem;
}
.footerLogo {
  width: 980px;
  margin: 0 auto;
  padding: 80px 0 50px;
}
.footerLogo .footerImg {
  width: 280px;
  margin: 0 auto 40px;
}
.footerLogo .add {
  display: flex;
  font-size: 1.5rem;
}
.footerLogo #fukuoka.add img {
  vertical-align: middle;
  padding-left: 2px;
}
.footerLogo .add br {
  display: none;
}
.footerLogo .add span.name {
  width: 9em;
  font-weight: bold;
}
.footerLogo .add span.tel {
  width: 325px;
  margin: 0 0 15px auto;
}
#copyright {
  padding: 0 0 75px;
  font-size: 1.4rem;
  color: #808080;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footerList .listBox a:hover {
    color: #fff;
    background-color: #003f73;
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 56%
    );
    background-size: 8px 8px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footerList {
    display: block;
    padding: 40px 25px;
  }
  .footerList .title {
    position: relative;
    padding: 30px 10px 17px;
  }
  .footerList .title:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    /*縦線*/
    width: 17px;
    height: 2px;
    background: #003c8c;
    transition: all 0.2s ease-in-out;
  }
  .footerList .title:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    /*縦線*/
    width: 17px;
    height: 2px;
    background: #003c8c;
    transition: all 0.2s ease-in-out;
    transform: rotate(90deg);
  }
  .footerList .title.open:before {
    transform: rotate(180deg);
  }
  .footerList .title.open:after {
    opacity: 0;
  }
  .footerList .listBox,
  .footerList .listBox:nth-child(2) {
    width: 100%;
    max-width: 100%;
  }
  .footerList .listBox p {
    border-top: 1px solid #c4dcfa;
    font-weight: normal;
  }
  .footerList .listBox:first-of-type p {
    border-top: none;
  }
  .footerList .listBox a {
    display: block;
    padding: 15px 10px;
    color: #333;
    background: url("../img/header/arrow.png") no-repeat right center;
    background-size: 16px auto;
  }
  .footerList .listBox p.title {
    padding: 15px 10px;
  }
  .footerList .listBox ul {
    display: none;
    flex-wrap: wrap;
    border-top: 1px solid #c4dcfa;
  }
  .footerList .listBox ul li {
    width: 100%;
  }
  .footerList .listBox ul li a {
    padding-left: 1.5em;
  }
  .footerLogo {
    width: 100%;
    padding: 0 15px;
  }
  .footerLogo .footerImg {
    width: 280px;
    margin: 50px auto 25px;
  }
  .footerLogo .add {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .footerLogo #fukuoka.add span.name {
    padding-bottom: 5px;
  }
  .footerLogo .add br,
  .footerLogo .add span {
    display: block;
  }
  .footerLogo .add span.name {
    width: auto;
    font-weight: bold;
  }
  .footerLogo .add span.tel {
    width: 100%;
    margin: 0 0 15px auto;
  }
  .footerLogo #fukuoka.add span.tel {
    display: none;
  }
  #copyright {
    padding: 0 0 90px;
    font-size: 1.1rem;
    color: #808080;
    text-align: center;
  }
}
/* ----------------------------------------------
ページ下固定
----------------------------------------------*/
#kotei {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 5;
}
#kotei ul {
  display: flex;
}
#kotei ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background-color: #003f73;
}
#kotei .tel {
  width: 280px;
  background-color: #003f73;
}
#kotei .mail {
  width: 350px;
  margin-left: 1px;
}
@media screen and (min-width: 768px) {
  #kotei ul li a:hover {
    background-color: #002846;
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 56%
    );
    background-size: 8px 8px;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  #kotei {
    position: fixed;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  #kotei ul {
    width: 100%;
    display: flex;
  }
  #kotei .tel {
    width: 50%;
  }
  #kotei .mail {
    width: calc(50% - 1px);
  }
  #kotei ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 10px 5%;
    background-color: #003f73;
  }
  #kotei ul li.tel a {
    padding: 10px 7% 10px 5%;
  }
  #kotei ul li a img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  #kotei ul li a:active {
    background-color: #002846;
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 56%
    );
    background-size: 8px 8px;
  }
}
