html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--white);
  font-family: var(--font-ja);
  background-color: var(--black);
}

::selection {
  background: #b0894e79;
}

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

:root {
  /*カラー*/
  --white: #fffef7;
  --black: #0b0b0b;
  --gold: #b0884e;
  --gray: #999999;
  --dark-gray: #6c6c6c;
  /*スペース*/
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  /* フォント */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", sans-serif;
  --font-accent: "ab-tegami", sans-serif;
}

a {
  color: var(--white);
  text-decoration: none;
}

.en {
  font-family: var(--font-en);
}

.font-serif {
  font-family: var(--font-serif);
}

.color-gold {
  color: var(--gold);
}

.color-black {
  color: var(--black);
}

.color-white {
  color: var(--white);
}

.color-gray {
  color: var(--gray);
}

.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

.section {
  padding: 48px 0;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

.section__content {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.section__header {
  width: 100%;
}

.section-title {
  margin-bottom: var(--space-3);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-title__body {
  white-space: nowrap;
}

.section-title__label {
  color: var(--gold);
  margin-bottom: var(--space-2);
  letter-spacing: 2px;
  font-family: var(--font-serif);
  font-weight: 700;
  white-space: nowrap;
}

.section-title__ja {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: clamp(14px, 4.5vw, 32px);
  letter-spacing: 0.025em;
  text-align: center;
  white-space: nowrap;
}

.section-title__en {
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-align: center;
  font-size: clamp(14px, 4.5vw, 32px);
}

.section__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heading-m {
  font-size: clamp(18px, 5vw, 32px);
  font-family: var(--font-ja);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
  line-height: 1.5;
}

.heading-s {
  font-size: clamp(14px, 3vw, 16px);
  font-family: var(--font-ja);
  letter-spacing: 0.05px;
  line-height: 1.5;
}

/* =========================
   ローディング画面
========================= */
.loading {
  height: 100vh;
  background-color: #000000;
  position: fixed;
  z-index: 10000;
  inset: 0;
  overflow: hidden;
}

.loading.is-hidden {
  animation: loadingExit 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes loadingExit {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.loading__wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading__logo {
  width: 50%;
  max-width: 400px;
  margin-bottom: var(--space-3);
  position: relative;
  clip-path: inset(0 100% 0 0);
}

.loading__logo.is-visible {
  animation: logoReveal 0.5s ease-in-out forwards;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.loading__logo-line {
  width: 50%;
  max-width: 320px;
  height: 6px;
  opacity: 0;
  transform: scaleX(0) rotate(2deg);
  transform-origin: left center;
}

.loading__logo-line.is-visible {
  animation: logoLineReveal 0.3s ease-out forwards;
}

@keyframes logoLineReveal {
  from {
    opacity: 0;
    transform: scaleX(0) rotate(0deg);
  }

  to {
    opacity: 1;
    transform: scaleX(1) rotate(-4deg);
  }
}

/*グリッチテキスト*/

.glitch-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.glitch {
  position: relative;
  font-size: clamp(48px, 5vw, 92px);
  font-weight: bold;
  color: #ffe5b0;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.25;
  z-index: 1;
  margin-bottom: var(--space-4);
  transform: translateX(-100%);
  animation: glitchSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  mix-blend-mode: difference;

}

.glitch:before,
.glitch:after {
  display: block;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.glitch:before {
  animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #563600;
  z-index: -1;
}

.glitch:after {
  animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #ffcf00;
  z-index: -2;
}


@keyframes glitchSlideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glitch-it {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  to {
    transform: translate(0);
  }
}


/* =========================
   ヘッダー
========================= */

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header__inner {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  height: 80px;
  background: transparent;
  backdrop-filter: blur(4px);
}

.header__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__sub-title {
  display: inline;
  font-size: clamp(12px, 2vw, 14px);
}

.header__logo {
  width: 60px;
}

.header .common__logo {
  margin-bottom: 0;
}

/* =========================
   ハンバーガー
========================= */

.header__hamburger {
  position: fixed;
  right: 18px;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ×変形 */
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   ナビ（SPスライド）
========================= */
.common__logo {
  width: clamp(140px, 20vw, 240px);
  margin-bottom: var(--space-3);
}

.header-sp__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  transform: translateX(100%);
  transition: 0.3s ease;
  padding: 80px 20px;
  z-index: 1000;
}

.header-sp__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/sp_menu.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.header-sp__sns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
}

.header-sp__sns i {
  font-size: 1.5rem;
}

.header-sp__nav.is-open {
  transform: translateX(0);
}

/* メニュー */
.header-sp__menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.header-sp__menu a {
  font-weight: bold;
}

.header-sp__menu img {
  position: absolute;
  max-width: clamp(140px, 20vw, 240px);
  top: 27px;
  left: 24px;
}

.header-sp__reserve {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.header-sp__reserve li {
  background-color: var(--gray);
  border-radius: 8px;
  margin: 8px 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header-sp__reserve li a {
  display: block;
  padding: 4px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-sp__reserve li:hover {
  background-color: var(--light_gray);
}

.header-sp__reserve li:hover a {
  color: var(--gray);
}

main {
  position: relative;
}

/* =========================
   mv
========================= */

.mv {
  position: relative;
}

.mv__img img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
}

.mv__img::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' fill='%23000000' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 70px 70px;
  animation: noiseMove 0.5s steps(2) infinite;
}

@keyframes noiseMove {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 15px -10px;
  }

  50% {
    background-position: -10px 8px;
  }

  75% {
    background-position: 8px 15px;
  }

  100% {
    background-position: 0 0;
  }
}

.mv__img::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(110deg, rgb(0 0 0) 0%, rgba(244, 226, 187, 0.35) 45%, rgba(112, 84, 45, 0.15) 100%);

  background-size: 200% 100%;
  background-position: 0% 0;

  animation: mvGradientMove 10s ease-in-out infinite;

  pointer-events: none;
}


@keyframes mvGradientMove {

  0% {
    background-position: 0% 0;
  }

  50% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0% 0;
  }

}

.mv__text {
  position: absolute;
  top: 45%;
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
}

.mv__text h2 {
  font-weight: bold;
}

.mv__text-medium-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-3);
}

.mv__text-medium {
  overflow-wrap: break-word;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.mv__text-medium--accent {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}

.mv__text_small-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mv__text_small {
  font-size: clamp(14px, 3vw, 16px);
  letter-spacing: 0.05em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  color: var(--gold);
}

.mv__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.mv__maintitle {
  font-size: clamp(38px, 10vw, 70px);
  font-weight: bold;
  margin-bottom: var(--space-3);
  text-align: left;
}

.mv__title-logo {
  width: clamp(200px, 40vw, 400px);
  margin-bottom: var(--space-4);
}

.scroll {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translate(-50%);
  letter-spacing: 0.05em;
}

.scroll::before {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .2);
  transform: translateX(-50%);
}

.scroll::after {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 1px;
  height: 20px;
  background: var(--white);
  transform: translateX(-50%) translateY(0);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(40px);
    opacity: 0;
  }
}


/* =========================
   about
========================= */

.about__band {
  width: 100%;
  height: 26px;
  background-size: cover;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6)),
    url("../img/flame_top_2.png");
  background-repeat: no-repeat;
  background-position: center;
}

