@charset "UTF-8";
/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #111;
}
html {
  font-size: 62.5%; /* 10px */
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6em;
  background-color: #f9f9f9;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
img {
  vertical-align: bottom;
}
ul, li {
  list-style: none;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}


/* loading
----------------------------------------------------------- */
#loading-jnks {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background:#000;
  text-align:center;
  color:#fff;
  /*display: none;*/
}
#loading-jnks-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading-jnks-logo img {
  width: 240px;
}


/* 以下フェードインの指定
----------------------------------------------------------- */
/* 上へ */
.fadeup {
  opacity: 0;
}
.fadeupgo {
  animation: fadeup 1.5s ease forwards;
  opacity: 0;
}
@keyframes fadeup{
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeleft {
  opacity: 0;
}
.fadeleftgo{
  animation: fadeleft 1.0s ease forwards;
  opacity: 0;
}
@keyframes fadeleft{
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.faderight {
  opacity: 0;
}
.faderightgo{
  animation: faderight 1.0s ease forwards;
  opacity: 0;
}
@keyframes faderight{
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/*背景色が伸びて出現（共通）*/
.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}
@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }
  to {
    opacity:1;
}
}

/*背景色が伸びて出現（中の要素）*/
.bgappeargo{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
}
}

/*背景色が伸びて出現（左から右）*/
.bgLRextendgo::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappear,
.bgLRextend{
  opacity: 0;
}


/* transition
----------------------------------------------------------- */
.trs {
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}

.trs-dr05 {
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -ms-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}

.trs-tfCb {
  -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  transition-timing-function: cubic-bezier(0, .96, .4, .99);
}


/* common
----------------------------------------------------------- */
.center {
  margin: 0 auto;
}
.txt_center {
  text-align: center!important;
}
.col_wht {
  color: #fff!important;
}
.break_blk {
  border: 0;
  border-bottom: 0.2rem solid #111;
  width: 4rem;
  margin: 2em auto;
}
.break_wht {
  border: 0;
  border-bottom: 0.2rem solid #fff;
  width: 4rem;
  margin: 2em auto;
}
.wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 78px;
}
.wrapper.en-style {
  font-family: "Helvetica Neue", "Helvetica", 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", "Yu Gothic", sans-serif;
}
.content {
  width: 100%;
  height: auto;
  min-height: auto;
  overflow: hidden;
}
.content h2 {
  margin-bottom: 1.6em;
}
.content-title {
  display: block;
  color: #111;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 0.3em;
  letter-spacing: 0.02em;
  font-family: 'Barlow', sans-serif;
}
.content-title.sub-ttl {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
}
/* PC・SP非表示 */
.hide-pc {
  display: none!important;
}

/* モダール閉じるボタンサイズ */
.remodal-close:before {
  font-size: 35px!important;
}


/* header
----------------------------------------------------------- */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1000px;
  height: 78px;
  font-family: 'Barlow', sans-serif;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}
.logo {
  float: left;
  /*width: 46px;*/
  width: 60px;
  margin: 10px 0 0 10px;
}
.logo a {
  display: block;
}
.logo img {
  width: 100%;
  height: auto;
}
.logo img path {
  fill: red;
}
.header_contents {
  float: right;
  margin: 0 25px 0 0;
  line-height: 78px;
}

/* gNav */
.gNav {
  margin-bottom: 0px;
}
.gNav_list {
  display: inline-block;
  overflow: visible;
}
.gNav_item {
  font-size: 1.4rem;
  float: left;
  overflow: visible;
  margin: 0 8px;
}
.gNav_item:last-child {
  margin-right: 0;
}
.gNav_item a {
  position: relative;
  padding: 0 3px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
/*  vertical-align: middle;*/
  vertical-align: baseline;
}
.gNav_item a i {
  color: #fff;
}
.header-icon {
  font-size: 24px!important;
  margin: 0 0 0 4px!important;
}
.header-icon a {
  font-weight: normal!important;
}
.header_twt_Sp,.header_dis_Sp {
  display: none;
}
/* menuTrigger */
.menuTrigger {
  display: none;
}
.gNav_item.en_tab {
  margin: 0 0 0 16px;
}
.gNav_item.en_tab a {
  padding: 7px 14px 7px;
  /*background-color: #31bcc9;*/
  border: 1px solid #41d2df;
  color: #41d2df;
  font-weight: 600;
}
.gNav_item.en_tab a:hover {
  background-color: #41d2df;
  color: #000;
}


/* Main Image
----------------------------------------------------------- */
.main-img {
  position: relative;
  /*overflow: hidden;*/
  background-color: #f9f9f9;
  /*background-color: #000;*/
}
.swiper-main {
  overflow: hidden;
}
.main-img .swiper-wrapper {
  transition-timing-function: linear!important;
}
.main-img .swiper-slide img {
  width: 100%;
}


/* Description
----------------------------------------------------------- */
#description {
  padding: 16em 0 0;
  background-color: #f9f9f9;
}
.description-bg {
  width: 100%;
}
.description-bg img {
  width: 100%;
}
.description-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px 4em;
  background-color: #f0dc5a;
  position: relative;
}
.description-img {
  width: 280px;
  margin-top: -15em;

  position:absolute;
  z-index: 999;
  /*ループ指定*/
  animation: imagemove 1.5s ease-out infinite;
/*  animation: imagemove 1.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) infinite;*/
/*  animation: imagemove 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;*/
}
.description-img img {
  width: 100%;
}
@keyframes imagemove{
  0%{top:1%;}
  50%{top:4%;}
  100%{top:1%;}
 }
