@charset "utf-8";


@media screen and (min-width: 980px) {
  .sp{display: none;}
}

body#snack{
  margin:0;
  padding:0;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  background-image: url('../img/main-backimage.jpg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
}

body{
  margin:0;
  padding:0;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  
}

/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(0, 0, 0, 100);
  --index-color :#9A023E;
  --index-color-white :white;
  --pc-font-size :14px;
  --sp-font-size :12px;
}

/*コンテンツのフェードイン処理*/
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.touch{
  padding-top: 200px;
  margin-top: -200px;
}

/*ナビゲーション*/

.header {
  background: var(--background-navbar);
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 999;
}
@media screen and (min-width: 980px) {
.header {
  height: 70px;
}
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}


@media screen and (min-width: 980px) {
  .menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    height: 70px;
    transform: scale(1, 1);
    width:90%;
    position: absolute;
    right: 0;
    margin:0;
    padding: 0;
  }
}

/* Hamburger menbu text */
.menu a{
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}

.menu a:hover{
  opacity: 0.6;
}

@media screen and (min-width: 980px) {
  .menu a{
    opacity: 1;
  }
}



.menu li {
  padding: 0 0 15px;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
  text-align: center;
}

@media screen and (min-width: 980px) {
  .menu li {
    opacity:1;
    padding:0;
    text-align: left;
    margin:0;
  }
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li
{
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}


.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  cursor: pointer;
  right: 0;
  padding: 22px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media screen and (min-width: 980px) {
  .menu-icon{
  display: none;
  }
}

.navicon {
  display: block;
  height: 2px;
  width: 38px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 4px;
}

.navicon:after {
  bottom: 4px;
}

.menu-name{
  color: rgba(255, 255, 255, 100);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  font-size: 13px;
  font-family: 'Noto sans jp';
  margin-top: 5px;
}

/* ハンバーガーメニュー */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-40deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(40deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked ~ .menu-icon .menu-name {
  color: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}


/* ナビゲーション */
.navtext-container {
  width: 100%;
  height: 60px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: left;
  align-items: center;
}

@media screen and (min-width: 980px) {
  .navtext-container {
  justify-content: space-between;
  height: 70px;
  }
}

.navtext img{width:80%;}
@media screen and (min-width: 980px) {.navtext img{width:auto;}}

.list:after {
  content: "";
  display: block;
  background-image: url('../img/star.png');
  width:8px;
  height:9px;
  margin: 10px auto 0;
}

.list:last-child::after {
  background-image: none;
}

@media screen and (min-width: 980px) {
.list:after {
  content: "";
  display: block;
  background-image: url('../img/star.png');
  width:8px;
  height:9px;
  position: absolute;
  right:-3px;
  top:50%;
  margin-top:-3px;
}
}
.menu .list img {
  max-height:20px;
}

@media screen and (min-width: 980px) {


.menu .list{
  list-style: none;
  text-align:center;
  position:relative;
  padding:0 2%;
}

.menu .list img{
  max-height: 16px;
  display: block;
  width:100%;
}
}

/*トップページ */
/**MV 領域**/

#snack main{
 
}

.main-image{
  max-width: 960px;
  display: block;
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .main-image{
    padding-top: 175px;
  }
}

.main-text{
  position: relative;
  width:100%;
  margin: 0 0 -50px;
  z-index: 4;
}
.main-icon{
  width:100%;
}
@media screen and (min-width: 768px) {
.main-text{
  width:70%;
  margin: 0;
}
.main-icon{
  width:30%;
  position: relative;
}
}
.main-text img{
  width:100%;
}

.main-icon img{
  width:100%;
  vertical-align:bottom;
  display: block;
}

.main-p{
  max-width: 840px;
  padding: 18px;
  background-color: #fff;
  text-align: center;
  margin: -80px 12px 0;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .main-p{
    margin: 0 auto;
    padding:60px;
  }
}

.main-p h3, .main-p h2{
  color :var(--index-color);
}

.main-p h2{
  font-size: 17px;
}

.main-p h3{
  font-size: 38px;
  padding:0;
  margin: 0;
}

.main-p .concept-index{
  position: relative;
  display: inline-block;
}

.main-p .concept-index h2:before{
  content: "";
  display: block;
  background-image: url('../img/star-red.png');
  width:14px;
  height:17px;
  position: absolute;
  left:-30px;
  top:50%;
  margin-top:-8px;
}
.main-p .concept-index h2::after{
  content: "";
  display: block;
  background-image: url('../img/star-red.png');
  width:14px;
  height:17px;
  position: absolute;
  right:-30px;
  top:50%;
  margin-top:-8px;
}

.concept-box{
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.concept-box .concept-p{
  line-height: 25px;
  margin:0;
  padding: 0 0 100px;
  background-color: #fff;
  font-size: var(--sp-font-size);
  position: relative;
  z-index: 6;
}

@media screen and (min-width: 768px) {
.concept-box .concept-p{
  line-height: 50px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 200px;
}
}

/*監修用*/

.supervision-box{
  width:100%;
  background-color: #fff;
  margin:0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
.supervision-box{
  max-width: 960px;
  margin:0 auto;
  text-align: center;
}
}

.supervision-index{
  position: relative;
  display:inline-block;
}

.supervision-index h2{
  color: var(--index-color);
  font-size: 24px;
}

.supervision-p h3 p,.intelligent-p h3 p{
  display: inline;
  margin: 5px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .supervision-p h3 p,.intelligent-p h3 p{
    margin: 0;
    text-align: left;
  }
}

.supervision-p h3,.intelligent-p h3{
  color: var(--index-color);
  font-size: 16px;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
  .supervision-p h3,.intelligent-p h3{
    flex-direction: inherit;
  }
}

.supervision-p h3 .name,.intelligent-p h3 .name{
  color: var(--index-color);
  font-size: 18px;
  margin-right: 20px;
}

.supervision-index{
  margin-bottom: 30px;
}

.supervision-index h2{
  margin: 0;
}

@media screen and (min-width: 768px) {
.supervision-index{
  margin-bottom: 70px;
}
}

.supervision-index h2:before{
  content: "";
  display: block;
  background-image: url('../img/star-red.png');
  width:14px;
  height:17px;
  position: absolute;
  left:-30px;
  top:50%;
  margin-top:-8px;
}

.supervision-index h2::after{
  content: "";
  display: block;
  background-image: url('../img/star-red.png');
  width:14px;
  height:17px;
  position: absolute;
  right:-30px;
  top:50%;
  margin-top:-8px;
}

.mamas-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding:0 30px;
  margin-bottom: 70px;
}

.supervision-img{
  width:100%;
}

@media screen and (min-width: 768px) {
.supervision-img{
  width:40%;
}
}

.supervision-p{
  width:100%;
  font-size: var(--sp-font-size);
  text-align: left;
  padding:0;
}

@media screen and (min-width: 768px) {
.supervision-p{
  width:60%;
  font-size: var(--pc-font-size);
  text-align: left;
}
}

.supervision-p p{line-height: 24px;}

.button-box{padding-bottom:120px}

.supervision-box .button-push{
  width:80%;
  font-size: var(--sp-font-size);
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
  background-image: url(../img/arrow.png);
  background-position: right 14px center;
  background-repeat: no-repeat;
}

.supervision-box .button-push:hover{
  box-shadow: none;
  position: relative;
  top:5px;
  left:5px;
}

@media screen and (min-width: 768px) {
.supervision-box .button-push{
  width:36%;
  font-size: var(--pc-font-size);
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
  background-image: url(../img/arrow.png);
  background-position: right 14px center;
  background-repeat: no-repeat;
}
}

.supervision-box .button-push a{
  font-family: 'Noto sans jp';
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  display: block;
  line-height: 49px;
}

/*スペシャルコンテンツ*/
.scontents-box{
  position: relative;
  background-color: #BF2056;
  width: 100%;
  margin: 0 auto 60px;
  padding: 50px 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
.scontents-box{
  background-color: #BF2056;
  max-width: 960px;
  margin: 0 auto 120px;
  padding: 100px 0;
  text-align: center;
}
}

.scontents-box:before{
    content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 5%;
    top: 5%;
    animation:
    flicker-opacity 2.5s linear infinite,
    flicker-rote 3s linear infinite;
}

.scontents-box::after{
  content: "";
  display: block;
  background-image: url(../img/move-star.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 80px;
  height: 80px;
  position: absolute;
  right: 5%;
  bottom: 5%;
  animation:
  flicker-opacity 1.5s linear infinite .5s,
  flicker-rote 1.5s linear infinite;
}

.scontents-box .scontents-index{
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.scontents-box .scontents-index h3{
  color: var(--index-color-white);
  font-size: 15px;
}

.scontents-box .scontents-index h3:before{
  content: "";
  display: block;
  background-image: url('../img/star-white.png');
  width:14px;
  height:17px;
  position: absolute;
  left:-30px;
  top:50%;
  margin-top:-8px;
}

.scontents-box .scontents-index h3::after{
  content: "";
  display: block;
  background-image: url('../img/star-white.png');
  width:14px;
  height:17px;
  position: absolute;
  right:-30px;
  top:50%;
  margin-top:-8px;
}

.scontent-box{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.scontent-box .scontent-img{
  width: 100%;
  padding: 0 15px 40px;
}

@media screen and (min-width: 768px) {
.scontent-box .scontent-img{
  width: 50%;
  padding: 0 15px;
}
}

.scontent-box .scontent-img img{
  width:100%;
}

.scontent-box .scontent-p{
  color: var(--index-color-white);
  width: 100%;
  text-align: center;
  padding:0 2%;
}

@media screen and (min-width: 768px) {
.scontent-box .scontent-p{
  color: var(--index-color-white);
  width: 38%;
  text-align: left;
  padding:0 2%;
}
}

.scontent-p .sub-index{
  font-size: 18px;
  margin: 0 0 10px;
  text-align: center;
  padding:0 15px;
}

@media screen and (min-width: 768px) {
.scontent-p .sub-index{
  text-align: left;
  font-size: 20px;
  margin: 0 0 10px;
  padding:0;
}
}

.scontent-p .main-index{
  text-align: center;
  font-size: 26px;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
.scontent-p .main-index{
  text-align: left;
  font-size: 26px;
  margin: 0 0 10px;
}
}

.scontent-p .discription{
  font-size: 16px;
  margin: 0 0 30px;
  line-height: 32px;
}

.scontent-box .button-push{
  width:70%;
  font-size: var(--sp-font-size);
  margin:0 auto;
  background-color: white;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
}

.scontent-box .button-push:hover{
  box-shadow: none;
  position: relative;
  top:5px;
  left:5px;
}




@media screen and (min-width: 768px) {
.scontent-box .button-push{
  width:100%;
  font-size: var(--pc-font-size);
  margin:0 auto;
  background-color: white;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
}
}

.scontent-box .button-push a{
  font-family: 'Noto sans jp';
  text-decoration: none;
  color: #BA295B;
  display: block;
  line-height: 48px;
  background-image: url(../img/arrow-red.png);
  background-position: right 14px center;
  background-repeat: no-repeat;
}

.selfageism-box{
  width:100%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 768px) {
.selfageism-box{
  max-width:960px;
  margin: 0 auto;
  text-align: center;
}
}

.selfageism-box .selfageism-index{
  position: relative;
  display: inline-block;
}

.selfageism-box .selfageism-index h3{
  font-size: 15px;
  color: var(--index-color);
}

@media screen and (min-width: 768px) {
.selfageism-box .selfageism-index h3{
  font-size: 24px;
  color: var(--index-color);
}
}

.selfageism-box .selfageism-index h3:before{
  content: "";
  display: block;
  background-image: url('../img/star-red.png');
  width:14px;
  height:17px;
  position: absolute;
  left:-30px;
  top:50%;
  margin-top:-8px;
}

.selfageism-box .selfageism-index h3::after{
  content: "";
  display: block;
  background-image: url('../img/star-red.png');
  width:14px;
  height:17px;
  position: absolute;
  right:-30px;
  top:50%;
  margin-top:-8px;
}

.selfageism-box .selfageism-p{
  text-align: left;
  margin-bottom: 60px;
  padding: 0 15px;
  width:90%;
  margin:0 auto 55px;
  font-size: var(--sp-font-size);
  line-height: 24px;
}

@media screen and (min-width: 768px) {
.selfageism-box .selfageism-p{
  width:70%;
  font-size: var(--pc-font-size);
  line-height: 28px;
}
}

.selfageism-box .button-push{
  width:70%;
  font-size: var(--sp-font-size);
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
  background-image: url(../img/arrow.png);
  background-position: right 14px center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
.selfageism-box .button-push{
  font-size: var(--pc-font-size);
  width:36%;
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
  background-image: url(../img/arrow.png);
  background-position: right 14px center;
  background-repeat: no-repeat;
}
}

.selfageism-box .button-push a{
  font-family: 'Noto sans jp';
  text-decoration: none;
  color: #fff;
  display: block;
  line-height: 49px;
}

/*トップページ終了*/
/**キャラクターページ**/


#character main{
  background-color: #fff;
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  #character main{
    margin-bottom: 50px;
  }
}

.character-main{
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.character-main img{
  
  padding-top: 50px;
  width: 100%;
}

@media screen and (min-width: 768px) {
.character-main img{
  padding-top: 100px;
  width:100%;
}
}


.character-p{
  color: #BA295B;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  padding:0 5px;
}

@media screen and (min-width: 768px) {
  .character-p{
    font-size: 28px;
    padding-top: 80px;
    margin-top: -80px;
    line-height: 42px;
  }
}

/*識者用*/

.red-wrap{
  background-color: #BF2056;
  padding: 90px 0;
}

@media screen and (min-width: 768px) {
  .intelligent-wrap{
    padding: 90px 0;
  }
}

.intelligent-box{
  width:100%;
  background-color: #fff;
  margin:0 auto 90px;
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

#character .intelligent-box.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 10%;
    top: -9%;
    animation:
    flicker-opacity 2.5s linear infinite 1s,
    flicker-rote 2.5s linear infinite;
}


#character .intelligent-box.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10%;
    top: -9%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
}

@media screen and (min-width: 768px) {
  #character .intelligent-box.flicker:after{
    right: -13%;
    top: 30%;
  }

  #character .intelligent-box.flicker:before{
    right: -9%;
    top: 40%;
  }

}