.about__band {
  width: 100%;
  height: 26px;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6)),
    url("../img/flame_top_2.png");

  background-repeat: repeat-x;
  background-size: auto 26px;

  animation: bandMove 60s linear infinite;
}

@keyframes bandMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -1000px 0;
  }
}

.about__band--bottom {
  animation: bandMove-right 60s linear infinite;
}

@keyframes bandMove-right {
  from {
    background-position: -1000px 0;
  }

  to {
    background-position: 0 0;
  }
}


.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg_about.jpg");
  background:
    linear-gradient(rgb(0 0 0 / 64%), rgb(0 0 0 / 96%)), url(../img/bg_about.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}

.about::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(110deg,
      rgb(0 0 0 / 65%) 0%,
      rgb(0 0 0 / 35%) 45%,
      rgb(0 0 0 / 90%) 100%);

  background-size: 200% 100%;
  background-position: 0% 0;

  animation: aboutGradientMove 12s ease-in-out infinite;

  z-index: -1;
}


/* グラデーションだけゆっくり動かす */
@keyframes aboutGradientMove {

  0% {
    background-position: 0% 0;
  }

  50% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0% 0;
  }

}

.about__title {
  text-align: center;
}

.about__catch-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  gap: 5%;
  margin: 24px 12px;
}

.about__catch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 var(--space-1) 0;
  text-align: center;
  font-size: clamp(18px, 4vw, 48px);
  font-weight: 200;
  gap: 3px;
}

.about__catch:nth-of-type(2) {
  margin-left: auto;
}


