/*reset.css */
@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: none;
font-style: normal;
text-align: left;
zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
table {
border-collapse: collapse;
font-family: inherit;
}
h1,h2,h3,h4,h5 {
font-size: 100%;
font-weight: normal;
line-height: 1;
}
input,textarea,select {
font-family: inherit;
font-size: 16px;
}
input[type="button"],input[type="text"],input[type="submit"] {
 -webkit-appearance: none;
 border-radius: 0;
}
textarea {
resize: none;
-webkit-appearance: none;
border-radius: 0;
}
th,td {
border-collapse: collapse;
}
table th,table td {
white-space: nowrap;
}
ul,ol {
list-style-type: none;
}
img {
vertical-align: text-bottom;
vertical-align: -webkit-baseline-middle;
max-width: 100%;
height: auto;
width /***/:auto;
}

/*reset.css */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400&display=swap');
body{
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
}

.clearfix::after {
   content: "";
   display: block;
   clear: both;
}
.vertical{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/* ------------- スクロールフェードインDown用 ------------- */
.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
/* ------------- スクロールフェードインDown用 END ------------- */
.fadeInDownZero {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

.fixedBtn{
  bottom: 0;
  position: fixed;
  z-index: 1000;
  text-align: right;
  width: 100%;
}

.fixedBtn a{
  display: inline-block;
}

.fixedBtn img{
  width:200px;
  padding:10px;
  box-sizing: border-box;
  filter: drop-shadow(0px 0px 1px #fff);

}

.hamburger {
  display : block;
  position: fixed;
  z-index : 1002;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : -1;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 100px auto 0 auto;
  padding: 0;
  width: 100%;

}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background : #ECADC4;;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
  text-align: center;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  position: fixed;
  z-index :1001;
}


.top_view p{
  color:#fff;
}

.second_view p, .second_view h2{
  color:#fff;
  text-align: center;
  font-weight: bold;
}

.top_view .creator p{
  color:#fff;
  text-align: right;

}

@media screen and (max-width:500px) {
  .fixedBtn a{
    width: 49%;
  }
}

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


  .sp{
   display:block;
  }
  .pc{
    display: none;
  }

.content{
  padding:0 15px;
  box-sizing: border-box;
}

.top_view{
  background-image: url("assets/mv_sp.png");
  background-position:right;
  background-repeat: no-repeat;
  background-size:cover;
  height:100vh;
}

.top_view .logo{
  padding-top:15vh;
}


.top_view .app_catchphrase p{
  color:#fff;
  text-align: right;
  font-size:35px;
  position:absolute;
  top:43vh;
  left:10px;
  letter-spacing:0.15em;
  font-weight: bold;
}

.top_view .app_catchphrase p:after {
  margin: 0 1rem;
  content: "";
  width: 2px;
  height: 100px;
  background-color: #fff;
  position: absolute;
  left: 9px;
  bottom: -110px;
}

.top_view .logo h1{
  text-align: center;
}

.second_view{
  background:#000;
  text-align: center;
  position:relative;
}
.second_view .creator{
  text-align: right;
}
.second_view .creator img{
  display: inline-block;
}

.second_view_content{
  width: 100%;
  position:relative;
  top:-100px;
}

.second_view .creator_roll{
  font-size:12px;
  margin-bottom:2px;
  text-align: right;
  font-family: 'Roboto', sans-serif;
  color:#747474;
  right:10px;
  position:relative;
}
.second_view .creator_name{
  font-size:16px;
  margin-top:0px;
  margin-bottom:10px;
  text-align: right;
  font-family: 'Roboto', sans-serif;
  right:10px;
  position:relative;
}
.sakura{
  color:#ECADC4;
}

.second_view .sns_follow{
  text-align: center;
  margin:0 auto;
}

.second_view .sns_follow p{
  font-size:11px;
}

.second_view .sns_follow_icons{
  width:200px;
  margin:10px auto 0 auto;
  padding:0 20px;
  box-sizing: border-box;
  text-align: center;
}
.fragment01{
  width:200px;
}

.second_view .sns_follow_icons img{
  width:50%;
  padding:0 7px;
}

.second_view h2{
  font-size:20px;
  font-weight: bold;
  margin-bottom:70px;

}
.second_view .community_btn{
  margin:30px 0;
  width: 100%;
  text-align: center;
}

.second_view .community_btn img{
  width: 500px;
  text-align: center;
  margin-bottom:20px
}

.second_view .community_btn p{
  font-size:13px;
}

.second_view .release_catchphrase{
  padding-top:100px;
}

.teaser_movie{
  width: 100%;
  height:300px;
}

.app_explains{
  background-image:url("assets/explain_bg.png");
  background-size:cover;
  color:#fff;
}

.app_explain_all{
  padding:70px 30px;
}
.app_explain img{
  filter: drop-shadow(1px 0px 10px rgba(100,100,100,1));
}

.night{
  color:#90ADE7;
}

.app_explain_all h2,.app_explain_all p{
  text-align: center;
}
.app_explain_all h2{
  font-size:25px;
  margin-bottom:50px;
}

.app_explain_all p{
  text-align: center;
  font-size:14px;
  line-height: 2em;
}

.app_explain_log{
  height:500px;
  position: relative;
  padding-bottom:100px;
}
.app_explain_log h3{
  font-size:25px;
  position:absolute;
  right:20px;
  line-height: 1.5em;
  letter-spacing: .3em;
  z-index: 3;
  font-weight:bold;
  top: 10px;
}
.app_explain p{
  font-size:14px;
  line-height: 2em;
}

.app_explain_log .img01{
  position:absolute;
  left:10px;
  width:280px;
  z-index:1;
}

.app_explain_log .img02{
  position:absolute;
  right:10px;
  width:240px;
  z-index:2;
  top:140px;
}

.app_explain_log p{
  position:absolute;
  top:340px;
  left:10px;
}

.app_explain_story{
  height:500px;
  position: relative;
    padding-bottom:100px;
}

.app_explain_story h3{
  font-size:25px;
  position:absolute;
  left:20px;
  line-height: 1.5em;
  letter-spacing: .3em;
  z-index: 3;
  font-weight:bold;
  top: 10px;
}

.app_explain_story .img03{
  position:absolute;
  right:10px;
  width:300px;
  z-index:1;
}

.app_explain_story p{
  position:absolute;
  top:300px;
  left:10px;
}



.app_explain_sound{
  height:500px;
  position: relative;
    padding-bottom:100px;
}
.app_explain_sound h3{
  font-size:25px;
  position:absolute;
  right:20px;
  line-height: 1.5em;
  letter-spacing: .3em;
  z-index: 3;
  font-weight:bold;
  top: 10px;
}

.app_explain_sound .img04{
  position:absolute;
  left:10px;
  width:280px;
  z-index:1;
}

.app_explain_sound .img05{
  position:absolute;
  right:10px;
  width:240px;
  z-index:2;
  top:140px;
}

.app_explain_sound p{
  position:absolute;
  top:340px;
  left:10px;
}

.community{
  color:#fff;
  background:rgba(0,0,0,0.4);
  padding:100px 10px;
  box-sizing: border-box;
  font-size: 14px;
}

.community::before {
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100vw;
    height:100vh;
    background:url("assets/community_bg_sp.png") no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
    background-position:bottom;
    content:"";
}


.community .community_logo{
 text-align: center;
 width:100%;
}
.community .community_logo p{
  font-size:14px;
  line-height: 2em;
}

.community .community_logo h2{
  font-size:20px;
  text-align: center;
  width:100%;
  font-weight: bold;
    letter-spacing: 0em;
}
.community .community_point{
    text-align: center;
}

.community .community_point p{
  font-size:14px;
  line-height: 2em;
  padding-top:10px;
}

.community .community_logo img{
 padding:10px 0 30px 0;
}

.community .community_point{
  padding:50px 0;
}

.community_join_btn{
  width: 100%;
    height: 150px;
    margin: 0 auto;
    background-image: url(assets/community_btn.png);
    display: inline-block;
    z-index: 10000;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.community_text{
  text-align: center;
  font-size: 12px;
}


.community .community_point .callout{
  width:70px;
  position: relative;
  top: -40px;
  left: 20px;
}

.community .community_point .point_icon{
  height:30px;
  position: relative;
  top: -13px;
}
.community h3{
  font-size:25px;
  font-weight: bold;
  text-align: center;
  position: relative;
  right:20px;
}

.community_points{
  margin-top:50px;
}


.faq{
  color:#fff;
  font-weight: bold;
  font-size:14px;
  width: 100%;
  height:1000px;
  padding:50px 10px;
  box-sizing: border-box;
  background-image:url("assets/faq_bg_sp.png");
  background-size:cover;
  background-repeat:no-repeat;
}

.faq h2{
  font-size:30px;
  margin-bottom:50px;
  font-weight: bold;
}

.faq .qa{
  line-height:2em;
  margin-bottom:20px;
}

footer{
  background:#000;
  padding-bottom:20px;
}

footer .logo{
  width:100%;
  text-align: center;
  padding:30px 0;
}

footer p{
  color: #fff;
  text-align: center;
}
footer a{
  text-decoration: none;
  display: inline-block;
}

footer .links{
  width: 100%;
  padding-top:50px;
  text-align: center;
}

footer .links p {
    display: inline-block;
    float: left;
    font-size: 10px;
    text-align: center;
    margin-right: 10px;
}
footer .links a{
  display: inline-block;
}

footer .content{
  width: 306px;
      margin: 0 auto;
}

footer .copyright{
  font-size:10px;
  margin-top:20px;
}

.fixedBtn{
  bottom: 0;
  position: fixed;
  z-index: 1000;
  text-align: right;
  width: 100%;
}

#rules main .content{
  width:100%;
  margin:0 auto;
  padding:100px 10px;
  box-sizing: border-box;
}

@media screen and (min-width:768px) and ( max-width:1024px) {

  .fixedBtn{
    bottom: 0;
    position: fixed;
    z-index: 1000;
    text-align: right;
    width: 250px;
    right: 10px;
  }


  .pc{
   display:block;
  }

  .sp{
    display: none;
  }

  .content{
    width:700px;
    margin:0 auto;
  }

  .top_view{
    background-image: url("assets/mv.png");
    background-position:right;;
    background-repeat: no-repeat;
    background-size:cover;
    height:100vh;
  }

  .top_view .logo{
    padding-top:15vh;
  }

  .top_view .logo img{
    width:500px;
  }

  .top_view .app_catchphrase p {
    color: #fff;
    text-align: right;
    font-size: 50px;
    position: absolute;
    top: 35vh;
    left: 10vw;
    letter-spacing: 0.15em;
    font-weight: bold;
  }

  .top_view .app_catchphrase p:after {
    margin: 0 1rem;
    content: "";
    width: 2px;
    height: 100px;
    background-color: #fff;
    position: absolute;
    left: 18px;
    bottom: -110px;
}

.second_view .release_catchphrase {
    padding-top: 200px;
}
  .second_view .creator {
      text-align: right;
      width: 200px;
      float: right;
  }

  .second_view_content .creators{
    width: 100%;
  }


  .teaser_movie{
    width: 100%;
    height:700px;
  }

  .app_explain_all h2 {
      font-size: 50px;
      margin-bottom: 50px;
  }

  .app_explain_log .img01{
    position:absolute;
    left:10px;
    width:600px;
    z-index:1;
  }

  .app_explain_log .img02{
    position:absolute;
    right:10px;
    width:450px;
    z-index:2;
    top: 220px;
  }

  .app_explain_log h3{
    font-size:40px;
    position:absolute;
    right:20px;
    line-height: 1.5em;
    letter-spacing: .3em;
    z-index: 3;
    font-weight:bold;
    top: 10px;
  }
  .app_explain_log p {
    position: absolute;
    top: 370px;
    left: 10px;
    width: 500px;
    z-index:4;
}

.app_explain_story .img03 {
    position: absolute;
    right: 10px;
    width: 600px;
    z-index: 1;
}

.app_explain_story h3 {
    font-size: 40px;
    position: absolute;
    left: 20px;
    line-height: 1.5em;
    letter-spacing: .3em;
    z-index: 3;
    font-weight: bold;
    top: 10px;
}

.app_explain_story p {
    position: absolute;
    top: 400px;
    left: 10px;
    z-index:4;
}

.app_explain_sound .img04 {
    position: absolute;
    left: 10px;
    width: 600px;
    z-index: 1;
}

.app_explain_sound .img05 {
    position: absolute;
    right: 10px;
    width: 450px;
    z-index: 2;
    top: 220px;
}

.app_explain_sound h3 {
    font-size: 40px;
    position: absolute;
    right: 20px;
    line-height: 1.5em;
    letter-spacing: .3em;
    z-index: 3;
    font-weight: bold;
    top: 10px;
}

.app_explain_sound p {
    position: absolute;
    top: 370px;
    left: 10px;
    z-index:4;
}

.second_view .sns_follow p{
  font-size:14px;
}
.community{
  color:#fff;
  background:rgba(0,0,0,0.4);
  padding:100px 10px;
  box-sizing: border-box;
  font-size: 14px;
}

.community::before {
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100vw;
    height:100vh;
    background:url("assets/community_bg_sp.png") no-repeat;
    -webkit-background-size:cover;
    background-position:bottom;
    background-size:cover;
    content:"";
}

.community .content{
  width:500px;
  margin:0 auto;
}


.community .community_logo{
 text-align: center;
 width:100%;
}

.community .community_logo h2{
  font-size:20px;
  text-align: center;
  width:100%;
  font-weight: bold;
    letter-spacing: 0em;
}
.community .community_point{
    text-align: center;
}

.community .community_point p{
  font-size:14px;
  line-height: 2em;
  padding-top:10px;
}

.community .community_logo img{
 padding:10px 0 30px 0;
}

.community .community_point{
  padding:50px 0;
}

.community_join_btn{
  width: 100%;
    height: 150px;
    margin: 0 auto;
    background-image: url(assets/community_btn.png);
    display: inline-block;
    z-index: 10000;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.community_text{
  text-align: center;
  font-size: 12px;
}


.community .community_point .callout{
  width:70px;
  position: relative;
  top: -40px;
  left: 20px;
}

.community .community_point .point_icon{
  height:30px;
  position: relative;
  top: -13px;
}
.community h3{
  font-size:25px;
  font-weight: bold;
  text-align: center;
  position: relative;
  right:20px;
}

.community_points{
  margin-top:50px;
}


.faq{
  color:#fff;
  font-weight: bold;
  font-size:14px;
  width: 100%;
  height:650px;
  padding:50px 10px;
  box-sizing: border-box;
  background-image:url("assets/faq_bg.png");
  background-size:cover;
  background-repeat:no-repeat;
}


.globalMenu{
  position: absolute;
  top: 20px;
  width: 100%;
  right: 20px;
}

.globalMenu li{
  width:140px;
  float:right;
  text-align: center;
}

.globalMenu .menu{
  color:#fff;
  text-decoration: none;
  position: relative;
  top:20px
}

.sns_follow {
    text-align: center;
    width: 400px;
}

.sns_follow p{
  font-size:14px;
  color:#fff;
  text-align: center;
}



footer{
  background:#000;
  padding-bottom:20px;
}

#rules main .content{
  width:700px;
  margin:0 auto;
  padding:100px 0;

}


}

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

  .pc{
   display:block;
  }
  .sp{
    display: none;
  }

  .content{
    width:1000px;
    margin:0 auto;
  }



  .top_view{
    background-image: url("assets/mv.png");
    background-position:bottom;
    background-repeat: no-repeat;
    background-size:cover;
    height:100vh;
  }

  .top_view .logo{
    padding-top:15vh;
  }

  .top_view .logo img{
    width:500px;
  }

  .top_view .app_catchphrase p {
    color: #fff;
    text-align: right;
    font-size: 50px;
    position: absolute;
    top: 35vh;
    left: 10vw;
    letter-spacing: 0.15em;
    font-weight: bold;
  }

  .top_view .app_catchphrase p:after {
    margin: 0 1rem;
    content: "";
    width: 2px;
    height: 100px;
    background-color: #fff;
    position: absolute;
    left: 18px;
    bottom: -110px;
}

.second_view .release_catchphrase {
    padding-top: 200px;
}
  .second_view .creator {
      text-align: right;
      width: 200px;
      float: right;
  }

  .second_view_content .{
    width: 100%;
  }
  .second_view h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom:70px;
}


  .teaser_movie{
    width: 100%;
    height:700px;
  }

  .app_explain_all h2 {
      font-size: 50px;
      margin-bottom: 50px;
  }

  .app_explain_log .img01{
    position:absolute;
    left:10px;
    width:600px;
    z-index:1;
  }

  .app_explain_log .img02{
    position:absolute;
    right:10px;
    width:450px;
    z-index:2;
    top: 220px;
  }

  .app_explain_log h3{
    font-size:40px;
    position:absolute;
    right:20px;
    line-height: 1.5em;
    letter-spacing: .3em;
    z-index: 3;
    font-weight:bold;
    top: 10px;
  }
  .app_explain_log p {
    position: absolute;
    top: 370px;
    left: 10px;
    width: 500px;
}

.app_explain_story .img03 {
    position: absolute;
    right: 10px;
    width: 600px;
    z-index: 1;
}

.app_explain_story h3 {
    font-size: 40px;
    position: absolute;
    left: 20px;
    line-height: 1.5em;
    letter-spacing: .3em;
    z-index: 3;
    font-weight: bold;
    top: 10px;
}

.app_explain_story p {
    position: absolute;
    top: 400px;
    left: 10px;
}

.app_explain_sound .img04 {
    position: absolute;
    left: 10px;
    width: 600px;
    z-index: 1;
}

.app_explain_sound .img05 {
    position: absolute;
    right: 10px;
    width: 450px;
    z-index: 2;
    top: 220px;
}

.app_explain_sound h3 {
    font-size: 40px;
    position: absolute;
    right: 20px;
    line-height: 1.5em;
    letter-spacing: .3em;
    z-index: 3;
    font-weight: bold;
    top: 10px;
}

.app_explain_sound p {
    position: absolute;
    top: 370px;
    left: 10px;
}


.second_view .sns_follow p{
  font-size:14px;
}

.community {
    width:100vw;
    height:1000px;
    background:url("assets/community_bg.png") no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
}


.community::before {
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:0vw;
    height:0vh;
    background:none;
    -webkit-background-size:cover;
    background-size:cover;
    background-position:bottom;
    content:"";
}



.community_join_btn {
    width: 100%;
    height: 150px;
    margin: 20px auto 0 auto;
    background-image: url(assets/community_btn.png);
    display: inline-block;
    z-index: 10000;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.community .community_logo p{
  font-size:14px;
  line-height: 2em;
}

.community_points{
  width:50%;
    height: 580px;
  float:left;
}
.community_point{
  float:left;
}

.community .community_logo {
    text-align: left;
    width: 50%;
    float: left;
    height: 580px;
    padding: 40px 50px 0 0;
    box-sizing: border-box;
}

.community .community_logo h2 {
    font-size: 20px;
    text-align: left;
    width: 100%;
    font-weight: bold;
    letter-spacing: 0em;
}

.community .community_point {
    text-align: left;
    padding: 0 0 50px 0;

}

.faq{
  color:#fff;
  font-weight: bold;
  font-size:14px;
  width: 100%;
  height:650px;
  padding:50px 10px;
  box-sizing: border-box;
  background-image:url("assets/faq_bg.png");
  background-size:cover;
  background-repeat:no-repeat;
}

.globalMenu{
  position: absolute;
  top: 20px;
  width: 100%;
  right: 20px;
}

.globalMenu li{
  width:140px;
  float:right;
  text-align: center;
}

.globalMenu .menu{
  color:#fff;
  text-decoration: none;
  position: relative;
  top:20px
}

.sns_follow {
    text-align: center;
    width: 400px;
}

.sns_follow p{
  font-size:14px;
  color:#fff;
  text-align: center;
}



footer{
  background:#000;
  padding-bottom:20px;
}

.fixedBtn{
  bottom: 0;
  position: fixed;
  z-index: 1000;
  text-align: right;
  width: 250px;
  right: 10px;
}

.community .community_point .callout{
  width:100px;
  position: relative;
  top: -40px;
  left: 20px;
}

.community .community_point .point_icon{
  height:40px;
  position: relative;
  top: -13px;
}
.community h3{
  font-size:30px;
  font-weight: bold;
  position: relative;
  text-align: left;
  top: 20px;
  right: 80px;
}
.community .community_logo img{
 padding:10px 0 30px 0;
 width:380px;
}

.community .community_point p {
    font-size: 14px;
    line-height: 2em;
    padding-bottom: 20px;
}
.community_points {
    width: 50%;
    height: 580px;
    float: left;
    right: -50px;
    position: relative;
}

.community .community_logo h2 {
    font-size: 20px;
    text-align: left;
    width: 100%;
    font-weight: bold;
    letter-spacing: 0em;
}




#rules main .content{
  width:1000px;
  margin:0 auto;
  padding:100px 0;

}


}
