@charset "UTF-8";
/*

  COMPANY のスタイル
----------------------------------------------- */
/* ブレイクポイント */
.contents {
  padding-left: calc(50vw - 480px);
  padding-right: calc(50vw - 480px);
  height: 100vh;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .contents {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 940px) {
  .contents {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.content {
  display: flex;
}
@media (min-width: 941px) {
  .content {
    justify-content: space-between;
    gap: clamp(40px, 6vw, 80px);
  }
}
@media (max-width: 940px) and (orientation: landscape) {
  .content {
    justify-content: space-between;
    gap: 20px;
  }
}
@media (max-width: 940px) and (orientation: portrait) {
  .content {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(40px, 5vw, 50px);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
.content .slide-in {
  opacity: 0;
}

.head h2 {
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media (min-width: 941px) {
  .head h2 {
    scale: 0.9;
  }
}
@media (max-width: 940px) and (orientation: portrait) {
  .head h2 {
    scale: 0.8;
  }
}
@media (max-width: 940px) and (orientation: landscape) {
  .head {
    align-self: center;
  }
  .head h2 {
    scale: 0.65;
  }
}
@media (max-width: 520px) {
  .head h2 {
    scale: 0.65;
  }
}

.body h3 {
  margin-bottom: 2em;
  font-size: 20rem;
  font-weight: normal;
}
.body h3 img {
  margin-left: 15px;
  width: 142px;
}
@media (max-width: 940px) and (orientation: landscape) {
  .body h3 {
    margin-bottom: 1.5em;
  }
}
.body dl {
  display: grid;
}
@media (min-width: 941px) {
  .body dl {
    grid-template-columns: auto 1fr;
    gap: 1.8em;
  }
}
@media (max-width: 940px) and (orientation: landscape) {
  .body dl {
    grid-template-columns: auto 1fr;
    gap: 1em;
  }
}
@media (max-width: 940px) {
  .body dl {
    gap: 0.5em;
  }
}
.body dt {
  padding-top: 0.1em;
  font-size: 15rem;
}
.body dd {
  font-size: clamp(15px, 1.6363636364vw, 18px);
}
.body dd small {
  display: block;
  margin: 0.3em 0;
  padding-left: 1.3em;
  font-size: 15rem;
  line-height: 1.45;
}
@media (max-width: 940px) and (orientation: portrait) {
  .body dd small {
    padding-left: 0;
  }
  .body dd + dt {
    margin-top: 1.5em;
  }
}
@media (max-width: 520px) {
  .body dd small {
    font-size: 14rem;
    line-height: 1.3;
  }
}

.view .head.slide-in {
  -webkit-animation: add 2.5s 0.1s forwards;
          animation: add 2.5s 0.1s forwards;
}

.view .body.slide-in {
  -webkit-animation: add 3s 0.3s forwards;
          animation: add 3s 0.3s forwards;
}

@-webkit-keyframes add {
  from {
    opacity: 0;
    translate: 50px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}

@keyframes add {
  from {
    opacity: 0;
    translate: 50px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}
.view .splitLogo > * {
  opacity: 1;
  translate: 0;
}