@charset "UTF-8";
/*============================
#company
============================*/
article#company {
  margin-top: 95px;
}
@media screen and (max-width: 768px) {
  article#company {
    margin-top: 72px;
  }
}
article#company header {
  max-width: 1280px;
  padding: 80px 40px 40px;
  text-align: center;
  position: relative;
  margin: auto;
}
@media screen and (max-width: 768px) {
  article#company header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
article#company header div {
  font-size: 12rem;
  opacity: 0.1;
  position: absolute;
  left: 0;
  bottom: 60px;
  z-index: -1;
  letter-spacing: 8px;
}
@media screen and (max-width: 768px) {
  article#company header div {
    font-size: 6rem;
    opacity: 0.06;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50px;
    z-index: -1;
    letter-spacing: 4px;
  }
}
article#company header h2 {
  font-size: 6rem;
  letter-spacing: 4px;
  padding-bottom: 20px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  article#company header h2 {
    width: auto;
    font-size: 4.8rem;
  }
}
article#company header h2:after {
  content: "";
  width: 80px;
  height: 2px;
  position: absolute;
  left: calc(50% - 40px);
  bottom: 0;
  background: #000;
}
article#company header i {
  display: block;
  padding: 20px 0 0;
  letter-spacing: 2px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  article#company header i {
    width: auto;
  }
}
article#company section div.wrap {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  article#company section div.wrap {
    padding-bottom: 40px;
  }
}
article#company section div.wrap h2 {
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 2px;
  padding-bottom: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  article#company section div.wrap h2 {
    font-size: 2.4rem;
    padding-bottom: 40px;
  }
}
article#company section div.wrap p {
  max-width: 800px;
  margin: auto;
  padding-bottom: 80px;
  margin: auto;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 2px;
}
article#company section div.wrap table {
  max-width: 800px;
  width: 100%;
  margin: auto;
  text-align: left;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  article#company section div.wrap table tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
}
article#company section div.wrap table tbody tr th {
  padding: 20px;
  border-bottom: solid 1px;
}
@media screen and (max-width: 768px) {
  article#company section div.wrap table tbody tr th {
    width: 100%;
    padding: 40px 10px 0;
    border-bottom: none;
  }
}
article#company section div.wrap table tbody tr td {
  padding: 20px;
  border-bottom: solid 1px;
}
@media screen and (max-width: 768px) {
  article#company section div.wrap table tbody tr td {
    padding: 10px 20px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  article#company section div.wrap table tbody tr:first-child th {
    padding-top: 0;
  }
}

.bgextend {
  display: block;
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #c8102e;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}/*# sourceMappingURL=company.css.map */