@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1086px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 20px; } }

[data-trigger] {
  position: relative;
  top: 30px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

.c-text01-jp {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.75;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    .c-text01-jp {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.61538462; } }

.c-text01-en {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.71428571;
  font-family: "Smooch Sans", sans-serif;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    .c-text01-en {
      font-size: 11px;
      font-size: 1.1rem;
      line-height: 1.45454545; } }

.c-title03-jp {
  font-size: 30px;
  font-size: 3rem;
  line-height: 0.93333333;
  font-weight: 300; }
  @media only screen and (max-width: 767px) {
    .c-title03-jp {
      font-size: 20px;
      font-size: 2rem;
      line-height: 1.4; } }

.c-title03-en {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-family: "Smooch Sans", sans-serif;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    .c-title03-en {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.5; } }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

body.top .loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 100; }
  body.top .loading__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    body.top .loading__bg > div {
      width: 100%;
      height: 50vh;
      display: block;
      background: #000;
      position: absolute;
      left: 0; }
    body.top .loading__bg .top {
      top: 0; }
    body.top .loading__bg .bottom {
      bottom: 0; }
  body.top .loading__bar {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    background: #222222; }
    body.top .loading__bar span {
      width: 0px;
      height: 1px;
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      background: #00D88D; }
  body.top .loading__logo {
    width: 600px;
    position: absolute;
    left: 50%;
    bottom: calc(50vh + 40px);
    transform: translate(-50%, 0%); }
    @media only screen and (max-width: 767px) {
      body.top .loading__logo {
        width: calc(100% - 30px); } }
  body.top .loading__percent {
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 1;
    font-family: "Smooch Sans", sans-serif;
    color: #fff;
    font-weight: 600;
    position: absolute;
    top: calc(50vh + 40px);
    left: 50%;
    transform: translate(-50%, 0%); }

@media only screen and (max-width: 767px) {
  body.top .nav {
    width: 100%;
    height: 80px;
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 98; } }

body.top .page-nav {
  position: fixed;
  left: 36px;
  bottom: 120px;
  z-index: +2;
  mix-blend-mode: difference; }
  @media only screen and (max-width: 767px) {
    body.top .page-nav {
      left: 20px;
      bottom: 45px; } }
  @media only screen and (max-width: 767px) {
    body.top .page-nav__list {
      position: relative; } }
  body.top .page-nav__list:hover li a span {
    opacity: 1;
    transform: translate(0, 0); }
  body.top .page-nav__list li {
    margin-top: 18px; }
    @media only screen and (max-width: 767px) {
      body.top .page-nav__list li {
        margin: 0;
        position: absolute;
        top: 0;
        left: 0; } }
    @media only screen and (max-width: 767px) {
      body.top .page-nav__list li.current {
        opacity: 1;
        visibility: visible; } }
    body.top .page-nav__list li.current a span {
      opacity: 1;
      transform: translate(0, 0); }
    body.top .page-nav__list li a {
      display: flex;
      align-items: center; }
      body.top .page-nav__list li a i {
        width: 14px;
        height: 14px;
        margin-right: 10px;
        position: relative; }
        body.top .page-nav__list li a i:after {
          content: "";
          width: 4px;
          height: 4px;
          display: inline-block;
          background: #fff;
          border-radius: 50%;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          opacity: 1; }
      body.top .page-nav__list li a span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.04em;
        font-family: "Smooch Sans", sans-serif;
        font-weight: 600;
        color: #fff;
        opacity: 0;
        transform: translate(20px, 0);
        transition: opacity .3s, transform .3s; }

body.top .banner-recruit {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: +2;
  background: #00D88D;
  color: #fff;
  width: 200px;
  height: 140px;
  padding: 34px 22px 26px;
  text-align: center;
  transition: color .3s, background-color .3s;
  border: 1px solid #00D88D;
  border-right: none;
  border-bottom: none; }
  @media only screen and (max-width: 767px) {
    body.top .banner-recruit {
      width: 254px;
      height: 80px;
      background: none;
      color: #00D88D;
      border: none;
      padding: 22px 15px 15px 32px;
      text-align: left; } }
  @media only screen and (min-width: 768px) {
    body.top .banner-recruit:hover {
      background: #000;
      color: #00D88D; }
      body.top .banner-recruit:hover svg path {
        stroke: #00D88D; } }
  body.top .banner-recruit svg {
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px; }
    @media only screen and (max-width: 767px) {
      body.top .banner-recruit svg {
        top: 15px;
        right: 15px; } }
    body.top .banner-recruit svg path {
      transition: stroke .3s; }
      @media only screen and (max-width: 767px) {
        body.top .banner-recruit svg path {
          stroke: #00D88D; } }
  body.top .banner-recruit strong {
    display: block;
    font-size: 30px;
    font-size: 3rem;
    line-height: 0.8;
    font-family: "Goldman", sans-serif;
    font-weight: 600;
    margin-bottom: 7px; }
    @media only screen and (max-width: 767px) {
      body.top .banner-recruit strong {
        font-size: 26px;
        font-size: 2.6rem;
        margin-bottom: 4px; } }
  body.top .banner-recruit span {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    font-weight: 600; }
    @media only screen and (max-width: 767px) {
      body.top .banner-recruit span {
        font-size: 12px;
        font-size: 1.2rem; } }

body.top .main-visual {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: +1; }
  body.top .main-visual__movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    body.top .main-visual__movie video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .main-visual__title {
    position: absolute;
    width: 600px;
    top: 40px;
    left: 50%;
    transform: translate(-50%, 0%);
    opacity: 0; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__title {
        top: 20px;
        width: calc(100% - 30px); } }
    body.top .main-visual__title img {
      display: block; }
  body.top .main-visual__scroll {
    position: absolute;
    top: 120px;
    left: 40px;
    display: flex;
    transition: opacity .3s; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__scroll {
        mix-blend-mode: difference;
        top: auto;
        left: 15px;
        bottom: calc(100vh - (100svh - 100px)); } }
    @media only screen and (min-width: 768px) {
      body.top .main-visual__scroll:hover {
        opacity: 0.7; } }
    body.top .main-visual__scroll i {
      width: 1px;
      height: 237px;
      display: block;
      background: #222222;
      margin-right: 16px;
      position: relative; }
      body.top .main-visual__scroll i:after {
        content: "";
        width: 1px;
        height: 100%;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__scroll i {
          margin-right: 6px; } }
    body.top .main-visual__scroll span {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.04em;
      font-family: "Smooch Sans", sans-serif;
      font-weight: 600;
      color: #fff;
      writing-mode: vertical-rl;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: vertical-rl; }

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0; }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0; }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%; }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%; } }

body.top .about {
  background: #fff;
  position: relative;
  z-index: +1;
  padding: 120px 0; }
  @media only screen and (max-width: 767px) {
    body.top .about {
      padding: 100px 0; } }
  body.top .about__text {
    margin-bottom: 114px; }
    @media only screen and (max-width: 767px) {
      body.top .about__text {
        margin-bottom: 60px; } }
    body.top .about__text h2 {
      margin-bottom: 38px; }
    body.top .about__text .jp {
      max-width: 900px;
      margin-bottom: 28px; }
      @media only screen and (max-width: 767px) {
        body.top .about__text .jp {
          line-height: 2.30769231;
          margin-bottom: 36px; } }
    body.top .about__text .en {
      max-width: 610px; }
  body.top .about__number {
    display: flex;
    justify-content: space-between;
    max-width: 965px; }
    @media only screen and (max-width: 767px) {
      body.top .about__number {
        display: block; } }
    body.top .about__number dl {
      position: relative;
      padding-left: 40px; }
      @media only screen and (max-width: 767px) {
        body.top .about__number dl {
          width: 100%;
          padding-left: 30px;
          margin-bottom: 28px; } }
      body.top .about__number dl:nth-of-type(1) {
        width: 320px; }
        @media only screen and (max-width: 767px) {
          body.top .about__number dl:nth-of-type(1) {
            width: 100%; } }
      body.top .about__number dl:nth-of-type(2) {
        width: 178px; }
        @media only screen and (max-width: 767px) {
          body.top .about__number dl:nth-of-type(2) {
            width: 100%; } }
      body.top .about__number dl:nth-of-type(3) {
        width: 386px; }
        @media only screen and (max-width: 767px) {
          body.top .about__number dl:nth-of-type(3) {
            width: 100%;
            margin-bottom: 0; } }
      body.top .about__number dl:before {
        content: "";
        width: 3px;
        height: 100%;
        display: block;
        background: #000;
        position: absolute;
        top: 0;
        left: 0; }
      body.top .about__number dl dt {
        color: #00D88D;
        margin-bottom: 18px; }
        @media only screen and (max-width: 767px) {
          body.top .about__number dl dt {
            margin-bottom: 12px; } }
        body.top .about__number dl dt .jp {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.06em;
          display: inline-block;
          margin-right: 10px; }
          @media only screen and (max-width: 767px) {
            body.top .about__number dl dt .jp {
              font-size: 12px;
              font-size: 1.2rem;
              margin-right: 8px; } }
        body.top .about__number dl dt .en {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.02em;
          font-weight: 600;
          font-family: "Smooch Sans", sans-serif; }
          @media only screen and (max-width: 767px) {
            body.top .about__number dl dt .en {
              font-size: 10px;
              font-size: 1rem; } }
      body.top .about__number dl dd {
        font-size: 188px;
        font-size: 18.8rem;
        font-family: "Smooch Sans", sans-serif;
        font-weight: 600;
        line-height: 0.65; }
        @media only screen and (max-width: 767px) {
          body.top .about__number dl dd {
            font-size: 111px;
            font-size: 11.1rem; } }

body.top .statement {
  background: #000;
  position: relative;
  z-index: +1; }
  @media only screen and (max-width: 767px) {
    body.top .statement {
      padding-top: 60vw; } }
  body.top .statement__video {
    position: absolute;
    width: calc(100vw - (50vw + 273px));
    height: 100vh;
    top: 0;
    left: 0; }
    @media only screen and (max-width: 767px) {
      body.top .statement__video {
        width: 100%;
        height: 60vw; } }
    body.top .statement__video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .statement__text {
    padding-top: 110px;
    padding-bottom: 110px;
    padding-left: 310px;
    color: #fff; }
    @media only screen and (max-width: 767px) {
      body.top .statement__text {
        padding-top: 32px;
        padding-bottom: 84px;
        padding-left: 0; } }
    body.top .statement__text dl {
      margin-bottom: 136px; }
      @media only screen and (max-width: 767px) {
        body.top .statement__text dl {
          margin-bottom: 52px; } }
      body.top .statement__text dl:last-of-type {
        margin-bottom: 0; }
      body.top .statement__text dl dt {
        font-size: 36px;
        font-size: 3.6rem;
        font-family: "Smooch Sans", sans-serif;
        font-weight: 600;
        margin-bottom: 40px; }
        @media only screen and (max-width: 767px) {
          body.top .statement__text dl dt {
            margin-bottom: 20px; } }
      body.top .statement__text dl dd h3 {
        color: #00D88D; }
      body.top .statement__text dl dd .jp {
        margin-bottom: 36px; }
        @media only screen and (max-width: 767px) {
          body.top .statement__text dl dd .jp {
            margin-bottom: 28px; } }
        body.top .statement__text dl dd .jp h3 {
          margin-bottom: 16px; }
      body.top .statement__text dl dd .en {
        margin-bottom: 56px; }
        body.top .statement__text dl dd .en:last-of-type {
          margin-bottom: 0; }
        body.top .statement__text dl dd .en h3 {
          margin-bottom: 8px; }
          @media only screen and (max-width: 767px) {
            body.top .statement__text dl dd .en h3 {
              margin-bottom: 5px; } }

body.top .service {
  position: relative;
  padding: 100px 0 264px; }
  @media only screen and (max-width: 767px) {
    body.top .service {
      padding: 100px 0 77px; } }
  body.top .service__movie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; }
    body.top .service__movie video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .service .inner {
    position: relative;
    color: #fff; }
  body.top .service__wrap__box {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-bottom: 60px; }
    @media only screen and (max-width: 767px) {
      body.top .service__wrap__box {
        max-width: 280px;
        margin-bottom: 52px; } }
    body.top .service__wrap__box:nth-of-type(even) {
      margin-left: auto; }
    body.top .service__wrap__box:last-of-type {
      margin-bottom: 0; }
    body.top .service__wrap__box.is-active i {
      opacity: 1;
      transform: translate(-50%, -100%) scale(1); }
    body.top .service__wrap__box.is-active figure:before {
      opacity: 1; }
    body.top .service__wrap__box.is-active figure .image {
      opacity: 1;
      clip-path: inset(0% 0% 0% 0% round 0px); }
      body.top .service__wrap__box.is-active figure .image img {
        transform: scale(1.2); }
    body.top .service__wrap__box.is-active figure figcaption {
      opacity: 1; }

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(1.2);
    opacity: 0.7; }
  100% {
    transform: scale(1);
    opacity: 1; } }
  body.top .service__wrap i {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
    transition: opacity 0.6s, top 0.6s, transform 0.6s; }
  body.top .service__wrap figure {
    position: relative; }
    body.top .service__wrap figure:before {
      content: "";
      width: calc(100% + 0px);
      height: calc(100% + 0px);
      display: block;
      border: 1px solid #00D88D;
      position: absolute;
      top: -1px;
      left: -1px;
      opacity: 0;
      transition: opacity 0.6s;
      transition-delay: 1.4s; }
    body.top .service__wrap figure .image {
      clip-path: inset(50% 50% 50% 50% round 50%);
      overflow: hidden;
      opacity: 0;
      aspect-ratio: 560/420;
      transition: clip-path 0.6s ease-out 0.6s, opacity 0.6s;
      transition-delay: 1s; }
      body.top .service__wrap figure .image img {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        backface-visibility: hidden;
        transform: scale(2);
        transition: transform 0.6s ease-out 0.6s;
        will-change: transform;
        transition-delay: 1s; }
    body.top .service__wrap figure figcaption {
      opacity: 0;
      transition: opacity 1s, transform 1s;
      transition-delay: 1s;
      padding: 30px 20px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .service__wrap figure figcaption {
          padding: 15px 10px; } }
      body.top .service__wrap figure figcaption:before {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.7);
        mix-blend-mode: multiply; }
      body.top .service__wrap figure figcaption h3 {
        color: #00D88D;
        font-weight: 300;
        margin-bottom: 18px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.top .service__wrap figure figcaption h3 {
            margin-bottom: 12px; } }
      body.top .service__wrap figure figcaption p {
        font-weight: 300;
        position: relative; }
      body.top .service__wrap figure figcaption small {
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.04em;
        line-height: 1.75;
        font-weight: 300;
        color: #00D88D;
        margin-top: 38px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.top .service__wrap figure figcaption small {
            font-size: 10px;
            font-size: 1rem;
            margin-top: 24px; } }

