@charset "UTF-8";
body {
  margin: 0;
  background-color: #08071F;
  color: white;
  font-family: sans-serif;
}

.center-box {
  margin: 0 auto;
}

@media screen and (min-width: 1200px) {
  .center-box {
    max-width: 1200px;
  }
}

a {
  color: white;
  text-decoration: none;
}

h1, h2, h3, p {
  margin: 0%;
}

h2 {
  font-size: 26px;
  padding-bottom: 5px;
  border-bottom: white 5px solid;
  display: inline-block;
}

@media screen and (max-width: 999px) {
  h2 {
    font-size: 20px;
    border-bottom: white 4px solid;
  }
}

@media screen and (max-width: 499px) {
  h2 {
    font-size: 16px;
    border-bottom: white 4px solid;
  }
}

h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 999px) {
  h3 {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 499px) {
  h3 {
    font-size: 12px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 500px) {
  .sp {
    display: none;
  }
}

@-webkit-keyframes scrollborder {
  0% {
    height: 0em;
  }
  100% {
    height: 6em;
  }
}

@keyframes scrollborder {
  0% {
    height: 0em;
  }
  100% {
    height: 6em;
  }
}

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #08071F;
  z-index: 9999;
  -webkit-animation: byeShutter 3.6s forwards;
  animation: byeShutter 3.6s forwards;
  /* Loading テキスト */
}

.shutter .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border-width: 4px;
  border-style: solid;
  border-color: #fff transparent;
  -webkit-animation: spinner1_1 3s infinite linear forwards;
          animation: spinner1_1 3s infinite linear forwards;
}

.shutter .spinner::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  border-width: 4px;
  border-style: solid;
  border-color: #fff transparent;
  animation: spinner1_2 1.2s infinite linear forwards reverse;
}

.shutter span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: white;
  z-index: 10;
  animation: spinner_loading_text 3s infinite linear forwards reverse;
}

.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen 3s forwards;
  animation: shutterOpen 3s forwards;
}

@-webkit-keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@-webkit-keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

/* ローディング要素のアニメーション内容 */
@-webkit-keyframes spinner1_1 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinner1_1 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes spinner1_2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner1_2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Loading テキストのアニメーション内容 */
@-webkit-keyframes spinner_loading_text {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinner_loading_text {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

header {
  margin: 0;
}

header .header {
  position: fixed;
  height: 100px;
  width: 100%;
  z-index: 1000;
}

header .header .header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

header .header .header-box .top-name h1.top-name {
  font-size: 20px;
  margin: 0;
}

@media screen and (max-width: 999px) {
  header .header .header-box .top-name h1.top-name {
    font-size: 16px;
  }
}

@media screen and (max-width: 499px) {
  header .header .header-box .top-name h1.top-name {
    font-size: 14px;
  }
}

header .header .header-box .top-name h1.top-name a img.top-logo {
  width: 90px;
  vertical-align: middle;
  margin-right: 0px;
  margin-top: -10px;
}

@media screen and (max-width: 999px) {
  header .header .header-box .top-name h1.top-name a img.top-logo {
    width: 80px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 499px) {
  header .header .header-box .top-name h1.top-name a img.top-logo {
    width: 65px;
    margin-left: 5px;
  }
}

header .header .header-box .top-name h1.top-name:hover {
  color: #dbdbdb;
  font-size: 22px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 999px) {
  header .header .header-box .header-list {
    margin-right: 20px;
  }
}

@media screen and (max-width: 499px) {
  header .header .header-box .header-list {
    margin-right: 10px;
  }
}

header .header .header-box .header-list a.header-li {
  font-size: 14px;
  margin: 0 10px;
}

@media screen and (max-width: 999px) {
  header .header .header-box .header-list a.header-li {
    font-size: 12px;
    margin: 0 8px;
  }
}

@media screen and (max-width: 499px) {
  header .header .header-box .header-list a.header-li {
    font-size: 14px;
  }
}

@media screen and (max-width: 700px) {
  header .header .header-box .header-list {
    display: none;
  }
}

header .header .header-box .header-list a.header-li:hover {
  color: #dbdbdb;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

header .header .header-box .hamburger-menu .menu-btn {
  position: fixed;
  top: 16px;
  right: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 700px;
  width: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 300;
  background-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0);
}

@media screen and (max-width: 700px) {
  header .header .header-box .hamburger-menu .menu-btn {
    height: 60px;
    width: 60px;
  }
}

header .header .header-box .hamburger-menu .menu-btn span,
header .header .header-box .hamburger-menu .menu-btn span:before,
header .header .header-box .hamburger-menu .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
}

header .header .header-box .hamburger-menu .menu-btn span:before {
  bottom: 8px;
}

header .header .header-box .hamburger-menu .menu-btn span:after {
  top: 8px;
}

header .header .header-box .hamburger-menu #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /* メニューオープン時は真ん中の線を透明にする */
}

header .header .header-box .hamburger-menu #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /* color: black; */
  color: white;
  /* 足した */
}

