@charset "UTF-8";
/* utilities */
.color-primary {
  color: #ffffff;
}

.color-secondary {
  color: #363636;
}

.color-keycolor {
  color: #0074af;
}

.color-red {
  color: #df6d70;
}

.color-blue {
  color: #12b9eb;
}

.color-yellow {
  color: #f5bc3b;
}

.color-purple {
  color: #735cdd;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 788px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 788px) {
  .sp-only {
    display: block;
  }
}

.u-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.u-grid[direction=reverse] {
  flex-direction: row-reverse;
}

/* layout */
/* key visual */
.p-catch {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
  margin-top: -35px;
}
@media screen and (max-width: 788px) {
  .p-catch {
    margin-top: -28px;
  }
}

.c-catch-ja {
  font-size: 18px;
  font-weight: 700;
}

.c-catch-text {
  color: #363636;
  font-weight: 900;
  font-size: 120px;
  letter-spacing: 0.8rem;
  line-height: 1;
  margin-bottom: 10px;
  margin-top: 20px;
  text-shadow: 1px 1px 0px #ffffff, -1px -1px 0px #ffffff, -1px 1px 0px #ffffff, 1px -1px 0px #ffffff, 1px 0px 0px #ffffff, -1px 0px 0px #ffffff, 0px 1px 0px #ffffff, 0px -1px 0px #ffffff;
}
@media screen and (max-width: 788px) {
  .c-catch-text {
    font-size: 16vw;
    letter-spacing: 0.3rem;
  }
}

.c-catch-sub {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.2rem;
}

.p-keyvisual {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}
@media screen and (max-width: 788px) {
  .p-keyvisual {
    margin-top: 56px;
  }
}

.slideshow {
  display: flex;
  overflow: hidden;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  opacity: 0;
  height: 100vh;
}

.slideshow.in {
  -webkit-animation: in 1s ease-in both;
          animation: in 1s ease-in both;
}

.slideshow > img {
  max-width: 140px;
  width: 10%;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 788px) {
  .slideshow > img {
    width: 30%;
  }
}

@-webkit-keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#particles-js {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
}

.is-about .c-illust-cr {
  background-color: #df6d70;
  margin: 0 auto;
  color: #ffffff;
  font-size: 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  transform: translateX(-110px);
}
@media screen and (max-width: 788px) {
  .is-about .c-illust-cr {
    width: 140px;
    height: 140px;
    transform: translateX(-55%);
  }
}
.is-about .c-illust-times {
  position: relative;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
}
.is-about .c-illust-times::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #0074af;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.is-about .c-illust-times::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #df6d70;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.is-about .c-illust-uuum {
  background-color: #0074af;
  margin: 0 auto;
  color: #ffffff;
  font-size: 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  transform: translateX(110px);
}
@media screen and (max-width: 788px) {
  .is-about .c-illust-uuum {
    width: 140px;
    height: 140px;
    transform: translateX(55%);
  }
}

.is-solution .c-illust-cr {
  background-color: #df6d70;
  margin: 0 auto;
  color: #ffffff;
  font-size: 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
}

/* Common
---------------------------------------------------------------*/
.c-section-title {
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 788px) {
  .c-section-title {
    font-size: 50px;
  }
}
.c-section-title p {
  font-size: 20px;
  margin-top: 16px;
}

.c-primary-text {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.4;
}
@media screen and (max-width: 788px) {
  .c-primary-text {
    font-size: 14px;
  }
}