@media screen and (min-width: 768px) {
.intelligent-box{
  max-width: 840px;
  text-align: center;
  padding: 60px;
  margin-bottom: 140px;
}
}

.intelligent-index{
  position: relative;
  display:inline-block;
}

.intelligent-index h2{
  color: var(--index-color);
  font-size: 24px;
}

.intelligent-p p{
  line-height: 24px;
}

.intelligent-p h3{
  color: var(--index-color);
  font-size: 16px;
}


.intelligent-index h2:before{
  content: "";
  display: block;
  background-image: url('../img/star-red.png');
  width:14px;
  height:17px;
  position: absolute;
  left:-20px;
  top:50%;
  margin-top:-10px;
}
.intelligent-index h2::after{
  content: "";
  display: block;
  background-image: url('../img/star-red.png');
  width:14px;
  height:17px;
  position: absolute;
  right:-20px;
  top:50%;
  margin-top:-10px;
}

.intelligent-box .mamas-box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 70px;
}

.intelligent-img{
  width:100%;
}

@media screen and (min-width: 768px) {
.intelligent-img{
  width:40%;
}
}

.intelligent-p{
  width:100%;
  font-size: var(--sp-font-size);
  text-align: left;
  padding:0 25px;
}

@media screen and (min-width: 768px) {
.intelligent-p{
  width:60%;
  font-size: var(--pc-font-size);
  text-align: left;
  padding:0;
}
}

