@charset "utf-8";@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  -webkit-text-size-adjust: 100%;
}

body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  line-height: 0;
}

figure {
  line-height: 1;
}

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

fieldset, img {
  border: 0;
}

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

li {
  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;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  *font-size: 100%;
}

legend {
  color: #000;
}

strong {
  font-weight: normal;
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/* cyrillic-ext */
body {
  -webkit-text-size-adjust: 100%;
  position: relative;
  background: #141414;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: 0.75vw;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1249px) {
  html {
    font-size: 0.8vw;
  }
}
@media screen and (min-width: 1250px) {
  html {
    font-size: 10px;
  }
}

div {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, li, dt, dd, th, td, a {
  line-height: 1.8;
  font-weight: normal;
  color: #fff;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.wrappar {
  overflow: hidden;
}

main {
  padding-top: 9.6rem;
  display: block;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 7rem;
  }
}
main.pt0 {
  padding-top: 0;
}

body.top_page main {
  padding-top: 0;
}

section {
  display: block;
}

[data-inview] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.is-inview {
  opacity: 1;
  transform: translateY(0);
}

#cb-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#cb-modal.active {
  display: flex;
  opacity: 1;
}
#cb-modal #cb-modal-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  animation: fadeIn 0.4s ease;
}
#cb-modal #cb-modal-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
  border-radius: 4px;
}
#cb-modal #cb-modal-content video {
  max-width: 100%;
  max-height: 100%;
  display: none;
  border-radius: 0.5rem;
}
#cb-modal #cb-modal-content #cb-modal-close {
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-size: 2.4rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 3.6rem;
  height: 3.6rem;
  cursor: pointer;
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
}

#cb-modal-link {
  position: relative;
  display: inline-block;
}
#cb-modal-link .cb-hover-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  padding: 1rem 4rem 1rem 2rem;
  border-radius: 0.3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #cb-modal-link .cb-hover-label {
    opacity: 1;
  }
}
#cb-modal-link .cb-hover-label:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url(/assets/images/common/icon_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
#cb-modal-link:hover .cb-hover-label {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.parallax-img {
  position: relative;
  overflow: hidden;
}
.parallax-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.1s linear;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .parallax-img img {
    transform: none !important;
  }
}

.form-error {
  margin-top: 8px;
}
.form-error p {
  display: block;
  padding: 8px;
  border-radius: 3px;
  color: #fff;
}

input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number], textarea {
  background: transparent;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
input[type=number],
textarea {
  width: 100%;
  padding: 0.7rem;
  color: #fff;
  border: none;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #BABABA;
}
input[type=text]:input-placeholder,
input[type=email]:input-placeholder,
input[type=tel]:input-placeholder,
input[type=date]:input-placeholder,
input[type=number]:input-placeholder,
textarea:input-placeholder {
  color: #BABABA;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

._form-radio {
  display: flex;
}
._form-radio input[type=radio] {
  display: none;
}
._form-radio label {
  width: 100%;
  display: flex;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  padding-left: 25px;
}
._form-radio label span {
  display: block;
  padding: 10px;
}
._form-radio label span:before, ._form-radio label span:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: 0.3s;
}
._form-radio label span:before {
  width: 16px;
  height: 16px;
  top: 14px;
  left: 10px;
  border: 1px solid #bbb;
  background: #fff;
}
._form-radio label span:after {
  width: 10px;
  height: 10px;
  background: #bbb;
  top: 18px;
  left: 14px;
  transform: scale(0);
  transform-origin: 50%;
}
._form-radio input[type=radio]:checked + span:after {
  transform: scale(1);
}
._form-radio input[type=radio]:checked + span:before {
  border-color: #bbb;
}

._form-checkbox {
  display: flex;
  justify-content: space-between;
}
._form-checkbox input[type=checkbox] {
  display: none;
}
._form-checkbox label {
  width: 100%;
  padding-left: 25px;
  cursor: pointer;
  position: relative;
  display: block;
  border-radius: 3px;
  box-sizing: border-box;
}
._form-checkbox label:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 12px;
  left: 12px;
}
._form-checkbox label span {
  display: flex;
  align-items: center;
  padding: 10px;
}
._form-checkbox label span:before, ._form-checkbox label span:after {
  content: "";
  position: absolute;
  z-index: 2;
  transition: 0.3s;
}
._form-checkbox label span:before {
  width: 18px;
  height: 2px;
  top: 20px;
  left: 18px;
  transform: rotate(-45deg) scaleX(0);
  transform-origin: 0 100%;
}
._form-checkbox label span:after {
  width: 8px;
  height: 2px;
  top: 19px;
  left: 9px;
  transform: rotate(35deg) scaleX(0);
  transform-origin: 100% 100%;
}
._form-checkbox input[type=checkbox]:checked + span:before {
  transform: rotate(-45deg) scaleX(1);
}
._form-checkbox input[type=checkbox]:checked + span:after {
  transform: rotate(35deg) scaleX(1);
}

._form-select {
  overflow: hidden;
  *display: inline;
  *zoom: 1;
  position: relative;
  border-radius: 5px;
}
._form-select > select {
  width: 100%;
  padding: 18px 25px;
}
._form-select:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  right: 30px;
  top: calc(50% - 12px);
  transform: rotate(90deg);
}

.mw_wp_form_confirm ._form-select {
  box-shadow: none;
}
.mw_wp_form_confirm ._form-select:after {
  display: none;
}

