@charset "UTF-8";
main {
  font-family: "Noto Sans JP", serif;
  position: relative;
}

.header__mv {
  position: relative;
}

.header {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 67px;
  background: transparent;
  font-family: "Jost", serif;
  z-index: 999999;
}
.header__logo {
  width: 27.56rem;
  padding-left: 2.5vw;
  padding-top: 1.8vw;
}
.header__nav ul {
  display: flex;
  height: 100%;
}
.header__nav ul li {
  margin-right: 7vw;
  height: 100%;
}
.header__nav ul li a {
  display: block;
  padding: 3vw 0 1.5vw 0;
  font-size: 13px;
}
.header__nav ul li a:hover {
  border-bottom: 2px solid;
}
.header__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .header__nav {
    display: none;
  }
  .header__sp {
    display: block;
  }
  .header__sp .menuBlock {
    position: fixed;
    top: 0;
    right: -120%;
    width: 50%;
    background: #fff;
    z-index: 1000;
    transition: all 0.6s ease 0s;
  }
  .header__sp .menuBlock.active {
    width: 80%;
    right: 0;
  }
  .header__sp .menuBlock .btnMenu {
    display: block;
    position: fixed;
    top: 5rem;
    right: 4rem;
    z-index: 10;
    cursor: pointer;
  }
  .header__sp .btnMenu p {
    display: block;
    position: relative;
    width: 8rem;
    height: 5rem;
  }
  .header__sp .btnMenu span {
    transition: all 0.4s ease 0s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    z-index: 11;
  }
  .header__sp .btnMenu span:nth-of-type(1) {
    top: 1rem;
  }
  .header__sp .btnMenu span:nth-of-type(2) {
    top: 3rem;
  }
  .header__sp .btnMenu.active span:nth-of-type(1) {
    top: 5px;
    left: 1.3rem;
    transform: translateY(6px) rotate(-45deg);
    width: 70%;
  }
  .header__sp .btnMenu.active span:nth-of-type(2) {
    top: 17px;
    left: 1.3rem;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
  }
  .header__sp .menuBox {
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    padding: 14rem 4rem 16rem;
    transform: translateY(10px);
    transition: all 0.4s linear 0.8s;
  }
  .header__sp .menuBlock.active .menuBox {
    opacity: 1;
    transform: translateY(0);
  }
  .header__sp .menuBox .menuBoxInner > ul {
    flex-direction: column;
    font-size: 4.2rem;
    font-weight: bold;
    width: 100%;
  }
  .header__sp .menuBox .menuBoxInner > ul > li {
    width: 100%;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: solid 1px #000;
    font-size: 3.2rem;
    text-align: left;
  }
  .header__sp .menuBox .menuBoxInner > ul > li .jp {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.9rem;
    font-weight: 500;
    font-family: "Noto Sans CJK JP", sans-serif;
    font-feature-settings: "palt";
    letter-spacing: 0;
  }
  .header__sp .menuBox .menuBoxInner .menuWorks > p {
    position: relative;
  }
  .header__sp .menuBox .menuBoxInner .menuWorks > p::before,
  .header__sp .menuBox .menuBoxInner .menuWorks > p::after {
    display: block;
    content: "";
    width: 3.5rem;
    height: 0.2rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    background: #000;
    transition: all 0.6s;
  }
  .header__sp .menuBox .menuBoxInner .menuWorks > p::before {
    transform: rotate(90deg);
  }
  .header__sp .menuBox .menuBoxInner .menuWorks > p.open::before {
    transform: rotate(0);
  }
  .header__sp .menuBox .menuBoxInner .menuWorks ul {
    margin-top: 3rem;
  }
  .header__sp .menuBox .menuBoxInner .menuWorks ul li {
    /* padding-left: 7rem; */
    padding-bottom: 2.5rem;
    line-height: 1.3;
  }
  .header__sp .menuBox .menuBoxInner .menuWorks ul li:first-child {
    padding-top: 1em;
    border-top: solid 1px #000;
  }
  .header__sp .menuBox .menuBoxInner .menuWorks ul li span:nth-child(2) {
    font-size: 1.9rem;
  }
}

