/* style.scss */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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: 1;
}

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

nav ul {
  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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body, button {
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
  line-height: 2.0rem;
  letter-spacing: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media screen and (max-width: 480px) {
  body, button {
    font-size: 0.9rem !important;
  }
}

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

a :hover {
  text-decoration: none;
}

.block {
  -webkit-transition: 1s;
  transition: 1s;
}

img, video, object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

::-moz-selection {
  background-color: blueviolet;
  color: #FFF;
}

::selection {
  background-color: blueviolet;
  color: #FFF;
}

::-moz-selection {
  background-color: blueviolet;
  color: #FFF;
}

strong {
  font-weight: bold;
}

#wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#wrapper .bg {
  width: 50%;
  height: calc(100vh + 200px);
  position: absolute;
  z-index: 0;
  right: 0;
}

@media screen and (max-width: 480px) {
  #wrapper .bg {
    width: 70%;
    height: calc(65vh + 100px);
  }
}

#wrapper .bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.motion-txt {
  display: inline-table;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

@media screen and (max-width: 480px) {
  .motion-txt {
    padding: 20px 0;
  }
}

.motion-txt:after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #111;
  -webkit-transform: translate3d(-101%, 0, 0);
          transform: translate3d(-101%, 0, 0);
}

.js-scroll.show .motion-txt:after {
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.js-scroll.done .motion-txt:after {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(103%, 0, 0);
          transform: translate3d(103%, 0, 0);
}

.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0;
}

.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
}

.content {
  width: 100%;
}

.loader {
  background-color: #111;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 9;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: loader 1.1s cubic-bezier(0.5, 0.6, 0.2, 1);
  animation: loader 1.1s cubic-bezier(0.5, 0.6, 0.2, 1);
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@-webkit-keyframes loader {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes loader {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.loader2 {
  background-color: #dddddd;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 5;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation: loader 0.5s cubic-bezier(0.5, 0.6, 0.2, 1);
  animation: loader 0.5s cubic-bezier(0.5, 0.6, 0.2, 1);
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@-webkit-keyframes loader {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes loader {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.loader_title {
  line-height: 110%;
  position: absolute;
}

.loader_title img {
  width: 220px;
}

@media screen and (max-width: 480px) {
  .loader_title img {
    width: 150px;
  }
}

.loader_sub {
  color: #999999;
  font-size: 16px;
  line-height: 110%;
  margin-top: 120px;
}

@media screen and (max-width: 480px) {
  .loader_sub {
    font-size: 14px;
    margin-top: 70px;
  }
}

.fadeInUp {
  -webkit-animation: fadeInUp 1.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  animation: fadeInUp 1.6s cubic-bezier(0.2, 0.6, 0.2, 1);
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.delay {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animate {
  -webkit-animation: animate 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
  animation: animate 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

@keyframes animate {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

html, body, a {
  cursor: none;
}

#cursor {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  pointer-events: none;
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  z-index: 999;
  -webkit-transition: width .3s, height .3s, top .3s, left .3s;
  transition: width .3s, height .3s, top .3s, left .3s;
}

#cursor.hov_ {
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  background: rgba(200, 50, 50, 0.75);
}

@media screen and (max-width: 480px) {
  #cursor {
    display: none;
  }
}

body {
  background-color: white;
  -webkit-transition: background .3s linear;
  transition: background .3s linear;
}

.section {
  height: auto;
}

#site_header {
  position: relative;
  max-width: 1000px;
  min-height: 100vh;
  margin: 0 auto;
  z-index: 10;
}

@media screen and (max-width: 480px) {
  #site_header {
    max-width: 90%;
    min-height: 65vh;
    margin: 0 auto;
  }
}

#site_header header {
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 480px) {
  #site_header header {
    margin: 30px auto 0;
  }
}

#site_header header h1 {
  width: 50%;
}

#site_header header h1 img {
  height: 20px;
}

@media screen and (max-width: 480px) {
  #site_header header h1 img {
    height: 15px;
  }
}

#site_header header .contact a {
  width: 50%;
  letter-spacing: 1.2px;
  text-decoration: underline;
  letter-spacing: -1px;
}

@media screen and (max-width: 480px) {
  #site_header header .contact a {
    letter-spacing: 0px;
  }
}

#site_header header .contact a:hover {
  color: blueviolet;
  -webkit-transition: .3s;
  transition: .3s;
}

