@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Barlow:600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Rubik&display=swap");
section, nav, article, aside, hgroup, header, footer, figure, figcaption, details {
  display: block;
}

html, body, div, span, applet, object, iframe, strong, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, legend, caption, tbody, tfoot, thead, table, label, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Hiragino Kaku Gothic Pro",Meiryo,"MS PGothic",sans-serif;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

li {
  list-style: none;
}

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

a {
  text-decoration: none;
  color: #000;
  outline: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

hr {
  height: 1px;
  background-color: #ccc;
  border: 0;
}

.pc_only {
  display: block;
}

.pc_only_inline {
  display: inline;
}

.sp_only,
.sp_only_inline {
  display: none;
}

/*----- wrap -----*/
.wrapper {
  max-width: 1800px;
  margin: 0 5%;
}
.wrapper:before, .wrapper:after {
  content: "";
  display: block;
  width: 5%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.wrapper:after {
  left: auto;
  right: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.loaded .wrapper:before, .loaded .wrapper:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*----- bg -----*/
.bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg video {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

/*----- section -----*/
.section {
  position: relative;
}
.section .contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section .contents.type2 {
  position: static;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 50px;
  line-height: 1;
  margin: 0 0 40px 0;
  text-align: center;
}

/*----- footer -----*/
footer {
  text-align: center;
  background: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 45px 0;
}

/*----- shade -----*/
.shade {
  position: relative;
}

.shade:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f3f4f8;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.isAnimate.show.shade:after {
  -webkit-animation: img_show 1s both;
          animation: img_show 1s both;
}

@-webkit-keyframes img_show {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes img_show {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*=======================================
	loader
=======================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
}
.loaded #loader {
  -webkit-animation: load_open 4s forwards;
          animation: load_open 4s forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes load_open {
  30% {
    background-color: #f3f4f8;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes load_open {
  30% {
    background-color: #f3f4f8;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*=======================================
	g_nav
=======================================*/
#g_nav a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#g_nav.dark a {
  color: #fff;
}
#g_nav ul {
  position: fixed;
  top: 40px;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 1003;
  font-family: 'Rubik', sans-serif;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.loaded #g_nav ul {
  left: 6.5%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#g_nav ul:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../images/sun.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: -15px;
  left: -50px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#g_nav.here1 ul:before {
  top: 38px;
}
#g_nav.here2 ul:before {
  top: 88px;
}
#g_nav.here3 ul:before {
  top: 138px;
}
#g_nav.here4 ul:before {
  top: 188px;
}
#g_nav li {
  margin: 0 0 35px 0;
  position: relative;
}

/*=======================================
	top
=======================================*/
#top .dummy {
  position: absolute;
}

#logo {
  width: 16.27778%;
  height: 12.70492%;
  position: absolute;
  top: 43.27869%;
  left: 43.55556%;
  z-index: 1001;
}
#logo div {
  position: absolute;
  bottom: 0;
}
.loaded #logo div {
  -webkit-transform: translate(0, 0) rotate(0deg) scale(1) !important;
          transform: translate(0, 0) rotate(0deg) scale(1) !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#logo img {
  width: 100%;
}
#logo div:nth-of-type(1) {
  width: 21.16041%;
  left: 0;
}
#logo div:nth-of-type(2) {
  width: 22.1843%;
  left: 26.62116%;
}
#logo div:nth-of-type(3) {
  width: 6.48464%;
  left: 58.70307%;
  bottom: -2px;
}
#logo div:nth-of-type(4) {
  width: 15.01706%;
  top: 0;
  left: 53.92491%;
}
#logo div:nth-of-type(5) {
  width: 25.25597%;
  left: 74.74403%;
}
#logo div:nth-of-type(5) img {
  vertical-align: bottom;
}