.step-box{
  max-width: 960px;
  margin:0 auto;
  position: relative;
}

#character .step-box.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 0;
    bottom: 12%;
    animation:
    flicker-opacity 2.5s linear infinite 1s,
    flicker-rote 2.5s linear infinite;
}

#character .step-box.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 12%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
}

@media screen and (min-width: 768px) {
  #character .step-box.flicker:after{
    right: -9%;
    top: 67%;
  }

  #character .step-box.flicker:before{
    right: -10%;
    top: 69%;
  }

}


.step-list{
  margin-bottom: 85px;
  position: relative;

}

#character .step-list.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: -14%;
    animation:
    flicker-opacity 2.5s linear infinite 1s,
    flicker-rote 2.5s linear infinite;
}

#character .step-list.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: -14%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
}

@media screen and (min-width: 768px) {
  #character .step-list.flicker:after{
    left: -5%;
    top: -43%;
  }

  #character .step-list.flicker:before{
    left: -3%;
    top: -40%;
  }

}

.step-list ul{
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin:0;
  padding:0;
}

.step-list .content-box{
  width:70%;
  background-color: #fff;
  text-align: center;
  color:#BA295B;
  position: relative;
}

.step-list .content-box .coution{
  position: absolute;
  color: #fff;
  font-size: 11px;
  width: 100%;
  text-align: center;
}

