@charset "UTF-8";
@font-face {
	font-family: 'Helvetica-Title';
	src: url(../../../consulting/common/font/HelveticaNeueLTPro57Condensed.otf);
}
@font-face {
	font-family: 'Jost-Bold';
	src: url(../../../consulting/common/font/Jost-Bold.ttf);
}
@font-face {
	font-family: 'Jost-Medium';
	src: url(../../../consulting/common/font/Jost-Medium.ttf);
}
@font-face {
	font-family: 'Jost-Regular';
	src: url(../../../consulting/common/font/Jost-Regular.ttf);
}

html {
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 400;
}
p {
  letter-spacing: 1px;
  text-align: justify;
  margin-bottom: 1%;
  font-size: calc(8px + 0.5vw);
}
strong {
  font-weight: 700;
}

ul li {
  list-style: none;
}

ol {
  counter-reset: number;
}

ol li {
  display: list-item;
}

ol li:before {
  counter-increment: number;
  content: counter(number) ". ";
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

a {
  text-decoration: none;
}

a, a:link, a:visited, a:hover {
  color: #000;
  text-decoration: none;
}
legend {
  color: #000;
}

del,
ins {
  text-decoration: none;
}

body {
  color: #fff;
  font-size: 100%;
  font-style: normal;
  font-weight: 300;
  overflow: hidden;
  background: #000;
  font-family: Noto Sans JP, sans-serif, 'Yu Gothic',YuGothic,sans-serif;
}

@media screen and (max-width:768px) {
  .pc {
      display: none!important;
  }
}

@media screen and (min-width:769px) {
  .sp {
      display: none!important;
  }
}


.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.blink:hover {
  animation: blink .5s ease;
  -webkit-transition: all 0.6s ease;
      -ms-transition: all 0.6s ease;
          transition: all 0.6s ease;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/* Opening Shutter */

#shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#101010;
  z-index:9999;
}
#shutter {
  -webkit-animation: byeShutter 5s forwards;
          animation: byeShutter 5s forwards;
}
#shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
}
#shutter::before {
  -webkit-animation: shutterOpen 5s ease;
          animation: shutterOpen 5s ease;
}
#mv {
  -webkit-animation: contentScale 5s cubic-bezier(.19,0,.07,1);
          animation: contentScale 5s cubic-bezier(.19,0,.07,1);
  width: 100%;
  background-image: url(../../../consulting/common/img/bg.jpg);
  background-repeat: no-repeat;
  background-size: 100vw;