.description-content {
  margin: 4em 0 0;
}
.description-box {
  text-align: center;
}
.description-box h2 {
  font-size: 4.8rem;
  line-height: 1.2;
  margin: 0 0 .4em;
  font-family: 'Barlow', sans-serif;
}
.description-box h3 {
  font-size: 1.8rem;
  line-height: 1;
}
.description-box p {
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.description-box p:not(:last-child) {
  margin-bottom: 2em;
}


/* Msg Slide 右から左へ
----------------------------------------------------------- */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.text-slide {
  display: -ms-grid;
  overflow: hidden;
}
.msg_slide {
  position: relative;
  z-index: -1;
  /*margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;*/
  width: 100%;
  background-color: #000;
}
.text-slide-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.text-slide-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.text-slide-list-left {
  -webkit-animation: infinity-scroll-left 150s infinite linear 0.5s both;
  animation: infinity-scroll-left 150s infinite linear 0.5s both;
}
.text-slide-inner ul {
  padding: 1em 0 9em;
}
.text-slide-text > p {
  width: 100%;
  padding-right: 0.5em;
  font-size: 11.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
  white-space: nowrap;
  z-index: -1;
  font-family: 'Barlow', sans-serif;
}


/* Msg Slide 右から左へ ver2
----------------------------------------------------------- */
.msg_slide2 {
  position: relative;
  z-index: -1;
  width: 100%;
  background-color: #f9f9f9;
}
.text-slide-inner2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.text-slide-inner2 ul {
  padding: 0 0 1.2em;
}
.text-slide-text2 > p {
  width: 100%;
  padding-right: 0.5em;
  font-size: 11.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  color: transparent;
  -webkit-text-stroke: 1px #9f9f9f;
  white-space: nowrap;
  z-index: -1;
  font-family: 'Barlow', sans-serif;
}


/* Project
----------------------------------------------------------- */
#project {
  padding: 0 0 8em;
  display: flex;
  justify-content: center;
  background-color: #f9f9f9;
}
.project-inner {
  width: 1240px;
  padding: 0 40px;
}
.project-area {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  margin-top: -6em;
  box-shadow: 3px 3px 6px 0px rgb(0 0 0 / 10%);
}
.project-img {
  width: 50%;
  border-radius: 18px 0 0 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  background-image: url(../img/project_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.project-img img {
  width: 48%;
  max-width: 280px;
}
.project-content {
  width: 50%;
  padding: 6em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-box h2 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 0 2.5em;
  position: relative;
  padding-bottom: 1em;
  font-family: 'Barlow', sans-serif;
}
.project-box h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 132px;
  border-bottom: 1px solid #dddddd;
}
.project-box h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  border-bottom: 1px solid #ff1500;
}
.project-box h3 {
  font-size: 3.4rem;
  line-height: 1.6;
  margin: 0 0 .9em;
  letter-spacing: 0.03em;
}
.project-box p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
}


/* NEWS
----------------------------------------------------------- */
#news {
  background-color: #f9f9f9;
}
.news-inner {
  position: relative;
  margin: 0 auto;
  padding: 0 40px 8em;
  width: 100%;
  max-width: 1240px;
}
.news_list {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  height: 19em;
  overflow: auto;
  /*overflow-y:scroll;*/
  padding-right: 1.6em;
}
.news_list li {
  width: 100%;
  padding-bottom: 1.3em;
  border-bottom: 1px solid #ccc;
}
.news_list li:not(:last-child) {
  margin-bottom: 1.3em;
}
.news_list li a {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
.news_list .descript {
  width: 100%;
  font-size: 1.4rem;
  overflow: hidden;
/*  text-overflow: ellipsis;*/
/*  white-space: nowrap;*/
}
.news_list .day {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-right: 1em;
  font-family: 'Barlow', sans-serif;
}
.news_list .news_icon {
  margin-right: 1.4em;
  padding: 6px 8px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  font-family: 'Barlow', sans-serif;
  background: #d70817;
}

/* スクロールバー装飾1 */
/*.news_list::-webkit-scrollbar{
  width: 8px;
}
.news_list::-webkit-scrollbar-track{
  background: #111;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #b5b5b5;
}
.news_list::-webkit-scrollbar-thumb{
  background: #565656;
  border-radius: 10px;
  box-shadow: none;
}*/

/* simplebar-スクロールバー装飾 */
.simplebar-scrollbar::before {
  background: #fff;
  border-radius: 10px;
  box-shadow: none;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.simplebar-track {
  background: #e5e5e5;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #e5e5e5;
}
.simplebar-track.simplebar-vertical {
  width: 10px;
}
/*-- iOSでデフォルトのスクロールバーを非表示 --*/
.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}










/* Story
----------------------------------------------------------- */
#story {
  position: relative;
}
#story::before {
  content:"";
  display: block;
  position:fixed;
  top:0;
  left:0;
  z-index:-2;
  width:100vw;
  height:100vh;
  background-image: url(../img/story_image_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.story-area {
  display: flex;
  align-items: center;
  padding: 8em 0;
  overflow: hidden;
}
.story-title-mb {
  display: none;
}
.story-img {
  width: 55%;
}
.story-img img {
  width: 100%;
  padding: 1em 1em 1em 0;
  background-color: #fff;
  border-radius: 0 30px 30px 0;
}
.story-content {
  width: 45%;
  padding: 0 4em;
}
.story-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#story .content-title {
  margin: 0 0 .1em;
}
.story-title-ds .content-title {
  font-size: 8rem;
}
#story .sub-ttl {
  font-weight: 400;
  font-style: oblique;
  font-family: 'Barlow', sans-serif;
}
.story-title-ds .sub-ttl {
  font-size: 2.6rem;
}
.story-box p {
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.05em;
}
.story-box p:not(:last-child) {
  padding: 0 0 1em;
}


