@charset "UTF-8";
* {
  max-height: 999999px;
}

body,
input,
textarea {
  color: #fff;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
  font-family: neue-haas-grotesk-text, zen-kaku-gothic-new, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  body,
  input,
  textarea {
    font-size: 12px;
  }
}

body {
  overflow-x: hidden;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus {
  outline: none;
}
a:active {
  opacity: 0.7;
}
a.underline {
  text-decoration: underline;
}
a.img-box {
  max-width: 100%;
}

.img-box img {
  max-width: 100%;
}

.of-cv {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.of-ct {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

a.tel,
.tel a {
  opacity: 1;
}
@media (min-width: 768px) {
  a.tel,
  .tel a {
    pointer-events: none;
  }
}

table {
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  border: none;
  margin: 20px 0;
  width: 100%;
}

td, th {
  padding: 10px;
  border: none;
}

th {
  background: none;
}

figure {
  margin: 0;
}

input:hover,
input:focus,
textarea {
  outline: none;
}

input[type=radio]:hover,
input[type=submit]:hover {
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

@media (min-width: 576px) {
  .pc-none {
    display: none !important;
  }
}

/* ====================
page transition animation
==================== */
body {
  background-color: #000;
  transition: 1s;
  opacity: 0;
}
body.loaded {
  opacity: 1;
}
body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: #000;
  width: 100%;
  height: 100%;
  z-index: 20000;
  pointer-events: none;
}
body.fadeout::after {
  opacity: 1;
}

/* ====================
▼▼ 共通パーツ ▼▼
==================== */
.content-width {
  width: 96.6666666667%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .content-width {
    width: 93.3333333333%;
  }
}

@media (min-width: 992px) {
  .btn-burger {
    display: none;
  }
}
.btn-burger {
  position: fixed;
  top: 36px;
  right: 3.3333333333%;
  width: 36px;
  height: 36px;
  z-index: 105;
}
@media (max-width: 575px) {
  .btn-burger {
    top: 10px;
  }
}
.btn-burger .btn-burger__inner {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 24px;
  height: 8px;
}
.btn-burger .btn-burger__inner span {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 1px;
}
.btn-burger .btn-burger__inner span:nth-child(1) {
  top: 0%;
}
.btn-burger .btn-burger__inner span:nth-child(2) {
  top: 100%;
}

.sp-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 103;
  background-color: #000;
  transition: top 0.3s ease;
}
.sp-menu.active {
  top: 0;
}
.sp-menu .sp-menu__inner {
  padding-top: 60px;
}
.sp-menu .content-inner {
  padding: 24px 0;
}
.sp-menu .sp-menu__works__list {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.sp-menu .sp-menu__works__item {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

#main {
  position: relative;
  padding-top: 80px;
  z-index: 101;
}
@media (max-width: 575px) {
  #main {
    padding-top: 60px;
  }
}

.upper-works-type__container {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .upper-works-type__container {
    display: none;
  }
}

.upper-works-type__list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.upper-works-type__item .upper-works-type__item__inner {
  display: block;
  font-size: 12px;
}
.upper-works-type__item.active .upper-works-type__item__inner span {
  position: relative;
}
.upper-works-type__item.active .upper-works-type__item__inner span::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  bottom: -0.3em;
  left: 0;
  width: 100%;
  height: 1px;
}

/* ====================
▲▲ 共通パーツ ▲▲
==================== */
/* ====================
▼▼ header ▼▼
==================== */
#top #header {
  background-color: #000;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding-top: 36px;
  z-index: 104;
}
@media (max-width: 575px) {
  #header {
    height: 60px;
    padding-top: 0;
  }
}

.h-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.h-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.h-site-logo a {
  display: block;
  padding: 6px 0;
}
.h-site-logo a .img-box {
  width: 120px;
  aspect-ratio: 120/13;
}
@media (max-width: 575px) {
  .h-site-logo a .img-box {
    width: 80px;
  }
}
.h-site-logo a img {
  display: block;
}

