@charset "UTF-8";
/**
 * @mixin fontSizeVwMin
 * フォントサイズをビューポート幅に基づいて最小値で設定するミックスイン
 * 
 * @param {Number} $fontSize - 基本フォントサイズ
 * @param {Number} $viewport - ビューポート幅
 */
/* ========================================
  Breakpoint Variables
  Note: These breakpoints are refered from Bootstrap.
  https://getbootstrap.com/docs/5.0/layout/breakpoints/
  ex: $breakpoints
======================================== */
/*! ファイル名を定義する（！を忘れない）
buildOutputFile: 'works-detail';
*/
/* ------------------------------------------- SASS Information
 Name:      _reset.scss
----------------------------------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

html {
  box-sizing: border-box;
}

*, *:after, *:before {
  box-sizing: inherit;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
  all: unset;
  display: revert;
  cursor: revert;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  font-weight: normal;
}

img {
  border-style: none;
  vertical-align: bottom;
}

img, video {
  max-width: 100%;
  height: auto;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

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

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

input::-webkit-search-decoration {
  display: none;
}
input:focus {
  outline-offset: -2px;
}

select::-ms-expand {
  display: none;
}
select::-webkit-search-decoration {
  display: none;
}
select:focus {
  outline-offset: -2px;
}

button {
  background-color: transparent;
}

textarea {
  resize: none;
}
textarea::-webkit-search-decoration {
  display: none;
}
textarea:focus {
  outline-offset: -2px;
}

input, select, button, textarea {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("/assets/fonts/ZenKakuGothicNew-Regular.woff") format("woff"), url("/assets/fonts/ZenKakuGothicNew-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("/assets/fonts/ZenKakuGothicNew-Medium.woff") format("woff"), url("/assets/fonts/ZenKakuGothicNew-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: Medium;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-Regular.woff2") format("woff2"), url("/assets/fonts/Inter_18pt-Regular.woff") format("woff");
  font-weight: 400;
  font-style: Regular;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-Medium.woff2") format("woff2"), url("/assets/fonts/Inter_18pt-Medium.woff") format("woff");
  font-weight: 500;
  font-style: Medium;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-SemiBold.woff2") format("woff2"), url("/assets/fonts/Inter_18pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: SemiBold;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter_18pt-Bold.woff2") format("woff2"), url("/assets/fonts/Inter_18pt-Bold.woff") format("woff");
  font-weight: 700;
  font-style: Bold;
  font-display: swap;
}
:root {
  /**
  * Color Schema
  */
  --color-white: #F9F9F9;
  --color-black: rgba(40, 44, 47, 1);
  --color-black-blend: #000000;
  --color-orange: #ff554d;
  --color-navy: #001426;
  --color-gray: #4d4d4d;
  --color-gray-lighter: #64748b;
  --font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", Osaka, "ＭＳ Ｐゴシック", sans-serif;
  --font-family-en: "Inter", sans-serif;
  --font-family-mix: "Inter", "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", Osaka, "ＭＳ Ｐゴシック", sans-serif;
}

html {
  font-family: var(--font-family);
  font-size: 2.5641025641vw;
  /*
  計算式：　10(px) / 375(px) * 100 = 3.125
  画面幅375pxの時に "font-size: 10px" 相当になる
  */
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  background-color: var(--color-white);
  transition: background-color 0.2s ease;
  color: var(--color-black);
}

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

time {
  display: inline-block;
}

button {
  cursor: pointer;
  transition: 0.3s opacity ease;
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

a {
  transition: 0.3s opacity ease;
}

/**
* a11y style
*/
.info-header {
  font-style: Bold;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
}
.info-header::before, .info-header::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.info-header::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.info-header::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}

.info-text, .info-text--published {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  vertical-align: middle;
  text-transform: uppercase;
}
.info-text::before, .info-text--published::before, .info-text::after, .info-text--published::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.info-text::before, .info-text--published::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.info-text::after, .info-text--published::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.info-text a, .info-text--published a {
  text-decoration: underline;
  text-decoration-color: var(--color-black);
  text-decoration-thickness: 1px;
}

.info-text--published {
  margin-top: 2rem;
  text-align: right;
  line-height: 1;
  font-family: var(--font-family-en);
  font-size: 1.2rem;
}

.info-contact-text {
  color: var(--color-black);
  font-weight: 500;
  font-style: Medium;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}
.info-contact-text::before, .info-contact-text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.info-contact-text::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.info-contact-text::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}

.info-contact-link {
  text-align: center;
  padding-top: 3.4rem;
}

.info-contact-link-anchor {
  color: var(--color-black);
  font-family: var(--font-family-mix);
  font-weight: 400;
  font-style: Regular;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: lowercase;
  border-bottom: 1px solid rgba(40, 44, 47, 0.3019607843);
  padding-bottom: 0.5rem;
}

.l-container {
  width: calc(100% - 4.8rem);
  margin: 0 auto;
}