.step-list .content-box .coution a{
  color: #fff;
}


@media screen and (min-width: 768px) {
.step-list .content-box{
  width:25.7%;
}
}

.step-list .content-box .conetnt-index{
  font-family: Noto sans jp;
  font-size: 16px;
  line-height: 32px;
}

.step-list .arrow-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  text-align: center;
  margin:60px 0 30px;

}

@media screen and (min-width: 768px) {
.step-list .arrow-box{
  width:11%;
  margin:0;
}
}

.step-list .arrow-box img{
  transform: rotate(90deg);
  transition: 0.5s;
  
}

@media screen and (min-width: 768px) {
  .step-list .arrow-box img{
    transform: rotate(0deg);
    transition:0.5s
}
}

.step-box .button-push{
  width:70%;
  font-size: var(--sp-font-size);
  margin:0 auto;
  background-color: white;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
}

@media screen and (min-width: 768px) {
  .step-box .button-push{
    font-size: var(--pc-font-size);
    width:30%;
  }
}

.step-box .button-push:hover{
  box-shadow: none;
  position: relative;
  top:5px;
  left:5px;
}

.step-box .button-push a{
  font-family: 'Noto sans jp';
  text-decoration: none;
  font-weight: bold;
  color: #BA295B;
  display: block;
  line-height: 48px;
  background-image: url(../img/arrow-red.png);
  background-position: right 14px center;
  background-repeat: no-repeat;
}

