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



/* 以下フェードインの指定
----------------------------------------------------------- */
/* 上へ */
.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
----------------------------------------------------------- */
.dsp_inbk {
  display: inline-block!important;
}
.center {
  margin: 0 auto!important;
}
.txt_center {
  text-align: center!important;
}
.txt_left {
  text-align: left!important;
}
.bold {
  font-weight: 700;
  color: inherit;
}
.textlink_under {
  text-decoration: underline;
  color: #0085be;
}
.ftsize-110p {
  font-size: 110%;
}
.ftsize-120p {
  font-size: 120%;
  
}
.ftsize-130p {
  font-size: 130%;
}
.ftsize-140p {
  font-size: 140%;
}
.col_blk {
  color: #000!important;
}
.col_wht {
  color: #fff!important;
}
.col_cha {
  color: #333!important;
}
.col_org {
  color: #eb6103!important;
}
.col_pnk {
  color: #ff2b63;
}
.bg_gry {
  background-color: #a2a2a2!important;
}
.marker_blu {
  background:#b264ff;
  padding: 10px 10vw;
}


.marker_yel {
  /*background: linear-gradient(transparent 50%, #fff598 60%);*/
  background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgb(251, 251, 138) 50%);
  /*background: linear-gradient(transparent 50%, #fbfb8a 50%);*/
  color: inherit;
}
.bd_btm_sl_wht {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.2em;
}
.bd_btm_sl_pnk {
  border-bottom: 1px solid #ff2b63;
  padding-bottom: 0.2em;
}
.bd_top_sl_wht {
  border-top: 1px solid #fff;
  padding-top: 0.2em;
}
.break_blk {
  border: 0;
  border-bottom: 0.6rem solid #000;
  width: 4rem;
  margin: 2em auto;
}
.break_gry {
  border: 0;
  border-bottom: 0.6rem solid #7e7e7e;
  width: 4rem;
  margin: 2em auto;
}
.break_wht {
  border: 0;
  border-bottom: 0.6rem 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;
  /*height: 100vh;*/
  overflow: hidden;
}
.content-side-text {
  font-size: 1.2rem;
  font-family: 'Arial', 'sans-serif';
  font-style: oblique;
  letter-spacing: 0.1em;
  position: absolute;
  top: 1em;
  left: 1.8em;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.content-side-text p {
  color: rgba(255,255,255,0.4);
}
.content h2 {
  margin-bottom: 1.6em;
}
.content-title {
  display: block;
  color: #fff;
  font-size: 5.9rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: 'Paytone One';
}

.content-title2 {
  display: block;
  color: #fff;
  font-size: 25px;
  letter-spacing: 0.05em;
  font-family: 'Brandon Grotesque', 'Noto Sans JP', sans-serif;
  text-align: left;
}

.content-title3 {
  display: block;
  color: #fff;
  font-size: 5.9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: 'Paytone One';
}


.content-title4 {
  display: block;
  color: #fff;
  font-size: 5.9rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-family: 'Paytone One';
}

.content-title5 {
  display: block;
  color: #312c29;
  font-size: 5.9rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-family: 'Paytone One';
}

.fa-exclamation  {
  color: #ff0000;
}
.fa-question {
  color: #ff0000;
}
.fa-arrow-circle-right {
  color: #326ea9;
  
}



@media screen and (max-width: 767px) {
.content-title5 {
  font-size: 3.9rem;
}
}



@media screen and (max-width: 1024px) {
  .content-title2 {
    display: block;
    color: #fff;
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
.content-title3 {
  display: block;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: 'Paytone One';
}
}

@media screen and (max-width: 400px) {
.content-title4 {
  display: block;
  color: #fff;
  font-size: 3.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: 'Paytone One';
}
}





.border-left-wh {
  border-left:5px solid #fff; /*線の設定*/
  padding:0px 0 0 23px; /*余白の設定*/
}

.border-left-bk {
  border-left:5px solid #000; /*線の設定*/
  padding:0px 0 0 23px; /*余白の設定*/
}


.head-border {
    position: relative;
    display: inline-block;
    padding: 0 0px;
}

@media screen and (max-width: 400px) {
  .head-border {
      position: relative;
      display: inline-block;
  }
  }


.head-border:before {
    left: 0;
}

.head-border-bk {
    position: relative;
    display: inline-block;
    padding: 0 ;
}

.head-border-bk2 {
    position: relative;
    display: inline-block;
    padding: 0 0px;
}


.content-title.sub-ttl0 {
  position: relative;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  padding: 0 0px;
  font-weight: normal;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
.content-title.sub-ttl0 {
  font-size: 1.3rem;
  padding: 0px;
}
}

.content-title.sub-ttl {
  position: relative;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  padding-left: 0px;
  font-weight: normal;
  font-family: 'Noto Sans JP', sans-serif;
}
.content-title.sub-ttl:before {
  position: absolute;
  content: '';
  top: 0;
  left:0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon_slash.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.content-title .ttl-sm {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: .8em;
}
.content h2.ttl-center {
  text-align: center;
}
.content h2.ttl-center .sub-ttl {
  padding-left: 0rem;
  position: relative;
  text-align: center;
}
.content h2.ttl-center .sub-ttl:before {
  display: none;
}

/* PC・SP非表示 */
.hide-pc {
  display: none!important;
}

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


/* NEWS
----------------------------------------------------------- */
.header-news {
  width: 100%;
  background-color: #ff2b63;
  padding: 0 6%;
}
.header-news p {
  display: block;
  font-size: 2.2vw;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 0 auto;
  padding: 1em 0;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: 'Arial', sans-serif;
}
.header-news span {
  color: #fff;
}
.header-news i {
  font-size: 2.2vw;
  color: #fff;
  padding-left: .3em;
}


/* header
----------------------------------------------------------- */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1000px;
  height: 78px;
  font-family: 'Brandon Grotesque', sans-serif;
  background-color: #26283b;
  color: #fff;
  overflow: hidden;
}
.logo {
  float: left;
  /*width: 46px;*/
  width: 255px;
  margin: 3px 0 0 10px;
}
.logo a {
  display: block;
}
.logo img {
  width: 100%;
  height: auto;
  margin: -27px 0px;
}
.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: 13px;
  font-size: 1.3rem;
  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: 400;
  letter-spacing: 0.05em;
  vertical-align: middle;
  font-family: 'RFPG2サンセリフ-U', Paytone One;
}
.gNav_item a i {
  color: #fff;
}
.header-icon {
  font-size: 31px!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: 10px 14px 7px;
  /*background-color: #31bcc9;*/
  border: 1px solid #41d2df;
  color: #41d2df;
  font-weight: 700;
}
.gNav_item.en_tab a:hover {
  background-color: #41d2df;
  color: #000;
}


/* main-img
----------------------------------------------------------- */
.main-img {
  position: relative;
  /*overflow: hidden;*/
  background-color: #f6f6f6;
  /*background-color: #000;*/
}
.swiper-main {
  overflow: hidden;
}
.main-img .swiper-wrapper {
  transition-timing-function: linear!important;
}
.main-img .swiper-slide img {
  width: 100%;
}
.main-img-box {
  z-index: 999;
  position: absolute;
  /*top: 220px;*/
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #1a1a1a;
  padding: 25px 30px;
}
.main-img-btn {
  position: relative;
  background: #444;
  color: #fff;
  width: 480px;
  border: 1px solid #737373;
  border-radius: 5px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: opacity .3s;
  line-height: 1;
  text-align: center;
  padding: 1.3em;
}
.main-img-btn span {
  color: #ccc;
  font-size: 9px;
  position:absolute;right: 1.5em;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.mt10 {
  margin-top: 10px;
}
.main-banner-area {
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #000;
  padding: 1.25em;
  width: 20%;
  border-radius: 15px;
}
.main-banner {
  position: relative;
}
.main-banner img {
  width: 100%;
}
.main-banner-area span {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: #fff;
  color: #000;
  width: 100px;
  border-radius: 5px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  padding: 5px;
}


/* EVENT
----------------------------------------------------------- */
#event {
  /*padding: 60px 40px 30px;*/
  padding: 88px 40px 70px;
  background-image: url(../img/haikei.jpg);
  margin-top: -77px;
}
.event-area {
  margin: 0px auto 30px;
  width: 100%;
  max-width: 1080px;
}
.event-area img {
  width: 100%;
  /*border: 1px solid #fff;*/
}
.event-area2 {
  margin: 30px auto 0;
  width: 100%;
  max-width: 1080px;
}
.event-area2 img {
  width: 100%;
}
@media screen and (max-width: 767px){
.event-area {
  margin: 0px auto 24px;
}
}


/* NEWS
----------------------------------------------------------- */
#news {
  padding: 80px 0 100px;
  background-color: #000;
}
.news-inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
}
.news_list {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  height: 12em;
  overflow: auto;
  /*overflow-y:scroll;*/
  padding-right: 1.6em;
  background-color: #000;
}
.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: center;
}
.news_list .descript {
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_list .day {
  font-size: 1.4rem;
  color: #999999;
  margin-right: 1em;
  /*margin-left: .8em;*/
}
.news_list .news_icon {
  margin-right: 1.4em;
  padding: 6px 8px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  /*background: #51b3c1;*/
  background: #bb010e;
  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: #565656;
  border-radius: 10px;
  box-shadow: none;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.simplebar-track {
  background: #111;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #b5b5b5;
}
.simplebar-track.simplebar-vertical {
  width: 10px;
}
/*-- iOSでデフォルトのスクロールバーを非表示 --*/
.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}


/* VIDEOS
----------------------------------------------------------- */
#video {
  padding: 80px 0 90px;
  background-color: #000;
  background-color: #11172b;
  background-color: #1d1d1d;
  /*background-color: #1a1a1a;*/
}
.video-inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
}
.video-item-wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.video-list{
  width: 47.5%;
}
.video-item {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video_title {
  padding: 1em .6em;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
  background-color: #111;
  /*background: linear-gradient(-135deg, #4cf6b0, #9377f8);*/
  /*background: linear-gradient(-135deg, #584cf6, #77c8f8);*/
  /*background: linear-gradient(-135deg, #584cf6, #7a9de4);*/
}
/* lite-youtube */
.lty-playbtn {
  opacity: 0.9;
}
lite-youtube {
  max-width: 900px;
}


/* about
----------------------------------------------------------- */
#about {
  padding: 80px 0 100px;
  background-color: #26283b;
}
/*
#about:after {
    position: absolute;
    content: '';
    top: 6.1%;
    right: 10%;
    display: block;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background-image: url(../img/chara-wh.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: -0.8;
} */