.l-header {
  position: fixed;
  top: 2.5rem;
  left: 1.2rem;
  z-index: 100;
  transition: 0.3s left ease;
  mix-blend-mode: difference;
}
.l-header.is-blend-disabled {
  mix-blend-mode: initial !important;
}
.l-header.is-blend-disabled .l-header__logo-chevron path,
.l-header.is-blend-disabled .l-header__logo-round path {
  fill: var(--color-black) !important;
}
.l-header .l-header__inner {
  display: flex;
  align-items: center;
}
.l-header .l-header__logo-link {
  display: flex;
  align-items: center;
}
.l-header .l-header__logo-chevron {
  width: 1.75rem;
  height: 1.75rem;
  transition: transform 0.3s ease;
}
@keyframes chevronMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-1rem);
  }
  100% {
    transform: translateX(0);
  }
}
.l-header .l-header__logo-round {
  width: 1.75rem;
  height: 1.75rem;
}

.l-header__button {
  position: fixed;
  top: 2rem;
  right: 1.2rem;
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--color-black);
  border-radius: 9999px;
  font-family: var(--font-family-en);
  color: var(--color-black);
  font-weight: 700;
  font-size: 1rem;
  line-height: 0.5;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2.5px);
  cursor: pointer;
}
.l-header__button::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background-color: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin-right: 0.1rem;
}
.l-header__button.is-open::before {
  content: "";
  background-image: url("/assets/images/icon_close.svg");
  background-size: contain;
  background-color: transparent;
}

.l-header__modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.l-header__overlay {
  z-index: -1;
  display: block;
  height: 100%;
  background-color: transparent !important;
}

.l-header__container {
  height: 100%;
  background-color: #fff;
  padding-bottom: 5rem;
}

.l-header__content {
  background-color: #fff;
  padding-top: 7.7rem;
  width: calc(100% - 4.8rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}

.l-header__nav {
  width: 100%;
}

.l-header__nav-list {
  display: flex;
  flex-direction: column;
}

.l-header__nav-item {
  border-bottom: 1px solid rgba(40, 44, 47, 0.3);
}
.l-header__nav-item span {
  margin-bottom: -0.2rem;
}

.l-header__nav-link--contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.l-header__nav-link--contact::before {
  content: "";
  min-width: 1.3rem;
  min-height: 1.3rem;
  background-color: #fff;
  border-radius: 9999px;
  display: block;
}

.l-header__nav-link:not(:root), .l-header__nav-link--contact:not(:root) {
  display: flex;
  padding: 2.4rem 2rem;
  padding-inline: 0;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0%;
  text-transform: uppercase;
  transition: 0.3s all ease;
}

.l-header__nav-link--contact::before {
  background-color: var(--contact-bg, var(--color-black));
}

.l-header__info {
  display: grid;
  gap: 3.8rem;
  width: 100%;
}

.l-header__info-contact {
  display: grid;
  gap: 1.4rem;
}

.l-header__info-title {
  color: var(--color-black);
}

.l-header__info-contact-title {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.l-header__info-contact-title::before, .l-header__info-contact-title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.l-header__info-contact-title::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.l-header__info-contact-title::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}

.l-header__info-contact-text {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0%;
  text-transform: lowercase;
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line, rgba(40, 44, 47, 0.3));
}

.l-header__info-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.l-header__info-address-title {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.l-header__info-address-title::before, .l-header__info-address-title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.l-header__info-address-title::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.l-header__info-address-title::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}

.l-header__info-address-text {
  font-family: var(--font-family-mix);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.l-header__info-address-text::before, .l-header__info-address-text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.l-header__info-address-text::before {
  margin-top: calc((1 - 1.6) * 0.5em);
}
.l-header__info-address-text::after {
  margin-bottom: calc((1 - 1.6) * 0.5em);
}

.l-header__info-address-button:not(:root) {
  padding: 0.6rem 2rem;
  margin-top: -0.5rem;
}

.l-header__info-tel {
  display: grid;
  gap: 1.4rem;
}

.l-header__info-tel-title {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.l-header__info-tel-title::before, .l-header__info-tel-title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.l-header__info-tel-title::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.l-header__info-tel-title::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}

.l-header__info-tel-text {
  font-family: var(--font-family-mix);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.l-footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: calc(100% - 2.4rem);
  margin: 0 auto;
  border-top: 1px solid rgba(40, 44, 47, 0.3);
}
.l-footer .l-footer__inner {
  display: grid;
  gap: 2.4rem;
  width: calc(100% - 2.4rem);
  margin: 0 auto;
  position: relative;
}
.l-footer .l-footer__nav {
  display: none;
}
.l-footer .l-footer__nav-list {
  display: flex;
  gap: 1.4rem;
}
.l-footer .l-footer__nav-link, .l-footer .l-footer__nav-link--deco {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 0.85;
}
.l-footer .l-footer__logo-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.l-footer .l-footer__vox-logo {
  width: 16.4rem;
}
.l-footer .l-footer__home-logo {
  width: 7.7rem;
}
.l-footer .l-footer__info {
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
}
.l-footer .l-footer__address-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.l-footer .l-footer__address-text * {
  font-size: 1.1rem;
  line-height: 1;
  font-family: var(--font-family);
  font-weight: 500;
}
.l-footer .l-footer__address-map {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.65rem 0.4rem;
}
.l-footer .l-footer__address-map-text {
  font-family: var(--font-family-en);
  font-size: 1rem;
  margin-top: -0.2rem;
}
.l-footer .l-footer__address-post {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0%;
}
.l-footer .l-footer__policy-list-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 1.8rem;
}
.l-footer .l-footer__policy-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.8rem;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
}
.l-footer .l-footer__policy-item {
  font-size: 1.1rem;
}
.l-footer .l-footer__policy-link, .l-footer .l-footer__policy-link--deco {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.1rem;
  vertical-align: middle;
  text-transform: capitalize;
  color: var(--color-black);
}
.l-footer .l-footer__policy-link--deco {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}
.l-footer .l-footer__policy-link--deco svg {
  width: 1rem;
  height: 1rem;
  overflow: visible;
}
.l-footer .l-footer__external-list {
  display: flex;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
.l-footer .l-footer__external-link {
  display: flex;
  gap: 0.4rem;
  font-family: var(--font-family-mix);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  text-transform: capitalize;
}
.l-footer .l-footer__external-link svg {
  width: 1rem;
  height: 1rem;
  overflow: visible;
}
.l-footer .l-footer__copyright {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 10000;
}

.modal__container {
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10%);
  }
}
/* 右から左へスライドイン */
@keyframes mmSlideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/* 左から右へスライドアウト */
@keyframes mmSlideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* --- micromodal-slide-right 固有のスタイル --- */
.micromodal-slide-right {
  display: none;
}

