@charset "UTF-8";
/*----------------------------- colorset -----------------------------*/
/*----------------------------- mixin -----------------------------*/
/*----------------------------- space -----------------------------*/
*:focus {
  outline: none;
}

body {
  background-color: #FBFBFD;
  font-family: "Noto Sans JP", "Avenir", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.6;
  color: #2C2C31;
  word-wrap: break-word;
  font-size: 14px;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: all 0.3s;
}

body.second{
background-image: linear-gradient(#fffefecf), url(../images/noise.webp);
  background-repeat: repeat;
  background-size: 100px;
}

.en {
  font-family: "Avenir";
}

main {
  padding-top: 94px;
}

ul {
  list-style: none;
}

a {
  cursor: pointer;
}

section {
  width: 100%;
  padding: 0 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.flex-wrapper {
  display: flex;
}

/*********************** TITLE *************************/
.sec-ttl {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 40px;
}
.sec-ttl span {
  font-size: 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 80px;
  }
}

.sec-sub_ttl {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  padding-left: 24px;
  position: relative;
  margin-bottom: 24px;
}
.sec-sub_ttl::before {
  position: absolute;
  content: "";
  height: 2px;
  background-color: #2C2C31;
  width: 16px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.sec-sub_ttl-link {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  padding-left: 24px;
  position: relative;
  margin-bottom: 24px;
}
.sec-sub_ttl-link a {
  color: #2C2C31;
  transition: all 0.3s;
}
.sec-sub_ttl-link:hover a {
  color: #EC675A;
}
.sec-sub_ttl-link:hover::before {
  background-color: #EC675A;
  width: 20px;
  height: 20px;
  left: -2px;
}
.sec-sub_ttl-link::before {
  position: absolute;
  content: "";
  background-color: #2C2C31;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all 0.3s;
}

.wp-block-heading{
  padding-top:2rem;
  padding-bottom:0.5rem;
}

/*********************** BUTTON *************************/
.btn {
  width: 100%;
  margin: 0 auto;
}
.btn a {
  border: 1px solid #2C2C31;
  border-radius: 32px;
  color: #FBFBFD;
  display: block;
  font-style: normal;
  font-weight: 500;
  transition: all 0.5s;
  text-decoration: none;
  line-height: 100%;
  font-size: 16px;
  padding: 16px;
  padding-right: 40px;
  text-align: center;
}
.btn a .svg-view {
  margin-right: 16px;
  vertical-align: middle;
}
.btn a p {
  display: inline-block;
}
.btn.sub a {
  color: #2C2C31;
}
.btn.sub a:hover {
  background: #EC675A;
  color: #ffffff;
  border: 2px solid #EC675A;
}
.btn.sub.back a span .svg-view {
  transform: rotateY(180deg);
  vertical-align: middle;
}
.btn.main a {
  background: #2C2C31;
  color: #ffffff;
}
.btn.main a:hover {
  border: 2px solid #EC675A;
  background: #EC675A;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .btn {
    max-width: 360px;
    margin: 0 auto 0 0;
  }
  .btn.main a, .btn.sub a {
    background: none;
    color: #2C2C31;
    display: flex;
    gap: 16px;
    align-items: center;
    border: none;
  }
  .btn.main a p, .btn.sub a p {
    position: relative;
  }
  .btn.main a p::after, .btn.sub a p::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: -6px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  .btn.main a span, .btn.sub a span {
    border: 1px solid #CECEDD;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
  }
  .btn.main a span .svg-view, .btn.sub a span .svg-view {
    position: absolute;
    transition: 0.3s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .btn.main a:hover, .btn.sub a:hover {
    border: none;
    -webkit-text-decoration: 1px solid #2C2C31;
            text-decoration: 1px solid #2C2C31;
    background: none;
    color: #2C2C31;
    background: none;
    color: #2C2C31;
  }
  .btn.main a:hover p::after, .btn.sub a:hover p::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
  }
  .btn.main a:hover .circle_arrow,
.btn.main a:hover .arrow_def, .btn.sub a:hover .circle_arrow,
.btn.sub a:hover .arrow_def {
    position: relative;
  }
  .btn.main a:hover .circle_arrow .svg-view,
.btn.main a:hover .arrow_def .svg-view, .btn.sub a:hover .circle_arrow .svg-view,
.btn.sub a:hover .arrow_def .svg-view {
    left: 60%;
    transform: translate(-60%, -50%);
  }
  .btn.main.back a span .svg-view, .btn.sub.back a span .svg-view {
    vertical-align: text-bottom;
    transform: translate(-50%, -50%) rotateY(180deg);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .btn.main.back a:hover .arrow_def .svg-view, .btn.sub.back a:hover .arrow_def .svg-view {
    left: 40%;
    transform: translate(-40%, -50%) rotateY(180deg);
  }
}

.arrow_def {
  stroke: #858585;
  fill: #858585;
}

.arrow_white {
  stroke: #FBFBFD;
  fill: #FBFBFD;
}

.svg-defs {
  display: none;
}

.svg-view {
  display: inline-block;
  width: 32px;
  height: 15px;
}

.circle_arrow {
  border: 1px solid #CECEDD;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.circle_arrow .svg-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

/*********************** SP/PC *************************/
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

/******************* header *******************/
header {
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
}
header #logo {
  z-index: 200;
  width: 90px;
  transition: 0.3s;
}
header #logo img {
  width: 100%;
  vertical-align: bottom;
}
header #logo:hover {
  opacity: 0.8;
}
header .h-btn {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 200;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.4s;
  margin: 0;
}
header .h-btn span {
  transition-duration: 0.4s;
  background-color: #2C2C31;
  height: 2px;
  width: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  position: absolute;
}
header .h-btn span:nth-child(1) {
  top: 40%;
}
header .h-btn span:nth-child(2) {
  top: 60%;
}
header .gnav-open {
  position: fixed;
  top: 0;
  right: -120%;
  z-index: -1;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  background: #FBFBFD;
}
header .gnav-open .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
}
header .gnav-open .inner .tw a {
  font-size: 30px;
  color: #EC675A;
}
header .gnav-open .inner ul {
  list-style: none;
  margin-bottom: 24px;
}
header .gnav-open .inner ul li {
  margin-bottom: 24px;
}
header .gnav-open .inner ul li a {
  text-decoration: none;
  color: #EC675A !important;
  font-size: 32px;
  font-weight: bold;
  line-height: 100%;
}
@media screen and (min-width: 600px) {
  header .gnav-open {
    background: none;
  }
  header .h-btn {
    display: none;
  }
  header .gnav-open {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    visibility: inherit;
    right: auto;
    z-index: 1;
    text-align: right;
  }
  header .gnav-open .inner {
    position: relative;
    display: inline-block;
    text-align: left;
    top: auto;
    left: auto;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
  }
  header .gnav-open .inner ul {
    list-style: none;
    margin-bottom: 0;
  }
  header .gnav-open .inner ul li {
    margin-bottom: 0;
    margin-left: 16px;
  }
  header .gnav-open .inner ul li a {
    color: #2C2C31;
    font-size: 16px;
    font-weight: bold;
    padding: 16px 8px;
    transition: 0.3s;
  }
  header .gnav-open .inner ul li a:hover {
    color: #EC675A;
    color: #2C2C31 !important;
  }
  header ul {
    list-style: none;
    margin-bottom: 24px;
  }
  header ul li {
    margin-bottom: 24px;
    display: inline-block;
  }
  header ul li a {
    text-decoration: none;
    color: #EC675A;
    font-size: 32px;
    font-weight: bold;
    line-height: 100%;
  }
}