.about-inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
}
.about-inner:before {
  position: absolute;
  content: '';
  top: 69%;
  right: 1%;
  display: block;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-image: url(../img/chara-wh.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
}
.about-main {
  font-size: 1.6rem;
  padding: 0 40px;
  line-height: 1.84;
}
.about-main p {
  margin-bottom: 2.4em;
  letter-spacing: 0.1em;
}
.about-main .about-line {
  display: block;
  color: #fff;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 100%);
}
.about-main p.catchcopy {
  margin-bottom: 2.5em;
}
.about-main .about-catch {
  font-size: 2.1rem;
  font-weight: 700;
}
.about-main.animate .about-line {
  opacity: 0;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.about-main.animate.go .about-line {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.about-main.animate .about-line.n1 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.about-main.animate .about-line.n2 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.about-main.animate .about-line.n3 {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.about-main.animate .about-line.n4 {
  -webkit-transition-delay: 2.1s;
  transition-delay: 2.1s;
}
.about-main.animate .about-line.n5 {
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}
.about-main.animate .about-line.n6 {
  -webkit-transition-delay: 2.7s;
  transition-delay: 2.7s;
}
.about-main.animate .about-line.n7 {
  -webkit-transition-delay: 3.0s;
  transition-delay: 3.0s;
}
.about-main.animate .about-line.n8 {
  -webkit-transition-delay: 3.3s;
  transition-delay: 3.3s;
}
.about-main.animate .about-line.n9 {
  -webkit-transition-delay: 3.6s;
  transition-delay: 3.6s;
}
.about-main.animate .about-line.n10 {
  -webkit-transition-delay: 3.9s;
  transition-delay: 3.9s;
}
.about-main.animate .about-line.n11 {
  -webkit-transition-delay: 4.2s;
  transition-delay: 4.2s;
}
.about-main.animate .about-line.n12 {
  -webkit-transition-delay: 4.5s;
  transition-delay: 4.5s;
}

.about-line img{
  margin: 0 auto;
  width: 3%;
}
@media screen and (max-width:767px) {
.about-line img{
  width: 7%;
}
}

/* story
----------------------------------------------------------- */
#story {
  padding: 80px 0 100px;
  background-image: url(../img/22629051.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story-inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
}
.story-main {
  font-size: 1.6rem;
  padding: 0 40px;
  line-height: 1.84;
}
.story-main p {
  margin-bottom: 2.4em;
  letter-spacing: 0.1em;
}
.story-main .story-line {
  display: block;
  color: #fff;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 100%);
}
.story-main p.catchcopy {
  margin-bottom: 2.5em;
}
.story-main .story-catch {
  font-size: 2.1rem;
  font-weight: 700;
}
.story-main.animate .story-line {
  opacity: 0;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.story-main.animate.go .story-line {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.story-main.animate .story-line.n1 {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.story-main.animate .story-line.n2 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.story-main.animate .story-line.n3 {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
.story-main.animate .story-line.n4 {
  -webkit-transition-delay: 2.1s;
  transition-delay: 2.1s;
}
.story-main.animate .story-line.n5 {
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}
.story-main.animate .story-line.n6 {
  -webkit-transition-delay: 2.7s;
  transition-delay: 2.7s;
}
.story-main.animate .story-line.n7 {
  -webkit-transition-delay: 3.0s;
  transition-delay: 3.0s;
}
.story-main.animate .story-line.n8 {
  -webkit-transition-delay: 3.3s;
  transition-delay: 3.3s;
}
.story-main.animate .story-line.n9 {
  -webkit-transition-delay: 3.6s;
  transition-delay: 3.6s;
}
.story-main.animate .story-line.n10 {
  -webkit-transition-delay: 3.9s;
  transition-delay: 3.9s;
}
.story-main.animate .story-line.n11 {
  -webkit-transition-delay: 4.2s;
  transition-delay: 4.2s;
}
.story-main.animate .story-line.n12 {
  -webkit-transition-delay: 4.5s;
  transition-delay: 4.5s;
}
.story-main.animate .story-line.n13 {
  -webkit-transition-delay: 4.8s;
  transition-delay: 4.8s;
}
.story-main.animate .story-line.n14 {
  -webkit-transition-delay: 5.1s;
  transition-delay: 5.1s;
}
.story-main.animate .story-line.n15 {
  -webkit-transition-delay: 5.5s;
  transition-delay: 5.5s;
}


/* creator
----------------------------------------------------------- */
#creator {
  padding: 80px 0 100px;
  background-image: url(../img/background_creator.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.creator-inner{
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  height: auto;
  position: relative;
}
.creator-main {
  font-size: 1.6rem;
  padding: 0 40px;
  line-height: 1.84;
}
.creator-main-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  position: relative;
}
.creator-main-image{
  /*width: 40%;*/
}
.creator-main-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.creator-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.creator-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: block;
  width: 110px;
  margin: 0 auto;
  border: 1px solid #fff;
  line-height: 1.0;
  font-family: 'Brandon Grotesque', sans-serif;
}
.creator-btn a {
  /*background: #111;*/
  background: transparent;
  color: #fff;
  display: block;
  font-size: 1.3rem;
  text-align: center;
  line-height: 2em;
  letter-spacing: 0.03em;
  outline: none;
  margin: 0 auto;
  padding-top: 5px;
  transition: all .3s;
  position: relative;
}
.creator-btn a:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}
.creator-btn .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 4px;
  right: 4px;
  border-left: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.creator-panel {
  display: none;
}
.creator-text {
  width: 70%;
  padding: 1.4em 0 0 3em;
  /*text-align: justify;*/
  line-height: 2.3;
}
.creator-text.faderightgo {
  animation-delay: 0.3s;
}
.creator-text span{
  display: block;
  color: #fff;
  margin-bottom: 1.4em;
  letter-spacing: 0.1em;
}
.creator-text2 {
  width: 100%;
  padding: 2em 0 0 0;
  /*text-align: justify;*/
  line-height: 2.3;
}
.creator-text2 span{
  display: block;
  color: #fff;
  margin-bottom: 1.4em;
  letter-spacing: 0.1em;
}
.creator-sign-image {
  width: 14%;
  margin: 0 0 0 auto;
}
.creator-sign-image img {
  width: 100%;
}


/* character
----------------------------------------------------------- */
#character {
  padding: 80px 0 100px;
  background-image: url(../img/haikei.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.character-inner{
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  height: auto;
}
/*.character-inner .content-side-text {
  left: -1.4em!important;
}*/
.character-inner .content-side-text p {
  color: #777777;
}
.character-inner .content-title.sub-ttl:before {
  background-image: url(../img/icon_slash_blk.png);
}
.character-main {
  font-size: 1.6rem;
  padding: 0 40px;
  line-height: 1.84;
}
.character_list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 2.3rem;
  justify-content: space-between;
  font-family: 'RFPG2サンセリフ-U', Paytone One;
}
.character_list li {
  width: 32%;
  margin: 0 0 3.5%;
  /*box-shadow: 0 0 10px #999;*/
  /*box-shadow: 8px 8px 0px 0px #999;*/
}
.character_list li a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 4px 4px 7px 0px rgb(0 0 0 / 10%);
  background-color: lemonchiffon;
}

.character_list li p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  background-color: #fff;
  font-family: 'RFPG2サンセリフ-U', Paytone One;
  padding: 20px 5px;
  letter-spacing: 2px;
}




.chara_name_en {
  font-weight: 700;
}
.chara_name_jp {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.team_name_en {
  display: block;
  font-weight: 100;
  font-size: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.team_name_jp {
  display: block;
  font-size: 0.1rem;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.character_list li img {
  width: 100%;
}
.triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 5px;
  right: 5px;
  border-left: 1.5em solid transparent;
  border-bottom: 1.5em solid #dddddd;
}
.triangle-left {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  top: 10px;
  left: 10px;
  border-left: 2.3em solid transparent;
  border-bottom: 2.3em solid #dddddd;
}

/* キャラクター用モーダル */
.modalwnd_chara {
  max-width: 800px;
  padding: 8px;
}
.modalwnd_chara_image {
  width: 100%;
  margin: 0 auto;
}
.modalwnd_chara_image img {
  width: 100%;
  padding-bottom: 0px;
}
.modalwnd_chara_name_en {
  font-weight: 700;
  margin-top: 24.7px;
  font-family: 'RFPG2サンセリフ-U', Paytone One;
  font-size: 27.6px;
  line-height: 1.2;
  letter-spacing: 3px;
}
.modalwnd_chara_name_jp {
  display: block;
  margin-top: .5em;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.5;
}
.modalwnd_chara_intro {
  margin-top: 1.5em;
  font-size: 1.2rem;
  font-family: 'Brandon Grotesque', 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: 1.2em;
  padding: 2em 2em 1.2em;
  font-size: 1.4rem;
  line-height: 30.8px;
  background-color: #f6f6f6;
  border-radius: 8px;
  text-align: left
}
.modalwnd_chara_text2 {
  /*margin-top: .7em;*/
  margin-top: 1.2em;
  padding: 2em 2em 1.2em;
  font-size: 1.4rem;
  line-height: 1.8;
  background-color: #f6f6f6;
  border-radius: 8px;
}


/* COMIC
----------------------------------------------------------- */
#comic {
  padding: 100px 0 120px;
  background-color: #24284b;
}
.comic-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
  position: relative;
  z-index: 0;
}
.comic_bgimage {
  position: absolute;
  top: 3%;
  right: 1%;
  display: block;
  width: 100%;
  max-width: 384px;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}
.comic_bgimage img {
  width: 100%;
}
.comic_item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 50px;
}
.comic_item img {
  display: block;
  width: 47%;
  height: 100%;
  border: solid 22px #fff;
}
.comic_item img:nth-child(2) {
  margin-top: 50px;
}


/* team
----------------------------------------------------------- */
#team {
  padding: 70px 0 50px;
  background-color: #f6f6f6;
}
.member-inner{
  position: relative;
      margin: 0 auto;
      width: 100%;
      max-width: 1160px;
      padding: 100px 0 100px;
}
.member-main {
  font-size: 1.6rem;
  padding: 0 40px;
  line-height: 1.84;
}
.member_list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.3rem;
}
.member_list li {
  position: relative;
  width: 33.333%;
  margin: 0 0 3.5%;
  text-align: center;
}
.member_list li img {
  width: 60%;
  padding-bottom: 37px;
}
.mb-bg-image:after {
  position: absolute;
  content: '';
  top: 2%;
  right: -18px;
  display: block;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}
.member001:after {
  background-image: url(../img/memberimage_drj_name.png);
}
.member002:after {
  background-image: url(../img/memberimage_hassy_name.png);
}
.member003:after {
  background-image: url(../img/memberimage_maki_name.png);
}
.member-btn {
  display: block;
  width: 110px;
  margin: 0 auto;
  line-height: 1.0;
  border: 1px solid #333;
  font-family: 'Brandon Grotesque', sans-serif;
}
.member-btn a {
  background: transparent;
      color: #312c29;
      display: block;
      font-size: 11.3px;
      text-align: center;
      line-height: 3em;
      letter-spacing: 1.03px;
      outline: none;
      margin: 0 auto;
      padding-top: 5px;
      transition: all .3s;
      position: relative;
      font-family: 'RFPG2サンセリフ-U', Paytone One;
}
.member-btn a:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}
.member-btn .triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 4px;
  right: 4px;
  border-left: 8px solid transparent;
  border-bottom: 8px solid #bbbbbb;
}