/**キャラクターページ 終了**/

/**大喜利**/

#oogiri .step-box.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 0;
    bottom: 12%;
    animation:
    flicker-opacity 2.5s linear infinite 1s,
    flicker-rote 2.5s linear infinite;
}

#oogiri .step-box.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 12%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
}

@media screen and (min-width: 768px) {
  #oogiri .step-box.flicker:after{
    right: -10%;
    top: 40%;
  }

  #oogiri .step-box.flicker:before{
    right: -10%;
    top: 40%;
  }
}

#oogiri .step-list.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: -14%;
    animation:
    flicker-opacity 2.5s linear infinite 1s,
    flicker-rote 2.5s linear infinite;
}

#oogiri .step-list.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: -14%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
}

@media screen and (min-width: 768px) {
  #oogiri .step-list.flicker:after{
    left: -10%;
    bottom: -40%;
    top:inherit;
  }

  #oogiri .step-list.flicker:before{
    left: -10%;
    bottom: -40%;
    top:inherit
  }

}



/**オフラインスナック 開始**/

.event-summary-box{
  text-align: center;
}

.event-summary-index{
  position: relative;
  display:inline-block;
}

.event-summary-index h3{
  color: var(--index-color-white);
  font-size: 15px;
}

@media screen and (min-width: 768px) {
.event-summary-index h3{
  font-size: 24px;
}
}


.event-summary-index h3:before{
  content: "";
  display: block;
  background-image: url('../img/star-white.png');
  width:14px;
  height:17px;
  position: absolute;
  left:-20px;
  top:50%;
  margin-top:-10px;
}
.event-summary-index h3::after{
  content: "";
  display: block;
  background-image: url('../img/star-white.png');
  width:14px;
  height:17px;
  position: absolute;
  right:-20px;
  top:50%;
  margin-top:-10px;
}

.event-summary-box{
  max-width: 960px;
  margin-bottom:96px;
}

@media screen and (min-width: 768px) {
  .event-summary-box{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 145px;
  }
}

.event-summary-box .event-list{
  padding:10px;
  background-color: #fff;
}




@media screen and (min-width: 768px) {
.event-summary-box .event-list{
  padding:46px;
  background-color: #fff;
}
}

.event-summary-box dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  justify-items: center;
  
}


.event-summary-box dl dt{
  font-family: Noto sans jp;
  width:10%;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #dddddd;
  line-height: 54px;
  color: var(--index-color);
}
.event-summary-box dl dd{
  width:90%;
  margin:0;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #dddddd;
  line-height: 24px;
  padding: 10px 0;
}

.theight{margin-top:14px;line-height: 21px !important;}
@media screen and (min-width: 768px) {
  .theight{line-height: 42px!important;}
}

@media screen and (min-width: 768px) {
  .event-summary-box dl dd{
    font-size: 16px;
  }
}
.speaker-box{
  text-align: center;
  max-width: 960px;
  margin: 0 auto 96px;
}

.min_coution{display: inline-block; font-size: 12px; line-height: 17px !important;}

@media screen and (min-width: 768px) {
.speaker-box{
  margin: 0 auto 150px;
}
}