body.js-gnav-active header .gnav-open {
  visibility: visible;
  z-index: 100;
  right: 0;
}
body.js-gnav-active header .h-btn span {
  width: 40px;
  background-color: #EC675A !important;
}
body.js-gnav-active header .h-btn span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(30deg);
}
body.js-gnav-active header .h-btn span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-30deg);
}

/******************* footer *******************/
#top footer{
  background-image: linear-gradient(rgba(216,232,240,0.82) 0%,rgba(240, 221, 219, 0.82) 100% ), url(../images/noise.webp);
  background-blend-mode: normal;
  background-repeat: repeat;
  background-size: 100px;
}

footer {
  text-align: center;
  padding: 24px 0;
}
footer .img-wrapper {
  width: 110px;
  margin: 0 auto;
}
footer .img-wrapper img {
  width: 100%;
}
footer small {
  font-size: 10px;
}


/******************* creator *******************/
#creator-page main {
  margin-bottom: 80px;
}
#creator-page #creator-container .flex-wrapper {
  flex-direction: column;
}
#creator-page #creator-container .flex-wrapper .img-wrapper {
  width: 100%;
  max-width: 400px;
  margin-bottom: 8px;
}
#creator-page #creator-container .flex-wrapper .img-wrapper img {
  width: 100%;
}
#creator-page #creator-container .flex-wrapper .text-wrapper,
#creator-page #creator-works .info-wrapper {
  margin-bottom: 24px;
}
#creator-page #creator-container .flex-wrapper .text-wrapper h2,
#creator-page #creator-container .flex-wrapper .text-wrapper h3 {
  margin-bottom: 8px;
}
#creator-page #creator-container .flex-wrapper .text-wrapper .sns {
  display: inline-block;
  padding: 8px;
  margin-right: 16px;
}
#creator-page #creator-container .flex-wrapper .text-wrapper .sns a {
  color: #2C2C31;
  font-size: 24px;
  transition: 0.3s;
}
#creator-page #creator-container .flex-wrapper .text-wrapper .sns:hover a {
  color: #EC675A;
}
#creator-page #creator-works #works{
  margin-top: 0;
  padding-top: 0;
}
#creator-page #creator-works ul {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  #creator-page main {
    margin-bottom: 160px;
  }
  #creator-page #creator-container .flex-wrapper{
    flex-direction: row;
    gap: 40px;
    margin-bottom: 80px;
  }

  #creator-page #creator-works .info-wrapper{
    margin-bottom: 80px;
  }

}