/*  background-position: -16vw -4vw;*/
  height: 100vh;
}
@keyframes byeShutter {
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  70% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes contentScale {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

/* MENU button */
.button_container {
  position: fixed;
  top: 5%;
  right: 2%;
  height: 27px;
  width: 56px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: white;
}
.button_container.active .middle {
  transform: translateY(0px) translateX(0) rotate(-45deg);
  background: white;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: white;
}
.button_container span {
  background: #999a9c;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
  opacity: 0;
}
.button_container .top {
  animation: bar_top 0.5s cubic-bezier(0.25, 0.46, 0.32, 0.95) forwards;
  animation-delay: 6.4s;
}
.button_container .middle {
  top: 11px;
  animation: bar_middle 0.5s cubic-bezier(0.25, 0.46, 0.32, 0.95) forwards;
  animation-delay: 6.2s;
}
.button_container .bottom {
  top: 22px;
  animation: bar_bottom 0.5s cubic-bezier(0.25, 0.46, 0.32, 0.95) forwards;
  animation-delay: 6s;
}

@keyframes bar_top {
  0% {
    opacity: 0;
    top: -20px;;
  }
  100% {
    opacity: 1;
    top: 0;;
  }
}
@keyframes bar_middle {
  0% {
    opacity: 0;
    top: -9px;
  }
  100% {
    opacity: 1;
    top: 11px;
  }
}
@keyframes bar_bottom {
  0% {
    opacity: 0;
    top: 2px;
  }
  100% {
    opacity: 1;
    top: 22px;
  }
}

/* Language */
.lang {
  position: fixed;
  top: 11%;
  right: 2%;
  width: 56px;
  z-index: 99;
  opacity: 0;
  -webkit-animation: lang 0.5s ease forwards;
          animation: lang 0.5s ease forwards;
  -webkit-animation-delay: 5.6s;
          animation-delay: 5.6s;
}

@keyframes lang {
  0% {
    opacity: 0;
    top: 7%;
  }
  100% {
    opacity: 1;
    top: 11%;
  }
}
.lang_inner {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  border: solid 1px #999a9c;
}
.lang_inner div {
  width: 50%;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
    background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  transition: background-position ease 0.4s;
}
.lang_inner div.JP {
  background-image: linear-gradient( to left, #999a9c 0%, #999a9c 50%, #000000 50%, #000000 100% );
  color: #101010;
  padding-top: 5%;
}
.lang_inner div.EN {
  background-image: linear-gradient( to right, #999a9c 0%, #999a9c 50%, #000000 50%, #000000 100% );
}
.lang_inner div.EN a {
  padding: 10% 23%;
  display: block;
  color: #999a9c;
}
.lang_inner div.EN:hover {
  background-position: 0 0;
}
.lang_inner div.EN:hover a {
  color: #101010;
  transition: color ease 0.4s;
}
.lang_inner div.EN:hover + .JP {
  background-position: 0 0;
  color: #999a9c;
  transition: all ease 0.4s;
}

/* Navigation MENU */
.overlay {
  position: fixed;
  background: #101010;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 99;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
          animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}
.overlay nav {
  position: relative;
  height: 80%;
  top: 40%;
  transform: translateY(-50%);
  font-size: 50px;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
/*  height: 100%;*/
}
.overlay ul li {
  display: block;
/*
  height: 25%;
  height: calc(100% / 4);
*/
/*  min-height: 50px;*/
  position: relative;
  opacity: 0;
  margin: 5% auto 0;
}
.overlay ul li a, .link_en a {
/*  display: block;*/
/*  position: relative;*/
  color: #b3b0b0;
  text-decoration: none;
  overflow: hidden;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  letter-spacing: 2px;
  transition: 0.5s ease;
}

.overlay nav ul li .slash img {
  width: 5%;
  padding-bottom: 2%;
}
.overlay nav .snslink {
  width: 30%;
  height: 6%;
  margin: 4% auto 4%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  max-width: 280px;
}
.overlay.open nav .snslink a {
  display: block;
  width: 15%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-animation: fadeInRight 0.5s ease forwards;
          animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
  transition: background 0.3s ease;
}
.overlay.open nav .link_en a {
  position: relative;
  opacity: 0;
  /* -webkit-animation: fadeInRight 0.5s ease forwards; */
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.overlay nav .snslink img {
    width: 4vw;
    max-width: none;
}
/*
.overlay.open nav .snslink .youtube {
  background-image: url(../../../consulting/common/img/youtube_white.png);
}
.overlay.open nav .snslink .youtube:hover {
    background-image: url(../../../consulting/common/img/youtube_color.png);
  transition: background 0.3s ease;
}
.overlay.open nav .snslink .instagram {
  background-image: url(../../../consulting/common/img/instagram_white.png);
  -webkit-animation-delay: 0.95s;
          animation-delay: 0.95s;
}
.overlay.open nav .snslink .instagram:hover {
    background-image: url(../../../consulting/common/img/instagram_color.png);
  transition: background 0.3s ease;
}
.overlay.open nav .snslink .twitter {
  background-image: url(../../../consulting/common/img/twitter_white.png);
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.overlay.open nav .snslink .twitter:hover {
    background-image: url(../../../consulting/common/img/twitter_color.png);
  transition: background 0.3s ease;
}
.overlay.open nav .snslink .facebook {
  background-image: url(../../../consulting/common/img/facebook_white.png);
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.overlay.open nav .snslink .facebook:hover {
    background-image: url(../../../consulting/common/img/facebook_color.png);
  transition: background 0.3s ease;
}
*/
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    left: 0;
    transform: translate(0px, 0);
  }
}

/* IE対応 */
@media all and (-ms-high-contrast: none) {

.overlay.open nav .snslink a {
  width: 30%;    
}
.overlay.open nav .snslink .youtube, .overlay.open nav .snslink .instagram {
  margin-right: 5%;
}
}

/* NOILION LOGO */
#logo {
    color: #000;
    position: absolute;
    width: 100%;
    top: 0;
    font-family: Helvetica-Title, p22-flw-exhibition, sans-serif;
    font-size: 6vw;
    font-weight: 700;
    padding: 12vw 0 0 58%;
    letter-spacing: -0.6vw;
}
/*
#logo {
  position: absolute;
  width: 71.5vw;
  bottom: 10%;
  right: 14%;
  display: flex;
  justify-content: flex-end;
}
*/
/*
#logo {
  color: #000;
  position: absolute;
  width: 100%;
  height: fit-content;
  margin: auto;
  bottom: 3vw;
  display: flex;
  justify-content: center;
  font-family: Helvetica-Title, p22-flw-exhibition, sans-serif;
  font-size: 20vw;
  font-weight: 400;
  letter-spacing: 1vw;
}
*/
/*
#logo img {
  opacity: 0;
}
*/
#logo span {
  opacity: 0;
}
#logo :nth-child(1) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 4s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 4s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(2) {
  -webkit-animation: O-fadeInDownRightToUp 2s 4.1s ease forwards;
          animation: O-fadeInDownRightToUp 2s 4.1s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(3) {
  -webkit-animation: I-fadeInUpToDown 2s 4.2s ease forwards;
          animation: I-fadeInUpToDown 2s 4.2s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
      margin-right: 2vw;
}
#logo :nth-child(4) {
  -webkit-animation: L-fadeInDownToUp 2s 4.3s ease forwards;
          animation: L-fadeInDownToUp 2s 4.3s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(5) {
  -webkit-animation: I-fadeInUpToDown 2s 4.4s ease forwards;
          animation: I-fadeInUpToDown 2s 4.4s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(6) {
  -webkit-animation: O-fadeInDownRightToUp 2s 4.5s ease forwards;
          animation: O-fadeInDownRightToUp 2s 4.5s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(7) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 4.6s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 4.6s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(7) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 4.6s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 4.6s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(8) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 4.7s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 4.7s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(9) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 4.8s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 4.8s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(10) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 4.9s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 4.9s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(11) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 5.0s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 5.0s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(12) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 5.1s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 5.1s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(13) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 5.2s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 5.2s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(14) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 5.3s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 5.3s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(15) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 5.4s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 5.4s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(16) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 5.5s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 5.5s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}
#logo :nth-child(17) {
  -webkit-animation: N-fadeInUpLeftToDown 2s 5.6s ease forwards;
          animation: N-fadeInUpLeftToDown 2s 5.6s cubic-bezier(0.11, 0.16, 0.11, 0.91) forwards;
}

@keyframes N-fadeInUpLeftToDown {
  0% {
    opacity: 0;
    transform: translate(-25%, -25%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, -4.5%);
  }
}
@keyframes O-fadeInDownRightToUp {
  0% {
    opacity: 0;
    transform: translate(20%, 20%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, -3%);
  }
 }
@keyframes I-fadeInUpToDown {
  0% {
    opacity: 0;
    transform: translate(0%, -25%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, -2.7%);
  }
}
@keyframes L-fadeInDownToUp {
  0% {
    opacity: 0;
    transform: translate(0%, 20%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, -3.1%);
  }
}

/* MAIN CONTENTS */
main {
  margin-top: 10%;
/*
  background-image: url(../../../consulting/common/img/bg_mark.png);
  background-size: contain;
*/
}
.fixed-back01 {
  background-image: url(../../../consulting/common/img/bg_mark.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 20vw;
}
.fixed-back02 {
  background: #fff;
  color: #000;
}
.fixed-back03 {
  background-image: url(../../../consulting/common/img/bg_MieRyan.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
}
section {
  max-width: 1600px;
  width: 84%;
  margin: 0 auto 0;
  padding: 0 0 7% 0;
}
section#discography {
  margin-bottom: 0;
  padding-bottom: 10%;
}
h2 {
  font-family: Helvetica-Title, sans-serif;
  font-size: 120px;
  font-weight: 300;
}

/* PROFILE */
.profile > div  {
  margin: 0 auto 0;
  overflow: hidden;
  position: relative;
}
.profile .intro {
  overflow: visible;
  z-index: 100;
}
.profile .textbox {
  max-width: 1300px;
  width: 57%;
  float: right;
}
.textbox .textbox_inner:not(.not_bar) {
  font-size: 1vw;
  background-image: url(../../../consulting/common/img/yellow-slash.png);
  background-repeat: no-repeat;
  background-size: 1.7vw;
  background-position-x: 0.15vw;
  line-height: 1.5;
}

.profile h3 {
  font-family: Helvetica-Title, p22-flw-exhibition, sans-serif;
  font-size: 140%;
  font-size: 2vw;
  font-weight: 500;
  line-height: initial;
  margin: 0 0 3% 7%;
}
.textbox .textbox_inner > h2 {
  margin: 0 0 1% 7%;
  display: block;
  font-size: 1vw;
  font-family: Jost-Bold, sans-serif;
}


@media all and (min-width: 1400px) and (max-width: 1600px) { 
/*
  .profile .textbox .textbox_inner p {
    font-size: 1vw;
  }
*/
 }

.profile .imgbox {
  position: absolute;
  width: 38%;
  height: 100%;
  background: url(../../../consulting/common/img/Mie.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.profile .right .textbox {
  float: left;
  width: 50%;
  padding-bottom: 3%;
}
.profile .right .textbox .textbox_inner {
  padding: 0% 10% 0% 0%;
  background-image: url(../../../consulting/common/img/black-slash.png);
  background-position-x: 0;
}

.profile .right .imgbox {
  background: url(../../../consulting/common/img/Ryan.png);
  background-size: cover;
  right: 0;
  width: 50%;
}
.fixed-back02 .profile {
  padding-top: 7%;
}
.fixed-back02 .profile p {
  line-height: 2;
}
.wide {
  display: none;
}

/* MESSAGE */
section#message .intro {
  padding: 9vw 0 8vw;
  text-align: center;
}
#message .intro h2, #message .intro h3 {
  /* font-size: 168%; */
  font-size: 3vw;
  font-weight: 500;
  font-family: Jost-Medium, sans-serif;
  color: #000;
  letter-spacing: 0.5vw;
  line-height: 4vw;
  position: relative;
  margin-bottom: 4vw;
}
#message .intro h2::after {
  content: '';
  width: 2.5vw;
  height: 3px;
  display: inline-block;
  background-color: #000;
  position: absolute;
  bottom: -1.8vw;
  left: calc(50% - 1.3vw);
}
#message .intro p {
  font-family: Helvetica-Title, p22-flw-exhibition, sans-serif;
  font-size: 2.6vw;
  text-align: center;
  padding-top: 1vw;
  margin: 0;
}