.h-site-lower-pages__list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.h-site-lower-pages__item a {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

/* ====================
▲▲ header ▲▲
==================== */
/* ====================
▼▼ footer ▼▼
==================== */
#footer .f-inner {
  padding: 48px 0;
}
@media (max-width: 575px) {
  #footer .f-inner {
    padding: 24px 0;
  }
}
#footer .f-lower {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 575px) {
  #footer .f-lower {
    display: block;
  }
}
#footer .f-lower__logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#footer .f-lower__logo .img-box {
  width: 180px;
  aspect-ratio: 200/30;
}
@media (max-width: 575px) {
  #footer .f-lower__logo .img-box {
    width: 184px;
  }
}
#footer .f-lower__logo .img-box a {
  display: block;
  width: 100%;
  height: 100%;
}
#footer .f-lower__logo .title {
  font-size: 14px;
  margin-top: auto;
}
@media (max-width: 575px) {
  #footer .f-lower__logo .title {
    font-size: 12px;
    margin-top: 10px;
  }
}
#footer .f-lower__infos {
  font-size: 12px;
  margin-left: 36px;
  margin-right: auto;
}
@media (max-width: 575px) {
  #footer .f-lower__infos {
    font-size: 10px;
    margin-top: 20px;
    margin-left: 0;
  }
}
#footer .f-lower__profile {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
#footer .f-lower__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 575px) {
  #footer .f-lower__right {
    margin-top: 20px;
  }
}
#footer .f-copyright {
  color: #888;
  font-size: 12px;
  text-align: center;
  padding: 36px 0 0;
}
@media (max-width: 575px) {
  #footer .f-copyright {
    font-size: 10px;
    padding: 18px 0 0;
  }
}

/* ====================
▲▲ footer ▲▲
==================== */
/* ====================
▼▼ HOME ▼▼
==================== */
.gallary-card__container {
  padding: 120px 0;
}
@media (max-width: 575px) {
  .gallary-card__container {
    padding: 20px 0 40px;
  }
}

/* ====================
▲▲ HOME ▲▲
==================== */
/* ====================
▼▼ gallery card ▼▼
==================== */
.gallery-card__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6666666667vw;
  grid-auto-flow: dense;
}
@media (max-width: 991px) {
  .gallery-card__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gallery-card__list {
    gap: 3.2vw;
  }
}

.gallery-card__item.wh1x1 {
  aspect-ratio: 3/2;
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-card__item.wh2x1 {
  aspect-ratio: 3.1090909091;
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-card__item.wh1x2 {
  aspect-ratio: 0.7112068966;
  grid-column: span 1;
  grid-row: span 2;
}
.gallery-card__item.wh2x2 {
  aspect-ratio: 1.474137931;
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card__item__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card__item__image {
  width: 100%;
  height: 100%;
}

.gallery-card__item__meta {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 576px) {
  .gallery-card__item__meta:hover {
    opacity: 1;
  }
}
.gallery-card__item__meta .title {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  width: 87.8787878788%;
}
@media (max-width: 575px) {
  .gallery-card__item__meta .title {
    font-size: 12px;
  }
}
.gallery-card__item__meta .category__list {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.4em;
  bottom: 6.0606060606%;
  left: 6.0606060606%;
}
.gallery-card__item__meta .category__list .category__item {
  font-size: 10px;
}

/* ====================
▲▲ gallery card ▲▲
==================== */
/* ====================
▼▼ single works ▼▼
==================== */
#single-works #main {
  padding-top: 0;
}

#works-mv .mv-inner {
  position: relative;
  width: 100%;
  height: 100dvh;
}
@media (max-width: 767px) {
  #works-mv .mv-inner {
    height: 50dvh;
  }
}
#works-mv .mv-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#works-mv .mv-back::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
#works-mv .mv-back .img-box {
  width: 100%;
  height: 100%;
}
#works-mv .works-ttl-box {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
}
#works-mv .works-ttl-box .works-ttl {
  font-size: 24px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  #works-mv .works-ttl-box .works-ttl {
    font-size: 18px;
  }
}
#works-mv .works-ttl-box .works-ttl-client {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 1em;
}
@media (max-width: 767px) {
  #works-mv .works-ttl-box .works-ttl-client {
    font-size: 12px;
  }
}
#works-mv .works-ttl-box .works-ttl-term__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#works-mv .works-ttl-box .works-ttl-term__item {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
}
@media (max-width: 767px) {
  #works-mv .works-ttl-box .works-ttl-term__item {
    font-size: 12px;
  }
}