header .header .header-box .hamburger-menu #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  color: white;
  /* 足した */
}

header .header .header-box .hamburger-menu #menu-btn-check {
  display: none;
}

header .header .header-box .hamburger-menu .menu-content ul {
  padding: 70px 10px 0;
}

header .header .header-box .hamburger-menu .menu-content ul li {
  border-bottom: solid 1px white;
  list-style: none;
}

header .header .header-box .hamburger-menu .menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

header .header .header-box .hamburger-menu .menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px white;
  border-right: solid 2px white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

header .header .header-box .hamburger-menu .menu-content {
  width: 30%;
  height: 50%;
  position: fixed;
  /* left: 100%;leftの値を変更してメニューを画面外へ */
  right: -35%;
  top: 0%;
  z-index: 280;
  background-color: #08071F;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 499px) {
  header .header .header-box .hamburger-menu .menu-content {
    width: 50%;
    height: 400px;
    right: -55%;
  }
}

header .header .header-box .hamburger-menu #menu-btn-check:checked ~ .menu-content {
  /* left: 0;メニューを画面内へ */
  right: 0;
}

@media screen and (min-width: 701px) {
  header .header .header-box .hamburger-menu {
    display: none;
  }
}

#top .top {
  position: relative;
  background-image: url(/img/FV_pc.jpg);
  width: 100%;
  height: 900px;
  background-size: cover;
  background-position: 0% 60%;
  z-index: -2;
}

@media screen and (max-width: 999px) {
  #top .top {
    background-position: 40% 0;
  }
}

@media screen and (max-width: 499px) {
  #top .top {
    height: 800px;
    background-position: 40% 0%;
  }
}

#top .top .bg-cover {
  position: absolute;
  width: 100%;
  height: 100%;
}

#top .top #particles-js {
  position: fixed;
  /*描画固定*/
  z-index: 100;
  /*描画を一番下に*/
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  /*背景色*/
  z-index: -1;
}

#top .top .FV-contents {
  position: absolute;
  display: inline-block;
  top: 450px;
  left: 13%;
  z-index: 1;
}

@media screen and (max-width: 999px) {
  #top .top .FV-contents {
    top: 500px;
    left: 10%;
  }
}

@media screen and (max-width: 499px) {
  #top .top .FV-contents {
    top: 440px;
    left: 7%;
  }
}

#top .top .FV-contents p {
  font-size: 40px;
  font-weight: bolder;
  color: white;
}

@media screen and (max-width: 999px) {
  #top .top .FV-contents p {
    font-size: 30px;
  }
}

@media screen and (max-width: 499px) {
  #top .top .FV-contents p {
    font-size: 25px;
  }
}

#top .top::after {
  -webkit-transform: translateX(-50%);
  -webkit-animation-name: scrollborder;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform: translateY(-3em);
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: scrollborder;
  background-color: #fff;
  bottom: auto;
  content: "";
  height: 6em;
  left: 50%;
  position: absolute;
  top: 1050px;
  transform: translateX(-50%);
  transform: translateY(-3em);
  width: 0.05em;
  z-index: 10;
  text-decoration: inherit;
  vertical-align: inherit;
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

@media screen and (max-width: 499px) {
  #top .top::after {
    top: 950px;
  }
}

section.organization .organization-box {
  margin-top: 200px;
  margin-bottom: 100px;
  overflow-x: hidden;
  padding: 7em 0 11em;
  position: relative;
  width: 100vw;
  z-index: 0;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 999px) {
  section.organization .organization-box {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 999px) {
  section.organization .organization-box {
    padding: 7em 0 9em;
  }
}

section.organization .organization-box .organization-sentence {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  opacity: 0;
}

section.organization .organization-box .organization-sentence + .organization-sentence {
  margin-top: 50px !important;
}

section.organization .organization-box .organization-sentence.is-scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, -50px) !important;
          transform: translate(0, -50px) !important;
}

@media screen and (max-width: 999px) {
  section.organization .organization-box .organization-sentence.is-scrollIn {
    font-size: 16px;
  }
}

@media screen and (max-width: 499px) {
  section.organization .organization-box .organization-sentence.is-scrollIn {
    font-size: 13px;
  }
}

section.organization .organization-box p, section.organization .organization-box li {
  display: inline-block;
  font-family: "STIX Two Text","Noto Serif JP",serif;
  font-weight: 400;
  letter-spacing: .3em;
  line-height: 2;
  margin: 0 auto;
  text-align: left;
}