.c-primary-btn {
  transition: all ease-out 0.25s;
}
.c-primary-btn > * {
  display: inline-block;
  background-color: #000000;
  padding: 14px 45px;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  text-align: center;
  border-radius: 30px;
}
@media screen and (max-width: 788px) {
  .c-primary-btn > * {
    display: block;
  }
}
.c-primary-btn.is-external > * {
  position: relative;
  padding: 14px 65px 14px 55px;
}
.c-primary-btn.is-external > *::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023%2023%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M21.5%2C13A1.5%2C1.5%2C0%2C0%2C0%2C20%2C14.5V20H3V3H8.5a1.5%2C1.5%2C0%2C0%2C0%2C0-3H2.64A2.65%2C2.65%2C0%2C0%2C0%2C0%2C2.64V20.36A2.65%2C2.65%2C0%2C0%2C0%2C2.64%2C23H20.36A2.65%2C2.65%2C0%2C0%2C0%2C23%2C20.36V14.5A1.5%2C1.5%2C0%2C0%2C0%2C21.5%2C13Z%22%2F%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M22.28.84h0A2.62%2C2.62%2C0%2C0%2C0%2C20.36%2C0H14.5a1.5%2C1.5%2C0%2C0%2C0%2C0%2C3H18l-7.64%2C7.64a1.49%2C1.49%2C0%2C0%2C0%2C0%2C2.12%2C1.5%2C1.5%2C0%2C0%2C0%2C2.12%2C0L20%2C5.23V8.5a1.5%2C1.5%2C0%2C0%2C0%2C3%2C0V2.64A2.67%2C2.67%2C0%2C0%2C0%2C22.28.84Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.c-primary-btn:hover {
  opacity: 0.8;
  transition: all ease-out 0.25s;
}

.c-horizon-text {
  font-size: 210px;
  font-family: "brandon-grotesque";
  font-weight: 900;
  line-height: 1.167;
  text-align: left;
  color: #ffffff;
  white-space: nowrap;
  position: absolute;
  left: 0vw;
  top: 0;
  opacity: 0;
  transform-origin: center center;
  transition: opacity ease-out 0.25s;
  transform: translate(-30%, 0px);
  text-shadow: 1px 1px 0px #dadada, -1px -1px 0px #dadada, -1px 1px 0px #dadada, 1px -1px 0px #dadada, 1px 0px 0px #dadada, -1px 0px 0px #dadada, 0px 1px 0px #dadada, 0px -1px 0px #dadada;
}
@media screen and (max-width: 788px) {
  .c-horizon-text {
    font-size: 100px;
  }
}
.c-horizon-text.u-active {
  opacity: 1;
  transition: opacity ease-out 2s, transform ease-out 0.1s;
}
@media screen and (max-width: 788px) {
  .c-horizon-text.u-active {
    transition: opacity ease-out 0.25s;
  }
}

.o-goods-anchorWrap {
  position: relative;
  pointer-events: initial !important;
  z-index: 111;
}
.o-goods-anchorWrap .o-anchorMenu {
  right: -100%;
}
.o-goods-anchorWrap.is-inview {
  opacity: 1 !important;
}
.o-goods-anchorWrap.is-inview .o-anchorMenu {
  right: 0;
}