/* Character
----------------------------------------------------------- */
#character {
  background-color: #f9f9f9;
}
.character-inner{
  margin: 0 auto;
  padding: 8em 0;
  width: 100%;
  max-width: 1240px;
}
.character-main {
  padding: 0 40px;
  line-height: 1.84;
}
.character_list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  justify-content: space-between;
}
.character_list li {
  width: 22%;
  margin: 0 0 3.5%;
}
.character_list li a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 4px 4px 7px 0px rgb(0 0 0 / 10%);
}
.character_list li p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  background-color: #fff;
  font-family: 'Barlow', sans-serif;
  padding: 10px;
}
.chara_name_en {
  font-weight: 600;
}
.chara_name_jp {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}
.character_list li img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-left: .8em solid transparent;
  border-bottom: .8em solid #dddddd;
}

/* キャラクター用モーダル */
.modalwnd_chara {
  max-width: 600px;
  padding: 50px 35px 35px;
}
.modalwnd_chara_image {
  width: 80%;
  margin: 0 auto;
}
.modalwnd_chara_image img {
  width: 100%;
}
.modalwnd_chara_name_en {
  font-weight: 600;
  margin-top: .7em;
  font-family: 'Barlow', sans-serif;
  font-size: 2.6rem;
  line-height: 1.2;
}
.modalwnd_chara_name_jp {
  display: block;
  margin-top: .5em;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
}
.modalwnd_chara_intro {
  margin-top: 1.5em;
  font-size: 1.2rem;
  font-family: 'Barlow', sans-serif;
  padding: .5em .7em .3em;
  display: inline-block;
  line-height: 1;
  color: #fff;
  background-color: #000;
  /*border-radius: 5px;*/
}
.modalwnd_chara_text {
  /*margin-top: .7em;*/
  margin-top: -0.8em;
  padding: 2em 2em 1.2em;
  font-size: 1.4rem;
  line-height: 1.8;
  background-color: #f6f6f6;
  border-radius: 8px;
}


/* Collab Art
----------------------------------------------------------- */
#collab {
  background-color: #fff;
}
.collab-inner {
  padding: 8em 0;
}
.collab-inner p {
  margin: 2em 0 2em;
  padding: 0 6%;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.05em;
}
.collab-img {
  max-width: 1160px;
  margin: 0 auto;
}
.collab-img img{
  width: 100%;
}

/* スライダー */
.art-slider-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
[class*=swiper]:focus {
  outline: none;
}
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.art-slider-area {
  overflow: hidden;
}
.art-slider-area .swiper {
  overflow: visible;
}
.art-slider-area .swiper-button-prev, .art-slider-area .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: .8s cubic-bezier(.2, 1, .2, 1);
  transition: .8s cubic-bezier(.2, 1, .2, 1);
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.art-slider-area .swiper-button-prev::before, .art-slider-area .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
  box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.art-slider-area .swiper-button-prev::after, .art-slider-area .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid 1px #ddd;
  border-width: 3px 3px 0 0;
  border-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.art-slider-area .swiper-button-prev {
  right: calc(100% - 1.6rem);
  left: auto;
}
.art-slider-area .swiper-button-next {
  left: calc(100% - 1.6rem);
  right: auto;
}
.art-slider-area .slide {
  overflow: hidden;
  -webkit-transition: .8s cubic-bezier(.2, 1, .2, 1), opacity 1s;
  transition: .8s cubic-bezier(.2, 1, .2, 1), opacity 1s;
  border-radius: 4px;
  -webkit-box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
}
.art-slider-area .slide-media {
  padding-top: 100%;
}
.art-slider-area .swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}


/* Goods/Shop
----------------------------------------------------------- */
#goods {
  background-color: #f9f9f9;
}
.goods-area {
  display: flex;
  align-items: center;
  padding: 8em 0 4em;
  overflow: hidden;
}
.goods-img {
  width: 55%;
}
.goods-img img {
  width: 100%;
  border-radius: 0 30px 30px 0;
}
.goods-content {
  width: 45%;
  padding: 0 4em;
}
.goods-box {
  display: flex;
  flex-direction: column;
}
.goods-box p {
  line-height: 2;
  margin-bottom: 2.8em;
  letter-spacing: 0.05em;
}
.goods-title-mb {
  display: none;
}


/* Tie-Up
----------------------------------------------------------- */
#tie-up {
  background-color: #fff;
}
.tie-up-inner {
  padding: 8em 0;
}
.tie-up-img {
  max-width: 1160px;
  margin: 0 auto;
}
.tie-up-img img{
  width: 100%;
}
.tie-up-inner p {
  margin: 2em 0;
  padding: 0 6%;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}