input[type=button],
input[type=submit] {
  font-size: 1rem;
  background: none;
  text-align: center;
  color: #333;
  width: 100%;
  border: none;
}

.form-botton-back,
.form-botton-next {
  position: relative;
  overflow: hidden;
}
.form-botton-back:after,
.form-botton-next:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
}
.form-botton-back input[type=submit],
.form-botton-next input[type=submit] {
  width: 100%;
  position: relative;
  z-index: 1;
}

.form-botton-back {
  background: #666;
  position: relative;
}
.form-botton-back:after {
  left: 30px;
  transform: scaleX(-1);
}
.form-botton-back:before {
  transition: 0.5s;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  top: 0;
  left: 0;
  clip-path: circle(0% at 50% 50%);
}
.form-botton-back:hover:before {
  clip-path: circle(100% at 50% 50%);
}
.form-botton-back input[type=button] {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 1;
}

.form-botton-next:after {
  right: 30px;
}
.form-botton-next:before {
  transition: 0.5s;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  top: 0;
  left: 0;
  clip-path: circle(0% at 50% 50%);
}
.form-botton-next:hover:before {
  clip-path: circle(100% at 50% 50%);
}
.form-botton-next input[type=submit] {
  height: 70px;
}

/* block */
.inner {
  width: 90vw;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 85vw;
  }
}
.inner._w750 {
  max-width: 750px;
}
.inner._w850 {
  max-width: 850px;
}
.inner._w900 {
  max-width: 900px;
}
.inner._w1000 {
  max-width: 1000px;
}

.page_content {
  padding-bottom: 10rem;
}

/* button */
.btn a, .btn input, .btn button {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-weight: 100;
  line-height: 1;
  width: 80rem;
  display: block;
  text-align: center;
  padding: 5.5rem;
  background-color: #000;
  position: relative;
  margin: 0 auto;
  transition: 0.2s;
  will-change: transform;
  color: #fff;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn a, .btn input, .btn button {
    width: 75vw;
    font-size: 1.8rem;
    padding: 3rem;
  }
}
.btn a:after, .btn input:after, .btn button:after {
  content: "";
  display: block;
  width: 15.5rem;
  height: 1px;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(26%, -50%);
  transition: 0.2s;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .btn a:after, .btn input:after, .btn button:after {
    width: 20vw;
  }
}
.btn a:hover, .btn input:hover, .btn button:hover {
  background: #444;
}
.btn a:hover:after, .btn input:hover:after, .btn button:hover:after {
  transform: translate(50%, -50%);
}
.btn.btn_min a {
  width: auto;
  font-size: 1.6rem;
  display: inline-block;
  padding: 0.8rem 4rem;
}
.btn.btn_min a:after {
  width: 3.5rem;
  transform: translate(60%, -50%);
}
.btn.btn_min a:hover:after {
  transform: translate(80%, -50%);
}

/* text */
.page_ttl {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page_ttl {
    display: block;
  }
}
.page_ttl .page_ttl_inner {
  padding: 7.3rem 0 0;
  position: relative;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .page_ttl .page_ttl_inner {
    padding: 3.2rem 0 0 2rem;
  }
}
.page_ttl .page_ttl_inner:after {
  content: "";
  display: block;
  width: 33.4rem;
  height: 31.6rem;
  background-image: url(/assets/images/common/page_ttl_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  position: absolute;
  z-index: 1;
  top: 0;
  left: -6rem;
}
@media screen and (max-width: 767px) {
  .page_ttl .page_ttl_inner:after {
    width: 40vw;
    height: 47.305vw;
    left: -5vw;
  }
}
.page_ttl .page_ttl_inner p {
  position: relative;
  z-index: 5;
  letter-spacing: 0.2em;
  line-height: 1;
}
.page_ttl .page_ttl_inner p.en {
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  font-weight: 100;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .page_ttl .page_ttl_inner p.en {
    font-size: 2rem;
  }
}
.page_ttl .page_ttl_inner p.jp {
  font-size: 1.4rem;
  color: #444;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .page_ttl .page_ttl_inner p.jp {
    font-size: 1.2rem;
  }
}
.page_ttl .page_ttl_lead {
  width: 60rem;
  padding-top: 5rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .page_ttl .page_ttl_lead {
    width: 100%;
  }
}

.ttl_min {
  text-align: center;
  font-size: 3rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.2em;
  font-weight: 100;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .ttl_min {
    font-size: 2rem;
  }
}

.midashi {
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 3rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .midashi {
    font-size: 2rem;
  }
}
.midashi._center {
  text-align: center;
}
.midashi._min {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .midashi._min {
    font-size: 1.8rem;
  }
}

.midashi_border_grd p {
  font-size: 3rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-bottom: 2.5rem;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .midashi_border_grd p {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
}
.midashi_border_grd p:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 1s;
  transform: scale(0);
  transform-origin: left;
}
.midashi_border_grd.is-inview p:after {
  transform: scale(1);
}

.txt_p {
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #888;
}
@media screen and (max-width: 767px) {
  .txt_p {
    font-size: 1.4rem;
  }
}
.txt_p._center {
  text-align: center;
}