.p-section {
  /* section[about] */
  /* section[solution]
  ---------------------------------------------------------------*/
  /* section[fangoods]
  ---------------------------------------------------------------*/
  /* section[brand]
  ---------------------------------------------------------------*/
  /* section[collabo]
  ---------------------------------------------------------------*/
  /* section[muuu]
  ---------------------------------------------------------------*/
}
.p-section.is-about .p-section-inner {
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 788px) {
  .p-section.is-about .p-section-inner {
    display: block;
  }
}
.p-section.is-about .c-section-title {
  margin-bottom: 34px;
}
@media screen and (max-width: 788px) {
  .p-section.is-about .c-section-title {
    margin-bottom: 20px;
  }
}
.p-section.is-about .c-primary-text {
  line-height: 3.2;
}
@media screen and (max-width: 1024px) {
  .p-section.is-about .c-primary-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .p-section.is-about .c-primary-text {
    font-size: 3.58vw;
  }
}
.p-section.is-about .u-grid-item {
  width: 50%;
}
@media screen and (max-width: 788px) {
  .p-section.is-about .u-grid-item {
    width: 100%;
  }
}
.p-section.is-about .c-horizon-text {
  top: -150px;
  z-index: -1;
}
@media screen and (max-width: 788px) {
  .p-section.is-about .c-horizon-text {
    top: -70px;
  }
}
.p-section.is-solution .c-section-title {
  text-align: center;
  margin-bottom: 34px;
}
.p-section.is-solution .c-primary-text {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 788px) {
  .p-section.is-solution .c-primary-text {
    text-align: left;
  }
}
.p-section.is-solution .p-solution-block {
  max-width: 1060px;
  margin: 140px auto 0;
}
@media screen and (max-width: 788px) {
  .p-section.is-solution .p-solution-block {
    margin: 70px auto 0;
    position: relative;
  }
  .p-section.is-solution .p-solution-block::after {
    content: "";
    position: absolute;
    display: block;
    transform: translateX(-50%);
    left: 50%;
    top: -50px;
    width: 1px;
    height: 100%;
    z-index: -1;
    background-color: #e8e8e8;
  }
}
.p-section.is-solution .p-solution-block .u-grid {
  align-items: stretch;
}
@media screen and (max-width: 788px) {
  .p-section.is-solution .p-solution-block .u-grid {
    display: block;
  }
}
.p-section.is-solution .p-solution-block .u-grid li {
  color: #ffffff;
  width: calc(33.3333% - 20px);
  margin: 0 10px 10px;
  border-radius: 10px;
  padding: 60px 35px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-section.is-solution .p-solution-block .u-grid li {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 788px) {
  .p-section.is-solution .p-solution-block .u-grid li {
    width: 100%;
    margin: 0 0 25px;
    padding: 40px 20px;
  }
}
.p-section.is-solution .p-solution-block .u-grid li::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 1px;
  height: 80px;
  transform: translateY(-100%);
}
@media screen and (max-width: 788px) {
  .p-section.is-solution .p-solution-block .u-grid li::after {
    display: none;
  }
}
.p-section.is-solution .p-solution-block .u-grid li:nth-child(1) {
  background-color: #12b9eb;
}
.p-section.is-solution .p-solution-block .u-grid li:nth-child(1)::after {
  background-color: #12b9eb;
  transform-origin: left bottom;
  height: 160px;
  transform: translateY(-100%) rotate(60deg);
}
.p-section.is-solution .p-solution-block .u-grid li:nth-child(2) {
  background-color: #f5bc3b;
}
.p-section.is-solution .p-solution-block .u-grid li:nth-child(2)::after {
  background-color: #f5bc3b;
}
.p-section.is-solution .p-solution-block .u-grid li:nth-child(3) {
  background-color: #735cdd;
}
.p-section.is-solution .p-solution-block .u-grid li:nth-child(3)::after {
  background-color: #735cdd;
  transform-origin: right bottom;
  height: 160px;
  transform: translateY(-100%) rotate(-60deg);
}
.p-section.is-solution .p-solution-block .u-grid li .c-solution-en {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 788px) {
  .p-section.is-solution .p-solution-block .u-grid li .c-solution-en {
    font-size: 14px;
  }
}
.p-section.is-solution .p-solution-block .u-grid li .c-solution-ja {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin: 16px 0;
}
.p-section.is-solution .p-solution-block .u-grid li .c-solution-ja span {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 788px) {
  .p-section.is-solution .p-solution-block .u-grid li .c-solution-ja span {
    font-size: 14px;
  }
}
.p-section.is-solution .p-solution-block .u-grid li .c-solution-text {
  font-size: 16px;
}
.p-section.is-fangoods {
  position: relative;
}
.p-section.is-fangoods .c-horizon-text {
  top: -150px;
  z-index: -1;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .c-horizon-text {
    top: -70px;
  }
}
.p-section.is-fangoods .p-type-wrapper .p-type-block {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}
.p-section.is-fangoods .p-type-wrapper .p-type-block .c-type-info .c-type-number {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper .p-type-block .c-type-info .c-type-number {
    font-size: 40px;
  }
}
.p-section.is-fangoods .p-type-wrapper .p-type-block .c-type-info h3 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper .p-type-block .c-type-info h3 {
    font-size: 40px;
  }
}
.p-section.is-fangoods .p-type-wrapper .p-type-block .c-type-info h3 p {
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper .p-type-block .c-type-info h3 p {
    font-size: 14px;
  }
}
.p-section.is-fangoods .p-type-wrapper .p-type-block .c-type-info .c-type-catch {
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 10px;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper .p-type-block .c-type-info .c-type-catch {
    font-size: 18px;
    margin-top: 30px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=ondemand] {
  border-left: 4px solid #0074af;
  margin-bottom: 200px;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=ondemand] {
    border-left: 3px solid #0074af;
    margin-bottom: 80px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-number,
.p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-catch {
  color: #0074af;
}
.p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-img {
  width: 63%;
  background-color: #0074af;
  border-radius: 10px;
  padding-left: 32px;
  overflow: hidden;
  right: 0;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-img {
    width: 100%;
    border-radius: 5px;
    position: initial;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-img figure {
  overflow: hidden;
  position: relative;
  padding-top: 67%;
}
.p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-img figure img {
  transform-origin: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: 101%;
}
.p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-info {
  position: relative;
  padding-top: 200px;
  width: 46%;
}
@media screen and (max-width: 1024px) {
  .p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-info {
    width: 50%;
  }
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=ondemand] .c-type-info {
    width: 100%;
    padding-top: 40px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] {
  border-left: 4px solid #f5bc3b;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] {
    border-left: 3px solid #f5bc3b;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block {
  margin-bottom: 180px;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block {
    margin-bottom: 50px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-number,
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-catch {
  color: #f5bc3b;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img {
  width: 52%;
  overflow: hidden;
  right: 0;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img {
    width: 100%;
    position: initial;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul {
  display: -ms-grid;
  display: grid;
  gap: 20px 20px;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul li {
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul li {
    border-radius: 5px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul li p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.3;
  line-height: 1.3;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul li img {
  max-width: 100%;
  height: auto;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul .c-original-item01 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
  background-color: #12b9eb;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul .c-original-item02 {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  background-color: #735cdd;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul .c-original-item03 {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 3;
      grid-row-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  background-color: #df6d70;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-img ul .c-original-item04 {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-row-span: 2;
  grid-row-end: 4;
  background-color: #f5bc3b;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .c-type-info {
  position: relative;
  padding-top: 200px;
  width: 43%;
}
@media screen and (max-width: 1024px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .c-type-info {
    width: 50%;
  }
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .c-type-info {
    width: 100%;
    padding-top: 40px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child {
    display: block;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child h4 {
  font-size: 30px;
  font-weight: 900;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  border-top: 4px solid #f5bc3b;
  padding-top: 24px;
  width: 90px;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child h4 {
    -ms-writing-mode: initial;
        writing-mode: initial;
    border-top: none;
    border-left: 3px solid #f5bc3b;
    padding-top: 0;
    padding-left: 15px;
    width: 100%;
    font-size: 28px;
    line-height: 1.6;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child h4 span {
  font-size: 16px;
  display: block;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child h4 span {
    font-size: 14px;
    padding-bottom: 5px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info {
  padding-left: 80px;
  width: calc(100% - 90px);
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info {
    padding-left: 0;
    padding-top: 40px;
    width: 100%;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info h5 {
    font-size: 18px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul {
  width: 100%;
  margin-top: 40px;
  display: flex;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li {
  width: calc(33.3333% - 20px);
  margin: 0 10px 10px;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li:first-child {
  margin-left: 0;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li:last-child {
  margin-right: 0;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li figure {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li figure img {
  transform-origin: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: 101%;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  margin: 24px 0 20px;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li .c-creator-intro {
  display: flex;
  font-size: 14px;
  font-weight: 700;
  color: #a3a3a3;
  align-items: center;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li .c-creator-intro span {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #e8e8e8;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child-info ul li .c-creator-intro p {
  padding-left: 16px;
  width: calc(100% - 56px);
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=videogoods] {
  margin: 0 auto 140px;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=videogoods] {
    margin: 0 auto 20px;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=videogoods] .p-videogoods-wrap {
  width: 100%;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=videogoods] .p-videogoods-wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=videogoods] ul {
    width: calc(150vw + 40px);
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=videogoods] ul li {
  width: 33.33333%;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=videogoods] ul li {
    width: 50vw;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=videogoods] ul li figure {
  padding-top: 100%;
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=eventgoods] .p-eventgoods-wrap {
  width: 100%;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=eventgoods] .p-eventgoods-wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=eventgoods] ul {
    width: calc(160vw + 20px);
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=eventgoods] ul li {
  width: 50%;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=eventgoods] ul li {
    width: 80vw;
  }
}
.p-section.is-fangoods .p-type-wrapper[block=original] .p-type-block-child[block=eventgoods] ul li figure {
  padding-top: 64%;
}
.p-section.is-brand .p-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.p-section.is-brand .c-horizon-text {
  top: -150px;
  z-index: -1;
  text-shadow: none;
  color: #f6f6f6;
  transform: translate(-30%, 0px);
}
@media screen and (max-width: 788px) {
  .p-section.is-brand .c-horizon-text {
    top: -70px;
  }
}
.p-section.is-brand .c-primary-text {
  margin: 40px 0 120px;
}
@media screen and (max-width: 788px) {
  .p-section.is-brand .c-primary-text {
    margin: 40px 0 80px;
  }
}
.p-section.is-brand .p-card-grid {
  display: flex;
  flex-wrap: wrap;
}
.p-section.is-brand .p-card-grid li {
  width: calc(50% - 30px);
  margin: 0 30px 30px;
}
@media screen and (max-width: 788px) {
  .p-section.is-brand .p-card-grid li {
    width: 100%;
    margin: 0 0 50px;
  }
}
.p-section.is-brand .p-card-grid li:nth-child(odd) {
  margin-left: 0;
}
.p-section.is-brand .p-card-grid li:nth-child(even) {
  margin-top: 50px;
  margin-right: 0;
}
@media screen and (max-width: 788px) {
  .p-section.is-brand .p-card-grid li:nth-child(even) {
    margin-top: 0;
  }
}
.p-section.is-brand .p-card-grid li figure {
  overflow: hidden;
  position: relative;
  padding-top: 60%;
  margin-bottom: 24px;
}
.p-section.is-brand .p-card-grid li figure img {
  transform-origin: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: 101%;
}
.p-section.is-brand .p-card-grid li .c-card-block {
  display: flex;
  font-size: 14px;
  font-weight: 700;
  color: #a3a3a3;
  align-items: center;
}
.p-section.is-brand .p-card-grid li .c-card-block > span {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #e8e8e8;
}
.p-section.is-brand .p-card-grid li .c-card-block p {
  padding-left: 16px;
  color: #363636;
}
.p-section.is-brand .p-card-grid li .c-card-block p span {
  color: #a3a3a3;
  display: block;
}
.p-section.is-brand .p-card-grid li a {
  display: block;
  transition: all ease-out 0.25s;
}
.p-section.is-brand .p-card-grid li a img {
  transition: all ease-out 0.25s;
}
.p-section.is-brand .p-card-grid li a:hover {
  opacity: 0.8;
  transition: all ease-out 0.25s;
}
.p-section.is-brand .p-card-grid li a:hover img {
  transition: all ease-out 0.25s;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(1.03);
}
.p-section.is-collabo {
  background-color: #f6f6f6;
}
.p-section.is-collabo .p-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.p-section.is-collabo .c-horizon-text {
  top: -150px;
  z-index: 0;
  text-shadow: none;
  color: #ffffff;
}
@media screen and (max-width: 788px) {
  .p-section.is-collabo .c-horizon-text {
    top: -70px;
  }
}
.p-section.is-collabo .c-section-title {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 788px) {
  .p-section.is-collabo .c-section-title {
    font-size: 10.7vw;
  }
}
.p-section.is-collabo .c-primary-text {
  margin: 40px 0 120px;
}
@media screen and (max-width: 788px) {
  .p-section.is-collabo .c-primary-text {
    margin: 40px 0 80px;
  }
}
.p-section.is-collabo .p-card-grid {
  display: flex;
  flex-wrap: wrap;
}
.p-section.is-collabo .p-card-grid li {
  width: calc(50% - 30px);
  margin: 0 30px 30px;
}
@media screen and (max-width: 788px) {
  .p-section.is-collabo .p-card-grid li {
    width: 100%;
    margin: 0 0 50px;
  }
}
.p-section.is-collabo .p-card-grid li:nth-child(odd) {
  margin-left: 0;
}
.p-section.is-collabo .p-card-grid li:nth-child(even) {
  margin-right: 0;
}
.p-section.is-collabo .p-card-grid li figure {
  overflow: hidden;
  position: relative;
  padding-top: 55%;
  margin-bottom: 24px;
}
.p-section.is-collabo .p-card-grid li figure img {
  transform-origin: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: 101%;
}
.p-section.is-collabo .p-card-grid li .c-card-block p {
  font-size: 16px;
  font-weight: 700;
}
.p-section.is-muuu .p-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.p-section.is-muuu .c-section-title {
  font-size: 4rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 1100px) {
  .p-section.is-muuu .c-section-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 788px) {
  .p-section.is-muuu .c-section-title {
    margin-bottom: 24px;
  }
}
.p-section.is-muuu .c-primary-text {
  margin-bottom: 32px;
}
@media screen and (max-width: 788px) {
  .p-section.is-muuu .u-grid {
    display: block;
  }
}
.p-section.is-muuu .u-grid-item img {
  width: 100%;
}
.p-section.is-muuu .u-grid-item:first-child {
  width: 52%;
  padding-left: 3%;
}
@media screen and (max-width: 788px) {
  .p-section.is-muuu .u-grid-item:first-child {
    width: 100%;
    padding-left: 0;
    margin-bottom: 24px;
  }
}
.p-section.is-muuu .u-grid-item:last-child {
  width: 45%;
}
@media screen and (max-width: 788px) {
  .p-section.is-muuu .u-grid-item:last-child {
    width: 100%;
  }
}

/* key visual */
.in-viewY > * {
  opacity: 0;
  transform: translateY(30%);
}
.in-viewY.is-inview > * {
  opacity: 1;
  transform: translateY(0);
  transition-property: all;
  transition-duration: 1.8s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.in-viewY.is-inview > *:nth-child(1) {
  transition-delay: 0.3s;
}
.in-viewY.is-inview > *:nth-child(2) {
  transition-delay: 0.5s;
}
.in-viewY.is-inview > *:nth-child(3) {
  transition-delay: 0.7s;
}
.in-viewY.is-inview > *:nth-child(4) {
  transition-delay: 0.9s;
}
.in-viewY.is-inview > *:nth-child(5) {
  transition-delay: 1.1s;
}

.in-viewImg > * {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.in-viewImg.is-inview > * {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition-property: all;
  transition-duration: 0.9s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.11, 1);
}
.in-viewImg.is-inview > *:nth-child(1) {
  transition-delay: 0.3s;
}
.in-viewImg.is-inview > *:nth-child(2) {
  transition-delay: 0.5s;
}
.in-viewImg.is-inview > *:nth-child(3) {
  transition-delay: 0.7s;
}
.in-viewImg.is-inview > *:nth-child(4) {
  transition-delay: 0.9s;
}
.in-viewImg.is-inview > *:nth-child(5) {
  transition-delay: 1.1s;
}

.in-viewCard > * {
  opacity: 0;
  transform: translateY(4%);
}
.in-viewCard.is-inview > * {
  opacity: 1;
  transform: translateY(0);
  transition-property: all;
  transition-duration: 1.8s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.in-viewCard.is-inview > *:nth-child(1) {
  transition-delay: 0.3s;
}
.in-viewCard.is-inview > *:nth-child(2) {
  transition-delay: 0.5s;
}
.in-viewCard.is-inview > *:nth-child(3) {
  transition-delay: 0.7s;
}
.in-viewCard.is-inview > *:nth-child(4) {
  transition-delay: 0.9s;
}
.in-viewCard.is-inview > *:nth-child(5) {
  transition-delay: 1.1s;
}

.in-viewAbout .c-illust-cr {
  transform-origin: center center;
  transform: translateX(-110px) scale(0);
}
@media screen and (max-width: 788px) {
  .in-viewAbout .c-illust-cr {
    transform: translateX(-55%) scale(0);
  }
}
.in-viewAbout .c-illust-times {
  transform-origin: center center;
  transform: scale(0);
}
.in-viewAbout .c-illust-uuum {
  transform-origin: center center;
  transform: translateX(110px) scale(0);
}
@media screen and (max-width: 788px) {
  .in-viewAbout .c-illust-uuum {
    transform: translateX(55%) scale(0);
  }
}
.in-viewAbout.is-inview .c-illust-cr {
  transform: translateX(-110px) scale(1);
  transition-property: all;
  transition-duration: 0.7s;
  transition-delay: 0.4s;
  transition-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1);
}
@media screen and (max-width: 788px) {
  .in-viewAbout.is-inview .c-illust-cr {
    transform: translateX(-55%) scale(1);
  }
}
.in-viewAbout.is-inview .c-illust-times {
  transform: scale(1);
  transition-property: all;
  transition-duration: 0.7s;
  transition-delay: 0.6s;
  transition-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1);
}
.in-viewAbout.is-inview .c-illust-uuum {
  transform: translateX(110px) scale(1);
  transition-property: all;
  transition-duration: 0.7s;
  transition-delay: 0.8s;
  transition-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1);
}
@media screen and (max-width: 788px) {
  .in-viewAbout.is-inview .c-illust-uuum {
    transform: translateX(55%) scale(1);
  }
}

.in-viewSolution .c-illust-cr {
  transform-origin: center center;
  transform: scale(0);
}
.in-viewSolution li:nth-child(1)::after {
  height: 0 !important;
}
.in-viewSolution li:nth-child(2)::after {
  height: 0 !important;
}
.in-viewSolution li:nth-child(3)::after {
  height: 0 !important;
}
.in-viewSolution.is-inview .c-illust-cr {
  transform: scale(1);
  transition-property: all;
  transition-duration: 0.7s;
  transition-delay: 0.4s;
  transition-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1);
}
.in-viewSolution.is-inview li:nth-child(1)::after {
  height: 160px !important;
  transition-property: all;
  transition-duration: 0.8s;
  transition-delay: 0.1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.11, 1);
}
.in-viewSolution.is-inview li:nth-child(2)::after {
  height: 80px !important;
  transition-property: all;
  transition-duration: 0.8s;
  transition-delay: 0.1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.11, 1);
}
.in-viewSolution.is-inview li:nth-child(3)::after {
  height: 160px !important;
  transition-property: all;
  transition-duration: 0.8s;
  transition-delay: 0.1s;
  transition-timing-function: cubic-bezier(0.86, 0, 0.11, 1);
}

/* vender */
.l-content {
  width: 100%;
  font-family: "brandon-grotesque", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-wrap: break-word;
  letter-spacing: 0.05em;
}

figure {
  margin: 0;
}

.l-content {
  width: 100vw;
  overflow: hidden;
}

.p-section {
  padding: 360px 5% 0;
}
@media screen and (max-width: 788px) {
  .p-section {
    padding: 120px 16px 0;
  }
}
.p-section.is-about {
  position: relative;
}
.p-section.is-solution {
  padding: 200px 5% 0;
}
@media screen and (max-width: 788px) {
  .p-section.is-solution {
    padding: 120px 16px 0;
  }
}
.p-section.is-fangoods {
  position: relative;
  padding: 360px 0 0;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods {
    padding: 120px 0 0;
  }
}
.p-section.is-fangoods .p-type-wrapper {
  padding: 0 5%;
}
@media screen and (max-width: 788px) {
  .p-section.is-fangoods .p-type-wrapper {
    padding: 0 16px;
  }
}
.p-section.is-brand {
  padding: 360px 5% 180px;
}
@media screen and (max-width: 788px) {
  .p-section.is-brand {
    padding: 120px 16px 60px;
  }
}
.p-section.is-collabo {
  padding: 270px 5% 180px;
}
@media screen and (max-width: 788px) {
  .p-section.is-collabo {
    padding: 120px 16px 60px;
  }
}
.p-section.is-muuu {
  padding: 180px 5%;
}
@media screen and (max-width: 788px) {
  .p-section.is-muuu {
    padding: 120px 16px;
  }
}

.p-section-inner {
  position: relative;
}