/* メンバー用モーダル */
.modalwnd_member {
  max-width: 700px;
  padding: 50px 35px 35px;
}
.modalwnd_member_image {
  width: 60%;
  margin: 0 auto;
}
.modalwnd_member_image img {
  width: 100%;
  /*border: 1px solid #ccc;*/
}
.modalwnd_member_name_en {
  font-weight: bold;
  margin-top: .7em;
  font-family: 'Brandon Grotesque', sans-serif;
  font-size: 2.6rem;
  line-height: 1.2;
}
.modalwnd_member_name_jp {
  display: block;
  margin-top: .5em;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
}
.modalwnd_member_intro {
  margin-top: 1.5em;
  font-size: 1.4rem;
  font-family: 'Brandon Grotesque', sans-serif;
  padding: .6em .7em .3em;
  display: inline-block;
  line-height: 1;
  color: #fff;
  background-color: #000;
  /*border-radius: 5px;*/
}
.modalwnd_member_text {
  padding: 1em 2em 1.2em;
  font-size: 1.5rem;
  line-height: 1.8;
  /*background-color: #f6f6f6;*/
  border-radius: 8px;
  text-align: left;
}


/* FEATURE
----------------------------------------------------------- */
#feature {
  padding: 100px 0 120px;
  background: linear-gradient(-135deg, #527ecb, #729be3);
  background: linear-gradient(-135deg, #729be3, #456fba);
  background: linear-gradient(-135deg, #8e70a8, #9fc7d3);
  position: relative;
}
.feature-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1360px;
  padding: 0 40px;
}
/*#feature:before {
  position: absolute;
  content: '';
  top: -1.2%;
  left: 2%;
  display: block;
  width: 100%;
  max-width: 240px;
  height: 100%;
  background-image: url(../img/background_verticalwt.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}*/
/*#feature:before {
  position: absolute;
  content: '';
  top: 5.5%;
  left: 14%;
  display: block;
  width: 100%;
  max-width: 230px;
  height: 100%;
  background-image: url(../img/paint_trace04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}*/
#feature:after {
  position: absolute;
  content: '';
  top: -4.5%;
  right: 10%;
  display: block;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background-image: url(../img/paint_trace01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.feature_item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
}
.feature_item:not(:last-child) {
  margin-bottom: 130px;
}
.feature_item:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.feature_item img {
  display: block;
  width: 48%;
  height: 100%;

}
.feature_item img.portrait {
  display: block;
  width: 38%;
  height: 100%;
  margin-left: 8%;

}
.feature_box,.feature_box2 {
  width: 47%;
  position: relative;
}
.feature_box h3,.feature_box2 h3 {
  display: inline-block;
  font-size: 3rem;
  background-color: #e53b3b;
  color: #fff;
  padding: 10px 18px;
  margin-bottom: 10px;
}
.feature_box .text,.feature_box2 .text {
  padding: 20px 0 0 0;
}
.feature_box .number,.feature_box2 .number {
  font-size: 8rem;
  color: #fff;
  padding: 0 0 5px 36%;
  font-family: 'Jost', sans-serif;

    background-image: url(../img/midasi.png);
    background-repeat: no-repeat;
    background-size: 250px;
    background-position: left bottom;

}
.feature_box .number span,.feature_box2 .number span {
  font-size: 4rem;
  color: #fff;
    font-family: 'Ophelie';
}
.feature_box .text span,.feature_box2 .text span {
  font-size: 1.5rem;
  line-height: 2;
  color: #fff;
  display: block;
}
.feature_box .text span:not(:last-child),.feature_box2 .text span:not(:last-child) {
  margin-bottom: 1.5em;
}
.feature_box2 .number {
  padding: 0 0 5px 0;
}
.pt2:before {
  position: absolute;
  content: '';
  top: -5%;
  right: 0;
  display: block;
  width: 100%;
  max-width: 240px;
  height: 100%;
  background-image: url(../img/paint_trace04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.pt3:before {
  position: absolute;
  content: '';
  top: -5%;
  left: 0;
  display: block;
  width: 100%;
  max-width: 240px;
  height: 100%;
  background-image: url(../img/paint_trace04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

#feature h3 {
    text-align: center;
    margin: 1.6em 0 1em;
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    font-weight: normal;
    color: #fff;
}

@media screen and (max-width:767px) {
#feature h3 {
    margin: 1.4em 0 1em;
    font-size: 2.2rem;
}
}


/* ROAD MAP
----------------------------------------------------------- */
#roadmap {
  padding: 100px 0 100px;
  background-color: #26283b;
  position: relative;
}
#roadmap:before {
  position: absolute;
  content: '';
  top: -1.8%;
  left: 3%;
  display: block;
  width: 100%;
  max-width: 240px;
  height: 100%;
  background-image: url(../img/background_verticalwt.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}
#roadmap h3{
  text-align: center;
  margin: 1.6em 0 1em;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  color: #fff;
}
#roadmap p{
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  padding: 0 8%;
  line-height: 2;
}
ul.rm_flowlist li{
  width: 50%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding: 26px 20px;
  border: 1px solid #fff;
  background-color: #000;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  /*border-radius: 4px;*/
}
ul.rm_flowlist li {
  margin-bottom: 60px;
}
ul.rm_flowlist li:not(:last-child):after {
  content: "\f103";
  font-family:"Line Awesome Free","Line Awesome Brands";
  font-weight: 700;
  font-size: 2.3em;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -59px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: block;
}
/*ul.rm_flowlist li:not(:last-child):after{
  content: "\f107";
  font-family:"Line Awesome Free","Line Awesome Brands";
  font-weight: 700;
  font-size: 1.6em;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: block;
}*/
/*ul.rm_flowlist li:last-child:after {
  border: 23px solid transparent;
  border-top-color: #fff;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -77px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}*/





