@charset "UTF-8";
.linelll {
  border-top: 1px solid #ff0;
  position: fixed;
  width: 100%;
  height: 2px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .linelll {
    border-top: 1px solid #f00;
  }
}
@media screen and (max-width: 768px) {
  .linelll {
    border-top: 1px solid #0ff;
  }
}
@media screen and (max-width: 450px) {
  .linelll {
    border-top: 1px solid #0f0;
  }
}

html,
body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}
body p {
  margin: 0;
}

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

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

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
  transition: all 0.4s;
}

a img {
  border-style: none;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.bgGrange {
  background: url(../images/bg.png);
  background-size: 250px auto;
}

header {
  width: 100%;
}

header h1,
header .iconContact {
  position: fixed;
  top: 20px;
  z-index: 3;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}

header h1 {
  left: 20px;
}

header .iconContact {
  right: 20px;
}

@media screen and (max-width: 768px) {
  header h1 img {
    height: 160px;
    width: auto;
  }
}

@media (max-width: 1024px) {
  body.is-hide-icons header h1,
  body.is-hide-icons header .iconContact {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
  }
}
/* BGグラデ
=========================================*/
:root {
  /* マウス追従の光の中心位置（JSで更新） */
  --mx: 50%;
  --my: 50%;
}

body {
  margin: 0;
  color: #111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* 薄いグラデ（下でずっと動いてるやつ） */
.bg-hero {
  position: fixed;
  inset: 0;
  z-index: -2;
  --c1: #e8d9ff;
  --c2: #c7dcff;
  --c3: #b8f0f7;
  --spot: rgba(160, 100, 255, 0.15);
  background: radial-gradient(55rem 55rem at var(--mx) var(--my), rgba(200, 160, 255, 0.3) 0%, rgba(140, 100, 220, 0.1) 35%, transparent 70%), radial-gradient(60rem 60rem at calc(100% - var(--mx)) calc(100% - var(--my)), rgba(100, 220, 240, 0.18) 0%, transparent 60%), linear-gradient(120deg, var(--c1) 0%, var(--c2) 50%, var(--c3) 100%);
  background-attachment: fixed;
  filter: saturate(115%) contrast(103%) brightness(103%);
  background-size: auto auto, auto auto, 200% 200%;
  background-position: center center, center center, 0% 50%;
  animation: heroGradShift 6s linear infinite;
}

@keyframes heroGradShift {
  0% {
    background-position: center center, center center, 0% 50%;
  }
  50% {
    background-position: center center, center center, 100% 50%;
  }
  100% {
    background-position: center center, center center, 0% 50%;
  }
}
/* 濃い紺グラデ（上にかぶせるレイヤー） */
.navy-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgb(2, 16, 36) 0%, rgb(69, 69, 79) 100%);
  opacity: 0; /* 最初は透明 */
  transition: opacity 0.8s cubic-bezier(0.25, 0, 0.25, 1);
  /* ← ここが「じわっと」 */
  pointer-events: none;
}

section span {
  position: sticky;
  top: 20px;
}

/* タイトル文字が一文字ずつ
=========================================*/
.baseline-anim {
  font-size: 80px;
  font-weight: 900;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  display: inline-flex;
  gap: 8px;
}

/* 最初は下に隠しておくけど、まだアニメは始めない */
.baseline-anim span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

