@charset "utf-8";

.movieSec {
  position: relative;
}

.movieSec>.movie {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100lvh;
  background: #000;
}

.movieSec>.movie video {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.movieSec>.mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0);
}

.movieSec>.fvImage {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.movieSec>.fvImage picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.movieSec>.fvImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.movieSec .firstView {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.movieSec .firstView>.title {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: min(4.8vw, 48px);
  font-weight: bold;
  text-shadow: 0 0 0.8vw rgba(18, 18, 18, 0.4);
  font-family: serif, 'Noto Serif JP';
  transform: translate(-50%, -50%);
}

.movieSec .firstView>.scrollWrap {
  position: absolute;
  left: 50%;
  bottom: 5vw;
  transform: translateX(-50%);
}

.movieSec .firstView>.scrollWrap .text {
  margin: 0 0 1em;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 100;
  color: #fff;
  text-shadow: 0 0 0.8vw rgba(18, 18, 18, 0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
}

.movieSec .firstView>.scrollWrap .scroll {
  position: absolute;
  left: 50%;
  height: 12vw;
  width: 1px;
  background: #fff;
}

.movieSec .firstView>.scrollWrap .scroll::after {
  position: absolute;
  left: 1px;
  top: 0;
  width: 1em;
  height: 1em;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 1;
  border-radius: 100vh;
  box-shadow: 0 0 0.8vw rgba(18, 18, 18, 0.8);
  content: "";
  transform: translateX(-50%);
}

@keyframes pathmove {
  0% {
    top: 0;
  }

  100% {
    top: calc(100% - 1em);
  }
}

/* VALUES */
.messageWrap {
  padding: 16vw 0 0;
  color: #fff;
  text-shadow: 0 0 0.8vw rgba(18, 18, 18, 0.4);
}

.messageWrap:last-child {
  padding: 16vw 0;
}

.messageWrap .heading {
  margin: 0 0 5vw;
  text-align: center;
  font-size: 2.6vw;
  font-weight: normal;
  font-family: serif, 'Noto Serif JP';
}

.messageWrap>.textArea {
  width: 46.9vw;
  margin: 0 auto;
  font-family: serif, 'Noto Serif JP';
}

.messageWrap>.textArea .text {
  position: relative;
  top: 2.6vw;
  opacity: 0;
  font-size: 1.2vw;
  line-height: 2;
  transition: opacity 1000ms, top 1000ms;
}

.messageWrap>.textArea .text.show {
  opacity: 1;
  top: 0;
}

.messageWrap>.textArea .text p:not(:last-child) {
  margin: 0 0 1.5em;
}

.messageWrap>.textArea .text .checkText {
  position: relative;
  margin: 2.5em 0;
  border: 0.3vw solid #fff;
  padding: 2.8vw 2vw 1vw;
  background: rgba(0, 0, 0, 0.6);
}

.messageWrap>.textArea .text .checkText::before {
  position: absolute;
  left: 50%;
  top: 1.1vw;
  width: 1.5vw;
  height: 1.5vw;
  background: #fff;
  border-radius: 100vh;
  content: "";
  transform: translateX(-50%);
}

.messageWrap>.textArea .text .checkText::after {
  position: absolute;
  left: 50%;
  top: 1.6vw;
  width: 0.6vw;
  height: 0.3vw;
  border-left: 0.2vw solid #000;
  border-bottom: 0.2vw solid #000;
  content: "";
  transform: translateX(-50%) rotate(-45deg);
}

.messageWrap>.textArea .text .large {
  font-size: 1.4vw;
}

/* BUSINESS DESCRIPTION */
.descriptionWrap {
  padding: 16vw 0 0;
  color: #fff;
  text-shadow: 0 0 0.8vw rgba(18, 18, 18, 0.4);
}

.descriptionWrap .heading {
  margin: 0 0 6vw;
  text-align: center;
  font-size: 2vw;
  font-weight: normal;
  font-family: serif, 'Noto Serif JP';
}

.descriptionWrap .descriptionList {
  width: 46.9vw;
  margin: 0 auto;
  font-family: serif, 'Noto Serif JP';
  color: #fff;
}

.descriptionWrap .descriptionList>li:not(:last-child) {
  margin: 0 0 5vw;
}

.descriptionWrap .descriptionList>li h3 {
  margin: 0 0 2.5vw;
  text-align: center;
  font-size: 1.8vw;
  font-weight: normal;
}

.descriptionWrap .descriptionList>li .lead {
  margin: 0 0 4vw;
  font-size: max(0.9vw, 16px);
}

.descriptionWrap .imageList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 3vw;
}

.descriptionWrap .imageList>li {
  width: calc((100% - 3vw) / 3);
  background: #fff;
  border-radius: 0.4vw;
  overflow: hidden;
}

.descriptionWrap .imageList>li .inner .image {
  width: 100%;
  height: auto;
}

.descriptionWrap .imageList>li .inner .textWrap {
  padding: 0.4vw 0.7vw;
  color: #333;
  text-shadow: none;
}

.descriptionWrap .imageList>li .inner .textWrap h4 {
  margin: 0 0 0.2vw;
  font-size: max(0.7vw, 14px);
}

.descriptionWrap .imageList>li .inner .textWrap .text {
  font-size: max(0.6vw, 12px);
}

.descriptionWrap .serviceList {
  margin: 0 0 2vw;
}

.descriptionWrap .serviceList>dt {
  margin-bottom: 0.5vw;
  font-size: 1.3vw;
  font-weight: bold;
}

.descriptionWrap .serviceList>dt:not(:first-child) {
  margin-top: 2vw;
}

.descriptionWrap .serviceList>dd {
  display: flex;
  font-size: 1.1vw;
  margin-bottom: 0.2vw;
}

.descriptionWrap .serviceList>dd:last-child {
  margin-bottom: 0;
}

.descriptionWrap .serviceList>dd::before {
  content: "・";
}

.btnType01,
.btnType02 {
  display: inline-block;
  position: relative;
  min-width: 12vw;
  padding: 0.6vw 1.4vw;
  border: 0.2vw solid #fff;
  text-align: center;
  border-radius: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 1.1vw;
  text-decoration: none;
}

.btnType01:link,
.btnType01:visited,
.btnType02:link,
.btnType02:visited {
  color: #fff;
}

.btnType01::after,
.btnType02::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 1.6vw;
  border-width: 0.2vw 0 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: translate(50%, -50%);
  content: "";
  transition: all 0.5s;
}

.otherBusinessWrap {
  padding: 12vw 0 0;
  color: #fff;
  text-shadow: 0 0 0.8vw rgba(18, 18, 18, 0.4);
}

.otherBusinessWrap h3 {
  margin: 0 0 5vw;
  text-align: center;
  font-size: 2vw;
  font-weight: normal;
  font-family: serif, 'Noto Serif JP';
}

.otherBusinessWrap .otherBusinessList {
  display: flex;
  justify-content: center;
  gap: 2.6vw;
  width: 46.9vw;
  margin: 0 auto;
  color: #fff;
}

.otherBusinessWrap .otherBusinessList>li {
  width: calc((100% - 5.2vw) / 3);
}

.otherBusinessWrap .otherBusinessList>li a {
  display: block;
  position: relative;
  padding: 0.6vw 1.2vw;
  border: 0.2vw solid #fff;
  font-size: 1.7vw;
  font-family: serif, 'Noto Serif JP';
  text-decoration: none;
  text-align: center;
}

.otherBusinessWrap .otherBusinessList>li a:link,
.otherBusinessWrap .otherBusinessList>li a:visited {
  color: #fff;
}

.otherBusinessWrap .otherBusinessList>li a::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 2.6vw;
  border-width: 0.2vw 0 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: translate(50%, -50%);
  content: "";
  transition: all 0.5s;
}