/* FAQ
----------------------------------------------------------- */
#faq {
  padding: 100px 0 100px;
  background-image: url(../img/haikei.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#faq h3{
  text-align: center;
  margin: 1.6em 0 1em;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-weight: normal;
  color: #312c29;
}
#faq p{
  text-align: center;
  color: #312c29;
  font-size: 1.6rem;
  padding: 0 8%;
  line-height: 2;
}
ul.rm_flowlist li{
  width: 50%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding: 26px 20px;
  border: 1px solid #fff;
  background-color: #000;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  /*border-radius: 4px;*/
}
ul.rm_flowlist li {
  margin-bottom: 60px;
}
ul.rm_flowlist li:not(:last-child):after {
  content: "\f103";
  font-family:"Line Awesome Free","Line Awesome Brands";
  font-weight: 700;
  font-size: 2.3em;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -59px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: block;
}
/*ul.rm_flowlist li:not(:last-child):after{
  content: "\f107";
  font-family:"Line Awesome Free","Line Awesome Brands";
  font-weight: 700;
  font-size: 1.6em;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: block;
}*/
/*ul.rm_flowlist li:last-child:after {
  border: 23px solid transparent;
  border-top-color: #fff;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -77px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}*/





/* NFT
----------------------------------------------------------- */
#nft {
  padding: 0px 40px 24px;
}
.nft-inner {
  margin: 8vh auto;
  width: 100%;
  max-width: 1160px;
}
#nft p{
    text-align: center;
    position: relative;
    margin-bottom: 4vh;
}
/* table02 */
#table02 {
  width: 100%;
  max-width: 930px;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin: 0 auto;
}
#table02 th, #table02 td {
  text-align: center;
  width: auto;
  min-width: 130px;
  padding: 14px;
  height: 70px;
  border: 1px solid #dfdfdf;
  border: 1px solid #bdbdbd;
  background-color: #fff;
  line-height: 1.8;
}
#table02 th {
  background-color: #f0f0f0;
  /*background-color: #fff;*/
  font-weight: normal;
}
#table02 td {
  font-size: 1.4rem;
}
#table02 td span {
  display: block;
  font-size: 1.2rem;
}
#table02 .head {
  background-color: #2b2b2b;
  color: #fff;
}

/* Openseaリンク */


#nft_open {
  padding: 0px 40px 24px;
  background-image: url(../img/back_bk.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: sticky;
}
.nft_open-inner {
  margin: 8vh auto;
  width: 100%;
  max-width: 1160px;
}
#nft_open p{
    text-align: center;
    position: relative;
    margin-bottom: 4vh;
}


#nft-link {
  margin: 0 auto;
  width: 100%;
  max-width: 930px;
}
#nft-link .nft-link-text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.03em;
  border-top: 0;
  padding: 10px 6%;
  background-color: #fff;
  border-radius: 20px;
  text-align: left;
}
#nft-link .nft-link-text .text-line {
  display: block;
  padding: 2.2em 0;
  overflow: hidden;
}
#nft-link .nft-link-text .text-line:not(:last-child) {
  border-bottom: 1px dashed #6a6a6a;
}
#nft-link .fa-text-ttl {
  display: inline-block;
  padding: 12px 4px 12px;
  margin: 0 1.5em .5em 0;
  color: #fff;
  background-color: #148ba2;
  background-color: #333;
  font-size: 1.4rem;
  line-height: 1;
  width: 300px;
  text-align: center;
}
#nft-link .fa-text-item {
  color: #333;
  word-break: break-word;
}
#nft-link .nft-link-ttl {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  padding: 0;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 2.4em 0 .6em;
  font-family: 'Brandon Grotesque', sans-serif;
}
.nft-link-ttl:before,
.nft-link-ttl:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  flex-grow: 1;
}
.nft-link-ttl:before{
  margin: 0 20px 0 0;
}
.nft-link-ttl:after{
  margin: 0 0 0 20px;
}



.nft-link-1clm {
  margin-bottom: 5em;
}
.nft-link-1clm img {
  width: 100%;
}
#nft-link .nft-link-name {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  padding: 0 6%;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0 auto 1em;
}
.nft-link-2clm {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 30px;
}
.nft-link-2clm a {
  display: block;
  width: 48.5%;
  height: 100%;
}
.nft-link-2clm a img {
  width: 100%;
}







