@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

/*iosのフォームボタンリセット*/
input[type=submit],
input[type=button],
input[type=reset] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
input[type=reset]::focus {
  outline-offset: -2px;
}

/*変数設定用*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.l-container {
  max-width: 1360px;
  width: 100%;
  margin: auto;
}

.glitch {
  position: relative;
}

/* 共通の擬似要素設定 */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  /* data-textの内容を表示 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  /* 重なった時の透過防止 */
}

/* 共通設定：初期状態は透明にする */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  /* ここで通常時は隠す */
}

/* 赤いレイヤー */
.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff00c1;
  animation: glitch-anim-1 2.5s infinite linear;
}

/* 青いレイヤー */
.glitch::after {
  left: -2px;
  text-shadow: 2px 0 #00fff9;
  animation: glitch-anim-2 3.3s infinite linear;
}

/* アニメーション：動く瞬間（0%〜10%）だけ opacity: 1 にする */
@keyframes glitch-anim-1 {
  0% {
    opacity: 0;
    transform: none;
    clip-path: inset(0 0 0 0);
  }
  1% {
    opacity: 1;
    clip-path: inset(20% 0 50% 0);
    transform: translateX(-5px);
  }
  3% {
    opacity: 1;
    clip-path: inset(80% 0 10% 0);
    transform: translateX(5px);
  }
  5% {
    opacity: 1;
    clip-path: inset(10% 0 70% 0);
    transform: translateX(-10px);
  }
  7% {
    opacity: 1;
    clip-path: inset(50% 0 30% 0);
    transform: translateX(10px);
  }
  9% {
    opacity: 0;
    transform: none;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes glitch-anim-2 {
  0% {
    opacity: 0;
    transform: none;
    clip-path: inset(0 0 0 0);
  }
  2% {
    opacity: 1;
    clip-path: inset(10% 0 80% 0);
    transform: translateX(10px);
  }
  4% {
    opacity: 1;
    clip-path: inset(70% 0 5% 0);
    transform: translateX(-10px);
  }
  6% {
    opacity: 1;
    clip-path: inset(30% 0 40% 0);
    transform: translateX(5px);
  }
  8% {
    opacity: 1;
    clip-path: inset(90% 0 2% 0);
    transform: translateX(-5px);
  }
  10% {
    opacity: 0;
    transform: none;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
  }
}
.vsp {
  display: none;
}

.vpc {
  display: block;
}

.c-ttl {
  font-size: clamp(30px, 2.2vw, 40px);
  font-weight: bold;
  font-family: "Archivo", sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}

body {
  background: #010101;
  font-family:
    "Hiragino Kaku Gothic ProN",
    "hiragino-kaku-gothic-pron",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-weight: 300;
  font-style: normal;
}

.js-fade {
  opacity: 0;
  transition-duration: 0.6s;
}
.js-fade.js-fade-delay {
  transition-delay: 1s;
}
.js-fade.js-fade-top {
  transform: translate(0px, -40px);
}
.js-fade.js-fade-bottom {
  transform: translateY(50px);
}
.js-fade.js-fade-left {
  transform: translate(-20px, 0px);
}
.js-fade.js-fade-right {
  transform: translate(20px, 0px);
}
.js-fade.is-active {
  transform: translate(0, 0);
  opacity: 1;
}

.l-header {
  width: 100%;
  height: 66px;
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 11;
  transition: all 0.3s ease;
}
.l-header__Inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  margin: auto;
  max-width: 1400px;
  width: 100%;
  background: #353A3F;
  border-radius: 4px;
  opacity: 0.8;
}
.l-header__Logo {
  width: 200px;
}
.l-header__Nav {
  width: calc(100% - 210px);
  transition-delay: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}
.l-header__Nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.l-header__Nav ul li a {
  color: #fff;
  font-size: clamp(12px, 1.61vw, 14px);
  font-family: "Archivo", sans-serif;
  font-weight: bold;
  transition: 0.6s;
}
.l-header__Nav ul li a:hover {
  opacity: 0.5;
}

.p-top__Mv {
  width: 100%;
  position: relative;
  max-height: 100vh;
  aspect-ratio: 16/9;
}
.p-top__Mv-Video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top__Mv-Video img,
.p-top__Mv-Video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top__Mv:before {
  position: absolute;
  width: 100%;
  height: 200px;
  content: "";
  background: url("./../img/bg_top_mv.webp");
  background-size: cover;
  bottom: 0;
  left: 0;
}
.p-top__Mv .l-container {
  position: relative;
  aspect-ratio: 16/9;
  max-height: 100vh;
  width: 96%;
}
.p-top__Mv-Txt {
  color: #fff;
  font-size: clamp(13px, 1.61vw, 16px);
  line-height: 200%;
  letter-spacing: 0.08em;
  font-weight: 600;
  position: absolute;
  bottom: 28px;
  left: 0;
}
.p-top__Mv-Bnr {
  position: absolute;
  right: 23px;
  bottom: 32px;
  max-width: 400px;
  width: 40%;
  display: flex;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 4px;
  padding: 10px;
  gap: 14px;
  transition: 0.6s;
  z-index: 10;
}
.p-top__Mv-Bnr:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.p-top__Mv-Bnr:before {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  content: "";
  background: url("./../img/icon_btn_arrow.svg");
  background-size: cover;
}
.p-top__Mv-Bnr-Thum {
  max-width: 120px;
  width: 35%;
}
.p-top__Mv-Bnr-Detail-Eng {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.08em;
  color: #9C9C9C;
  margin-bottom: 12px;
}
.p-top__Mv-Bnr-Detail-Ttl {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}
.p-top__Vision {
  background-image: url("./../img/bg_top_vision.webp");
  background-position: center;
  background-size: cover;
  padding: 177px 0 190px;
  position: relative;
}
.p-top__Vision .c-ttl {
  margin-bottom: 85px;
}
.p-top__Vision-Subttl {
  text-align: center;
  color: #fff;
  font-size: clamp(20px, 3.61vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.p-top__Vision-Subttl span {
  background: #fff;
  color: #000;
  padding: 4px 5px;
  margin-right: 0.3rem;
}
.p-top__Vision-Txt {
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 1.61vw, 16px);
  line-height: 300%;
  letter-spacing: 0.1em;
}
.p-top__Works {
  padding: 140px 0 130px;
  position: relative;
  background: url("./../img/bg_top_works.webp");
  background-size: cover;
}
.p-top__Works .c-ttl {
  margin-bottom: 85px;
}
.p-top__Works .swiper-slide {
  max-width: 1040px;
  width: 100%;
  filter: blur(3px);
  position: relative;
}
.p-top__Works .swiper-slide .-no {
  position: absolute;
  left: 10px;
  top: 20px;
  font-weight: 100;
  font-size: 128px;
  line-height: 70%;
  color: #353A3F;
}
.p-top__Works .swiper-slide.swiper-slide-active {
  filter: blur(0);
}
.p-top__Works .swiper-button-prev,
.p-top__Works .swiper-button-next {
  display: none;
}
.p-top__Works .swiper-pagination {
  position: static;
  margin-top: 40px;
}
.p-top__Works .swiper-pagination .swiper-pagination-bullet {
  width: auto !important;
  height: auto !important;
  border-radius: 100px !important;
  font-size: clamp(12px, 1.61vw, 14px);
  padding: 8px 15px;
  opacity: 1;
  background: none;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 600;
}
.p-top__Works .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff !important;
  letter-spacing: 0.1em;
  color: #9C9C9C !important;
}
.p-top__Works .card {
  background: #282C2F;
  border-radius: 4px;
  padding: 60px 50px;
}
.p-top__Works .card__Flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.p-top__Works .card__Movie {
  max-width: 460px;
  width: 50%;
  position: relative;
  padding-top: 27.25%;
}
.p-top__Works .card__Movie img,
.p-top__Works .card__Movie video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-top__Works .card__Movie .-playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  z-index: 10;
}
.p-top__Works .card__Detail {
  max-width: 430px;
  width: 45%;
}
.p-top__Works .card__Detail-Ttl {
  color: #fff;
  font-size: clamp(18px, 1.61vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.p-top__Works .card__Detail-Txt {
  font-size: clamp(12px, 1.61vw, 14px);
  line-height: 200%;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.p-top__Works .card__Detail-Links ul {
  display: flex;
  gap: 35px;
}
.p-top__Works .card__Detail-Links ul li {
  padding-right: 25px;
  background: url("./../img/icon_btn_arrow.svg");
  background-size: 18px;
  background-position: center right;
  background-repeat: no-repeat;
}
.p-top__Works .card__Detail-Links ul li.-target {
  background: url("./../img/icon_target.svg");
  background-size: 16px;
  background-position: center right;
  background-repeat: no-repeat;
}
.p-top__Works .card__Detail-Links ul li a {
  color: #fff;
  font-size: clamp(15px, 1.61vw, 16px);
  text-decoration: underline;
  transition: 0.6s;
}
.p-top__Works .card__Detail-Links ul li a:hover {
  opacity: 0.5;
}
.p-top__Recruit {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;
  padding: 20px 0;
}
.p-top__Recruit-Flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  background: linear-gradient(242.39deg, #5C6167 27.88%, #282C2F 100%);
  border-radius: 12px;
}
.p-top__Recruit-Thum {
  max-width: 600px;
  width: 50%;
}
.p-top__Recruit-Thum img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top__Recruit-Detail {
  display: flex;
  align-items: center;
  width: 50%;
  padding: clamp(20px, 10vw, 70px);
}
.p-top__Recruit-Detail .c-ttl {
  text-align: left;
  margin-bottom: 85px;
}
.p-top__Recruit-Detail-Txt {
  font-size: clamp(15px, 1.61vw, 16px);
  line-height: 2em;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 30px;
}
.p-top__Recruit-Detail-Btn {
  max-width: 267px;
  width: 100%;
  height: 57px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  font-family: "Archivo", sans-serif;
  border: 1px solid #fff;
  letter-spacing: 0.1em;
  border-radius: 4px;
  background: url("./../img/icon_btn_arrow.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center right 18px;
  transition: 0.6s;
}
.p-top__Recruit-Detail-Btn:hover {
  background-color: #fff;
  color: #0E1011;
}
.p-top__Company {
  background-image: url("./../img/bg_top_company.webp");
  background-size: .7%;
  padding: 180px 0 130px;
  margin-bottom: 45px;
}
.p-top__Company-Flex {
  display: flex;
  justify-content: space-between;
  max-width: 1242px;
  width: 100%;
  margin: auto;
}
.p-top__Company-Flex .c-ttl {
  text-align: left;
  width: 30%;
}
.p-top__Company-Wrap {
  max-width: 800px;
  width: 70%;
}
.p-top__Company-Wrap table {
  width: 100%;
  color: #fff;
}
.p-top__Company-Wrap table tr {
  border-top: 1px solid #9C9C9C;
}
.p-top__Company-Wrap table th {
  max-width: 200px;
  width: 25%;
  font-size: clamp(12px, 1.61vw, 14px);
  line-height: 200%;
  letter-spacing: 0.08em;
  color: #9C9C9C;
  padding: 25px 0;
  vertical-align: top;
}
.p-top__Company-Wrap table td {
  max-width: 600px;
  width: 75%;
  font-size: clamp(12px, 1.61vw, 14px);
  line-height: 200%;
  letter-spacing: 0.08em;
  color: #FFF;
  padding: 25px 0;
}

.l-footer__Inner {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  padding: 40px 0;
  border-top: 1px solid #9C9C9C;
}
.l-footer .copy {
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-size: clamp(12px, 1.61vw, 12px);
  line-height: 100%;
  letter-spacing: 0.08em;
  color: #9C9C9C;
}

/*-------------------------下層ページ--------------------*/
.p-under__Mv {
  padding-top: 160px;
  padding-bottom: 176px;
}
.p-under__Mv-Ttl {
  text-align: center;
  font-weight: 600;
  font-size: clamp(24px, 4.2vw, 48px);
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 70px;
}
.p-under__Mv-Ttl .-small {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 100%;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.p-under__Mv-Movie {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 70px;
}
.p-under__Mv-Movie img,
.p-under__Mv-Movie video,
.p-under__Mv-Movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-under__Mv-Txt {
  font-size: clamp(15px, 1.61vw, 16px);
  line-height: 300%;
  text-align: center;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 50px;
}
.p-under__Mv-Btn {
  margin: auto;
  max-width: 267px;
  width: 100%;
  height: 57px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  font-family: "Archivo", sans-serif;
  border: 1px solid #fff;
  letter-spacing: 0.1em;
  border-radius: 4px;
  background: url("./../img/icon_target.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center right 20px;
  transition: 0.6s;
}
.p-under__Mv-Btn:hover {
  background-color: #fff;
  color: #0E1011;
}
.p-under__Mv-Btn.-home {
  margin-top: 20px;
  background: url("./../img/icon_btn_arrow.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center right 20px;
}

.contact__list {
  max-width: 700px;
  width: 100%;
  margin: auto;
  position: relative;
}
.contact__list > li {
  width: 100%;
  padding: 8px 0;
}
.contact__list > li:last-child .contact__list__ques {
  vertical-align: top;
  padding-top: 1em;
}
.contact__list__ques {
  width: 100%;
  vertical-align: middle;
  padding-right: 5%;
  letter-spacing: 0.1em;
  font-size: 17px;
  margin-bottom: 0.5em;
  color: #fff;
}
.contact__list__ans {
  width: 100%;
}
.contact__list__ans input,
.contact__list__ans select,
.contact__list__ans textarea {
  border-radius: 0;
}
.contact__list__ans input,
.contact__list__ans select {
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  font-size: 1em;
  letter-spacing: 0.1em;
  box-sizing: border-box;
}
.contact__list__ans select {
  color: #BABABA;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}
.contact__list__ans textarea {
  padding: 1em;
  height: 10vw;
  flex: 1;
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid #000;
  font-size: 17px;
  letter-spacing: 0.1em;
  box-sizing: border-box;
}
.contact__list__ans--select {
  position: relative;
}
.contact__list__ans--select::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 48%;
  right: 3%;
  transform: translate(0, -50%) rotate(135deg);
  -webkit-transform: translate(0, -50%) rotate(135deg);
  -moz-transform: translate(0, -50%) rotate(135deg);
  -o-transform: translate(0, -50%) rotate(135deg);
}
.contact__list__ans .note {
  color: #777;
  font-size: 0.8em;
  padding-top: 5px;
}
.contact__check {
  text-align: center;
  padding: 3vw 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.contact__check--parts {
  display: none;
}
.contact__check--parts:checked + .contact__check--label::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #000;
}
.contact__check--label {
  padding-left: 30px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #fff;
}
.contact__check--label::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  background: #fff;
}
.contact__btn {
  max-width: 600px;
  margin: 0 auto 5vw;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.contact__btn__send, .contact__btn__clear, .contact__btn__back {
  max-width: 267px;
  width: 100%;
  height: 57px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  font-family: "Archivo", sans-serif;
  border: 1px solid #fff !important;
  letter-spacing: 0.1em;
  border-radius: 4px !important;
  background: url("./../img/icon_btn_arrow.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center right 18px;
  transition: 0.6s;
  background-color: none;
}
.contact__btn__send:hover, .contact__btn__clear:hover, .contact__btn__back:hover {
  background-color: #fff;
  color: #0E1011;
}
.contact__btn__back {
  width: auto;
  padding: 10px 50px;
  display: inline-block;
}
.contact__btn__send {
  float: right;
}
.contact__btn__send.only {
  float: none;
  width: 80%;
  margin: 0 auto;
}
.contact__btn__clear {
  float: left;
}
.contact__btn.disable::after {
  content: "";
  max-width: 267px;
  width: 100%;
  height: 105%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  cursor: default;
}

.contents__inner input::placeholder,
.contents__inner textarea::placeholder {
  color: #BABABA;
}

.required {
  color: #DD434E;
  font-size: 0.8em;
  padding-left: 5px;
}

.contactmail .contact__btn.disable::after {
  display: none;
}

@media screen and (max-width: 992px) and (min-width: 767px) {
  .p-top__Mv-Txt {
    bottom: 13px;
  }
  .p-top__Mv-Bnr-Detail-Ttl {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) and (min-width: 480px) {
  .p-top__Mv .l-container {
    min-height: 100vh !important;
  }
}
.formTable {
  max-width: 700px;
  width: 100%;
  margin: auto;
  color: #fff;
  margin: 50px auto;
}
.formTable tr {
  display: block;
  padding-bottom: 20px;
}
.formTable th {
  display: block;
  width: 100%;
  vertical-align: middle;
  padding-right: 5%;
  letter-spacing: 0.1em;
  font-size: 17px;
  margin-bottom: 0.5em;
  color: #fff;
}
.formTable td {
  display: block;
  width: 100%;
  vertical-align: middle;
  padding-right: 5%;
  letter-spacing: 0.1em;
  font-size: 17px;
  margin-bottom: 0.5em;
  color: #fff;
}

.error_messe {
  color: red;
}

@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
  .vpc {
    display: none;
  }
  .l-header {
    height: 15.3846153846vw;
    top: 2.5641025641vw;
  }
  .l-header__Inner {
    padding: 5.1282051282vw;
    max-width: 94.8717948718vw;
    border-radius: 0.5128205128vw;
    display: block;
  }
  .l-header__Logo {
    width: 42.8205128205vw;
  }
  .l-header__Openbtn {
    background: none;
    border: none;
    position: fixed;
    top: 8.9743589744vw;
    right: 7.6923076923vw;
    z-index: 10000;
    width: 7.6923076923vw;
    height: 3.0769230769vw;
  }
  .l-header__Openbtn span {
    display: inline-block;
    position: absolute;
    left: 0;
    height: 0.5128205128vw;
    background: #fff;
    width: 7.6923076923vw;
    transition: 0.6s;
  }
  .l-header__Openbtn span:nth-of-type(1) {
    top: 0;
  }
  .l-header__Openbtn span:nth-of-type(2) {
    top: 1.5384615385vw;
  }
  .l-header__Openbtn span:nth-of-type(3) {
    top: 3.0769230769vw;
  }
  .l-header__Openbtn.-active span:nth-of-type(1) {
    top: 50%;
    transform: rotate(15deg);
  }
  .l-header__Openbtn.-active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__Openbtn.-active span:nth-of-type(3) {
    top: 50%;
    transform: rotate(-15deg);
  }
  .l-header__Nav {
    width: 100%;
    text-align: center;
    padding: 14.1025641026vw 0;
    transition: initial;
    display: none;
  }
  .l-header__Nav ul {
    gap: 14.1025641026vw;
    flex-flow: column;
  }
  .l-header__Nav ul li a {
    font-size: 4.1025641026vw;
  }
  .p-top__Mv-Video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .p-top__Mv-Video img,
  .p-top__Mv-Video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-top__Mv:before {
    height: 51.2820512821vw;
  }
  .p-top__Mv .l-container {
    min-height: 100vh;
  }
  .p-top__Mv-Txt {
    width: 86.6666666667vw;
    font-size: 3.0769230769vw;
    bottom: 10.025641vw;
    left: 6.6666666667vw;
    text-align: justify;
  }
  .p-top__Mv-Bnr {
    position: absolute;
    right: auto;
    left: 6.4102564103vw;
    bottom: -28.948718vw;
    max-width: none;
    width: 86.6666666667vw;
    padding: 2.5641025641vw 12.8205128205vw 2.5641025641vw 2.5641025641vw;
    gap: 3.0769230769vw;
  }
  .p-top__Mv-Bnr:before {
    right: 2.5641025641vw;
    bottom: 2.5641025641vw;
    width: 5.1282051282vw;
    height: 5.1282051282vw;
  }
  .p-top__Mv-Bnr-Thum {
    max-width: 21.5384615385vw;
    width: auto;
  }
  .p-top__Mv-Bnr-Detail-Eng {
    font-size: 2.5641025641vw;
    margin-bottom: 1.5384615385vw;
  }
  .p-top__Mv-Bnr-Detail-Ttl {
    font-size: 3.0769230769vw;
  }
  .p-top__Vision {
    background-image: url("./../img/bg_top_vision_sp.webp");
  background-position: center;
    background-size: cover;
    padding: 44.8717948718vw 0 43.0769230769vw;
  }
  .p-top__Vision .c-ttl {
    margin-bottom: 16.6666666667vw;
  }
  .p-top__Vision-Subttl {
    line-height: 15.3846153846vw;
    font-size: 7.6923076923vw;
    margin-bottom: 10.2564102564vw;
  }
  .p-top__Vision-Subttl span {
    padding: 1.2820512821vw;
  }
  .p-top__Vision-Txt {
    font-size: 3.5897435897vw;
    line-height: 250%;
  }
  .p-top__Works {
    padding: 30.7692307692vw 0 35.3846153846vw;
    background: url("./../img/bg_top_works.webp");
    background-size: cover;
  }
  .p-top__Works .c-ttl {
    margin-bottom: 21.7948717949vw;
  }
  .p-top__Works .swiper-slide {
    max-width: 79.4871794872vw;
    margin: 0 10.2564102564vw;
  }
  .p-top__Works .swiper-slide.swiper-slide-active {
    z-index: 100;
  }
  .p-top__Works .swiper-slide .-no {
    left: 2.5641025641vw;
    top: 2.5641025641vw;
    font-size: 20.5128205128vw;
  }
  .p-top__Works .swiper-button-prev {
    display: block;
    width: 12.8205128205vw;
    height: 25.641025641vw;
    background: url("./../img/prev_btn.webp");
    background-size: cover;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-top__Works .swiper-button-prev:after {
    display: none;
  }
  .p-top__Works .swiper-button-next {
    display: block;
    width: 12.8205128205vw;
    height: 25.641025641vw;
    background: url("./../img/next_btn.webp");
    background-size: cover;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-top__Works .swiper-button-next:after {
    display: none;
  }
  .p-top__Works .swiper-pagination {
    margin-top: 0;
  }
  .p-top__Works .swiper-pagination .swiper-pagination-bullet {
    width: 3.0769230769vw !important;
    height: 3.0769230769vw !important;
    border-radius: 0.5128205128vw !important;
    padding: 0;
  }
  .p-top__Works .card {
    border-radius: 0;
    padding: 12.0512820513vw 5.1282051282vw;
  }
  .p-top__Works .card__Flex {
    flex-direction: column-reverse;
  }
  .p-top__Works .card__Movie {
    max-width: none;
    width: 100%;
    margin-bottom: 5.1282051282vw;
    padding-top: 0;
  }
  .p-top__Works .card__Movie img,
  .p-top__Works .card__Movie video {
    position: static;
  }
  .p-top__Works .card__Movie .-playbtn {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
  .p-top__Works .card__Detail {
    max-width: none;
    width: 100%;
  }
  .p-top__Works .card__Detail-Ttl {
    font-size: 5.1282051282vw;
    line-height: 120%;
    margin-bottom: 3.8461538462vw;
  }
  .p-top__Works .card__Detail-Txt {
    font-size: 3.0769230769vw;
    margin-bottom: 5.8974358974vw;
  }
  .p-top__Works .card__Detail-Links ul {
    display: flex;
    gap: 35px;
  }
  .p-top__Works .card__Detail-Links li {
    padding-right: 6.4102564103vw;
    background-size: 4.1025641026vw;
  }
  .p-top__Works .card__Detail-Links li.-target {
    background-size: 3.5897435897vw;
  }
  .p-top__Works .card__Detail-Links li a {
    font-size: 3.5897435897vw;
  }
  .p-top__Recruit {
    width: 100%;
    padding: 20px 0;
  }
  .p-top__Recruit-Flex {
    padding: 20.5128205128vw 0 0;
    margin: auto;
    flex-flow: column-reverse;
    width: 94.8717948718vw;
    background: linear-gradient(242.39deg, #5C6167 27.88%, #282C2F 100%);
    border-radius: 1.5384615385vw;
  }
  .p-top__Recruit-Thum {
    max-width: none;
    width: 100%;
  }
  .p-top__Recruit-Thum img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .p-top__Recruit-Detail {
    display: block;
    max-width: none;
    margin: 0 auto 15.3846153846vw;
    width: 79.4871794872vw;
    padding: 0;
  }
  .p-top__Recruit-Detail .c-ttl {
    text-align: center;
    margin-bottom: 7.1794871795vw;
  }
  .p-top__Recruit-Detail-Txt {
    font-size: 3.0769230769vw;
    margin-bottom: 8.4615384615vw;
    text-align: justify;
  }
  .p-top__Recruit-Detail-Btn {
    font-size: 3.5897435897vw;
    max-width: none;
    height: 13.3333333333vw;
    padding: 0 4.6153846154vw;
    border-radius: 1.0256410256vw;
    background-size: 5.1282051282vw;
    background-position: center right 4.6153846154vw;
  }
  .p-top__Company {
    background-image: url("./../img/bg_top_company_sp.webp");
    background-size: 3%;
    padding: 30.7692307692vw 0 6.4102564103vw;
    margin-bottom: 0;
  }
  .p-top__Company-Flex {
    display: flex;
    flex-flow: column;
    max-width: 94.8717948718vw;
    width: 100%;
    margin: auto;
  }
  .p-top__Company-Flex .c-ttl {
    text-align: center;
    width: 100%;
    margin-bottom: 11.2820512821vw;
  }
  .p-top__Company-Wrap {
    max-width: none;
    width: 100%;
  }
  .p-top__Company-Wrap table tr {
    border-top: 1px solid #9C9C9C;
    padding: 4.358974359vw 2.5641025641vw;
    display: block;
  }
  .p-top__Company-Wrap table th {
    width: 100%;
    display: block;
    font-size: 3.0769230769vw;
    padding: 0;
  }
  .p-top__Company-Wrap table td {
    width: 100%;
    display: block;
    font-size: 3.0769230769vw;
    padding: 0;
  }
  .l-footer__Inner {
    max-width: 94.8717948718vw;
    padding: 9.4871794872vw 0;
  }
  .l-footer .copy {
    font-size: 2.5641025641vw;
  }
  /*-------------------------下層ページ--------------------*/
  .p-under__Mv {
    padding-top: 38.4615384615vw;
    padding-bottom: 38.4615384615vw;
  }
  .p-under__Mv-Ttl {
    font-size: 7.1794871795vw;
    margin-bottom: 10.2564102564vw;
  }
  .p-under__Mv-Ttl .-small {
    font-size: 4.6153846154vw;
    margin-bottom: 5.1282051282vw;
  }
  .p-under__Mv-Movie {
    padding-top: 56.25%;
    margin-bottom: 12.8205128205vw;
  }
  .p-under__Mv-Txt {
    font-size: 3.5897435897vw;
    margin-bottom: 7.6923076923vw;
  }
  .p-under__Mv-Btn {
    font-size: 3.5897435897vw;
    max-width: 76.9230769231vw;
    height: 13.3333333333vw;
    padding: 0 4.6153846154vw;
    border-radius: 1.0256410256vw;
    background-size: 5.1282051282vw;
    background-position: center right 4.6153846154vw;
  }
  .p-under__Mv-Btn.-home {
    margin-top: 5.1282051282vw;
    background: url("./../img/icon_btn_arrow.svg");
    background-size: 4.1025641026vw;
    background-repeat: no-repeat;
    background-position: center right 5.1282051282vw;
  }
  .contact__list {
    max-width: none;
    width: 95%;
  }
  .contact__list > li {
    padding: 2.0512820513vw 0;
  }
  .contact__list__ques {
    font-size: 4.6153846154vw;
  }
  .contact__list__ans textarea {
    font-size: 4.6153846154vw;
    min-height: 51.2820512821vw;
  }
  .contact__list__ans--select::after {
    content: "";
    width: 2.5641025641vw;
    height: 2.5641025641vw;
  }
  .contact__check {
    font-size: 3.8461538462vw;
  }
  .contact__check--label {
    padding-left: 7.6923076923vw;
  }
  .contact__check--label::before {
    top: 0.5128205128vw;
    width: 4.6153846154vw;
    height: 4.6153846154vw;
  }
  .contact__btn__send, .contact__btn__clear, .contact__btn__back {
    max-width: 68.4615384615vw;
    height: 12.8205128205vw;
    font-size: 3.5897435897vw;
    height: 13.3333333333vw;
    padding: 0 4.6153846154vw;
    border-radius: 1.0256410256vw;
    background-size: 5.1282051282vw;
    background-position: center right 4.6153846154vw;
  }
  .contact__btn__send.only {
    width: 100%;
  }
  .contact__btn.disable::after {
    content: "";
    max-width: 68.4615384615vw;
  }
  .contents__inner input::placeholder,
  .contents__inner textarea::placeholder {
    color: #BABABA;
  }
  .required {
    color: #DD434E;
    font-size: 0.8em;
    padding-left: 5px;
  }
  .contactmail .contact__btn.disable::after {
    display: none;
  }
}
/* 共通：Swiperデフォルトの丸ボタンをリセット */
.swiper-pagination-bullet {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  opacity: 1 !important;
  margin: 0 8px !important;
  border: none;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

/* -----------------------------------------
   【767px以下】デフォルトのドット風に見せる
------------------------------------------ */
@media (max-width: 767px) {
  .bullet-text {
    display: none;
  }
}


/*-------------------------プリローダー--------------------*/
body.is-loading {
  overflow: hidden;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: block;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.loading.is-hide {
  opacity: 0;
  pointer-events: none;
}

.loading__logo.posi--center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading__logo img {
  width: 200px;
  height: auto;
  display: block;
}


