::-moz-selection {
  background: #111;
  color: #fafafa;
}

::selection {
  background: #111;
  color: #fafafa;
}

::-moz-selection {
  background: #111;
  color: #fafafa;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style: none;
}

p {
  margin-bottom: 1em;
  line-height: 2;
}

p:last-child {
  margin-bottom: 0;
}

p a {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #111;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover, a:link, a:active, a:focus {
  color: #fafafa;
}

a:hover {
  opacity: 0.6;
}

body {
  background: #fafafa;
  color: #111;
  font-family: 'Noto Serif JP', serif;
  max-width: 100%;
}

h2 {
  border-bottom: 3px solid #cce4ff;
  max-width: 250px;
  margin: 0 auto 30px;
  position: relative;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #0149AC;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 360px) {
  header .logo {
    display: none;
  }
}

header .logo img {
  max-width: 55px;
  height: auto;
}

header nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 370px) {
  header nav {
    margin: auto;
  }
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
}

@media screen and (max-width: 370px) {
  header nav ul {
    padding: 0;
  }
}

header nav ul li {
  padding: 10px;
}

@media screen and (max-width: 466px) {
  header nav ul li {
    font-size: 0.8em;
  }
}

header nav ul li a {
  color: #fafafa;
}

header nav ul li a:hover {
  opacity: 0.8;
}

header nav .contact {
  background: #fafafa;
  padding: 5px 10px;
  margin: 0 30px;
}

@media screen and (max-width: 706px) {
  header nav .contact {
    display: none;
  }
}

header nav .contact a {
  display: inline-block;
  color: #0149AC;
  font-weight: bold;
}

header nav .contact a:hover {
  opacity: 0.8;
}

header nav .contact a span {
  font-size: 1.1em;
}

header nav .contact a img {
  padding-right: 10px;
}

/* .mainvisual {
  position: relative;
}

.mainvisual img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
  vertical-align: top;
}

.mainvisual .txt_box {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #0149AC;
  padding: 3% 5%;
}

@media screen and (max-width: 480px) {
  .mainvisual .txt_box {
    display: none;
  }
}

.mainvisual .txt_box p {
  text-align: center;
}

.mainvisual .txt_box p:first-of-type {
  font-size: 4.0em;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 5px solid #0149AC;
  margin-bottom: 20px;
}

@media screen and (max-width: 1085px) {
  .mainvisual .txt_box p:first-of-type {
    font-size: 2.0em;
  }
}

@media screen and (max-width: 600px) {
  .mainvisual .txt_box p:first-of-type {
    font-size: 1.5em;
  }
} */

/* animation */
.visible {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.effect {
  -webkit-animation-name: brightness;
          animation-name: brightness;
  opacity: 1;
  -webkit-transition: .8s;
  transition: .8s;
}

@-webkit-keyframes brightness {
  0% {
    opacity: 0;
    -webkit-filter: brightness(120%);
            filter: brightness(120%);
  }
  100% {
    opacity: 1;
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
}

@keyframes brightness {
  0% {
    opacity: 0;
    -webkit-filter: brightness(120%);
            filter: brightness(120%);
  }
  100% {
    opacity: 1;
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
}

.message {
  background: -webkit-gradient(linear, left top, right bottom, from(#3389FF), to(#003C8E));
  background: linear-gradient(to bottom right, #3389FF, #003C8E);
}

.message .inner {
  margin: auto;
  color: #fafafa;
  max-width: 1200px;
  padding: 50px;
}

@media screen and (max-width: 562px) {
  .message .inner {
    padding: 20px;
  }
}

.message .inner h1 {
  font-size: 5.0em;
  color: #EBC21F;
}

@media screen and (max-width: 1010px) {
  .message .inner h1 {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 562px) {
  .message .inner h1 {
    font-size: 1.6em;
  }
}

@media screen and (max-width: 405px) {
  .message .inner h1 {
    font-size: 1.1em;
  }
}

.message .inner p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

@media screen and (max-width: 562px) {
  .message .inner p {
    font-size: 0.9em;
  }
}

#about {
  text-align: center;
  color: #044AB4;
}

#about .inner {
  position: relative;
  padding: 100px;
  overflow: hidden;
}

@media screen and (max-width: 562px) {
  #about .inner {
    padding: 20px;
  }
}

#about .inner .bg {
  font-size: 30.0em;
  color: #5698F2;
  opacity: 0.1;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 1400px) {
  #about .inner .bg {
    font-size: 25em;
  }
}

@media screen and (max-width: 1200px) {
  #about .inner .bg {
    font-size: 20em;
  }
}

@media screen and (max-width: 1000px) {
  #about .inner .bg {
    font-size: 15em;
  }
}

@media screen and (max-width: 800px) {
  #about .inner .bg {
    font-size: 10em;
  }
}

@media screen and (max-width: 600px) {
  #about .inner .bg {
    font-size: 5em;
  }
}

