@charset "UTF-8";

/* ------------------------------------------------
 * base
 * ------------------------------------------------ */

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 18px;
    text-align: justify;
    width: 100%;
    color: #666;
  /*min-width: 720px;*/
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  vertical-align: middle;
}

.pc-none {
    display: none;   
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

#pagetop a {
  display: block;
  line-height: 70px;
  text-align: center;
}

#pagetop span {
  color: #8F6EF4;
  font-size: 15px;
  font-weight: bold;
}

.__flexContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.txt-s {
  font-size: 0.9em;
}

.txt-ss {
  font-size: 0.8em;
}

.btnWrap {
  width: 100%;
  margin: 15px 0;
}

.btnWrap button {
  display: block;
  position: relative;
  width: 50%;
  max-width: 360px;
  min-width: 320px;
  background: #FFF;
  border: 5px solid #000;
  border-radius: 28px;
  margin: 0 auto;
  text-align: center;
  padding: 8px;
}

.btnWrap button:hover {
  background: yellow;
  transition: background 0.6s;
}

.btnWrap button a {
  color: #000;
  font-size: 1.3em;
  font-weight: 900;
}

.btnWrap button a::after {
  position: absolute;
  top: 0.9em;
  right: 24px;
  display: block;
  width: 5px;
  height: 5px;
  content: '';
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
  transform: rotate(-45deg);
}

.notice {
    text-align: center;
}
.notice h2 {
    background-color: orange;
    padding: 8px 0;
}
.notice p {
    padding: 12px;
}


/* ------------------------------------------------
 * header, footer, BG
 * ------------------------------------------------ */

header {
  position: relative;
  background-image: url("../img/logo.png"), url("../img/bg.png");
  background-size: 40% auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: right 3% top 10%, bottom 20% center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  max-height: 800px;
}

.headerInner {
  width: 100%;
 /*height: 100vh;*/
}

.toplogo {
  padding: 8px 0 0 6px;
}

.toplogo img {
  width: 90%;
  max-width: 240px;
}

.logo {
  height: 100%;
}

.headerContents_menu {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 30;
}

.headerContents_menu_inner-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 600px;
}

.headerContents_menu_inner-ul li {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 240px;
}

.headerContents_menu_inner-ul li img {
  width: 100%;
}
.headerContents_menu_inner-ul li  {
  margin: 8px;
}

.headerContents_menu ul li .active {
	position: absolute;
	top:0;
	left: 0;
	opacity: 0;
	transition: opacity 0.2s ease;
}
.headerContents_menu ul li:hover .active {
	opacity: 1;
}

.headerContents_menu ul li img {
  width: 100%;
}

.headerContents_main {
  position: absolute;
  top: -40px;
  right: 5%;
  z-index: 10;
  text-align: right;
}

.headerContents_main img {
  width: 70%;
  min-width: 500px;
  max-width: 1080px;
}

.headerContents_news {
  background-color: #FFF;
  border-top: 3px solid #04BBC5;
  border-bottom: 3px solid #04BBC5;
  padding: 12px;
  text-align: center;
}

.headerContents_news-title {
  display: inline-block;
  font-size: 1.2em;
  font-weight: bold;
  background: #FFF;
  color: #000;
  margin: 0 auto;
  padding: 2px 40px;
  margin-right: 24px;
}

.headerContents_news-jo, .headerContents_news-date, .headerContents_news-racetitle {
  display: inline-block;
  font-size: 1.0em;
  font-weight: bold;
  color: #04BBC5;
}

.headerContents_news-jo {
  margin-right: 24px;
}

footer {
  width: 100%;
}

.footerLink {
  background-color: #222;
  text-align: center;
  padding: 20px 12px;
}

.footerLink li {
  display: inline-block;
  margin: 0 12px;
  width: 140px;
  height: 45px;
  background-color: #FFF;
}

.copyright {
  background-color: #000;
  color: #FFF;
  text-align: center;
  padding: 16px 0;
}

/*
.bg_schedule {
  background-color: #02C3C0;
  background-image: url("../img/bg_ebisu.png"), url("../img/bg-title_schedule.png");
  background-size: 40% auto, 40% auto;
  background-repeat: no-repeat;
  background-position: right -180px bottom -100px, left 20% top 5%;
  border-bottom: 8px solid #000;
}*/

