@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
  position: relative;
}

.sp {
  display: none;
}

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

.flex_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_align_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_justify_end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex_justify_sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

p {
  line-height: 160%;
}

.container {
  min-height: 1200px;
  overflow: hidden;
}

.fadeBottom {
  -webkit-transform: translate(0, 10%);
          transform: translate(0, 10%);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}

.fadeBottom.show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn {
  opacity: 0.3;
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}

.fadeIn.show {
  opacity: 1;
}

.trans_x {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.trans_x.show {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.h2_header {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.h2_header h2 {
  color: #1b3042;
  font-weight: bold;
  font-size: 100px;
  font-family: "Outfit", sans-serif !important;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .h2_header {
    max-width: 100%;
    width: 90%;
  }
  .h2_header h2 {
    font-size: 70px;
  }
  p {
    word-break: break-all;
  }
}
header {
  padding: 22px 0;
  position: fixed;
  z-index: 10;
  width: 100%;
}
header .inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
header .main_logo, header .main_logo_navy {
  width: 136px;
}
header .main_logo_navy {
  position: absolute;
  opacity: 0;
}
header nav ul li {
  margin-left: 35px;
}
header nav ul li a {
  font-weight: bold;
  color: #FFF;
  position: relative;
  padding-bottom: 5px;
}
header nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
header nav ul li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
header nav.navy ul li a, header nav.navy02 ul li a {
  color: #1b3042;
}
header nav.navy.white ul li a {
  color: #fff;
}
header nav.navy02.white ul li a {
  color: #1b3042;
}
header nav.white ul li a, header nav.white02 ul li a {
  color: #fff;
}

@media screen and (max-width: 767px) {
  header {
    padding: 22px 0;
    position: fixed;
    z-index: 10;
    width: 100%;
  }
  header .inner {
    width: 95%;
    max-width: 100%;
  }
  header .main_logo, header .main_logo_navy {
    width: 136px;
  }
  header .main_logo_navy {
    position: absolute;
    opacity: 0;
  }
  header nav {
    z-index: 1000;
  }
  header nav ul {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  header nav ul li {
    margin-left: 35px;
  }
  header nav ul li a {
    font-weight: bold;
    color: #FFF;
    position: relative;
    padding-bottom: 5px;
  }
  header nav ul li a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: -1px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  header nav ul li a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.footer_copyright {
  position: relative;
  border-top: 1px solid #333;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
  color: #FFF;
  text-align: center;
  padding: 26px 0;
}
.footer_copyright p {
  font-size: 12px;
  font-weight: 300;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
#loading-screen.hidden {
  opacity: 0;
}
#loading-screen .loading-content {
  text-align: center;
}
#loading-screen .loading-logo {
  margin-bottom: 2rem;
}
#loading-screen .loading-logo img {
  width: 120px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#loading-screen .loading-bar {
  width: 200px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
#loading-screen .loading-bar .loading-progress {
  width: 0%;
  height: 100%;
  background-color: #ffffff;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
#loading-screen .loading-percentage {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}

#kv {
  position: fixed;
  width: 100%;
  z-index: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#kv video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#kv .el_video {
  width: 100%;
  height: 100vh;
  position: relative;
  position: fixed;
}
#kv .el_video video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#kv .el_video::before {
  content: "";
  background-color: #000;
  opacity: 0.78;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: rotateImage 3.4s linear 0s infinite;
          animation: rotateImage 3.4s linear 0s infinite;
  width: 100%;
  height: 100vh;
}
#kv figcaption {
  display: table;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: exclusion;
}
#kv figcaption.is_none {
  display: none;
}
#kv figcaption p {
  font-family: "Outfit", sans-serif !important;
  font-weight: 600;
  color: #FFF;
  display: table-cell;
  vertical-align: middle;
  line-height: 1.2;
  font-size: 12em;
  text-align: center;
}
#kv figcaption p span {
  display: block;
}