.about__catch-accent {
  position: relative;

  display: inline-block;
  white-space: nowrap;

  font-size: clamp(22px, 14vw, 70px);
  font-family: var(--font-accent);

  letter-spacing: -5px;

  background: linear-gradient(90deg,
      #F4E2BB 0%,
      #70542D 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-left: -4%;
  margin-right: 8px;

  /* アニメーション開始前 */
  opacity: 0;
  transform: translateY(10px);

  animation: catchTextIn 0.7s ease forwards;
}


.about__catch-accent::after {
  content: "";

  position: absolute;
  display: block;

  width: 100%;
  height: 2px;

  left: 0;
  bottom: -2px;

  background-image: url("../img/line_gold.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 100%;

  opacity: 1;

  transform: scaleX(0);
  transform-origin: left center;
}


/* 線を表示 */
.about__catch-accent.is-line-visible::after {
  transform: scaleX(1);
  transition: transform 0.8s ease;
}


/* =================================
   通常文字の一文字アニメーション
================================= */

.about__catch-char {
  display: inline-block;

  opacity: 0;
  transform: translateY(10px);

  animation: catchTextIn 0.6s ease forwards;
}


/* =================================
   文字アニメーション
================================= */

@keyframes catchTextIn {

  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =================================
   ABOUT TEXT
================================= */

.about__text {
  text-align: center;
  margin-bottom: var(--space-2);
  line-height: 1.5;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

/* =================================
   アニメーション
================================= */

@keyframes catchTextIn {

  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* =========================
   service
========================= */

.service {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  z-index: 0;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: noiseMove 0.5s steps(2) infinite;
}

@keyframes noiseMove {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 15px -10px;
  }

  50% {
    background-position: -10px 8px;
  }

  75% {
    background-position: 8px 15px;
  }

  100% {
    background-position: 0 0;
  }
}


.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      #70542d 15%,
      #b0884e 35%,
      #f4e2bb 50%,
      #b0884e 65%,
      #70542d 85%,
      transparent) bottom / 100% 1px no-repeat;
  pointer-events: none;
}

.service__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service__item li {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service__item li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* カードが小さくなりすぎる幅で1列 */
@media (max-width: 500px) {
  .service__item {
    grid-template-columns: 1fr;
  }
}

.service__item-list {
  width: 100%;
}

.service--accent {
  color: #b0884e17;
  display: block;
  font-size: clamp(5rem, 10vw, 20rem);
  margin-top: -10%;
  z-index: -1;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

/* =========================
   CARD
========================= */

.card {
  width: 100%;
  aspect-ratio: 4 / 3;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background-color: #333;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.card01 {
  background-image: linear-gradient(#171717ae,
      rgba(23, 23, 23, 0.7)),
    url(../img/planing.jpeg);
  background-position: bottom;
}

.card02 {
  background-image: linear-gradient(#171717ae,
      rgba(23, 23, 23, 0.7)),
    url(../img/video_production.jpeg);
  background-position: center;
}

.card03 {
  background-image: linear-gradient(#171717ae,
      rgba(23, 23, 23, 0.83)),
    url(../img/casting.jpg);
  background-position: bottom;

}

.card04 {
  background-image: linear-gradient(#171717cf,
      rgb(23 23 23 / 62%)), url(../img/digitalcontentproduction.jpeg);
}

.card05 {
  background-image: linear-gradient(#171717ae,
      rgba(23, 23, 23, 0.7)),
    url(../img/cmandpvproduction.jpeg);
}

.card__description {
  padding: clamp(8px, 1vw, 16px);
  margin-top: -10%
}

.card .num {
  margin: 4px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}

.card__description {
  padding: clamp(8px, 1vw, 16px);
}

.card__name-ja {
  margin: 0 0 clamp(2px, 0.5vw, 6px);
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.3;
  text-align: center;
}

.card__name-en {
  color: var(--gold);
  margin: 0;
  font-size: clamp(9px, 1.1vw, 14px);
  font-family: var(--font-serif);
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;

}

.card__text {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: clamp(8px, 1vw, 16px);
  background: linear-gradient(90deg, #363532 0%, #262626 100%);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  text-align: left;
}

.card__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20%;
  height: 1px;
  background-color: var(--gold);
}

.card__text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ff950051;
}

/* =========================
   news
========================= */
.news {
  position: relative;
  background-color: #0b0b0b;
  overflow: hidden;
}

.news::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 8%) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.news::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      #70542d 15%,
      #b0884e 35%,
      #f4e2bb 50%,
      #b0884e 65%,
      #70542d 85%,
      transparent) bottom / 100% 1px no-repeat;
  pointer-events: none;
}

.news>* {
  position: relative;
  z-index: 1;
}

.news-list {
  color: var(--black);
  margin-bottom: var(--space-4);
}

.news-list a {
  color: var(--black);
}

.news-list__item a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: var(--space-2) 0;
}

.news-list__item a::after {
  content: "";
  width: 90%;
  height: 1px;
  margin-top: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.news-list__item a:hover::after {
  transform: scaleX(1);
}

.news__date {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--white);
}

.news__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news__date {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--gray);
}

.news__category {
  font-size: 12px;
  color: #b0884e;
  letter-spacing: 0.1em;
  display: flex;
  gap: 4px;
}

.news__category::before {
  content: "[";
}

.news__category::after {
  content: "]";
}

.news__title {
  font-size: clamp(14px, 3vw, 18px);
  color: var(--white);
  line-height: 1.7;
}

/* ==========================
   Link
========================== */

.link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.link span {
  font-family: var(--font-serif);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.link .text {
  color: var(--white);
}

/* ==========================
   Arrow
========================== */

.arrow {
  position: relative;
  display: block;

  width: 24px;
  height: 1px;

  background-color: currentColor;

  transition: transform 0.3s ease;
}

.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 8px;
  height: 1px;

  background-color: currentColor;

  transform: rotate(45deg);
  transform-origin: right center;
}