.grd_txt {
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*other*/
#BREADCRUMB {
  padding: 3.8rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #BREADCRUMB {
    padding: 3rem 7.5vw;
    margin-bottom: 1rem;
  }
}
#BREADCRUMB ul {
  display: flex;
  flex-wrap: wrap;
}
#BREADCRUMB ul li {
  margin-right: 2rem;
  padding-right: 3rem;
  position: relative;
}
#BREADCRUMB ul li:before {
  content: "";
  width: 1rem;
  height: 1px;
  display: block;
  background-color: #444;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#BREADCRUMB ul li:first-child {
  margin-left: 0;
}
#BREADCRUMB ul li:last-child {
  padding-right: 0;
}
#BREADCRUMB ul li:last-child:before {
  content: none;
  display: none;
}
#BREADCRUMB ul li a, #BREADCRUMB ul li strong {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #BREADCRUMB ul li a, #BREADCRUMB ul li strong {
    font-size: 1.2rem;
  }
}
#BREADCRUMB ul li a {
  transition: 0.2s;
  color: #888;
}
#BREADCRUMB ul li a:hover {
  color: #00ff9f;
}
#BREADCRUMB ul li strong {
  font-weight: 700;
}

.work_list {
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .work_list {
    padding: 0 7.5vw;
  }
}
.work_list .work_item {
  width: 48.6%;
}
.work_list .work_item:nth-child(n+3) {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .work_list .work_item:nth-child(n+3) {
    margin-top: 10vw;
  }
}
.work_list .work_item a {
  display: block;
}
.work_list .work_item a figure {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 59.164%;
}
.work_list .work_item a figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: 0.2s;
}
.work_list .work_item a p {
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  color: #444;
  line-height: 1.65;
  transition: 0.2s;
  font-weight: 100;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .work_list .work_item a p {
    font-size: 1.2rem;
    margin-top: 2vw;
    color: #888;
  }
}
.work_list .work_item a h3 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.65;
  margin-top: 2rem;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .work_list .work_item a h3 {
    font-size: 1.2rem;
    margin-top: 5vw;
  }
}
.work_list .work_item a:hover figure img {
  transform: translate(-50%, -50%) scale(1.05);
}
.work_list .work_item a:hover p {
  color: #fff;
}
.work_list .work_item a:hover h3 {
  color: #00ff9f;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    filter: blur(0);
  }
  10% {
    transform: scale(1.02) scaleX(1.03);
    filter: blur(1px);
  }
  40% {
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    transform: scale(1);
    filter: blur(0);
  }
}
@media screen and (min-width: 1025px) and (max-width: 1249px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 1250px) {
  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

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

:root {
  --header_color: #000;
  --header_color2: #000;
}

header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  padding: 3.8rem 15rem 3.8rem 3.8rem;
  background: #141414;
  transition: transform 0.4s;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  header {
    padding: 0;
    height: 17vw;
  }
}
header .logo {
  position: absolute;
  top: 2.3rem;
  left: 3rem;
}
@media screen and (max-width: 767px) {
  header .logo {
    top: 1.7rem;
    left: 7.5vw;
  }
}
header .logo a {
  display: block;
  transition: transform 0.1s ease-in-out;
  width: 14.4rem;
}
@media screen and (max-width: 767px) {
  header .logo a {
    width: 27vw;
  }
}
header .logo a:hover {
  animation: pulse 1s infinite;
}
header > nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header > nav {
    display: none;
  }
}
header > nav > ul {
  display: flex;
  align-items: center;
  margin-left: auto;
}
header > nav > ul li {
  line-height: 1;
}
header > nav > ul li:not(:first-child) {
  margin-left: 2rem;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
  header > nav > ul li:not(:first-child) {
    margin-left: 2rem;
  }
}
header > nav > ul li:not(:first-child):before {
  content: "/";
  display: inline-block;
  margin-right: 2rem;
}
header > nav > ul li a {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 1;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
  header > nav > ul li a {
    font-size: 1.4rem;
  }
}
header > nav > ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  height: 1px;
  width: 100%;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
header > nav > ul li a:hover:after {
  transform: scaleX(1);
}

/* menu-trigger */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.2s;
  box-sizing: border-box;
}

.menu-trigger {
  position: fixed;
  z-index: 8000;
  top: 2.2rem;
  right: 2.2rem;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    width: 4rem;
    height: 4rem;
    top: 3.5vw;
    right: 3.5vw;
  }
}
.menu-trigger:before, .menu-trigger:after {
  content: "";
  display: block;
  width: 110%;
  height: 110%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-trigger:before {
  z-index: 1;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
}
.menu-trigger:after {
  z-index: 5;
  background: #444;
  transition: 0.4s;
}
.menu-trigger:hover:after {
  opacity: 0;
}
.menu-trigger span {
  line-height: 1;
  display: block;
  position: absolute;
  left: 50%;
  width: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: #000;
  z-index: 10;
}
.menu-trigger span:nth-of-type(1) {
  top: 30%;
  transform: translateX(-38%);
}
.menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-62%, -50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 30%;
  transform: translateX(-38%);
}

/* menu-trigger エフェクト */
.menu-trigger.active span {
  background: #000;
  transform-origin: center;
  height: 1px;
  width: 30%;
}
.menu-trigger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) translateY(50%) rotate(-35deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  top: 50%;
  bottom: auto;
  transform: translateX(-50%) translateY(-50%) rotate(35deg);
}

.top_page._top header {
  transform: translateY(-100%);
}

.footer_contact {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .footer_contact {
    margin-top: 10rem;
  }
}