/* RECRUIT */
.recruitWrap {
  padding: 10vw 0 8vw;
  color: #fff;
  text-shadow: 0 0 0.8vw rgba(18, 18, 18, 0.4);
}

.recruitWrap .heading {
  margin: 0 0 2.4vw;
  text-align: center;
  font-size: 2vw;
  font-weight: normal;
  font-family: serif, 'Noto Serif JP';
}

.recruitWrap .heading .en {
  display: block;
}

.recruitWrap .heading .jp {
  display: block;
  margin: 0.4vw 0 0;
  font-size: 0.8vw;
}

.recruitWrap .recruitContents {
  width: 46.9vw;
  margin: 0 auto;
}

.recruitWrap .recruitContents .imageWrap {
  width: 100%;
  margin: 0 0 2vw;
}

.recruitWrap .recruitContents .imageWrap .image {
  width: 100%;
  height: auto;
}

.recruitWrap .recruitContents .textWrap {
  margin: 0 0 4vw;
  font-size: 0.9vw;
  font-family: serif, 'Noto Serif JP';
  color: #fff;
}

/* COMPANY */
.companyWrap {
  padding: 13vw 1vw 7.5vw;
  background: url(../img/top/bg_company_01.jpg) no-repeat 50% 50% / cover;
}

.webp .companyWrap {
  background-image: url(../img/top/bg_company_01.webp);
}