/* NFT Collection
----------------------------------------------------------- */
#nft-clc {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 0 8em;
  background-color: #f9f9f9;
}
.nft-clc-inner {
  width: 100%;
  background-color: #000;
  padding: 8em 40px 12em;
}
.nft-clc-inner p {
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.nft-clc-inner p:not(:last-child) {
  margin-bottom: 2em;
}
.nft-clc-area {
  margin-top: -9em;
  width: 100%;
  max-width: 1240px;
  padding: 0 40px;
}
.nft-card-l {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 6px 0px rgb(0 0 0 / 10%);
}
.nft-card-l a {
  display: flex;
}
.nft-card-l-img {
  width: 50%;
}
.nft-card-l-img img {
  width: 100%;
  border-radius: 18px 0 0 18px;
}
.nft-card-l-content {
  width: 50%;
  padding: 0 2em;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.nft-card-l-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nft-card-l-box h3 {
  font-size: 6.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 .4em;
  font-family: 'Barlow', sans-serif;
}
.nft-card-l-box p {
  line-height: 2;
  letter-spacing: 0.05em;
}
.nft-card-l-box .triangle {
  bottom: 18px;
  right: 18px;
  border-left: 1.8em solid transparent;
  border-bottom: 1.8em solid #dddddd;
}
.nft-card-btn {
  display: block;
  width: 280px;
  margin-top: 2.5rem;
}
.nft-card-btn a {
  background: #fff;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  line-height: 4em;
  letter-spacing: 0.03em;
  outline: none;
  margin: 0 auto;
  transition: all .3s;
  position: relative;
  z-index: 1;
  border: 1px solid #000;
  border-radius: 50px;
}
.nft-card-btn a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.nft-card-m-area {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
}
.nft-card-m {
  display: flex;
  flex-direction: column;
  width: 48%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 3px 3px 6px 0px rgb(0 0 0 / 10%);
}
.nft-card-m-img {
  width: 100%;
}
.nft-card-m-img img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.nft-card-m-content {
  width: 100%;
  padding: 1.6em 1.4em;
  display: flex;
  overflow: hidden;
  position: relative;
}
.nft-card-m-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nft-card-m-box h3 {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 .4em;
  font-family: 'Barlow', sans-serif;
}
.nft-card-m-box p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.nft-card-m-box .triangle {
  bottom: 14px;
  right: 14px;
  border-left: 1em solid transparent;
  border-bottom: 1em solid #dddddd;
}


/* History
----------------------------------------------------------- */
#history {
  background-color: #000;
}
.history-inner {
  padding: 8em 0;
  position: relative;
}
.history-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
}
.history-content {
  width: 72%;
}
#history.content h2 {
  margin-bottom: 0;
}
#history.content h2 span {
  margin-bottom: 0;
}
.history-area h3 {
  font-size: 20rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.045em;
  color: #f00;
  margin-left: -10px;
  font-family: 'Barlow', sans-serif;
}
.history-box {
  margin: 2.4em 0 2em 2.4em;
}
.history-box p {
  letter-spacing: 0.05em;
  line-height: 2;
  color: #fff;
  padding: 0 0 1.6em 2em;
  position: relative;
}
.history-box p:not(:last-child) {
/*  margin-bottom: 1em;*/
  padding: 0 0 3em 2em;
}
.history-box p .month {
  display: block;
  font-size: 2rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
}
.history-box p .month .number{
  font-size: 2.8rem;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  padding-right: .05em;
}
.history-box p::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}
.history-bdline {
  position: absolute;
  left: 0.24em;
  top: 0;
  width: 2px;
  height: 100%;
  background: #939393;
}
.history-bd-top {
  top: 22px;
}
.history-message-box {
  margin: 4.4em 0 0 2.4em;
}
.history-message-box p {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #fff;
}
.history-message-box p:not(:last-child) {
  padding-bottom: 1.6em;
}
.history-side-text {
  width: 28%;
  position: relative;
}
.history-side-text p {
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  font-size: 12rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
}


/* Art Director Profile
----------------------------------------------------------- */
#profile {
  background-color: #fff;
}
.profile-inner {
  padding: 8em 0;
  position: relative;
}
.profile-inner::before {
  content: "";
  display: block;
/*  background-color: #b3c2c1;*/
  background-color: #e3e3e3;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(50% + 12vw);
}
.profile-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  position: relative;
}
.profile-contents {
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}
.profile-contents h2 {
  font-size: 7.2rem;
  line-height: 1;
  margin-bottom: 0.8em;
  letter-spacing: 0.02em;
  font-family: 'Barlow', sans-serif;
}
.profile-contents h2 span {
  font-size: 3rem;
  font-weight: 600;
  display: block;
  margin-bottom: .1em;
}
.profile-img {
  width: 36vw;
  max-width: 450px;
  position: absolute;
  top: 5rem;
  left: calc(50% + 80px);
}
.profile-img img {
  width: 100%;
  height: auto;
}
.profile-msg {
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 3em;
}
.profile-contents h3 {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 0.4em;
  letter-spacing: 0.02em;
  font-family: 'Barlow', sans-serif;
  /*background: #000;
  display: inline-block;
  padding: 0.3em 0.5em;
  color: #fff;
  font-weight: 500;*/
}
.profile-list {
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}
.profile-sns {
  display: inline-block;

}
.profile-sns a {
  display: block;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  outline: none;
  margin: 0 auto;
  padding: .5em 1em;
  transition: all .3s;
  white-space: nowrap;
  background-color: #000;
  border-radius: 6px;
}
.profile-sns i {
  color: #fff;
  padding-right: 5px;
  font-size: 1.5rem;
}


/* SNS
----------------------------------------------------------- */
.sns_wrap {
  padding: 0 40px;
}
.sns_wrap.twt {
  background-color: #7ccfdc;
  background-color: #78d0f0;
}
.sns_wrap.dis {
  background-color: #a5b2e9;
  background-color: #828de8;
}
.sns_wrap.isg {
  background-color: #e9a5a5;
}
.sns_content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
  position: relative;
  z-index: 0;
}
.sns_content:after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  max-width: 160px;
  height: 100%;
  background-image: url(../img/thunder_image.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.3;
}
/*.sns_content:after {
  position: absolute;
  content: "JUNKeeeeS";
  top: 0;
  right: -110px;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Arial', 'sans-serif';
  font-style: oblique;
  letter-spacing: .5em;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}*/
