/* webfont */
@import url('https://fonts.googleapis.com/css?family=Monoton|Noto+Sans+JP:100&display=swap&subset=japanese');

/* 
font-family: 'Monoton', cursive;
font-family: 'Noto Sans JP', sans-serif;
 */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

h1 {
  font-size: 2em;
  margin: 0.67em 0
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -0.25em
}

sup {
  top: -0.5em
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText
}

fieldset {
  padding: 0.35em 0.75em 0.625em
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

details {
  display: block
}

summary {
  display: list-item
}

template {
  display: none
}

[hidden] {
  display: none
}

/* 
---------------------------------------------------------
common
--------------------------------------------------------- 
*/
html,
body {
  background-color: #000;
  background-image: url(../images/bg_body.png);
  background-position: top center;
  background-attachment: fixed;
  /* color: #ccc; */
  color: #fff;
  font-family: sans-serif;
  line-height: 1.7;
  font-feature-settings: "palt";
}

a {
  color: #17cce2;
}

/* 
---------------------------------------------------------
UTILITY
--------------------------------------------------------- 
*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}
img {
  max-width: 100%;
  height: auto;
}

.note {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1.5;
}

.note_s {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #999;
}

/* 
---------------------------------------------------------
drawer
--------------------------------------------------------- 
*/

.drawer {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 3000;
  background-color: #ecff00;
}

.drawer .drawer__trigger {
  position: fixed;
  z-index: 2000;
  display: inline-block;
  width: 50px;
  height: 44px;
  background-color: #ecff00;
  top: 0px;
  right: 0px;
  display: none
}

@media only screen and (max-width: 750px) {
  .drawer .drawer__trigger {
    display: block
  }
}

.drawer .drawer__trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: #000000;
  border-radius: 0px
}

.drawer .drawer__trigger span:nth-of-type(1) {
  top: 11px;
  left: 13px
}

.drawer .drawer__trigger span:nth-of-type(2) {
  top: 49%;
  left: 13px
}

.drawer .drawer__trigger span:nth-of-type(3) {
  bottom: 11px;
  left: 13px
}

@media only screen and (max-width: 750px) {
  .drawer.-active .drawer__nav {
    top: 0%;
    transition: 0.3s
  }
}

.drawer.-active .drawer__trigger span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg)
}

.drawer.-active .drawer__trigger span:nth-of-type(2) {
  opacity: 0
}

.drawer.-active .drawer__trigger span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg)
}

.drawer .drawer__nav {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: #ecff00
}

@media only screen and (max-width: 750px) {
  .drawer .drawer__nav {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    z-index: 1900;
    transition: 0.3s
  }
}

.drawer__item,
.drawer__item-hr {
  display: inline-block;
  padding: 1.5rem 0.4rem;
  color: #000;
}

@media only screen and (max-width: 750px) {
  .drawer__item {
    width: 100%;
    align-self: center;
    text-align: center;
    font-size: 5vw
  }

  .drawer__item-hr {
    display: none;
  }
}

.drawer__item .drawer__item-link {
  text-decoration: none;
  color: #000;
  font-weight: bold
}

@media only screen and (max-width: 750px) {
  .drawer__item .drawer__item-link {
    color: #000
  }
}

div.drawer__item-link {
  opacity: 0.2;
}

.drawer .drawer__Nav-bottom {
  padding: 2rem;
  display: none
}

@media only screen and (max-width: 750px) {
  .drawer .drawer__Nav-bottom {
    display: block;
    width: 100%
  }
}

@media only screen and (max-width: 750px) {}




/* 
---------------------------------------------------------
introdauction
--------------------------------------------------------- 
*/
.introdauction {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  overflow: hidden;
  z-index: 10000;

}

.loading_bg {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  background-image: url(../images/_blank_dbk.gif);
  background-position: center center;
  /* background-color: aqua; */
  z-index: 10000;
}