/* baboonist
----------------------------------------------------------- */
#baboonist {
  padding: 100px 40px;
  background-image: url(../img/22901254.jpg);
  background-size: cover;
}
.spoffer-inner {
  margin: 29px auto;
  width: 95%;
  max-width: 880px;
  /*background-color: rgba(255,255,255,0.9);
  border-radius: 30px;*/
}
.spoffer-sentence {
  text-align: center;
  font-size: 1.6rem;
  padding: 0 8%;
  line-height: 2;
  margin-bottom: 1.6em;
}
.spoffer-Heading {
  background: #111;
  padding: 1em 0;
  font-size: 3.9rem;
  color: #fff;
  text-align: center;
  font-family: 'Paytone One';
}
.spoffer-Heading:not(:first-child) {
  margin-top: 4em;
}
.spoffer-content {
  border: 1px dotted #6a6a6a;
  border-top: 0;
  padding: 10px 30px;
  background-color: #fff;
}
.spoffer-block:last-child {
  border-bottom: none;
}
.spoffer-block {
  border-bottom: 1px dashed #6a6a6a;
  padding: 1.8em 0;
  overflow: hidden;
}
.spoffer-subtitle {
  font-size: 2.4rem;
  margin-bottom: 1.2em;
}
.step-bg {
  display: inline-block;
  padding: 12px 24px 12px;
  /*margin-right: 8px;*/
  color: #fff;
  /*background-color: #148ba2;*/
  background-color: #111;
  border-radius: 100px;
}
.spoffer-text {
  font-size: 1.7rem;
  line-height: 1.8;
}
.spoffer-text .text-line {
  display: block;
}
.spoffer-text .text-line:not(:last-child) {
  margin-bottom: 1em;
}
.spoffer-text .text-line img {
  max-width: 3.5%;
}
.text-line i {
  font-size: 1.6em;
}
.boder-btm {
  border-bottom: 1px dotted #999;
  padding-bottom: 1em;
}
.spoffer-btn {
  display: inline-block!important;
  margin: 14px 10px 0 0;
  padding: 8px 16px;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  background-color: #1da1f2;
  border-radius: 6px;
}
.spoffer-btn.twt {
  background-color: #1da1f2;
}
.spoffer-btn.dis {
  background-color: #5661ea;
}
.spoffer-text .btn-icon {
  color: #fff;
  padding-right: 5px;
  font-size: 1.6rem;
}
.spoffer-text .spoffer-text-bg {
  display: block;
  width: 100%;
  margin: 1.6em 0!important;
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.spoffer-text .spoffer-text-bg-ttl {
  display: inline-block;
  margin: 0 .5em 1.4em .5em!important;
  padding: 0.6em 1em 0.8em;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  background-color: #407093;
  background-color: #148ba2;
  text-align: center;
}


/* baboomania
----------------------------------------------------------- */
#baboomania {
  padding: 100px 40px 80px;
  background-image: url(../img/haikei.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#baboomania img {
  text-align: center;
}

.benefit-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1160px;
  text-align: center;
}
.benefit-inner .content-title {
  font-size: 5.9rem;
  font-family: 'RFPG2サンセリフ-U', Paytone One;
}
.benefit-inner .content-title.sub-ttl {
  font-size: 1.4rem;
  padding-top: .5em;
}
#baboomania h2 {
  margin-bottom: 2em;
}
#baboomania h3 {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
#baboomania h4 {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  margin: 3em 0 0;
  /*font-weight: normal;*/
  letter-spacing: 0.05em;
}
.benefit-text {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.benefit-text.sm {
  font-size: 1.5rem;
}
.benefit-text.lg {
  font-size: 1.8rem;
}
.benefit-text span {
  display: block;
  margin-bottom: 1.5em;
}
.benefit-bdline {
  border: 0;
  border-bottom: 1px dotted #7e7e7e;
  width: 70%;
  margin: 3.2em auto;
}
/* table01 */
#table01 {
  width: 100%;
  max-width: 930px;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 auto 1.8em;
}
#table01 th, #table01 td {
  text-align: center;
  min-width: 130px;
  padding: 10px;
  height: 80px;
  border: 1px solid #ccc;
  line-height: 1.8;
}
#table01 th {
  width: 55%;
  background-color: #f0f0f0;
  font-weight: normal;
}
#table01 td {
  width: 45%;
  font-size: 1.5rem;
}
#table01 td span {
  display: block;
  font-size: 1.2rem;
}
#table01 .head {
  background-color: #2b2b2b;
  color: #fff;
}


/* benefit-closing
----------------------------------------------------------- */
.benefit-closing {
  width: 100%;
  background-color: #26283b;
  background-image: url(../img/background_benefitcl_w2000.jpg);
  background-size: 134%;
  background-repeat: repeat;
  padding: 100px 0 120px;
}
.benefit-logo {
  max-width: 500px;
  padding-bottom: 1.2em;
  margin: 0 auto;
}
.benefit-logo img {
  width: 100%;
}
.benefit-closing .heading {
  font-family: 'Arial', 'sans-serif', 'Noto Sans JP';
  /*font-family: 'Brandon Grotesque', sans-serif;*/
  font-size: 7.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 0.8em;
}
.benefit-closing .heading span {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 1.8em;
  line-height: 1.8;
}
.benefit-closing p {
  padding: 0 10%;
  text-align: center;
  margin: 0 auto;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
.benefit-closing p span {
  display: block;
  color: #fff;
  font-size: 1.6rem;
}
.benefit-closing p span:not(:last-child) {
  margin-bottom: 1.8em;
}
.benefit-closing p span.bc-heading1 {
  font-size: 2.5rem;
  font-weight: 700;
  /*border: 1px solid #fff;*/
  /*border-top: 1px solid #fff;*/
  /*border-bottom: 1px solid #fff;*/
  display: inline-block;
  margin: 0 0 1em;
}
.benefit-closing p span.bc-heading2 {
  font-size: 2.5rem;
  font-weight: 700;
  border: 1px solid #fff;
  /*border-bottom: 1px solid #fff;*/
  display: inline-block;
  padding: 10px 30px;
  margin: 1.8em 0 1.2em;
  text-align: center;
}
.benefit-closing p.bc-border {
  width: 58%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  margin: 4em auto 2em;
  text-align: center;
  font-style: oblique;
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Arial', 'sans-serif';
}
.bc-border:before,
.bc-border:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  flex-grow: 1;
}
.bc-border:before{
  margin: 0 20px 0 0;
}
.bc-border:after{
  margin: 0 0 0 20px;
}
.benefit-closing .border-btm {
  border-bottom: 1px solid #fff;
  width: 45%;
  margin: 0 auto;
  padding: 1em;
}


/* 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;
}




/* glossary
----------------------------------------------------------- */
#glossary {
  padding: 100px 40px 120px;
  background-image: url(../img/23119810.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  position: relative;
}

/*
#glossary:before {
  position: absolute;
  content: '';
  top: 8%;
  left: 12%;
  display: block;
  width: 100%;
  max-width: 150px;
  height: 100%;
  background-image: url(../img/paint_trace06.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
}
#glossary:after {
  position: absolute;
  content: '';
  top: -2.5%;
  right: 12%;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 100%;
  background-image: url(../img/paint_trace05.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
}
 */


#glossary .content-title {
  text-shadow: 4px 4px rgba(0,0,0,0.8);
}
#glossary .content-title.sub-ttl {
  text-shadow: none;
}
.glossary_list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 47px 55px;
  /*background-color: rgba(255, 255, 255, .5);*/
  background-color: rgba(255, 255, 255, .9);
  border-radius: 3px;
  box-shadow: 4px 4px 7px 0px rgb(0 0 0 / 10%);
}
.glossary_list li {
  position: relative;
}
.glossary_list li:not(:last-child) {
  padding: 0 0 25px 0;
}
.glossary_list dl {
  margin: 0 0 0 0em;
}
.glossary_list dt {
  position: relative;
  margin: 0 0 15px;
  padding: 0 24px 0;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  font-family: 'Jost', sans-serif;
  /*color: #35c4b5;*/
  color: #000;
}
.glossary-text {
  display: block;
  font-size: 1.7rem;
  letter-spacing: .05em;
  color: #000;
  padding: 0 15px 0;
}
.glossary-text:not(:last-child) {
  margin-bottom: 1em;
}
.glossary-text.list_mb_lg {
  margin-bottom: 1.5em;
}
.glossary-bdline {
  position: absolute;
  left: 0.2em;
  top: 3px;
  width: 2px;
  height: 0;
  background: #939393;
}

  /*
.glossary_list li::after {
  content:'';
  position: absolute;
  top: 3px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
}*/

.glossary-heading {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  margin: 0 0 25px;
  color: #333;
  font-size: 1.4rem;
  font-family: 'Josefin Sans', sans-serif;
}

/*
.glossary-heading::before {
  margin-right: 20px;
}
*/
.glossary-heading::before {
  display: block;
  flex: 1;
  content: '';
  border-top: 5px solid #939393;
}
.CompMark {
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.4em 0.5em;
  margin-right: 0.6em;
  color: #fff500;
  /*color: #00ffd8;*/
  background-color: #000;
  border-radius: 3px;
  display: inline-block;
  font-family: 'Jost', sans-serif;
}









/* ボタン
----------------------------------------------------------- */
.btn {
  display: block;
  width: 360px;
  line-height: 1.0;
  border: 1px solid #fff;
  font-family: 'Brandon Grotesque', sans-serif;
}
.btn a {
  background: transparent;
  color: #fff;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  line-height: 4em;
  letter-spacing: 0.03em;
  outline: none;
  margin: 0 auto;
  padding-top: 5px;
  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;
}

/* aboutエリア用ボタンの記述 */
.about-main .btn {
  margin-top: 2.4em;
}
.about-main.animate .btn {
  opacity: 0;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition-delay: 4.2s;
  transition-delay: 4.2s;
}
.about-main.animate.go .btn {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}


/* スクロールダウン矢印
----------------------------------------------------------- */
.scrolldown{
  position:absolute;
  bottom:1%;
  right:50%;
  z-index: 999;
  /*ループ指定*/
  animation: arrowmove 1.8s 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: #26283b;
  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;
}






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