/* TEAM */
#team h2 {
  font-size: 6vw;
  letter-spacing: 0.2vw;
}
#team h2 span {
  color: #e8fe05;
}
#team .intro {
    margin-bottom: 6%;
}
#team .textbox .textbox_inner {
  padding: 0% 0% 0% 4%;
  background-position-x: 0;
}
#team .textbox .textbox_inner > span {
  margin: 0 0 1% 0;
  font-family: sans-serif;
  font-weight: 700;
  letter-spacing: 0.05vw;
}
#team .textbox .textbox_inner h3 {
  font-family: Jost-Medium, sans-serif;
  font-size: 2vw;
  font-weight: 300;
  line-height: 2.5vw;
  margin: 0 0 3% 0;
  letter-spacing: 0.05vw;
}

/* SUPPORT */
#support .intro, #contact .intro {
    z-index: 1;
    position: relative;
}
#support h2, #contact h2 {
  font-size: 6vw;
  line-height: 6vw;
  padding: 7% 0 1% 0;
  position: relative;
  z-index: 10;
}
#support h2 + span, #contact h2 + span {
  font-size: 2vw;
  font-weight: 500;
  display: block;
  margin: 0 0 3% 0;
  z-index: 10;
  position: relative;
}
#support .bgbox, #contact .bgbox {
  background-color: #e8fe05;
  width: 100%;
  height: 7vw;
  position: absolute;
  top: 8.2vw;
  left: -8vw;
}
#support .textbox {
  margin-bottom: 6%;
}
.support_wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.support_wrapper .support_inner {
  width: 80%;
  display: flex;
  margin: 4% 0;
  align-items: center;
}
.support_wrapper .support_inner .imgbox {
  background: #000;
  margin-right: 4%;
  min-width: 438px;
}
.support_wrapper .support_inner .imgbox img {
  transform: translate(-20px, -20px);
  transition: transform 0.4s ease;
}
#support h3 {
  font-size: 1.4vw;
  margin-bottom: 2%;
}

.support_wrapper .support_inner.even .imgbox {
  margin: 0 0 0 4%;
}
.support_wrapper .support_inner.even .imgbox img {
  transform: translate(20px, -20px);
}
#support p {
  line-height: 2;
}

/* ENDING */
#ending .textbox
{
  padding-top: 7%;
}
#ending .textbox p {
  font-size: 2vw;
  text-align: center;
  line-height: 2;
  margin: 0;
}



/* CONTACT */
#contact {
  text-align: center;
}
#contact .bgbox {
  left: 10vw;
  height: 6vw;
}
#contact h2 + span {
  font-weight: 700;
}
#contact .textbox_inner a {
  font-size: 2vw;
}


/* Footer*/
footer {
    padding: 7%;
  text-align: center;
  font-family: Jost-Medium, sans-serif;
  font-size: 2vw;
  letter-spacing: 2px;
}
footer .insta a {
  display: inline-block;
  margin: 3% auto;
}
footer .insta img {
  width: 6vw;
}
footer .copy {
  font-size: 1.5vw;
  color: #888888;
  font-family: Jost-Regular, sans-serif;
}