@charset "UTF-8";
/*--------------------------
base
----------------------------*/
/*--------------------------------------------------------------------------
   reset
   --------------------------------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 0; }

article, aside, details, figcaption, figure, main, footer, header, hgroup, menu, nav, section {
  display: block; }

ol, ul, li {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

img {
  border: 0;
  vertical-align: top; }

em {
  font-style: italic; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 0; }

input, select, textarea {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle; }

input:focus, textarea:focus, select:focus {
  outline: none; }

body, p, h1, h2, h3, h4, h5, ul, li, table, tbody, th, td, a {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*------------------------------
変数
-------------------------------*/
.a-underline {
  position: relative;
  display: inline-block; }
  .a-underline:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width .3s; }
  .a-underline.black:after {
    height: 1px;
    background-color: #414141; }
  @media only screen and (min-width: 751px) {
    .a-underline:hover:after {
      width: 100%; } }

.a-text__layer, .a-text__textwrapper {
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out; }

.a-text__layer {
  display: inline-block;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  overflow: hidden; }

.a-text__textwrapper {
  display: inline-block;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0); }

.a-text.is-shown .a-text__layer {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.a-text.is-shown .a-text__textwrapper {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.a-fadein {
  opacity: 0;
  transition: opacity 1.4s; }
  .a-fadein.is-shown {
    opacity: 1;
    transition-delay: 0.6s; }

@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.a-fadein-down {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  transition: opacity 1.4s, -webkit-transform 1s;
  transition: opacity 1.4s, transform 1s;
  transition: opacity 1.4s, transform 1s, -webkit-transform 1s; }
  .a-fadein-down.is-shown {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    transition-delay: .3s; }

.a-scaleup {
  -webkit-transform: translateY(4px) scale(0.94);
          transform: translateY(4px) scale(0.94);
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s; }
  .a-scaleup.is-shown {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1); }

.a-swipe {
  overflow: hidden; }
  .a-swipe__inner {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    transition-delay: .2s;
    transition-duration: 0.8s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-timing-function: cubic-bezier(cubic-bezier(0.38, 0.96, 0.63, 1.04));
    -webkit-transform-origin: left;
            transform-origin: left;
    position: relative; }
    .a-swipe__inner:before {
      content: "";
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform;
      display: block;
      position: absolute;
      background-color: #414141;
      top: 0;
      left: 0;
      width: 330px;
      bottom: 0;
      z-index: 3;
      transition-delay: .5s;
      -webkit-transform-origin: right center;
              transform-origin: right center;
      transition-duration: 1.4s;
      transition-timing-function: cubic-bezier(cubic-bezier(0.38, 0.96, 0.63, 1.04)); }
  .a-swipe__img {
    -webkit-transform: scale(1);
            transform: scale(1);
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-delay: .1s;
    transition-duration: 10s;
    transition-timing-function: cubic-bezier(cubic-bezier(0.38, 0.96, 0.63, 1.04)); }
  .a-swipe.is-shown .a-swipe__inner {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition-timing-function: cubic-bezier(0.31, 0.88, 0.47, 0.96); }
    .a-swipe.is-shown .a-swipe__inner:before {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1); }