#works-entry {
  padding: 128px 0;
}
@media (max-width: 767px) {
  #works-entry {
    padding: 36px 0;
  }
}
#works-entry .content-width {
  display: flex;
  width: min(83.3333333333%, 1200px);
  gap: 0 48px;
}
@media (max-width: 767px) {
  #works-entry .content-width {
    display: block;
  }
}
#works-entry .sidebar-container {
  width: 21%;
}
@media (max-width: 767px) {
  #works-entry .sidebar-container {
    display: none;
    width: 100%;
  }
}
#works-entry .sidebar-works .title {
  font-size: 14px;
}
#works-entry .sidebar-works .client {
  font-size: 12px;
  margin-top: 1em;
}
#works-entry .sidebar-works .term__list {
  display: flex;
  flex-direction: column;
  gap: 2px 0;
  margin-top: 8px;
}
#works-entry .sidebar-works .term__list .term__item {
  font-size: 10px;
}
#works-entry .sidebar-head__list {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  margin-top: 48px;
}
#works-entry .sidebar-head__item {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}
#works-entry .content-main {
  width: 75%;
}
@media (max-width: 767px) {
  #works-entry .content-main {
    width: 100%;
    margin-top: 0;
  }
}
#works-entry .works-entry__block:nth-child(n+2) {
  margin-top: 128px;
}
@media (max-width: 767px) {
  #works-entry .works-entry__block:nth-child(n+2) {
    margin-top: 48px;
  }
}
#works-entry .content-body .ttl-box .ttl-en {
  font-size: 18px;
}
#works-entry .content-body .ttl-box .ttl-ja {
  font-size: 12px;
  margin-top: 4px;
}
#works-entry .content-body .description {
  font-size: 16px;
  margin-top: 36px;
}
@media (max-width: 767px) {
  #works-entry .content-body .description {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  #works-entry .works-entry__block.works-entry__movie-image-block {
    margin-top: 16px;
  }
}
#works-entry .works-entry__block.works-entry__movie-image-block .movie-iframe {
  width: 100%;
  aspect-ratio: 3/2;
}
#works-entry .works-entry__block.works-entry__movie-image-block .movie-iframe iframe {
  width: 100%;
  height: 100%;
}
#works-entry .works-entry__block.works-entry__movie-image-block .movie-video {
  width: 100%;
}
#works-entry .works-entry__block.works-entry__movie-image-block .movie-video video {
  display: block;
}
#works-entry .works-entry__block.works-entry__movie-image-block .images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 0 1.3333333333vw;
  margin-top: 24px;
}
@media (max-width: 767px) {
  #works-entry .works-entry__block.works-entry__movie-image-block .images {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2vw;
    margin-top: 36px;
  }
}
#works-entry .works-entry__block.works-entry__movie-image-block .images .img-box {
  width: 100%;
  aspect-ratio: 287/115;
}
@media (max-width: 767px) {
  #works-entry .works-entry__block.works-entry__movie-image-block .images .img-box {
    aspect-ratio: 3/2;
  }
}
#works-entry .credit-table {
  margin-top: 24px;
}
#works-entry .credit-table .fr {
  display: flex;
}
#works-entry .credit-table .fr:nth-child(n+2) {
  margin-top: 1em;
}
#works-entry .credit-table .fh {
  font-size: 14px;
  width: 200px;
}
#works-entry .credit-table .fd {
  font-size: 14px;
}