#site_header header nav li {
  display: inline;
  margin-right: 15px;
  font-size: 1.2rem;
}

#site_header header nav li a {
  color: #DDD;
  -webkit-transition: 1s;
  transition: 1s;
}

#site_header header nav li a:hover {
  color: #000;
}

#site_header .fv_inner {
  margin-top: 20vh;
}

@media screen and (max-width: 480px) {
  #site_header .fv_inner {
    margin-top: 17vh;
  }
}

#site_header .fv_inner h2 {
  font-size: 6.875rem;
  line-height: 100%;
  letter-spacing: -5px;
}

@media screen and (max-width: 480px) {
  #site_header .fv_inner h2 {
    font-size: 3.5rem;
    letter-spacing: -3px;
  }
}

#site_header .fv_inner h2 span {
  background: #FFF;
  padding-right: 10px;
}

#site_header .fv_inner h3 {
  font-size: 1.875rem;
  line-height: 100%;
  margin-top: 50px;
}

@media screen and (max-width: 480px) {
  #site_header .fv_inner h3 {
    font-size: 1.2rem;
    margin-top: 30px;
  }
}

#site_header .fv_inner h3 span {
  background: #FFF;
}

section#message {
  position: relative;
  width: 100%;
  z-index: -1;
  background: #111;
}

section#message .message_inner {
  max-width: 1000px;
  margin: 0 auto -1px;
  padding: 400px 0 200px;
}

@media screen and (max-width: 480px) {
  section#message .message_inner {
    padding: 150px 0 0px;
    max-width: 90%;
  }
}

section#message .message_inner h4 {
  font-size: 6.875rem;
  color: #444;
  position: relative;
  z-index: 0;
  letter-spacing: -5px;
}

@media screen and (max-width: 480px) {
  section#message .message_inner h4 {
    font-size: 3.5rem;
    letter-spacing: -3px;
  }
}

section#message .message_inner .message_text {
  color: #FFF;
  width: 60%;
  margin-left: auto;
  line-height: 3.0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  section#message .message_inner .message_text {
    width: 80%;
    line-height: 2.5;
  }
}

section#message .message_inner .message_text h5 {
  font-size: 1.875rem;
  line-height: 100%;
  margin-bottom: 40px;
  margin-left: -10px;
  line-height: 2.0;
}

@media screen and (max-width: 480px) {
  section#message .message_inner .message_text h5 {
    margin-bottom: 20px;
    line-height: normal;
  }
}

section#message .message_inner .message_text h5 .sp_br {
  display: none;
}

@media screen and (max-width: 480px) {
  section#message .message_inner .message_text h5 .sp_br {
    display: block;
  }
}

section#message .message_inner .font {
  position: relative;
  z-index: 1;
}

section#message .message_inner #image {
  position: relative;
  z-index: 0;
  height: 450px;
}

@media screen and (max-width: 480px) {
  section#message .message_inner #image {
    height: 250px;
  }
}

section#message .message_inner #image .img01 img {
  width: 45%;
  margin-right: auto;
}

section#message .message_inner #image .img02 img {
  width: 30%;
  margin-left: auto;
}

section#service {
  position: relative;
  width: 100%;
  background: #111;
}

section#service .service_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 0 200px;
}

@media screen and (max-width: 480px) {
  section#service .service_inner {
    padding: 0px 0 100px;
    max-width: 90%;
  }
}

section#service .service_inner h4 {
  font-size: 6.875rem;
  color: #444;
  position: relative;
  z-index: 0;
  letter-spacing: -5px;
}

@media screen and (max-width: 480px) {
  section#service .service_inner h4 {
    font-size: 3.5rem;
    letter-spacing: -3px;
  }
}

section#service .service_inner .list_service {
  position: relative;
  z-index: 1;
}

section#service .service_inner .list_service ul {
  width: 60%;
  margin-left: auto;
  color: #FFF;
}

@media screen and (max-width: 480px) {
  section#service .service_inner .list_service ul {
    width: 80%;
    margin-top: -100px;
  }
}

section#service .service_inner .list_service ul li {
  list-style: none;
  margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
  section#service .service_inner .list_service ul li {
    margin-bottom: 40px;
  }
}