.a-layer-text {
  overflow: hidden;
  display: inline-block; }
  .a-layer-text span {
    overflow: hidden;
    display: inline-block;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    transition-delay: .2s;
    transition-duration: 0.8s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-timing-function: cubic-bezier(cubic-bezier(0.38, 0.96, 0.63, 1.04));
    -webkit-transform-origin: left;
            transform-origin: left;
    position: relative; }
    .a-layer-text span:before, .a-layer-text span:after {
      opacity: 0;
      content: "";
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      -webkit-transform-origin: right center;
              transform-origin: right center;
      transition-timing-function: cubic-bezier(cubic-bezier(0.38, 0.96, 0.63, 1.04)); }
    .a-layer-text span:before {
      transition-delay: .3s;
      background-color: #46788e;
      transition-duration: .9s;
      z-index: 3; }
    .a-layer-text span:after {
      transition-delay: .5s;
      z-index: 2;
      transition-duration: .9s;
      background-color: #414141; }
  .a-layer-text.is-shown span {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    transition-timing-function: cubic-bezier(0.31, 0.88, 0.47, 0.96); }
    .a-layer-text.is-shown span:before, .a-layer-text.is-shown span:after {
      -webkit-transform: scale(0, 1);
              transform: scale(0, 1);
      opacity: 1; }

.a-no-delay {
  transition-delay: 0s; }
  .a-no-delay div {
    transition-delay: 0s; }
  .a-no-delay.is-shown {
    transition-delay: 0s; }

.a-delay {
  transition-delay: 0.3s; }
  .a-delay div {
    transition-delay: 0.3s; }
  .a-delay.is-shown {
    transition-delay: 0.3s; }

.a-delay-2 {
  transition-delay: 0.6s; }
  .a-delay-2 div {
    transition-delay: 0.6s; }
  .a-delay-2.is-shown {
    transition-delay: 0.6s; }

.a-delay-3 {
  transition-delay: 1s; }
  .a-delay-3 div {
    transition-delay: 1s; }
  .a-delay-3.is-shown {
    transition-delay: 1s; }

.a-delay-4 {
  transition-delay: 1.3s; }
  .a-delay-4 div {
    transition-delay: 1.3s; }
  .a-delay-4.is-shown {
    transition-delay: 1.3s; }

.a-delay-5 {
  transition-delay: 1.6s; }
  .a-delay-5 div {
    transition-delay: 1.6s; }
  .a-delay-5.is-shown {
    transition-delay: 1.6s; }

/*--------------------------------------------------------------------------
 *   default;
 *---------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
 *	 html, body;
 *---------------------------------------------------------------------------*/
html, body {
  margin: 0;
  padding: 0; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.4rem;
  letter-spacing: 1.7px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #414141;
  line-height: 1.86;
  min-width: 1200px;
  font-weight: 300; }

::-moz-selection {
  background: #e4ecf8; }

::selection {
  background: #e4ecf8; }

/* clear fix */
.cf {
  zoom: 1; }
  .cf:before {
    display: table;
    content: ''; }
  .cf:after {
    display: table;
    content: '';
    clear: both; }

/*---------------------------
layout
----------------------------*/
.l-inner {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box; }

.l-content {
  overflow: hidden; }

.col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  /*.col.col02 .col__item {
    width: 580px; }*/

.l-header {
  position: relative;
  height: 870px;
  background-image: url(images/mv.jpg);
  background-position: center;
  background-size: cover;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  opacity: 0;
  -webkit-animation-duration: .9s;
          animation-duration: .9s;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .l-header {
      background-image: url(images/mv@2x.jpg); } }

.header-bar {
  position: absolute;
  left: 50px;
  right: 0;
  top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.header-nav {
  opacity: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  transition: opacity .4s; }
  .header-nav.is-shown {
    opacity: 1; }
  .header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .header-nav li {
    font-size: 2rem;
    letter-spacing: 1.6px;
    padding-right: 60px; }
  .header-nav a {
    display: inline-block;
    padding: 5px 0px;
    color: #fff; }

.main-title {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -36%);
          transform: translate(-50%, -36%); }
  .main-title .main {
    line-height: 1;
    letter-spacing: 17.3px;
    font-size: 14.4rem; }
  .main-title .sub {
    margin-top: 20px;
    line-height: 1;
    display: inline-block;
    font-size: 5.6rem;
    letter-spacing: 6.7px; }

.footer-upper {
  padding-top: 70px;
  padding-bottom: 82px;
  background-color: #e6e6e6; }
  .footer-upper .l-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.footer-company {
  color: #000; }
  .footer-company .name {
    padding-top: 26px;
    font-size: 1.6rem;
    letter-spacing: 1.9px;
    font-weight: 400; }
  .footer-company .branch {
    font-size: 1.4rem;
    padding-top: 2px; }
  .footer-company .address, .footer-company .tel {
    font-size: 1.2rem;
    letter-spacing: 0.4px;
    line-height: 1.67; }
  .footer-company .col.col02 .col__item {
    width: 210px; }

.footer-btn {
  background-color: #fff;
  border-radius: 12px;
  color: #000;
  font-size: 1.4rem;
  width: 220px;
  display: block;
  padding: 12px;
  text-align: center;
  margin-right: 10px; }
  .footer-btn__container {
    padding-top: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.footer-sitemap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.sitemap__name {
  font-weight: 400;
  padding-bottom: 6px;
  color: #000;
  font-size: 2rem;
  letter-spacing: 2.4px; }

.sitemap__list {
  font-size: 1.3rem;
  letter-spacing: 0.4px; }
  .sitemap__list li {
    padding-bottom: 4px; }
  .sitemap__list a {
    display: inline-block;
    color: #000; }

.footer-lower {
  background-color: #323232;
  color: #c8c8c8;
  padding: 40px 0 38px;
  font-size: 1rem; }
  .footer-lower .l-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .footer-lower a {
    color: #c8c8c8; }

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .footer-links li:not(:first-of-type) {
    padding-left: 20px; }

/*------------------------------
module
-----------------------------*/
.bg-vertical {
  background: linear-gradient(180deg, #e4ecf8 580px, transparent 580px); }

.bg-skew {
  background-color: #e4ecf8;
  background-image: linear-gradient(25deg, rgba(255, 255, 255, 0.3) 34%, transparent 34%);
  background-position: left;
  mix-blend-mode: multiply;
  position: relative;
  margin-top: 110px; }
  .bg-skew:before {
    position: absolute;
    top: -252px;
    right: -60px;
    mix-blend-mode: multiply;
    font-size: 23.7rem;
    letter-spacing: 0;
    color: #f0f4fa;
    font-weight: 500; }
  .bg-skew.reverse {
    background-image: linear-gradient(-25deg, rgba(255, 255, 255, 0.3) 34%, transparent 34%); }
    .bg-skew.reverse:before {
      right: auto;
      left: -50px; }

.box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .box-list li {
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #d2dce1;
    color: #000;
    text-align: center; }
  .box-list.col02 li {
    width: 285px;
    box-sizing: border-box; }
    .box-list.col02 li:nth-of-type(2n) {
      margin-right: 0; }
  .box-list.col03 li {
    width: 180px;
    box-sizing: border-box;
    padding: 11px 0; }
    .box-list.col03 li:nth-of-type(3n) {
      margin-right: 0; }

.icon-box__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.icon-box__item {
  width: 20%;
  text-align: center;
  position: relative;
  height: 150px; }

.icon-box__title {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 1.6px;
  line-height: 1;
  padding-top: 23px;
  position: absolute;
  bottom: 0px;
  width: 100%; }
  .icon-box__title span {
    display: block;
    font-size: 13px;
    padding-top: 10px; }

.icon {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  margin-left: 10px; }
  .icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat; }
  .icon.twitter:before {
    width: 19px;
    height: 16px;
    background-image: url(images/icon/icon-twitter.svg); }
  .icon.fb:before {
    width: 11px;
    height: 18px;
    background-image: url(images/icon/icon-facebook.svg); }

.imgbox__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  counter-reset: number 0; }

.imgbox__item {
  width: 380px;
  box-sizing: border-box; }

.imgbox__img {
  position: relative;
  padding-bottom: 22px; }
  .imgbox__img:after {
    counter-increment: number 1;
    content: "0" counter(number);
    color: transparent;
    -webkit-text-stroke: 1px #414141;
    font-size: 12rem;
    position: absolute;
    bottom: -8px;
    right: 0;
    line-height: 1;
    font-weight: normal;
    overflow: hidden;
    transition: opacity .6s;
    opacity: 0; }
  .imgbox__img.is-shown::after {
    opacity: 1;
    transition-delay: 1.4s; }

.imgbox__title {
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 1.48;
  letter-spacing: 2.5px; }

.imgbox__text {
  padding-top: 13px;
  text-align: justify; }

.section-content {
  position: relative;
  z-index: 2; }

.leadtext {
  font-size: 1.5rem;
  line-height: 1.93;
  text-align: center;
  padding-top: 18px; }
  .leadtext.small {
    font-size: 1.4rem; }

.smalltext {
  font-size: 1.2rem;
  letter-spacing: 1.4px;
  padding-bottom: 26px; }

.section-title {
  color: #bea03c;
  font-size: 6.4rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 10.5px;
  line-height: 1; }

.section-subtitle {
  font-size: 2.6rem;
  letter-spacing: 3px;
  text-align: center;
  font-weight: normal;
  line-height: 1.5;
  padding-top: 42px; }

.title02 {
  font-size: 2.9rem;
  font-weight: normal;
  letter-spacing: 5.2px; }

.tool__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

/*----------------------------------
section
-------------------------------------*/
#About .l-inner {
  padding-top: 122px;
  padding-bottom: 150px;
  position: relative; }
  #About .l-inner:before {
    content: "";
    display: block;
    width: 1207px;
    height: 953px;
    position: absolute;
    top: 25px;
    left: -760px;
    z-index: 1;
    background: linear-gradient(180deg, #e4ecf8 555px, transparent 555px), url(images/map.png);
    background-blend-mode: multiply;
    background-repeat: no-repeat; }

#About .leadtext {
  padding-bottom: 90px; }

#Communication {
  background-image: url(images/bg-communication.jpg);
  padding-top: 174px;
  padding-bottom: 176px;
  height: 770px;
  box-sizing: border-box; }
  #Communication .section-title, #Communication .section-subtitle, #Communication .leadtext {
    color: #fff; }
  #Communication .leadtext {
    padding-bottom: 76px; }

#Contact {
  padding-top: 140px;
  padding-bottom: 140px; }
  #Contact .section-title {
    font-size: 3.8rem;
    letter-spacing: 6.8px; }

#Contact .submitbtn {
  background-color: #323232;
  width: 100%;
  padding: 15px;
  display: block;
  color: white;
  font-size: 16px;
  font-weight: 100;
}

#Contact .submitbtn:hover {
  opacity: 0.7;
}

#Service {
  padding-top: 178px;
  padding-bottom: 110px; }
  #Service:before {
    content: "SERVICE"; }
  #Service .leadtext {
    padding-bottom: 70px; }