.micromodal-slide-right.is-open {
  display: block;
}

/* オーバーレイ（共通のフェードイン） */
.micromodal-slide-right[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* コンテナ（右からのスライドイン） */
.micromodal-slide-right[aria-hidden=false] .modal__container {
  animation: mmSlideInRight 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* オーバーレイ（共通のフェードアウト） */
.micromodal-slide-right[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* コンテナ（右へのスライドアウト） */
.micromodal-slide-right[aria-hidden=true] .modal__container {
  animation: mmSlideOutRight 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* 右側に固定するためのレイアウト修正 */
.micromodal-slide-right .modal__overlay {
  display: flex;
  justify-content: flex-end;
  /* 右端に寄せる */
  align-items: stretch;
  /* 高さをいっぱいに広げる */
}

.micromodal-slide-right .modal__container {
  height: 100vh;
  /* 画面の高さ100% */
  max-width: 350px;
  /* メニューの横幅 */
  border-radius: 0;
  /* 右端に付くため角丸をリセット */
}

.c-text {
  font-weight: 400;
  font-style: Regular;
  font-size: 1.4rem;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  line-height: 180%;
}
.c-text::before, .c-text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-text::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.c-text::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}

.c-modal .c-modal__overlay {
  background: rgba(40, 44, 47, 0.2509803922);
  backdrop-filter: blur(20px);
}
.c-modal .c-modal__player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.c-modal .c-modal__title {
  color: var(--color-black);
  font-family: var(--font-family-mix);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
}
.c-modal .c-modal__title::before, .c-modal .c-modal__title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-modal .c-modal__title::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.c-modal .c-modal__title::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.c-modal .c-modal__container {
  max-width: 480px;
  width: calc(100% - 4rem);
  background-color: #fff;
  padding: 5rem 2rem;
  max-height: 90svh;
}
.c-modal .c-modal__content {
  padding-top: 3.2rem;
  display: grid;
  gap: 6rem;
}
.c-modal .c-modal__footer {
  padding-top: 4rem;
  text-align: center;
}

.c-card, .c-card--sm {
  display: grid;
  gap: 1.4rem;
  width: 100%;
  height: auto;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(1rem);
  transition-delay: calc(0.1s * var(--delay-index, 1));
}
.c-card.is-active, .is-active.c-card--sm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}
.c-card.is-inactive, .is-inactive.c-card--sm {
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
}
.c-card.is-coming-soon, .is-coming-soon.c-card--sm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  cursor: initial;
}
.c-card .c-card__image, .c-card--sm .c-card__image {
  aspect-ratio: 416/234;
  overflow: hidden;
}
.c-card .c-card__image img, .c-card--sm .c-card__image img {
  width: 100%;
  transition: transform 0.3s ease;
}
.c-card .c-card__inner, .c-card--sm .c-card__inner {
  display: grid;
  gap: 1.3rem;
}
.c-card .c-card__inner-content, .c-card--sm .c-card__inner-content {
  display: grid;
  gap: 1rem;
}
.c-card .c-card__credit-list, .c-card--sm .c-card__credit-list {
  display: flex;
  gap: 1.25rem;
}
.c-card .c-card__credit-item, .c-card--sm .c-card__credit-item {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.c-card .c-card__title, .c-card--sm .c-card__title {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--color-black);
}
.c-card .c-card__title::before, .c-card--sm .c-card__title::before, .c-card .c-card__title::after, .c-card--sm .c-card__title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-card .c-card__title::before, .c-card--sm .c-card__title::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.c-card .c-card__title::after, .c-card--sm .c-card__title::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.c-card .c-card__label, .c-card--sm .c-card__label {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--color-black);
}
.c-card .c-card__label::before, .c-card--sm .c-card__label::before, .c-card .c-card__label::after, .c-card--sm .c-card__label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-card .c-card__label::before, .c-card--sm .c-card__label::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.c-card .c-card__label::after, .c-card--sm .c-card__label::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.c-card .c-card__category-list, .c-card--sm .c-card__category-list {
  display: flex;
  gap: 0.5rem;
}