/* 長い矢印 */
.arrow--long {
  width: 40px;
}

.arrow--long::after {
  width: 10px;
}

/* ==========================
   Hover
========================== */

.link:hover {
  color: var(--gold);
}

.link:hover .arrow {
  transform: translateX(6px);
}

.contact-form__button:hover .arrow {
  transform: translateX(6px);
}

/* =========================
   cta
========================= */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg_contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  opacity: 0.25;
  z-index: -1;

  animation: ctaLightRotate 20s ease-in-out infinite alternate;
}

@keyframes ctaLightRotate {
  0% {
    transform: rotate(-3deg) scale(1.15);
  }

  100% {
    transform: rotate(3deg) scale(1.15);
  }
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      #70542d 15%,
      #b0884e 35%,
      #f4e2bb 50%,
      #b0884e 65%,
      #70542d 85%,
      transparent) bottom / 100% 1px no-repeat;
  pointer-events: none;
}

.cta__inner {
  display: grid;
  align-items: center;
  justify-content: space-between;
  gap: 4%;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
}

.cta__inner::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: var(--gold);
}

.cta .section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: var(--space-3);
}

.cta .contact {
  width: 100%;
}

.cta__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 10% 0;
}

.cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: clamp(40px, 3vw, 100px);
  height: clamp(40px, 3vw, 100px);
  padding: 30px;
  margin-bottom: var(--space-1);
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}

.cta__icon i {
  font-size: clamp(25px, 2vw, 30px);
  background: linear-gradient(90deg,
      #F4E2BB,
      #70542D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease;
}

.cta .arrow--long {
  color: var(--gold);
  transition:
    color 0.2s ease,
    transform 0.3s ease;
  margin-left: auto;
}

/* =========================
   マウスホバー
========================= */

.cta__container:hover .arrow--long {
  color: #b0894e69;
  transform: translateX(10px);
}

.cta__container:hover .cta__icon {
  background-color: rgba(244, 226, 187, 0.08);
  border-color: #F4E2BB;
  transform: scale(1.06);
}

.cta__container:hover .cta__icon i {
  transform: scale(1.03);
}

/* =========================
   contact
========================= */

.contect__big__text {
  font-size: clamp(16px, 5vw, 32px);
  font-weight: bold;
  letter-spacing: 0.015em;
  margin-bottom: var(--space-1);
}

.contact .section__body .heading-s {
  margin-bottom: var(--space-2);
}


/* =========================
   footer
  ========================= */

.footer {
  text-align: center;
  font-size: clamp(12px, 3vw, 16px);
  margin-bottom: var(--space-2);
}

.footer .wrapper {
  opacity: 1;
}

.footer .section__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-2);
}

.footer__access {
  margin-bottom: var(--space-2);
}

.footer_link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: var(--space-3);
}

.footer__menu {
  font-size: 12px;
  font-weight: normal;
  border-left: 1px solid var(--gold);
  padding-left: 4px;
  margin-top: 8px;
}

.footer__menu li {
  margin-bottom: 4px;
}

.footer__sns {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: var(--space-2);
  margin-bottom: 16px;
}

.footer__sns i::before {
  font-size: 1.5rem;
}

small {
  font-size: 14px;
  text-align: center;
}



/* =========================
  サブコンテンツ--共通--
========================= */
.sub__header {
  position: relative;
}

.sub__header .common__logo {
  margin-bottom: 0;
}

.sub_content {
  background: linear-gradient(to top, #2f2f2f 0%, #0b0b0b 75%);
  overflow: hidden;
}

.sub_content .wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.sub__section__content p {
  text-align: center;
  margin-bottom: var(--space-3);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.05em;
  line-height: 2;
}

.sub__section-title {
  margin-bottom: var(--space-3);
}

.sub__section-title__label {
  color: var(--dark-gray);
  font-size: clamp(32px, 10vw, 96px);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.sub__section-title__ja {
  font-size: clamp(16px, 2vw, 24px);
  font-family: var(--font-ja);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.bold {
  font-weight: bold;
}

.big {
  font-size: clamp(20px, 4vw, 32px);
  letter-spacing: 0.07em;
  text-align: center;
}

/* =========================
サブコンテンツ--mv--
========================= */

.sub_content .mv {
  position: relative;
}

.sub__mv__img {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.sub__mv__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100svh;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1.8s ease-in-out,
    transform 5s ease-out;
  z-index: 1;
}

.sub__mv__img img.is-active {
  opacity: 1;
  transform: scale(1.08);
}

/*画像調整のためのレイヤー*/
.sub__mv__img::after {
  position: absolute;
  content: "";
  display: block;
  background-color: rgba(7, 7, 7, 0.65);
  width: 100%;
  height: 100svh;
  z-index: 2;
  inset: 0;
}

.sub__mv--text {
  position: absolute;
  bottom: 0;
  left: 50%;
  text-align: center;
  transform: translate(-50%, 0);
  margin-bottom: var(--space-3);
  mix-blend-mode: overlay;
  line-height: 1.25;
  letter-spacing: -0.05em;
  z-index: 5;
}

.sub__mv--text p {
  text-align: center;
  font-weight: bold;
  font-size: clamp(32px, 10.5vw, 99vw);
  text-wrap: nowrap;
}

.sub__mv--text--ja {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  writing-mode: vertical-rl;
  z-index: 10;
}

.sub__mv--text--ja p {
  font-size: clamp(32px, 10vw, 64px);
  color: var(--white);
  text-align: start;
  font-family: var(--font-serif);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-wrap: nowrap;
}

.sub__mv--text--ja p:nth-child(2) {
  margin-top: 15%;
}

.sub__mv--text--ja .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  animation: charIn 0.5s ease forwards;
}

@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
サブコンテンツ--join--
========================= */
#join {
  margin: 8% 0 calc(10% + 80px) 0;
}

.join__content-wrap {
  position: relative;
  padding: 20% 0 0 0;
}

.join__background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 110%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  z-index: 0;
}

.join__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  filter: brightness(0.25);
}

.join__background img:nth-child(2),
.join__background img:nth-child(4) {
  transform: translateY(40px);
}

#join .sub__section__content {
  position: relative;
  z-index: 10;
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

/* =========================
サブコンテンツ--film--
========================= */
#film {
  position: relative;
  background-image:
    linear-gradient(rgba(7, 7, 7, 0.65),
      rgba(7, 7, 7, 0.65)),
    url("../img/film_bg.jpg");

  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-bottom: 48px;
}

/*背景のブロック*/

.film__blocks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.film__blocks span {
  position: absolute;
  width: clamp(30px, 10vw, 100px);
  height: clamp(30px, 10vw, 100px);
  background: var(--white);
  mix-blend-mode: screen;
  opacity: 0.15;
}

.film__blocks.is-visible span {
  animation: filmBlock 4s ease-in-out infinite;
}

/* コンテンツ */
#film>*:not(.film__blocks) {
  position: relative;
  z-index: 2;
}

@keyframes filmBlock {
  0% {
    opacity: 0.1;
  }

  35% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.55;
  }

  65% {
    opacity: 0.1;
  }

  100% {
    opacity: 0.1;
  }
}


/* 位置アニメーション*/
.film__blocks span:nth-child(1) {
  top: 0;
  background-color: #333333;
  animation-delay: 0s;
}

.film__blocks span:nth-child(2) {
  top: clamp(30px, 10vw, 100px);
  left: clamp(30px, 10vw, 100px);
  animation-delay: 0.4s;
}

.film__blocks span:nth-child(3) {
  top: clamp(60px, 20vw, 200px);
  animation-delay: 0.8s;
}

.film__blocks span:nth-child(4) {
  top: clamp(120px, 30vw, 300px);
  left: clamp(30px, 10vw, 100px);
  animation-delay: 1.2s;
}

.film__blocks span:nth-child(5) {
  top: clamp(150px, 40vw, 400px);
  left: 0;
  animation-delay: 1.6s;
}

.film__blocks span:nth-child(6) {
  top: clamp(180px, 50vw, 500px);
  left: clamp(30px, 10vw, 100px);
  animation-delay: 2s;
}

.film__blocks span:nth-child(10) {
  top: clamp(210px, 60vw, 600px);
  animation-delay: 2.4s;
}

#film .section-title {
  align-items: flex-end;
}

#film .sub__section__content p,
#film .sub__section__content span{
  text-align: right;
}

/* =========================
サブコンテンツ--looking--
========================= */
#looking .section-title {
  align-items: center;
}

#looking .sub__section-title__label {
  text-align: center;
  background: linear-gradient(90deg,
      #70542D 0%,
      #F4E2BB 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#looking .sub__section__content span{
  text-align: center;
}

#looking .big {
  position: relative;
  font-size: clamp(18px, 4.5vw, 32px);
  letter-spacing: 0.07em;
}

#looking .big::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background-image: url(../img/line_long.png);
  max-width: 330px;
  width: 100%;
  height: 2px;
  display: block;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 100%;
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

#looking .big.is-line-visible::after {
  transform: scaleX(1);
}


/* =========================
サブコンテンツ--lab--
========================= */
#lab{
  margin-bottom: 48px;
}

#lab .sub__section__content {
  position: relative;
}

#lab .sub__section__content p {
  text-align: left;
}

#lab .sub__section__img {
  position: relative;
}

#lab .sub__section__img img {
  display: block;
  width: 100%;
}

#lab .sub__section__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.65);
}