/******************* about / thanks / works-page *******************/
.info-wrapper {
  text-align: left;
}
.info-wrapper .item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 16px 0;
}
.info-wrapper .item dt {
  width: 100%;
  display: inline-block;
  font-weight: bold;
}
.info-wrapper .item dd {
  width: 100%;
  display: inline-block;
}
.info-wrapper .item dd a:hover {
  color: #EC675A;
}
.info-wrapper .item .dd-wrapper {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .info-wrapper .item {
    flex-direction: row;
  }
  .info-wrapper .item dt {
    width: 140px;
    display: inline-block;
  }
  .info-wrapper .item dd {
    width: 360px;
    display: inline-block;
  }
  .info-wrapper .item .dd-wrapper {
    width: 360px;
  }
}

/******************* works *******************/
#works .works-tab {
  display: none;
}
#works .works-select {
  width: 100%;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 16px;
  margin-bottom: 32px;
  border: 2px solid #2C2C31;
  color: #FBFBFD;
  background-color: #2C2C31;
  font-weight: 800;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#works .select_wrapper {
  position: relative;
}
#works .select_wrapper::after {
  content: "";
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #FBFBFD;
  border-left: 2px solid #FBFBFD;
  transform: translateY(-50%) rotate(-135deg);
}


@media screen and (min-width: 768px) {
  #works {
    padding-top: 40px;
  }
  #works .sec-ttl {
    margin-bottom: 24px;
  }
  #works .works-tab {
    display: flex;
    justify-content: left;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 80px;
  }
  #works .works-tab li {
    padding: 0;
    margin: 0 16px 0 0;
    cursor: pointer;
    position: relative;
    color: #2C2C31;
    transition: 0.3s;
    border: 2px solid #2C2C31;
    scroll-margin-top: 94px;
  }
  #works .works-tab li a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: inherit;
    text-decoration: none;
    transition: inherit;
  }
  #works .works-tab li i {
    margin-left: 8px;
  }
  #works .works-tab li:hover {
    background-color: #DFE0E0;
  }
  #works .works-tab li.is-current {
    position: relative;
    background: #2C2C31;
    color: #FBFBFD;
  }
  #works .works-select {
    display: none;
  }
}
#works .btn.main a .svg-view {
  margin-right: 16px;
  fill: #FBFBFD;
}
@media screen and (min-width: 768px) {
  #works .btn.main a .svg-view {
    fill: #2C2C31;
  }
}
#works .service {
  display: none;
  margin-bottom: 40px;
}
#works .service .img-wrapper.flex-wrapper {
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}
#works .service .img-wrapper.flex-wrapper img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #works .service .img-wrapper.flex-wrapper {
    flex-direction: row;
  }
  #works .service .img-wrapper.flex-wrapper img {
    width: calc(50% - 12px);
  }
}
#works .service.is-current {
  display: block;
}
#works .service_info {
  gap: 24px;
  flex-direction: column;
  margin-bottom: 24px;
}
#works .service_info .img-wrapper {
  width: 100%;
}
#works .service_info .img-wrapper img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #works .service_info {
    flex-direction: row;
  }
  #works .service_info .img-wrapper {
    height: auto;
    max-width: 400px;
  }
}
#works .live.service .info-wrapper {
  margin-bottom: 24px;
}
#works .live.service .info-wrapper h3 {
  margin-bottom: 8px;
  color: #EC675A;
}
#works .live.service .info-wrapper .item {
  padding: 0 0 8px 0;
}
@media screen and (min-width: 768px) {
  #works .live.service .info-wrapper .item {
    flex-direction: column;
  }
  #works .live.service .info-wrapper .item dt, #works .live.service .info-wrapper .item dd {
    width: 100%;
  }
}

#works .works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
#works .works-list li {
  margin-bottom: 32px;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  width: calc((100% - 24px) / 2);
}
#works .works-list li:hover a .img-wrapper img {
  transform: scale(1.1);
  opacity: 0.3;
}
#works .works-list li a {
  color: #2C2C31;
  text-decoration: none;
}
#works .works-list li a .img-wrapper {
  margin-bottom: 16px;
  overflow: hidden;
  background: #2c2c31;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#works .works-list li a .img-wrapper img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  vertical-align: bottom;
}
#works .works-list li a .img-wrapper.hov_ img {
  transform: scale(1.1);
  opacity: 0.3;
}
#works .works-list li a .circle_arrow {
  width: 20px;
  height: 20px;
  vertical-align: sub;
}
#works .works-list li a .svg-view {
  width: 12px;
  height: 8px;
}
#works .works-list li a .artist {
  font-size: 10px;
  margin-bottom: 8px;
}
#works .works-list li a h3 {
  font-size: 16px;
  margin-bottom: 8px;
  display: inline-block;
}
#works .works-list li a .tag {
  color: #858585;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  #works .works-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  #works .works-list li {
    width: calc((100% - 80px) / 3);
    margin-bottom: 40px;
  }
}