@media screen and (max-width: 400px) {
  #about .inner .bg {
    font-size: 3em;
    top: 19%;
  }
}

#about .inner h2 {
  font-size: 2.5em;
  color: #EBC21F;
}

@media screen and (max-width: 400px) {
  #about .inner h2 {
    margin-bottom: 60px;
  }
}

#about .inner p {
  margin-bottom: 60px;
  font-size: 1.2em;
  line-height: 1.4;
}

#about .inner p .sp {
  display: none;
}

@media screen and (max-width: 630px) {
  #about .inner p .sp {
    display: block;
  }
}

@media screen and (max-width: 729px) {
  #about .inner p {
    font-size: 1.0em;
  }
}

#about .inner img {
  width: 800px;
}

#service {
  text-align: center;
  color: #fafafa;
}

#service .inner {
  position: relative;
  padding: 100px;
  background: -webkit-gradient(linear, left top, right bottom, from(#3389FF), to(#003C8E));
  background: linear-gradient(to bottom right, #3389FF, #003C8E);
  z-index: -2;
  overflow: hidden;
}

@media screen and (max-width: 990px) {
  #service .inner {
    padding: 20px;
  }
}

#service .inner .bg {
  font-size: 30.0em;
  color: #5698F2;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 1400px) {
  #service .inner .bg {
    font-size: 25em;
  }
}

@media screen and (max-width: 1200px) {
  #service .inner .bg {
    font-size: 20em;
  }
}

@media screen and (max-width: 1000px) {
  #service .inner .bg {
    font-size: 15em;
  }
}

@media screen and (max-width: 800px) {
  #service .inner .bg {
    font-size: 10em;
    top: 5%;
  }
}

@media screen and (max-width: 600px) {
  #service .inner .bg {
    font-size: 5em;
  }
}

@media screen and (max-width: 400px) {
  #service .inner .bg {
    font-size: 4em;
  }
}

#service .inner h2 {
  font-size: 2.5em;
  color: #EBC21F;
}

#service .inner p {
  font-size: 1.2em;
  line-height: 1.4;
}

@media screen and (max-width: 729px) {
  #service .inner p {
    font-size: 1.0em;
  }
}

#service .inner .contents .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

#service .inner .contents .list .item_box {
  text-align: center;
  padding: 35px;
  width: calc(100% / 3);
}

@media screen and (max-width: 990px) {
  #service .inner .contents .list .item_box {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 738px) {
  #service .inner .contents .list .item_box {
    width: 100%;
  }
}

#service .inner .contents .list .item_box .img_box img {
  width: 150px;
  margin-bottom: 8px;
  border-radius: 50%;
}

@media screen and (max-width: 740px) {
  #service .inner .contents .list .item_box .img_box img {
    width: 100px;
  }
}

#service .inner .contents .list .item_box .txt_box h3 {
  margin-bottom: 10px;
}

#service .inner .contents .list .item_box .txt_box p {
  font-size: 0.9em;
  max-width: 450px;
}

#service .inner .contents p {
  margin: 0 auto 20px;
  max-width: 800px;
  padding: 0 4%;
  font-size: 0.9em;
  line-height: 1.6;
}

#company {
  text-align: center;
  color: #044AB4;
}

#company .inner {
  position: relative;
  padding: 100px;
  overflow: hidden;
}

@media screen and (max-width: 740px) {
  #company .inner {
    padding: 50px 10px;
  }
}

#company .inner .bg {
  font-size: 30.0em;
  color: #5698F2;
  opacity: 0.1;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 1400px) {
  #company .inner .bg {
    font-size: 25em;
  }
}

@media screen and (max-width: 1200px) {
  #company .inner .bg {
    font-size: 20em;
  }
}

@media screen and (max-width: 1000px) {
  #company .inner .bg {
    font-size: 15em;
  }
}

@media screen and (max-width: 800px) {
  #company .inner .bg {
    font-size: 10em;
  }
}

@media screen and (max-width: 600px) {
  #company .inner .bg {
    top: 15%;
    font-size: 5em;
  }
}

@media screen and (max-width: 400px) {
  #company .inner .bg {
    font-size: 3em;
  }
}

#company .inner h2 {
  font-size: 2.5em;
  color: #EBC21F;
}

#company .inner table {
  margin: 0 auto;
  text-align: left;
}

#company .inner table tr {
  display: block;
  border-bottom: solid 1px #ddd;
  padding: 30px 10px;
  font-size: 15px;
  letter-spacing: .08em;
}

@media screen and (max-width: 562px) {
  #company .inner table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#company .inner table tr th {
  width: 150px;
}

#member {
  text-align: center;
  color: #fafafa;
  background: -webkit-gradient(linear, left top, right bottom, from(#3389FF), to(#003C8E));
  background: linear-gradient(to bottom right, #3389FF, #003C8E);
}

#member .inner {
  position: relative;
  padding: 100px;
  overflow: hidden;
}

@media screen and (max-width: 1300px) {
  #member .inner {
    padding: 50px;
  }
}