body.top .recruit {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: +1;
  padding-top: 130px; }
  @media only screen and (max-width: 767px) {
    body.top .recruit {
      padding-top: 85px; } }
  body.top .recruit__movie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    body.top .recruit__movie:after {
      content: "";
      width: 100%;
      height: 100%;
      display: block;
      background: rgba(8, 13, 18, 0.7);
      mix-blend-mode: multiply;
      position: absolute;
      top: 0;
      left: 0; }
    body.top .recruit__movie video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .recruit .inner {
    position: relative;
    color: #00D88D; }
  body.top .recruit__text h2 {
    font-size: 84px;
    font-size: 8.4rem;
    height: 101px;
    font-weight: 600;
    font-family: "Goldman", sans-serif;
    margin-bottom: 14px; }
    @media only screen and (max-width: 767px) {
      body.top .recruit__text h2 {
        font-size: 58px;
        font-size: 5.8rem;
        margin-bottom: 4px;
        height: 69px; } }
  body.top .recruit__text strong {
    display: block;
    margin-bottom: 36px; }
  body.top .recruit__text .jp {
    margin-bottom: 28px; }
    @media only screen and (max-width: 767px) {
      body.top .recruit__text .jp {
        line-height: 2;
        margin-bottom: 26px; } }
  body.top .recruit__text .btn {
    margin-top: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    height: 72px;
    color: #fff;
    background: #00D88D;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    position: relative;
    border: 1px solid #00D88D;
    transition: color .3s, background-color .3s; }
    @media only screen and (max-width: 767px) {
      body.top .recruit__text .btn {
        margin-top: 48px; } }
    body.top .recruit__text .btn:hover {
      background: #000;
      color: #00D88D; }
      body.top .recruit__text .btn:hover svg path {
        stroke: #00D88D; }
    body.top .recruit__text .btn svg {
      width: 19px;
      height: auto;
      display: inline-block;
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translate(0%, -50%);
      animation: arrow 5s infinite; }
      body.top .recruit__text .btn svg path {
        transition: stroke .3s; }

@keyframes arrow {
  0% {
    right: 20px; }
  5% {
    right: 15px; }
  10% {
    right: 20px; }
  15% {
    right: 15px; }
  20% {
    right: 20px; }
  100% {
    right: 20px; } }

body.top .company {
  background: #080D12;
  position: relative;
  z-index: +1;
  padding: 100px 0 calc(66px + 40px + (calc(100% - 280px) * 0.03069061)); }
  @media only screen and (max-width: 767px) {
    body.top .company {
      padding: 92px 0 180px; } }
  body.top .company .inner {
    position: relative;
    color: #fff; }
    @media only screen and (min-width: 768px) {
      body.top .company .inner {
        padding: 0 140px;
        max-width: 1286px; } }
  body.top .company__title {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    line-height: 1.125;
    font-weight: 300;
    margin-bottom: 28px; }
    @media only screen and (max-width: 767px) {
      body.top .company__title {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.02em;
        line-height: 1.28571429;
        margin-bottom: 38px; } }
  body.top .company__col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.top .company__col {
        display: block; } }
  body.top .company__table {
    /* 初期は文字だけ非表示（枠や背景は表示） */
    /* 改行を表示 */
    /* タイピング中のカーソル */ }
    body.top .company__table .type-table:not(.tw-active) th,
    body.top .company__table .type-table:not(.tw-active) td {
      color: transparent; }
    body.top .company__table .type-table .tw-caret {
      display: inline;
      border-right: 0.08em solid #666;
      height: 1em;
      vertical-align: -0.15em;
      animation: tw-blink 1s step-end infinite; }

@keyframes tw-blink {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0; } }
    body.top .company__table .type-table .tw-caret.tw-hide {
      display: none; }
    body.top .company__table table tbody tr.pb th, body.top .company__table table tbody tr.pb td {
      padding-bottom: 18px; }
      @media only screen and (max-width: 767px) {
        body.top .company__table table tbody tr.pb th, body.top .company__table table tbody tr.pb td {
          padding-bottom: 20px; } }
    body.top .company__table table tbody tr th {
      width: 80px;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.06em;
      line-height: 1.5;
      font-weight: 300;
      color: #00D88D;
      text-align: right;
      vertical-align: top; }
      @media only screen and (max-width: 767px) {
        body.top .company__table table tbody tr th {
          width: 68px;
          font-size: 11px;
          font-size: 1.1rem;
          letter-spacing: 0.02em;
          line-height: 1.63636364; } }
    body.top .company__table table tbody tr td {
      width: calc(100% - 80px);
      padding-left: 18px;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.06em;
      line-height: 1.5;
      font-weight: 300;
      vertical-align: top; }
      @media only screen and (max-width: 767px) {
        body.top .company__table table tbody tr td {
          width: calc(100% - 68px);
          padding-left: 20px;
          font-size: 11px;
          font-size: 1.1rem;
          letter-spacing: 0.02em;
          line-height: 1.63636364; } }
      body.top .company__table table tbody tr td .modal-trigger {
        text-decoration: underline;
        cursor: pointer; }
  body.top .company__bottom {
    width: calc(100% - 280px);
    position: absolute;
    left: 40px;
    bottom: 40px;
    aspect-ratio: 1086/33.33; }
    @media only screen and (max-width: 767px) {
      body.top .company__bottom {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 110px; } }
    body.top .company__bottom img {
      width: 100%;
      height: 100%; }
  body.top .company .glitch img {
    display: block;
    width: 100%; }
  body.top .company .glitch:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/common/logo_white.svg") no-repeat center/contain;
    position: absolute;
    left: -2px;
    filter: drop-shadow(1px 1px 1px blue);
    top: 0;
    overflow: hidden;
    clip: rect(0, 10px, 0, 0);
    animation: noise-anim-2 1s infinite linear alternate-reverse; }
  body.top .company .glitch:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/common/logo_white.svg") no-repeat center/contain;
    position: absolute;
    left: 2px;
    filter: drop-shadow(1px 1px 1px red);
    top: 0;
    overflow: hidden;
    clip: rect(0, 10px, 0, 0);
    animation: noise-anim 1s infinite linear alternate-reverse; }