/******************* ページネーション *******************/
#pagination {
  padding-top: 40px;
}
#pagination ul {
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
}
#pagination ul li {
  width: 50px;
  height: 50px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  border: #2C2C31 1px solid;
}
#pagination ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #2C2C31;
  line-height: 100%;
  width: 100%;
  height: 100%;
}
#pagination ul li.prev, #pagination ul li.next {
  border: none;
}
#pagination ul li.prev a, #pagination ul li.next a {
  font-weight: normal;
  font-size: 14px;
}
#pagination ul li.active {
  background: #2C2C31;
}
#pagination ul li.active a {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  #pagination ul {
    gap: 16px;
  }
  #pagination ul li.prev {
    padding-right: 16px;
  }
  #pagination ul li.next {
    padding-left: 16px;
  }
}

#top header .h-btn span {
  background: #EC675A;
}
@media screen and (min-width: 600px) {
  #top header .gnav-open .inner ul li a {
    color:  #EC675A;
  }
  #top header .gnav-open .inner ul li a:hover {
    color: #EC675A;
  }
}
#top header {
  transition: 0.3s;
}
 header.change-color {
  background: rgba(251, 251, 253, 0.6);
}
#top header.change-color .gnav-open .inner ul li a {
  color: #2C2C31;
}
#top.is_in header.change-color {
    background: rgba(234, 237, 255, 0.6);
}

#top main {
  padding-top: 0;
}

#top #fv{
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin:0;
  display:block;
}

#top .sky{
  padding: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  margin:0;
  display:block;
}

#top .sky  .mv-top{
  z-index:1;
  position:relative;
}
#top .sky img {
  width: 100%;
  max-width: 100%;
  display: block;
}

#top .sky  {
  margin: 0;
  width: 100%;
  position:relative;
  z-index:1;
 overflow:hidden;
  aspect-ratio: auto 3/4.5;
}



#top .sky .cloud {
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: 160%;
}

#top .sky .cloud.lead{
  font-size: 0.7rem;
  letter-spacing:0.25rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-top:15%;
  z-index:2;
}

@media screen and (min-width: 768px) {
  #top .sky  {
    aspect-ratio: auto 16/9;
  }
  #top .sky .cloud {
    width: 100%;
  }
  #top .sky .cloud.lead{
  font-size: 1rem;
  letter-spacing:0.5rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-top:8.5%;
}
}

/* 手前の雲（大きめ・揺れ幅大） */
#top .sky.cloud-1 img{
  //opacity: 0.6;
  animation: floatFront 7s ease-in-out infinite;
}

/* 真ん中の雲（小さめ・揺れ幅小） */
#top .sky .cloud-2 img{
  animation: floatBack 10s ease-in-out infinite;
}

/* 奥の雲（小さめ・揺れ幅小） */
#top .sky .cloud-3 img{
  animation: floatFront 12s ease-in-out infinite;
}

#top .sky .cloud-4 img{
  animation: floatBack 5s ease-in-out infinite;
}

#top .sky .rotate img{
 animation: spin 120s linear infinite;
}
@keyframes floatFront {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-25px); }
  100% { transform: translateY(0); }
}

@keyframes floatBack {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#sky_bottom,
#service-cover-top,
#works-cover-top,
#creator-cover-top{
  aspect-ratio: 900 / 190;
  position:relative;
}

#top #fv {
  background: url(../images/bg-01.webp);
}

#sky_bottom:before {
  content   : "";
  width: 100%;
  aspect-ratio: 900 / 190; /* cloud.svg の元サイズ比に合わせる */
  height: auto; /* 実質なくても可 */
  -webkit-mask-image: url("../images/cloud.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/cloud.svg");
  mask-repeat: no-repeat;
  mask-position: top left;
  mask-size: 100% 100%;
background-color: #fdeeeecf;
  background-image: linear-gradient(#91eecfcf,#fdeeeecf), url(../images/noise.webp);
  pointer-events: none;
  background-repeat: repeat;
  background-size: 100px;
  position:absolute;
  bottom:-1px;
  left:0;
  z-index: 2;
}
/* 外側レイヤー（ボーダー色） */

#sky_bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  aspect-ratio: 900 / 190;
  background: url("../images/cloud-stroke.svg") no-repeat 0 0 / 100% 100%;
  pointer-events: none;
  z-index: 3;
}

#top #service-cover{
  background:url(../images/bg-01.webp);
  background-size: 48px;
}