.sns_box {
  display: flex;
  justify-content: start;
  /*justify-content: space-between;*/
  align-items: center;
  /*align-items: stretch;*/
  flex-wrap: wrap;
  margin-bottom: 1.5em;
  /*border-right: 2px solid #fff;*/
}
.sns_box_image {
  width: 140px;
}
.sns_box_image img {
  width: 100%;
}
.sns_box_ttl {
  position: relative;
  margin-left: 26px;
  padding-bottom: 1.8em;
}
.sns_box_ttl h3 {
  font-size: 6rem;
  color: #000;
  line-height: 1;
  letter-spacing: 0.03em;
  font-family: 'Arial', 'sans-serif';
}
.dis .sns_box_ttl h3 {
  letter-spacing: 0;
}
.sns_box_ttl p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: .5em;
}
.sns_box_ttl:after {
  position: absolute;
  content: "";
  bottom: 0;
  background: #000;
  left: 0;
  width: 8em;
  height: 2px;
}
.sns-heading {
  font-size: 2.4rem;
  color: #000;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-bottom: .8em;
}
.sns-text {
  margin-bottom: 1.5em;
}
.sns-text span {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #000;
  display: block;
}
.sns-text span:not(:last-child) {
  margin-bottom: 1em;
}
.sns_btn {
  width: 200px;
  line-height: 1.0;
  background-color: #000;
  border-radius: 6px;
}
.sns_btn a {
  color: #fff;
  display: block;
  font-size: 1.3rem;
  text-align: center;
  line-height: 3.5em;
  outline: none;
  margin: 0 auto;
  transition: all .3s;
  padding: 0 .3em;
  white-space: nowrap
}
/*.sns_btn a:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}*/
.sns_btn .btn-icon {
  color: #fff;
  padding-right: 5px;
  font-size: 1.5rem;
}
.sns_btn_area {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  /*flex-direction: column;*/
  align-items: center;
}
.sns_btn:not(:first-child) {
  margin-left: 1em;
}


/* ボタン
----------------------------------------------------------- */
.btn {
  display: block;
  width: 360px;
  line-height: 1.0;
  border: 1px solid #fff;
  font-family: 'Barlow', sans-serif;
}
.btn a {
  background: transparent;
  color: #fff;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  line-height: 4.2em;
  letter-spacing: 0.03em;
  outline: none;
  margin: 0 auto;  transition: all .3s;
  position: relative;
  z-index: 1;
}
.btn a:hover {
  background: #e3e3e3;
  color: #000;
  opacity: 1;
}
.btn a::before {
  content: "";
  position: absolute;
  top: 43%;
  left: -22px;
  width: 49px;
  height: 6px;
  background: url(../img/icon_arrow.png) no-repeat;
  z-index: 999;
}

/* ブラック枠線の記述 */
.btn_blk {
  border: 1px solid #000;
}
.btn_blk a {
  background-color: transparent;
  color: #000;
}
.btn_blk a:hover {
  background: #333;
  color: #fff;
}
.btn_blk a::before {
  background: url(../img/icon_arrow_blk.png) no-repeat;
}


/* スクロールダウン矢印
----------------------------------------------------------- */
.scrolldown{
  position:absolute;
  bottom:1%;
  right:50%;
  z-index: 999;
  /*ループ指定*/
  animation: arrowmove 1s ease-in-out infinite;
}
@keyframes arrowmove{
  0%{bottom:1%;}
  50%{bottom:3%;}
  100%{bottom:1%;}
 }
.scrolldown span{
  position: absolute;
  left:-20px;
  bottom:-22px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: -32px;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}
.scrolldown:after{
  content:"";
  position: absolute;
  bottom:-32px;
  right:0;
  /*矢印の形状*/
  width:1px;
  height: 50px;
  background:#eee;
}


/* footer
----------------------------------------------------------- */
footer {
  position: relative;
  width: 100%;
  text-align: center;
  background-color: #000;
  z-index: 999;
}
footer nav {
  padding-top: 30px;
}
.footerlist {
  list-style-type: none;
  font-size: 1.2rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footerlist li:not(:last-child) {
  border-right: solid 1px #fff;
}
.footerlist li a {
  padding: 0 15px;
  color: #fff;
  line-height: 1;
}
.copy {
  color: #fff;
  line-height: 60px;
  font-size: 1.2rem;
  font-family: 'Century Gothic',sans-serif;
}


/* ページTOPに戻るボタン
----------------------------------------------------------- */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
#page-top img {
  width: 80px;
  height: 80px;
  opacity: 0.8;
}






/* 1025px以上
----------------------------------------------------------- */
@media screen and (min-width: 1025px) {

  /* header
  --------------------- */
  .gNav {
    display: block!important;
  }


  /* Collab Art
  --------------------- */
  /* スライダー */
  .swiper-button-prev::before, .swiper-button-next::before {
    -webkit-transition: .8s cubic-bezier(.2, 1, .2, 1);
    transition: .8s cubic-bezier(.2, 1, .2, 1);
  }
  .swiper-button-prev:hover::before, .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  /*.art-slider-area .slide img {
    -webkit-transition: .8s cubic-bezier(.2, 1, .2, 1);
    transition: .8s cubic-bezier(.2, 1, .2, 1);
  }
  .art-slider-area .slide:hover {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
    -webkit-box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  }
  .art-slider-area .slide:hover img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }*/
}