.loading_title_body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  z-index: 15000;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: inherit;
  letter-spacing: 2px;
}

.loading_title_body .h1,
.loading_title_body .h2 {

  line-height: 1.3;

}

.loading_title_body .h1 {
  /* font-weight: bold; */
  font-size: 100px;
  padding: 0 0 0.5rem 0;
}

@media only screen and (max-width: 750px) {
  .loading_title_body .h1 {
    font-size: 10vw;
  }

}

.loading_title_body .h2 {
  /* font-weight: bold; */
  font-size: 40px;
}

@media only screen and (max-width: 750px) {
  .loading_title_body .h2 {
    font-size: 5vw;
  }

}

.loading_title01,
.loading_title02 {
  color: #ecff00;
  width: 100%;
  position: relative;
  text-align: center;
  opacity: 0;
}

.loading_title01 {

  z-index: 20000;
}

.loading_title01 {
  z-index: 30000;
}

.glitch {
  display: inline-block;
}


.loading_skip {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  z-index: 40000;
  cursor: pointer;
  color: #ecff00;
  padding: 1rem;
  opacity: 0;
}


@media only screen and (max-width: 750px) {}


/* 
---------------------------------------------------------
main contents
--------------------------------------------------------- 
*/

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  margin-top: 100px;
  box-sizing: border-box;
}

.wrapper.no-margin {
  margin-top: 0px;
}

.section {
  position: relative;
}

/* for inview */
.iv {
  position: relative;
  display: block;
}

/* header
------------------------------------------------*/
.header {
  padding: 0;

}

.banner{
  max-width: 960px;
  margin: 0 auto 4rem;
  text-align: center !important;
}

.banner img{
  max-width: 100%;
  margin: 0 auto 14px;
}

.banner .pc{
    display: block;
}

.banner .sp{
    display: none;
}

.notice {
  max-width: 960px;
  margin: 0 auto 4rem;
  padding: 20px;
  border: 1px solid #ecff00;
  box-sizing: border-box;
}

.disp_1 {
  display: block;
}

.disp_2 {
  display: none;
}

@media only screen and (max-width: 750px) {
  .header {
    padding: 2rem 0 0 0;
  }

  .banner{
    width: 90%;
  }

  .banner .pc{
    display: none;
  }

  .banner .sp{
    display: block;
  }
  
  .notice {
	  max-width: 94%;
	  margin: 0 auto 4rem;
	}

  .disp_1 {
    display: none;
  }

  .disp_2 {
    display: block;
  }

  .scrap_machi {
    width: 120px;
    text-align: center;
    margin: 0 auto;
  }
}

/* section title
------------------------------------------------*/
.section__title__wrap {
  text-align: center;
  /* padding: 0 0 3rem 0; */
  margin: 0 0 5rem 0;
  position: relative;
}

.section__title__wrap::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  ;
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ecff00;
  left: 50%;
  transition-property: width, left;
  transition-duration: 0.3s;
  transition-delay: 0.6s;
}

.--active .section__title__wrap::after {
  width: 100%;
  left: 0%;


}

.section__title-dec {
  position: relative;
  /* background-image: 
  url(../images/bg_title_c01.png),
  url(../images/bg_title_c02.png),
  url(../images/bg_title_c03.png),
  url(../images/bg_title_c04.png);
  background-position: 
  top left,
  top right,
  bottom right,
  bottom left;
  background-repeat: 
  no-repeat,
  no-repeat,
  no-repeat,
  no-repeat; */
  padding: 10px 40px;
  display: inline-block;
}

@media only screen and (max-width: 750px) {
  .section__title-dec {
    padding: 10px 20px;
  }
}


.section__title {
  width: calc(100% - 80px);
  text-align: center;
  color: #ecff00;
  line-height: 1;
  position: absolute;
  top: 50%;
  margin-top: -1rem;
  letter-spacing: 6px;
  text-indent: -6px;
}