footer {
  margin-top: 10rem;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  padding: 8rem 7rem 7rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 5rem 3.5rem 3.5rem;
  }
}
footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #141414;
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
footer .footer_inner {
  position: relative;
  z-index: 5;
}
footer .footer_inner .logo a {
  display: block;
  transition: transform 0.1s ease-in-out;
  width: 30rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .logo a {
    width: 40vw;
  }
}
footer .footer_inner .logo a:hover {
  animation: pulse 1s infinite;
}
footer .footer_inner > nav {
  margin-top: 6rem;
  margin-bottom: 23rem;
}
@media screen and (max-width: 767px) {
  footer .footer_inner > nav {
    margin-bottom: 10rem;
  }
}
footer .footer_inner > nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer_inner > nav > ul {
    display: block;
    text-align: center;
  }
}
footer .footer_inner > nav > ul li {
  line-height: 1;
}
footer .footer_inner > nav > ul li:not(:first-child) {
  margin-left: 2rem;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
  footer .footer_inner > nav > ul li:not(:first-child) {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_inner > nav > ul li:not(:first-child) {
    margin: 2rem 0 0;
  }
}
footer .footer_inner > nav > ul li:not(:first-child):before {
  content: "/";
  display: inline-block;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  footer .footer_inner > nav > ul li:not(:first-child):before {
    display: none;
  }
}
footer .footer_inner > nav > ul li a {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 1;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
  footer .footer_inner > nav > ul li a {
    font-size: 1.4rem;
  }
}
footer .footer_inner > nav > ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  height: 1px;
  width: 110%;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
footer .footer_inner > nav > ul li a:hover:after {
  transform: scaleX(1);
}
footer .footer_inner .sns {
  width: 12rem;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 6rem;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .sns {
    width: 25vw;
  }
}
footer .footer_inner .sns a {
  display: block;
  width: 4.4rem;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .sns a {
    width: 11vw;
  }
}
footer .footer_inner .sns a:hover {
  opacity: 0.6;
}
footer .footer_inner .pp {
  text-align: center;
  margin-bottom: 3rem;
}
footer .footer_inner .pp a {
  font-size: 1.6rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.1em;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .pp a {
    font-size: 1.4rem;
  }
}
footer .footer_inner .pp a:hover {
  color: #00ff9f;
}
footer .footer_inner .copy {
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .copy {
    margin-top: 3rem;
  }
}
footer .footer_inner .copy small {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .copy small {
    font-size: 1rem;
  }
}

.slide_menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100vw;
  height: 100vh;
  transition: 0.2s;
  z-index: 1010;
  background: #141414;
}
@media screen and (min-width: 768px) {
  .slide_menu {
    max-width: 45rem;
  }
}
.slide_menu.--open {
  transform: translateX(0);
}
.slide_menu .slide_menu_inner {
  width: 100%;
  height: 100vh;
  overflow: auto;
  padding: 8rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .slide_menu .slide_menu_inner {
    padding: 10.5rem 7.5rem 3.5rem;
  }
}
.slide_menu .logo {
  position: absolute;
  top: 3rem;
  left: 2rem;
}
.slide_menu .logo a {
  color: var(--header_color2);
  display: block;
  transition: opacity 0.2s;
  font-size: 1.6rem;
}
.slide_menu .logo a:hover {
  opacity: 0.6;
}
.slide_menu .nav_content:nth-child(n+2) {
  margin-top: 3rem;
}
.slide_menu .nav_content ul:nth-child(n+2) {
  margin-top: 2rem;
}
.slide_menu .nav_content ul li {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_content ul li {
    line-height: 2.5;
  }
}
.slide_menu .nav_content ul li:nth-child(n+2) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_content ul li:nth-child(n+2) {
    margin-top: 3rem;
  }
}
.slide_menu .nav_content ul li a {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  transition: 0.2s;
  letter-spacing: 0.2em;
  position: relative;
  display: block;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_content ul li a {
    font-size: 1.8rem;
  }
}
.slide_menu .nav_content ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  height: 1px;
  width: 100%;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.slide_menu .nav_content ul li a:hover:after {
  transform: scaleX(1);
}
.slide_menu .nav_content .sns {
  width: 10.6rem;
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}
.slide_menu .nav_content .sns a {
  display: block;
  width: 4.4rem;
  transition: opacity 0.2s;
}
.slide_menu .nav_content .sns a:hover {
  opacity: 0.6;
}
.slide_menu .nav_content .small {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_content .small {
    margin-top: 5rem;
  }
}
.slide_menu .nav_content .small a {
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  transition: opacity 0.2s;
}
.slide_menu .nav_content .small a:hover {
  opacity: 0.6;
}
.slide_menu .sp_btnarea {
  margin-top: 5rem;
}
.slide_menu .sp_btnarea .btn {
  margin-top: 1.5rem;
}
.slide_menu .btn._green {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .slide_menu .btn._green {
    margin-top: 1.5rem;
  }
}
.slide_menu .btn._green a {
  width: 100%;
}
.slide_menu .btn._pink_wt {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .slide_menu .btn._pink_wt {
    margin-top: 1.5rem;
  }
}
.slide_menu .btn._pink_wt a {
  width: 100%;
}
.slide_menu .nav_bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_bottom {
    flex-direction: column-reverse;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .slide_menu .nav_bottom .btn {
    width: 100%;
  }
  .slide_menu .nav_bottom .btn a {
    width: 100%;
  }
}

#OVL {
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
}
#OVL.--open {
  pointer-events: auto;
  opacity: 1;
}

#container {
  margin: 20px;
  width: 100%;
  height: 3px;
}

#LOADER {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #LOADER .opening-inner {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  #LOADER .opening-inner {
    width: 40%;
  }
}