#offline .step-box.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 0;
    bottom: 12%;
    animation:
    flicker-opacity 2.5s linear infinite 1s,
    flicker-rote 2.5s linear infinite;
}

#offline .step-box.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 12%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
}

@media screen and (min-width: 768px) {
  #offline .step-box.flicker:after{
    right: -9%;
    top: 67%;
  }

  #offline .step-box.flicker:before{
    right: -10%;
    top: 69%;
  }

}

.speaker-box .speaker-index{
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.speaker-box .speaker-index h3{
  color: var(--index-color-white);
    font-size: 15px;
}

@media screen and (min-width: 768px) {
.speaker-box .speaker-index h3{
  color: var(--index-color-white);
    font-size: 24px;
}
}

.speaker-box .speaker-index h3:before{
  content: "";
  display: block;
  background-image: url('../img/star-white.png');
  width:14px;
  height:17px;
  position: absolute;
  left:-20px;
  top:50%;
  margin-top:-10px;
}
.speaker-box .speaker-index h3::after{
  content: "";
  display: block;
  background-image: url('../img/star-white.png');
  width:14px;
  height:17px;
  position: absolute;
  right:-20px;
  top:50%;
  margin-top:-10px;
}

.speaker-box .speaker-list ul{
  max-width: 880px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin:0 auto;
  padding:0;
  list-style: none;
}


.speaker-box .speaker-list ul li{
  width:100%;
  background-color: #fff;
  padding: 25px;
  margin-bottom:30px;
}

@media screen and (min-width: 768px) {
.speaker-box .speaker-list ul li{
  display: flex;
  flex-direction: column;
  width:42%;
  background-color: #fff;
  padding: 25px;
  margin-bottom: 0;
}
}

.speaker-box .speaker-list ul li p{
  margin:15px 0;
  padding: 0;
  text-align: left;
  line-height: 28px;
}

.speaker-box .speaker-list .speaker-name p{
  color: var(--index-color);
  text-align: right;
  margin:5px 0;
}

#offline .step-list.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: -14%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
}



#offline .step-list.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 3%;
    top: -12%;
    animation:
    flicker-opacity 2.5s linear infinite 1.5s,
    flicker-rote 1.5s linear infinite 0.5s;
}

@media screen and (min-width: 768px) {
  #offline .step-list.flicker:after{
    left: -5%;
    top: -43%;
  }

  #offline .step-list.flicker:before{
    left: -3%;
    top: -40%;
  }

}


#offline .speaker-box.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 10%;
    top: 0;
    animation:
    flicker-opacity 2.5s linear infinite 1s,
    flicker-rote 2.5s linear infinite;
}


#offline .speaker-box.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10%;
    top: 0;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
}

@media screen and (min-width: 768px) {
  #offline .speaker-box.flicker:after{
    right: -10%;
    top: 0%;
  }

  #offline .speaker-box.flicker:before{
    right: -9%;
    top: 0%;
  }

}

.event-list .button-push{
  width:80%;
  font-size: var(--sp-font-size);
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
  background-image: url(../img/arrow.png);
  background-position: right 14px center;
  background-repeat: no-repeat;
}

.event-list .button-push:hover{
  box-shadow: none;
  position: relative;
  top:5px;
  left:5px;
}

@media screen and (min-width: 768px) {
.event-list .button-push{
  width:36%;
  font-size: var(--pc-font-size);
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
  background-image: url(../img/arrow.png);
  background-position: right 14px center;
  background-repeat: no-repeat;
}
}

.event-list .button-push a{
  font-family: 'Noto sans jp';
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  display: block;
  line-height: 49px;
}

.event-list .button-box{margin:30px 0;padding-bottom: 0;width: 100%;}

#offline .speaker-box .speaker-p{
  flex-grow: 1;
}


/**オフラインスナック 終了**/

/*記事ページ 開始*/

#article.red-wrap{
  background-color: #BA295B;
  padding: 0;
}

#article .article-wrap{
  padding:0 10px;
}

@media screen and (min-width: 768px) {
#article .article-wrap{
  padding:0px;
}
}