section#service .service_inner .list_service ul li h5.service_title {
  font-size: 3.125rem;
  margin-bottom: 80px;
  position: relative;
  letter-spacing: -3px;
}

@media screen and (max-width: 480px) {
  section#service .service_inner .list_service ul li h5.service_title {
    margin-bottom: 60px;
    letter-spacing: -1px;
    font-size: 2.5rem;
  }
}

section#service .service_inner .list_service ul li h5.service_title p {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  section#service .service_inner .list_service ul li h5.service_title p {
    font-size: 0.8rem;
    line-height: normal;
    margin-bottom: 5px;
  }
}

section#service .service_inner .list_service ul li h5.service_title :after {
  content: '';
  background: #FFF;
  position: absolute;
  bottom: -40px;
  left: 0;
  height: 1px;
  width: 50px;
}

@media screen and (max-width: 480px) {
  section#service .service_inner .list_service ul li .service_txt {
    font-size: 0.8rem;
    line-height: normal;
  }
}

section#member {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 200px 0 400px;
}

@media (max-width: 768px) {
  section#member {
    max-width: 90%;
  }
}

section#member h4 {
  font-size: 6.875rem;
  color: #DDD;
  position: relative;
  z-index: 0;
  letter-spacing: -5px;
}

@media screen and (max-width: 480px) {
  section#member h4 {
    font-size: 3.5rem;
    letter-spacing: -3px;
  }
}

section#member .list_member {
  position: relative;
  z-index: 0;
}

section#member .list_member ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  width: 100%;
}

section#member .list_member ul li {
  list-style: none;
  width: 30%;
}

section#member .list_member ul li .name {
  margin-top: 20px;
  text-align: right;
}

section#member .list_member ul li img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
          box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

@media (max-width: 768px) {
  section#member .list_member ul li img {
    height: 300px;
  }
}

section#company {
  position: relative;
  width: 100%;
  background: #FAF7FF;
  padding: 100px 0 300px;
}

@media (max-width: 768px) {
  section#company {
    padding: 100px 0 100px;
  }
}

section#company .col {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section#company .col {
    max-width: 90%;
  }
}

section#company .col h4 {
  font-size: 6.875rem;
  color: #DDD;
  position: relative;
  z-index: 0;
  letter-spacing: -5px;
}

@media screen and (max-width: 480px) {
  section#company .col h4 {
    font-size: 3.5rem;
    letter-spacing: -3px;
  }
}

section#company .col table {
  width: 60%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  section#company .col table {
    width: 80%;
  }
}

section#company .col table tr td {
  padding: 30px 0px;
}

@media screen and (max-width: 480px) {
  section#company .col table tr td {
    padding: 20px 0px;
  }
}

section#company .col table tr .left {
  border-bottom: 1px solid #DDD;
  width: 30%;
  letter-spacing: -1px;
}

section#company .col table tr .right {
  border-bottom: 1px solid #DDD;
  width: 65%;
}

section#contact {
  position: relative;
  width: 100%;
  text-align: center;
  background: url(../img/img.jpg) no-repeat center top;
  background-size: cover;
}

section#contact .contact_col {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  section#contact .contact_col {
    max-width: 90%;
  }
}

section#contact .contact_col a {
  overflow: hidden;
  display: block;
  padding: 200px 0;
}

@media screen and (max-width: 480px) {
  section#contact .contact_col a {
    padding: 100px 0;
  }
}

section#contact .contact_col a :before {
  content: "";
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: .4s;
  transition: .4s;
}

section#contact .contact_col a :hover {
  color: #fff;
}

section#contact .contact_col a :hover:before {
  left: 0;
}

section#contact .contact_col a h5 {
  font-size: 5rem;
  color: #000;
  letter-spacing: -5px;
}

@media (max-width: 768px) {
  section#contact .contact_col a h5 {
    font-size: 3rem;
  }
}

section#contact .contact_col a p {
  margin-top: 40px;
}

@media (max-width: 768px) {
  section#contact .contact_col a p {
    margin-top: 20px;
  }
}

footer {
  width: 100%;
  padding: 100px 0;
  text-align: center;
  background: #FAF7FF;
}

@media screen and (max-width: 480px) {
  footer {
    padding: 50px 0;
  }
}

footer .inner ul li {
  text-align: center;
  list-style: none;
  margin: 0;
  display: inline;
}

footer .inner ul li a {
  letter-spacing: -1px;
}