.mv {
  height: 1000px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: -1;
  animation: bggradient 15s ease infinite;
}

.scroll {
  position: absolute;
  right: 0;
  top: 80vh;
  width: 45px;
  height: 80px;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .scroll {
    top: 50vh;
  }
}
@media screen and (max-width: 499px) {
  .scroll {
    width: 8vw;
    height: 21.3333333333vw;
    font-size: 2.4vw;
  }
}
.scroll__inner {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: left;
}

.scroll .scroll__border {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #000;
  animation: line 2s ease-in-out infinite;
}

.scroll p {
  position: absolute;
  top: 0;
  left: 1.5em;
  font-size: 10px;
  font-family: "Helvetica Neue", Helvetica, Roboto, sans-serif;
  transform-origin: top left;
  transform: rotate(90deg);
  letter-spacing: 0;
}

@keyframes line {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  49% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  to {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
.blur {
  transition: filter 2s;
  filter: blur(2px);
  transition: filter 0.5s;
}

.blur._animated {
  filter: blur(0px);
}

._zoom {
  transition: transform 5s;
  transition-delay: 0.5s;
  transform: scale(1.1);
}

._zoom._zoomanimated {
  transform: scale(1);
}

@keyframes hero-gradient-animation {
  0% {
    --x-0: 85%;
    --y-0: 80%;
    --c-0: hsla(150.8823529411765, 52%, 83%, 1);
    --s-start-0: 9%;
    --s-end-0: 55%;
    --x-1: 60%;
    --s-start-1: 5%;
    --s-end-1: 72%;
    --y-1: 24%;
    --c-1: hsla(219.99999999999997, 100%, 82%, 1);
    --s-start-2: 5%;
    --s-end-2: 52%;
    --c-2: hsla(297.7941176470588, 100%, 65%, 0.49);
    --x-2: 13%;
    --y-2: 82%;
    --s-start-3: 13%;
    --s-end-3: 68%;
    --y-3: 7%;
    --c-3: hsla(182, 72%, 68%, 1);
    --x-3: 24%;
    --s-start-4: 13%;
    --s-end-4: 68%;
    --y-4: 7%;
    --c-4: hsla(55.36363636363636, 94%, 54%, 1);
    --x-4: 24%;
    --s-start-5: 13%;
    --s-end-5: 68%;
    --y-5: 7%;
    --c-5: hsla(55.36363636363636, 0%, 100%, 1);
    --x-5: 24%;
  }
  100% {
    --x-0: 31%;
    --y-0: 94%;
    --c-0: hsla(150.88235294117536, 0%, 100%, 1);
    --s-start-0: 9%;
    --s-end-0: 55%;
    --x-1: 2%;
    --s-start-1: 5%;
    --s-end-1: 72%;
    --y-1: 25%;
    --c-1: hsla(220, 82%, 95%, 1);
    --s-start-2: 5%;
    --s-end-2: 52%;
    --c-2: hsla(297.7941176470588, 0%, 100%, 1);
    --x-2: 98%;
    --y-2: 20%;
    --s-start-3: 13%;
    --s-end-3: 68%;
    --y-3: 92%;
    --c-3: hsla(182, 72%, 68%, 1);
    --x-3: 95%;
    --s-start-4: 13%;
    --s-end-4: 68%;
    --y-4: 92%;
    --c-4: hsla(55.36363636363636, 0%, 100%, 1);
    --x-4: 95%;
    --s-start-5: 13%;
    --s-end-5: 68%;
    --y-5: 92%;
    --c-5: hsla(55.36363636363636, 0%, 100%, 1);
    --x-5: 95%;
  }
}
@property --x-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 85%;
}
@property --y-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 80%;
}
@property --c-0 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(150.8823529412, 52%, 83%);
}
@property --s-start-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 9%;
}
@property --s-end-0 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 55%;
}
@property --x-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 60%;
}
@property --s-start-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 5%;
}
@property --s-end-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 72%;
}
@property --y-1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 24%;
}
@property --c-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(220, 100%, 82%);
}
@property --s-start-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 5%;
}
@property --s-end-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 52%;
}
@property --c-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsla(297.7941176471, 100%, 65%, 0.49);
}
@property --x-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 13%;
}
@property --y-2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 82%;
}
@property --s-start-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 13%;
}
@property --s-end-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 68%;
}
@property --y-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 7%;
}
@property --c-3 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(182, 72%, 68%);
}
@property --x-3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 24%;
}
@property --s-start-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 13%;
}
@property --s-end-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 68%;
}
@property --y-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 7%;
}
@property --c-4 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(55.3636363636, 94%, 54%);
}
@property --x-4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 24%;
}
@property --s-start-5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 13%;
}
@property --s-end-5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 68%;
}
@property --y-5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 7%;
}
@property --c-5 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(55.3636363636, 0%, 100%);
}
@property --x-5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 24%;
}
.mv__animation {
  --x-0: 85%;
  --y-0: 80%;
  --c-0: hsla(150.8823529411765, 52%, 83%, 1);
  --x-1: 60%;
  --y-1: 24%;
  --c-1: hsla(219.99999999999997, 100%, 82%, 1);
  --c-2: hsla(297.7941176470588, 100%, 65%, 0.49);
  --x-2: 13%;
  --y-2: 82%;
  --y-3: 7%;
  --c-3: hsla(182, 72%, 68%, 1);
  --x-3: 24%;
  --y-4: 7%;
  --c-4: hsla(55.36363636363636, 94%, 54%, 1);
  --x-4: 24%;
  --y-5: 7%;
  --c-5: hsla(55.36363636363636, 0%, 100%, 1);
  --x-5: 24%;
  background-color: hsl(358, 0%, 100%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1415 1415' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"), radial-gradient(circle at var(--x-0) var(--y-0), var(--c-0) var(--s-start-0), transparent var(--s-end-0)), radial-gradient(circle at var(--x-1) var(--y-1), var(--c-1) var(--s-start-1), transparent var(--s-end-1)), radial-gradient(circle at var(--x-2) var(--y-2), var(--c-2) var(--s-start-2), transparent var(--s-end-2)), radial-gradient(circle at var(--x-3) var(--y-3), var(--c-3) var(--s-start-3), transparent var(--s-end-3)), radial-gradient(circle at var(--x-4) var(--y-4), var(--c-4) var(--s-start-4), transparent var(--s-end-4)), radial-gradient(circle at var(--x-5) var(--y-5), var(--c-5) var(--s-start-5), transparent var(--s-end-5));
  animation: hero-gradient-animation 5s linear infinite alternate;
  background-blend-mode: overlay, normal, normal, normal, normal, normal, normal;
}

.mv__inner {
  height: 19.2vw;
  width: 90%;
  margin: auto;
  position: absolute;
  top: -10%;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 5;
}
@media screen and (min-width: 1400px) {
  .mv__inner {
    height: 370px;
  }
}
@media screen and (max-width: 768px) {
  .mv__inner {
    height: 19.53125vw;
    top: -6%;
  }
}
.catch {
  font-size: 5.6vw;
  letter-spacing: 0.2em;
  font-weight: 950;
  line-height: 1.4;
  padding-bottom: 1em;
  text-align: center;
  line-height: 1.3;
}
.catch span {
  display: block;
  font-size: 3.6vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1400px) {
  .catch span {
    font-size: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .catch {
    font-size: 80px;
  }
}

.mv__txt {
  font-size: 1.9vw;
  letter-spacing: 1px;
  font-weight: 800;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .mv__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .mv__txt {
    font-size: 3.2986111111vw;
  }
}

.mv__work {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv__work {
    bottom: -25%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work {
    bottom: 0;
    top: 9%;
  }
}

.mv__work .hidden {
  opacity: 0;
}
.mv__work .itemPic {
  margin: auto;
}
.mv__work img {
  opacity: 0.8;
  -o-object-fit: contain;
     object-fit: contain;
}
.mv__work .img1 {
  position: absolute;
  width: 20%;
  position: absolute;
  top: 14%;
  max-width: 300px;
  min-width: 120px;
}
@media screen and (max-width: 768px) {
  .mv__work .img1 {
    top: 14%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work .img1 {
    top: 12%;
  }
}
.mv__work .img2 {
  width: 38%;
  position: absolute;
  left: 47%;
  top: 10%;
  max-width: 310px;
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  .mv__work .img2 {
    top: 14%;
    left: 41%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work .img2 {
    top: 8%;
  }
}
.mv__work .img3 {
  width: 15%;
  position: absolute;
  right: 2%;
  top: 14%;
  max-width: 200px;
  min-width: 90px;
}
@media screen and (max-width: 768px) {
  .mv__work .img3 {
    top: 14%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work .img3 {
    top: 17%;
  }
}
.mv__work .img4 {
  position: absolute;
  top: 64%;
  left: 16%;
  width: 20%;
  max-width: 240px;
  min-width: 120px;
}
@media screen and (max-width: 768px) {
  .mv__work .img4 {
    top: 67%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work .img4 {
    top: 55%;
  }
}
.mv__work .img5 {
  position: absolute;
  top: 52%;
  left: 2%;
  width: 20%;
  max-width: 330px;
  min-width: 110px;
}
@media screen and (max-width: 768px) {
  .mv__work .img5 {
    top: 55%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work .img5 {
    top: 45%;
  }
}
.mv__work .img6 {
  position: absolute;
  top: 60%;
  left: 39%;
  width: 20%;
  max-width: 340px;
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  .mv__work .img6 {
    top: 60%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work .img6 {
    top: 46%;
  }
}
.mv__work .img7 {
  position: absolute;
  top: 70%;
  right: 26%;
  width: 12%;
  max-width: 200px;
  min-width: 70px;
}
@media screen and (max-width: 768px) {
  .mv__work .img7 {
    top: 72%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work .img7 {
    top: 62%;
  }
}
.mv__work .img8 {
  position: absolute;
  top: 56%;
  right: 6%;
  width: 15%;
  max-width: 230px;
  min-width: 70px;
}
@media screen and (max-width: 768px) {
  .mv__work .img8 {
    top: 56%;
  }
}
@media screen and (max-width: 576px) {
  .mv__work .img8 {
    top: 50%;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.works {
  width: 100%;
  min-height: 100px;
}

.works__section {
  min-height: 600px;
  position: relative;
}

.works p {
  text-align: center;
}

.works__logo {
  text-align: center;
  width: 100%;
  padding-bottom: 9vw;
}
.works__logo img {
  padding-bottom: 0.8rem;
}
.works__logo__sub {
  font-size: 1vw;
}
.works__logo--sticky {
  position: sticky;
  top: 0;
  min-height: 7vw;
  width: 100%;
  z-index: 10;
  padding-top: 1vw;
  padding-bottom: 1vw;
  background: #fff;
}
.works__logo--design {
  background-color: #fff;
}
.works__logo--web {
  background-color: #DBDCDC;
}
.works__logo--space {
  background-color: #DCC7CB;
}
.works__logo--movie {
  background-color: #C4D4DE;
}
.works__logo--editorial {
  background-color: #DAD2BE;
}
.works__logo--editorial .works__logo__sub {
  padding-bottom: 1.5em;
  font-size: 1.4vw;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .works__logo--editorial .works__logo__sub {
    font-size: 14px;
  }
}

.works__catch {
  font-size: 3.416vw;
  font-weight: 800;
  padding-top: 6vw;
  padding-bottom: 3.4vw;
  line-height: 1.3;
}
.works__catch span {
  font-size: 5.3vw;
  font-weight: 950;
}

.works__txt {
  font-size: 1.8vw;
  padding-bottom: 3.4vw;
  line-height: 1.4;
}
.works__txt2 {
  font-size: 1.2vw;
  padding-bottom: 3.4vw;
}

.works__img {
  max-width: 1000px;
  margin: 0 auto;
}
.works__img img {
  display: block;
  margin: auto;
}
.works__img--flex {
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
}
.works__img--flex img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.works__img--design {
  max-width: calc(920px + 7.6vw);
  margin: 0 auto;
}
.works__img--design .works__img--flex {
  gap: 5%;
  margin-right: 3.8vw;
  margin-left: 3.8vw;
}
.works__img--design .itemPic.img1 {
  width: 33.75%;
  height: auto;
}
.works__img--design .itemPic.img2 {
  width: 61.25%;
  height: auto;
}
.works__img--design .itemPic::before {
  width: calc(100% - 14vw);
}
.works__img--web {
  max-width: calc(920px + 7.6vw);
  margin: 0 auto;
}
.works__img--web .works__img--flex {
  margin-right: 3.8vw;
  margin-left: 3.8vw;
}
.works__img--web .works__img--flex img {
  width: 100%;
  height: auto;
}
.works__img--space {
  max-width: calc(920px + 7.6vw);
  margin: 0 auto;
}
.works__img--space .works__img--flex {
  gap: 3.2%;
  margin-bottom: 3.2%;
  margin-right: 3.8vw;
  margin-left: 3.8vw;
}
.works__img--space .itemPic.img1 {
  width: 48.38%;
  height: auto;
}
.works__img--space .itemPic.img2 {
  width: 48.38%;
  height: auto;
}
.works__img--space .itemPic.img3 {
  max-width: 920px;
  margin-right: 3.8vw;
  margin-left: 3.8vw;
}
.works__img--space .itemPic.img3 img {
  width: 100%;
  height: auto;
}
.works__img--movie {
  max-width: calc(920px + 7.6vw);
  margin: 0 auto;
}
.works__img--movie .itemPic.img1 {
  max-width: 920px;
  margin-right: 3.8vw;
  margin-left: 3.8vw;
}
.works__img--movie .itemPic.img1 img {
  width: 100%;
  height: auto;
}
.works__img--movie .works__img--flex {
  gap: 2.7%;
  margin-top: 2.7%;
  margin-right: 3.8vw;
  margin-left: 3.8vw;
}
.works__img--movie .itemPic.img2 {
  width: 48.5%;
  height: auto;
}
.works__img--movie .itemPic.img3 {
  width: 48.5%;
  height: auto;
}
.works__img--editorial {
  max-width: calc(920px + 7.6vw);
  margin: 0 auto;
}
.works__img--editorial .works__img--flex:first-child {
  margin-top: 0;
  margin-right: 3.8vw;
  margin-left: 3.8vw;
}
.works__img--editorial .itemPic.img1 {
  max-width: calc(522px + 7.6vw);
  margin: 0 auto;
  text-align: center;
}
.works__img--editorial .itemPic.img1 img {
  width: 100%;
  height: auto;
}
.works__img--editorial .works__img--flex:last-child {
  gap: 4.8%;
  margin-top: 4.8%;
  margin-right: 3.8vw;
  margin-left: 3.8vw;
}
.works__img--editorial .itemPic.img2 {
  width: 38%;
  height: auto;
}
.works__img--editorial .itemPic.img3 {
  width: 38%;
  height: auto;
}
.works__img--editorial .itemPic.img4 {
  width: 19%;
  height: auto;
}

.design {
  padding-top: 9vw;
  padding-bottom: 13vw;
}

.web {
  background: #DBDCDC;
  padding-top: 10.3vw;
  padding-bottom: 8.7vw;
}

.space {
  background: #DCC7CB;
  padding-top: 9.9vw;
  padding-bottom: 9vw;
}

.movie {
  background: #C4D4DE;
  padding-top: 7.1vw;
  padding-bottom: 9.7vw;
}

.editorial {
  background: #DAD2BE;
  padding-top: 7.3vw;
  padding-bottom: 9.6vw;
}
.editorial .works__catch {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .mv {
    height: 60vh;
    min-height: 614px;
  }
  .design,
  .web,
  .space,
  .movie,
  .editorial {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .works__section {
    min-height: 470px;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
  .works__logo__sub {
    font-size: 10px;
  }
  .works__txt {
    font-size: 14px;
  }
  .works__txt2 {
    font-size: 10px;
    line-height: 1.4;
  }
}
.owned_media {
  background-color: #FFF;
  width: 76vw;
  margin: 0 auto;
  border-radius: 120px;
  padding: 1em;
  margin-top: 5.5vw;
  margin-bottom: 5.5vw;
}
.owned_media .works__txt {
  padding-bottom: 0;
  font-weight: 800;
}
.owned_media .works__txt2 {
  padding-bottom: 0;
  line-height: 1.6;
}

@keyframes bright {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 1;
  }
}
@keyframes imgLeft {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
.picBox {
  position: relative;
}

.picBox .itemPic {
  color: transparent;
  display: block;
  overflow: hidden;
  position: relative;
  transition: color 0ms 500ms;
}

.picBox .itemPic::before {
  background: linear-gradient(45deg, #ebedee, #e0c3fc, #fffbdf, #8ec5fc, #ebedee);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.picBox .itemPic img {
  opacity: 0;
  transition: 2s cubic-bezier(0.8, 0, 0.17, 1);
}

.picBox .itemPic.picAnime img {
  opacity: 1;
}

.picBox .itemPic.picAnime::before {
  animation: load-bg 1.5s cubic-bezier(0.8, 0, 0.17, 1);
  z-index: 5;
}

@keyframes load-bg {
  0% {
    transform: translate(101%, 0);
  }
  40%, 60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.picBox .itemPic.picAnime img {
  opacity: 1;
}

.picBox .itemPic::before {
  background: linear-gradient(to right, rgba(193, 228, 235, 0.8) 0%, rgba(255, 241, 251, 0.8) 100%);
}

.picBox .itemPic.picAnime img {
  opacity: 1;
}

.picBox .itemPic.picAnime::before {
  animation: load-bg 1.5s cubic-bezier(0.8, 0, 0.17, 1);
  z-index: 5;
}

@keyframes load-bg {
  0% {
    transform: translate(101%, 0);
  }
  40%, 60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.picBox .itemPic.picAnime img {
  opacity: 1;
}

/* リセット */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.button_area {
  padding-top: max(30px, 3vw);
  width: 100%;
}

button {
  display: block;
  margin: 0 auto;
  width: 90%;
}

/* ボタンのスタイル */
button a {
  position: relative;
  display: block;
  max-width: 280px;
  width: 100%;
  padding: 15px 0;
  background-color: #E7290F;
  border-radius: 80px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
}

/* アイコンのスタイル */
.button__arrow a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.5s 0s ease;
}

.button__arrow a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #E7290F;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
  transition: all 0.5s 0s ease;
}

button a:hover::before {
  right: 16px;
}

button a:hover::after {
  right: 21px;
}

@media screen and (max-width: 768px) {
  .button_area {
    padding-top: 30px;
  }
}
.sp__br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp__br {
    display: block;
  }
}/*# sourceMappingURL=style2.css.map */