.lab__content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#lab .sub__section__img{
  width: 50%;
  min-width: 160px;
}
/* =========================
サブコンテンツ--show--
========================= */
#show {
  position: relative;
  background-image: linear-gradient(rgba(7, 7, 7, 0.75),
      rgba(7, 7, 7, 0.75)),
    url("../img/casting.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

#show .section-title {
  align-items: center;
}

#show .sub__section-title__label,
#show .section-title .sub__section-title__ja{
  text-align: center;
}

.show__blocks span {
  position: absolute;
  width: clamp(20px, 8vw, 80px);
  height: clamp(20px, 8vw, 80px);
  background: var(--white);
  mix-blend-mode: screen;
  opacity: 0.12;
  z-index: 0;
  animation: snowBlock 1.5s ease-in-out infinite;
}

/* コンテンツ */

/* 位置 */

.show__blocks span:nth-child(1) {
  top: 0;
}

.show__blocks span:nth-child(2) {
  top: clamp(20px, 8vw, 80px);
  left: clamp(20px, 8vw, 80px);
}

.show__blocks span:nth-child(3) {
  top: clamp(40px, 16vw, 160px);
}

.show__blocks span:nth-child(4) {
  bottom: 0;
  left: 0;
}

.show__blocks span:nth-child(5) {
  bottom: clamp(20px, 8vw, 80px);
  left: clamp(20px, 8vw, 80px);
}

.show__blocks span:nth-child(6) {
  bottom: clamp(40px, 16vw, 160px);
}

.show__blocks span:nth-child(7) {
  top: 0;
  right: 0;
}

.show__blocks span:nth-child(8) {
  top: clamp(20px, 8vw, 80px);
  right: clamp(20px, 8vw, 80px);
}

.show__blocks span:nth-child(9) {
  top: clamp(40px, 16vw, 160px);
  right: 0;
}

.show__blocks span:nth-child(10) {
  bottom: 0;
  right: 0;
}

.show__blocks span:nth-child(11) {
  bottom: clamp(20px, 8vw, 80px);
  right: clamp(20px, 8vw, 80px);
}

.show__blocks span:nth-child(12) {
  bottom: clamp(40px, 16vw, 160px);
  right: 0;
}


.show__blocks span:nth-child(1),
.show__blocks span:nth-child(2),
.show__blocks span:nth-child(3),
.show__blocks span:nth-child(7),
.show__blocks span:nth-child(8),
.show__blocks span:nth-child(9) {
  animation: snowBlock 6s ease-in-out infinite;
}

.show__blocks span:nth-child(4),
.show__blocks span:nth-child(5),
.show__blocks span:nth-child(6),
.show__blocks span:nth-child(10),
.show__blocks span:nth-child(11),
.show__blocks span:nth-child(12) {
  animation: snowBlock 6s ease-in-out 2s infinite;
}

.show__blocks span:nth-child(2),
.show__blocks span:nth-child(8) {
  animation: snowBlock 5s ease-in-out 0.5s infinite;
}

.show__blocks span:nth-child(3),
.show__blocks span:nth-child(9) {
  animation: snowBlock 5s ease-in-out 1s infinite;
}

.show__blocks span:nth-child(4),
.show__blocks span:nth-child(10) {
  animation: snowBlock 5s ease-in-out 1.5s infinite;
}

.show__blocks span:nth-child(5),
.show__blocks span:nth-child(11) {
  animation: snowBlock 5s ease-in-out 2s infinite;
}

.show__blocks span:nth-child(6),
.show__blocks span:nth-child(12) {
  animation: snowBlock 5s ease-in-out 2.5s infinite;
}

@keyframes snowBlock {

  0%,
  70%,
  100% {
    opacity: 0.12;
  }

  80% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.18;
  }

}

/* =========================
サブコンテンツ--finished--
========================= */
#finished {
  position: relative;
  background-image: linear-gradient(rgba(7, 7, 7, 0.65),
      rgba(7, 7, 7, 0.65)),
    url("../img/bg_contact.jpg");
  background-size: cover;
  background-position: right;
  overflow: hidden;
}


#finished .section-title {
  align-items: center;
}

#finished .sub__section-title__label {
  text-align: center;
  background: linear-gradient(90deg,
      #70542D 0%,
      #F4E2BB 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#finished .big {
  position: relative;
}

#finished .big::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  background-image: url("../img/line_long.png");
  background-size: cover;
  width: 100%;
  height: 2px;
  display: block;
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

#finished .big.is-line-visible::after {
  transform: scaleX(1);
}

/* =========================
サブコンテンツ--entry--
========================= */

/*三角形*/
.custom-shape-divider-top-1787632511 {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-fill {
  fill: #100e0e;
}

#entry {
  background: linear-gradient(to bottom, #B0884E 0%, #0b0b0b 75%);
  position: relative;
}

#entry::before {
  position: absolute;
}

#entry .wrapper {
  padding: 10% 0;
}