/* 1024px以下ヘッダー切替
----------------------------------------------------------- */
@media screen and (max-width: 1024px) {

  .wrapper {
    padding-top: 56px;
  }
  .u-desktop {
    display: none!important;
  }


  /* header
  --------------------- */
  .header {
    min-width: 100%;
    height: 56px;
  }
  .logo {
    float: none;
    width: 42px;
    margin: 8px auto 0;
    /*line-height: 56px;*/
  }
  .header_contents {
    line-height: 1;
  }
  .gNav {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 22px;
    background-color: rgba(0,0,0,.9);
  }
  .gNav_inner {
    display: table;
    width: 100%;
    height: 100%;
  }
  .gNav_list {
    display: table-cell;
    vertical-align: middle;
  }
  .gNav_item {
    font-size: 1.6rem;
    float: none;
    width: 100%;
    margin: 0;
    padding: 12px 0;
    text-align: center;
  }
  .gNav_item a {
    font-weight: 700;
  }
  .gNav_item:last-child {
    margin-right: auto;
  }
  .header-icon {
    display: none;
    font-size: 26px!important;
    margin: 0!important;
    line-height: 1;
    padding: 5px 0!important;
  }
  .header_twt_Sp {
    position: absolute;
    top: 14px;
    right: 80px;
    display: block;
  }
  .header_isg_Sp {
    position: absolute;
    top: 14px;
    right: 12px;
    display: block;
  }
  .header_dis_Sp {
    position: absolute;
    top: 14px;
    right: 46px;
    display: block;
  }
  .header_twt_Sp a,.header_isg_Sp a,.header_dis_Sp a {
    /*font-size: 16px;
    font-size: 1.6rem;*/
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 18px;
    display: block;
    width: 28px;
    height: 28px;
    /*padding-top: 5px;*/
    padding-top: 5px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    background-color: #000;
    border: 1px solid #fff;
  }
  .header_twt_Sp a i,.header_isg_Sp a i,.header_dis_Sp a i {
    color: #fff;
  }
  .header_twt_Sp.open a,.header_isg_Sp.open a,.header_dis_Sp.open a {
    color: #000;
    background-color: #fff;
    border: 1px solid #fff;
  }
  .header_twt_Sp.open a i,.header_isg_Sp.open a i,.header_dis_Sp.open a i {
    color: #000;
  }
  .gNav_item.en_tab {
    margin: 8px 0 0;
  }
  .gNav_item.en_tab a {
    font-weight: 700;
  }
  .menuTrigger {
    position: absolute;
    z-index: 6;
    z-index: 601;
    top: 19px;
    left: 18px;
    display: block;
    width: 26px;
    height: 18px;
    cursor: pointer;
  }
  .menuIcon_line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .menuIcon_line:nth-of-type(1) {
    top: 0;
  }
  .menuIcon_line:nth-of-type(2) {
    top: 8px;
  }
  .menuIcon_line:nth-of-type(3) {
    top: 16px;
  }
  /* open */
  .menuIcon_line.open {
    background: #fff;
  }
  .menuIcon_line.open:nth-of-type(1) {
    top: 8px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
  .menuIcon_line.open:nth-of-type(2) {
    opacity: 0;
  }
  .menuIcon_line.open:nth-of-type(3) {
    top: 8px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }


  /* Description
  --------------------- */
  #description {
    padding: 12em 0 0;
  }
  .description-img {
    width: 220px;
    margin-top: -11em;
  }


  /* Collab Art
  --------------------- */
  /* スライダー */
  .art-slider-inner {
    padding: 0 4rem;
  }
  .art-slider-area .swiper {
    padding: 0 3.2rem;
  }
  .art-slider-area .swiper-button-prev {
    right: calc(100% - 5.2rem);
  }
  .art-slider-area .swiper-button-next {
    left: calc(100% - 5.2rem);
  }


  /* Msg Slide 右から左へ
  --------------------- */
  .text-slide-list-left {
    -webkit-animation: infinity-scroll-left 100s infinite linear 0.5s both;
    animation: infinity-scroll-left 100s infinite linear 0.5s both;
  }
  .text-slide-inner ul {
    padding: .4em 0 4em;
  }
  .text-slide-text > p {
    font-size: 8rem;
  }

  /* Msg Slide 右から左へ ver2
  --------------------- */
  .text-slide-text2 > p {
    font-size: 8rem;
  }


  /* Project
  --------------------- */
  #project {
    padding: 0 0 3.2em;
  }
  .project-inner {
    width: 100%;
    padding: 0 5.5%;
  }
  .project-area {
    flex-direction: column;
    margin-top: -3em;
  }
  .project-img {
    width: 100%;
    border-radius: 18px 18px 0 0;
    padding: 4em 0;
  }
  .project-img img {
    width: 24%;
  }
  .project-content {
    width: 100%;
    padding: 2.2em 1.5em 1.5em;
  }
  .project-box h2 {
    font-size: 1.2rem;
    margin: 0 0 1.4em;
    padding-bottom: .8em;
  }
  .project-box h2::before {
    width: 114px;
  }
  .project-box h2::after {
    width: 20px;
  }
  .project-box h3 {
    font-size: 2.4rem;
  }


  /* NEWS
  --------------------- */
  .news-inner {
    padding: 0 6% 3.2em;
  }


  /* Story
  --------------------- */
  #story::before {
    background-position: right center;
  }
  .story-area {
    padding: 3.2em 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .story-img {
    width: 100%;
    padding-left: 6%;
  }
  .story-img img {
    padding: .8em 0 .8em .8em;
    border-radius: 20px 0 0 20px;
  }
  .story-content {
    width: 100%;
    padding: 0 6%;
    margin-top: 2em;
  }
  .story-title-ds {
    display: none;
  }
  .story-title-mb {
    display: block;
    padding-left: 6%;
  }
  .story-title-mb .content-title.sub-ttl {
    font-size: 2.6rem;
  }
  .story-box p:not(:last-child) {
    padding: 0 0 1.8em;
  }


  /* Character
  --------------------- */
  .character-inner {
    padding: 3.2em 0;
  }
  .character-main {
    padding: 0;
  }
  .character_list {
    padding: 0 6%;
  }


  /* Goods/Shop
  --------------------- */
  .goods-area {
    padding: 3.2em 0 2em;
    flex-direction: column;
    align-items: flex-start;
  }
  .goods-title-ds {
    display: none;
  }
  .goods-title-mb {
    display: block;
    padding-left: 6%;
  }
  .goods-img {
    width: 100%;
    padding-left: 6%;
  }
  .goods-img img {
    border-radius: 10px 0 0 10px;
  }
  .goods-content {
    width: 100%;
    padding: 0 6%;
    margin-top: 2em;
  }
  .goods-box p {
    margin-bottom: 2em;
  }


  /* Collab Art
  --------------------- */
  .collab-inner {
    padding: 3.2em 0;
  }


  /* Tie-Up
  --------------------- */
  .tie-up-inner {
    padding: 3.2em 0;
  }


  /* NFT Collection
  --------------------- */
  #nft-clc {
    padding: 0 0 3.2em;
  }
  .nft-clc-inner {
    padding: 3.2em 6% 12em;
  }
  .nft-clc-area {
    padding: 0 6%;
  }
  .nft-card-l-box h3 {
    font-size: 4.8rem;
  }


  /* History
  --------------------- */

  .history-inner {
    padding: 3.2em 0;
  }
  .history-area {
    padding: 0 6%;
  }
  .history-area h3 {
    font-size: 16rem;
  }


  /* Art Director Profile
  --------------------- */
  .profile-inner {
    padding: 3.2em 0;
  }
  .profile-inner::before {
    left: 75%;
  }
  .profile-area {
    padding: 0 6%;
  }
  .profile-contents {
    -webkit-box-flex: 0;
    flex: 0 0 54%;
    max-width: 54%;
  }
  .profile-contents h2 {
    margin-bottom: 0.6em;
  }
  .profile-img {
    right: 6%;
    top: 5rem;
    left: auto;
  }
}