.fadebg {
  position: fixed; /* 固定配置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  z-index: 2;
}

.fadebg.identity_active {
  background-color: #e6eae9;
}

.fadebg.message_active {
  background-color: #191a1b;
}

.fadebg.service_active {
  background-color: #e6eae9;
}

.fadebg.about_active {
  background-color: rgb(0, 0, 0);
}

.content_outer {
  margin-top: 102vh;
}

.identity {
  position: relative;
  z-index: 3;
  color: #1b3042;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.identity #identity {
  padding-top: 160px;
}
.identity .inner {
  max-width: 770px;
  width: 92%;
  margin: 0 auto;
  position: relative;
}
.identity .inner .lead {
  margin-top: 80px;
  margin-bottom: 110px;
}
.identity .inner .lead p {
  font-size: 48px;
  font-weight: bold;
  line-height: 140%;
}
.identity .inner .box {
  margin-bottom: 180px;
}
.identity .inner .box:last-child {
  margin-bottom: 0;
}
.identity .inner .t_jp {
  font-size: 19px;
  font-weight: bold;
  line-height: 220%;
}
.identity .inner .h3_wrapper {
  margin-bottom: 35px;
}
.identity .inner .h3_wrapper h3.t_jp {
  font-size: 35px;
  margin-bottom: 10px;
  line-height: unset;
}
.identity .inner .t_en {
  font-size: 13px;
  line-height: 220%;
}

#message {
  position: relative;
  z-index: 3;
  color: #FFF;
  padding: 260px 0 0 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#message .h2_header {
  text-align: right;
}
#message .h2_header h2 {
  color: #FFF;
}
#message .inner {
  max-width: 950px;
  width: 92%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#message .urano_pic {
  width: 100%;
  position: absolute;
  background-color: #9b9aa0;
  top: 56.5%;
}
#message .urano_pic .pic {
  width: 410px;
  margin-left: 57%;
}
@media screen and (max-width: 767px) {
  #message .urano_pic .pic {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
#message .urano_pic .name {
  position: absolute;
  bottom: -106px;
  width: 472px;
  left: 54%;
}
#message .urano_pic .name .text_jp {
  position: absolute;
  right: 15px;
  bottom: 60px;
  font-size: 14px;
}
#message .lead_wrapper {
  margin-top: 130px;
  margin-bottom: 110px;
}
#message .lead_wrapper p {
  font-size: 48px;
  font-weight: bold;
  line-height: 140%;
}
#message .text_wrapper p {
  font-size: 15px;
  font-weight: bold;
  line-height: 380%;
}
#message .text_wrapper p.en {
  margin-top: 66px;
  font-size: 11px;
  display: inline-block;
  width: 480px;
  line-height: 380%;
  font-weight: normal;
}

#service {
  position: relative;
  z-index: 3;
  color: #1b3042;
  padding: 260px 0 0 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
#service .h2_header {
  max-width: 1200px;
}
#service .inner {
  width: 92%;
  max-width: 950px;
  margin: 0 auto;
  padding-top: 100px;
  position: relative;
}
#service .inner .lead {
  margin-bottom: 90px;
}
#service .inner .lead p {
  font-size: 48px;
  font-weight: bold;
  line-height: 140%;
}
#service .inner .box {
  margin-bottom: 120px;
}
#service .inner .box:last-child {
  margin-bottom: 0;
}
#service .inner .h3_wrapper {
  margin-bottom: 35px;
}
#service .inner .h3_wrapper h3.t_jp {
  font-size: 25px;
  font-weight: bold;
  line-height: 200%;
  margin-bottom: 15px;
}
#service .inner .h3_wrapper p.t_en {
  font-size: 12px;
}
#service .inner .text_block {
  margin-right: 90px;
}
#service .inner .text_block .flex_wrapper {
  margin-bottom: 70px;
}
#service .inner .text_block .border {
  width: 30px;
  height: 1px;
  background-color: #1b3042;
  margin-right: 28px;
  margin-top: 18px;
}
#service .inner .text_block .text_bold {
  margin-bottom: 30px;
}
#service .inner .text_block .text_bold p {
  font-size: 22px;
  font-weight: bold;
}
#service .inner .text_block .text_bold p.t_en {
  font-weight: normal;
  margin-top: 5px;
}
#service .inner .text_block p.t_jp {
  font-weight: bold;
  font-size: 17px;
  line-height: 200%;
}
#service .inner .text_block p.t_en {
  font-size: 12px;
  line-height: 200%;
}
#service .inner .pic_block {
  position: relative;
  width: 300px;
}
#service .inner .pic_block .pic01, #service .inner .pic_block .pic02 {
  width: 300px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
#service .inner .pic_block .pic02 {
  position: absolute;
  top: 278px;
  right: -170px;
}

#about {
  position: relative;
  z-index: 3;
  color: #FFF;
  padding-top: 160px;
  margin-bottom: -160px;
  margin: 40px 0 145px;
}
#about .h2_header {
  text-align: right;
}
#about .h2_header h2 {
  color: #FFF;
}
#about .contact {
  width: 733px;
  margin: 130px auto 150px;
}
#about .contact > .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#about .contact .logo {
  width: 178px;
  margin-right: 95px;
}
#about .contact .m-copy-email-wrap {
  cursor: pointer;
}
#about .contact .m-copy-email-wrap .mail-label {
  position: relative;
  margin-bottom: 0.3em;
  width: 100%;
  height: 0.8em;
  font-size: 1.6rem;
  overflow: hidden;
}
#about .contact .m-copy-email-wrap .mail-label .txt {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.25em 0;
  font-size: 12px;
}
#about .contact .m-copy-email-wrap .mail-label .txt.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
#about .contact .m-copy-email-wrap .mail-label .txt.hover {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
#about .contact .m-copy-email-wrap .mail-label .txt.done {
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
#about .contact .m-copy-email-wrap .mail-text {
  font-size: 25px;
  font-weight: 300;
}
#about .contact .m-copy-email-wrap .mail-text .email {
  position: relative;
  padding-bottom: 4px;
}
#about .contact .m-copy-email-wrap .mail-text .email::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#about .contact .m-copy-email-wrap.is-hover .mail-label .txt.active {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#about .contact .m-copy-email-wrap.is-hover .mail-label .txt.hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#about .contact .m-copy-email-wrap.is-hover .mail-label .txt.done {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
#about .contact .m-copy-email-wrap.is-hover .mail-text .email::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
#about .contact .m-copy-email-wrap.is-copy .mail-label .txt.active {
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}
#about .contact .m-copy-email-wrap.is-copy .mail-label .txt.hover {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#about .contact .m-copy-email-wrap.is-copy .mail-label .txt.done {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#about .inner {
  width: 733px;
  margin: 0 auto;
}
#about .inner .flex_l, #about .inner .flex_r {
  width: 320px;
}
#about .inner dl dt, #about .inner dl dd {
  font-weight: normal;
  font-size: 12px;
  line-height: 180%;
}
#about .inner dl dt {
  padding-top: 24px;
}
#about .inner dl dd {
  padding-bottom: 24px;
  border-bottom: 1px solid #333;
}

@media screen and (max-width: 767px) {
  #kv {
    position: fixed;
    width: 100%;
    z-index: 1;
  }
  #kv figcaption p {
    font-size: 5em;
  }
  .identity {
    position: relative;
    z-index: 3;
    color: #1b3042;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
  }
  .identity #identity {
    padding-top: 160px;
  }
  .identity .inner {
    max-width: 100%;
    width: 92%;
    margin: 0 auto;
    position: relative;
  }
  .identity .inner .lead {
    margin-top: 80px;
    margin-bottom: 110px;
  }
  .identity .inner .lead p {
    font-size: 35px;
  }
  .identity .inner .box {
    margin-bottom: 180px;
  }
  .identity .inner .box:last-child {
    margin-bottom: 0;
  }
  .identity .inner .t_jp {
    font-size: 16px;
    font-weight: bold;
    line-height: 220%;
  }
  .identity .inner .h3_wrapper {
    margin-bottom: 35px;
  }
  .identity .inner .h3_wrapper h3.t_jp {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: unset;
  }
  .identity .inner .t_en {
    font-size: 12px;
    line-height: 220%;
  }
  #message {
    position: relative;
    z-index: 3;
    color: #FFF;
    padding: 260px 0 0 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
  }
  #message .h2_header {
    text-align: right;
  }
  #message .h2_header h2 {
    color: #FFF;
  }
  #message .inner {
    max-width: 100%;
    width: 92%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  #message .urano_pic {
    width: 100%;
    position: relative;
    background-color: #9c9aa1;
    margin-top: 30px;
  }
  #message .urano_pic .pic {
    width: 750px;
    margin-left: auto;
  }
  #message .urano_pic .name {
    position: absolute;
    bottom: -75px;
    width: 80%;
    left: 10%;
  }
  #message .urano_pic .name .text_jp {
    bottom: 30px;
  }
  #message .lead_wrapper {
    margin-top: 130px;
    margin-bottom: 60px;
  }
  #message .lead_wrapper p {
    font-size: 35px;
    font-weight: bold;
    line-height: 140%;
  }
  #message .text_wrapper p {
    font-size: 15px;
    font-weight: bold;
    line-height: 280%;
  }
  #message .text_wrapper p.en {
    margin-top: 66px;
    font-size: 11px;
    display: block;
    width: 100%;
    line-height: 280%;
    font-weight: normal;
  }
  #service {
    padding-bottom: 300px;
  }
  #service .h2_header {
    max-width: 95%;
  }
  #service .inner {
    max-width: 100%;
    padding-top: 70px;
  }
  #service .inner .lead {
    margin-bottom: 60px;
  }
  #service .inner .lead p {
    font-size: 38px;
    line-height: 140%;
  }
  #service .inner .box {
    margin-bottom: 90px;
  }
  #service .inner .box:last-child {
    margin-bottom: 0;
  }
  #service .inner .h3_wrapper {
    margin-bottom: 35px;
  }
  #service .inner .h3_wrapper h3.t_jp {
    font-size: 20px;
    font-weight: bold;
    line-height: 200%;
    margin-bottom: 15px;
  }
  #service .inner .h3_wrapper p.t_en {
    font-size: 12px;
  }
  #service .inner > .flex_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #service .inner .text_block {
    margin-right: 0px;
  }
  #service .inner .text_block .flex_wrapper {
    margin-bottom: 70px;
  }
  #service .inner .text_block .border {
    width: 30px;
    height: 1px;
    background-color: #1b3042;
    margin-right: 28px;
    margin-top: 18px;
  }
  #service .inner .text_block .text_bold {
    margin-bottom: 30px;
  }
  #service .inner .text_block .text_bold p {
    font-size: 22px;
    font-weight: bold;
  }
  #service .inner .text_block .text_bold p.t_en {
    font-weight: normal;
    margin-top: 5px;
  }
  #service .inner .text_block p.t_jp {
    font-weight: bold;
    font-size: 17px;
    line-height: 200%;
  }
  #service .inner .text_block p.t_en {
    font-size: 12px;
    line-height: 200%;
  }
  #service .inner .pic_block {
    position: relative;
    width: 100%;
  }
  #service .inner .pic_block .pic01, #service .inner .pic_block .pic02 {
    width: 60%;
  }
  #service .inner .pic_block .pic02 {
    top: 170px;
    right: 0px;
  }
  #about {
    margin-bottom: 0;
  }
  #about .h2_header {
    text-align: right;
  }
  #about .h2_header h2 {
    color: #FFF;
  }
  #about .contact {
    width: 82%;
    margin: 130px auto 50px;
  }
  #about .contact > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #about .contact .logo {
    width: 150px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #about .inner {
    width: 82%;
    padding-bottom: 80px;
  }
  #about .inner .flex_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #about .inner .flex_l, #about .inner .flex_r {
    width: 100%;
  }
}
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
.hamburger.white span {
  background-color: #fff;
}
.hamburger.navy span {
  background-color: #1b3042;
}

@media screen and (max-width: 767px) {
  header .inner {
    position: relative;
  }
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    z-index: 999;
  }
  header nav.active {
    right: 0;
  }
  header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    padding: 0;
  }
  header nav ul li {
    margin: 20px 0;
  }
  header nav ul li a {
    font-size: 18px;
    color: #1b3042;
  }
  header nav ul li a:hover {
    color: #666;
  }
  header .hamburger.active span {
    background-color: #1b3042;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 6;
  }
  .nav-overlay.active {
    display: block;
  }
  #service .inner .text_block {
    margin-right: 30px;
  }
  #service .inner .text_block .border {
    margin-right: 15px;
  }
  #about .contact .logo {
    margin-right: 30px;
  }
  #message .urano_pic .pic {
    margin-right: 2%;
  }
}/*# sourceMappingURL=main.css.map */