@media only screen and (max-width: 750px) {
  .section__title {
    width: calc(100% - 40px);
  }
}

.section__title-dec::before {
  /* content: "STORY"; */
  font-family: 'Monoton', cursive;
  font-size: 115px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);

}

@media only screen and (max-width: 750px) {
  .section__title-dec::before {
    font-size: 65px;
  }

}


@media only screen and (max-width: 750px) {}

/* 
---------------------------------------------------------
STORY
--------------------------------------------------------- 
*/
.section__story {
  padding: 0 0 3rem 0;
}

@media only screen and (max-width: 750px) {}

.section__story .section__title-dec::before {
  content: "STORY";
}

.section__story__cap {
  color: #17cce2;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 34px;
  text-align: center;
  margin: 0 0 8rem 0;
}

@media only screen and (max-width: 960px) {
  .section__story__cap {
    font-size: 4.5vw;
  }
}

.section__story__bg {
  padding: 0 0 0 35%;
  background-image: url(../images/bg_story_01.png);
  background-repeat: no-repeat;
  background-position: 0 0;
}

@media only screen and (max-width: 960px) {
  .section__story__bg {
    padding: 50% 0 0 0;
    background-size: 100%;
  }
}

.section__story__entry {
  line-height: 2.5;
  padding: 3rem 1rem;
  background-image: url(../images/bg_story_wrap.png);
  text-align: center;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

@media only screen and (max-width: 960px) {
  .section__story__entry {
    line-height: 2.2;
    /* font-family: 'Noto Sans JP', sans-serif; */
    /* font-size: 0.9rem; */
    margin: 0 -1rem;
  }
}

.section__story__entry span {
  display: inline-block;
}

.section__story__entry .big {
  font-size: 195%;
  font-weight: bold;
  line-height: 1.5;
}

@media only screen and (max-width: 960px) {
  .section__story__entry .big {
    font-size: 130%;
  }

}

@media only screen and (max-width: 960px) {}



/* 
---------------------------------------------------------
goods
--------------------------------------------------------- 
*/
.section__goods {}

.section__goods .section__title-dec::before {
  content: "GOODS";
}

.section__goods .section__title-dec::before {
  font-size: 100px;
}

@media only screen and (max-width: 750px) {
  .section__goods .section__title-dec::before {
    font-size: 16vw;
  }
}
.comingsoon{
  font-size: 2rem;
  font-weight: 200;
}
.goods__entry__body {
  display: flex;
  flex-wrap: wrap;
}
.goods__item{
  padding: 5px;
  width: 25%;
  box-sizing: border-box;
margin: 0 0 3rem 0;
}
@media only screen and (max-width: 960px) {
  .goods__item{
  
    width: 50%;
  
  margin: 0 0 2rem 0;
  }
}


.goods__entry__body{}
.goods__item{}
.goods__item--link{
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.goods__item--link:hover{
  filter: brightness(150%);
  transition: all 0.3s ease;
}

.goods__item--img{}
.goods__item--title{
  text-align: center;
}
.goods__item__name{
  font-size: 1.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  .goods__item__name{
    font-size: 1rem;
    /* font-weight: bold; */
  }
}


.goods__item__price{
  font-size: 0.9rem;
  font-weight: normal;
}
@media only screen and (max-width: 960px) {
  .goods__item__price{
    font-size: 0.8rem;

  }
}


.fancybox-slide--iframe .fancybox-content {
  max-width  :640px;
  margin: 0;
}
@media only screen and (max-width: 960px) {}

/* 
---------------------------------------------------------
enjoy
--------------------------------------------------------- 
*/
.section__enjoy {
  /* background-color: #000; */
  /* margin: 0 -10px 0px 0; */
  padding: 3rem 0 8rem 0;
}

.section__enjoy .section__title-dec::before {
  content: "ENJOY";
}

.section__enjoy .section__title-dec::before {
  font-size: 100px;
}

@media only screen and (max-width: 750px) {
  .section__enjoy .section__title-dec::before {
    font-size: 65px;
    /* font-size: 4.5vw; */
  }
}

.enjoy__entry__body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;

  /* background-color: #17cce2; */
}

@media only screen and (max-width: 960px) {
  .enjoy__entry__body {
    display: block;
  }

}

.enjoy__entry {
  border: solid 1px #ecff00;
  box-sizing: border-box;
  padding: 16px;
  margin: 0 10px 20px 10px;
  width: 48%;
  width: calc(50% - 20px);
  color: #ecff00;
  background-color: #000;
}

@media only screen and (max-width: 960px) {
  .enjoy__entry {
    width: 100%;
    margin: 0 0 20px 0;
    color: #ecff00;
    background-color: #000;
  }

}

.enjoy__entry:nth-child(3n+1) {
  background-color: #ecff00;
  color: #000;
}
@media only screen and (max-width: 750px) {
  .enjoy__entry:nth-child(3n+1) {
    background-color:inherit;
  }

  .enjoy__entry:nth-child(even) {
    background-color: #000000;
    color: #ecff00;
  }
  .enjoy__entry:nth-child(odd) {
    background-color: #ecff00;
    color: #000;
  }

}
.enjoy__entry__title {
  text-align: center;
  padding: 0.5rem 0 1rem 0;
  font-size: 2.5rem;
  font-weight: bold;
}

@media only screen and (max-width: 960px) {
  .enjoy__entry__title {
    font-size: 1.5rem;
  }

}

.enjoy__entry__text {}


/* 
---------------------------------------------------------
howto
--------------------------------------------------------- 
*/
.section__howto {}

.section__howto .section__title-dec::before {
  content: "HOW TO PLAY";
}

.section__howto .section__title-dec::before {
  font-size: 100px;
}

@media only screen and (max-width: 750px) {
  .section__howto .section__title-dec::before {
    font-size: 40px;
  }
}

#howto {
  margin-bottom: 80px;
}

