@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&Noto+Sans+JP:wght@500;700&display=swap');

/* ==============================================================
/*     Reset  
/* ============================================================== */
*{
  box-sizing: border-box;
}
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, em, img, strong, dl, dt, dd, ol, ul, li, footer, header, nav, section{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  vertical-align: baseline;
  background: transparent;
  word-break: break-word;
}
html{
  font-size: 62.5%;
  overflow-x: hidden;
}
body{
  background: #fff;
  color: #000;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

article, aside, footer, header, hgroup, nav, section {
  display: block;
}
ul{
  list-style: none;  
}
input, select{
  border: none;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  outline: none;
}

/* ==============================================================
/*     BASE
/* ============================================================== */
body{
  color: #000;
}
h2, h3, h4, h5, dt{
  font-weight: bold;
  letter-spacing: 0.1em;
}
p, li, dt, dd{
  font-size: 1.6rem;
  line-height: 1.8;
}
th, td{
  font-size: 1.5rem;
  line-height: 1.6;
}
p{
  margin-bottom: 1em;
}
.cTxt{ text-align: center}
.rTxt{ text-align: right}
.sTxt{ font-size: 1.3rem}
.fPC{ display: none}

a, a:visited{
  text-decoration: none;
}
img{
  vertical-align: bottom;
}
@media screen and (max-width:999px){
  .imgSP100{
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width:1000px){
  body{
    padding-left: 300px;
  }
  p, li, dt, dd, th, td{
    font-size: 1.7rem;
    line-height: 2;
  }
  .fSP{ display: none}
  .fPC{ display: inline-block}
  .sTxt{ font-size: 1.5rem}
  a{
    transition: 0.2s;
  }
  a:hover{
    transition: 0.2s;
    opacity: 0.7;
  }
}

/* ==============================================================
/*     Header
/* ============================================================== */

header{
  width: 100%;
  background: #b3001a;
  text-align: center;
}

@media screen and (max-width:999px){
  .local{
    padding-top: 88px;
  }
  .local header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 7777;
    text-align: left;
  }
  .local header img{
    width: calc(100% - 55px);
    height: auto;
  }
}
@media screen and (min-width:1000px){
  #top header{
    max-width: 900px;
    margin: 0 auto;
  }
  .local header{
    position: relative;
  }
  .local header img{
    position: relative;
  }
  .local header::before{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #18539e;
    content: "";
    z-index: 0;
  }
}

/* ==============================================================
/*     MENU
/* ============================================================== */
.menuBtn, .menuBtn span{
  display: inline-block;
  transition: all .3s;
}
.menuBtn{
  position: fixed;
  top: 25px;
  right: 10px;
  width: 45px;
  height: 45px;
  background: #000;
  border: none;
  appearance: none;
  z-index: 9999;
}
.menuBtn span {
  position: absolute;
  left: 10px;
  width: 25px;
  height: 2px;
  background-color: #fff;
}
.menuBtn span:nth-of-type(1){
  top: 18px;
}
.menuBtn span:nth-of-type(2){
  bottom: 18px;
}
.menuBtn.open span:nth-of-type(1){
  transform: translateY(4px) rotate(-45deg);
}
.menuBtn.open span:nth-of-type(2){
  transform: translateY(-4px) rotate(45deg);
}

.blockMenu{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 80px 0 0 15vw;
  background: #000;
  z-index: 8888;
  overflow-y: auto;
}
.liMenu li{
  line-height: 1;
  font-size: 2.2rem;
  position: relative;
  text-transform: uppercase;
}
.liMenu li:not(:last-child){
  margin-bottom: 30px;
}
.liMenu li a{
  color: #fff;
  font-family: "Dela Gothic One", sans-serif;
}
.liMenu_jp{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  color: #8B8B8B;
}
@media screen and (min-width:650px) and (max-width:1000px){
  .blockMenu{
    background-position: 90% 80%;
  }
}
@media screen and (min-width:1000px){
  .menuBtn{
    display: none;
  }
  .blockMenu{
    display: block;
    width: 300px;
    padding: 50px 0 0 50px;
  }
  .liMenu li{
    line-height: 0.9;
  }
  .liMenu li:not(:last-child){
    margin-bottom: 35px;
  }
}

/* ==============================================================
/*     Content & Common
/* ============================================================== */
.container{
  width: 100%;
}
.inner{
  padding: 0 10px;
}

@media screen and (min-width:1000px){
  .inner{
    width: calc(100% - 80px);
    max-width: 840px;
    margin: 0 auto;
    padding: 40px 0;
  }
  #top .inner{
    max-width: 840px;
  }
}