.body-lock {
  width: 100%;
  height: 100vh;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #fff;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
}

#cboxTopLeft {
  width: 25px;
  height: 25px;
  background: url(images/border1.png) no-repeat 0 0;
}

#cboxTopCenter {
  height: 25px;
  background: url(images/border1.png) repeat-x 0 -50px;
}

#cboxTopRight {
  width: 25px;
  height: 25px;
  background: url(images/border1.png) no-repeat -25px 0;
}

#cboxBottomLeft {
  width: 25px;
  height: 25px;
  background: url(images/border1.png) no-repeat 0 -25px;
}

#cboxBottomCenter {
  height: 25px;
  background: url(images/border1.png) repeat-x 0 -75px;
}

#cboxBottomRight {
  width: 25px;
  height: 25px;
  background: url(images/border1.png) no-repeat -25px -25px;
}

#cboxMiddleLeft {
  width: 25px;
  background: url(images/border2.png) repeat-y 0 0;
}

#cboxMiddleRight {
  width: 25px;
  background: url(images/border2.png) repeat-y -25px 0;
}

#cboxContent {
  background: #fff;
  overflow: hidden;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 20px;
}

#cboxTitle {
  position: absolute;
  bottom: 0px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #999;
}

#cboxCurrent {
  position: absolute;
  bottom: 0px;
  left: 100px;
  color: #999;
}

#cboxLoadingOverlay {
  background: #fff url(images/loading.gif) no-repeat 5px 5px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 42px;
  color: #444;
}

#cboxPrevious {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #444;
}

#cboxNext {
  position: absolute;
  bottom: 0px;
  left: 63px;
  color: #444;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  color: #444;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/**************************************************

loadingScreen

**************************************************/
.loading-screen {
  position: fixed;
  inset: 0;
  background: #141414;
  z-index: 9999;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
  pointer-events: auto;
}

.loading-line {
  width: 0%;
  height: 1px;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  animation: loadingLineAnim 3s ease forwards;
}

.loading-txt {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 3rem;
  animation: pulse 1s infinite;
}

@keyframes loadingTxt {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@keyframes loadingLineAnim {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/**************************************************

MV

**************************************************/
#MV {
  height: 100svh;
  width: 100%;
  position: relative;
}
#MV .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#MV .logo img {
  display: block;
  transition: transform 0.1s ease-in-out;
  width: 30rem;
  height: auto;
  animation: pulse 1s infinite;
}
@media screen and (max-width: 767px) {
  #MV .logo img {
    width: 50vw;
  }
}
#MV .scroll {
  position: absolute;
  left: 50%;
  bottom: 8rem;
  transform: translateX(-50%);
  padding-bottom: 5.5rem;
}
#MV .scroll:after {
  content: "";
  width: 1px;
  height: 3rem;
  background-color: #888;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s;
}
#MV .scroll p {
  color: #888;
  text-align: center;
  white-space: nowrap;
  font-size: 1.3rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1;
  transition: all 0.2s;
}
#MV .scroll:hover:after {
  background: #00ff9f;
}
#MV .scroll:hover p {
  color: #00ff9f;
}

/**************************************************

TOP-MOVIE

**************************************************/
#TOP-MOVIE {
  position: relative;
}
#TOP-MOVIE .h1_txt {
  position: absolute;
  left: 11rem;
  bottom: 4.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  #TOP-MOVIE .h1_txt {
    position: static;
    padding: 0 7.5vw;
    color: #888;
  }
}
#TOP-MOVIE .video_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  #TOP-MOVIE .video_wrap {
    height: 100vw;
    overflow: hidden;
    margin-top: 3rem;
  }
}
#TOP-MOVIE .video_wrap video {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #TOP-MOVIE .video_wrap video {
    height: 100vw;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
}
#TOP-MOVIE .comment_box {
  position: absolute;
  top: 14.5rem;
  left: 6rem;
  z-index: 5;
  background: rgba(0, 0, 0, 0.65);
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  #TOP-MOVIE .comment_box {
    position: relative;
    padding: 0 7.5vw;
    margin-top: 10vw;
    width: 100%;
    top: auto;
    left: auto;
    background: none;
  }
}
#TOP-MOVIE .comment_box .btn {
  margin-top: 3rem;
}
#TOP-MOVIE .deco_txt {
  position: absolute;
  z-index: 5;
  right: 1rem;
  bottom: 0;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  #TOP-MOVIE .deco_txt {
    position: relative;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
  }
}
#TOP-MOVIE .deco_txt p {
  font-size: 15.9rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #TOP-MOVIE .deco_txt p {
    font-size: 5rem;
    text-align: right;
  }
}

/**************************************************

TOP-WORKS

**************************************************/
#TOP-WORKS {
  margin-top: 13rem;
}

/**************************************************

anime_bg

**************************************************/
.top_content {
  position: relative;
  z-index: 3;
}

#anime_bg {
  position: fixed;
  display: block;
  width: 100%;
  height: 200svh;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateY(0);
  will-change: transform;
  background: #141414;
  pointer-events: none;
}
#anime_bg canvas {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}

/**************************************************

ABOUT-MV

**************************************************/
#ABOUT-MV {
  width: calc(69.6rem + 50vw - 55rem);
  margin-left: auto;
  margin-top: -4rem;
}
@media screen and (max-width: 767px) {
  #ABOUT-MV {
    margin-top: 5rem;
    width: 85vw;
    position: relative;
    z-index: 3;
  }
}