.article-main{
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.article-main img{
  width:auto;
  padding-top: 50px;
}

@media screen and (min-width: 768px) {
.article-main img{
  width:100%;
  padding-top: 100px;
  vertical-align: bottom;

}
}

.article-box{
  width:100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 0;
  padding:30px 10px;
  box-sizing: border-box;
  
}

@media screen and (min-width: 768px) {
.article-box{
  width:960px;
  margin: 0 auto;
  background-color: #fff;
  padding: 65px 40px;
  position: relative;
}
}

.article-box h2{
  font-size: 14px;
  margin-top:0;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .article-box h2{
    font-size: 26px;
    margin-top:35px;
    margin-bottom: 65px;
  }
}

#article .article-box.flicker:before{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 0;
    bottom: 12%;
    animation:
    flicker-opacity 2.5s linear infinite 1s,
    flicker-rote 2.5s linear infinite;
    display: none;
}

#article .article-box.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 12%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
    display: none;
}

@media screen and (min-width: 768px) {
  #article .article-box.flicker:after{
    display: block;
    right: -9%;
    top: 57%;
  }

  #article .article-box.flicker:before{
    display: block;
    right: -15%;
    top: 50%;
  }

}

#article .article-main.flicker:before{
  content: "";
  display: block;
  background-image: url(../img/move-star.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 5%;
  top: -10%;
  animation:
  flicker-opacity 1.5s linear infinite 1s,
  flicker-rote 1.5s linear infinite;
  display: none;
}



#article .article-main.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: -14%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
    display: none;
}

@media screen and (min-width: 768px) {
  #article .article-main.flicker:after{
    display: block;
    left: 10%;
    top: inherit;
    bottom:0;
  }

  #article .article-main.flicker:before{
    display: block;
    left: 5%;
    bottom: 5%;
    top: inherit;
  }

}

.article-body{
  width:100%;
  margin:0 auto 70px;
}

@media screen and (min-width: 768px) {
.article-body{
  max-width:860px;
  margin:0 auto 70px;
}}

.article-body p{
  font-family: Noto sans jp;
  font-size: 12px;
  line-height: 36px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
.article-body p{
  font-family: Noto sans jp;
  font-size: 16px;
  line-height: 36px;
}
}



.article-img{
  margin:20px 0;
}

.article-img .tomy{
  text-align: center;
}

.article-img .tomy img{
  width:auto;
}

.article-img span{
font-size: 10px;
display: inline-block;
text-align: right;
width: 100%;}


@media screen and (min-width: 768px) {
.article-img{
  margin:60px 0;
}
}

.article-img img{
  width:100%;
}

.sns-share h2{
  font-family: Noto sans jp;
  font-size: 18px;
  color: var(--index-color);
  text-align: center;
  margin-bottom: 25px;
}
.sns-share ul{
  list-style: none;
  margin:0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.share-button .button-push.fb{
  width:90%;
  font-size: var(--sp-font-size);
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
  background-image: url(../img/facebook.png);
  background-position: left 14px center;
  background-size: 25px;
  background-repeat: no-repeat;
  text-indent: 2em; 
}

.share-button .button-push.tw{
  width:90%;
  font-size: var(--sp-font-size);
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
  background-image: url(../img/x.png);
  background-position: left 40px center;
  background-size: 25px;
  background-repeat: no-repeat;
  text-indent: 2em; 
}

.share-button .button-push.li{
  width:90%;
  font-size: var(--sp-font-size);
  margin:0 auto;
  background-color: black;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  box-shadow: 5px 5px #bfbfbf;
}

.share-button .button-push a{
  color: var(--index-color-white);
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.share-button .button-push:hover{
  box-shadow: none;
  position: relative;
  top:5px;
  left:5px;
}

.sns-share{
  position: relative;
}

.sns-share ul li{
    font-family: 'Noto Sans JP';
    width: 100%;
    line-height: 50px;
    font-size: 14px;
    margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
.sns-share ul li{
  width:30%;
  margin-bottom: 25px;
}
}

#article .sns-share.flicker:before{
  content: "";
  display: block;
  background-image: url(../img/move-star.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100px;
  height: 100px;
  position: absolute;
  right: 5%;
  top: -10%;
  animation:
  flicker-opacity 1.5s linear infinite 1s,
  flicker-rote 1.5s linear infinite;
  display: none;
}



#article .sns-share.flicker:after{
  content: "";
    display: block;
    background-image: url(../img/move-star.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: -14%;
    animation:
    flicker-opacity 1.5s linear infinite 0.5s,
    flicker-rote 1.5s linear infinite;
    display: none;
}

@media screen and (min-width: 768px) {
  #article .sns-share.flicker:after{
    display: block;
    left: -20%;
    top: inherit;
    bottom:0;
  }

  #article .sns-share.flicker:before{
    display: block;
    left: -30%;
    bottom: 5%;
    top: inherit;
  }

}


