@charset "UTF-8";
/* CSS Document */
img[src$=".svg"] {
  width: 100%;
}

/*def end*/
/*share*/
::-moz-selection {
  background: rgba(3, 22, 40, 0.6); /* Safari */
  color: white;
}
::selection {
  background: rgba(3, 22, 40, 0.6); /* Safari */
  color: white;
}

::-moz-selection {
  background: rgba(3, 22, 40, 0.6); /* Firefox */
  color: white;
}

html, body {
  height: 100%;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}
@media all and (min-width: 640px) {
  a:hover {
    text-decoration: underline;
  }
}

li {
  list-style-type: none;
}

dl, dt, dd, ul, li, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
  font-size: 1em;
}

em, i {
  font-style: normal;
}

._pc {
  display: block;
}
@media all and (max-width: 640px) {
  ._pc {
    display: none;
  }
}

._sp {
  display: none;
}
@media all and (max-width: 640px) {
  ._sp {
    display: block;
  }
}

body {
  font-family: "Kosugi Maru", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.09em;
  background: rgb(52, 59, 74);
  color: white;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media all and (max-width: 640px) {
  .header {
    width: 150px;
    margin: 0 auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    z-index: 100;
    position: absolute;
    top: 80px;
  }
  .header__logoset {
    display: none;
  }
  .header__logotype {
    margin-top: 7px;
  }
  .header__logomark {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header._scrolled {
    position: fixed;
    top: -70px;
  }
  .header._scrolled .header__logomark {
    opacity: 0;
    visibility: hidden;
  }
}
@media all and (min-width: 640px) {
  .header {
    position: absolute;
    z-index: 900;
    left: 125px;
    top: 60px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__logomark, .header__logotype {
    display: none;
  }
  .header:hover {
    opacity: 0.5;
  }
  .header img {
    width: 250px;
  }
}

.globalnavigation {
  background: rgb(229, 205, 108);
  color: rgb(52, 59, 74);
  position: fixed;
  right: -400px;
  top: 0;
  z-index: 1000;
  padding-left: 80px;
  padding-right: 80px;
  width: 400px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Dosis", "Kosugi Maru", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
.globalnavigation__items {
  padding-top: 100px;
}
.globalnavigation__item {
  font-size: 20px;
}
.globalnavigation__item._sub {
  font-size: 16px;
  padding-left: 30px;
}
.globalnavigation__item + .globalnavigation__item {
  margin-top: 30px;
}
.globalnavigation__item + .globalnavigation__item._sub {
  margin-top: 25px;
}
@media all and (min-width: 640px) {
  .globalnavigation__item > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    z-index: 2;
  }
  .globalnavigation__item > a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(52, 59, 74);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: -1;
  }
  .globalnavigation__item > a:hover {
    color: white;
  }
  .globalnavigation__item > a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.globalnavigation__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.globalnavigation__socials li + li {
  margin-left: 20px;
}
@media all and (min-width: 640px) {
  .globalnavigation__socials a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .globalnavigation__socials a:hover {
    opacity: 0.5;
  }
}
.globalnavigation__highlandicon {
  padding-top: 50px;
  margin-bottom: 30px;
}
.globalnavigation__highlandicon img {
  width: 150px;
}
@media all and (min-width: 640px) {
  .globalnavigation__highlandicon a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .globalnavigation__highlandicon a:hover {
    opacity: 0.5;
  }
}
.globalnavigation__highlandtab {
  position: absolute;
  width: 70px;
  background: #e5e5e5;
  left: -70px;
  top: 300px;
  text-align: center;
}
.globalnavigation__highlandtab a {
  display: block;
  padding: 15px 0;
}
@media all and (min-width: 640px) {
  .globalnavigation__highlandtab a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .globalnavigation__highlandtab a:hover {
    opacity: 0.5;
  }
}
.globalnavigation__highlandtab img {
  width: 46px;
}
.globalnavigation._active {
  right: 0;
}
.globalnavigation__cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(96, 96, 96, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.globalnavigation__cover._active {
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 640px) {
  .globalnavigation {
    right: -300px;
    width: 300px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .globalnavigation__items {
    padding-top: 80px;
  }
  .globalnavigation__item {
    font-size: 16px;
  }
  .globalnavigation__item._sub {
    font-size: 14px;
    padding-left: 15px;
  }
  .globalnavigation__item + .globalnavigation__item {
    margin-top: 25px;
  }
  .globalnavigation__item + .globalnavigation__item._sub {
    margin-top: 20px;
  }
  .globalnavigation__highlandtab {
    display: none;
  }
}

.content {
  padding-top: 340px;
  padding-bottom: 150px;
}
@media all and (max-width: 640px) {
  .content {
    padding-bottom: 80px;
    padding-top: 0;
    margin-top: 300px;
  }
}

.section {
  width: 780px;
  margin: 0 auto;
}
.section._wide {
  width: 960px;
}
@media all and (max-width: 640px) {
  .section._wide {
    width: 80%;
  }
}
.section__header {
  font-family: "Dosis", "Kosugi Maru", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  font-size: 42px;
  color: rgb(255, 104, 109);
  font-weight: normal;
}
.section__subheader {
  font-size: 19px;
  color: rgb(255, 104, 109);
  margin-top: 10px;
}
.section__text {
  font-size: 16px;
  line-height: 200%;
  margin-top: 55px;
}
.section__text._shortmargin {
  margin-top: 0px;
}
.section__paragraph + .section__paragraph {
  margin-top: 40px;
}
.section__figure {
  margin-top: 20px;
}
.section__figurelist {
  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;
}
.section__figurelist li {
  width: 48%;
}
.section__figurelist li._large {
  width: 100%;
  margin-bottom: 4%;
}
@media all and (min-width: 640px) {
  .section__link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    z-index: 2;
    padding-bottom: 0.1em;
  }
  .section__link::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(52, 59, 74);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: -1;
  }
  .section__link:hover {
    color: white;
  }
  .section__link:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .section__link:hover {
    text-decoration: none;
  }
  .section__link::before {
    background: white;
    height: 1px;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .section__link:hover::before {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
.section__linklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1em;
}
.section__linklist li {
  margin-right: 2em;
  font-size: 0.95em;
}
@media all and (min-width: 640px) {
  .section__linklist li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    z-index: 2;
    padding-bottom: 0.4em;
  }
  .section__linklist li a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(52, 59, 74);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: -1;
  }
  .section__linklist li a:hover {
    color: white;
  }
  .section__linklist li a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .section__linklist li a::before {
    background: white;
    height: 1px;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .section__linklist li a:hover::before {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
}
.section__linklist li i.fa {
  font-size: 1.2em;
  margin-right: 0.25em;
}
@media all and (max-width: 640px) {
  .section__linklist {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section__linklist li {
    width: 100%;
  }
  .section__linklist li + li {
    margin-top: 10px;
  }
}
.section__definition dt {
  color: rgb(229, 205, 108);
  font-size: 19px;
  margin-top: 50px;
  line-height: 150%;
}
.section__definition dd {
  font-size: 16px;
  line-height: 200%;
  margin-top: 15px;
}
.section__definition img {
  display: block;
  margin-top: 20px;
  width: 100%;
}
.section + .section {
  margin-top: 100px;
}
@media all and (max-width: 640px) {
  .section {
    width: 80%;
  }
  .section__header {
    font-size: 24px;
    text-align: center;
  }
  .section__subheader {
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
  }
  .section__text {
    font-size: 12px;
    margin-top: 40px;
  }
  .section__definition dt {
    font-size: 14px;
  }
  .section__definition dd {
    margin-top: 10px;
    font-size: 12px;
  }
  .section + .section {
    margin-top: 80px;
  }
}

.contact {
  margin-top: 50px;
}
.contact__form {
  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;
}
.contact__form dt {
  color: rgb(229, 205, 108);
  font-size: 21px;
  margin-top: 30px;
  width: 6em;
  line-height: 40px;
  font-family: "Dosis", "Kosugi Maru", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
.contact__form dd {
  width: calc(100% - 10em);
  margin-top: 30px;
}
.contact input[type=text], .contact textarea {
  background: #797f8a;
  width: 100%;
  font-size: 16px;
  margin: 0;
  border: none;
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact input[type=text]:focus, .contact textarea:focus {
  outline: none;
  color: black;
  background: lightgray;
}
.contact button {
  font-family: "Dosis", "Kosugi Maru", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  width: 140px;
  padding: 8px;
  margin: 0 auto;
  border: none;
  background: rgb(229, 205, 108);
  color: rgb(52, 59, 74);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  cursor: pointer;
  font-size: 21px;
}
@media all and (min-width: 640px) and (min-width: 640px) {
  .contact button {
    position: relative;
    display: inline-block;
    text-decoration: none;
    z-index: 2;
    display: table;
  }
  .contact button::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(52, 59, 74);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: -1;
  }
  .contact button:hover {
    color: white;
  }
  .contact button:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .contact button::before {
    background: rgb(255, 104, 109);
  }
}
@media all and (max-width: 640px) {
  .contact {
    margin-top: 20px;
  }
  .contact__form dt {
    font-size: 16px;
    width: 100%;
    line-height: 125%;
  }
  .contact__form dd {
    margin-top: 10px;
    width: 100%;
  }
  .contact button {
    font-size: 16px;
  }
}

.movietile {
  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;
}
.movietile__header {
  font-family: "Dosis", "Kosugi Maru", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  font-size: 42px;
  color: rgb(255, 104, 109);
  font-weight: normal;
  text-align: center;
  width: 100%;
}
@media all and (max-width: 640px) {
  .movietile__header {
    font-size: 24px;
  }
}
.movietile__item {
  width: 48%;
  margin-top: 4%;
  padding-bottom: 28%;
  position: relative;
}
@media all and (max-width: 640px) {
  .movietile__item {
    margin-top: 10%;
    width: 100%;
    padding-bottom: 58.33%;
  }
}
.movietile__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.buttonlink {
  margin: 0 auto;
  margin-top: 50px;
  line-height: 75px;
  text-align: center;
  font-size: 30px;
  position: relative;
  background: #797f8a;
  color: rgb(229, 205, 108);
  width: 60%;
  border-radius: 100px;
  overflow: hidden;
}
.buttonlink__link {
  display: block;
  height: 100%;
  z-index: 2;
  position: relative;
}
@media all and (min-width: 640px) {
  .buttonlink__link:hover {
    text-decoration: none;
  }
}
.buttonlink::after {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: 100px;
  background: rgb(255, 104, 109);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media all and (max-width: 640px) {
  .buttonlink {
    font-size: 20px;
    line-height: 50px;
  }
}
@media all and (min-width: 640px) {
  .buttonlink:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.card {
  margin-top: 50px;
  height: 400px;
  position: relative;
  background: #797f8a;
}
.card__link {
  display: block;
  height: 100%;
  z-index: 2;
  position: relative;
}
@media all and (min-width: 640px) {
  .card__link:hover {
    text-decoration: none;
  }
}
.card._online .card__link {
  background: url(../image/menu_online.png) no-repeat bottom 40px right 40px;
  background-size: 300px;
}
.card._processing .card__link {
  background: url(../image/menu_processing.png) no-repeat bottom 40px right 40px;
  background-size: 285px;
}
.card._turnaround .card__link {
  background: url(../image/menu_turnaround.png) no-repeat bottom 40px right 40px;
  background-size: 280px;
}
.card._workshop .card__link {
  background: url(../image/menu_workshop.png) no-repeat bottom 40px right 40px;
  background-size: 270px;
}
.card::after {
  content: "";
  height: 100%;
  width: 100%;
  background: rgb(255, 104, 109);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media all and (min-width: 640px) {
  .card:hover::after {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.card__text {
  color: rgb(229, 205, 108);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.card__header {
  font-size: 38px;
  font-family: "Dosis", "Kosugi Maru", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
.card__submenu li {
  font-size: 26px;
  margin-top: 20px;
}
.card__subheader {
  font-size: 16px;
}
@media all and (max-width: 640px) {
  .card {
    height: 140px;
    margin-top: 30px;
  }
  .card._online .card__link {
    background: url(../image/menu_online.png) no-repeat bottom 20px right 20px;
    background-size: 110px;
  }
  .card._processing .card__link {
    background: url(../image/menu_processing.png) no-repeat bottom 20px right 20px;
    background-size: 100px;
  }
  .card._turnaround .card__link {
    background: url(../image/menu_turnaround.png) no-repeat bottom 20px right 20px;
    background-size: 100px;
  }
  .card._workshop .card__link {
    background: url(../image/menu_workshop.png) no-repeat bottom 20px right 20px;
    background-size: 95px;
  }
  .card__text {
    padding: 15px;
  }
  .card__header {
    font-size: 20px;
  }
  .card__submenu li {
    font-size: 14px;
    margin-top: 5px;
  }
  .card__subheader {
    font-size: 12px;
  }
}

.footer {
  background: rgb(255, 104, 109);
  color: rgb(52, 59, 74);
  position: relative;
  padding-bottom: 50px;
  font-family: "Dosis", "Kosugi Maru", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
}
.footer__content {
  padding-top: 90px;
  width: 1200px;
  margin: 0px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__navigation {
  font-size: 30px;
}
.footer__navigation li._socialheader {
  font-size: 40px;
}
.footer__navigation li._main {
  font-size: 30px;
}
.footer__navigation li._sub {
  font-size: 24px;
  margin-top: 15px;
  padding-left: 10px;
}
.footer__navigation li + li {
  margin-top: 25px;
}
@media all and (min-width: 640px) {
  .footer__navigation li:not(._social) a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    z-index: 2;
  }
  .footer__navigation li:not(._social) a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(52, 59, 74);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: -1;
  }
  .footer__navigation li:not(._social) a:hover {
    color: white;
  }
  .footer__navigation li:not(._social) a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.footer__navigation._socials li:nth-child(2) {
  float: left;
  margin-right: 30px;
}
@media all and (min-width: 640px) {
  .footer__navigation._socials a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .footer__navigation._socials a:hover {
    opacity: 0.5;
  }
}
.footer__link {
  width: 1200px;
  margin: 135px auto 0;
  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;
}
.footer__link li._highland img {
  width: 170px;
}
.footer__link li._hw img {
  width: 100px;
}
.footer__link li._studio img {
  width: 110px;
}
.footer__link li._chocolate img {
  width: 185px;
}
@media all and (min-width: 640px) {
  .footer__link li {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .footer__link li:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  font-size: 16px;
}
@media all and (min-width: 640px) {
  .footer__copyright {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    white-space: nowrap;
    -webkit-transform: rotate(180deg) translateY(50%);
            transform: rotate(180deg) translateY(50%);
  }
}
@media all and (max-width: 640px) {
  .footer {
    padding-bottom: 25px;
  }
  .footer__content {
    display: none;
  }
  .footer__link {
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px;
  }
  .footer__link li._highland img {
    width: 57px;
  }
  .footer__link li._hw img {
    width: 33px;
  }
  .footer__link li._studio img {
    width: 36px;
  }
  .footer__link li._chocolate img {
    width: 63px;
  }
  .footer__copyright {
    font-size: 12px;
    text-align: center;
    display: block;
  }
}

.menubutton {
  overflow: hidden;
  display: block;
  position: fixed;
  z-index: 1000;
  width: 122px;
  height: 111px;
  cursor: pointer;
  right: 0;
  top: 0;
}
.menubutton span, .menubutton::before, .menubutton::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 32px;
  height: 2px;
  margin: auto;
  background: #cbcbcb;
}
.menubutton span {
  overflow: hidden;
  z-index: 1;
}
.menubutton::before {
  z-index: 2;
  -webkit-transform: translate(0, -7px);
          transform: translate(0, -7px);
  content: "";
}
.menubutton::after {
  z-index: 2;
  -webkit-transform: translate(0, 7px);
          transform: translate(0, 7px);
  content: "";
}
@media all and (min-width: 640px) {
  .menubutton:hover span, .menubutton:hover::before, .menubutton:hover::after {
    width: 22px;
  }
}
@media all and (max-width: 640px) {
  .menubutton {
    width: 72px;
    height: 65px;
  }
  .menubutton span, .menubutton::before, .menubutton::after {
    width: 22px;
  }
  .menubutton::before {
    -webkit-transform: translate(0, -6px);
            transform: translate(0, -6px);
  }
  .menubutton::after {
    -webkit-transform: translate(0, 6px);
            transform: translate(0, 6px);
  }
}
.menubutton span {
  -webkit-transition: 200ms;
  transition: 200ms;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
}
.menubutton::before, .menubutton::after {
  -webkit-transition: 200ms;
  transition: 200ms;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform;
}
.menubutton.clicked span {
  opacity: 0;
  -webkit-transition: -webkit-transform 150ms;
  transition: -webkit-transform 150ms;
  transition: transform 150ms;
  transition: transform 150ms, -webkit-transform 150ms;
  background: rgb(52, 59, 74);
}
.menubutton.clicked::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: rgb(52, 59, 74);
}
.menubutton.clicked::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: rgb(52, 59, 74);
}
/*# sourceMappingURL=base.css.map */