.btn{
  position: relative;
  display: block;
  width: 225px;
  line-height: 55px;
  margin: 20px auto;
  text-align: center;
  color: #000;
  background: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid #000;
}
.btn::after{
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  transform: rotate(45deg);
}
.blockBtn_mtL{
  margin-top: 60px;
}
@media screen and (min-width:1000px){
  .blockBtn{
    text-align: center;
  }
  .btn{
    display: inline-block;
    margin: 20px;
    overflow: hidden;
  }
  .btn::before{
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .btn:hover{
    color: #fff;
    opacity: 0.9;
  }
  .btn:hover::before{
    transform: scale(1, 1);
  }
  .btn:hover::after{
    border-top-color: #fff;
    border-right-color: #fff;
  }
}

/* ==============================================================
/*     TOP
/* ============================================================== */
.blockTopNews{
  padding: 40px 25px 10px;
  background: #A2D7D4;
  border: 1px solid #000;
}
.h2_ttl-en{
  margin-bottom: 30px;
  line-height: 0.75;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 
       1px  2px 0px #000000,
      -1px  1px 0px #000000,
       1px -1px 0px #000000,
      -1px -1px 0px #000000,
       1px  0px 0px #000000,
       0px  1px 0px #000000,
      -1px  0px 0px #000000,
       0px -1px 0px #000000;
}
.dlNews dt, .dlNews dd, .dlNews dd a{
  color: #000;
}
.dlNews dt{
  font-size: 1.4rem;
  font-weight: normal;
}
.dlNews dd{
  margin-bottom: 25px;
  line-height: 1.4;
}
.dlNews dd a{
  text-decoration: underline;
}
@media screen and (min-width:1000px){
  .blockTopNews{
    padding: 50px 60px 40px;
    border-width: 2px;
  }
  .h2_ttl-en{
    margin-bottom: 30px;
    font-size: 4rem;
    text-shadow: 
       2px  2px 0px #000000,
      -2px  2px 0px #000000,
       2px -2px 0px #000000,
      -2px -2px 0px #000000,
       2px  0px 0px #000000,
       0px  2px 0px #000000,
      -2px  0px 0px #000000,
       0px -2px 0px #000000;
  }
}

.liPosts{
  display: flex;
  flex-wrap: wrap;
}
.liPosts_item{
  width: calc(50% - 25px);
  margin-bottom: 50px;
}
.liPosts_item a{
  text-decoration: none;
  color: #000;
}
.liPosts_item:nth-child(2n-1){
  margin-right: 50px;
}
.liPosts_imgBox{
  position: relative;
  margin-bottom: 20px;
}
.liPosts_img{
  width: 100%;
}
.liPosts_imgBox .labelCat{
  position: absolute;
  right: -10px;
  bottom: -17px;
  padding: 3px 15px;
  color: #fff;
  background: #000;
}
.liPosts_imgBox .labelCat_inner{
  font-size: 15px;
}
.liPosts_date{
  font-size: 14px;
  color: #3b3b3b;
}
.liPosts_ttl{
  margin: 10px 0;
  font-size: 18px;
  font-weight: 700;
}
.liPosts_hashtag{
  font-size: 14px;
  color: #6e6e6e;
}
.liPosts + .btn{
  margin-top: 25px;
}

.liBns{
  display: flex;
  flex-wrap: wrap;
}
.liBns li{
  width: calc(50% - 7.5px);
  margin-top: 15px;
}
.liBns li:nth-child(2n-1){
  margin-right: 15px;
}
@media screen and (min-width:768px){
  .liBns li{
    width: calc(33.3333% - 20px);
    margin-top: 30px;
    margin-right: 30px !important;
  }
  .liBns li:nth-child(3n){
    margin-right: 0 !important;
  }
}

/* ==============================================================
/*     LOCAL
/* ============================================================== */
.blockH1{
  padding: 40px 0 30px;
}
.blockH1 h1{
  color: #0070C3;
  text-align: center;
  text-shadow:
     3px 3px 0 #000,
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
  font-size: 4rem;
  font-family: "Dela Gothic One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 0.75;
}
.blockH1 span{
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  text-shadow: none;
  color: #000;
  letter-spacing: 0.05em;
}

.blockContent h2, .blockContent h3{
  margin: 40px 0 20px;
  line-height: 1.2;
  color: #fff;
  font-size: 2.4rem;
  text-shadow: 
       1px  1px 0px #000000,
      -1px  1px 0px #000000,
       1px -1px 0px #000000,
      -1px -1px 0px #000000,
       1px  0px 0px #000000,
       0px  1px 0px #000000,
      -1px  0px 0px #000000,
       0px -1px 0px #000000;
}
.blockColor > h2:first-child{
  margin-top: 0;
}
.blockContent h3{
  margin: 20px 0 15px;
  font-size: 2rem;
}
.blockContent h4{
  position: relative;
  margin: 25px 0 15px;
  padding-left: 25px;
  font-size: 1.8rem;
}
.blockContent h4::before{
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 3px;
  background: #000;
}
.blockContent h4 + h3{
  margin-top: 15px;
}

.blockColor{
  margin-bottom: 10px;
  padding: 20px;
  border: 1px solid #000;
}
.bgYl{ background: #FFF775}
.bgPk{ background: #FFDEEC}
.bgBl{ background: #BCDEF5}
.bgGr{ background: #A2D7D4}

.blockContent a:not(.btn){
  color: #000;
  text-decoration: underline;
}

.blockContent dl{
  display: flex;
  flex-wrap: wrap;
}
.blockContent dt{
  width: 125px;
  padding: 0 15px 10px 0;
}
.blockContent dd{
  width: calc(100% - 125px);
  padding-bottom: 10px;
}

.blockContent table{
  width: 100%;
  margin-bottom: 20px;
}
.blockContent th, .blockContent td{
  padding: 8px 5px;
  border: 2px solid transparent;
  line-height: 1.6;
  text-align: center;
}
.blockContent th{
  width: 25%;
  background: #FFF;
  vertical-align: middle;
}
.blockContent td{
  background:rgba(255, 255, 255, 0.5);
}
.blockContent .bgGr{
  background:rgba(255, 255, 255, 0.75);
}
.blockContent .tblLeft td{
  text-align: left;
}

@media screen and (min-width:1000px){
  .blockH1{
    padding: 80px 0 20px;
  }
  .blockH1 h1{
    font-size: 6rem;
    line-height: 0.6;
  }
  .blockH1 span{
    font-size: 2rem;
  }
  .blockContent h2,  .blockContent h3{
    margin: 50px 0 20px;
    font-size: 3.5rem;
    text-shadow: 
       2px  2px 0px #000000,
      -2px  2px 0px #000000,
       2px -2px 0px #000000,
      -2px -2px 0px #000000,
       2px  0px 0px #000000,
       0px  2px 0px #000000,
      -2px  0px 0px #000000,
       0px -2px 0px #000000;
  }
  .blockContent h3{
    margin: 30px 0 20px;
    font-size: 2.6rem;
  }
  .blockContent h4{
    margin: 40px 0 15px;
    padding-left: 30px;
    font-size: 2.2rem;
  }
  .blockContent h4::before{
    top: 10px;
    width: 20px;
  }
  .blockColor{
    margin-bottom: 20px;
    padding: 50px;
    border-width: 2px;
  }

  .blockContent table{
    margin-bottom: 20px;
  }
  .blockContent th, .blockContent td{
    padding: 10px;
  }
}

/* ==============================================================
/*     Race
/* ============================================================== */
@media screen and (max-width:999px){
  .imgR{
    display: block;
    width: 75%;
    height: auto;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    text-align: center;
  }
  .imgR img{
    padding-bottom: 8px;
  }
}
@media screen and (min-width:1000px){
  .imgBox{
    display: flex;
    flex-direction: row-reverse;
  }
  .imgR{
    display: block;
    float: right;
    margin: 0 0 30px 30px;
    font-size: 1.2rem;
    text-align: center;
  }
  .imgBox p{
    width: calc(67% - 30px);
  }
}

/* ==============================================================
/*     Campaign
/* ============================================================== */
.liCampaign li{
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #000;
}
.liCampaign li img{
  width: 100%;
  height: auto;
}

.prize-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
}

.prize-card {
  position: relative;
  padding-top: 32px;
  text-align: center;
  min-width: 0;
}

.prize-rank {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.prize-rank--a {
  background: #e9b83e;
  color: #332000;
}

.prize-rank--b {
  background: #c7c7c7;
  color: #333;
}

.prize-rank--c {
  background: #b87333;
  color: #fff;
}

.prize-rank--d {
  background: #28a745;
  color: #fff;
}

.prize-rank--e {
  background: #d62828;
  color: #fff;
}

.prize-image-wrap {
  overflow: hidden;
  background: #ccc;
}

.prize-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.prize-name {
  margin: 14px 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.prize-name span{
  display: inline-block;
  margin: 10px 0 0;
  padding: 1px 10px 3px;
  font-size: 1.8rem;
  border: 1px solid #333;
  border-radius: 5px;
}

@media screen and (min-width:1000px){
  .liCampaign{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .liCampaign li{
    width: calc(50% - 20px);
    margin-bottom: 40px;
    border-width: 2px;
  }
  .liCampaign li:nth-child(2n){
    margin-left: 40px;
  }
  .prize-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }
}

/* ==============================================================
/*     LIVE
/* ============================================================== */

.liPpl{
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.liPpl li{
  width: calc(50% - 7.5px);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}
.liPpl li:nth-child(2n-1){
  margin-right: 15px;
}
.liPpl img{
  display: inline-block;
  margin-bottom: 5px;
}
iframe{
  margin-bottom: 20px;
}

@media screen and (min-width:768px){
  .liPpl li{
    width: calc(25% - 23px);
    margin-bottom: 30px;
    margin-right: 30px !important;
  }
  .liPpl li:nth-child(4n){
    margin-right: 0 !important;
  }
  iframe{
    height: 500px;
  }
}

/* ==============================================================
/*     FOOTER
/* ============================================================== */
footer{
  position: relative;
  margin-top: 60px;
  background: #E60012;
  text-align: center;
}
footer p{
  margin-bottom: 0;
  line-height: 45px;
  color: #fff;
  font-size: 1rem;
}