#works-related {
  padding-bottom: 240px;
}
@media (max-width: 767px) {
  #works-related {
    padding-bottom: 120px;
  }
}
#works-related .sec-ttl-box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
#works-related .sec-ttl-box .sec-ttl {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
#works-related .content-main {
  margin-top: 40px;
}
#works-related .works-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6666666667vw;
  grid-auto-flow: dense;
}
@media (max-width: 991px) {
  #works-related .works-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}
@media (max-width: 575px) {
  #works-related .works-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#works-related .works-list .works-item {
  display: block;
  aspect-ratio: 3/2;
  grid-column: span 1;
  grid-row: span 1;
}
#works-related .works-list .works-thumb {
  position: relative;
}
#works-related .works-list .works-thumb::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}
#works-related .works-list .works-thumb .img-box {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#works-related .works-list .works-thumb .img-box img {
  transition: transform 0.25s ease;
}
#works-related .works-list .works-body {
  margin-top: 20px;
}
#works-related .works-list .works-body .works-ttl-ja {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
}
#works-related .works-list .works-body .works-client {
  color: #888;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 2.33;
  margin-top: 8px;
}
#works-related .works-list .works-body .works-cat__list {
  display: flex;
  flex-direction: column;
  gap: 2px 0;
  margin-top: 4px;
}
#works-related .works-list .works-body .works-cat__item {
  flex-shrink: 0;
  color: #888;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media (min-width: 576px) {
  #works-related .works-list .works-item:hover .works-thumb .img-box img {
    transform: scale(1.1);
    transition: transform 0.25s ease;
  }
}

/* ====================
▲▲ single works ▲▲
==================== */
/* ====================
▼▼ contact ▼▼
==================== */
#contact #page-mv.mv-small .sec-inner {
  padding: 80px 0;
}
#contact #page-mv.mv-small .content-width {
  max-width: 600px;
}
#contact #page-mv.mv-small .sec-ttl {
  font-size: 36px;
}

#contact-container .content-width {
  max-width: 600px;
}

.form-container .fr {
  position: relative;
}
.form-container .fr:nth-child(n+2) {
  margin-top: 48px;
}
.form-container .fr.fr-horiz {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.form-container .fr.fr-horiz .fr {
  margin-top: 0;
}
.form-container .fr .fh {
  position: absolute;
  top: 0.8em;
  left: 0;
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease;
}
.form-container .fr .fh.active {
  transform: unset;
  top: calc(-1em - 4px);
  font-size: 12px;
  line-height: 1;
}
.form-container .fr .fh.active.required::before {
  font-size: 12px;
}
.form-container .fr.required .fh::before {
  content: "*";
  display: block;
  position: absolute;
  top: 0;
  right: -0.7em;
  color: #FF4B00;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.form-container .fr.fr-select .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.form-container .fr.fr-select .wpcf7-form-control-wrap::before {
  content: "";
  display: block;
  position: absolute;
  border: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #fff;
  border-bottom: 0;
  top: 18px;
  right: 0;
  width: 0;
  height: 0;
}
.form-container .fr .fd input, .form-container .fr .fd textarea, .form-container .fr .fd select {
  border-bottom: 2px solid #fff;
  border-radius: 0;
  border-top: unset;
  border-right: unset;
  border-left: unset;
  background-color: transparent;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.form-container .fr .fd input.wpcf7-not-valid, .form-container .fr .fd textarea.wpcf7-not-valid, .form-container .fr .fd select.wpcf7-not-valid {
  border-bottom: 2px solid #FF4B00;
}
.form-container .fr .wpcf7-not-valid-tip {
  color: #FF4B00;
  font-size: 12px;
}

/* ====================
▲▲ contact ▲▲
==================== */
/* ====================
▼▼ 404 error▼▼
==================== */
.error404-ttl-box {
  padding: clamp(90px, 8.3333333333vw, 180px) 0;
}
.error404-ttl-box .error404-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0 8px;
  text-align: center;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}
.error404-ttl-box .error404-ttl .large {
  font-size: clamp(96px, 8.8888888889vw, 192px);
}
.error404-ttl-box .error404-ttl .small {
  font-size: clamp(18px, 1.6666666667vw, 36px);
}

.error404-description {
  display: flex;
  justify-content: center;
  font-size: clamp(12px, 1.1111111111vw, 24px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  padding-bottom: clamp(90px, 8.3333333333vw, 180px);
}

/* ====================
▲▲ 404 error▲▲
==================== */