.contents {
  width: 100%;
  padding: 60px 0;
}

.scheduleArea, .raceArea, .appArea, .gameArea, .joArea, .youtubeArea {
  width: 90%;
  max-width: 1080px;
  padding-top: 10%;
  margin: 0 auto;
}

/* BG */

.bg_race {
    background-color: #02C3C0;
    background-image: url(../img/bg-title_race.png),repeating-linear-gradient(-45deg, #33E5D8 0, #33E5D8 15%, #02C3C0 0, #02C3C0 85%);
    background-size: 60% auto, 100% auto;
    background-repeat: no-repeat,repeat;
    background-position: left 20% top 5%, left 0 center;
}

.bg_youtube {
    background-color: #8F6EF4;
    background-image: url(../img/bg-title_youtube.png),repeating-linear-gradient(-45deg, #B970F2 0, #B970F2 15%, #8F6EF4 0, #8F6EF4 85%);
    background-size: 60% auto, 100% auto;
    background-repeat: no-repeat,repeat;
    background-position: left 20% top 5%, left 0 center;
}

.bg_app {
    background-color: #02C3C0;
    background-image: url(../img/bg-title_app.png),repeating-linear-gradient(-45deg, #33E5D8 0, #33E5D8 15%, #02C3C0 0, #02C3C0 85%);
    background-size: 60% auto, 100% auto;
    background-repeat: no-repeat,repeat;
    background-position: left 20% top 5%, left 0 center;
}

.bg_game {
    background-color: #8F6EF4;
    background-image: url(../img/bg-title_game.png),repeating-linear-gradient(-45deg, #B970F2 0, #B970F2 15%, #8F6EF4 0, #8F6EF4 85%);
    background-size: 60% auto, 100% auto;
    background-repeat: no-repeat,repeat;
    background-position: left 20% top 5%, left 0 center;
}

/* ------------------------------------------------
 * 開催スケジュール
 * ------------------------------------------------ */

.scheduleArea_2021 {
  background-color: #000;
  border: 5px solid #FFF;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.scheduleArea_2021:before {
  display: block;
  content: "2021年";
  background-color: #FFF;
  color: #000;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 24px;
}

.scheduleArea_2021 li {
  margin-bottom: 32px;
}

.scheduleArea_2021 li span {
  display: block;
}

.schedule_jo {
  font-size: 1.2em;
  color: #FFF;
}

.schedule_date {
  font-size: 1.7em;
  color: #FFF;
  font-weight: bold;
}


/* ------------------------------------------------
 *レース展望
 * ------------------------------------------------ */
.tenboWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.tenboWrap_img {
  width: 40%;
}

.tenboWrap_txt {
  width: 60%;
  padding: 0 40px 0 40px;
}

.tenboWrap_img img {
  width: 100%;
  border: 6px solid #FFF;
}

.tenbo_txt {
  display: block;
  color: #FFF;
  font-weight: bold;
}

.tenbo_title {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 24px;
}

.tenbo_title span {
  font-size: 2.3em;
  color: #8F6EF4;
  font-weight: bold;
  background:#FFF;
  padding: 0 0.5em;
}

.tenbo_txt {
  font-size: 1.2em;
  padding: 12px;
}


/* ------------------------------------------------
 *アプリ
 * ------------------------------------------------ */

.appArea {
    max-width: 1280px;
}
.appArea h3 {
  font-size: 3em;
  line-height: 1.25em;
  font-weight: 900;
  color: #FFF;
    margin-top: 40px;
}

.appArea time {
  background: #FFF;
  display: inline-block;
  font-size: 1.4em;
  font-weight: 700;
  color: #02C3C0;
  padding: 8px 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.appArea time span {
  margin-right: 24px;
}

.appWrap {
    align-items:flex-start;
}

.appWrap_item {
  width: 50%;
  text-align: center;
}
.appWrap_item img{
  width: 100%;
  margin-top: 20px;
}
.appWrap_goods {
  width: 50%;
}
.appWrap_goods img{
width: 100%;
}

/* ------------------------------------------------
 *6連単
 * ------------------------------------------------ */


.gameArea {
  text-align: center;
}

.gameArea h3 {
  font-size: 3em;
  line-height: 1.25em;
  font-weight: 900;
  color: #FFF;
  text-align: left;
}

.gameArea p {
  position: relative;
  background: #FFF;
  display: inline-block;
  width: 60%;
  font-size: 1.1em;
  font-weight: 700;
  color: #333;
  border: 6px solid #8258FA;
  box-shadow: 6px 6px 0px 0px #18005c;
  padding: 24px;
  margin:0 auto;
  margin-top: 60px;
  margin-bottom: 12px;
}

.gameArea p span {
  display: block;
  color: #8258FA;
  font-size: 1.4em;
  font-weight: 900;
  margin-bottom: 12px;
  text-align: center;
}

.gameArea_item-img {
  position: absolute;
    top: -40%;
    right: -5%;
    width: 25%;
}

.gameWrap {
  margin-bottom: 40px;
}

.gameWrap_item {
  width: 100%;
}

.gameWrap_goods {
  width: 30%;
}


/* ------------------------------------------------
 *Youtube
 * ------------------------------------------------ */

.youtubeArea h3 {
  font-size: 2.7em;
  line-height: 1.25em;
  font-weight: 900;
  color: #FFF;
}

.youtubeArea p {
  position: relative;
  background: #FFF;
  display: inline-block;
  font-size: 1.1em;
  font-weight: 700;
  color: #333;
  border: 6px solid #000;
  box-shadow: 6px 6px 0px 0px #18005c;
  padding: 24px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.youtubeArea p span {
  display: block;
  color: #E53838;
  font-size: 1.4em;
  font-weight: 900;
  text-align: center;
}

.youtubeArea_item-img {
  position: absolute;
  top: -70px;
  right: -10px;
  width: 25%;
}

.youtubeWrap {
  margin-bottom: 40px;
}

.youtubeWrap_item {
  width: 60%;
}

.youtubeWrap_goods {
  width: 40%;
}
.youtubeWrap_goods img {
  width: 100%;
}
.youtubeWrap_goods figcaption {
  color: #FFF;
  text-align: center;
}

  .appArea h3, .gameArea h3, .youtubeArea h3 {
  text-align: left;
  }
  
.header_sticker {
    padding: 1em 0 0 1em;
}
.header_sticker img {
    width: 25%;
     max-width: 320px;
     min-width: 120px;
}



/*------------------------------------------------------------------------------------------------------------------------------------------------------------ */
@media screen and (max-width: 1280px) {
    .pc-none {
        display: none;   
    }

header {
  position: relative;
  background-image: url("../img/logo.png"), url("../img/bg.png");
  background-size: 60% auto, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: right 3% top 10%, bottom 20% center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 720px;
}

.headerContents_menu_inner-ul {
  max-width: 640px;
}
.headerContents_menu_inner-ul li {
  width: 100%;
  max-width: 220px;
}
}

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

@media screen and (max-width: 1024px) {
    .pc-none {
        display: none;   
    }
    
  .__flexContainer {
    display: block;
    !important
  }
  .contents {
    width: 100%;
    padding: 0;
  }
  .btnWrap button a {
    font-size: 1.5em;
  }
  .scheduleArea, .raceArea, .appArea, .gameArea, .youtubeArea {
    width: 100%;
    max-width: 1080px;
    padding-top: 20%;
    padding-bottom: 40px;
    margin: 0 auto;
    text-align: center;
  }
 
 /* BG */
.bg_race {
    background-color: #02C3C0;
    background-image: url(../img/bg-title_race.png),repeating-linear-gradient(-45deg, #33E5D8 0, #33E5D8 15%, #02C3C0 0, #02C3C0 85%);
    background-size: 95% auto, 100% auto;
    background-repeat: no-repeat,repeat;
    background-position: left 20% top 1%, left 0 center;
}

.bg_youtube {
    background-color: #8F6EF4;
    background-image: url(../img/bg-title_youtube.png),repeating-linear-gradient(-45deg, #B970F2 0, #B970F2 15%, #8F6EF4 0, #8F6EF4 85%);
    background-size:95% auto, 100% auto;
    background-repeat: no-repeat,repeat;
    background-position: left 20% top 1%, left 0 center;
}

.bg_app {
    background-color: #02C3C0;
    background-image: url(../img/bg-title_app.png),repeating-linear-gradient(-45deg, #33E5D8 0, #33E5D8 10%, #02C3C0 0, #02C3C0 90%);
    background-size: 95% auto, 100% auto;
    background-repeat: no-repeat,repeat;
    background-position: left 20% top 1%, left 0 center;
}

.bg_game {
    background-color: #8F6EF4;
    background-image: url(../img/bg-title_game.png),repeating-linear-gradient(-45deg, #B970F2 0, #B970F2 18%, #8F6EF4 0, #8F6EF4 82%);
    background-size: 95% auto, 100% auto;
    background-repeat: no-repeat,repeat;
    background-position: left 20% top 1%, left 0 center;
}


   header {
    position: relative;
    background-image: url("../img/logo.png"), url("../img/bg-sp.png");
    background-size: 70% auto,100% auto;
    background-repeat: no-repeat, no-repeat;
    background-position: right 10% top 3%, left 0 bottom 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 480px;
    max-height: 720px;
  }
 
  .headerContents_main {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: -10%;
    right: 3%;
    z-index: 10;
    text-align: right;
  }

  .headerContents_menu {
    position: absolute;
    width: 100%;
    bottom: 2%;
    left: 0;
  }
  .headerContents_menu ul {
    text-align: center;
  }
  /*.headerContents_menu_sp {
    z-index: 2;
    margin-bottom: 8px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .headerContents_menu ul li img {
    width: 100%;
  }*/
  
.headerContents_menu_inner-ul {
width: 100%;
  max-width: 1023px;
}
.headerContents_menu_sp li {
  width: 100%;
  max-width: 220px;
  margin 4px;
}

  .headerContents_news {
    background-color: #FFF;
    border-top: 3px solid #04BBC5;
    border-bottom: 3px solid #04BBC5;
    padding: 12px;
    text-align: center;
  }
  .headerContents_news-title {
    display: block;
    font-size: 1.0em;
    font-weight: bold;
    background: #FFF;
    color: #000;
    margin: 0 auto;
    margin-bottom: 8px;
  }
  .headerContents_news p span {
    display: inline-block;
    font-size: 1.0em;
    font-weight: bold;
    color: #04BBC5;
  }
  .headerContents_news-jo {
    margin-right: 0;
  }

  .scheduleArea_2021 {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .schedule_jo {
    font-size: 1.0em;
    color: #FFF;
  }
  .schedule_date {
    font-size: 1.2em;
    color: #FFF;
    font-weight: bold;
  }
  .tenboWrap {
    display: block;
    !important margin-bottom: 10px;
  }
  .tenboWrap_img {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .tenboWrap_img img {
    width: 90%;
    max-width: 480px;
    border: 6px solid #FFF;
  }
  .tenboWrap_txt {
    width: 95%;
    padding: 0;
    margin: 0 auto;
  }
  .tenbo_title {
    width: 85%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 24px;
  }
  .tenbo_title span {
    font-size: 1.6em;
  }
  .tenbo_txt {
    font-size: 1em;
    padding: 0;
    text-align: left;
  }
  /* アプリ */
  .appArea h3 {
    font-size: 3em;
    line-height: 1.25em;
    font-weight: 900;
    color: #FFF;
  }
  .appArea time {
    background: #FFF;
    display: block;
    font-size: 1.0em;
    font-weight: 900;
    color: #02C3C0;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .appArea time span {
    display: block;
    margin-right: 0;
  }
  .appWrap_item {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 24px;
  }
  .appWrap_goods {
    width: 90%;
    margin: 0 auto;
  }
  .appWrap_item figure picture img {
    width: 100%;
  }
  /* 6連単 */
  .gameArea h3 {
    font-size: 1.8em;
    line-height: 1.25em;
    font-weight: 900;
    color: #FFF;
  }
  .gameArea p {
    background: #FFF;
    display: inline-block;
    font-size: 1.0em;
    font-weight: 700;
    color: #333;
      width: 80%;
    border: 6px solid #8258FA;
    box-shadow: 6px 6px 0px 0px #18005c;
    padding: 12px;
    margin-top: 32px;
    margin-bottom: 24px;
    text-align: left;
  }
  .gameArea p span {
    display: block;
    color: #8258FA;
    font-size: 1.3em;
    margin-bottom: 24px;
    text-align: center;
  }
  .gameWrap {
    margin-bottom: 40px;
  }
  .gameWrap_item {
    width: 90%;
    margin: 0 auto;
  }
  .gameWrap_goods {
    width: 90%;
    margin: 0 auto;
  }
  .gameArea_item-img {
    width: 20%;
    max-width: 120px;
  }
  /* Youtube */
  .youtubeArea h3 {
    font-size: 1.8em;
    line-height: 1.25em;
    font-weight: 900;
    color: #FFF;
  }
  .youtubeArea time {
    background: #FFF;
    display: block;
    font-size: 1.0em;
    font-weight: 900;
    color: #02C3C0;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .youtubeArea time span {
    display: block;
    margin-right: 0;
  }
  .youtubeWrap_item {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 24px;
  }
  .youtubeWrap_goods {
    width: 90%;
    margin: 0 auto;
  }
  .youtubeArea p {
    background: #FFF;
    display: inline-block;
    font-size: 1.0em;
    font-weight: 700;
    color: #333;
      width: 70%;
    border: 6px solid #000;
    box-shadow: 6px 6px 0px 0px #000;
    padding: 12px;
    margin-top: 32px;
    margin-bottom: 24px;
    text-align: left;
  }
  .youtubeArea p span {
    display: block;
    color: #E53838;
    font-size: 1.3em;
    text-align: center;
  }
  .youtubeWrap_goods img {
  width: 70%;
}
}


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

@media screen and (max-width: 680px) {
.globalnav-wrap {
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 5px solid #FFF;
}
    .pc-none {
        display: block;   
    }

   header {
    position: relative;
    background-image: url("../img/logo.png"), url("../img/bg-sp.png");
    background-size: 70% auto, 100% auto;
    background-repeat: no-repeat, no-repeat;
    background-position: right 10% top 3%, left bottom;
    overflow: hidden;
    width: 100%;
    height: 65vh;
    min-height: 400px;
    max-height: 440px;
  }
  .headerContents_news {
    padding-top: 60px;     
}

  .headerContents_menu {
    display: none;
}
  .headerContents_menu ul {
    text-align: center;
  }
  .headerContents_menu_sp {
    width: 100%;
    z-index: 2;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
.headerContents_menu ul li {
margin-bottom: 0;
  }
.headerContents_menu ul li img {
width: 95%;
  }
  .headerContents_news {
    background-color: #FFF;
    border-top: 3px solid #04BBC5;
    border-bottom: 3px solid #04BBC5;
    padding: 55px 12px 12px 12px;
    text-align: center;
  }
  .headerContents_news-title {
    display: block;
    font-size: 0.7em;
    font-weight: bold;
    background: #FFF;
    color: #000;
    margin: 0 auto;
  }
    .headerContents_news p {
line-height: 0.9
  }
  .headerContents_news p span {
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    color: #04BBC5;
  }
  .headerContents_news-jo {
    margin-right: 0;
  }
  .appArea h3, .gameArea h3, .youtubeArea h3 {
    font-size: 1.8em;
  }
  
  .gameArea_item-img {
   display: none;
  }

.pc-none {
    background-color: #ffffff;
    opacity: 1;
    background-image:  linear-gradient(#f3dfff 1px, transparent 1px), linear-gradient(to right, #f3dfff 1px, #ffffff 1px);
    background-size: 16px 16px;
}

.sp-menuArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 600px;
  padding: 12px 0;
}
.sp-menuArea li {
  position: relative;
  z-index: 2;
  width: 44%;
  max-width: 200px;
 margin: 6px 6px;
}
.sp-menuArea li img {
  width: 100%;
  max-width: 220px;
}

.tenbo_title {
    text-align: left;
}


.header_sticker {
    position: absolute;
    bottom: 3%;
    right: -10%;
    padding: 0;
}
.header_sticker img {
    width: 70%;
     max-width: 200px;
     min-width: 120px;
}
}