#top #works-cover-top:before,
#top #service-cover-top:before,
#top #creator-cover-top:before{
  content   : "";
  width: 100%;
  aspect-ratio: 900 / 190; /* cloud.svg の元サイズ比に合わせる */
  height: auto; /* 実質なくても可 */
  -webkit-mask-image: url("../images/cloud.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/cloud.svg");
  mask-repeat: no-repeat;
  mask-position: top left;
  mask-size: 100% 100%;
background-color: #fdeeeecf;
  background-image: url(../images/bg-01.webp);
  background-position: bottom left;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 48px;
  position:absolute;
  bottom:-1px;
  left:0;
  z-index: 2;
}

/* 外側レイヤー（ボーダー色） */
#top #service-cover-top:after,
#top #works-cover-top:after,
#top #creator-cover-top:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  aspect-ratio: 900 / 190;
  background: url("../images/cloud-stroke.svg") no-repeat 0 0 / 100% 100%;
  pointer-events: none;
  z-index: 3;
}

#top #works-cover-top:before{
  background-color: #ffea47cf;
  background-image: linear-gradient(#91eecfcf,#fdeeeecf), url(../images/noise.webp);
  pointer-events: none;
  background-repeat: repeat;
  background-size: 100px;
}
#top #creator-cover-top:before{
  background-color: #ffffffcf;
  background-image: linear-gradient(#91eecfcf,rgba(208,200,232,0.78)), url(../images/noise.webp);
  pointer-events: none;
  background-repeat: repeat;
  background-size: 100px;
}

#top #about {
  overflow: hidden;
  position: relative;
  color: #2C2C31;
  margin: 0 auto;
  max-width: 100%;
  background-color: #fdeeeecf;
  background-image: linear-gradient(#fdeeeecf, #ffb9c3cf), url(../images/noise.webp);
  background-repeat: repeat;
  background-size: 100px;
  padding: 0;
}

#top #about .inner_wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 4.9%;
  padding: 80px 20px;
  padding-bottom: 0;
}

#top #about .inner_wrapper .img-wrapper {
  width: 50.8vw;
  max-width: 220px;
  margin: 0 auto;
  margin-bottom: 24px;
}

#top #about .inner_wrapper .img-wrapper img {
  width: 100%;
}

#top #about .inner_wrapper .copy {
  text-align: left;
  writing-mode: vertical-rl;
}
#top #about .inner_wrapper .copy h3 {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 6.1vw;
  letter-spacing: 0.8rem;
  line-height: 150%;
}
#top #about .inner_wrapper .txt-wrapper {
  display: block;
  font-weight: 500;
  text-align: left;
  padding-top: 65.6vw;
}
#top #about .inner_wrapper .txt-wrapper p {
  line-height: 220%;
  margin-bottom: 56px;
  font-size: 3.56vw;
}
@media screen and (min-width: 429px) {
  #top #about .inner_wrapper {
    gap: 15.5vw;
  }
  #top #about .inner_wrapper .copy h3 {
    font-size: 4vw;
  }
  #top #about .inner_wrapper .txt-wrapper {
    display: block;
    font-weight: 500;
    text-align: left;
    padding-top: 43vw;
  }
  #top #about .inner_wrapper .txt-wrapper p {
    font-size: 2.33vw;
  }
}
@media screen and (min-width: 768px) {
  #top #about .inner_wrapper {
    flex-direction: row;
    align-items: center;
    gap: 100px;
  }
  #top #about .inner_wrapper .copy h3 {
    font-size: 28px;
  }
  #top #about .inner_wrapper .img-wrapper {
    margin: 0 auto 32px 0;
    max-width: 260px;
  }
  #top #about .inner_wrapper .txt-wrapper {
    padding-top: 0;
  }
  #top #about .inner_wrapper .txt-wrapper p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

#top #about .btn{
  padding: 0 20px;
  padding-bottom: 80px;
}
#top #about .btn.sub a {
  color: #FBFBFD;
  border: 1px solid #FBFBFD;

}
#top #about .btn.sub a p {
  margin-bottom: 0px;
}
#top #about .btn.sub a p::after {
  background: #FBFBFD;
  bottom: -4px;
}
#top #about .btn.sub a:hover {
  -webkit-text-decoration: 1px solid #FBFBFD;
          text-decoration: 1px solid #FBFBFD;
  color: #2C2C31;
  background: #FBFBFD;
}
@media screen and (min-width: 768px) {
  #top #about .btn.sub a {
    border: none;
  }
  #top #about .btn.sub a:hover {
    -webkit-text-decoration: 1px solid #FBFBFD;
            text-decoration: 1px solid #FBFBFD;
    color: #FBFBFD;
    background: none;
  }
}

#top #works-cover{
background-color: #ffea47cf;
background-image: linear-gradient(#fdeeeecf, #ffe0e7cf), url(../images/noise.webp);
background-repeat: repeat;
background-size: 100px;
}

#top #service-cover{
  padding:80px 0;
  padding-bottom:0;
  background-image: url(../images/bg-01.webp);
  background-repeat: repeat;
  //background-size: 48px;
}

