@import url("https://fonts.googleapis.com/css?family=Kosugi");
li {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Century Gothic", "Kosugi", sans-serif;
  overflow-x: hidden;
}

a,
p,
h1,
h2,
h3 {
  color: #fff;
}

h1 {
  font-size: 7rem;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 5rem;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1rem;
  }
}

th {
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  th {
    font-size: 1rem;
  }
}

td {
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  td {
    font-size: 1.5rem;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.txt_emphasis {
  color: #007fff;
  font-size: 1.3em;
}

.fixed_bg {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  position: relative;
  background-size: cover;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
}

.site_header {
  background: rgba(0, 127, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  .site_header {
    height: 60px;
  }
}

.header_logo img {
  height: 80px;
  width: auto;
  margin: 5px 0px 5px 50px;
}

@media screen and (max-width: 767px) {
  .header_logo img {
    height: 40px;
    margin: 10px 0 10px 10px;
  }
}

.header_content {
  padding: 15px 50px 0px 0px;
  font-size: 5rem;
  /* color: #333; */
}

@media screen and (max-width: 767px) {
  .header_content {
    padding: 0 10px 0 0;
  }
}

@-webkit-keyframes sp_menu_icon-bar01 {
  0% {
    -webkit-transform: translateY(20px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes sp_menu_icon-bar01 {
  0% {
    -webkit-transform: translateY(20px) rotate(45deg);
            transform: translateY(20px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
            transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

#sp_menu_icon span:nth-of-type(2) {
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#sp_menu_icon span:nth-of-type(3) {
  -webkit-animation: sp_menu_icon-bar03 0.75s forwards;
  animation: sp_menu_icon-bar03 0.75s forwards;
}

@-webkit-keyframes sp_menu_icon-bar03 {
  0% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes sp_menu_icon-bar03 {
  0% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
            transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
            transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

#sp_menu_icon.active span:nth-of-type(1) {
  -webkit-animation: active-sp_menu_icon-bar01 0.75s forwards;
  animation: active-sp_menu_icon-bar01 0.75s forwards;
}

@-webkit-keyframes active-sp_menu_icon-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(20px) rotate(45deg);
  }
}

@keyframes active-sp_menu_icon-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
            transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(20px) rotate(45deg);
            transform: translateY(20px) rotate(45deg);
  }
}

#sp_menu_icon.active span:nth-of-type(2) {
  opacity: 0;
}

#sp_menu_icon.active span:nth-of-type(3) {
  -webkit-animation: active-sp_menu_icon-bar03 0.75s forwards;
  animation: active-sp_menu_icon-bar03 0.75s forwards;
}

@-webkit-keyframes active-sp_menu_icon-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
  }
}

@keyframes active-sp_menu_icon-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
            transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
            transform: translateY(-20px) rotate(-45deg);
  }
}

.bg_01 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.2))), url("../img/photo/port/port00.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)), url("../img/photo/port/port00.jpg");
  background-attachment: fixed;
}

.bg_02 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.2))), url("../img/photo/mt/mt00.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)), url("../img/photo/mt/mt00.jpg");
  background-attachment: fixed;
}

.bg_03 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.2))), url("../img/photo/cable/cable00.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)), url("../img/photo/cable/cable00.jpg");
  background-attachment: fixed;
}

.bg_04 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.2))), url("../img/photo/others/others00.jpg");
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)), url("../img/photo/others/others00.jpg");
  background-attachment: fixed;
}

.sub_text {
  padding: 110px 0 50px 50px;
  /*   @include mediaQuery("sp") {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  } */
}

@media screen and (max-width: 767px) {
  .sub_text {
    padding: 80px 50px 20px 50px;
  }
}

.box_01_container .img_01_container {
  /* display: flex; */
  /*   @include centeringMc; */
  width: 95%;
  margin: auto;
  padding-bottom: 5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .box_01_container .img_01_container {
    display: -webkit-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .box_01_container .img_01_container {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .box_01_container h3 {
    font-size: 1.2rem;
  }
}

.box_01_container .box_01_img {
  width: 500px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .box_01_container .box_01_img {
    width: 80%;
    padding: 0 0 30px 0;
    margin: 0 auto;
  }
  .box_01_container .box_01_img h3 {
    font-size: 1.4rem;
  }
}

.box_01_img img {
  width: 100%;
  border-radius: 5px;
  /* border: solid 3px rgba(0,127,255,1); */
}

@media screen and (max-width: 767px) {
  .box_01_img img {
    /* height: 10vh;
    object-fit: cover; */
  }
}

.h3_p {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .h3_p {
    font-size: 1rem;
  }
}

#container {
  -webkit-animation: fadein 1s forwards;
          animation: fadein 1s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=service.css.map */