@keyframes noise-anim {
  0% {
    clip: rect(23px, 9999px, 76px, 0); }
  5% {
    clip: rect(90px, 9999px, 65px, 0); }
  10% {
    clip: rect(86px, 9999px, 94px, 0); }
  15% {
    clip: rect(65px, 9999px, 36px, 0); }
  20% {
    clip: rect(46px, 9999px, 2px, 0); }
  25% {
    clip: rect(49px, 9999px, 12px, 0); }
  30% {
    clip: rect(18px, 9999px, 35px, 0); }
  35% {
    clip: rect(30px, 9999px, 5px, 0); }
  40% {
    clip: rect(56px, 9999px, 5px, 0); }
  45% {
    clip: rect(57px, 9999px, 69px, 0); }
  50% {
    clip: rect(36px, 9999px, 5px, 0); }
  55% {
    clip: rect(100px, 9999px, 76px, 0); }
  60% {
    clip: rect(93px, 9999px, 80px, 0); }
  65% {
    clip: rect(20px, 9999px, 61px, 0); }
  70% {
    clip: rect(51px, 9999px, 96px, 0); }
  75% {
    clip: rect(45px, 9999px, 63px, 0); }
  80% {
    clip: rect(33px, 9999px, 11px, 0); }
  85% {
    clip: rect(29px, 9999px, 7px, 0); }
  90% {
    clip: rect(99px, 9999px, 86px, 0); }
  95% {
    clip: rect(68px, 9999px, 30px, 0); }
  100% {
    clip: rect(51px, 9999px, 52px, 0); } }