/**************************************************

ABOUT-LEAD

**************************************************/
#ABOUT-LEAD {
  margin-top: -8rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  #ABOUT-LEAD {
    margin-top: -2rem;
  }
}
#ABOUT-LEAD .inner .head_copy {
  margin-bottom: 7.5rem;
}
#ABOUT-LEAD .inner .head_copy p {
  font-size: 4rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #ABOUT-LEAD .inner .head_copy p {
    font-size: 1.6rem;
  }
}
#ABOUT-LEAD .inner .head_copy p .marker {
  background-color: #141414;
  display: inline-block;
  padding: 1rem 2rem 1rem 0;
}
@media screen and (max-width: 767px) {
  #ABOUT-LEAD .inner .head_copy p .marker {
    padding: 1rem 2rem 0 0;
  }
}

/**************************************************

WHAT-WE-DO

**************************************************/
#WHAT-WE-DO {
  margin-top: 27rem;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO {
    margin-top: 10rem;
  }
}
#WHAT-WE-DO .wwd_block1 {
  display: flex;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block1 {
    display: block;
  }
}
#WHAT-WE-DO .wwd_block1 figure {
  width: calc(69.5rem + 50vw - 55rem);
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block1 figure {
    width: 85vw;
  }
}
#WHAT-WE-DO .wwd_block1 .txt_box {
  width: 44rem;
  padding-top: 6rem;
  margin-left: 5.5rem;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block1 .txt_box {
    width: 85vw;
    padding-top: 0;
    margin: 5rem auto 0;
  }
}
#WHAT-WE-DO .wwd_block1 .txt_box .midashi_border_grd {
  margin-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block1 .txt_box .midashi_border_grd {
    margin-bottom: 5rem;
  }
}
#WHAT-WE-DO .wwd_block1 .txt_box .midashi {
  margin-bottom: 5rem;
}
#WHAT-WE-DO .wwd_block2 {
  margin-top: 14rem;
  background-color: #222;
  padding: 14rem 0 16rem;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 {
    margin-top: 7rem;
    padding: 7rem 0;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_branding .branding_ttl {
  text-align: center;
  font-size: 3rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 .wwd_branding .branding_ttl {
    font-size: 1.8rem;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_category {
  display: flex;
  justify-content: center;
  position: relative;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 .wwd_category {
    display: block;
    width: 85vw;
    margin: 0 auto;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_category:after {
  content: "";
  display: block;
  height: 1px;
  width: 72rem;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  position: absolute;
  top: 13rem;
  left: 50%;
  transform-origin: left;
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
  transition: 0.8s;
  transition-delay: 1s;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 .wwd_category:after {
    height: 80%;
    width: 1px;
    top: 50%;
    left: 20%;
    transform-origin: top;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_category li {
  width: 26rem;
  position: relative;
  z-index: 5;
  transform: scale(0.9);
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 .wwd_category li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_category li:nth-child(n+2) {
  margin-left: 10rem;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 .wwd_category li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 3rem;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_category li .ttl {
  background-color: #000;
  width: 100%;
  height: 0;
  box-sizing: content-box;
  padding-bottom: 100%;
  position: relative;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 .wwd_category li .ttl {
    width: 40%;
    padding-bottom: 40%;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_category li .ttl h3 {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 .wwd_category li .ttl h3 {
    font-size: 1.3rem;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_category li p {
  font-size: 1.4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #WHAT-WE-DO .wwd_block2 .wwd_category li p {
    font-size: 1.2rem;
    width: 55%;
    margin-top: 0;
    text-align: left;
  }
}
#WHAT-WE-DO .wwd_block2 .wwd_category li p span {
  display: inline-block;
}
#WHAT-WE-DO .wwd_block2 .wwd_category.is-inview:after {
  transform: translate(-50%, -50%) scale(1);
}
#WHAT-WE-DO .wwd_block2 .wwd_category.is-inview li {
  transform: scale(1);
}

/**************************************************

MEMBERS

**************************************************/
#MEMBERS {
  margin-top: 14rem;
}
@media screen and (max-width: 767px) {
  #MEMBERS {
    margin-top: 7rem;
  }
}
#MEMBERS .member_list {
  margin-top: 5.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #MEMBERS .member_list {
    display: block;
  }
}
#MEMBERS .member_list .member_box {
  width: 45.27%;
}
@media screen and (min-width: 768px) {
  #MEMBERS .member_list .member_box:nth-child(n+3) {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767px) {
  #MEMBERS .member_list .member_box {
    width: 100%;
  }
  #MEMBERS .member_list .member_box:nth-child(n+2) {
    margin-top: 5rem;
  }
}
#MEMBERS .member_list .member_box .overview {
  display: flex;
  align-items: center;
}
#MEMBERS .member_list .member_box .overview figure {
  width: 10rem;
  margin-right: 3.5rem;
}
@media screen and (max-width: 767px) {
  #MEMBERS .member_list .member_box .overview figure {
    width: 7rem;
  }
}
#MEMBERS .member_list .member_box .overview .txt .name {
  font-size: 3rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #MEMBERS .member_list .member_box .overview .txt .name {
    font-size: 2rem;
  }
}
#MEMBERS .member_list .member_box .overview .txt .category {
  margin-top: 2rem;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #888;
}
@media screen and (max-width: 767px) {
  #MEMBERS .member_list .member_box .overview .txt .category {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
}
#MEMBERS .member_list .member_box .overview .txt .category span {
  display: inline-block;
}
#MEMBERS .member_list .member_box .personal_work {
  margin-top: 2rem;
  display: flex;
}
#MEMBERS .member_list .member_box .personal_work .items {
  width: 14%;
}
#MEMBERS .member_list .member_box .personal_work .items:nth-child(n+2) {
  margin-left: 3.2%;
}
#MEMBERS .member_list .member_box .personal_work .items a {
  display: block;
  width: 100%;
  height: 0;
  box-sizing: content-box;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