#top #service .works-cat-link {
  margin-bottom: 40px;
}
#top #service .works-cat-link #toVideo {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)), url(../images/service_1.jpg) no-repeat;
}
#top #service .works-cat-link #toLive {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)), url(../images/service_2.jpg) no-repeat;
}
#top #service .works-cat-link #toMusic {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)), url(../images/service_3.jpg) no-repeat;
}
#top #service .works-cat-link #toVideo,
#top #service .works-cat-link #toLive,
#top #service .works-cat-link #toMusic {
  width: 100%;
  border-radius: 18px;
  position: relative;
  margin-bottom: 16px;
  transition: 0.3s;
  background-size: cover;
  background-position: center;
}
#top #service .works-cat-link #toVideo a,
#top #service .works-cat-link #toLive a,
#top #service .works-cat-link #toMusic a {
  height: 100%;
  padding: 32px;
  display: block;
  transition: 0.3s;
  text-align: left;
  color: #ffffff;
  text-decoration: none;
}
#top #service .works-cat-link #toVideo a h3,
#top #service .works-cat-link #toLive a h3,
#top #service .works-cat-link #toMusic a h3 {
  margin-bottom: 60px;
  font-size: 22px;
}
#top #service .works-cat-link #toVideo a h3 span,
#top #service .works-cat-link #toLive a h3 span,
#top #service .works-cat-link #toMusic a h3 span {
  padding-top: 12px;
  display: block;
  font-size: 10px;
}
#top #service .works-cat-link #toVideo:hover,
#top #service .works-cat-link #toLive:hover,
#top #service .works-cat-link #toMusic:hover {
  transform: scale(95%);
}
#top #service .works-cat-link #toVideo:hover a .circle_arrow .svg-view,
#top #service .works-cat-link #toLive:hover a .circle_arrow .svg-view,
#top #service .works-cat-link #toMusic:hover a .circle_arrow .svg-view {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-60%, -50%);
}
@media screen and (min-width: 768px) {
  #top #service .works-cat-link {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 2px;
  }
  #top #service .works-cat-link #toVideo,
#top #service .works-cat-link #toLive,
#top #service .works-cat-link #toMusic {
    height: 400px;
  }
  #top #service .works-cat-link #toVideo a,
#top #service .works-cat-link #toLive a,
#top #service .works-cat-link #toMusic a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

#top #works{
  padding-top: 80px;
  padding-bottom: 80px;
}

#top #creator {
  margin: 0 auto 80px;
  scroll-margin-top: 100px;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  #top #creator {
    padding-top: 160px;
  }
}
/* creator 一覧：#works .works-list と同じグリッド・ホバー */
#top #creator .creator-list,
#top ul#creator-list,
#top #creator-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
#top #creator .creator-list li,
#top ul#creator-list > li,
#top #creator-list ul > li {
  margin-bottom: 32px;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  width: calc((100% - 24px) / 2);
}
#top #creator .creator-list li:hover a .img-wrapper img,
#top ul#creator-list > li:hover a .img-wrapper img,
#top #creator-list ul > li:hover a .img-wrapper img {
  transform: scale(1.1);
  opacity: 0.3;
}
#top #creator .creator-list li a,
#top ul#creator-list > li a,
#top #creator-list ul > li a {
  color: #2C2C31;
  text-decoration: none;
}
#top #creator .creator-list li a .img-wrapper,
#top ul#creator-list > li a .img-wrapper,
#top #creator-list ul > li a .img-wrapper {
  margin-bottom: 16px;
  overflow: hidden;
  background: #2c2c31;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#top #creator .creator-list li a .img-wrapper img,
#top ul#creator-list > li a .img-wrapper img,
#top #creator-list ul > li a .img-wrapper img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  vertical-align: bottom;
}
#top #creator .creator-list li a .img-wrapper.hov_ img,
#top ul#creator-list > li a .img-wrapper.hov_ img,
#top #creator-list ul > li a .img-wrapper.hov_ img {
  transform: scale(1.1);
  opacity: 0.3;
}
#top #creator .creator-list li a .circle_arrow,
#top ul#creator-list > li a .circle_arrow,
#top #creator-list ul > li a .circle_arrow {
  width: 20px;
  height: 20px;
  vertical-align: sub;
}
#top #creator .creator-list li a .svg-view,
#top ul#creator-list > li a .svg-view,
#top #creator-list ul > li a .svg-view {
  width: 12px;
  height: 8px;
}
#top #creator .creator-list li a .artist,
#top #creator .creator-list li a .job,
#top ul#creator-list > li a .artist,
#top ul#creator-list > li a .job,
#top #creator-list ul > li a .artist,
#top #creator-list ul > li a .job {
  font-size: 10px;
  margin-bottom: 8px;
}
#top #creator .creator-list li a h3,
#top ul#creator-list > li a h3,
#top #creator-list ul > li a h3 {
  font-size: 16px;
  margin-bottom: 8px;
  display: inline-block;
}
#top #creator .creator-list li a .tag,
#top ul#creator-list > li a .tag,
#top #creator-list ul > li a .tag {
  color: #858585;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  #top #creator {
    margin-bottom: 160px;
  }
  #top #creator .creator-list,
  #top ul#creator-list,
  #top #creator-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  #top #creator .creator-list li,
  #top ul#creator-list > li,
  #top #creator-list ul > li {
    width: calc((100% - 80px) / 3);
    margin-bottom: 40px;
  }
}
#top #creator::before {
  margin-top: 6rem;
  height: 6rem;
  width: 100%;
  content: "";
}
#top footer small {
 // color: #FBFBFD;
}