section.organization .organization-box:after {
  -webkit-transform: translateX(-50%);
  -webkit-animation-name: scrollborder;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform: translateY(-3em);
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: scrollborder;
  background-color: #fff;
  bottom: auto;
  content: "";
  height: 6em;
  left: 50%;
  position: absolute;
  top: calc(100% - 3em);
  transform: translateX(-50%);
  transform: translateY(-3em);
  width: 0.05em;
  z-index: 10;
  text-decoration: inherit;
  vertical-align: inherit;
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

@media screen and (max-width: 999px) {
  section.organization .organization-box:after {
    top: 380px;
  }
}

@media screen and (max-width: 499px) {
  section.organization .organization-box:after {
    top: 360px;
  }
}

#business {
  padding-top: 150px;
}

@media screen and (max-width: 999px) {
  #business {
    padding-top: 200px;
  }
}

@media screen and (max-width: 499px) {
  #business {
    padding-top: 100px;
    text-align: center;
  }
}

#business div.detail .business-consulting {
  margin-bottom: 200px;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  opacity: 0;
}

@media screen and (max-width: 999px) {
  #business div.detail .business-consulting {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 499px) {
  #business div.detail .business-consulting {
    padding-top: 100px;
  }
}

#business div.detail .business-consulting + .business-consulting {
  margin-top: 50px !important;
}

#business div.detail .business-consulting.is-scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, -50px) !important;
          transform: translate(0, -50px) !important;
}

#business div.detail .MA-consulting {
  margin-bottom: 100px;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  opacity: 0;
}

@media screen and (max-width: 999px) {
  #business div.detail .MA-consulting {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 499px) {
  #business div.detail .MA-consulting {
    margin-bottom: 0px;
  }
}

#business div.detail .MA-consulting + .MA-consulting {
  margin-top: 50px !important;
}

#business div.detail .MA-consulting.is-scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, -50px) !important;
          transform: translate(0, -50px) !important;
}

#business div.detail .consulting-title {
  margin-bottom: 80px;
}

@media screen and (max-width: 999px) {
  #business div.detail .consulting-title {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 499px) {
  #business div.detail .consulting-title {
    margin-bottom: 40px;
  }
}

#business div.detail .consulting-title h2 {
  text-align: center;
}

#business div.detail .contents-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 0 auto;
}

@media screen and (max-width: 499px) {
  #business div.detail .contents-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#business div.detail .detail-box {
  width: 30%;
}

@media screen and (max-width: 499px) {
  #business div.detail .detail-box {
    width: 80%;
    margin: 0 auto 40px auto;
  }
}

#business div.detail img {
  width: 200px;
  display: block;
  margin: 0 auto 40px auto;
  border: white 3px solid;
  border-radius: 50%;
}

@media screen and (max-width: 999px) {
  #business div.detail img {
    width: 150px;
    margin: 0 auto 30px auto;
  }
}

@media screen and (max-width: 499px) {
  #business div.detail img {
    width: 150px;
    margin: 0 auto 20px auto;
  }
}

@media screen and (max-width: 499px) {
  #business div.detail h3 {
    font-size: 18px;
    margin: 0 auto 20px auto;
  }
}

#business div.detail p {
  font-size: 16px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  #business div.detail p {
    font-size: 12px;
  }
}

@media screen and (max-width: 499px) {
  #business div.detail p {
    font-size: 14px;
  }
}

#business div.detail .business-consulting-title {
  width: 500px;
}

@media screen and (max-width: 999px) {
  #business div.detail .business-consulting-title {
    width: 400px;
    margin-left: 5%;
  }
}

@media screen and (max-width: 499px) {
  #business div.detail .business-consulting-title {
    width: 300px;
    margin-left: 0%;
  }
}

#business div.detail .business-consulting-subtitle {
  padding: 12px 0 17px 0;
}

@media screen and (max-width: 999px) {
  #business div.detail .business-consulting-subtitle {
    padding: 11px 0 11px 0;
  }
}

#business div.detail .MA-consulting-title {
  width: 370px;
}

@media screen and (max-width: 999px) {
  #business div.detail .MA-consulting-title {
    width: 295px;
    margin-left: 5%;
  }
}

@media screen and (max-width: 499px) {
  #business div.detail .MA-consulting-title {
    width: 250px;
    margin-left: 0%;
  }
}

#company {
  padding-top: 150px;
  padding-bottom: 200px;
}

@media screen and (max-width: 999px) {
  #company {
    padding-top: 150px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 499px) {
  #company {
    padding-top: 150px;
    padding-bottom: 0px;
  }
}