.logo img {
  width: 100%;
  height: auto;
  margin: -15px 0px;
}
  /* loading
  --------------------- */
  #loading-jnks-logo img {
    width: 60%;
  }


  /* common
  --------------------- */
  .break_blk {
    border-bottom: 0.4rem solid #000;
    width: 3rem;
    margin: 1.4em auto;
  }
  .break_gry {
    border-bottom: 0.4rem solid #7e7e7e;
    width: 3rem;
    margin: 1.4em auto;
  }
  .break_wht {
    border-bottom: 0.4rem solid #fff;
    width: 3rem;
    margin: 1.4em auto;
  }
  .content-side-text {
    font-size: 1rem;
    top: 0.5em;
    left: 0;
  }
  .content h2 {
    margin-bottom: 1.6em;
    padding-left: 2.5%;
  }
  .content-title {
    font-size: 3.6rem;
  }
  .content-title.sm {
    font-size: 3.6rem;
    line-height: 1.5;
  }
  .content-title.sub-ttl {
    font-size: 1.3rem;
  }
  .content-title.sub-ttl:before {
    width: 80%;
    height: 80%;
  }
  .content-title .ttl-sm {
    font-size: 1.6rem;
  }
  .content h2.ttl-center {
    margin-bottom: 1em;
  }
  /* PC・SP非表示 */
  .hide-pc {
    display: block!important;
  }
  .hide-sp {
    display:none!important;
  }
  /* テーブル上矢印 */
  .table-arrow:after {
    content: "";
    position: absolute;
    bottom: -13px;
    right: 0;
    width: 49px;
    height: 6px;
    background: url(../img/icon_arrow_blk.png) no-repeat;
    z-index: 999;
  }
  .table-arrow-wht:after {
    content: "";
    position: absolute;
    bottom: -13px;
    right: 0;
    width: 49px;
    height: 6px;
    background: url(../img/icon_arrow.png) no-repeat;
    z-index: 999;
  }
  /* モーダル余白 */
  .remodal-wrapper {
    padding: 20px 20px 0px;
  }


  /* NEWS
  --------------------- */
  .header-news p {
    font-size: 5.4vw;
    padding: 1.4em 0;
    line-height: 1.6;
    /*letter-spacing: 0.3em;*/
  }
  .header-news span {
    display: block;
  }
  .header-news i {
    font-size: 5vw;
  }


  /* main-img
  --------------------- */
  .main-img-box {
    top: 41.33333333vw;
    padding: 6.66666667vw 8vw;
    width: 80%;
    font-size: 3.46666667vw;
  }
  .main-img-btn {
    width: 100%;
    border: 2px solid #737373;
    border-radius: 0;
    padding: 1.8em;
  }
  .mt10 {
    margin-top: 2.66666667vw;
  }
  .main-banner-area {
    padding: 0.6em;
    width: 54%;
  }

  .main-img .swiper-slide img {
  height: 80%;
}

  /* EVENT
  --------------------- */
  #event {
    /*padding: 45px 4% 10px;*/
    padding: 88px 4% 10px;
  }
  .event-area img {
    /*border: 1px solid #fff;*/
  }
  .event-area2 {
    margin: 20px auto 0;
  }


  /* NEWS
  --------------------- */
  #news {
    /*padding: 50px 4% 50px 6%;*/
    padding: 35px 4% 50px 6%;
  }
  #news.content h2 {
    margin-bottom: 1.2em;
    padding-left: 2.5%;
  }
  .news-inner {
    padding: 0;
  }
  .news_list {
    height: 12em;
    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.2rem;
  }
  .news_list .day {
    font-size: 1.2rem;
    margin-right: .8em;
  }
  .news_list .news_icon {
    margin-right: 1em;
    padding: .4em .6em;
    font-size: 1.1rem;
  }
  .news_list li a {
    align-items: start;
  }
  .news_list .descript {
    white-space: normal;
    line-height: 1.5;
  }


  /* VIDEOS
  --------------------- */
  #video {
    padding: 50px 6% 50px;
  }
  .video-inner {
    max-width: 100%;
    padding: 0;
  }
  .video-item-wrap {
  flex-direction: column;
  }
  .video-list{
    width: 100%;
  }
  .video-list:not(:last-child) {
    margin-bottom: 2em;
  }
  .video_title {
    font-size: 1.3rem;
    padding: .8em .6em;
  }


  /* about
  --------------------- */
  #about {
    padding: 50px 6% 60px;
  }
  .about-inner {
    max-width: 100%;
  }
  .about-inner:before {
    top: 80%;
    right: -10%;
    width: 77%;
    background-image: url(../img/chara-wh.png);
  }
  .about-main {
    font-size: 1.4rem;
    padding: 0;
  }
  .about-main p {
    margin-bottom: 2.4em;
    letter-spacing: 0.1em;
  }
  .about-main p.catchcopy {
    margin-top: 7em;
  }
  .about-main .about-catch {
    font-size: 1.7rem;
  }

  /* story
  --------------------- */
  #story {
    padding: 50px 6% 60px;
  }
  .story-inner {
    max-width: 100%;
  }
  .story-inner:before {
    top: 80%;
    right: -10%;
    width: 77%;
    background-image: url(../img/chara-wh.png);
  }
  .story-main {
    font-size: 1.4rem;
    padding: 0;
  }
  .story-main p {
    margin-bottom: 2.4em;
    letter-spacing: 0.1em;
  }
  .story-main p.catchcopy {
    margin-top: 3em;
  }
  .story-main .about-catch {
    font-size: 1.7rem;
  }
  /*
#story:after {
    position: absolute;
    content: '';
    top: 7.5%;
    right: 0%;
    display: block;
    width: 100%;
    max-width: 200px;
    height: 100%;
    background-image: url(../img/chara-wh.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: -0.8;
} */




  /* creator
  --------------------- */
  #creator {
    padding: 50px 6% 40px;
    background-image: url(../img/background_creator02.jpg);
  }
  .creator-inner{
    max-width: 100%;
  }
  .creator-main {
    font-size: 1.4rem;
    padding: 0;
  }
  .creator-main-box {
    flex-direction: column;
  }
  .creator-main-image{
    width: 65%;
    margin: 0 0 0 auto;
  }
  .creator-text {
    width: 100%;
    padding: 2em 0 0 0;
  }
  .creator-text span:nth-of-type(4){
    margin-bottom: 1.5em;
  }
  .creator-sign-image {
    width: 32%;
  }
  .creator-panel {
    position: absolute;
    top: 1em;
    left: 0;
    display: block;
    font-size: 12.4vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: .8;
  }
  .creator-panel img {
    width: 50%;
  }
  .creator-text2 {
    padding: 0;
  }
  .creator-btn {
    bottom: .6em;
    left: .6em;
    right: auto;
    width: 44%;
  }


  /* character
  --------------------- */
  #character {
    padding: 50px 0 50px;
  }
  .character-inner .content-side-text {
    left: 6%!important;
  }
  .content .character-main h2 {
    padding-left: 0%;
  }
  .character-main {
    padding: 0;
  }
  .character_box {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .character_list {
    width: 280%;
    padding: 0 5%;
    font-size: 1.7rem;
  }
  .character_list li {
    width: 16%;
    margin: 0 0 3%;
  }
  .character_list li:nth-of-type(1) {
    order: 1;
  }
  .character_list li:nth-of-type(2) {
    order: 2;
  }
  .character_list li:nth-of-type(3) {
    order: 3;
  }
  .character_list li:nth-of-type(4) {
    order: 8;
  }
  .character_list li:nth-of-type(5) {
    order: 4;
  }
  .character_list li:nth-of-type(6) {
    order: 7;
  }
  .character_list li:nth-of-type(7) {
    order: 5;
  }
  .character_list li:nth-of-type(8) {
    order: 6;
  }
  .character_list li:nth-of-type(9) {
    order: 11;
  }
  .character_list li:nth-of-type(10) {
    order: 9;
  }
  .character_list li:nth-of-type(11) {
    order: 10;
  }
  .character_list li:nth-of-type(12) {
    order: 12;
  }


  /* キャラクター用モーダル */
  .modalwnd_chara {
    max-width: 100%;
    padding: 3px;
  }
  .modalwnd_chara_image {
    width: 100%;
  }
  .modalwnd_chara_name_en {
    margin-top: 26.7px;
    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;
  }


  /* COMIC
  --------------------- */
  #comic {
    padding: 50px 4% 40px;
  }
  #comic h2 {
    padding-left: 4.5%;
  }
  .comic-inner .content-side-text {
    left: 2%!important;
  }
  .comic_bgimage {
    position: absolute;
    /*top: 12%;
    right: -2.5%;
    max-width: 60%;*/
    top: 13%;
    right: -2.5%;
    max-width: 54%;
  }
  .comic-inner {
    padding: 0;
  }
  .comic_item {
    margin-bottom: 1.5em;
  }
  .comic_item img {
    border: solid 8px #fff;
  }
  .comic_item img:nth-child(2) {
    margin-top: 1.5em;
  }


  /* team
  --------------------- */
  #team {
    padding: 50px 2% 35px;
  }
  .member-main {
    padding: 0;
  }
  .member_list {
    width: 100%;
    padding: 0;
    font-size: 1.2rem;
    justify-content: center;
  }
  .member_list li {
    width: 50%;
    margin: 0 0 5%;
  }
  .member_list li img {
    width: 70%;
    padding-bottom: 19px;
  }
  .mb-bg-image:after {
    top: 3%;
    right: 0;
    width: 45%;
  }
  .member-btn {
    width: 58%;
  }
  /*.member-btn a {
    line-height: 1.8em;
  }*/


  /* メンバー用モーダル */
  .modalwnd_member {
    max-width: 100%;
    padding: 35px;
  }
  .modalwnd_member_image {
    width: 100%;
  }
  .modalwnd_member_name_en {
    margin-top: .7em;
    font-size: 2.2rem;
  }
  .modalwnd_member_name_jp {
    margin-top: .3em;
    font-size: 1.2rem;
  }
  .modalwnd_member_intro {
    font-size: 1.3rem;
  }
  .modalwnd_member_text {
    padding: 1.4em 0 1em;
    font-size: 1.4rem;
  }


  /* FEATURE
  --------------------- */
  #feature {
    padding: 50px 0% 40px;
  }
  /*#feature:before {
    position: absolute;
    content: '';
    top: -0.5%;
    left: 0;
    display: block;
    width: 100%;
    max-width: 130px;
    height: 100%;
    background-image: url(../img/background_verticalwt.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
  }*/
  #feature:after {
    position: absolute;
    content: '';
    top: -1.8%;
    right: -8%;
    display: block;
    width: 100%;
    max-width: 130px;
    height: 100%;
    background-image: url(../img/paint_trace01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
  }
  .pt2:before {
    position: absolute;
    content: '';
    top: 2%;
    left: auto;
    right: -7%;
    display: block;
    width: 100%;
    max-width: 160px;
    height: 100%;
    background-image: url(../img/paint_trace04.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
  }
  .pt3:before {
    position: absolute;
    content: '';
    top: -3%;
    left: auto;
    right: 0;
    display: block;
    width: 100%;
    max-width: 78px;
    height: 100%;
    background-image: url(../img/paint_trace05.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
  }
  .feature-inner {
    padding: 0;
  }
  .feature-inner:before {
    top: -0.7%;
    right: -5%;
    left: auto;
    width: 100%;
    max-width: 200px;
    opacity: 0.2;
  }
  .feature_item {
    flex-direction: column;
  }
  .feature_item:nth-of-type(even) {
    flex-direction: column;
  }
  .feature_item:not(:last-child) {
    margin-bottom: 50px;
  }
  .feature_item img {
    width: 100%;
  }
  .feature_box,.feature_box2 {
    width: 100%;
    margin-top: 1em;
  }
  .feature_box h3,.feature_box2 h3 {
    font-size: 5vw;
    padding: 8px 16px;
  }
  .feature_box .text,.feature_box2 .text {
    padding: 10px 0 0 0;
  }
  .feature_box .number,.feature_box2 .number {
    font-size: 3.5rem;
    padding: 0 0 5px 0;
    background-size: 170px;
  }
  .feature_box .number span,.feature_box2 .number span {
    font-size: 2.3rem;
  }
  .feature_box .text span,.feature_box2 .text span {
    font-size: 1.4rem;
    line-height: 2;
  }
  .feature_box .text span:not(:last-child),.feature_box2 .text span:not(:last-child) {
    margin-bottom: 1.5em;
  }


  /* ROAD MAP
  --------------------- */
  #roadmap {
    padding: 50px 0 20px;
  }
  #roadmap:before {
    position: absolute;
    content: '';
    top: -1.2%;
    left: 2%;
    display: block;
    width: 33%;
    max-width: 240px;
    height: 100%;
    background-image: url(../img/background_verticalwt.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
  }
  #roadmap h3{
    margin: 1.4em 0 1em;
    font-size: 2.2rem;
  }
  #roadmap p{
    font-size: 1.4rem;
  }
  ul.rm_flowlist li{
    width: 80%;
    max-width: 80%;
    padding: 1.4em 3%;
    font-size: 1.4rem;
  }
  ul.rm_flowlist li:not(:last-child) {
    margin-bottom: 40px;
  }
  ul.rm_flowlist li:not(:last-child):after {
    font-size: 1.7em;
    color: #fff;
    bottom: -43px;
  }


  /* glossary
  --------------------- */
  #glossary {
    padding: 50px 6% 50px;
  }
  .glossary_list {
    width: 100%;
    padding: 2em 1.3em;
  }
  .glossary_list li:not(:last-child) {
    padding: 0 0 1em 0;
  }
  .glossary_list dl {
    margin: 0 0 0 0em;
  }
  .glossary_list dt {
    margin: 0 0 1em;
    font-size: 1.7rem;
    padding: 0 15px 0;
  }
  .glossary-text {
    font-size: 1.4rem;
  }
  .glossary-heading {
    margin: 0 0 2em;
    font-size: 1.2rem;
  }


  /* NFT
  --------------------- */
  #nft {
    padding: 0px 5% 5vh;
  }
  #nft p{
    font-size: 3.6rem;
    text-align: center;
    position: relative;
    margin-bottom: 2vh;
  }
  /* table02 */
  #table02 {
    width: 100%;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    font-size: 1.4rem;
  }
  #table02 .fixed {
    position: sticky;
    left: 0;
  }
  #table02 .fixed:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    height: 100%;
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
  }
  #table02 th, #table02 td {
    height: 60px;
  }
  #table02 td {
    font-size: 1.4rem;
  }
  #table02 td span {
    font-size: 1.1rem;
  }

  /* Openseaリンク */
  #nft-link .nft-link-text {
    font-size: 1.3rem;
    padding: 10px 6%;
  }
  #nft-link .nft-link-text .text-line {
    padding: 2.2em 0;
  }
  #nft-link .fa-text-ttl {
    display: block;
    padding: 10px 4px 10px;
    margin: 0 0 1em 0;
    font-size: 1.3rem;
    width: 100%;
  }
  #nft-link .nft-link-ttl {
    font-size: 2.4rem;
    padding: 0;
    margin: 2em 0 .6em;
  }
  .nft-link-ttl:before{
    margin: 0 14px 0 0;
  }
  .nft-link-ttl:after{
    margin: 0 0 0 14px;
  }
  .nft-link-1clm {
    margin-bottom: 2.8em;
  }
  #nft-link .nft-link-name {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .nft-link-2clm {
    margin-bottom: 10px;
  }