#MEMBERS .member_list .member_box .personal_work .items a img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#MEMBERS .member_list .member_box .personal_work .items a:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}
#MEMBERS .member_list .member_box .personal_work .items a.movie:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  width: 3.6rem;
  height: 3.6rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: 0.2s;
  clip-path: polygon(30% 20%, 70% 50%, 30% 80%);
  background-clip: content-box;
}
#MEMBERS .member_list .member_box .personal_work .items a.movie:hover::after {
  background: rgba(0, 0, 0, 0.7);
}

/**************************************************

OVERVIEW

**************************************************/
#ABOUT-OVERVIEW {
  margin-top: 18rem;
  padding: 11rem 0;
  background: #222;
}
@media screen and (max-width: 767px) {
  #ABOUT-OVERVIEW {
    margin-top: 7rem;
    padding: 7rem 0;
  }
}
#ABOUT-OVERVIEW .ttl {
  font-size: 3rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #ABOUT-OVERVIEW .ttl {
    font-size: 2rem;
  }
}
#ABOUT-OVERVIEW .base_list {
  margin-top: 6.5rem;
}
@media screen and (min-width: 768px) {
  #ABOUT-OVERVIEW .base_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#ABOUT-OVERVIEW .base_list .base_box {
  padding-left: 9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #ABOUT-OVERVIEW .base_list .base_box:nth-child(n+2) {
    margin-top: 5rem;
  }
}
#ABOUT-OVERVIEW .base_list .base_box:before {
  content: "";
  display: block;
  width: 7.5rem;
  height: 1px;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  position: absolute;
  top: 1rem;
  left: 0;
  transition: 1s;
  transform: scale(0);
  transform-origin: left;
}
#ABOUT-OVERVIEW .base_list .base_box .name {
  font-size: 1.8rem;
  font-family: "Lato", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #ABOUT-OVERVIEW .base_list .base_box .name {
    font-size: 1.6rem;
  }
}
#ABOUT-OVERVIEW .base_list .base_box .txt_p {
  font-size: 1.3rem;
}
#ABOUT-OVERVIEW .base_list .base_box.is-inview:before {
  transform: scale(1);
}

/**************************************************

WORKS

**************************************************/
#WORKS {
  margin-top: 20rem;
}
@media screen and (max-width: 767px) {
  #WORKS {
    margin-top: 5rem;
  }
}

/**************************************************

WORKS - POST

**************************************************/
.page_ttl .work_sakuhin_ttl {
  width: 76rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .page_ttl .work_sakuhin_ttl {
    width: 100%;
  }
}
.page_ttl .work_sakuhin_ttl:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 1s;
  transform: scale(0);
  transform-origin: left;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
}
.page_ttl .work_sakuhin_ttl .category {
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  color: #888;
  line-height: 1.65;
  transition: 0.2s;
  font-weight: 100;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .page_ttl .work_sakuhin_ttl .category {
    font-size: 1.3rem;
  }
}
.page_ttl .work_sakuhin_ttl .category span {
  display: inline-block;
}
.page_ttl .work_sakuhin_ttl .ttl {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .page_ttl .work_sakuhin_ttl .ttl {
    font-size: 2rem;
  }
}
.page_ttl.is-inview .work_sakuhin_ttl:after {
  transform: scale(1);
  letter-spacing: 0.1em;
  line-height: 1.65;
}