#company .company {
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  opacity: 0;
}

#company .company + .company {
  margin-top: 50px !important;
}

#company .company.is-scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, -50px) !important;
          transform: translate(0, -50px) !important;
}

#company .company-title {
  margin-left: 4%;
  margin-bottom: 40px;
}

@media screen and (max-width: 499px) {
  #company .company-title {
    margin-left: 6%;
  }
}

#company .company-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media screen and (max-width: 499px) {
  #company .company-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#company .company-box .company-box-contents {
  width: 45%;
  padding: 10px 0px;
  border: white 1px solid;
}

@media screen and (max-width: 499px) {
  #company .company-box .company-box-contents {
    width: 90%;
    margin: 0 auto 50px auto;
  }
}

#company .company-box .company-box-contents .company-subtitle {
  width: 100%;
  margin: 0 auto 30px auto;
}

#company .company-box .company-box-contents .company-subtitle h3 {
  margin: 5px;
}

#company .company-box .company-box-contents .company-sentence {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

#company .company-box .company-box-contents .company-sentence p {
  font-size: 14px;
}

@media screen and (max-width: 999px) {
  #company .company-box .company-box-contents .company-sentence p {
    font-size: 12px;
  }
}

.footer-line-1 {
  border-bottom: white 2px solid;
  width: 70%;
  padding-bottom: 50px;
}

.footer-line-2 {
  border-bottom: white 2px solid;
  width: 70%;
  padding-bottom: 50px;
  float: right;
}

footer {
  padding-top: 150px;
}

footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 499px) {
  footer .footer-box {
    width: 100%;
  }
}

footer .footer-box .footer-logo {
  width: 30%;
}

@media screen and (max-width: 999px) {
  footer .footer-box .footer-logo {
    display: none;
  }
}

footer .footer-box .footer-logo .footer-logo-box {
  width: 80%;
  margin: -45px auto 0 auto;
}

@media screen and (max-width: 999px) {
  footer .footer-box .footer-logo .footer-logo-box {
    margin: -20px auto 0 auto;
  }
}

footer .footer-box .footer-logo .footer-logo-box img {
  width: 70%;
}

footer .footer-box .information {
  margin: 0 auto;
}

@media screen and (max-width: 999px) {
  footer .footer-box .information {
    width: 40%;
    margin: 0;
  }
}

footer .footer-box .information .information-box {
  margin: 0 auto;
}

footer .footer-box .information .information-box p {
  font-size: 14px;
  display: inline-block;
}

@media screen and (max-width: 999px) {
  footer .footer-box .information .information-box p {
    font-size: 12px;
  }
}

@media screen and (max-width: 499px) {
  footer .footer-box .information .information-box p {
    font-size: 10px;
    margin-right: -15px;
  }
}

footer .footer-box .footer-list {
  width: 30%;
}

@media screen and (max-width: 999px) {
  footer .footer-box .footer-list {
    width: 40%;
  }
}

footer .footer-box .footer-list .footer-list-box {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  line-height: 22px;
}

footer .footer-box .footer-list .footer-list-box a {
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 999px) {
  footer .footer-box .footer-list .footer-list-box a {
    font-size: 10px;
  }
}

footer .footer-box .footer-list .footer-list-box a:hover {
  color: #dbdbdb;
  font-size: 14px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

footer .footer-box .footer-list .footer-list-box .contact {
  text-align: left;
  margin-left: 13%;
}

@media screen and (max-width: 999px) {
  footer .footer-box .footer-list .footer-list-box .contact {
    margin-left: -5px;
  }
}

@media screen and (max-width: 499px) {
  footer .footer-box .footer-list .footer-list-box .contact {
    margin-left: -28px;
  }
}

footer .footer-box .footer-list .footer-list-box .contact p {
  font-size: 14px;
}

@media screen and (max-width: 999px) {
  footer .footer-box .footer-list .footer-list-box .contact p {
    font-size: 12px;
  }
}

footer .footer-box .footer-list .footer-list-box .contact .footer-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer .footer-box .footer-list .footer-list-box .contact .footer-img a img:hover {
  opacity: 0.9;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

footer .footer-box .footer-list .footer-list-box .contact .footer-img a .facebook {
  width: 70%;
  margin-top: 10px;
}

footer .footer-box .footer-list .footer-list-box .contact .footer-img a .twitter {
  width: 40%;
  margin-top: 14px;
}

footer .copyright {
  font-size: 12px;
  text-align: center;
  padding: 20px 0;
}

@media screen and (max-width: 499px) {
  footer .copyright {
    font-size: 10px;
    padding: 25px 0;
  }
}
/*# sourceMappingURL=style.css.map */