/* 767px以下
----------------------------------------------------------- */
@media screen and (max-width:767px) {

  body {
    font-size: 1.4em;
  }


  /* loading
  --------------------- */
  #loading-jnks-logo img {
    width: 60%;
  }


  /* common
  --------------------- */
  .break_blk {
    border-bottom: 0.3rem solid #111;
    width: 3rem;
    margin: 1.8em auto;
  }
  .break_wht {
    border-bottom: 0.3rem solid #fff;
    width: 3rem;
    margin: 1.8em auto;
  }
  .content-title {
    font-size: 3.6rem;
  }
  .content-title.sub-ttl {
    font-size: 1.3rem;
  }
  /* PC・SP非表示 */
  .hide-pc {
    display: block!important;
  }
  .hide-sp {
    display:none!important;
  }
  /* モーダル余白 */
  .remodal-wrapper {
    padding: 20px 20px 0px;
  }


  /* Description
  --------------------- */
  #description {
    padding: 10em 0 0;
  }
  .description-area {
    padding: 0 6% 6%;
  }
  .description-img {
    width: 180px;
    margin-top: -10em;
  }
  .description-box h2 {
    font-size: 3.4rem;
  }
  .description-box h3 {
    font-size: 1.6rem;
  }
  .description-box p {
    text-align: left;
    font-weight: 400;
  }
  .description-box p:not(:last-child) {
    margin-bottom: 1.4em;
  }


  /* Msg Slide 右から左へ
  --------------------- */
  .text-slide-text > p {
    font-size: 5rem;
  }
  /* Msg Slide 右から左へ ver2
  --------------------- */
  .text-slide-text2 > p {
    font-size: 5rem;
  }


  /* Project
  --------------------- */
  .project-img img {
    width: 32%;
  }

  .project-img {
    padding: 3em 0;
  }
  .project-box p {
    font-weight: 400;
  }


  /* NEWS
  --------------------- */
  .news_list {
    height: 21em;
    padding-right: 1.2em;
    /*padding-right: 0;*/
  }
  .news_list li {
    padding-bottom: 1.1em;
  }
  .news_list li:not(:last-child) {
    margin-bottom: 1.1em;
  }
  .news_list .descript {
    font-size: 1.4rem;
  }
  .news_list .day {
    font-size: 1.3rem;
    margin-right: .8em;
    margin-bottom: 1em
  }
  .news_list .news_icon {
    margin-right: 1em;
    padding: .4em .6em;
    font-size: 1.1rem;
  }
  .news_list li a {
    flex-direction: column;
  }
  .news_list .descript {
    white-space: normal;
    line-height: 1.5;
  }


  /* Story
  --------------------- */
  .story-img img {
    padding: .6em 0 .6em .6em;
/*    border-radius: 10px 0 0 10px;*/
  }
  .story-title-mb .content-title {
    font-size: 4rem;
  }
  .story-title-mb .content-title.sub-ttl {
    font-size: 1.8rem;
  }


  /* Character
  --------------------- */
  .character-inner{
    width: 100%;
  }
  /*.character_box {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }*/
  .character_list {
    width: 100%;
    font-size: 1.2rem;
  }
  .character_list li {
    width: 47%;
    margin: 0 0 8%;
  }


  /* キャラクター用モーダル */
  .modalwnd_chara {
    max-width: 100%;
    /*padding: 35px;*/
    padding: 35px 35px 25px;
  }
  .modalwnd_chara_image {
    width: 100%;
  }
  .modalwnd_chara_name_en {
    margin-top: .7em;
    font-size: 2rem;
  }
  .modalwnd_chara_name_jp {
    margin-top: .3em;
    font-size: 1.2rem;
  }
  .modalwnd_chara_intro {
    font-size: 1.1rem;
  }
  .modalwnd_chara_text {
    padding: 1.8em 1em 1em;
    font-size: 1.2rem;
  }


  /* Collab Art
  --------------------- */
  .collab-img {
    width: 100%;
  }
  .collab-inner p {
    text-align: left;
  }

    /* スライダー */
  .art-slider-area .swiper {
    padding: 0 1.2rem;
  }
  .art-slider-area .swiper-button-prev {
    right: calc(100% - 2.8rem);
  }
  .art-slider-area .swiper-button-next {
    left: calc(100% - 2.8rem);
  }
  .art-slider-area .swiper-button-prev, .art-slider-area .swiper-button-next {
    width: 5rem;
    height: 5rem;
  }


  /* Tie-Up
  --------------------- */
  .tie-up-img {
    width: 100%;
  }
  .tie-up-inner p {
    text-align: left;
  }


  /* NFT Collection
  --------------------- */
  .nft-clc-inner p {
    text-align: left;
  }
  .nft-clc-inner p:not(:last-child) {
    margin-bottom: 1.4em;
  }
  .nft-clc-area {
    margin-top: -10em;
  }
  .nft-card-l {
    border-radius: 10px;
  }
  .nft-card-l a {
    flex-direction: column;
  }
  .nft-card-l-img {
    width: 100%;
  }
  .nft-card-l-img img {
    border-radius: 10px 10px 0 0;
  }
  .nft-card-l-content {
    width: 100%;
    padding: 1.4em;
    justify-content: start;
  }
  .nft-card-l-box h3 {
    font-size: 3.2rem;
  }
  .nft-card-l-box .triangle {
    bottom: 14px;
    right: 14px;
    border-left: 1em solid transparent;
    border-bottom: 1em solid #dddddd;
  }
  .nft-card-m-area {
    margin-top: 0;
    flex-direction: column;
  }
  .nft-card-m {
    width: 100%;
    margin-top: 2em;
    border-radius: 10px;
  }
  .nft-card-m-img img {
    border-radius: 10px 10px 0 0;
  }
  .nft-card-m-content {
    padding: 1.4em;
  }
  .nft-card-m-box h3 {
    font-size: 2.8rem;
  }


  /* History
  --------------------- */
  .history-content {
    width: 100%;
  }
  .history-area h3 {
    font-size: 8rem;
    margin-left: 0;
  }
  .history-box {
    margin: 1em 0 2em 1.2em;
  }
  .history-box p {
    padding: 0 0 1.6em 1.6em;
  }
  .history-box p:not(:last-child) {
    padding: 0 0 2.4em 1.6em;
  }
  .history-box p .month {
    font-size: 1.6rem;
  }
  .history-box p .month .number{
    padding-right: .08em;
  }
  .history-bdline {
    left: 0.28em;
  }
  .history-message-box {
    margin: 2em 0 0 0;
  }
  .history-message-box p {
    font-size: 1.6rem;

  }
  .history-side-text {
    width: auto;
  }
  .history-side-text p {
    font-size: 7rem;
    opacity: 0.3;
  }


  /* Art Director Profile
  --------------------- */
  #profile {
  /*  background-color: #b3c2c1;*/
    background-color: #e3e3e3;
  }
  .profile-inner::before {
    display: none;
  }
  .profile-area {

    padding: 0;
  /*  flex-direction: column;*/
  }
  .profile-contents {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .profile-contents h2 {
    font-size: 4rem;
    margin-bottom: 0.6em;
    padding-left: 6%;
  }
  .profile-contents h2 span {
    font-size: 1.8rem;
  }
  .profile-img {
    width: 85%;
    position: static;
    margin: 0 0 0 auto;
    box-shadow: -15px 15px 0 0px rgb(255 255 255);
  }
  .profile-msg {
    padding: 0 6%;
    margin-top: 3em;
    margin-bottom: 2em;
  }
  .profile-contents h3 {
    padding-left: 6%;
    font-size: 2.2rem;
    margin-bottom: 0.2em;
  }
  .profile-list {
    padding: 0 6%;
  }
  .profile-sns {
    padding: 0 6%;
  }


  /* SNS
  --------------------- */
  .sns_wrap {
    padding: 0 6%;
  }
  .sns_content {
    padding: 15% 0;
  }
  .sns_content:after {
    top: 0;
    right: -4%;
    width: 50%;
  }
  .sns_box {
    flex-wrap: nowrap;
  }
  .sns_box_image {
    width: 28%;
  }
  .sns_box_image img {
    width: 100%;
  }
  .sns_box_ttl {
    margin-left: 1.2em;
    padding-bottom: 1.4em;
  }
  .sns_box_ttl h3 {
    font-size: 3.8rem;
    /*font-size: 10vw;*/
  }
  .sns_box_ttl p {
    font-size: 1.3rem;
    /*font-size: 3.467vw;*/
  }
  .sns-heading {
    margin-bottom: .8em;
    font-size: 1.8rem;
    /*font-size: 5vw;*/
  }
  .sns-text span {
    font-size: 1.4rem;
    /*font-size: 3.467vw;*/
  }
  .sns-text span:not(:last-child) {
    margin-bottom: 1.5em;
  }
  .sns_btn_area{
    flex-direction: column;
    align-items: normal;
  }
  .sns_btn a {
    font-size: 1.4rem;
  }
  .sns_btn:not(:first-child) {
    margin-left: 0;
    margin-top: 1em;
  }


  /* ボタン
  --------------------- */
  .btn {
    width: 60%;
  }
  .btn a {
    font-size: 1.3rem;
    line-height: 3.4em;
  }


  /* footer
  --------------------- */
  .footerlist {
    font-size: 1.035rem;
  }
  .copy {
    line-height: 50px;
    font-size: 1rem;
  }


  /* ページTOPに戻るボタン
  --------------------- */
  #page-top {
    bottom: 15px;
    right: 15px;
  }
  #page-top img {
    width: 50px;
    height: 50px;
  }
}





/* 767px以下(横長)
----------------------------------------------------------- */
@media screen and (max-width: 767px) and (orientation: landscape) {

  /* header
  --------------------- */
  .gNav_list {
    text-align: center;
  }
  .gNav_item {
    display: inline-block;
    width: auto;
    margin-right: 15px;
    padding: 8px 0;
  }
  .gNav_item:after {
    margin-left: 15px;
    content: '/';
  }
}