.triangle_box {
  margin: 0 auto;
  padding: 1em 0;
  text-align: center;
}

.triangle_down {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #ecff00;
}



/* 
---------------------------------------------------------
about
--------------------------------------------------------- 
*/
@media only screen and (max-width: 750px) {
  #about .section__title {
    top: 25px;
  }
}

.section__about {}
.section__about .section__title-dec::before {
  content: "ABOUT";
}

.about__entry {
  border: 1px solid #333;
  margin: 0 0 2rem 0;
}

@media only screen and (max-width: 750px) {
  .about__entry {
    border: none;
    border-bottom: 1px solid #333;
    margin: 0 -1rem 2rem -1rem;
  }
  .section__about .section__title{
   font-size: 120%;
  }
  .section__about .section__title-dec::before {
    font-size: 15vw;
  }	

}

.about__entry__title {
  text-align: center;
  font-size: 1.8rem;
  background-image: url(../images/bg_section_title.png);
  color: #fff;
  padding: 0.6rem;
  margin: 0;
}

.soldout {
  display: inline-block;
  background-color: #ecff00;
  padding: 0.4rem 1rem;
  color: #000;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
  margin: -0.2rem 0.2rem 0 0.2rem;
}

@media only screen and (max-width: 750px) {
  .about__entry__title {
    font-size: 1.2rem;
  }

}

.about__entry__body {
  padding: 2rem;
}

.about__entry__body ul li {
  margin-bottom: 1em;
}

.about__entry__body figure {
  margin: 0.5em 0;
  width: 50vw;
}

@media only screen and (max-width: 750px) {
  .about__entry__body figure {
    width: 90vw;
  }
}

@media only screen and (max-width: 750px) {
  .about__entry__body {
    padding: 1rem;

  }
}