.nft_open-inner {
  margin: 3vh auto;
}


  /* baboonist
  --------------------- */
  #baboonist {
    padding: 50px 4%;
    background-image: url(../img/22901254.jpg);
  }
  .spoffer-sentence {
    font-size: 1.4rem;
    text-align: left;
    padding: 0px 4%;
  }
  .spoffer-Heading {
    font-size: 2.4rem;
  }
  .spoffer-Heading:not(:first-child) {
    margin-top: 3em;
  }
  .spoffer-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 6%;
  }
  .spoffer-subtitle {
    font-weight: 700;
    margin-bottom: 1.4em;
    text-align: center;
  }
  .step-bg {
    font-size: 1.7rem;
    padding: 5px 22px 7px;
  }
  .spoffer-text {
    font-size: 1.4rem;
    line-height: 1.84;
  }
  .spoffer-text .text-line:not(:last-child) {
    margin-bottom: 1.2em;
  }
  .spoffer-btn {
    display: block!important;
    width: 90%;
    margin: 1.4em auto 0;
    padding: 1em 1em;
  }
  .spoffer-text .spoffer-text-bg {
    padding: 1.6em 1.4em;
  }

.spoffer-text .text-line img {
  max-width: 8%;
}

  /* benefit
  --------------------- */
  #baboomania {
    padding: 50px 5% 50px;
  }
  .benefit-inner .content-title.sub-ttl {
    /*font-size: 2vw;*/
    font-size: 1rem;
  }
  #baboomania h2 {
    margin-bottom: 1em;
  }
  #baboomania h3 {
    /*font-size: 4.8vw;*/
    font-size: 1.8rem;
  }
  #baboomania h4 {
    /*font-size: 3.4vw;*/
    font-size: 1.4rem;
    margin: 2.3em 0 0em;
  }
  .benefit-text {
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .benefit-text.sm {
    font-size: 1.4rem;
  }
  .benefit-text.lg {
    font-size: 1.4rem;
  }
  .benefit-bdline {
    width: 100%;
    margin: 2em auto;
  }
  /* table01 */
  #table01 {
    width: 100%;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    font-size: 1.2rem;
  }
  #table01 .fixed {
    position: sticky;
    left: 0;
  }
  #table01 .fixed:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    height: 100%;
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
  }
  #table01 th, #table01 td {
    /*width: auto;*/
    height: 65px;
  }
  #table01 th {
    width: 50%;
  }
  #table01 td {
    font-size: 1.2rem;
  }
  #table01 td span {
    font-size: 1.1rem;
  }
  #table01 .head {
    font-size: 1.4rem;
  }


  /* benefit closing
  --------------------- */
  .benefit-closing {
    background-image: url(../img/background_benefitcl_w1250.jpg);
    padding: 45px 0;
    background-size: 125%;
  }
  .benefit-logo {
    width: 70%;
    padding-bottom: 0.5em;
  }
  .benefit-closing .heading {
    font-size: 4.5rem;
    margin-bottom: 0.6em;
  }
  .benefit-closing .heading span {
    font-size: 1rem;
  }
  .benefit-closing p {
    padding: 0 5%;
    /*overflow-wrap: break-word;
    word-break: keep-all;*/
  }
  .benefit-closing p span {
    font-size: 1.4rem;
    text-align: left;
  }
  .benefit-closing p span:not(:last-child) {
    margin-bottom: 1.8em;
  }
  .benefit-closing p span.bc-heading1 {
    font-size: 1.6rem;
    margin: 0 0 1em;
  }
  .benefit-closing p span.bc-heading2 {
    font-size: 1.6rem;
    padding: 0.6em 1.6em;
    margin: 1.4em 0 1.2em;
    white-space: nowrap;
    line-height: 1.8;
  }
  .benefit-closing .border-btm {
    width: 95%;
    padding: 0.3em;
  }


  /* 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;
  }

  /* aboutエリア用ボタンの記述 */
  .about-main .btn {
    width: 70%;
    margin-top: 2.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;
  }


}




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

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


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

  .wrapper {
    padding-top: 56px;
  }


  /* header
  --------------------- */
  .header {
    min-width: 100%;
    height: 56px;
  }
  .logo {
    float: none;
    width: 170px;
    margin: 3px 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: rgb(120 120 120 / 95%);
  }
  .gNav_inner {
    display: table;
    width: 100%;
    height: 100%;
  }
  .gNav_list {
    display: revert;
    vertical-align: middle;
    margin-top: 66px;
  }
  .gNav_item {
    font-size: 15px;
    font-size: 1.5rem;
    float: none;
    width: 100%;
    margin: 0;
    padding: 12px 0;
    text-align: center;
  }
  .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: 8px;
    left: 8px;
    display: block;
  }
  .header_cart_Sp {
    position: absolute;
    top: 8px;
    left: 38px;
    display: block;
  }
  .header_isg_Sp {
    position: absolute;
    top: 14px;
    left: 12px;
    display: block;
  }
  .header_dis_Sp {
    position: absolute;
    top: 14px;
    left: 39px;
    display: block;
  }
  .header_twt_Sp a,.header_isg_Sp a,.header_dis_Sp a,.header_cart_Sp a {
    /*font-size: 16px;
    font-size: 1.6rem;*/
    font-size: 18px;
    font-size: 26px;
    line-height: 18px;
    display: block;
    width: 28px;
    height: 28px;
    /* padding-top: 5px; */
    padding-top: 7px;
    text-align: center;
    text-decoration: none;
    color: #333;
    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 ,.header_cart_Sp a i{
    color: #fff;
  }
  .header_twt_Sp.open a,.header_isg_Sp.open a,.header_dis_Sp.open a ,.header_cart_Sp a {
    color: #000;
    /* background-color: #000;
    border: 1px solid #fff;*/
  }
  .header_twt_Sp.open a i,.header_isg_Sp.open a i,.header_dis_Sp.open a i ,.header_cart_Sp a i{
    color: #fff;
  }
  .gNav_item.en_tab {
    margin: 8px 0 0;
  }
  .menuTrigger {
    position: absolute;
    z-index: 6;
    z-index: 601;
    top: 19px;
    right: 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);
  }


}


lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    max-width: 720px;
}

/* gradient */
lite-youtube::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
    background-position: top;
    background-repeat: repeat-x;
    height: 60px;
    padding-bottom: 50px;
    width: 100%;
    transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

/* responsive iframe with a 16:9 aspect ratio
    thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}
lite-youtube > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* play button */
lite-youtube > .lty-playbtn {
    display: block;
    width: 68px;
    height: 48px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: transparent;
    /* YT's actual play button svg */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
    filter: grayscale(100%);
    transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
    border: none;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
    cursor: unset;
}
lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }





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


}




/* 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: '/';
  }
}


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

  .about-main .about-catch {
    font-size: 1.4rem;
  }
  .about-main {
    font-size: 1.3rem;
  }
}




h5 {
  position: relative;
  background: #b264ff;
  max-width: 402px;
  padding: 10px;
  margin: 20px auto 0;
  font-size: 27px;
  color: #fff;
}

h5:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #302c29;
}

h7 {
  position: relative;
  background: #e960d8;
  max-width: 402px;
  padding: 10px;
  margin: 20px auto 0;
  font-size: 27px;
  color: #fff;
  display: block;
}

h7:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #302c29;
}

@media screen and (max-width: 767px) {
h5 {
  max-width: 230px;
  padding: 10px;
  margin:17px auto 0;
  font-size: 17px;
}
h7 {
  max-width: 230px;
  padding: 10px;
  margin:17px auto 0;
  font-size: 17px;
}


}




h6 {
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

h6:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #000;
}




/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
  width:100%;
  display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}




@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev-suv,
.slick-next-suv,
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 80%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev-suv:hover,
.slick-prev-suv:focus,
.slick-next-suv:hover,
.slick-next-suv:focus,
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev-suv:hover:before,
.slick-prev-suv:focus:before,
.slick-next-suv:hover:before,
.slick-next-suv:focus:before,
{
    opacity: 1;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev-suv.slick-disabled:before,
.slick-next-suv.slick-disabled:before,
{
    opacity: .25;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev-suv:before,
.slick-next-suv:before,
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: #000;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: #000;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: 0px;
    margin-top: 1px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-prev-suv
{
    left: 0px;
}
[dir='rtl'] .slick-prev-suv
{
    right: -25px;
    left: auto;
}
.slick-prev-suv:before
{
    content: '←';
}
[dir='rtl'] .slick-prev-suv:before
{
    content: '→';
}

.slick-next
{
    right: 0px;
    margin-top: 1px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

.slick-next-suv
{
    right: 0px;
}
[dir='rtl'] .slick-next-suv
{
    right: auto;
    left: -25px;
}
.slick-next-suv:before
{
    content: '→';
}
[dir='rtl'] .slick-next-suv:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
    margin-top: 116px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.slick-prev,
.slick-next
{
    z-index: 100;
}



/* ---- OPEN SEA LINKS ---- */
 
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
 
body { font-family: sans-serif; }
 

 
.gallery-cell {
  width: 47%;
  margin-right: 10px;
  background: #b164ff;
  counter-increment: gallery-cell;
}
@media screen and (max-width: 767px){
.gallery-cell {
  width: 77%;
}
}
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}
@media screen and (max-width: 767px){
.flickity-prev-next-button {
  top: 47%;
  width: 21px;
  height: 21px;
}
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
@media screen and (max-width: 767px){
.flickity-prev-next-button.previous { left: -30px; }
.flickity-prev-next-button.next { right: -30px; }
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* ---- OPEN SEA LINKS ---- */





/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}


/*=== 画像の表示エリア ================================= */
.slide {
 position   : relative;
 overflow   : hidden;
                   /* 画像のサイズに合わせて変更ください */
 width      : 200px;
 height     : 200px;
 margin     : auto;      /* サンプルは中央寄せの背景：白 */
 background : #fff;
}

/*=== 画像の設定 ======================================= */
.slide img {
 display    : block;
 position   : absolute;
                     /* 画像のサイズを表示エリアに合せる */
 width      : inherit;
 height     : inherit;
 opacity    : 0;
 animation  : slideAnime 15s ease infinite;
}

/*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 3s }
.slide img:nth-of-type(3) { animation-delay: 6s }
.slide img:nth-of-type(4) { animation-delay: 9s }
.slide img:nth-of-type(5) { animation-delay: 12s }

/*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
  0% { opacity: 0; transform: scale(.1, .1)}
  2% { opacity: 1; transform: scale(1, 1)  }
 18% { opacity: 1; transform: scale(1, 1)  }
 20% { opacity: 0; transform: scale(2, 2)  }
100% { opacity: 0; transform: scale(2, 2)  }
}