.c-card--sm {
  gap: 0.8rem;
}

.c-button, .c-button--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-black);
  border-radius: 9999px;
  color: var(--color-black);
  font-family: var(--font-family-mix);
  font-size: 1.1rem;
}

.c-button--close {
  padding: 0.85rem 1.85rem;
  font-weight: 700;
  font-size: 1rem;
}
.c-button--close::after {
  content: "";
  background-image: url(/assets/images/icon_close.svg);
  background-size: contain;
  background-color: transparent;
  background-repeat: no-repeat;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.5rem;
}

.c-button--secondary {
  padding: 0.55rem 2rem;
}

.c-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-black);
  border-radius: 9999px;
  color: var(--color-black);
  font-family: var(--font-family-mix);
  transition: 0.3s background-color ease 0.3s color ease;
}
.c-tag .c-tag__text {
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0%;
  color: var(--color-black);
}

.c-heading {
  font-size: 2.4rem;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--color-black);
  padding-left: 2.4rem;
}
.c-heading::before {
  content: "";
  min-width: 1.4rem;
  min-height: 1.4rem;
  background-color: var(--color-black);
  border-radius: 9999px;
  display: block;
}

.c-profile .c-profile__unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.c-profile .c-profile__unit-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-profile .c-profile__button {
  font-weight: 700;
  padding-inline: 1.95rem;
}
.c-profile .c-profile__map {
  aspect-ratio: 342/192;
  max-width: 100%;
}
.c-profile .c-profile__map iframe {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.c-profile .c-profile__body {
  display: grid;
  gap: 3.2rem;
}
.c-profile .c-profile__body__inner {
  display: grid;
  gap: 3.8rem;
}
.c-profile .c-profile__label {
  font-family: var(--font-family-mix);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgba(40, 44, 47, 0.6);
}
.c-profile .c-profile__text, .c-profile .c-profile__text--tel, .c-profile .c-profile__text--mail {
  font-family: var(--font-family-mix);
  font-weight: 500;
  font-style: Medium;
  font-size: 1.5rem;
  line-height: 160%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--color-black);
}
.c-profile .c-profile__text::before, .c-profile .c-profile__text--tel::before, .c-profile .c-profile__text--mail::before, .c-profile .c-profile__text::after, .c-profile .c-profile__text--tel::after, .c-profile .c-profile__text--mail::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-profile .c-profile__text::before, .c-profile .c-profile__text--tel::before, .c-profile .c-profile__text--mail::before {
  margin-top: calc((1 - 1.6) * 0.5em);
}
.c-profile .c-profile__text::after, .c-profile .c-profile__text--tel::after, .c-profile .c-profile__text--mail::after {
  margin-bottom: calc((1 - 1.6) * 0.5em);
}
.c-profile .c-profile__text--mail {
  color: var(--color-black);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.c-profile .c-profile__text--mail::before, .c-profile .c-profile__text--mail::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-profile .c-profile__text--mail::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.c-profile .c-profile__text--mail::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.c-profile .c-profile__text--mail {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line, rgba(40, 44, 47, 0.3));
}
.c-profile .c-profile__text--tel {
  font-size: 1.6rem;
  margin-top: -0.6rem;
}
.c-profile .c-profile__mail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 6rem;
}
.c-profile .c-profile__mail-text {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: lowercase;
}
.c-profile .c-profile__mail-text span {
  border-bottom: 1px solid var(--line, rgba(40, 44, 47, 0.3019607843));
}

.c-about .c-about__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.c-about .c-about-unit {
  display: grid;
  gap: 3.2rem;
  margin-top: 7rem;
}
.c-about .c-about-copy {
  min-width: 30rem;
}
.c-about .c-about-copy svg {
  width: 30rem;
  height: auto;
}
.c-about .c-about-text {
  font-family: var(--font-family-mix);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  vertical-align: middle;
  text-transform: capitalize;
  letter-spacing: -0.042em;
  color: var(--color-black);
}
.c-about .c-about-text::before, .c-about .c-about-text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-about .c-about-text::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.c-about .c-about-text::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.c-about .c-about-text {
  max-width: 35rem;
  aspect-ratio: 342/322;
  /* 改行コードを反映させる */
  word-break: break-all;
  /* 単語の途中でも改行させて、カーソルが離れないようにする */
}
.c-about .about-text {
  aspect-ratio: initial;
}
.c-about {
  /* カーソル */
}
.c-about .c-about-cursor {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  /* 幅を持てるようにしつつインラインに */
  font-weight: bold;
  color: var(--color-black);
  margin-left: 0.2rem;
  /* テキストの高さに合わせる */
  vertical-align: middle;
  width: 4.4rem;
}
.c-about {
  /* 4. ロゴの＞が少しだけ傾いて戻るキーフレーム */
}