#entry .section-title {
  align-items: center;
}

#entry .sub__section-title__label {
  color: var(--white);
  font-family: var(--font-ja);
}

/* =========================
サブコンテンツ--コンタクトフォーム--
========================= */

.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form__item+.contact-form__item {
  margin-top: 40px;
}

.contact-form__label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 16px 20px;

  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);

  color: var(--white);
  font-size: 16px;
  line-height: 1.8;

  transition: border-color .3s ease, background .3s ease;
  appearance: none;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 220px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, .06);
}

.contact-form__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(20vw, 80vw, 580px);
  gap: 16px;
  margin-top: 56px;
  padding: 18px 48px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .3s;
  margin: 48px auto 0;
}

.contact-form__button:hover {
  background: var(--gold);
  color: var(--black);
}

.contact-form__button span {
  font-size: clamp(14px, 2vw, 18px);
}

.contact-form__check {
  margin-top: 40px;
}

.contact-form__check-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  cursor: pointer;

  font-size: 15px;
  line-height: 1.8;
  color: var(--white);
}

.contact-form__checkbox {
  width: 18px;
  height: 18px;

  accent-color: var(--gold);
  cursor: pointer;
}

/* =========================
サブコンテンツ----RECRUIT--
========================= */
.sub__section__recruit h4 {
  margin-bottom: var(--space-5);

  color: var(--gold);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.recruit__container {
  max-width: 980px;
  margin: 48px auto;
}

.recruit__container+.recruit__container {
  margin-top: 64px;
}

.recruit__container h5 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}

.recruit__container dl {
  border-top: 1px solid rgba(176, 136, 78, .3);
}

.recruit__container dt {
  padding: 16px 0 8px;

  color: var(--gold);
  font-weight: 700;
  letter-spacing: .05em;
}

.recruit__container dd {
  padding: 0 0 16px;
  margin: 0;

  color: rgba(255, 255, 255, .9);
  line-height: 1.8;

  border-bottom: 1px solid rgba(176, 136, 78, .3);
}

.recruit__description {
  display: block;
  text-align: center;
  font-weight: 600;
}

.contact-form__button--recruit {
  margin: 16px auto 0;
}

/* =========================
   PCPCPCPCPCPCPCPCPCPCPCPC
    ========================= */