#member .inner .bg {
  font-size: 30.0em;
  color: #5698F2;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 1400px) {
  #member .inner .bg {
    font-size: 25em;
  }
}

@media screen and (max-width: 1200px) {
  #member .inner .bg {
    font-size: 20em;
  }
}

@media screen and (max-width: 1000px) {
  #member .inner .bg {
    font-size: 15em;
  }
}

@media screen and (max-width: 800px) {
  #member .inner .bg {
    font-size: 10em;
    top: 13%;
  }
}

@media screen and (max-width: 600px) {
  #member .inner .bg {
    font-size: 5em;
  }
}

@media screen and (max-width: 400px) {
  #member .inner .bg {
    font-size: 3em;
  }
}

#member .inner h2 {
  font-size: 2.5em;
  color: #EBC21F;
}

#member .inner .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#member .inner .item .item_box {
  text-align: center;
  padding: 35px;
  width: calc(100% / 2);
  z-index: 99;
}

@media screen and (max-width: 680px) {
  #member .inner .item .item_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 30px 0;
  }
}

#member .inner .item .item_box .img_box img {
  width: 150px;
}

@media screen and (max-width: 480px) {
  #member .inner .item .item_box .img_box img {
    width: 100px;
  }
}

#member .inner .item .item_box .txt_box p {
  font-size: 0.9em;
}

#member .inner .item .message_member {
  margin: 30px auto 0;
}

#member .inner .item .message_member h4 {
  margin-bottom: 5px;
  font-size: 1.4em;
}

@media screen and (max-width: 480px) {
  #member .inner .item .message_member h4 {
    font-size: 1.2em;
  }
}

#member .inner .item .message_member p {
  max-width: 800px;
  font-size: 0.9em;
}

#contact {
  text-align: center;
  color: #044AB4;
}

#contact .inner {
  position: relative;
  padding: 50px;
  overflow: hidden;
}

@media screen and (max-width: 562px) {
  #contact .inner {
    padding: 20px;
  }
}

#contact .inner .bg {
  font-size: 30.0em;
  color: #5698F2;
  opacity: 0.1;
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 1400px) {
  #contact .inner .bg {
    font-size: 25em;
  }
}

@media screen and (max-width: 1200px) {
  #contact .inner .bg {
    font-size: 20em;
  }
}

@media screen and (max-width: 1000px) {
  #contact .inner .bg {
    font-size: 15em;
  }
}

@media screen and (max-width: 800px) {
  #contact .inner .bg {
    font-size: 10em;
  }
}

@media screen and (max-width: 600px) {
  #contact .inner .bg {
    font-size: 5em;
  }
}

@media screen and (max-width: 400px) {
  #contact .inner .bg {
    font-size: 3em;
    top: 13%;
  }
}

#contact .inner h2 {
  font-size: 2.5em;
  color: #EBC21F;
}

@media screen and (max-width: 400px) {
  #contact .inner h2 {
    margin-bottom: 50px;
  }
}

#contact .inner p {
  font-size: 1.2em;
  line-height: 1.4;
}

@media screen and (max-width: 729px) {
  #contact .inner p {
    font-size: 1.0em;
  }
}

#contact .inner .item {
  margin-top: 60px;
}

#contact .inner .item h3 {
  margin: auto;
  font-size: 2.0em;
  border-bottom: 1px solid #0149AC;
  margin-bottom: 30px;
  text-align: left;
  max-width: 1000px;
}

#contact .inner .item h3 small {
  font-size: 0.6em;
  margin-left: 5px;
}

#contact .inner .item .tel {
  font-size: 3.0em;
  margin-bottom: 0;
  color: #111;
}

@media screen and (max-width: 400px) {
  #contact .inner .item .tel {
    font-size: 2.0em;
  }
}

#contact .inner .item p {
  font-size: 14px;
}

@media screen and (max-width: 400px) {
  #contact .inner .item p {
    font-size: 12px;
  }
}

#contact .inner .mail {
  background: #4E8CE0;
  margin: auto;
  max-width: 400px;
  border-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 500px) {
  #contact .inner .mail {
    max-width: 300px;
  }
}

#contact .inner .mail a {
  color: #fafafa;
  font-weight: bold;
  display: block;
  line-height: 80px;
}

#contact .inner .mail a:hover {
  opacity: 0.8;
}

#contact .inner .mail a img {
  padding-right: 20px;
  width: 50px;
  display: inline-block;
  vertical-align: middle;
}

#contact .inner .mail a .btn {
  font-size: 1.5em;
  vertical-align: middle;
}

@media screen and (max-width: 500px) {
  #contact .inner .mail a .btn {
    font-size: 1.1em;
  }
}

footer {
  background: #0149AC;
  text-align: center;
  padding: 20px;
}

footer small {
  color: #fafafa;
}
/*# sourceMappingURL=style.css.map */