.c-link-wrapper {
  text-align: right;
  border-bottom: 1px solid rgba(40, 44, 47, 0.3019607843);
}

.c-link {
  display: inline-flex;
  align-items: center;
}
.c-link .c-link__text {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0%;
  text-align: right;
  text-transform: capitalize;
  padding-right: 1.6rem;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: flex-end;
}
.c-link .c-link__icon {
  width: 4rem;
  height: 4rem;
  transform: translateY(1.5rem);
  transition: 0.4s;
}

.u-display-sp {
  display: block !important;
}

.u-display-pc {
  display: none !important;
}

.page-works-detail .works-detail-main {
  padding-top: 7.7rem;
  padding-bottom: 6rem;
}
.page-works-detail .works-detail-intro-inner {
  display: grid;
  gap: 3rem;
}
.page-works-detail .works-detail-inner {
  display: grid;
  gap: 6rem;
}
.page-works-detail .works-detail-intro-thumbnail {
  position: relative;
}
.page-works-detail .works-detail-intro-thumbnail img {
  width: 100%;
}
.page-works-detail .works-detail-video-wrapper {
  position: relative;
  width: 100%;
  background-color: #000;
  aspect-ratio: 1312/738;
}
.page-works-detail .works-detail-video-iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.page-works-detail .works-detail-video-poster {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: none;
  background-position: 50% 50%;
  background-size: cover;
  text-indent: -999em;
  overflow: hidden;
  opacity: 1;
  transition: opacity 800ms, height 0s;
  transition-delay: 0s, 0s;
}
.page-works-detail .works-detail-video-poster span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8rem;
  height: 6.2rem;
  transform: translate(-50%, -50%);
  border-radius: 4.4rem;
  transition: border-color 300ms;
  border-radius: 4.4rem;
  border: 0.1rem solid var(--color-white);
  background: rgba(0, 0, 0, 0.25);
  transition: background-color 300ms;
}
.page-works-detail .works-detail-video-poster span::before {
  content: "";
  position: absolute;
  top: 51%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 2rem solid var(--color-white);
  border-top: 1.25rem solid transparent;
  border-bottom: 1.25rem solid transparent;
}
.page-works-detail .works-detail-video-poster:hover::before,
.page-works-detail .works-detail-video-poster:focus::before {
  border-color: teal;
}
.page-works-detail .works-detail-video-poster:hover::after,
.page-works-detail .works-detail-video-poster:focus::after {
  border-left-color: teal;
}
.page-works-detail .works-detail-video-wrapper.is-video-active .works-detail-video-poster {
  opacity: 0;
  height: 0;
  transition-delay: 0s, 800ms;
}
.page-works-detail .works-detail-intro-image-img {
  width: 100%;
  height: auto;
}
.page-works-detail .works-detail-youtube-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-works-detail .works-detail-youtube-btn-icon {
  width: 8rem;
  height: auto;
}
.page-works-detail .works-detail-youtube-btn-icon:hover {
  opacity: 0.6;
}
.page-works-detail .works-detail-name-ja {
  font-family: var(--font-family-mix);
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.5;
  vertical-align: middle;
  color: var(--color-black);
}
.page-works-detail .works-detail-name-ja::before, .page-works-detail .works-detail-name-ja::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.page-works-detail .works-detail-name-ja::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.page-works-detail .works-detail-name-ja::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.page-works-detail .works-detail-name--deco {
  letter-spacing: -0.03em;
}
.page-works-detail .works-detail-name-en {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 2rem;
  vertical-align: middle;
  text-transform: capitalize;
  margin-top: 2rem;
  display: inline-block;
}
.page-works-detail .works-detail-heading {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--color-black);
  display: flex;
  align-items: center;
}
.page-works-detail .works-detail-heading::before {
  content: "";
  min-width: 1rem;
  min-height: 1rem;
}
.page-works-detail .works-detail-link-inner {
  display: grid;
  gap: 2rem;
}
.page-works-detail .works-detail-credit-inner {
  display: grid;
  gap: 2rem;
}
.page-works-detail .works-detail-service-inner {
  display: grid;
  gap: 2rem;
}
.page-works-detail .works-detail-service-list {
  display: flex;
  gap: 0.8rem;
}
.page-works-detail .works-detail-service-link {
  display: flex;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-black);
  border-radius: 9999px;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: var(--color-black);
}
.page-works-detail .works-detail-service-link span {
  margin-bottom: -0.1rem;
}
.page-works-detail .works-detail-link-anchor {
  display: flex;
  align-items: center;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  text-transform: capitalize;
  color: var(--color-black);
}
.page-works-detail .works-detail-link-anchor::after {
  content: "";
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMC41IDAuNUwwLjUgMTAuNUgxMC41IiBzdHJva2U9IiMyODJDMkYiLz48cGF0aCBkPSJNMTAuNSA2TDEwLjUgMC41SDUiIHN0cm9rZT0iIzI4MkMyRiIvPjxwYXRoIGQ9Ik0xMC41IDAuNUw0IDciIHN0cm9rZT0iIzI4MkMyRiIvPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.8rem;
}
.page-works-detail .works-detail-credit-label-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-works-detail .works-detail-credit-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-works-detail .works-detail-credit-label {
  color: rgba(40, 44, 47, 0.6);
  font-family: var(--font-family-en);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
}
.page-works-detail .works-detail-credit-label::before, .page-works-detail .works-detail-credit-label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.page-works-detail .works-detail-credit-label::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.page-works-detail .works-detail-credit-label::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.page-works-detail .works-detail-credit-link {
  display: grid;
  gap: 1.2rem;
}
.page-works-detail .works-detail-credit-name {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--color-black);
}
.page-works-detail .works-detail-credit-name::before, .page-works-detail .works-detail-credit-name::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.page-works-detail .works-detail-credit-name::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.page-works-detail .works-detail-credit-name::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.page-works-detail .works-detail-credit-role {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 180%;
  vertical-align: middle;
  text-transform: capitalize;
}
.page-works-detail .works-detail-credit-role::before, .page-works-detail .works-detail-credit-role::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.page-works-detail .works-detail-credit-role::before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.page-works-detail .works-detail-credit-role::after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.page-works-detail .works-detail-credit-role {
  color: rgba(40, 44, 47, 0.6);
}
.page-works-detail .works-detail-link-list {
  display: flex;
  gap: 1.2rem;
}
.page-works-detail .works-detail-image-list {
  display: grid;
  gap: 1.4rem;
}
.page-works-detail .works-detail-gallery-inner {
  display: grid;
  gap: 1.4rem;
}
.page-works-detail .works-detail-gallery-row {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.page-works-detail .works-detail-gallery-item {
  text-align: center;
}
.page-works-detail .works-detail-gallery-item img,
.page-works-detail .works-detail-gallery-item video {
  width: 100%;
  /* コンテナを超えない */
  height: auto;
}
.page-works-detail .works-detail-other-inner {
  display: grid;
  gap: 3rem;
}
.page-works-detail .works-detail-other-list {
  display: grid;
  gap: 3.2rem;
}
.page-works-detail .works-detail-other-card {
  opacity: 1;
  visibility: visible;
  transform: initial;
}
@media (min-width: 769px){
  html {
    font-size: 0.6944444444vw;
  }
  .info-text, .info-text--published {
    font-size: 1.6rem;
  }
  .info-text--published {
    font-size: 1.4rem;
  }
  .info-contact-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .info-contact-text::before, .info-contact-text::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .info-contact-text::before {
    margin-top: calc((1 - 1.5) * 0.5em);
  }
  .info-contact-text::after {
    margin-bottom: calc((1 - 1.5) * 0.5em);
  }
  .info-contact-link-anchor {
    font-size: 3rem;
  }
  .l-container {
    width: calc(100% - 12.8rem);
  }
  .l-header {
    top: 5.1rem;
    left: 4.3rem;
  }
  .l-header .l-header__logo-link {
    gap: 0.3rem;
  }
  .l-header .l-header__logo-chevron {
    width: 2rem;
    height: 2rem;
  }
  .l-header .l-header__logo-round {
    width: 1.8rem;
    height: 1.8rem;
  }
  .l-header__button {
    display: none;
  }
  .l-header__modal {
    top: 2.4rem;
    right: 3.8rem;
    left: initial;
    display: block;
    height: auto;
    color: var(--color-black);
    padding: 1rem 2.2rem;
    background-color: var(--color-white);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(0.25rem);
    border-radius: 9999px;
    box-shadow: rgba(30, 30, 30, 0.075) 0px 0px 1.5rem;
  }
  .l-header__overlay {
    position: relative;
    z-index: 1;
    animation: initial !important;
    background-color: transparent;
  }
  .l-header__container {
    background-color: transparent;
    animation: initial !important;
    padding-bottom: 0;
  }
  .l-header__content {
    background-color: transparent;
    width: 100%;
    padding: 0;
  }
  .l-header__nav-list {
    flex-direction: row;
    align-items: center;
  }
  .l-header__nav-item {
    border-bottom: none;
  }
  .l-header__nav-item.is-active a {
    opacity: 0.6;
  }
  .l-header__nav-link:not(:root), .l-header__nav-link--contact:not(:root) {
    padding: 1rem 1.4rem;
    font-size: 1.4rem;
  }
  .l-header__info {
    display: none;
  }
  .l-footer {
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .l-footer .l-footer__inner {
    width: calc(100% - 12.8rem);
    gap: 3.4rem;
  }
  .l-footer .l-footer__nav {
    display: block;
  }
  .l-footer .l-footer__logo-area {
    justify-content: flex-start;
    gap: 3.2rem;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .l-footer .l-footer__vox-logo {
    width: 25.6rem;
  }
  .l-footer .l-footer__home-logo {
    width: 12rem;
  }
  .l-footer .l-footer__info {
    row-gap: 1.6rem;
  }
  .l-footer .l-footer__address-text * {
    font-size: 1.3rem;
  }
  .l-footer .l-footer__address-map-text {
    font-size: 1rem;
  }
  .l-footer .l-footer__address-map-icon {
    width: 1rem;
  }
  .l-footer .l-footer__address-post {
    font-size: 1.3rem;
  }
  .l-footer .l-footer__policy-list-wrapper {
    flex-direction: row;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
  .l-footer .l-footer__policy-list {
    flex-direction: row;
  }
  .l-footer .l-footer__policy-item {
    color: var(--color-black);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
  }
  .l-footer .l-footer__policy-link, .l-footer .l-footer__policy-link--deco {
    font-size: 1.3rem;
  }
  .l-footer .l-footer__external-link {
    font-size: 1.2rem;
  }
  .l-footer .l-footer__copyright {
    font-size: 1.3rem;
  }
  .c-modal .c-modal__title {
    font-size: 2.4rem;
  }
  .c-modal .c-modal__container {
    max-width: 90rem;
    padding: 6rem 9rem;
    margin-top: 0;
  }
  .c-modal .c-modal__content {
    padding-top: 3rem;
    gap: 4rem;
  }
  .c-card, .c-card--sm {
    gap: 1.4rem;
  }
  .c-card .c-card__inner, .c-card--sm .c-card__inner {
    gap: 1.4rem;
  }
  .c-card .c-card__credit-item, .c-card--sm .c-card__credit-item {
    font-size: 1.5rem;
  }
  .c-card .c-card__title, .c-card--sm .c-card__title {
    font-size: 1.8rem;
  }
  .c-card .c-card__label, .c-card--sm .c-card__label {
    font-size: 1.4rem;
  }
  .c-button, .c-button--secondary {
    font-size: 1.2rem;
  }
  .c-button--close {
    font-size: 1.4rem;
  }
  .c-button--close::after {
    width: 1rem;
    height: 1rem;
  }
  .c-tag .c-tag__text {
    font-size: 1.2em;
  }
  .c-heading {
    padding-left: 6.8rem;
    font-size: 2.4rem;
  }
  .c-profile .c-profile__unit {
    gap: 1.4rem;
  }
  .c-profile .c-profile__unit-inner {
    flex-direction: row;
    align-items: center;
  }
  .c-profile .c-profile__button {
    font-size: 1rem;
  }
  .c-profile .c-profile__map {
    min-width: 64rem;
    aspect-ratio: 656/370;
  }
  .c-profile .c-profile__body {
    display: flex;
    gap: 10.9rem;
  }
  .c-profile .c-profile__body > * {
    flex: 1;
  }
  .c-profile .c-profile__unit[data-name=map] {
    grid-column: 1/1;
    grid-row: 1/3;
  }
  .c-profile .c-profile__unit[data-name=company] {
    grid-column: 2/2;
    grid-row: 1/1;
  }
  .c-profile .c-profile__unit[data-name=mail] {
    grid-column: 2/2;
    grid-row: 1/2;
  }
  .c-profile .c-profile__label {
    font-family: var(--font-family-mix);
    font-weight: 400;
    font-style: Regular;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
  }
  .c-profile .c-profile__text, .c-profile .c-profile__text--tel, .c-profile .c-profile__text--mail {
    font-family: var(--font-family-mix);
    font-weight: 500;
    font-style: Medium;
    font-size: 1.7rem;
    line-height: 1.8;
    letter-spacing: 0%;
    vertical-align: middle;
  }
  .c-profile .c-profile__text::before, .c-profile .c-profile__text--tel::before, .c-profile .c-profile__text--mail::before, .c-profile .c-profile__text::after, .c-profile .c-profile__text--tel::after, .c-profile .c-profile__text--mail::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
  }
  .c-profile .c-profile__text::before, .c-profile .c-profile__text--tel::before, .c-profile .c-profile__text--mail::before {
    margin-top: calc((1 - 1.8) * 0.5em);
  }
  .c-profile .c-profile__text::after, .c-profile .c-profile__text--tel::after, .c-profile .c-profile__text--mail::after {
    margin-bottom: calc((1 - 1.8) * 0.5em);
  }
  .c-profile .c-profile__text--mail {
    font-size: 3.8rem;
  }
  .c-profile .c-profile__text--tel {
    margin-top: 0;
    font-size: 1.6rem;
  }
  .c-profile .c-profile__mail {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 0;
  }
  .c-profile .c-profile__mail > * {
    flex: 1;
  }
  .c-about .c-about__inner {
    align-items: flex-start;
    gap: 6rem;
  }
  .c-about .c-about-unit {
    display: flex;
    justify-content: center;
    gap: 10rem;
    width: calc(100% - 36.4rem);
    margin-inline: auto;
  }
  .c-about .c-about-copy {
    min-width: 37.5rem;
  }
  .c-about .c-about-copy svg {
    width: 100%;
    height: 100%;
  }
  .c-about .c-about-text {
    min-width: 49.6rem;
    font-size: 1.6rem;
    line-height: 1.8;
    vertical-align: middle;
    text-transform: capitalize;
    aspect-ratio: 496/251;
    margin-top: 0;
  }
  .c-about .c-aboutle {
    display: flex;
    align-items: flex-start;
  }
  .c-about .c-aboutle > * {
    flex: 1;
  }
  .c-link .c-link__text {
    padding: 2rem 0;
    padding-right: 2.1rem;
  }
  .c-link .c-link__icon {
    width: 4.8rem;
    height: 4.8rem;
  }
  .u-display-sp {
    display: none !important;
  }
  .u-display-pc {
    display: block !important;
  }
  .page-works-detail .works-detail-main {
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
  .page-works-detail .works-detail-inner {
    gap: 9rem;
  }
  .page-works-detail .works-detail-video-poster span {
    width: 11rem;
    height: 8.6rem;
  }
  .page-works-detail .works-detail-video-poster span::before {
    top: 50%;
    left: 53%;
    border-left: 2.5rem solid var(--color-white);
    border-top: 1.5rem solid transparent;
    border-bottom: 1.5rem solid transparent;
  }
  .page-works-detail .works-detail-youtube-btn-icon {
    width: 11rem;
  }
  .page-works-detail .works-detail-name-ja {
    font-size: 3.8rem;
    gap: 2.4rem;
  }
  .page-works-detail .works-detail-name--deco {
    letter-spacing: initial;
  }
  .page-works-detail .works-detail-heading {
    font-size: 1.8rem;
  }
  .page-works-detail .works-detail-heading::before {
    content: "";
    min-width: 1.4rem;
    min-height: 1.4rem;
  }
  .page-works-detail .works-detail-link-inner {
    display: flex;
    gap: 0;
  }
  .page-works-detail .works-detail-link-inner > * {
    flex: 1;
  }
  .page-works-detail .works-detail-credit-inner {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }
  .page-works-detail .works-detail-credit-inner > * {
    flex: 1;
  }
  .page-works-detail .works-detail-service-inner {
    display: flex;
    gap: 0;
  }
  .page-works-detail .works-detail-service-inner > * {
    flex: 1;
  }
  .page-works-detail .works-detail-service-list {
    gap: 1rem;
  }
  .page-works-detail .works-detail-service-link {
    font-size: 1.2rem;
  }
  .page-works-detail .works-detail-link-anchor {
    font-size: 1.6rem;
  }
  .page-works-detail .works-detail-credit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }
  .page-works-detail .works-detail-credit-label {
    font-size: 1.2rem;
  }
  .page-works-detail .works-detail-credit-link {
    gap: 1.4rem;
  }
  .page-works-detail .works-detail-credit-name {
    font-size: 1.8rem;
  }
  .page-works-detail .works-detail-credit-role {
    font-size: 1.2rem;
  }
  .page-works-detail .works-detail-link-list {
    gap: 3rem;
  }
  .page-works-detail .works-detail-image-list {
    gap: 3.2rem;
  }
  .page-works-detail .works-detail-gallery-inner {
    gap: 3.2rem;
  }
  .page-works-detail .works-detail-gallery-row {
    display: grid;
    gap: 3.2rem;
  }
  .page-works-detail .works-detail-gallery-item img.is-vertical {
    width: 56rem;
  }
  .page-works-detail .works-detail-other-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 769px) and (any-hover: hover){
  .l-header__nav-item:hover .l-header__nav-link, .l-header__nav-item:hover .l-header__nav-link--contact {
    opacity: 1;
  }
  .l-header__nav-link:not(:root):hover, .l-header__nav-link--contact:not(:root):hover {
    opacity: 0.5;
  }
}
@media (any-hover: hover){
  button:hover {
    opacity: 0.5;
  }
  a:hover {
    opacity: 0.5;
  }
  .l-footer .l-footer__nav-link:hover, .l-footer .l-footer__nav-link--deco:hover {
    opacity: 0.6;
  }
  .l-footer .l-footer__policy-link:hover, .l-footer .l-footer__policy-link--deco:hover {
    opacity: 0.6;
  }
  .l-footer .l-footer__external-link:hover {
    opacity: 0.6;
  }
  .c-card.is-coming-soon:hover .c-card__image img, .is-coming-soon.c-card--sm:hover .c-card__image img {
    transform: scale(1);
  }
  .c-card .c-card__image img:hover, .c-card--sm .c-card__image img:hover {
    transform: scale(1.03);
  }
  .c-card .c-card__category-item:hover, .c-card--sm .c-card__category-item:hover {
    opacity: 1;
  }
  .c-tag:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    opacity: 1;
  }
  .c-link:hover .c-link__icon {
    transform: translateY(2.25rem);
  }
  .page-works-detail .works-detail-video-poster:hover span, .page-works-detail .works-detail-video-poster:focus span {
    background: rgba(0, 0, 0, 0.15);
  }
  .page-works-detail .works-detail-service-item:hover {
    opacity: 0.6;
  }
  .page-works-detail .works-detail-link-anchor:hover {
    opacity: 0.6;
  }
}
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after,
  *::backdrop {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}