/* ← ここから「画面に入ったら付くクラス」 */
.baseline-anim.is-active span {
  animation-name: popUpOnce;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* ディレイも is-active が付いたときだけ有効にする */
.baseline-anim.is-active span:nth-child(1) {
  animation-delay: 0s;
}

.baseline-anim.is-active span:nth-child(2) {
  animation-delay: 0.1s;
}

.baseline-anim.is-active span:nth-child(3) {
  animation-delay: 0.2s;
}

.baseline-anim.is-active span:nth-child(4) {
  animation-delay: 0.3s;
}

.baseline-anim.is-active span:nth-child(5) {
  animation-delay: 0.4s;
}

.baseline-anim.is-active span:nth-child(6) {
  animation-delay: 0.5s;
}

.baseline-anim.is-active span:nth-child(7) {
  animation-delay: 0.6s;
}

.baseline-anim.is-active span:nth-child(8) {
  animation-delay: 0.7s;
}

.baseline-anim.is-active span:nth-child(9) {
  animation-delay: 0.8s;
}

.baseline-anim.is-active span:nth-child(10) {
  animation-delay: 0.9s;
}

.baseline-anim.is-active span:nth-child(11) {
  animation-delay: 1s;
}

.baseline-anim.is-active span:nth-child(12) {
  animation-delay: 1.1s;
}

.baseline-anim.is-active span:nth-child(13) {
  animation-delay: 1.2s;
}

.baseline-anim.is-active span:nth-child(14) {
  animation-delay: 1.3s;
}

@keyframes popUpOnce {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  70% {
    transform: translateY(-10%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1; /* 最後はちゃんと見えている状態で固定 */
  }
}
/* 流れる文字
=========================================*/
.flowCopy {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  padding: 88px 0 0;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: flowCopyFadeIn 1.5s ease forwards;
}
@media screen and (max-width: 1024px) {
  .flowCopy {
    padding: 88px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .flowCopy {
    padding: 28px 0 16px;
  }
}
@media screen and (max-width: 450px) {
  .flowCopy {
    padding: 56px 0 12px;
  }
}
.flowCopy__list {
  display: flex;
  align-items: center;
  gap: 50px;
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-size: 16rem;
  padding: 0 0 40px;
  transform: translateX(100%);
  animation: flowCopy 120s linear infinite;
}
@media screen and (max-width: 1024px) {
  .flowCopy__list {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .flowCopy__list {
    font-size: 12rem;
    padding: 0 0 8px;
  }
}
@media screen and (max-width: 450px) {
  .flowCopy__list {
    font-size: 8rem;
    padding: 0 0 4px;
  }
}
.flowCopy__list li {
  white-space: nowrap;
  line-height: 1;
}

@keyframes flowCopy {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes flowCopyFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flowColreLight {
  color: rgba(0, 0, 0, 0.06);
  -webkit-text-stroke: 1px #fff;
}

.flowColreDark {
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #fff;
}

/* contact icon
=========================================*/
/* 外側：位置・スケール担当（マウスアウト時もふわっと戻る） */
.iconContact {
  position: fixed;
  top: 20px;
  right: 20px;
  height: 64px;
  width: 64px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.25s ease-out;
  z-index: 2;
}
.iconContact:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .iconContact {
    height: 44px;
    width: 44px;
  }
}

/* 中身：赤い吹き出しの形と影・枠線など */
.iconContact-inner {
  background-color: #ea333d;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border-bottom-left-radius: 0;
  border: 1px solid #fff;
  box-shadow: 0px 0px 15px -5px #222;
}

/* アイコン画像（回転を打ち消す用にアニメを当てる） */
.iconContact-inner img {
  margin: 4px 4px 0 0;
}
@media screen and (max-width: 768px) {
  .iconContact-inner img {
    height: auto;
    width: 24px;
  }
}

/* ホバーしたら：外側はふわっと拡大、中の赤部分だけクルッと1周 */
.iconContact:hover {
  transform: scale(1.2);
}

.iconContact:hover .iconContact-inner {
  animation: spinShell 1.1s ease-out;
}

.iconContact:hover .iconContact-inner img {
  animation: spinInner 1.1s ease-out;
}

/* 赤い殻だけ回転 */
@keyframes spinShell {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 中のアイコンは逆回転させて、見た目は「回ってない」ように見せる */
@keyframes spinInner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* COMMON
=========================================*/
.sectionWrap {
  padding: 80px 0 0;
  font-size: 2em;
  text-align: center;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sectionWrap {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 450px) {
  .sectionWrap {
    padding: 32px 0 0;
  }
}
.sectionWrap .inner {
  padding: 0 20px;
}
@media screen and (max-width: 1400px) {
  .sectionWrap .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .sectionWrap .inner {
    padding: 0 20px;
  }
}
.sectionWrap .secondTitle {
  font-family: "Bungee Shade", sans-serif;
  font-size: 9.6rem;
}
@media screen and (max-width: 1024px) {
  .sectionWrap .secondTitle {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 768px) {
  .sectionWrap .secondTitle {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 450px) {
  .sectionWrap .secondTitle {
    font-size: 3.2rem;
  }
}

.worksReadTxt {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2em;
  text-align: left;
  margin: 80px 0 0 16px;
}
@media screen and (max-width: 768px) {
  .worksReadTxt {
    font-size: 1.4rem;
    margin: 64px 0 0;
  }
}

.menberReadTxt {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2em;
  text-align: left;
  margin: 80px 0 0 16px;
}
@media screen and (max-width: 768px) {
  .menberReadTxt {
    font-size: 1.4rem;
    line-height: 1, 6em;
    margin: 64px 0 0;
  }
}

/* パララックス
=========================================*/
.js-parallax {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* CONTACT
=========================================*/
.contactWrap {
  padding: 0 20px;
}
.contactWrap .inner {
  background-color: #181e42;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px;
}
.contactWrap .inner .secondTitle {
  color: #fff;
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .contactWrap .inner .secondTitle {
    font-size: 4rem;
  }
}
.contactWrap .inner .contentsMeTxt {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 24px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contactWrap .inner .contentsMeTxt {
    font-size: 1.4rem;
    line-height: 1.6em;
  }
}
.contactWrap .inner .contactMeBtnWrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 56px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .contactWrap .inner .contactMeBtnWrap {
    column-gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .contactWrap .inner .contactMeBtnWrap {
    row-gap: 24px;
  }
}
.contactWrap .inner .contactMeBtnWrap .contactMeBtn {
  background: url(../../images/common/contact_arrow.svg) no-repeat right 20px center #fff;
  display: flex;
  padding: 18px 24px;
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn {
    width: 46%;
  }
}
@media screen and (max-width: 768px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn {
    background: url(../../images/common/contact_arrow.svg) no-repeat right 10px center #fff;
    background-size: 14px auto;
    padding: 12px;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn {
    background: none;
    background-color: #fff;
  }
}
.contactWrap .inner .contactMeBtnWrap .contactMeBtn:hover {
  background: url(../../images/common/contact_arrow.svg) no-repeat right 15px center #fff;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn:hover {
    background: url(../../images/common/contact_arrow.svg) no-repeat right 5px center #fff;
    background-size: 14px auto;
  }
}
@media screen and (max-width: 450px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn:hover {
    background: none;
  }
}
.contactWrap .inner .contactMeBtnWrap .contactMeBtn img {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn img {
    height: auto;
    width: 32px;
  }
}
.contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap {
  text-align: left;
}
.contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeMidashi {
  font-size: 1.6rem;
  line-height: 1.6em;
}
@media screen and (max-width: 1080px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeMidashi {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 880px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeMidashi {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeMidashi {
    font-size: 1.2rem;
  }
}
.contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeCon {
  font-size: 2.4rem;
  line-height: 1.6em;
  font-weight: bold;
}
.contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeCon a {
  color: #333;
}
@media screen and (max-width: 1080px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeCon {
    font-size: 2rem;
  }
}
@media screen and (max-width: 880px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeCon {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .contactWrap .inner .contactMeBtnWrap .contactMeBtn .contactMeTxtWrap .contactMeCon {
    font-size: 1.8rem;
  }
}

/* VIDEO
=========================================*/
.videoWrap {
  position: relative;
  height: 100vh !important;
  width: 100%;
  overflow: hidden;
}
.videoWrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.65));
  z-index: 2;
  pointer-events: none;
}
.videoWrap .inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  padding: 0 120px 60px;
}
@media screen and (max-width: 1024px) {
  .videoWrap .inner {
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .videoWrap .inner {
    padding: 0 0 60px;
  }
}

.topCopy {
  color: #fff;
  font-family: "Fugaz One", sans-serif;
  font-size: 4.2rem;
  line-height: 0.5em;
}
@media screen and (max-width: 1024px) {
  .topCopy {
    font-size: 3rem;
    text-align: center;
  }
}
.topCopy span {
  font-size: 1.7rem;
}
.topCopy {
  --parallax-copy-y: 0px;
  opacity: 0;
  transform: translateY(20px) translateY(var(--parallax-copy-y));
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.topCopy.is-visible {
  opacity: 1;
  transform: translateY(0) translateY(var(--parallax-copy-y));
}

#video-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: scale(1.05) translateY(var(--parallax-video-y));
  border-radius: 0;
  margin: 0;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), border-radius 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), margin 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.9s ease;
  height: 100% !important;
  width: 100% !important;
}

#video-area.is-framed {
  transform: scale(0.95) translateY(var(--parallax-video-y));
  border-radius: 24px;
  margin: 40px 40px 60px;
}

#video {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* =========================
   SP時：通常動画だけ縦寄りにする
========================= */
@media (max-width: 768px) {
  /* 通常の video が入っている場合だけ */
  #video-area:has(video) {
    width: 100%;
    height: 100svh; /* ← スマホの実画面いっぱい */
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
  }
  #video-area:has(video) #video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* 画面いっぱいにトリミング */
  }
  /* SPでは縮みフレームの余白を殺す（重要） */
  #video-area:has(video).is-framed {
    margin: 0;
    border-radius: 24px;
  }
}
/* TOP CAPTION
=========================================*/
.topCaptionWrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.topCaptionWrap .topCaption {
  color: #000;
  transition: color 0.5s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  margin: 136px 0 56px;
}
@media screen and (max-width: 1024px) {
  .topCaptionWrap .topCaption {
    font-size: 4.8rem;
    margin: 64px 0 32px;
  }
}
@media screen and (max-width: 768px) {
  .topCaptionWrap .topCaption {
    font-size: 3.2rem;
    margin: 16px 0 32px;
  }
}
.topCaptionWrap .topCaption .typewriter-char {
  display: inline-block;
  transition: opacity 0.1s ease, transform 0.1s ease;
}
.topCaptionWrap .topSubCaption {
  color: #000;
  transition: color 0.5s ease;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.6em;
}
@media screen and (max-width: 1024px) {
  .topCaptionWrap .topSubCaption {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .topCaptionWrap .topSubCaption {
    font-size: 1.6rem;
  }
}
.topCaptionWrap .topSubCaption span {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

body.is-dark-bg .topCaptionWrap .topCaption,
body.is-dark-bg .topCaptionWrap .topSubCaption {
  color: #fff;
}

/* TOP WORK
=========================================*/
.oval {
  width: 88px;
  height: 56px;
  border-radius: 50%;
  background: #ea333d;
  transform: rotate(-30deg);
  position: relative;
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  top: -16px;
  right: -16px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .oval {
    width: 72px;
    height: 48px;
  }
}
@media screen and (max-width: 450px) {
  .oval {
    width: 56px;
    height: 40px;
  }
}

.ovalTop {
  top: -16px;
  right: -16px;
}

.ovalSecond {
  top: -32px;
  right: -32px;
}

.topWorkWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 64px;
}
@media screen and (max-width: 768px) {
  .topWorkWrap {
    padding: 40px 24px;
  }
}
@media screen and (max-width: 450px) {
  .topWorkWrap {
    padding: 40px 0;
  }
}
.topWorkWrap .topWorkInner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #2a1f3d 0%, #1a1a2e 50%, #2d1b4e 100%);
  transform: translateY(80px);
  opacity: 0;
  will-change: transform, opacity;
}
.topWorkWrap .topWorkInner.inview {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.topWorkWrap .topWorkInner .topWork-img-wrap {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease 0.55s, transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
}
.topWorkWrap .topWorkInner.inview .topWork-img-wrap {
  opacity: 1;
  transform: translateY(0);
}
.topWorkWrap .topWorkInner img {
  --parallax: 0px;
  width: 100%;
  display: block;
  object-fit: cover;
  transform: translateY(var(--parallax)) scale(1.3);
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.topWorkWrap .topWorkInner .syurui {
  height: 104px;
  width: 104px;
}
.topWorkWrap .large {
  margin: 40px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topWorkWrap .large {
    margin: 24px 0;
  }
}
@media screen and (max-width: 450px) {
  .topWorkWrap .large {
    margin: 0 0 48px;
  }
}
.topWorkWrap .medium {
  margin: 40px auto;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .topWorkWrap .medium {
    margin: 40px auto;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .topWorkWrap .medium {
    margin: 0 0 48px;
  }
}
.topWorkWrap .small {
  margin: 40px 0;
  width: 48%;
}
@media screen and (max-width: 768px) {
  .topWorkWrap .small {
    margin: 24px 0;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .topWorkWrap .small {
    margin: 0 0 48px;
  }
}
.topWorkWrap .minimal {
  margin: 40px 0;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .topWorkWrap .minimal {
    margin: 24px 0;
    width: 48%;
  }
}
@media screen and (max-width: 450px) {
  .topWorkWrap .minimal {
    margin: 0 0 48px;
  }
}
@media screen and (max-width: 768px) {
  .topWorkWrap .minimal .topJissekiAnkenLine {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .topWorkWrap .minimal .topJissekiClLine {
    display: none;
  }
}
.topWorkWrap .topJIssekiTxt {
  color: #fff;
  font-size: 1.4rem;
  text-align: left;
  margin: 8px 0 0 8px;
}
.topWorkWrap .topJissekiAnken {
  color: #fff;
  font-size: 1.8rem;
  text-align: left;
  margin: 8px 0 0 8px;
}

.lineWrap .topJissekiAnkenLine {
  color: #dcdcdc;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lineWrap .topJissekiAnkenLine {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 450px) {
  .lineWrap .topJissekiAnkenLine {
    font-size: 1.4rem;
  }
}
.lineWrap .topJissekiClLine {
  color: #dcdcdc;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .lineWrap .topJissekiClLine {
    margin-top: -8px;
  }
}

.effect {
  margin: 0;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.04rem;
}
.effect span {
  display: inline-block;
  padding: 4px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .effect span {
    padding: 4px 8px;
  }
}

.effect span,
.effect span::after {
  animation-delay: var(--animation-delay, 2s); /* アニメーションの開始タイミング */
  animation-iteration-count: var(--iterations, 1); /* 再生される回数 */
  animation-duration: var(--duration, 800ms); /* 完了するまでの所要時間 */
  animation-fill-mode: both; /* 実行の前後 */
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1); /* タイミングの指定 */
}

.effect.scroll-in span {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
}
.effect.scroll-in span::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dcdcdc;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
#video-area.is-framed {
  transform: scale(0.95) translateY(var(--parallax-video-y));
  border-radius: 24px;
  margin: 30px 0;
}

#video-area.is-framed {
  transform: scale(0.95);
  border-radius: 24px;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .topCopy {
    font-size: 3.6rem;
    line-height: 1.1;
  }
  .topCopy span {
    font-size: 1.8rem;
  }
  #video-area.is-framed {
    margin: 20px 16px 40px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #video-area.is-framed {
    margin: 0;
  }
}
#video-area,
#video-area.is-framed {
  margin-top: 0 !important;
}

/* MEMBER TOP
=========================================*/
.mainImgWrap {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 450px) {
  .mainImgWrap {
    height: 100vh;
  }
}
.mainImgWrap .mainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 2s ease-out;
  animation: zoomIn 4s ease-out forwards;
}

/* MEMBER
=========================================*/
.circleWrap {
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  width: 744px;
  max-width: calc(100vw - 40px);
  aspect-ratio: 1;
  padding: 100px;
  position: relative;
  animation: floatCircle 6s ease-in-out infinite;
}
@media screen and (max-width: 1024px) {
  .circleWrap {
    width: 600px;
    padding: 64px;
  }
}
@media screen and (max-width: 768px) {
  .circleWrap {
    width: 440px;
    padding: 32px;
  }
}
@media screen and (max-width: 450px) {
  .circleWrap {
    width: 340px;
    padding: 32px;
  }
}
.circleWrap .memberImg {
  border-radius: 24px;
  margin: 0 auto;
  vertical-align: bottom;
}
@media screen and (max-width: 1024px) {
  .circleWrap .memberImg {
    height: auto;
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .circleWrap .memberImg {
    width: 88px;
  }
}
@media screen and (max-width: 768px) {
  .circleWrap .memberImg {
    border-radius: 16px;
    width: 64px;
  }
}
.circleWrap .memberRole {
  color: #ea333d;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6em;
  margin: 32px 0;
}
@media screen and (max-width: 768px) {
  .circleWrap .memberRole {
    margin: 16px 0;
  }
}
@media screen and (max-width: 450px) {
  .circleWrap .memberRole {
    font-size: 1.2rem;
    margin: 12px 0;
  }
}
.circleWrap .memberName {
  color: #222;
  font-family: "Fugaz One", sans-serif;
  font-size: 4.8rem;
  margin: 32px 0;
}
@media screen and (max-width: 1024px) {
  .circleWrap .memberName {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .circleWrap .memberName {
    font-size: 3.2rem;
    margin: 16px 0;
  }
}
@media screen and (max-width: 450px) {
  .circleWrap .memberName {
    font-size: 2.8rem;
    margin: 12px 0;
  }
}
.circleWrap .memberTxt {
  font-size: 1.6rem;
  line-height: 1.8em;
}
@media screen and (max-width: 1024px) {
  .circleWrap .memberTxt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .circleWrap .memberTxt {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 450px) {
  .circleWrap .memberTxt {
    font-size: 1.2rem;
    line-height: 1.6em;
  }
}

.subCircle {
  position: absolute;
  top: -40px;
  right: -44px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeIn 1s ease-out forwards, breathe 10s ease-in-out infinite;
}
@media screen and (max-width: 1024px) {
  .subCircle {
    height: auto;
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .subCircle {
    height: auto;
    width: 104px;
    top: -30px;
    right: 0px;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes floatCircle {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.darkWrap .secondTitle {
  color: #fff;
}
.darkWrap .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.darkWrap h2 {
  display: flex;
}

.memberSectionH {
  padding: 40px 0 0;
}

.topSectionH {
  padding: 240px 0 0;
}
@media screen and (max-width: 1024px) {
  .topSectionH {
    padding: 160px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .topSectionH {
    padding: 120px 0 0;
  }
}

.sakuhinBox .darkWrap {
  padding: 200px 0 0;
}

.sakuhinSpace {
  padding: 240px 0 120px;
}

.darkWrapShort {
  padding: 120px 0 0;
}
@media screen and (max-width: 1024px) {
  .darkWrapShort {
    padding: 0;
  }
}
.darkWrapShort .secondTitle {
  color: #fff;
}
.darkWrapShort .inner {
  max-width: 1260px;
  margin: 0 auto;
}
.darkWrapShort h2 {
  display: flex;
}

.lightWrap .secondTitle {
  color: #ea333d;
}
.lightWrap .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lightWrap h2 {
  display: flex;
}

.lightWrapH {
  padding: 120px 0 0;
}
@media screen and (max-width: 450px) {
  .lightWrapH {
    padding: 40px 0 0;
  }
}
.lightWrapH .secondTitle {
  color: #ea333d;
}
.lightWrapH .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lightWrapH h2 {
  display: flex;
}

/* CAREER
=========================================*/
@media screen and (max-width: 450px) {
  .careerBox {
    padding-top: 0;
  }
}
.careerBox .careerTitle {
  color: #40a8a7;
  font-size: 2rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .careerBox .careerTitle {
    font-size: 1.6rem;
  }
}
.careerBox .secondTitle {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .careerBox .secondTitle {
    margin: 0 0 40px;
  }
}
.careerBox .careerWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .careerBox .careerWrap {
    padding: 0;
  }
}
.careerBox .careerWrap .careerInner {
  width: 46%;
}
@media screen and (max-width: 500px) {
  .careerBox .careerWrap .careerInner {
    width: 100%;
  }
}
.careerBox .careerWrap .careerInner .careerList {
  font-size: 1.6rem;
  line-height: 1.6em;
  text-align: left;
  margin: 8px 0 48px;
}
@media screen and (max-width: 768px) {
  .careerBox .careerWrap .careerInner .careerList {
    font-size: 1.4rem;
  }
}
.careerBox .careerWrap .careerInner .careerList li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px 6px;
}
@media screen and (max-width: 768px) {
  .careerBox .careerWrap .careerInner .careerList li {
    padding: 8px 6px;
  }
}
.careerBox .bangumiWrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .careerBox .bangumiWrap {
    padding: 0;
  }
}
.careerBox .bangumiWrap .bangumiLogoWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 24px 0 0;
  width: 100%;
}
.careerBox .bangumiWrap .bangumiLogoWrap::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 768px) {
  .careerBox .bangumiWrap .bangumiLogoWrap::after {
    width: 48%;
  }
}
.careerBox .bangumiWrap .bangumiLogoWrap .bangumiLogoInner {
  margin: 0 0 32px;
  width: 31%;
}
@media screen and (max-width: 768px) {
  .careerBox .bangumiWrap .bangumiLogoWrap .bangumiLogoInner {
    margin: 0 0 24px;
    width: 48%;
  }
}
.careerBox .bangumiWrap .bangumiLogoWrap .bangumiLogoInner .bangumiLogoTxt {
  font-size: 1.4rem;
  text-align: left;
  margin: 8px 0;
}
.careerBox .bangumiWrap .bangumiTxt {
  font-size: 1.6rem;
  text-align: left;
}

.sakuhinWrap .sakuhinTxt .solutionWrap .solutionTitle {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionTitle {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionTitle {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 450px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionTitle {
    font-size: 2rem;
  }
}
.sakuhinWrap .sakuhinTxt .solutionWrap .solutionTitle span {
  font-size: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionTitle span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionTitle span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 450px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionTitle span {
    font-size: 1.6rem;
  }
}
.sakuhinWrap .sakuhinTxt .solutionWrap .solutionMid {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionMid {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionMid {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.sakuhinWrap .sakuhinTxt .solutionWrap .solutionText {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2em;
  color: #000;
  text-align: left;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionText {
    font-size: 1.4rem;
    padding: 8px 0;
    margin: 32px 0 0;
  }
}
.sakuhinWrap .sakuhinTxt .solutionWrap .solutionShikaku {
  margin-top: 55px;
  padding: 32px 30px;
  background-color: #fff;
  border-radius: 20px;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionShikaku {
    margin-top: 24px;
    font-size: 1.4rem;
    padding: 16px 24px;
  }
}
.sakuhinWrap .sakuhinTxt .solutionWrap .solutionShikaku h4 {
  padding: 0 0 8px;
  font-weight: 700;
  line-height: 2em;
}
.sakuhinWrap .sakuhinTxt .solutionWrap .solutionShikaku p {
  text-align: left;
  font-weight: 400;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinTxt .solutionWrap .solutionShikaku p {
    font-size: 1.4rem;
  }
}

/* WORK
=========================================*/
.workWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 64px;
  column-gap: 24px;
  padding: 104px 0;
}
.workWrap::after {
  content: "";
  display: block;
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .workWrap {
    row-gap: 24px;
    column-gap: 0;
    padding: 64px 0;
  }
}
.workWrap .workInner {
  background-color: #f5f2f2;
  border-radius: 30px;
  width: calc(50% - 20px);
  padding: 24px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .workWrap .workInner {
    padding: 12px 12px 20px;
  }
}
@media screen and (max-width: 768px) {
  .workWrap .workInner {
    border-radius: 20px;
    padding: 8px 8px 12px;
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 500px) {
  .workWrap .workInner {
    border-radius: 16px;
    padding: 8px 8px 12px;
    width: 100%;
  }
}
.workWrap .workInner {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, filter 0.7s ease-out;
}
.workWrap .workInner.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.workWrap .workInner .workThumb {
  border-radius: 16px;
  border: 8px solid #fff;
  overflow: hidden;
  perspective: 1000px;
}
@media screen and (max-width: 450px) {
  .workWrap .workInner .workThumb {
    border-radius: 12px;
  }
}
.workWrap .workInner .workThumb img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: left center;
  transform: translateX(-16px) scale(0.96) rotateY(-7deg);
  filter: brightness(0.98);
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s ease;
}
.workWrap .workInner .caseName {
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  margin: 20px 0 8px 4px;
}
@media screen and (max-width: 1024px) {
  .workWrap .workInner .caseName {
    margin: 12px 0 8px 4px;
  }
}
@media screen and (max-width: 768px) {
  .workWrap .workInner .caseName {
    font-size: 1.6rem;
    margin: 12px 0 4px 4px;
  }
}
@media screen and (max-width: 450px) {
  .workWrap .workInner .caseName {
    font-size: 1.4rem;
    margin: 8px 0 4px 12px;
  }
}
.workWrap .workInner .production {
  color: #888;
  font-size: 1.4rem;
  text-align: left;
  margin: 0 0 0 6px;
}
@media screen and (max-width: 768px) {
  .workWrap .workInner .production {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 450px) {
  .workWrap .workInner .production {
    margin: 0 0 0 12px;
  }
}
.workWrap .careerTxt {
  color: #dcdcdc;
  font-size: 1.6rem;
  line-height: 1.8em;
  text-align: left;
}
.workWrap .droneTitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  margin: 0 0 12px;
}
@media screen and (max-width: 1024px) {
  .workWrap .droneTitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .workWrap .droneTitle {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .workWrap .droneTitle {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}
.workWrap .droneEmbed {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.workWrap .droneEmbed iframe {
  width: 100%;
  height: 100%;
}
.workWrap .droneEmbed {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .workWrap .droneEmbed {
    margin: 20px 0;
  }
}

.titleImgWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 12px;
  width: 100%;
}
.titleImgWrap .titleInner {
  height: auto;
  width: calc(25% - 12px);
}
@media screen and (max-width: 1024px) {
  .titleImgWrap .titleInner {
    width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .titleImgWrap .titleInner {
    width: calc(50% - 12px);
  }
}
.titleImgWrap::before {
  content: "";
  display: block;
  width: calc(25% - 12px);
  order: 1;
}
@media screen and (max-width: 1024px) {
  .titleImgWrap::before {
    width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .titleImgWrap::before {
    width: calc(50% - 12px);
  }
}
.titleImgWrap::after {
  content: "";
  display: block;
  width: calc(25% - 12px);
}
@media screen and (max-width: 1024px) {
  .titleImgWrap::after {
    width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .titleImgWrap::after {
    width: calc(50% - 12px);
  }
}

.workInner.is-show .workThumb img {
  transform: translateX(0) scale(1) rotateY(0deg);
  filter: brightness(1);
}

.workInner:hover .workThumb img {
  transform: scale(1.06) rotate(-1.2deg);
  filter: brightness(1.05);
}

/* MEMBER
=========================================*/
.menberWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 88px auto 128px;
}
@media screen and (max-width: 1024px) {
  .menberWrap {
    margin: 64px auto;
  }
}
@media screen and (max-width: 768px) {
  .menberWrap {
    margin: 32px auto;
  }
}
.menberWrap .menberInner {
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 8px 14px 0px -11px #b5ccec;
  display: flex;
  margin: 16px 0;
  padding: 6px;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .menberWrap .menberInner {
    margin: 16px 0;
    width: 48%;
  }
}
@media screen and (max-width: 470px) {
  .menberWrap .menberInner {
    margin: 8px 0;
    width: 100%;
  }
}
.menberWrap .menberInner img {
  align-self: flex-start;
  border-radius: 100px;
  margin-right: 16px;
}
@media screen and (max-width: 450px) {
  .menberWrap .menberInner img {
    height: auto;
    width: 56px;
  }
}
.menberWrap .menberInner p {
  align-self: center;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .menberWrap .menberInner p {
    font-size: 1.4rem;
  }
}
.menberWrap .menberInner p span {
  font-size: 1.2rem;
  font-weight: 600;
}
.menberWrap::after {
  content: "";
  display: block;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .menberWrap::after {
    width: 48%;
  }
}
@media screen and (max-width: 450px) {
  .menberWrap::after {
    width: 100%;
  }
}

/* SAKUHIN
=========================================*/
.youtube-wrapper {
  aspect-ratio: 16/9;
  width: 100%;
}
.youtube-wrapper iframe {
  height: 100%;
  width: 100%;
  pointer-events: auto;
}

/* ヒーローセクション内だけに限定するのが安全 */
.videoWrap .inner {
  pointer-events: none;
  padding-top: 20px;
}

.sakuhinCopyright {
  position: relative;
  margin-top: 16px;
  padding: 0 0 16px 20px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .sakuhinCopyright {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinCopyright {
    padding-left: 20px;
  }
}
.sakuhinCopyright p {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .sakuhinCopyright p {
    font-size: 1.2rem;
  }
}

.sakuhinWrap {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  padding: 80px 0;
}
@media screen and (max-width: 880px) {
  .sakuhinWrap {
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
.sakuhinWrap .sakuhinImg {
  position: relative;
}
@media screen and (max-width: 880px) {
  .sakuhinWrap .sakuhinImg {
    display: flex;
    flex-wrap: wrap;
    padding: 0 60px 40px;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinImg {
    padding: 0 20px;
  }
}
.sakuhinWrap .sakuhinImg .sakuhinTate {
  color: #ea333d;
  transform: rotate(90deg);
  position: absolute;
  top: 300px;
  left: 96px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .sakuhinWrap .sakuhinImg .sakuhinTate {
    top: 300px;
    left: 112px;
  }
}
@media screen and (max-width: 960px) {
  .sakuhinWrap .sakuhinImg .sakuhinTate {
    left: 72px;
  }
}
@media screen and (max-width: 880px) {
  .sakuhinWrap .sakuhinImg .sakuhinTate {
    transform: rotate(0deg);
    position: static;
    top: auto;
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinImg .sakuhinTate {
    transform: rotate(0deg);
    position: static;
    top: auto;
    left: auto;
  }
}
.sakuhinWrap .sakuhinImg .sakuhinImgTate {
  width: 344px;
}
@media screen and (max-width: 960px) {
  .sakuhinWrap .sakuhinImg .sakuhinImgTate {
    width: 264px;
  }
}
@media screen and (max-width: 880px) {
  .sakuhinWrap .sakuhinImg .sakuhinImgTate {
    display: none;
  }
}
.sakuhinWrap .sakuhinImg .sakuhinImgTate img {
  border-radius: 20px;
  width: 344px;
  height: 736px;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .sakuhinWrap .sakuhinImg .sakuhinImgTate img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media screen and (max-width: 960px) {
  .sakuhinWrap .sakuhinImg .sakuhinImgTate img {
    width: 264px;
  }
}
@media screen and (max-width: 880px) {
  .sakuhinWrap .sakuhinImg .sakuhinImgTate img {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinImg .sakuhinImgTate img {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    height: auto;
    width: 100%;
  }
}
.sakuhinWrap .sakuhinTxt {
  align-self: center;
  margin: 0 0 0 120px;
  padding: 0 20px 0 0;
}
@media screen and (max-width: 1024px) {
  .sakuhinWrap .sakuhinTxt {
    margin: 0 0 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinTxt {
    margin: 0;
    padding: 0 20px;
  }
}
.sakuhinWrap .sakuhinTxt h3 {
  color: #222;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4em;
  text-align: left;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .sakuhinWrap .sakuhinTxt h3 {
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sakuhinWrap .sakuhinTxt h3 {
    font-size: 2.8rem;
    margin: 32px 0;
  }
}
@media screen and (max-width: 500px) {
  .sakuhinWrap .sakuhinTxt h3 {
    font-size: 2rem;
    line-height: 1.6em;
    margin-bottom: 56px;
  }
}
.sakuhinWrap .sakuhinTxt h3 span {
  font-size: 1.8rem;
}
@media screen and (max-width: 500px) {
  .sakuhinWrap .sakuhinTxt h3 span {
    font-size: 1.4rem;
  }
}
.sakuhinWrap .sakuhinTxt p {
  font-size: 1.6rem;
  line-height: 2em;
  text-align: left;
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap {
  display: flex;
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap .inner {
  width: 50%;
}
@media screen and (max-width: 1400px) {
  .sakuhinWrap .sakuhinTxt .creditTxtWrap .inner {
    padding: 0;
  }
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap .inner p {
  font-size: 1.4rem;
  margin: 8px 0 40px;
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap .staffInner {
  padding: 0 20px;
  margin: 44px 0 0;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .sakuhinWrap .sakuhinTxt .creditTxtWrap .staffInner {
    padding: 0;
  }
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 0;
  white-space: nowrap;
}
@media screen and (max-width: 592px) {
  .sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList {
    margin: 12px 0 0;
  }
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList dt,
.sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList dd {
  color: #444;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 16px 8px;
  text-align: left;
}
@media screen and (max-width: 592px) {
  .sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList dt,
  .sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList dd {
    font-size: 1.4rem;
  }
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList dt {
  border-bottom: 1px solid #fff;
  font-weight: bold;
  width: 55%;
}
@media screen and (max-width: 592px) {
  .sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList dt {
    border-bottom: none;
    padding: 8px 8px 0;
    width: 100%;
  }
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList dd {
  border-bottom: 1px solid #fff;
  width: 45%;
}
@media screen and (max-width: 592px) {
  .sakuhinWrap .sakuhinTxt .creditTxtWrap dl.creditList dd {
    padding: 0 8px 8px;
    width: 100%;
  }
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap dl.kosokosoList dt:first-child {
  border-top: none;
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap dl.kosokosoList dt:first-child + dd {
  border-top: none;
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap .creditTitle {
  color: #40a8a7;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: left;
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap .menberWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap .menberWrap .menberInner {
  width: 48%;
}
@media screen and (max-width: 470px) {
  .sakuhinWrap .sakuhinTxt .creditTxtWrap .menberWrap .menberInner {
    width: 100%;
  }
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap .menberWrap::after {
  content: "";
  display: block;
  width: 48%;
}
@media screen and (max-width: 470px) {
  .sakuhinWrap .sakuhinTxt .creditTxtWrap .menberWrap::after {
    width: 100%;
  }
}
.sakuhinWrap .sakuhinTxt .creditTxtWrap .staffInner .menberWrap p {
  line-height: 1.2em;
}

.staffDarkTxt p {
  color: #fff;
}

/* YouTube TOP
=========================================*/
/* 背景動画エリア（固定しない） */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: all 0.6s ease;
}

/* センター表示モード */
.video-container.centered {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  z-index: 1000;
}

.video-container.centered #player {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 45vw;
  max-height: 80vh;
  transform: translate(-50%, -50%);
}

.video-container.centered .overlay {
  opacity: 0;
  pointer-events: none;
}

.video-container.centered .play-button {
  opacity: 0;
  pointer-events: none;
}

/* 背景モード */
#player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  transition: all 0.6s ease;
}

@media (min-aspect-ratio: 16/9) {
  #player {
    width: 100%;
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  #player {
    width: 177.77778vh;
    height: 100vh;
  }
}
#player iframe {
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.6s ease;
  z-index: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: #ff0000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
  padding: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button svg {
  width: 40px;
  height: 40px;
  margin-left: 5px;
  display: block;
  stroke: none;
  border: none;
  outline: none;
}

.play-button svg polygon {
  stroke: none;
  stroke-width: 0;
  fill: #fff;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 0, 0, 0.6);
}

.play-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* スクロールするコンテンツエリア */
.content-area {
  position: relative;
  background-color: #fff;
  padding: 60px 20px;
  min-height: 100vh;
}

.content-area h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.content-area p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* webバージョン */
/* 背景画像エリア（固定しない） */
.image-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.6s ease;
  z-index: 1;
}

.link-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: #ff0000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
  padding: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-button svg {
  width: 40px;
  height: 40px;
  display: block;
}

.link-button svg path,
.link-button svg polyline,
.link-button svg line {
  stroke: #fff;
  fill: none;
}

.link-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 0, 0, 0.6);
}

.link-button:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* スクロールするコンテンツエリア */
.content-area {
  position: relative;
  background-color: #fff;
  padding: 60px 20px;
  min-height: 100vh;
}

.content-area h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.content-area p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* FOOTER
=========================================*/
footer {
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 70%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  padding: 208px 0 120px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 240px 0 60px;
  }
}
footer .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .inner .footerLogo {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .inner .footerLogo {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
footer .inner .footerLogo img {
  height: auto;
  width: 50%;
}
footer .inner .footerDetail {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .inner .footerDetail {
    width: 100%;
  }
}
footer .inner .footerDetail dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  footer .inner .footerDetail dl {
    margin-bottom: 0;
    padding: 64px 0;
  }
}
footer .inner .footerDetail dl dt {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 0 16px;
  width: 180px;
}
@media screen and (max-width: 768px) {
  footer .inner .footerDetail dl dt {
    font-size: 1.6rem;
    margin: 0 0 4px;
    width: 100%;
  }
}
footer .inner .footerDetail dl dd {
  font-size: 1.4rem;
  line-height: 1.6em;
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  footer .inner .footerDetail dl dd {
    width: 100%;
  }
}
footer .inner .fotterBottom {
  display: flex;
  flex-wrap: wrap;
}
footer .inner .fotterBottom .iconYouTube {
  background-color: #ea333d;
  border-radius: 16px;
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .inner .fotterBottom .iconYouTube {
    margin: 0 auto;
  }
}
footer .inner .fotterBottom .iconYouTube:hover {
  border-radius: 50%;
  opacity: 1;
}
footer .inner .fotterBottom .iconYouTube .triangle {
  background: #ffffff;
  height: 13.8564064606px;
  width: 16px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(90deg);
  margin: 0 0 0 2px;
}
footer .inner .fotterBottom small {
  align-self: center;
  font-size: 1.2rem;
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  footer .inner .fotterBottom small {
    margin: 16px 0 0;
    text-align: center;
    width: 100%;
  }
}
footer .inner a {
  color: #111;
}
footer .inner a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .masonry-section {
    padding: 60px 20px 100px;
  }
}
.masonry-section .masonry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  row-gap: 64px;
}
@media screen and (max-width: 768px) {
  .masonry-section .masonry-grid {
    row-gap: 40px;
  }
}
.masonry-section .masonry-grid .masonry-item {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.masonry-section .masonry-grid .masonry-img-wrap {
  overflow: hidden;
}
.masonry-section .masonry-grid .masonry-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.masonry-section .masonry-grid .ptn1 .masonry-img-wrap,
.masonry-section .masonry-grid .ptn6 .masonry-img-wrap {
  aspect-ratio: 1920/1080;
}
.masonry-section .masonry-grid .ptn2 .masonry-img-wrap,
.masonry-section .masonry-grid .ptn3 .masonry-img-wrap {
  aspect-ratio: 1/1;
}
.masonry-section .masonry-grid .ptn4 .masonry-img-wrap,
.masonry-section .masonry-grid .ptn5 .masonry-img-wrap {
  aspect-ratio: 1190/1684;
}
.masonry-section .masonry-grid .ptn1 {
  align-self: center;
  width: 46%;
}
@media screen and (max-width: 768px) {
  .masonry-section .masonry-grid .ptn1 {
    width: 100%;
  }
}
.masonry-section .masonry-grid .ptn2 {
  align-self: flex-end;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .masonry-section .masonry-grid .ptn2 {
    margin-top: 24px;
    width: 46%;
  }
}
.masonry-section .masonry-grid .ptn3 {
  align-self: flex-start;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .masonry-section .masonry-grid .ptn3 {
    width: 46%;
  }
}
.masonry-section .masonry-grid .ptn4 {
  align-self: flex-start;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .masonry-section .masonry-grid .ptn4 {
    width: 46%;
  }
}
.masonry-section .masonry-grid .ptn5 {
  align-self: center;
  margin-top: 32px;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .masonry-section .masonry-grid .ptn5 {
    margin-top: 48px;
    width: 46%;
  }
}
.masonry-section .masonry-grid .ptn6 {
  align-self: center;
  width: 46%;
}
@media screen and (max-width: 768px) {
  .masonry-section .masonry-grid .ptn6 {
    width: 100%;
  }
}

/* blank */
.pcBlank {
  display: none;
}

@media screen and (max-width: 450px) {
  .pcBlank {
    display: block;
  }
}
.spBlank {
  display: block;
}

@media screen and (max-width: 450px) {
  .spBlank {
    display: none;
  }
}
.pcBlankTab {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcBlankTab {
    display: block;
  }
}
.tabBlank {
  display: block;
}

@media screen and (max-width: 768px) {
  .tabBlank {
    display: none;
  }
}
.pcBlankSpc {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pcBlankSpc {
    display: block;
  }
}
.spcBlank {
  display: block;
}

@media screen and (max-width: 1024px) {
  .spcBlank {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */