@charset "UTF-8";
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  #wrap {
    /*tablet*/
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  #wrap {
    /*sp*/
    overflow: hidden;
  }
}

/*---------------------------
header
----------------------------*/
header {
  margin: 0px;
  font-size: 10px;
  text-align: left;
  background-color: #333;
  padding: 1.5rem 1.0rem 1.0rem 1.0rem;
}
@media screen and (max-width: 767px) {
  header {
    background-color: rgba(0, 0, 5, 0.8);
  }
}
header .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}
@media screen and (max-width: 767px) {
  header .inner {
    max-width: 98%;
  }
}
header .inner h1 {
  width: 100%;
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 1.0rem;
  text-align: center;
  font-family: 'Arial' , 'メイリオ';
}
header .inner h1 a {
  color: #fff;
  text-decoration: none;
}

/*---------------------------
nav
-----------------------------*/
nav {
  width: 100%;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  nav ul {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  nav ul {
    justify-content: flex-start;
  }
}
nav ul li a {
  color: #fff;
  padding: 1.0rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
}
nav ul li a:link, nav ul li a:visited {
  color: #fff;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  nav ul li a {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  nav ul li a {
    font-size: 0.8rem;
    padding: 0.2rem 0.2rem;
  }
}

/*---------------------------
footer
---------------------------*/
footer {
  width: 100%;
  margin: 0px;
  text-align: center;
  padding: 40px 0px;
  background-color: #333;
}
footer .inner .logo {
  margin-bottom: 1.0rem;
}
footer .inner .logo img {
  width: 210px;
  height: auto;
}
@media screen and (max-width: 767px) {
  footer .inner .logo img {
    width: 200px;
  }
}
footer .inner p {
  color: #fff;
  font-size: 0.8rem;
}

/*----------------------
main
------------------------*/
main {
  width: 100%;
  display: block;
}

/*---------------------------
common
-----------------------------*/
* .inner {
  max-width: 1000px;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  * .inner {
    /*tablet*/
    max-width: 96%;
  }
}
@media screen and (max-width: 767px) {
  * .inner {
    max-width: 96%;
  }
}

* {
  box-sizing: border-box;
}

.pagetop {
  background-image: url(../img/pagetop.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 0px;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 40px;
    height: 40px;
  }
}

/*レスポンシブ*/
.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.sp_tel {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_tel {
    width: 100%;
    display: block;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 1.0rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

h2.line {
  font-size: 1.8rem;
  color: #006BB3;
  padding-bottom: 1.0rem;
  margin-bottom: 2.0rem;
  border-bottom: 2px solid #006BB3;
  text-align: left;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  h2.line {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}