@keyframes noise-anim-2 {
  0% {
    clip: rect(90px, 9999px, 7px, 0); }
  5% {
    clip: rect(79px, 9999px, 13px, 0); }
  10% {
    clip: rect(78px, 9999px, 32px, 0); }
  15% {
    clip: rect(79px, 9999px, 95px, 0); }
  20% {
    clip: rect(46px, 9999px, 19px, 0); }
  25% {
    clip: rect(51px, 9999px, 40px, 0); }
  30% {
    clip: rect(19px, 9999px, 25px, 0); }
  35% {
    clip: rect(42px, 9999px, 52px, 0); }
  40% {
    clip: rect(37px, 9999px, 44px, 0); }
  45% {
    clip: rect(88px, 9999px, 79px, 0); }
  50% {
    clip: rect(38px, 9999px, 46px, 0); }
  55% {
    clip: rect(100px, 9999px, 90px, 0); }
  60% {
    clip: rect(93px, 9999px, 28px, 0); }
  65% {
    clip: rect(84px, 9999px, 58px, 0); }
  70% {
    clip: rect(55px, 9999px, 88px, 0); }
  75% {
    clip: rect(85px, 9999px, 25px, 0); }
  80% {
    clip: rect(50px, 9999px, 100px, 0); }
  85% {
    clip: rect(59px, 9999px, 69px, 0); }
  90% {
    clip: rect(19px, 9999px, 79px, 0); }
  95% {
    clip: rect(70px, 9999px, 32px, 0); }
  100% {
    clip: rect(2px, 9999px, 11px, 0); } }