.return-top {
  text-align: center;
  margin: 80px 0;
}

.return-top a{
  font-size: 23px;
  font-family: 'Noto Sans JP';
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  color: var(--index-color-white);

}
/*記事ページ 終了*/


/*フッター領域*/
.footer-box{
  background-color: rgba(0,0,0,0.8);
  width: 100%;
  text-align: center;
  padding:30px 0 25px;
}

.footer-logo img{
  width:50%;
}

@media screen and (min-width: 768px) {
  .footer-logo img{
    width:auto;
  }
}

.footer-box .footer-logo{
  margin-bottom: 50px;
}

.sns-box{
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  width: 50%;
  margin: 0 auto 40px;
}

@media screen and (min-width: 768px) {
.sns-box{
  width: 20%;
}
}

.qsai{
  margin-bottom: 25px;
  display: block;
}

.footer-box .copyright{
  font-size: 10px;
  text-align: center;
  color:white;
  margin: 0;
}

.step-box{
  text-align: center;
}

.step-index{
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom:40px;
}
@media screen and (min-width: 768px) {
  .step-index{
  margin-bottom:90px;
  }
}

.step-box .step-index h3{
  color: var(--index-color-white);
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .step-box .step-index h3{
    font-size: 24px;
  }
}

.step-box .step-index h3:before{
  content: "";
  display: block;
  background-image: url('../img/star-white.png');
  width:14px;
  height:17px;
  position: absolute;
  left:-20px;
  top:50%;
  margin-top:-10px;
}

.step-box .step-index h3::after{
  content: "";
  display: block;
  background-image: url('../img/star-white.png');
  width:14px;
  height:17px;
  position: absolute;
  right:-20px;
  top:50%;
  margin-top:-10px;
}




/*動的制御*/

@keyframes flicker-opacity{
  0%{opacity:1;}
  50%{opacity:0;}
  100%{opacity:1;}
}

@keyframes flicker-rote{
	0%   { transform: rotate(0deg) scale(1);}
	50%  { transform: rotate(180deg) scale(0);}
	100% { transform: rotate(360deg) scale(1);}
}

/*メイン画像 周辺*/
#snack .flickerA img{
  position: absolute;
  top:10%;
  right: 3%;
  width:25%;
  animation:
    flicker-opacity 3.5s linear infinite,
    flicker-rote 3.5s linear infinite;
}

#snack .flickerB img{
  position: absolute;
  top:35%;
  right: 2%;
  width:10%;
  animation:
    flicker-opacity 3.5s linear .1s infinite,
    flicker-rote 3.5s linear .1s infinite;
}

#snack .flickerC img{
  position: absolute;
  top:45%;
  left: 2%;
  width:10%;
  animation:
    flicker-opacity 3.5s linear .3s infinite,
    flicker-rote 3.5s linear .1s infinite;
}

#snack .flickerD img{
  position: absolute;
  top:55%;
  left: 5%;
  width:15%;
  animation:
    flicker-opacity 3.5s linear .5s infinite,
    flicker-rote 3.5s linear infinite;
}


.main-icon img{
  animation: bounce 1.5s;
  transform: translate(0%,2%);/*バウンド後のポジション*/
  position: relative;
  top:0;
  z-index: 3;
}

@media screen and (min-width: 768px) {
.main-icon img{
  top:-507px;/*画像の高さだけ戻す*/
  width:380px;/*高さを固定*/
  position: absolute;
  right: -37px;

}}

@keyframes bounce {
  0%   { transform: scale(1.0, 1.0) translate(0%, 80%); } /* 初期状態 */
  50%  { transform: scale(1.0, 1.0) translate(0%, 0%); } /* ジャンプ */
  100% { transform: scale(1.0, 1.0) translate(0%, 2%); } /* 着地 */
}

/*非公開コンテンツ対応*/
.out{
  box-shadow: none !important;
  opacity: 0.4;
}

.out:hover{
  cursor: not-allowed;
  top:0;
  right:0;
}

.wid{
  max-width: 960px;
  margin: auto;
}

#article .wid img{
  width:100%
}

.example-body{
  font-size: 11px;
  text-align: right;
}