footer .inner ul li a:hover {
  color: blueviolet;
  -webkit-transition: .3s;
  transition: .3s;
}

footer .inner address {
  margin-top: 75px;
  font-style: unset;
  color: #DDD;
}

@media screen and (max-width: 480px) {
  footer .inner address {
    margin-top: 30px;
  }
}

.small_font {
  font-size: 1.25rem;
}

h4.contact_form {
  font-size: 6.875rem;
  color: #DDD;
  letter-spacing: -5px;
}

@media screen and (max-width: 480px) {
  h4.contact_form {
    font-size: 3.5rem;
    letter-spacing: -3px;
  }
}

.contact_form_col {
  width: 100%;
  padding: 50px 0 150px;
}

@media screen and (max-width: 480px) {
  .contact_form_col {
    padding: 0px;
  }
}

.contact_form_col .contact_form_col_inner {
  max-width: 990px;
  margin: 0 auto;
  padding: 100px 30px 0;
}

@media screen and (max-width: 480px) {
  .contact_form_col .contact_form_col_inner {
    width: 90%;
    max-width: none;
    padding: 40px 0 0;
  }
}

.contact_form_col .contact_form_col_inner table {
  width: 100%;
  font-weight: bold;
  border-collapse: separate;
  border-spacing: 0px 10px;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  .contact_form_col .contact_form_col_inner table {
    margin-bottom: 10px;
  }
}

.contact_form_col .contact_form_col_inner table tr td.left {
  width: 30%;
  text-align: right;
  padding: 20px;
  font-size: 1.0rem;
  vertical-align: middle;
  line-height: 1.3;
}

@media screen and (max-width: 480px) {
  .contact_form_col .contact_form_col_inner table tr td.left {
    padding: 0 10px;
    font-size: 0.7rem;
    width: 100%;
    text-align: left;
    display: block;
  }
}

.contact_form_col .contact_form_col_inner table tr td.right {
  width: 70%;
  padding: 20px;
  line-height: 2;
}

.contact_form_col .contact_form_col_inner table tr td.right a {
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .contact_form_col .contact_form_col_inner table tr td.right {
    padding: 10px;
    width: 100%;
    text-align: left;
    display: block;
  }
}

.contact_form_col .contact_form_col_inner table tr td.right input {
  width: 75%;
  padding: 10px;
  border: none;
  border-radius: 2px;
  border: 1px solid #111;
  background: #FAF7FF;
}

@media screen and (max-width: 480px) {
  .contact_form_col .contact_form_col_inner table tr td.right input {
    width: 100%;
  }
}

.contact_form_col .contact_form_col_inner table tr td.right textarea {
  width: 100%;
  padding: 10px;
  border: none;
  height: 200px;
  border-radius: 2px;
  border: 1px solid #111;
  background: #FAF7FF;
}

@media screen and (max-width: 480px) {
  .contact_form_col .contact_form_col_inner table tr td.right textarea {
    height: 150px;
  }
}

.contact_form_col .contact_form_col_inner .cv {
  text-align: center;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

.btn_form {
  cursor: pointer;
}

.btn_form input {
  cursor: pointer;
  font-weight: bold;
  font-size: 4.875rem;
  letter-spacing: -5px;
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  .btn_form input {
    font-size: 2.5rem;
    letter-spacing: -2px;
    margin-bottom: 100px;
  }
}

.btn_form:hover {
  -webkit-transition: all 0.5s ease;
  -webkit-transition: all  0.5s ease;
  transition: all  0.5s ease;
  color: blueviolet;
}

@media screen and (max-width: 480px) {
  input[type="date"] {
    position: relative;
    padding: 0 10px;
    width: 75%;
    height: 36px;
    border: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 14px;
    color: #999;
  }
  input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  input[type="date"]::-webkit-clear-button {
    -webkit-appearance: none;
  }
  input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 0;
    width: 25px;
    height: 25px;
    background: #111;
    cursor: pointer;
  }
}

.thanks {
  margin-top: 100px;
}

.thanks h5 {
  margin-bottom: 40px;
}

.thanks .btn_back a {
  font-weight: bold;
  font-size: 2.5rem;
  letter-spacing: -5px;
  text-decoration: underline;
  margin-top: 100px;
  display: block;
}
/*# sourceMappingURL=style.css.map */