body.top .modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  backdrop-filter: blur(10px); }
  body.top .modal.is-active {
    opacity: 1;
    visibility: visible; }
    body.top .modal.is-active .modal__table {
      transform: scale(1); }
  body.top .modal__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(8, 13, 18, 0.7); }
  body.top .modal__table {
    position: relative;
    transform: scale(0);
    transition: transform .5s; }
    @media only screen and (max-width: 767px) {
      body.top .modal__table {
        width: calc(100% - 20px); } }
    body.top .modal__table .close {
      background-color: transparent;
      border: none;
      cursor: pointer;
      outline: none;
      padding: 0;
      appearance: none;
      display: flex;
      align-items: center;
      color: #00D88D;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.04em;
      font-weight: 600;
      font-family: "Smooch Sans", sans-serif;
      position: absolute;
      bottom: -39px;
      right: 10px; }
      body.top .modal__table .close i {
        display: inline-block;
        margin-right: 5px; }
        body.top .modal__table .close i img {
          display: block; }
      body.top .modal__table .close span {
        position: relative;
        top: 1px; }
    body.top .modal__table table {
      width: 513px;
      border-bottom: 2px solid #000;
      border-left: 2px solid #000; }
      @media only screen and (max-width: 767px) {
        body.top .modal__table table {
          width: 100%; } }
      body.top .modal__table table tbody tr th {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.5;
        letter-spacing: 0.06em;
        font-weight: 300;
        color: #000;
        background: #fff;
        width: 200px;
        height: 50px;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
        padding: 8px;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          body.top .modal__table table tbody tr th {
            height: 35px;
            font-size: 10px;
            font-size: 1rem;
            line-height: 1.2;
            padding: 5px;
            width: 138px; } }
        body.top .modal__table table tbody tr th span {
          display: inline-block;
          width: 11em;
          text-align: justify;
          text-align-last: justify;
          text-justify: inter-character; }
      body.top .modal__table table tbody tr td {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.5;
        letter-spacing: 0.06em;
        font-weight: 300;
        color: #000;
        background: #fff;
        width: calc(100% - 200px);
        height: 50px;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
        padding: 8px;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          body.top .modal__table table tbody tr td {
            height: 35px;
            font-size: 10px;
            font-size: 1rem;
            line-height: 1.2;
            padding: 5px;
            width: calc(100% - 138px); } }