@media (min-width: 768px) {
  .section {
    padding: 8% 0;
  }

  .wrapper {
    padding: 0 42px;
  }

  .section__content {
    grid-template-columns: auto 1fr;
    gap: var(--space-7);
  }

  .section-title {
    margin-bottom: var(--space-4);
  }

  .pc-only {
    display: block;
  }

  .sp-only {
    display: none;
  }

  .header__inner {
    height: 120px;
  }

  .header-pc__nav {
    position: relative;
    width: 100%;
    height: 100%;
    background: none;
    transform: translateX(0);
    transition: none;
    padding: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .header-pc__menu {
    display: flex;
    gap: var(--space-2);
    font-family: var(--font-en);
    font-weight: bold;
  }

  .header-pc__sns {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-2);
  }

  .header-pc__sns i::before {
    font-size: 1.5rem;
  }

  .header-pc__menu li a {
    transition: opacity 0.3s ease;
    font-size: clamp(14px, 1vw, 16px);
  }

  .header-pc__menu li a:hover {
    opacity: 0.65;
  }

  /* =========================
   ローディング画面
========================= */
  .loading__wrap {
    left: 0;
  }

  /* =========================
   PC--mv
  ========================= */

  .mv__img img {
    width: 100%;
    height: 100vh;
  }

  .mv__img::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' fill='%23000000' filter='url(%23noiseFilter)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    animation: noiseMove 0.5s steps(2) infinite;
  }

  @keyframes noiseMove {
    0% {
      background-position: 0 0;
    }

    25% {
      background-position: 15px -10px;
    }

    50% {
      background-position: -10px 8px;
    }

    75% {
      background-position: 8px 15px;
    }

    100% {
      background-position: 0 0;
    }
  }

  .mv__text {
    top: 50%;
  }

  .mv__maintitle {
    margin-bottom: var(--space-4);
  }

  .mv__title-logo {
    margin-bottom: var(--space-3);
  }

  .mv__text {
    max-width: 1280px;
    padding: 0 42px;
  }

  .mv__text-medium-wrap {
    flex-direction: row;
    gap: 2px;
  }

  .mv__text-medium--accent {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
  }

  .mv__text_small {
    position: relative;
  }

  .mv__text_small::after {
    content: "/";
    padding-left: 5px;
  }

  .mv__text_small:last-child::after {
    content: none;
  }

  .mv__text_small-wrap {
    display: flex;
    flex-direction: row;
    gap: 5px;
  }


  /* =========================
   PC--about
  ========================= */
  .about {
    padding: 6% 0;
  }

  .about .section__content {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }


  .about::before {
    background-position: left top;
  }

  .about__img {
    margin-bottom: var(--space-4);
  }

  .about__catch {
    flex-direction: row;
    font-size: clamp(18px, 2vw, 32px);
  }

  .about__catch-accent {
    font-size: clamp(22px, 14vw, 90px);
  }

  .about__catch:nth-of-type(2) {
    margin-left: 0;
  }

  .about__catch-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .about__text {
    max-width: 100%;
    line-height: 1.75;
  }

  .about__band {
    width: 100%;
    height: 80px;
    background-size: contain;
    background-repeat: repeat;
    animation: bandMove 30s linear infinite;
  }

  .about__band--bottom {
    animation: bandMove-right 30s linear infinite;
  }

  /* =========================
   PC--service
  ========================= */

  .service::before {
    background-image:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }


  .service .section__content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .service .section-title,
  .service .section__header p {
    align-items: center;
    text-align: center;
  }

  .service__item {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }

  .service__item li {
    grid-column: span 2;
  }

  /* 4枚目 */
  .service__item li:nth-child(4) {
    grid-column: 2 / span 2;
  }

  /* 5枚目 */
  .service__item li:nth-child(5) {
    grid-column: 4 / span 2;
  }

  /* =========================
    PC--news
  ========================= */

  .news__category {
    padding: 5px;
  }

  .news-list__item a {
    padding: var(--space-3) 0;
  }

  .news-list__item a::after {
    margin-top: 8px;
  }


  /* =========================
    PC--cta
  ========================= */
  .cta__inner {
    align-items: center;
    justify-content: space-between;
    gap: 6%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .cta__inner::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 170px;
    background-color: var(--gold);
  }

  .cta__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 8%;
    padding: 0;
  }

  .cta__icon {
    margin-bottom: var(--space-2);
  }

  .cta .contact {
    width: 100%;
  }

  .cta .recruit {
    width: 100%;
  }

  .cta .link {
    align-self: center;
  }


  /* =========================
    PC--contact
  ========================= */

  .contect__big__text {
    margin-bottom: var(--space-2);
  }

  /* =========================
   PC--footer
  ========================= */

  .footer {
    position: relative;
  }

  .footer .wrapper {
    margin-bottom: var(--space-4);
  }

  .footer.section {
    padding: 4% 0 42px 0;
  }

  .footer .section__header {
    width: auto;
  }

  .footer .section__body {
    margin: 0 auto var(--space-6) auto;
  }

  .footer__menu {
    font-size: 12px;
    font-weight: normal;
    border-left: 1px solid var(--gold);
    padding-left: 4px;
    margin-top: 8px;
  }

  .footer__menu li {
    margin-bottom: 4px;
  }

  .footer__menu li:last-child {
    margin-bottom: 0;
  }

  .footer .section__content {
    flex-direction: row;
    align-items: center;
  }

  .footer__access {
    margin-bottom: var(--space-1);
  }

  .footer_link {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .pagetop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--black);
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: absolute;
    right: 24px;
    bottom: 24px;
  }

  .pagetop:hover {
    transform: translateY(-4px);
  }

  .pagetop__arrow {
    width: 12px;
    height: 12px;

    border-top: 2px solid var(--white);
    border-left: 2px solid var(--white);

    transform: rotate(45deg);
    margin-top: 4px;
  }

  /* =========================
   PC--サブコンテンツ--共通
  ========================= */

  .sub__section-title {
    margin-bottom: var(--space-5);
  }

  .sub__section-title__label {
    font-size: clamp(32px, 6vw, 96px);
    margin-bottom: var(--space-3);
  }

  .sub__section-title__ja{
    line-height: 1.5;
  }

  /* =========================
   PC--サブコンテンツ--MV
  ========================= */
  .sub__mv--text {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .sub__mv--text p {
    text-align: center;
    font-weight: bold;
    text-wrap: nowrap;
    line-height: 1;
    font-size: clamp(32px, 12vw, 99vw);
  }

  /* =========================
   PC--サブコンテンツ--join
  ========================= */
  .sub_content .wrapper {
    max-width: 100%;
    padding: 0 10%;
  }

  #join {
    position: relative;
  }

  .join__background {
    gap: 80px;
    height: 100%;
  }

  .join__background img {
    max-height: 480px;
}

  .join__background img:nth-child(2),
  .join__background img:nth-child(4) {
    transform: translateY(80px);
  }

  /* =========================
   PC--サブコンテンツ--film
  ========================= */
  #film {
    margin: 12% 0 8% 0;
  }

  /* =========================
   PC--サブコンテンツ--looking
  ========================= */
  #looking {
    margin: 0;
  }

  /* =========================
   PC--サブコンテンツ--lab
  ========================= */
  #lab{
    margin-bottom: 8%;
  }

  .lab__content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  #lab .sub__section__img {
    width: 100%;
    max-width: 586px;
  }

}