.companyContents {
  max-width: 1400px;
  margin: 0 auto;
}

.companyContents .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 3.1vw;
  line-height: 1.3;
  color: #fff;
}

.companyContents .heading .en {
  font-size: 2.5vw;
  font-weight: bold;
}

.companyContents .heading .jp {
  font-size: 1.2vw;
  font-weight: normal;
}

.companyContents .companyList {
  position: relative;
  width: 100%;
  padding: 1px 0 0;
}

.companyContents .companyList::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  content: "";
}

.companyContents .companyList>li {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 2.6vw 0 calc(2.6vw + 1px);
  /*font-size: 0.8vw;*/
  font-size: 1vw;
}

.companyContents .companyList>li::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  content: "";
}

.companyContents .companyList>li .head {
  width: 21.4%;
  max-width: 10.2vw;
  min-width: 5em;
  padding: 0 0.5vw;
  color: #fff;
}

.companyContents .companyList>li .info {
  width: 78.6%;
  max-width: 25vw;
  min-width: 440px;
  padding: 0 0.5vw;
  color: #fff;
  align-self: center;
}

.companyContents .companyList>li .info a {
  color: #fff;
}

.companyContents .companyList>li .info ul:not(:last-child) {
  margin: 0 0 1.5em;
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* max-width: 768px */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (max-width: 768px) {

  .movieSec>.movie video {
    max-height: 100%;
  }

  .movieSec .firstView>.title {
    font-size: min(6.8vw, 48px);
  }

  .movieSec .firstView>.scrollWrap {
    bottom: 15vw;
  }

  .movieSec .firstView>.scrollWrap .text {}

  .movieSec .firstView>.scrollWrap .scroll {
    height: 32vw;
  }

  .movieSec .firstView>.scrollWrap .scroll::after {
    position: absolute;
    top: 0;
    width: 0.8em;
    height: 0.8em;
  }

  @keyframes pathmove {
    0% {
      top: 0;
    }

    100% {
      top: calc(100% - 0.8em);
    }
  }


  /* VALUES */
  .messageWrap {
    padding: 40vw 0 0;
    text-shadow: 0 0 0.8vw rgba(18, 18, 18, 0.4);
  }

  .messageWrap:last-child {
    padding: 40vw 0 16vw;
  }

  .messageWrap .heading {
    margin: 0 0 16vw;
    font-size: 5.6vw;
  }

  .messageWrap>.textArea {
    width: 90%;
  }

  .messageWrap>.textArea .text {
    top: 8.6vw;
    font-size: 3.6vw;
  }

  .messageWrap>.textArea .text p:not(:last-child) {
    margin: 0 0 1.5em;
  }

  .messageWrap>.textArea .text .checkText {
    border: 1vw solid #fff;
    padding: 12vw 4vw 4vw;
  }

  .messageWrap>.textArea .text .checkText::before {
    top: 3.2vw;
    width: 7vw;
    height: 7vw;
  }

  .messageWrap>.textArea .text .checkText::after {
    top: 5.1vw;
    width: 2.8vw;
    height: 1.4vw;
    border-left: 0.8vw solid #000;
    border-bottom: 0.8vw solid #000;
  }

  .messageWrap>.textArea .text .large {
    font-size: 3.6vw;
  }

  /* BUSINESS DESCRIPTION */
  .descriptionWrap {
    padding: 20vw 0 0;
  }

  .descriptionWrap .heading {
    margin: 0 0 16vw;
    font-size: 5.6vw;
  }

  .descriptionWrap .descriptionList {
    width: 90%;
  }

  .descriptionWrap .descriptionList>li:not(:last-child) {
    margin: 0 0 24vw;
  }

  .descriptionWrap .descriptionList>li h3 {
    margin: 0 0 5.6vw;
    text-align: left;
    font-size: 4.6vw;
  }

  .descriptionWrap .descriptionList>li .lead {
    margin: 0 0 10vw;
    font-size: 3.6vw;
  }

  .descriptionWrap .imageList {
    gap: 10vw;
    margin-bottom: 15vw;
  }

  .descriptionWrap .imageList>li {
    width: 100%;
    border-radius: 2vw;
  }

  .descriptionWrap .imageList>li .inner .textWrap {
    padding: 3.2vw 5.4vw;
  }

  .descriptionWrap .imageList>li .inner .textWrap h4 {
    margin: 0 0 1.2vw;
    font-size: 3.8vw;
  }

  .descriptionWrap .imageList>li .inner .textWrap .text {
    font-size: 3.4vw;
  }

  .descriptionWrap .serviceList {
    margin: 0 0 10vw;
  }

  .descriptionWrap .serviceList>dt {
    margin-bottom: 1vw;
    font-size: 3.8vw;
  }

  .descriptionWrap .serviceList>dt:not(:first-child) {
    margin-top: 10vw;
  }

  .descriptionWrap .serviceList>dd {
    font-size: 3.2vw;
  }

  .btnType01,
  .btnType02 {
    display: table;
    min-width: 64vw;
    padding: 2.6vw 7.4vw;
    border: 0.6vw solid #fff;
    font-size: 5vw;
  }

  .btnType02 {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
  }

  .btnType01::after,
  .btnType02::after {
    width: 7.2vw;
    border-width: 0.6vw 0 0 0;
  }

  .otherBusinessWrap {
    padding: 20vw 0 0;
  }

  .otherBusinessWrap h3 {
    margin: 0 0 10vw;
    font-size: 5.6vw;
  }

  .otherBusinessWrap .otherBusinessList {
    flex-wrap: wrap;
    gap: 9vw;
    width: 70vw;
    margin: 0 auto;
  }

  .otherBusinessWrap .otherBusinessList>li {
    width: 100%;
  }

  .otherBusinessWrap .otherBusinessList>li a {
    padding: 3vw;
    border: 0.6vw solid #fff;
    font-size: 7.6vw;
  }

  .otherBusinessWrap .otherBusinessList>li a::after {
    width: 12vw;
    border-width: 0.6vw 0 0 0;
  }

  /* RECRUIT */
  .recruitWrap {
    padding: 30vw 0 30vw;
  }

  .recruitWrap .heading {
    margin: 0 0 10vw;
    font-size: 5.6vw;
  }

  .recruitWrap .heading .jp {
    margin: 1vw 0 0;
    font-size: 3.2vw;
  }

  .recruitWrap .recruitContents {
    width: 90%;
  }

  .recruitWrap .recruitContents .imageWrap {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 10vw;
  }

  .recruitWrap .recruitContents .textWrap {
    margin: 0 0 16vw;
    font-size: 3.4vw;
  }

  /* COMPANY */
  .companyWrap {
    padding: 13.3vw 0 21.8vw;
  }

  .companyContents {
    width: 90%;
    max-width: none;
    margin: 0 auto;
  }

  .companyContents .heading {
    margin: 0 0 12vw;
  }

  .companyContents .heading .en {
    font-size: 5.6vw;
  }

  .companyContents .heading .jp {
    font-size: 3.2vw;
  }

  .companyContents .companyList>li {
    display: block;
    padding: 6.6vw 0 calc(6.6vw + 1px);
    font-size: 3.7vw;
  }

  .companyContents .companyList>li .head {
    width: 100%;
    max-width: none;
    padding: 0 0 5.3vw;
  }

  .companyContents .companyList>li .info {
    width: 100%;
    max-width: none;
    min-width: 1px;
    padding: 0;
  }

}

/* max-width: 768px ここまで */