.team-figure {
  background-image: url(images/team-figure.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 564px;
  height: 564px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -158px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .team-figure {
      background-image: url(images/team-figure@2x.png); } }
  .team-figure li {
    width: 120px;
    height: 120px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    position: absolute;
    font-size: 16px;
    top: 50%;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px; }
    .team-figure li:nth-of-type(1) {
      -webkit-transform: translateY(-215px);
              transform: translateY(-215px); }
    .team-figure li:nth-of-type(2) {
      -webkit-transform: translate(153px, -153px);
              transform: translate(153px, -153px); }
    .team-figure li:nth-of-type(3) {
      -webkit-transform: translateX(215px);
              transform: translateX(215px); }
    .team-figure li:nth-of-type(4) {
      -webkit-transform: translate(153px, 153px);
              transform: translate(153px, 153px); }
    .team-figure li:nth-of-type(5) {
      -webkit-transform: translateY(216px);
              transform: translateY(216px); }
    .team-figure li:nth-of-type(6) {
      -webkit-transform: translate(-153px, 153px);
              transform: translate(-153px, 153px); }
    .team-figure li:nth-of-type(7) {
      -webkit-transform: translateX(-215px);
              transform: translateX(-215px); }
    .team-figure li:nth-of-type(8) {
      -webkit-transform: translate(-153px, -153px);
              transform: translate(-153px, -153px); }

#Team {
  padding-bottom: 140px; }
  #Team:before {
    content: "";
    display: block;
    width: 100%;
    height: 480px;
    background-image: url(images/bg-team.jpg);
    background-position: center;
    background-size: cover; }
  #Team .l-inner {
    position: relative; }
  #Team .section-title, #Team .section-subtitle, #Team .leadtext {
    text-align: left; }
  #Team .section-title {
    padding-top: 70px;
    line-height: 1.2; }

#Works {
  padding-top: 178px;
  padding-bottom: 110px; }
  #Works:before {
    content: "WORKS"; }
  #Works .leadtext {
    padding-bottom: 50px; }
  #Works .col {
    padding-top: 50px;
    border-top: 1px solid #d2dce1; }
  #Works .col__item {
    text-align: center; }
    #Works .col__item:nth-of-type(2) {
      width: 560px; }

/*# sourceMappingURL=maps/style.css.map */
