address, article, aside, audio, b, blockquote, body, body div, caption, cite, dd, del, details, dl, dt, em, fieldset, figure, footer, form, h1, h2, h3, h4, h5, h6, header, html, i, iframe, img, label, legend, li, mark, menu, nav, object, ol, p, pre, section, small, span, strong, summary, table, tbody, td, tfoot, th, thead, time, tr, ul, video {
  padding: 0;
  margin: 0;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.7;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

article, aside, details, figure, footer, header, nav, section, summary {
  display: block
}

*, :after, :before {
  box-sizing: inherit
}

embed, img, object {
  max-width: 100%
}

img {
  vertical-align: bottom
}

ul {
  list-style: none
}

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

table {
  font: 100%;
  font-size: inherit;
  line-height: 1.5;
  border-spacing: 0;
  border-collapse: collapse
}

td, th {
  font-weight: 400;
  vertical-align: top
}

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

input, select {
  vertical-align: middle
}

pre {
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line
}

input[type=radio] {
  vertical-align: text-bottom
}

input[type=checkbox] {
  vertical-align: bottom
}

input, select, textarea {
  font: 99% sans-serif
}

b, strong {
  font-weight: 700
}

button, input[type=button], input[type=file], input[type=submit], label {
  cursor: pointer
}

button, input, select, textarea {
  margin: 0
}

button, input[type=button] {
  width: auto;
  overflow: visible
}

/* Originals */

html {
  position: relative;
  min-width: 300px;
  box-sizing: border-box;
  font-family: "Avenir Next", "Futura", "Arial", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  color: #444;
  font-weight: 400;
}

.hero {
  height: 90vh;
  width: 100%;
  background: #e2e2e2 url(../img/main.jpg) 25% no-repeat;
  background-size: cover;
  color: #FFFFFF;
}

/*
.hero--header {
  padding: 32px 0 0 24px;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.hero--header h1 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.23px;
  line-height: 54px;
}

.hero--header p {
  height: 12px;
  opacity: 0.8;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08px;
  line-height: 18px;
} */

.hero--contents {
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  height: 64px;
  width: 339px;
  float: right;
  padding: 37vh 24px 0 0;
}

.hero--contents h1 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.15px;
  line-height: 14px;
  font-style: normal;
  text-align: right;
}

.hero--contents h2 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.23px;
  line-height: 24px;
  font-style: normal;
  padding: 0 0 16px 0;
  text-align: right;
}

.hero img {
  position: relative;
  bottom: -80vh;
  left: 50%;
}


a.scroll {
  position: relative;
  top: 67vh;
  left: 47.5%;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  padding-top: 70px;
  color: #fff;
  font-weight: 600;
}

a.scroll span {
  position: absolute;
  top: 0;
  left: 47.5%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@media screen and (min-width:768px) {
  .hero {
    background: #e2e2e2 url(../img/main.jpg) 50% no-repeat;
    background-size: cover;
    height: 100vh;
  }
  .hero--header {
    padding: 48px 0 0 48px;
  }
  .hero--contents {
    padding: 50vh 48px 0 0;
  }
  a.scroll {
    position: relative;
    top: 87vh;
    left: 47.5vw;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
    padding-top: 70px;
    color: #fff;
    font-weight: 600;
  }
}

.events, .careers, .about {
  padding: 48px 0;
  margin: auto;
}

h2 {
  color: #4A4A4A;
  font-size: 36px;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.23px;
  line-height: 49px;
  text-align: center;
  padding: 0 0 32px 0;
}

.events--detail {
  width: 327px;
  border-radius: 8px;
  background-color: #F8F8F8;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
  margin: auto;
  transition: 1s;
}

.events--detail img {
  height: 175px;
  width: 327px;
  border-radius: 8px;
}

.events a:hover div, .events a:active div, .careers a:hover div, .careers a:active div, .about a:active div, .about a:hover div {
  box-shadow: 0 8px 64px 0 rgba(0, 0, 0, 0.16);
  transition: 1s;
}

.events--detail h3 {
  color: #4A4A4A;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11px;
  line-height: 26px;
  padding: 16px 16px 8px 16px;
}

.events--detail p {
  color: #4A4A4A;
  font-size: 14px;
  letter-spacing: 0.09px;
  line-height: 19px;
  padding: 0 16px 16px 16px;
}

.events a, .careers a, .about a {
  text-decoration: none;
}

.careers p {
  color: #4A4A4A;
  font-size: 14px;
  letter-spacing: 0.09px;
  line-height: 22px;
  text-align: center;
  padding: 0 0 48px 0;
}

.careers--detail {
  height: 51px;
  width: 327px;
  border-radius: 8px;
  background-color: #F8F8F8;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
  margin: 0 auto 16px auto;
  transition: 1s;
}

.careers--detail p {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.17px;
  line-height: 19px;
  text-align: left;
  padding: 16px;
  width: 85%;
  display: block;
  float: left;
}

.careers--detail img {
  width: 14px;
  margin: 16px;
  display: block;
  float: right;
}

.about {
  padding: 24px;
}

.about table {
  margin: auto;
}

.about th {
  font-weight: bold;
  color: #9B9B9B;
  letter-spacing: 0.09px;
  line-height: 21px;
  text-align: right;
  padding: 0 16px 16px 0;
  width: 115px;
}

.about td {
  color: #4A4A4A;
  letter-spacing: 0.09px;
  line-height: 22px;
  padding: 0 16px 16px 0;
}

.about h3 {
  color: #9B9B9B;
  padding: 8px 0 8px 0;
  font-weight: bold;
  text-align: center;
}

.about p {
  padding: 0 0 48px 0;
  text-align: center;
}

.about--contact {
  height: 51px;
  width: 144px;
  border-radius: 8px;
  background-color: #F8F8F8;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
  margin: 16px auto;
  transition: 1s;
}

.about--contact p {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.17px;
  line-height: 19px;
  padding: 16px;
}

.footer {
  height: 51px;
  width: 100%;
}

.footer p {
  color: #9B9B9B;
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.09px;
  line-height: 19px;
  padding: 16px 0;
  text-align: center;
}