/*=======================================
	about
=======================================*/
#about {
  text-align: center;
  border-top: 1px solid #e4e5ed;
}
#about .contents {
  position: static;
  background: #f3f4f8;
}
#about p {
  margin: 0 0 60px 0;
  padding: 0 1em;
  position: relative;
  z-index: 1;
}
#about figure {
  position: relative;
}
#about figure:before {
  content: "";
  display: block;
  width: 22.83333%;
  height: 250px;
  background: url("../images/logo_white.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: -16.66667%;
  left: 1.66667%;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#about figure.show:before {
  top: -11.45833%;
  opacity: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/*=======================================
	service
=======================================*/
#service .contents.type2 .l,
#service .contents.type2 .r {
  width: 13.33333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
#service .contents.type2 .l div,
#service .contents.type2 .r div {
  width: 100%;
  height: 50%;
  background: #f3f4f8;
}
#service .contents.type2 .l img,
#service .contents.type2 .r img {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
#service .contents.type2 .l.reverse,
#service .contents.type2 .r.reverse {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#service .contents.type2 .l.reverse img,
#service .contents.type2 .r.reverse img {
  bottom: auto;
  top: 0;
}
#service .contents.type2 .c {
  width: 73.33333%;
  background: #f3f4f8;
}
#service h2 {
  padding-top: 130px;
  margin-bottom: 80px;
}
#service .outer {
  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;
  background: #e4e6ee;
  padding: 90px 7.57576%;
  margin: 0 0 145px 0;
}
#service .img {
  width: 37.5%;
}
#service .txt {
  width: 50%;
}
#service h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  margin: 15px 0 0 0;
}
#service h3 span {
  display: block;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  letter-spacing: 0.25em;
  margin: 30px 0 40px 0;
}
#service p {
  line-height: 1.5;
}

/*=======================================
	company
=======================================*/
#company {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 80px 0 100px 0;
}
#company table {
  min-width: 510px;
  margin: 0 auto;
}
#company tr {
  border-bottom: 1px solid #fff;
}
#company th, #company td {
  padding: 16px 0;
}
#company th {
  width: 21.56863%;
  text-align: left;
}
#company li:before {
  content: "・";
}

/*=======================================
	contact
=======================================*/
#contact {
  /*----- btn -----*/
}
#contact .contents.type2 .l,
#contact .contents.type2 .r {
  width: 31.94444%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  position: relative;
}
#contact .contents.type2 .l div,
#contact .contents.type2 .r div {
  width: 100%;
  height: 30%;
  background: #f3f4f8;
}
#contact .contents.type2 .l img,
#contact .contents.type2 .r img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#contact .contents.type2 .l img {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#contact .contents.type2 .r {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .contents.type2 .r img:last-child {
  top: auto;
  bottom: 0;
}
#contact .contents.type2 .c {
  width: 36.11111%;
  background: #f3f4f8;
}
#contact h2 {
  padding-top: 130px;
  margin-bottom: 80px;
}
#contact form {
  width: 100%;
  margin: 0 auto;
}
#contact input,
#contact textarea {
  background: #fff;
  border: 1px solid #9b9b9b;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-appearance: none;
}
#contact textarea {
  height: 165px;
}
#contact input:focus,
#contact textarea:focus {
  border: 1px solid #fff;
}
#contact dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#contact dt {
  width: 30.76923%;
}
#contact dd {
  width: 69.23077%;
}
#contact dt,
#contact dd {
  margin-bottom: 25px;
}
#contact .form_btn {
  text-align: center;
  margin: 65px 0 120px 0;
}
#contact .form_btn button {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #000;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  color: #fff;
  border: none;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#contact .form_btn button:before {
  content: "";
  display: block;
  width: 130px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#contact .form_btn button:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-left: 5px solid #fff;
  border-bottom: 4px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#contact .reset_btn {
  text-align: center;
  margin: 10px 0 0 0;
}
#contact .reset_btn input {
  display: inline-block;
  width: auto;
  padding: 2px 10px;
  font-size: 11px;
  color: #666;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ccc;
}