.about__entry-strong {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .about__entry-strong {

    font-size: 1.2rem;
  }

}

.about__entry__map {
  margin: 0 0 3rem 0;
}

.about__entry__map iframe {
  width: 100%;
}

/* ticket */
.tk__body {
  border: 1px solid #333;
  margin: 0 0 0.4rem 0;
  align-items: center;
}

.tk_flex {
  display: flex;
}

.tk__title,
.tk__price {
  padding: 0.5rem;
}

.tk__price--indent {
  display: inline-block;
  padding-left: 2.5rem;
}

.tk__price--indent2 {
  display: inline-block;
  padding-left: 3.5rem;
}

.tk_t_title {
  background-color: #333;
  width: 100%;
  color: #ecff00;
  font-size: 110%;
  text-align: center;
  padding-top: 1em;
  padding-bottom: 1em;
}

.tk__title {
  background-color: #333;
  width: 35%;
  color: #ecff00;
}

.tk__border_tb {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}

.tk__border_b {
  border-bottom: 1px solid #999;
}

.flexbox_vcenter {
  display: flex;
  /* 変更なし */
  flex-direction: column;
  /* 変更なし */
  justify-content: center;
  /* 変更なし */
  align-items: center;
  /* 変更なし */
}

.flexbox_vcenter span {
  border: 0;
}

@media only screen and (max-width: 750px) {
  .tk__title {
    /* width: 65%;*/
  }

  .tk__title span {
    display: inline-block;
  }
}

.tk__price {}

/*  */
.tk__list__body {
  margin: 0 0 0.4rem 0;
}

.tk__list {
  display: flex;
  width: 100%;
  justify-content: flex-end;

}

.tk__list__header {
  width: 80%;
  text-align: center;
  padding: 0.4rem;
  background-color: #333;
  color: #ecff00;
  margin-bottom: 1px;

  box-sizing: border-box;
  /* border-right: 1px solid #000; */
  border-right: 1px solid #333;
  font-size: 140%;
  line-height: 1.3;
}

.tk__list__title {
  width: 40%;
  text-align: center;
  padding: 0.4rem;
  color: #ecff00;
  background-color: #333;
  margin-bottom: 1px;
  box-sizing: border-box;
  /* border-right: 1px solid #000; */
  border-right: 1px solid #333;
}

.tk__list__title:first-child {
  border-right: 1px solid #000;
}

.tk__list__item {
  width: 20%;
  padding: 0.4rem;
  padding: 0.4rem;
  /* color: #ecff00; */
  background-color: #333;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 1px;

}

.tk__list__price {
  width: 40%;
  padding: 0.4rem;
  box-sizing: border-box;
  margin-bottom: 1px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
}

.tk__list .tk__price--indent,
.tk__list .tk__price--indent2 {
  display: inline-block;
  padding-left: 0rem;
}

@media only screen and (max-width: 750px) {}

/* 
------------------------------------------------*/
.sp__body{
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
  .sp__body{
    display: block;
    flex-wrap: nowrap;
  }

}
.sp__entry{
  width: 50%;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}
.sp__entry p{
  margin: 0;
}
@media only screen and (max-width: 750px) {
  .sp__entry{
    width: 100%;
    /* box-sizing: border-box; */
  }

}
/* 
---------------------------------------------------------
profile
--------------------------------------------------------- 
*/
.profileMap {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 750px) {
  #profile .section__title {
    top: 35px;
  }
}

.section__profile {}

.section__profile .section__title-dec::before {
  content: "CHARACTER";
}

@media only screen and (max-width: 750px) {
  .section__profile .section__title-dec::before {
    font-size: 10.5vw;
  }
}

.profile__entry {
  /* border: 1px solid #333; */
  margin: 0 0 2rem 0;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .profile__entry {
    border: none;
    border-bottom: 1px solid #333;
    margin: 0 -1rem 2rem -1rem;
  }

}