#top #bottom-cover{
  background-image: 
  linear-gradient(
    rgba(208,200,232,0.78) 0%,
    rgba(184,208,234,0.80) 50%,
    rgba(216,232,240,0.82) 100%
  ),
  url(../images/noise.webp);
background-blend-mode: normal; /* または multiply / overlay */
  background-repeat: repeat;
  background-size: 100px;
}

#contact {
  max-width: 100%;
  padding: 80px 20px 80px;
  color: #FBFBFD;
  color: #2C2C31;
  
}
#contact .inner-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
#contact .inner-wrapper .text-wrapper {
  margin-bottom: 8px;
}
#contact .inner-wrapper .text-wrapper p {
  margin-bottom: 8px;
}
#contact .contact-form {
  width: 100%;
  border-spacing: 0 16px;
  margin-bottom: 40px;
}
#contact .contact-form tr th {
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 8px;
}
#contact .contact-form tr td {
  display: block;
}
#contact .contact-form tr td input,
#contact .contact-form tr td textarea {
  width: 100%;
  padding: 16px 8px;
  background: #FBFBFD;
}
#contact .contact-form tr td textarea {
  height: 180px;
}
#contact .contact-form tr td span.error {
  color: #EC675A;
  padding-top: 8px;
}

#contact .select-wrapper select{
  appearance: none;
  width: 100%;
  padding: 15px;
  color: #333;
  background-color: #fff;
  cursor: pointer;
}
#contact .select-wrapper select:focus{
  outline: none;
}
#contact .select-wrapper{
  position: relative;
  width: 100%;
}
#contact .select-wrapper::before{
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #5cc0b5;
  border-left: 2px solid #5cc0b5;
  transform: rotate(-135deg);
  pointer-events: none;
}

@media screen and (min-width: 600px) {
  #contact .contact-form {
    border-spacing: 0 24px;
  }
  #contact .contact-form tr th {
    width: 20%;
    display: inline-block;
  }
  #contact .contact-form tr td {
    width: 80%;
    display: inline-block;
  }
  #contact .contact-form tr td input,
#contact .contact-form tr td textarea {
    padding: 24px 16px;
    color: #2C2C31;
  }
  #contact .contact-form tr td textarea {
    height: 280px;
  }
}
#contact .form-btn {
  margin: 0 auto;
  background-color: #EC675A;
  color: #ffffff;
  border: 1px solid #EC675A;
  border-radius: 32px;
  display: block;
  font-weight: 800;
  transition: all 0.5s;
  text-decoration: none;
  line-height: 100%;
  font-size: 16px;
  padding: 16px;
  padding-right: 40px;
  text-align: center;
}
#contact .form-btn:hover {
  border: 2px solid #ffffff;
  border-color: #EC675A;
  background: rgba(255, 255, 255, 0.2);
  color: #EC675A !important;
}


#contact .form-btn:hover .arrow_white {
  stroke: #EC675A;
  fill: #EC675A;
}
@media screen and (min-width: 768px) {
  #contact .form-btn {
    max-width: 80%;
    margin: 0 0 0 auto;
  }
}
#contact .form-btn span .svg-view {
  margin-right: 16px;
}
@media screen and (min-width: 600px) {
  #contact {
    padding: 160px 20px 80px;
  }
}

#thanks {
  text-align: center;
  max-width: 100%;
}
#thanks main {
  padding: 80px 20px 80px;
  min-height: calc(100vh - 135px);
}
#thanks main .msg {
  font-size: 16px;
  text-align: center;
  padding-top: 40px;
  margin-bottom: 40px;
  color: #EC675A;
  font-weight: bold;
}
#thanks main .info-wrapper {
  margin-bottom: 40px;
}

/*********************** CONTACT *************************/
.is_in {
  background-color: #fdeeeecf;
  background-image: linear-gradient(#fdeeeecf, #e0e7ffcf), url(../images/noise.webp);
  background-repeat: repeat;
  background-size: 100px;
  transition: all 0.3s;
}
.is_in #contact .mark {
  color: #EC675A;
  padding: 0 4px;
}
.is_in #creator .circle_arrow {
  border: 1px solid #2C2C31;
}
.is_in #creator .arrow_def {
  stroke: #2C2C31;
  fill: #2C2C31;
}
.is_in #stalker {
  background: #EC675A;
}
.is_in #stalker.hov_ {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  transition: 0.5s;
  background: rgba(236, 102, 90, 0.9);
}
.is_in #stalker.hov_::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  content: "SEND";
  color: #FBFBFD;
  font-size: 13px;
}