/*=======================================
	thanks
=======================================*/
.thanks {
  text-align: center;
}
.thanks section {
  padding: 50px 0;
}
.thanks h1 {
  margin: 0 0 80px 0;
}
.thanks h1 img {
  height: 44px;
}
.thanks p {
  font-size: 18px;
  margin: 0 0 100px 0;
}
.thanks .btn a {
  display: inline-block;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 12px 30px;
  border: 1px solid #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.thanks .btn a:hover {
  background: #fff;
  color: #000;
}
.thanks footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (min-width: 2001px) {
  .wrapper {
    margin: 0 auto;
  }
  .wrapper:before, .wrapper:after {
    width: 5.7%;
  }
}
@media only screen and (max-width: 2000px) {
  #service .contents.type2 .l div,
  #service .contents.type2 .r div {
    height: 60%;
  }
}
@media only screen and (max-width: 1800px) {
  #service .contents.type2 .l div,
  #service .contents.type2 .r div {
    height: 69%;
  }

  #contact .contents.type2 .r div {
    height: 40%;
  }
}
@media only screen and (max-width: 1700px) {
  #contact .contents.type2 .l div {
    height: 40%;
  }
}
@media only screen and (max-width: 1600px) {
  #contact .contents.type2 .l div {
    height: 37%;
  }

  #contact .contents.type2 .r div {
    height: 46%;
  }
}
@media only screen and (max-width: 1400px) {
  #service .contents.type2 .l div,
  #service .contents.type2 .r div {
    height: 76%;
  }

  #contact .contents.type2 .r div {
    height: 53%;
  }

  #contact dl {
    display: block;
  }
  #contact dt {
    width: auto;
    margin: 0 0 5px 0;
  }
  #contact dd {
    width: auto;
    margin: 0 0 15px 0;
  }
  #contact .form_btn {
    margin: 25px 0 60px 0;
  }
  #contact .form_btn button:before {
    width: 30px;
  }
}
@media only screen and (max-width: 1300px) {
  #contact .contents.type2 .l div {
    height: 39%;
  }

  #contact .contents.type2 .r div {
    height: 56%;
  }

  #service .outer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (max-width: 1200px) {
  #service .contents.type2 .l div,
  #service .contents.type2 .r div {
    height: 80%;
  }

  #contact .contents.type2 .l div {
    height: 40%;
  }
}
@media only screen and (max-width: 1100px) {
  #service .contents.type2 .l div,
  #service .contents.type2 .r div {
    height: 83%;
  }

  #contact .contents.type2 .l div {
    height: 41%;
  }

  #contact .contents.type2 .r div {
    height: 63%;
  }
}
@media only screen and (max-width: 1000px) {
  #contact .contents.type2 .r div {
    height: 66%;
  }
}
@media only screen and (max-width: 960px) {
  #contact .contents.type2 .l div {
    height: 42%;
  }

  #contact .contents.type2 .r div {
    height: 68%;
  }
}
/******************************************************************************************

	sp size

******************************************************************************************/
@media only screen and (max-width: 640px) {
  .pc_only,
  .pc_only_inline {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .sp_only_inline {
    display: inline;
  }

  /*----- wrap -----*/
  .wrapper {
    margin: 0;
  }
  .wrapper:before, .wrapper:after {
    display: none;
  }

  /*----- section -----*/
  .section {
    font-size: 13px;
  }
  .section h2 {
    font-size: 30px;
    margin: 0 0 30px 0;
  }

  /*----- footer -----*/
  footer {
    font-size: 10px;
    padding: 20px 0;
  }

  /*=======================================
  	g_nav
  =======================================*/
  #g_nav {
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transition: opacity 0.4s, visibility 0s ease 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.4s, visibility 0s ease 0.2s, -webkit-transform 0.4s;
    transition: opacity 0.4s, transform 0.4s, visibility 0s ease 0.2s;
    transition: opacity 0.4s, transform 0.4s, visibility 0s ease 0.2s, -webkit-transform 0.4s;
    opacity: 0;
    visibility: hidden;
  }
  #g_nav.active {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1 !important;
    visibility: visible !important;
  }
  #g_nav a {
    color: #fff;
    display: block;
    padding: 20px 0;
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  #g_nav ul {
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin: 30px 0 0 0;
    -webkit-transition: all 0s;
    transition: all 0s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .loaded #g_nav ul {
    left: auto;
  }
  #g_nav ul:before {
    display: none;
  }
  #g_nav li {
    margin: 0;
  }

  .sp_nav_btn {
    display: block;
    width: 45px;
    height: 60px;
    background-image: url("../images/sp_nav_btn.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2001;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition-delay: 2s;
            transition-delay: 2s;
  }
  .loaded .sp_nav_btn {
    opacity: 1;
  }
  .sp_nav_btn.active, .sp_nav_btn.active.dark {
    background-position: center bottom;
  }
  .sp_nav_btn.dark {
    background-position: center;
  }

  /*=======================================
  	top
  =======================================*/
  #logo {
    width: 53.125%;
    height: 17.30769%;
    position: absolute;
    top: 50%;
    left: 29.6875%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #logo div:nth-of-type(1) {
    width: 21.17647%;
    left: 0;
  }
  #logo div:nth-of-type(2) {
    width: 22.35294%;
    left: 26.47059%;
  }
  #logo div:nth-of-type(3) {
    width: 6.47059%;
    left: 58.23529%;
    bottom: -1px;
  }
  #logo div:nth-of-type(4) {
    width: 14.70588%;
    top: 0;
    left: 54.11765%;
  }
  #logo div:nth-of-type(5) {
    width: 25.88235%;
    left: 74.70588%;
  }

  /*=======================================
  	about
  =======================================*/
  #about p {
    margin: 0 0 30px 0;
    padding: 0 15px;
    text-align: left;
  }
  #about figure:before {
    width: 37.8125%;
    height: 43.52941%;
    top: -8.82353%;
    left: 3.125%;
  }
  #about figure.show:before {
    top: 2.94118%;
  }

  /*=======================================
  	service
  =======================================*/
  #service .contents.type2 .l,
  #service .contents.type2 .r {
    display: none;
  }
  #service .contents.type2 .c {
    width: auto;
    background: none;
  }
  #service h2 {
    padding-top: 0;
    margin-bottom: 0;
  }
  #service h2 span {
    position: absolute;
    top: 65px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #service .sp_outer {
    padding: 0 15px 40px 15px;
    background: #f3f4f8;
  }
  #service .outer {
    display: block;
    padding: 30px 15px;
    margin: 0;
  }
  #service .img {
    width: auto;
    margin: 0 0 30px 0;
  }
  #service .txt {
    width: auto;
    text-align: center;
  }
  #service h3 {
    font-size: 15px;
    margin: 10px 0 5px 0;
    text-align: left;
  }
  #service h3 span {
    font-size: 13px;
    margin: 15px 0 20px 0;
  }
  #service p {
    text-align: left;
  }

  /*=======================================
  	company
  =======================================*/
  #company {
    padding: 50px 15px 60px 15px;
  }
  #company table {
    min-width: inherit;
  }
  #company th, #company td {
    display: block;
    padding: 0;
  }
  #company th {
    width: auto;
    font-weight: bold;
    padding: 15px 0 0 0;
  }
  #company td {
    padding: 0 0 15px 0;
  }
  #company ul {
    margin-left: 1em;
  }
  #company li {
    line-height: 1.4;
    text-indent: -1em;
    margin: 5px 0;
  }

  /*=======================================
  	contact
  =======================================*/
  #contact {
    max-height: 700px;
    overflow: hidden;
    /*----- btn -----*/
  }
  #contact .contents.type2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  #contact .contents.type2 .l,
  #contact .contents.type2 .r {
    display: none;
  }
  #contact .contents.type2 .c {
    width: auto;
    background: none;
    padding: 0 15px;
  }
  #contact h2 {
    padding-top: 50px;
    margin-bottom: 30px;
  }
  #contact form {
    width: auto;
  }
  #contact input,
  #contact textarea {
    font-size: 16px;
  }
  #contact dl {
    display: block;
  }
  #contact dt {
    width: auto;
    margin: 0 0 5px 0;
  }
  #contact dd {
    width: auto;
    margin: 0 0 15px 0;
  }
  #contact .form_btn {
    margin: 25px 0 60px 0;
  }
  #contact .form_btn button:before {
    width: 30px;
  }

  /*=======================================
  	thanks
  =======================================*/
  .thanks section {
    padding: 20px 0;
  }
  .thanks h1 {
    margin: 0 0 40px 0;
  }
  .thanks p {
    font-size: 13px;
    margin: 0 0 50px 0;
    padding: 0 15px;
  }
  .thanks .btn a {
    font-size: 12px;
  }
  .thanks footer {
    position: static;
    bottom: auto;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