.profile__entry__title {
  text-align: center;
  font-size: 1.8rem;
  background-image: url(../images/bg_section_title.png);
  color: #fff;
  padding: 0.6rem;
  margin: 0;
}

@media only screen and (max-width: 750px) {
  .profile__entry__title {
    font-size: 1.2rem;
  }

}

.profile__entry__body {
  padding: 2rem;
}

@media only screen and (max-width: 750px) {
  .profile__entry__body {
    padding: 1rem;
  }
}

@media only screen and (max-width: 750px) {}

/* profile
------------------------------------------------*/
.profile__main {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  /* background-color: #17cce2; */
  padding: 110% 0 0 0;
}

/*  */
.profile__item {
  position: absolute;
  width: 39.3%;
  height: 32.32;
  /* opacity: 0; */
}

.profile__item a:hover img {
  transition: all 0.3s ease;
}

.profile__item a:hover img {
  filter: brightness(150%);
  /* filter: saturate(150%); */
  transition: all 0.3s ease;
}

/*  */
.profile__item_01 {
  top: 0;
  left: 0;
}

.profile__item_02 {
  top: 15.8%;
  left: 30%;

}

.profile__item_03 {
  top: 0;
  left: 60%;

}

.profile__item_04 {
  top: 31.5%;
  left: 0%;
}

.profile__item_05 {
  top: 47.4%;
  left: 30%;

}

.profile__item_06 {
  top: 31.5%;
  left: 60%;
}

.profile__item_07 {
  top: 63.2%;
  left: 0%;
}

.profile__item_08 {
  top: 63.2%;
  left: 60%;
}

/*  */
.profile__item_momo {}

.profile__item_ene {}

.profile__item_shintaro {}

.profile__item_kano {}

.profile__item_hibiya {}

.profile__item_marry {}

.profile__item_seto {}

.profile__item_kido {}

/* profile--grid */
.profile--grid {
  max-width: 600px;
  margin: 1rem auto;
  padding: 1rem;
}

.profile--grid--body {
  width: 100%;
  display: flex;
  margin: 0 0 1rem 0;
}

.profile--grid--title {
  flex-shrink: 0;
}

@media only screen and (max-width: 750px) {
  .profile--grid--title {
    width: 120px;
  }
}

.profile--grid--entry {
  text-align: left;
}

/* 
---------------------------------------------------------
footer
--------------------------------------------------------- 
*/
.footer {
  text-align: center;
  background-color: #ecff00;
  color: #000;
  padding: 5rem 0;
}

/* sns */
.sns {
  padding: 0 0 3rem 0;
}

.sns__link {}

.sns__link-item {
  display: inline-block;
  padding: 1rem;
}

.fa-twitter-square{
  color: #1DA1F2 !important;
}

.tw {}

.fb {}

.li {}

.sns__link-item a {
  color: #000;
  font-size: 3rem;
}

.contact {
  padding: 0 0 3rem 0;
}

.sponsor {
  padding: 0 0 3rem 0;
}

.footer .note {
  font-size: 0.8rem;
}

/*  */
.sales {
  position: fixed;
  bottom: 25px;
  right: 25px;
  max-width: 160px;
}

.sales img {
  transition: all 0.3s ease;

}

.sales a:hover img {
  filter: brightness(150%);
  /* filter: saturate(150%); */
  transition: all 0.3s ease;
}

@media only screen and (max-width: 750px) {
  .sales {
    position: fixed;
    bottom: 13px;
    right: 1px;
    max-width: 180px;
  }
}

@media only screen and (max-width: 750px) {}


/* 
---------------------------------------------------------

--------------------------------------------------------- 
*/
/* ------------------------------
   photoArea
------------------------------ */
.padding-r1{
  padding-right:1em;
}

/* ------------------------------
   loopSlider
------------------------------ */
.loopSliderWrap {
  top: 0;
  left: 0;
  height: 270px;
  overflow: hidden;
  position: absolute;
}

