@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
header {
  position: fixed;
  z-index: 100;
  top: 0;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  background: #1D2120;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.head_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1D2120;
  padding: 10px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* 751- */
}
@media all and (min-width: 751px) {
  .head_inner {
    max-width: 750px;
  }
}

.head_logo {
  width: 19%;
}

.hamburger {
  width: 8%;
  height: 22px;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}

.nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1vw;
  width: 63%;
}
.nav_list li {
  width: 25%;
  aspect-ratio: 68/39;
  height: auto;
}
.nav_list li a {
  padding: 0 2px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .nav_list li a {
    padding: 10px;
    border-radius: 10px;
  }
}
.nav_list li.music a {
  background: #EA4E33;
}
@media (hover: hover) {
  .nav_list li.music a:hover {
    background: #FA735B;
  }
}
.nav_list li.illustration a {
  background: #0073D8;
}
@media (hover: hover) {
  .nav_list li.illustration a:hover {
    background: #2290F0;
  }
}
.nav_list li.web a {
  background: #009327;
}
@media (hover: hover) {
  .nav_list li.web a:hover {
    background: #1BC749;
  }
}
.nav_list li.shop a {
  background: #c38d37;
}
@media (hover: hover) {
  .nav_list li.shop a:hover {
    background: #E5C306;
  }
}

.copyright {
  color: #fff;
  text-align: center;
  height: 30px;
  font-size: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .copyright {
    font-size: 13px;
  }
}

.music_single footer, .shop_single footer {
  padding-bottom: 120px;
}

/*----------------------------------------------------
共通スタイル
----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

#bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: -200vh;
  right: 0;
  background: #5F3ADB;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#bg.music {
  background: #EA4E33;
}
#bg.illustration {
  background: #0073D8;
}
#bg.web {
  background: #009327;
}
#bg.shop {
  background: #c38d37;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #1D2120;
  position: relative;
  -webkit-text-size-adjust: 100%;
  background: #1D2120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  /* 751- */
}
@media all and (min-width: 751px) {
  body {
    font-size: 16px;
  }
}

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

a {
  color: #1D2120;
  text-decoration: none;
}

a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

input, label, select, textarea {
  vertical-align: middle;
}

/*----------------------------------------------------
inner
----------------------------------------------------*/
/* ベース */
.inner {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner {
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.inner_wide {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner_wide {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
  }
}

/*----------------------------------------------------
表示 非表示
----------------------------------------------------*/
.only_sp {
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .only_sp {
    display: none;
  }
}

.only_pc {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .only_pc {
    display: block;
  }
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 60px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .main {
    padding-top: 140px;
  }
}

.content_body {
  max-width: 750px;
  margin: 0 auto;
}

.up_arrow {
  position: absolute;
  top: 6%;
  left: 64%;
  width: 30vw;
  z-index: 0;
  height: 100vh;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: upDown 1.5s ease-in-out infinite;
          animation: upDown 1.5s ease-in-out infinite;
  /* 751- */
}
.up_arrow.hidden {
  display: none;
}
@media all and (min-width: 751px) {
  .up_arrow {
    width: 18vw;
  }
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -10%);
            transform: translate(-50%, -10%);
    opacity: 1;
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -10%);
            transform: translate(-50%, -10%);
    opacity: 1;
  }
}
.latest_creat a {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media (hover: hover) {
  .latest_creat a:hover {
    background: rgb(0, 0, 0);
  }
}
@media all and (min-width: 751px) {
  .latest_creat a {
    height: 160px;
    padding: 20px;
    gap: 20px;
  }
}
.latest_creat a .creat_image {
  width: 60px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .latest_creat a .creat_image {
    width: 120px;
  }
}
.latest_creat a .creator_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: calc(100% - 120px);
  /* 751- */
}
@media all and (min-width: 751px) {
  .latest_creat a .creator_info {
    width: calc(100% - 240px);
  }
}
.latest_creat a .creat_date {
  font-size: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .latest_creat a .creat_date {
    font-size: 13px;
  }
}
.latest_creat a .creat_ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .latest_creat a .creat_ttl {
    font-size: 26px;
  }
}
.latest_creat a .creat_cate {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1D2120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 10px;
  margin-top: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .latest_creat a .creat_cate {
    font-size: 12px;
  }
}
.latest_creat a .creat_cate li {
  padding: 0 3px;
  background: #fff;
}
.latest_creat a .creat_cate li.music {
  background: #EA4E33;
  color: #fff;
}
.latest_creat a .creat_cate li.illustration {
  background: #0073D8;
  color: #fff;
}
.latest_creat a .creat_cate li.web {
  background: #009327;
  color: #fff;
}
.latest_creat a .creat_cate li.shop {
  background: #c38d37;
  color: #fff;
}
.latest_creat a .btn {
  background: #fff;
  color: #1D2120;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .latest_creat a .btn {
    width: 80px;
    height: 80px;
    font-size: 16px;
  }
}
.latest_creat:not(:last-child) {
  margin-bottom: 10px;
}

a.illust_wrap {
  position: relative;
}
a.illust_wrap .creat_image {
  overflow: hidden;
}
a.illust_wrap .creat_image img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a.illust_wrap:hover .creat_image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.illust_ttl {
  font-size: 11px;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.8);
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1;
  color: #fff;
}

.price {
  color: #fff;
  font-size: 13px;
  margin-top: 5px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .price {
    font-size: 16px;
  }
}
/*# sourceMappingURL=common.css.map */