#SAKUHIN-CONTENT {
  margin-top: 20rem;
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT {
    margin-top: 7rem;
  }
}
#SAKUHIN-CONTENT .mv figure {
  position: relative;
}
#SAKUHIN-CONTENT .mv figure:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3rem;
  left: 3rem;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  opacity: 0.15;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .mv figure:before {
    top: 3vw;
    left: 3vw;
  }
}
#SAKUHIN-CONTENT .mv figure img {
  position: relative;
  z-index: 5;
}
#SAKUHIN-CONTENT .content {
  margin-top: 14rem;
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .content {
    margin-top: 7rem;
  }
}
#SAKUHIN-CONTENT .content .sc_block:nth-child(n+2) {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .content .sc_block:nth-child(n+2) {
    margin-top: 7rem;
  }
}
#SAKUHIN-CONTENT .content .sc_block .midashi + * {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .content .sc_block .midashi + * {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  #SAKUHIN-CONTENT .content .sc_block._flex {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  #SAKUHIN-CONTENT .content .sc_block._flex figure {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .content .sc_block._flex figure {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 768px) {
  #SAKUHIN-CONTENT .content .sc_block._flex .txt_area {
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  #SAKUHIN-CONTENT .content .sc_block._flex._rvs {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  #SAKUHIN-CONTENT .content .sc_block._flex._img figure {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .content .sc_block._flex._img figure {
    margin-bottom: 0;
  }
  #SAKUHIN-CONTENT .content .sc_block._flex._img figure:first-child {
    margin-bottom: 3rem;
  }
}
#SAKUHIN-CONTENT .content .sc_block._img figure {
  width: 100%;
}
#SAKUHIN-CONTENT .content .sc_block._img figure img {
  width: 100%;
  height: auto;
}
#SAKUHIN-CONTENT .content .sc_block._video .video {
  width: 100%;
  aspect-ratio: 16/9;
}
#SAKUHIN-CONTENT .content .sc_block._video .video iframe {
  width: 100%;
  height: 100%;
}
#SAKUHIN-CONTENT .content .sc_block._video2 .video {
  width: 100%;
}
#SAKUHIN-CONTENT .content .sc_block._video2 .video video {
  width: 100%;
  height: auto;
}
#SAKUHIN-CONTENT .overview {
  background: #222;
  padding: 4.5rem 5rem;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .overview {
    margin-top: 10rem;
    padding: 7.5vw 7.5vw 9vw;
  }
}
#SAKUHIN-CONTENT .overview .ttl {
  font-size: 3rem;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.1em;
  color: #444;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 3rem;
  color: #444;
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .overview .ttl {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  #SAKUHIN-CONTENT .overview .info {
    display: flex;
    flex-wrap: wrap;
  }
  #SAKUHIN-CONTENT .overview .info p.client, #SAKUHIN-CONTENT .overview .info p.director {
    width: 100%;
  }
  #SAKUHIN-CONTENT .overview .info p:not(.client, .director):after {
    content: "/";
    display: inline-block;
    margin: 0 0.5em;
  }
  #SAKUHIN-CONTENT .overview .info p:not(.client, .director):last-child:after {
    content: none;
  }
}
#SAKUHIN-CONTENT .overview .link {
  margin-top: 3rem;
}
#SAKUHIN-CONTENT .overview .link a {
  text-decoration: underline;
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  transition: 0.2s;
  color: #fff;
  word-break: break-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  #SAKUHIN-CONTENT .overview .link a {
    font-size: 1.4rem;
  }
}
#SAKUHIN-CONTENT .overview .link a:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: -2rem;
  background-image: url(/assets/images/common/icon_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#SAKUHIN-CONTENT .overview .link a:hover {
  color: #00ff9f;
}

/**************************************************

CONTACT

**************************************************/
.contact_page .footer_contact {
  display: none;
}

#CONTACT {
  margin-top: 24rem;
}
@media screen and (max-width: 767px) {
  #CONTACT {
    margin-top: 7rem;
  }
}
@media screen and (min-width: 768px) {
  #CONTACT .inner form dl {
    display: flex;
    justify-content: space-between;
  }
}
#CONTACT .inner form dl:nth-child(n+2) {
  margin-top: 3rem;
}
#CONTACT .inner form dl dt, #CONTACT .inner form dl dd {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #CONTACT .inner form dl dt, #CONTACT .inner form dl dd {
    font-size: 1.4rem;
  }
}
#CONTACT .inner form dl dt {
  position: relative;
}
@media screen and (min-width: 768px) {
  #CONTACT .inner form dl dt {
    width: 27%;
  }
}
@media screen and (max-width: 767px) {
  #CONTACT .inner form dl dt {
    margin-bottom: 2rem;
  }
}
#CONTACT .inner form dl dt.hissu:after {
  content: "Required";
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1;
  padding: 0.5rem 1rem;
  background: linear-gradient(to top right, #ff33b7, #00ff9f);
  position: absolute;
  right: 0;
  top: 0.5rem;
}
@media screen and (min-width: 768px) {
  #CONTACT .inner form dl dd {
    width: 68%;
  }
}
#CONTACT .inner form dl dd input[type=text], #CONTACT .inner form dl dd input[type=email], #CONTACT .inner form dl dd textarea {
  background-color: #222;
  padding: 1.5rem 2rem;
}
#CONTACT .inner form dl dd input[type=text]::placeholder, #CONTACT .inner form dl dd input[type=email]::placeholder, #CONTACT .inner form dl dd textarea::placeholder {
  color: #444;
}
#CONTACT .inner form dl dd input[type=text]:input-placeholder, #CONTACT .inner form dl dd input[type=email]:input-placeholder, #CONTACT .inner form dl dd textarea:input-placeholder {
  color: #444;
}
#CONTACT .inner form dl dd textarea {
  width: 100%;
  height: 20rem;
  resize: none;
}
#CONTACT .inner form .pp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}
#CONTACT .inner form .pp label {
  display: block;
  line-height: 1;
  margin-right: 1rem;
}
#CONTACT .inner form .pp label input {
  display: block;
  line-height: 1;
}
#CONTACT .inner form .pp p a {
  text-decoration: underline;
  transition: 0.2s;
}
#CONTACT .inner form .pp p a:hover {
  color: #00ff9f;
}
#CONTACT .inner form .btn {
  margin-top: 5rem;
}
#CONTACT .inner form .btn .back {
  margin-bottom: 3rem;
  opacity: 0.8;
}
#CONTACT .inner .mw_wp_form_confirm form .pp {
  display: none;
}

/**************************************************

PP

**************************************************/
.page_ttl .page_ttl_lead h2 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  font-weight: 700;
}
.page_ttl .page_ttl_lead h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-weight: 700;
  margin-top: 3rem;
}
.page_ttl .page_ttl_lead p {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.page_ttl .page_ttl_lead p:last-child {
  margin-bottom: 0;
}
.page_ttl .page_ttl_lead p a {
  text-decoration: underline;
  transition: 0.2s;
}
.page_ttl .page_ttl_lead p a:hover {
  color: #00ff9f;
}
/*# sourceMappingURL=style.min.css.map */