/*========================================================
************************* ABOUT *************************
========================================================*/
#about-page #lead {
  margin-bottom: 80px;
}
#about-page #lead .inner-wrapper .img-wrapper {
  max-width: 340px;
  margin: 0 auto;
  margin-bottom: 40px;
}
#about-page #lead .inner-wrapper .img-wrapper img {
  width: 100%;
}
#about-page #lead .inner-wrapper .txt-wrapper {
  display: block;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
}
#about-page #lead .inner-wrapper .txt-wrapper h3 {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 28px;
}
#about-page #lead .inner-wrapper .txt-wrapper p {
  line-height: 1.8;
}
@media screen and (min-width: 600px) {
  #about-page #lead .inner-wrapper .txt-wrapper {
    text-align: left;
    writing-mode: vertical-rl;
  }
  #about-page #lead .inner-wrapper .txt-wrapper h3 {
    margin-left: 32px;
  }
  #about-page #lead .inner-wrapper .txt-wrapper p {
    margin-right: 8px;
  }
}
@media screen and (min-width: 1000px) {
  #about-page #lead .inner-wrapper {
    display: flex;
    gap: 32px;
  }
}
@media screen and (min-width: 768px) {
  #about-page #lead {
    margin-bottom: 120px;
    padding-top: 80px;
  }
}
@media screen and (min-width: 1000px) {
  #about-page #lead {
    padding: 80px 0 0;
  }
}
#about-page #company {
  max-width: 100vw;
  padding: 80px 20px;
  background: url(../images/company_bg.jpg) repeat;
}
#about-page #company .inner-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
#about-page #company .inner-wrapper .info-wrapper .item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 16px 0;
}
#about-page #company .inner-wrapper .info-wrapper .item dt {
  width: 100%;
  display: inline-block;
  font-weight: bold;
}
#about-page #company .inner-wrapper .info-wrapper .item dd {
  width: 100%;
  display: inline-block;
}
#about-page #company .inner-wrapper .info-wrapper .item .dd-wrapper {
  width: 100%;
}
@media screen and (min-width: 600px) {
  #about-page #company .inner-wrapper .info-wrapper .item {
    display: flex;
    justify-content: center;
    flex-direction: row;
  }
  #about-page #company .inner-wrapper .info-wrapper .item dt {
    width: 140px;
    display: inline-block;
  }
  #about-page #company .inner-wrapper .info-wrapper .item dd {
    width: 360px;
    display: inline-block;
  }
  #about-page #company .inner-wrapper .info-wrapper .item .dd-wrapper {
    width: 360px;
  }
}

/*========================================================
*********************** WORKS-page ***********************
========================================================*/
#works-page #works-container {
  margin: 0 auto 80px;
}
#works-page #works-container iframe,
#works-page #works-container .kv {
  max-width: 1000px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  #works-page #works-container iframe,
#works-page #works-container .kv {
    margin-bottom: 40px;
  }
}
#works-page #works-container .text-wrapper {
  margin-bottom: 40px;
}
#works-page #works-container .text-wrapper h2 {
  margin-bottom: 24px;
  font-size: 24px;
}
#works-page #works-container .text-wrapper h3.cat {
  color: #888;
  font-weight: 500;
  font-size: 14px;
}
#works-page #works-container .text-wrapper .info-wrapper .item {
  justify-content: flex-start;
  padding: 0 0 8px 0;
}
#works-page #works-container .text-wrapper .info-wrapper .item a {
  color: #2C2C31;
}
@media screen and (min-width: 768px) {
  #works-page #works-container .text-wrapper {
    margin-bottom: 80px;
  }
  #works-page #works-container .text-wrapper h2 {
    font-size: 32px;
  }
}

/* music 単一投稿（旧静的 WORKS 詳細に近いレイアウト） */
#works-page #works.music-single #works-container {
  max-width: 1000px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
#works-page #works.music-single {
  padding-top: 40px;
}
#works-page #works.music-single .music-detail-eyebrow {
  margin-bottom: 8px;
}
#works-page #works.music-single .music-detail-meta {
  margin-top: 24px;
}
#works-page #works.music-single .music-detail-kv {
  margin-bottom: 40px;
}
#works-page #works.music-single .music-detail-kv img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}
#works-page #works.music-single .music-detail-body {
  margin-bottom: 48px;
  max-width: 1000px;
}
#works-page #works.music-single .music-detail-back {
  margin-bottom: 80px;
}
#works-page #works.music-single .music-detail-back a {
  color: #2C2C31;
  text-decoration: underline;
  font-weight: 500;
}
#works-page #works.music-single .music-detail-back a:hover {
  color: #EC675A;
}

#works .entry-content{
  padding-bottom: 80px;
}


