@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
body {
  background: #FFF;
  color: #111;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  margin: 0 auto;
  min-width: 1280px;
  width: 100%;
}

/*
// background
*/
.bgc-black {
  background: #111;
}
.bgc-white {
  background: #FFF;
}
.bgc-gray {
  background: #FAFAFA;
}
.bgc-blue {
  background: #17326C;
}
.bgc-blue-gradation {
  background: -moz-linear-gradient(top, #002236 0%, #002236 90%, #FFF 10%, #FFF 100%);
  background: -webkit-linear-gradient(top, #002236 0%, #002236 90%, #FFF 10%, #FFF 100%);
  background: linear-gradient(to bottom, #002236 0%, #002236 90%, #FFF 10%, #FFF 100%);
}
.bgc-gray-white {
  background: -moz-linear-gradient(173deg, #FBFBFB 0%, #E5E5E5 70%, #FFF 30%, #FFF 100%);
  background: -webkit-linear-gradient(173deg, #FBFBFB 0%, #E5E5E5 70%, #FFF 30%, #FFF 100%);
  background: linear-gradient(173deg, #FBFBFB 0%, #E5E5E5 70%, #FFF 30%, #FFF 100%);
}
.bgc-gray-white-separate {
  background: -moz-linear-gradient(180deg, #FFF 0%, #FFF 550px, #FAFAFA 550px, #FAFAFA 100%);
  background: -webkit-linear-gradient(180deg, #FFF 0%, #FFF 550px, #FAFAFA 550px, #FAFAFA 100%);
  background: linear-gradient(180deg, #FFF 0%, #FFF 550px, #FAFAFA 550px, #FAFAFA 100%);
}

/*
// title
*/
.section-title {
  text-align: center;
  padding-top: 150px;
}
.section-title h2 {
  font-size: 3.6rem;
  font-weight: 700;
}
.dark h2 {
  color: #FFF;
  font-size: 3.6rem;
  font-weight: 700;
}
.section-title p {
  color: #DBE3E7;
  font-size: 2.8rem;
  font-weight: 700;
}
.section-lead {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 100px;
}

.element-title {
  text-align: center;
}
  .element-title h3 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.0;
  }

/*
// block
*/
.section-block {
  margin: 0 auto;
  width: 1080px;
  padding-top: 100px;
}

/*
// column
*/
.column {
  box-shadow: 1px 3px 6px #989898;
  display: inline-block;
}

/*
// header
*/
.header {
  background: #111;
  min-width: 1280px;
  position: fixed;
  width: 100%;
  z-index: 100;
}
.header_block {
  margin: 0 auto;
  padding: 10px 100px;
  width: 1080px;
}
.header_left {
  float: left;
}
  .header_left a {
    display: block;
    margin: 5px 0;
    transition: .3s;
  }
  .header_left a:hover {
    opacity: 0.6;
  }
.header_right {
  float: right;
}
  .header_right ul {
    display: flex;
    text-align: center;
  }
    .header_right ul li {
      text-align: center;
    }
      .header_right ul li a {
        color: #FFF;
        display: block;
        font-size: 1.2rem;
        font-weight: 500;
        margin: 15px 50px 15px 0;
        transition: .3s;
      }
      .header_right ul li a:hover {
        opacity: 0.6;
      }
      .header_right ul li:last-child a {
        background-color: #0078AD;
        margin: 0;
        padding: 15px 40px;
        transition: .3s;
      }
      .header_right ul li:last-child a:hover {
        background-color: #254253;
        opacity: 1;
      }


/*
// main
*/
.main {
  background-image:
    linear-gradient(173deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 73%, rgba(0, 225, 255, 0.6) 17%, rgba(0, 225, 255, 0.6) 100%),
    url(../img/main_bg01.png),
    linear-gradient( to bottom, #AFCBDE 0%, #98C6DE 10%, #6EB9D9 24%, #4DA9D1 35%, #359DC7 50%, #0F6E9D 64%, #0B547A 78%, #013B59 89%, #012E46 100%);
  -webkit-background:
    linear-gradient(173deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 73%, rgba(0, 225, 255, 0.6) 17%, rgba(0, 225, 255, 0.6) 100%),
    url(../img/main_bg01.png),
    linear-gradient( top, #AFCBDE 0%, #98C6DE 10%, #6EB9D9 24%, #4DA9D1 35%, #0F6E9D 64%, #0B547A 78%, #013B59 89%, #012E46 100%);
  -moz-background:
    linear-gradient(173deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 73%, rgba(0, 225, 255, 0.6) 17%, rgba(0, 225, 255, 0.6) 100%),
    url(../img/main_bg01.png),
    linear-gradient( top, #AFCBDE 0%, #98C6DE 10%, #6EB9D9 24%, #4DA9D1 35%, #0F6E9D 64%, #0B547A 78%, #013B59 89%, #012E46 100%);
  background-position:
    0 0,
    center center,
    0 0;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat-x;
  height: 660px;
  margin: 0 auto;
}
.main_padding {
  padding-top: 68px;
}
.main_box {
  height: 660px;
  margin: 0 auto;
  position: relative;
  width: 1280px;
}
.main_product {
  left: 135px;
  position: absolute;
  top: 35px;
}
  .main_product h1 {
    color: #FFF;
    font-size: 5.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 6px #013455;
  }
    .main_product h1 span {
      font-size: 2.8rem;
      font-weight: 500;
      margin-left: 20px;
    }
    .main_product h1 span span {
      font-size: 2.5rem;
      margin-left: 5px;
    }
.main_product-description {
  color: #FFF;
  font-size: 1.9rem;
  font-weight: 300;
  text-shadow: 1px 1px 6px #013455;
}
  .main_product-description span {
    font-weight: 500;
  }
.main_product-image {
  left: 140px;
  position: absolute;
  top: 220px;
  width: 350px;
}
  .main_product-image img {
    width: 100%;
  }
.main_project {
  bottom: 40px;
  position: absolute;
  right: 145px;
}
.main_project-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
}
.main_project-title {
  font-size: 3.4rem;
  font-weight: 900;
}
  .main_project-title span {
    font-size: 1.4rem;
    font-weight: 500;
    margin-left: 5px;
  }

/*
// lineup
*/
.lineup-title {
  padding-top: 100px;
}
.lineup-block {
  padding-top: 50px;
}

.lineup h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 70px;
  position: relative;
}
.lineup h3::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #111;
  bottom: -30px;
  width: 20%;
}
.lineup_left {
  float: left;
}
.lineup_right {
  float: right;
}
.lineup_column {
  display: inline-block;
  text-align: center;
}
.lineup_column:nth-of-type(2) {
  margin-left: 20px;
}
  .lineup_column p {
    font-size: 2.4rem;
    font-weight: 700;
  }

/*
// challenge
*/
.challenge-width {
  width: 945px;
}
.challenge-column {
  width: 385px;
  height: 130px;
  padding: 20px 30px;
  margin: 50px 50px 0 0;
}
  .challenge-column:nth-of-type(1), .challenge-column:nth-of-type(2) {
    margin-top: 0;
  }
  .challenge-column:nth-of-type(2n) {
    margin-right: 0;
  }
  .challenge-column:last-of-type {
    margin-right: 0;
    min-width: auto;
    width: 885px;
  }

.challenge-column_icon {
  display: inline-block;
  padding-right: 15px;
  vertical-align: middle;
}
.challenge-column_txt {
  display: inline-block;
  vertical-align: middle;
}
  .challenge-column_txt h4 {
    color: #0078AD;
    font-size: 2.4rem;
    font-weight: 700;
  }
  .challenge-column_txt p {
    font-size: 2.0rem;
    font-weight: 500;
  }

/*
// Use Case
*/
.scene {
  margin-top: 40px;
}
.scene_left {
  float: left;
  margin-right: 10px;
}
.scene_right {
  float: left;
}
.scene_list {
  margin-top: 20px;
}
  .scene_list li {
    margin-top: 25px;
    padding-left: 50px;
    position: relative;
  }
  .scene_list li::before {
    background: url(../img/scene_check.png) 50% 0 no-repeat;
    content: '';
    height: 43px;
    position: absolute;
    left: 0;
    top: -25%;
    width: 43px;
  }
    .scene_list li span {
      border-bottom: 2px solid #0062AD;
    }

/*
// About Edge AI Tablet
*/
.emgk-eat {
  margin-top: 40px;
}
.emgk-eat_left {
  float: left;
}
.emgk-eat_right {
  float: right;
  width: 650px;
}
.emgk-eat_box {
  margin-top: 40px;
}
  .emgk-eat_box ul {
    font-size: 0;
  }
    .emgk-eat_box ul li {
      background-color: #0078AD;
      border-radius: 3px;
      color: #FFF;
      display: inline-block;
      font-size: 1.6rem;
      margin: 0 30px 15px 0;
      text-align: center;
      padding: 15px 0;
      width: 185px;
    }
.emgk-eat_list {
  margin-top: 60px;
}
  .emgk-eat_list h3 {
    font-size: 2.8rem;
    font-weight: 700;
  }
    .emgk-eat_list h3 span {
      color: #0078AD;
    }
  .emgk-eat_list ul {
    margin: 20px 0 40px;
  }
    .emgk-eat_list ul li {
      font-size: 1.8rem;
      padding-left: 30px;
      margin-top: 15px;
      position: relative;
    }
    .emgk-eat_list ul li::before {
      background-color: #0078AD;
      border-radius: 50%;
      content: '';
      height: 10px;
      left: 0;
      top: 35%;
      width: 10px;
      position: absolute;
    }
.emgk-eat-title {
  background-color: #0078AD;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.0;
  text-align: center;
  padding: 18px 0;
}
.emgk-eat_column {
  height: 280px;
  margin-right: 15px;
  text-align: center;
  padding: 30px 0;
  width: 254px;
}
.emgk-eat_column:last-of-type {
  margin-right: 0;
}
  .emgk-eat_column p {
    margin-top: 30px;
    font-size: 2.4rem;
    font-weight: 500;
  }
.emgk-eat-attention {
  font-size: 1.4rem;
  margin-top: 15px;
  padding-left: 15px;
  text-align: right;
  text-indent: -15px;
}
.emgk-eat-attention::before {
  content: '※';
  padding-right: 3px;
}

/*
// About EDGEMATRIX GK
*/
.about {
  padding-bottom: 50px;
}

/*
// system
*/
.system {
  text-align: center;
}

/*
// Introduce in a small scale
*/
.pocket {
  text-align: center;
}
.pocket-width {
  padding-top: 20px;
  width: 945px;
}
.pocket_element-table {
  width: 100%;
}
  .pocket_element-table thead tr th {
    background-color: #0078AD;
    border: 1px solid #0078AD;
    color: #FFF;
    font-weight: 500;
    text-align: left;
    padding: 5px 20px;
  }
  .pocket_element-table tbody tr {
    border-right: 1px solid #0078AD;
  }
    .pocket_element-table tbody tr th {
      border-bottom: 1px solid #0078AD;
      border-left: 1px solid #0078AD;
      color: #0078AD;
      font-weight: 700;
      text-align: left;
      vertical-align: top;
      padding: 10px 20px;
    }
    .pocket_element-table tbody tr td {
      border-bottom: 1px solid #0078AD;
      border-left: 1px solid #0078AD;
      font-weight: 400;
      text-align: left;
      padding: 10px 20px;
    }

/*
// Specification
*/
.specification_left {
  float: left;
  width: 170px;
}
  .specification_left p {
    font-size: 1.0rem;
    padding-left: 12px;
    text-indent: -12px;
    margin-top: 10px;
  }
  .specification_left p::before {
    content: '※';
  }

.specification_right {
  float: right;
  width: 910px;
}
  .specification_right h3 {
    border-left: 10px solid #002236;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.6;
    padding-left: 10px;
  }
.specification_element-table2,
.specification_element-table3 {
  margin-top: 20px;
  width: 100%;
}
  .specification_element-table2 tbody tr,
  .specification_element-table3 tbody tr {
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }
  .specification_element-table2 tbody tr th,
  .specification_element-table2 tbody tr td,
  .specification_element-table3 tbody tr th,
  .specification_element-table3 tbody tr td {
    border-bottom: 1px solid #FFF;
    border-left: 1px solid #FFF;
    color: #FFF;
    font-weight: 300;
    padding: 10px 20px;
    text-align: left;
    vertical-align: top;
  }
  .specification_element-table2 tbody tr th {
    background-color: #254253;
    font-weight: 500;
    width: 170px;
  }
  .specification_element-table2 tbody tr td {
    background-color: #0078AD;
    width: 701px;
  }
  .specification_element-table3 tbody tr th {
    background-color: #254253;
    font-weight: 500;
    width: 170px;
  }
  .specification_element-table3 tbody tr td {
    background-color: #0078AD;
    width: 209px;
  }
  .specification_element-table3 tbody tr td:nth-child(2) {
    background-color: #3EA2B4;
    width: 472px;
  }
  .specification_element-table3 tbody tr.first td {
    background-color: #0078AD;
    width: 209px;
  }
  .specification_element-table3 tbody tr.first td:nth-child(3) {
    background-color: #3EA2B4;
    width: 472px;
  }
.specification_secondary_onclick_01,
.specification_secondary_onclick_02 {
  background-color: #254253;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  border-right: 1px solid #FFF;
  cursor: pointer;
  text-align: center;
  padding: 10px 0;
}

/*
// Screenshot
*/
.screenshot-width {
  margin: 0 auto;
  width: 860px;
}
.screenshot img {
  width: 100%;
}
.screenshot a img {
  transition: .3s;
}
.screenshot a:hover img {
  opacity: 0.6;
}
.screenshot p {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 5px;
}
.screenshot p a {
  color: #111;
  transition: .3s;
}
.screenshot p a:hover {
  opacity: 0.6;
}
.screenshot p img {
  width: auto;
  padding-left: 5px;
  vertical-align: middle;
}

/*
// Movie
*/
.movie_margin-top {
  margin-top: 150px;
}
.movie {
  position: relative;
  width: 100%;
  padding-top: 56.24%;
}
.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*
// Usage fee
*/
.section-title p.campaign {
  background: #CC0C0C;
  color: #FFF;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 50px;
  padding: 10px 20px;
}
.fee_column {
  height: 380px;
  margin: 50px 25px 0;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 484px;
}
  .fee_column img {
    left: 4%;
    position: absolute;
    top: -12%;
  }
  .fee_column h3 {
    color: #3D8CB4;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 220px;
  }
    .fee_column h3 span {
      font-size: 1.4rem;
      font-weight: 500;
    }
  .fee_column p {
    color: #3EA2B4;
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .fee_column ul {
    width: 250px;
    margin: 0 auto;
  }
    .fee_column ul li {
      font-size: 1.2rem;
      text-align: left;
      text-indent: -12px;
      padding-left: 12px;
      margin-bottom: 5px;
    }
    .fee_column ul li::before {
      content: '※';  
    }

/*
// Usage fee　cloud
*/
.fee_cloud-column {
  height: 130px;
  padding: 40px 40px;
  margin: 50px 20px 0 25px;
}

.fee_cloud-column_img {
  display: inline-block;
  padding-right: 20px;
  vertical-align: middle;
  width: 140px;
}

.fee_cloud-column_txt {
  display: inline-block;
  vertical-align: middle;
}
  .fee_cloud-column_txt h4 {
    color: #0078AD;
    font-size: 1.8rem;
    font-weight: 700;
	line-height: 2.2em;
  }
  .fee_cloud-column_txt p {
    font-size: 1.6rem;
    font-weight: 500;
	line-height: 2.2em;
  }
  .fee_cloud_column ul {
    width: 250px;
    margin: 0 auto;
  }
    .fee_cloud_column ul li {
      font-size: 1.2rem;
      text-align: left;
      text-indent: -12px;
      padding-left: 12px;
      margin-bottom: 5px;
    }
    .fee_cloud_column ul li::before {
      content: '※';  
    }

/*
// option
*/
.option-width {
  width: 890px;
  padding-bottom: 150px;
}
.option:last-of-type {
  padding-bottom: 150px;
}
.option h2 {
  color: #0078AD;
}
.option h3 {
  border-left: 10px solid #002236;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 10px;
  margin-bottom: 40px;
}
.option_column {
  height: 302px;
  margin-right: 25px;
  padding: 20px 0;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 248px;
}
.option_column:last-of-type {
  margin-right: 0;
}
.option_column h4 {
  color: #3D8CB4;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
}
.option_column p {
  color: #3EA2B4;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.option_column .option-attention {
  bottom: 120px;
  color: #111;
  font-size: 1.0rem;
  font-weight: 300;
  right: 30px;
  position: absolute;
}
.option:nth-of-type(3) .option_column {
  height: 320px;
}
.option:nth-of-type(3) .option_column .option-attention {
  bottom: 100px;
}
.option:nth-of-type(3) .option_column h4 {
  margin-top: 40px;
}

/*
// contact
*/
form span {
  color: #0078AD;
}
form .sub {
  margin: 0 0 10px 340px;
}
.formtable {
  margin: 0 auto;
  table-layout: fixed;
  width: 960px;
}
  .formtable tr {
    margin: 30px 0;
  }
  .formtable tr:first-of-type {
    margin: 15px 0 30px;
  }
    .formtable tr td {
      font-size: 1.8rem;
      margin-bottom: 20px;
      text-align: right;
      padding: 7px 20px 0 0;
      vertical-align: top;
      width: 260px;
    }
    .formtable tr td.contact_pulldown {
      padding: 10px 20px 5px 0;
    }
    .formtable tr td:last-child.contact_pulldown {
      background-color: transparent;
      border: 0;
      padding: 0;
    }
    .formtable tr td:last-child,
    .formtable tr td textarea {
      background-color: #fff;
      border: 1px solid #84848D;
      border-radius: 5px;
      box-sizing: border-box;
      color: #84848D;
      display: block;
      max-width: 630px;
      padding: 5px;
      text-align: left;
      width: 630px;
    }
      .formtable tr td.textarea {
        border: 0;
        padding: 0;
      }
      .formtable tr td input {
        color: #000;
        font-size: 1.8rem;
        width: 100%;
      }
      .formtable tr td textarea {
        color: #000;
        display: block;
        font-size: 2.0rem;
        min-height: 180px;
      }
      .formtable tr td label {
        background-color: #fff;
        border: 1px solid #84848D;
        border-radius: 5px;
        display: block;
        width: 230px;
        position: relative;
      }
      .formtable tr td label::before {
        border: 7px solid transparent;
        border-top: 9px solid #84848D;
        content: "";
        cursor: pointer;
        height: 0px;
        margin-top: -4px;
        pointer-events: none;
        position: absolute;
        right: 10px;
        top: 50%;
        width: 0px;
      }
      .formtable tr td label select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: transparent;
        border: none;
        border-radius: 5px;
        display: block;
        font-size: 1.8rem;
        padding: 6px 10px;
        width: 230px;
      }
.send {
  margin-top: 60px;
  position: relative;
  text-align: center;
}
  .send button {
    background: #0078AD;
    border-radius: 5px;
    color: #FFF;
    cursor: pointer;
    font-size: 2.0rem;
    font-weight: 500;
    padding: 20px 170px;
    text-align: center;
    transition: .3s;
  }
  .send button:hover {
    background: #254253;
  }

.attentionabout {
  max-width: 940px;
  margin: 30px auto 0px;
}
  .attentionabout p {
    font-size: 1.4rem;
    padding-left: 15px;
    text-indent: -15px;
  }
  .attentionabout p::before {
    content:'※';
  }

.attentioncost {
  max-width: 940px;
}
  .attentioncost ul {
    margin: 10px;
  }
  .attentioncost ul li {
      font-size: 1.2rem;
      padding-left: 30px;
      margin-top: 10px;
      position: relative;
    }
  .attentioncost-bg {
	margin: 50px 32px 20px 25px;
	padding: 30px;
  	background: #FAFAFA;
    }

.attention {
  max-width: 480px;
  margin: 60px auto 0;
}
  .attention p {
    font-size: 1.4rem;
    padding-left: 15px;
    text-indent: -15px;
  }
  .attention p::before {
    content:'※';
  }
::-ms-expand {
  display: none;
}
.btn-area {
  text-align: center;
  margin-bottom: 50px;
}
.btn-area:last-of-type {
  margin-bottom: 0;
  margin-top: 70px;
  padding-bottom: 100px;
}
  .btn-area a {
    color: #0078AD;
    font-size: 1.8rem;
    font-weight: 500;
    padding-right: 40px;
    position: relative;
    transition: .3s;
  }
  .btn-area a:hover {
    opacity: 0.6;
  }
  .btn-area a::after {
    background: url(../img/service_new-tab.svg) 0 0 no-repeat;
    content: '';
    height: 21px;
    right: 0;
    top: 15%;
    position: absolute;
    width: 21px;
  }
  .contact a {
    background-color: #0078AD;
    border-radius: 3px;
    color: #FFF;
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    padding: 18px 120px;
    position: relative;
  }
  .contact a::after {
    background: url(../img/contact_arrow.svg) 0 0 no-repeat;
    content: '';
    height: 27px;
    right: 50px;
    top: 30%;
    position: absolute;
    width: 32px;
  }  

#form-messages.error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; 
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
}
#form-messages.success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
}

.usersmanual .section-title {
  padding: 50px 0 20px;
}
.usersmanual h2 {
  color: #5BC5FD;
  font-size: 2.6rem;
  font-weight: bold;
}
.usersmanual p {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 2.0;
  margin: 0 auto;
}
.usersmanual div.section-block {
  padding: 40px 0 50px;
  text-align: center;
}
.usersmanual div.conbtn a {
  background-color: #0D64AB;
  border: 2px solid #5BC5FD;
  color: #FFF;
  display: inline-block;
  font-size: 1.8rem;
  padding: 10px 50px;
  transition: .3s;
}
.usersmanual div.conbtn a:first-child {
  margin-right: 40px;
}
.usersmanual div.conbtn a:hover {
  opacity: 0.6;
}

/*
// footer
*/
.footer {
  background: #111;
  width: 100%;
}
.footer_block {
  margin: 0 auto;
  padding: 30px 0;
  width: 1080px;
}
.footer_left {
  float: left;
}
  .footer_left a {
    transition: .3s;
  }
  .footer_left a:hover {
    opacity: 0.6;
  }
.footer_right {
  float: right;
  padding-top: 10px;
}
  .footer_right p {
    color: #FFF;
    font-size: 1.2rem;
  }