@media only screen and (max-width: 750px) {
  .loopSliderWrap {
    height: 210px;
  }
}

.loopSlider {
  margin: 0 auto;
  width: 100%;
  height: 270px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .loopSlider {
    height: 210px;
  }

}

.loopSlider ul {
  height: 270px;
  float: left;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media only screen and (max-width: 750px) {
  .loopSlider ul {
    height: 210px;
  }
}

.loopSlider ul li {
  width: 477px;
  height: 270px;
  float: left;
  display: inline;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 750px) {
  .loopSlider ul li {
    width: 371px;
    height: 210px;
  }
}

.loopSliderWrap:after {
  content: "";
  display: none;
  clear: none;
}

/* 
---------------------------------------------------------
whats
--------------------------------------------------------- 
*/
.whats {
  background-color: #333333;
  padding: 2rem 0;
}

.whats__wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;

}

@media only screen and (max-width: 750px) {
  .whats__wrapper {
    padding: 0rem 0rem;

  }
}

.whats__title {
  color: #ecff00;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 1rem;
  margin: 2rem 0 0 0;

}

@media only screen and (max-width: 750px) {
  .whats__title {}

}

.whats__body {
  display: flex;
  width: 100%;

}

@media only screen and (max-width: 750px) {
  .whats__body.whats__sec01 {
    display: block;

  }

  .whats__body.whats__sec02 {
    /* display: block; */

  }
}

.whats__body__entry {
  padding: 0 1rem;
}

@media only screen and (max-width: 750px) {
  .whats__body__entry {}
}


.whats__body__image {
  padding: 0 1rem;
  flex-shrink: 0;
}

.whats__body__image iframe{
	max-width: 100%;
}

.whats__sec01 {}

.whats__sec01 .whats__body__entry,
.whats__sec01 .whats__body__image {
  width: 50%;
}

@media only screen and (max-width: 750px) {

  .whats__sec01 .whats__body__entry,
  .whats__sec01 .whats__body__image {
    width: inherit;
    box-sizing: border-box;
  }
}

.whats__sec02 {
  flex-direction: row-reverse;
}

.whats__sec02 .whats__body__entry {}

.whats__sec02 .whats__body__image {
  width: 25%;
}

@media only screen and (max-width: 750px) {
  .whats__sec02 .whats__body__image {
    width: 33%;
  }
}



@media only screen and (max-width: 750px) {}

/* 
---------------------------------------------------------
flex-video
--------------------------------------------------------- 
*/

.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden
}

.flex-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.flex-video.widescreen {
  padding-bottom: 56.25%
}

/* 
---------------------------------------------------------

--------------------------------------------------------- 
*/

.cmMovie__body{
  margin: 1rem auto;
  max-width: 940px;
  padding: 1rem;
}
.cmMovie__title{
  position: relative;
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
	justify-content: center;
	align-items: center;
  color: #ecff00;
	margin:0 auto 2% auto;
	font-weight: bold;
	font-size: 1.8rem;
}
.cmMovie__title::before,
.cmMovie__title::after{
	content: '';
	display: block;
	height: 3px;
	width:30px;
	background-color: #ecff00;
}
.cmMovie__title::before{margin-right:1em;}
.cmMovie__title::after{margin-left:1em;}

.cmMovie__list{
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.cmMovie__list__article{
  position: relative;
  width: 49%;
  margin: 0 2% 24px 0;
  padding: 0;
}

.cmMovie__list__article:nth-child(2n){
  margin: 0 0 24px 0;
}

.cmMovie__list__article iframe{
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 300px;
}


@media only screen and (max-width: 750px) {
  .cmMovie__list{
    display: block;
  }
  .cmMovie__list__article{
    width: 100%;
    margin: 0 0 24px 0;
  }
  .cmMovie__list__article iframe{
    min-height: auto;
  }
}
