@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-family: "Noto Sans JP", "Albert Sans", Futura, Trebuchet MS, Arial, sans-serif;
}

body {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", "Albert Sans", Futura, Trebuchet MS, Arial, sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: url(../img/bg_body.png) repeat center center/contain;
  margin: 0px;
  padding: 0px;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
main {
  margin-top: 0;
}

p {
  line-height: 1.8;
}

.container-wrap {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.container-wrap.full {
  max-width: 100%;
}

.btn {
  display: inline-block;
  width: 100%;
  min-width: 280px;
  max-width: 280px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .btn {
    min-width: 320px;
    max-width: 320px;
    padding: 14px;
  }
}

/*------------------
 setting
------------------*/
.section-wrap {
  position: relative;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .section-wrap {
    padding: 40px 0;
  }
}
.section-wrap + .section-wrap {
  padding-top: 0;
}

a {
  transition: all 0.2s ease-in;
}
a:hover, a:focus, a:hover img, a:focus img {
  opacity: 0.8;
  transition: all ease 0.25;
}

.shine-box {
  padding: 32px 16px;
  border: 1px solid #FFF;
  background: rgba(8, 8, 8, 0.2);
  box-shadow: 0 0 10px 0 #FFF, 0 0 10px 0 #FFF;
}
@media (min-width: 768px) {
  .shine-box {
    padding: 40px;
  }
}

.shine-line {
  position: relative;
  display: block;
  height: 1px;
  width: 100%;
  flex-grow: 1;
  background-color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .shine-line {
    margin-bottom: 40px;
  }
}
.shine-line::before, .shine-line::after {
  position: absolute;
  top: -20px;
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../img/ttl_deco.png") no-repeat center/contain;
  mix-blend-mode: screen;
}
@media (min-width: 768px) {
  .shine-line::before, .shine-line::after {
    top: -50px;
    width: 100px;
    height: 100px;
  }
}
.shine-line::before {
  left: -20px;
}
@media (min-width: 768px) {
  .shine-line::before {
    left: -50px;
  }
}
.shine-line::after {
  right: -20px;
}
@media (min-width: 768px) {
  .shine-line::after {
    right: -50px;
  }
}

.section-ttl {
  position: relative;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .section-ttl {
    margin-bottom: 40px;
  }
}
.section-ttl::before, .section-ttl::after {
  position: absolute;
  top: -2px;
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../img/ttl_deco.png") no-repeat center/contain;
  mix-blend-mode: screen;
}
@media (min-width: 768px) {
  .section-ttl::before, .section-ttl::after {
    top: -29px;
    width: 100px;
    height: 100px;
  }
}
.section-ttl::before {
  left: -20px;
}
@media (min-width: 768px) {
  .section-ttl::before {
    left: -50px;
  }
}
.section-ttl::after {
  right: -20px;
}
@media (min-width: 768px) {
  .section-ttl::after {
    right: -50px;
  }
}
.section-ttl span {
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .section-ttl span {
    font-size: 28px;
  }
}
.section-ttl span::before, .section-ttl span::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}
.section-ttl span::before {
  margin-right: 12px;
}
@media (min-width: 768px) {
  .section-ttl span::before {
    margin-right: 20px;
  }
}
.section-ttl span::after {
  margin-left: 12px;
}
@media (min-width: 768px) {
  .section-ttl span::after {
    margin-left: 20px;
  }
}

.deco-image.left {
  max-height: 120px;
  width: auto;
}
@media (min-width: 768px) {
  .deco-image.left {
    max-height: 240px;
  }
}

.deco-image.right {
  max-height: 120px;
  width: auto;
}
@media (min-width: 768px) {
  .deco-image.right {
    max-height: 264px;
  }
}

/*------------------
 header
------------------*/
.header {
  background-color: #0A2946;
  transition: padding 0.2s ease, background-color 0.3s ease;
  overflow: visible;
}
.header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background-color: #0A2946;
  z-index: 9999;
}
.header .header-logo img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, height 0.3s ease;
  transform-origin: top left;
}
@media (min-width: 768px) {
  .header .header-logo img {
    height: 48px;
  }
}
.header .header-nav {
  margin-right: calc(50% - 50vw);
}
.header .menu-logo {
  display: none;
}
.header .header-btns .header-btn {
  width: 48px;
  height: 48px;
  font-size: 10px;
}
@media (min-width: 768px) {
  .header .header-btns .header-btn {
    padding: 20px 16px;
    width: auto;
    height: auto;
    font-size: 16px;
  }
}
.header .header-btns .header-btn.btn-live {
  background-color: #101010;
}
.header .header-btns .header-btn.btn-vote {
  font-weight: bold;
  color: #101010;
  background-color: #FFFF01;
}
.header .menu {
  overflow: visible;
}
.header .menu .menu-item {
  position: relative;
}
.header .menu .menu-item .menu-label {
  cursor: pointer;
}
.header .menu .menu-item .menu-label::after {
  font-size: 16px;
  margin-left: 6px;
  font-weight: bold;
  transition: transform 0.2s ease;
}
.header .menu .menu-item.is-open .menu-label::after {
}
.header .menu .menu-item .submenu{
  display: none;
  position: absolute;
  width: 100%;
  min-width: 320px;
  top: 0;
  left: 0;
  background: #051727;
  z-index: 1000;
  font-size: 14px;
}
@media (min-width: 768px) {
  .header .menu .menu-item .submenu {
    top: 100%;
  }
}
.header .menu .menu-item .submenu li a {
  display: block;
  padding: 6px 12px;
  text-decoration: none;
  color: #fff;
}
@media (min-width: 768px) {
  .header .menu .menu-item .submenu li a{
    padding: 10px 12px;
  }
}
.header .menu .menu-item .submenu li a:hover{
  background: #0b2235;
}
@media (min-width: 768px) {
  .header .menu .menu-item:hover > .submenu{
    display: block;
  }
  .header .menu .menu-item:hover > .menu-label::after {
    /* content: "−"; */
  }
}
@media (max-width: 767.98px) {
  .header .menu .menu-item .submenu{
    position: relative;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
  }
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.menu-item.pc { display: block !important; }
.menu-item.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
    .menu-item.pc { display: none !important; }
    .menu-item.sp { display: block !important; }
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
  .pc { display: block !important; }
  .sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
@media (max-width: 767.98px) {
  .header .header-logo {
    width: 180px;
  }
  .header .sp-nav {
    width: calc(100% - 180px);
    margin-right: calc(50% - 50vw);
  }
  .header .menu {
    display: none;
  }
  .header .menu .container-wrap.full {
    padding: 0;
  }
  .header .menu.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100vh;
    padding: 120px 16px 24px;
    display: block;
    background: linear-gradient(180deg, #052039 0%, #0A2946 100%);
    z-index: 999;
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .menu.active .menu-logo {
    display: block;
  }
  .header .menu.active ul {
    height: 100%;
  }
  .header .menu.active ul li {
    width: 100%;
  }
  .header .menu.active ul li + li {
    margin-top: 20px;
    padding-top: 20px;
    border-top: solid 1px #eaeaea;
  }
  .header .menu.active ul li.menu-item .submenu-pc {
    background-color: transparent;
  }
  .header .menu.active ul li.menu-item .submenu-pc li + li {
    border: unset;
    margin-top: 4px;
    padding-top: 0;
  }
  .header .menu.active ul li a {
    display: block;
  }
  .header .menu.active ul li .header-btns li:nth-child(2) {
    border-top: unset;
    padding-top: 0;
  }
  .header .menu.active ul li .header-btns li a {
    display: flex;
    justify-content: center;
  }
  .header .menu.active ul li .sns-lists li {
    border-top: unset;
    padding-top: 0;
    margin-top: 0;
    width: auto;
  }
  .hamburger {
    position: relative;
    width: 48px;
    height: 48px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    background-color: #052039;
  }
  .hamburger span {
    display: inline-block;
    text-align: center;
    font-size: 10px;
    line-height: 1;
    margin-top: 6px;
  }
  .line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .line:nth-child(2) {
    margin-top: 8px;
  }
  .hamburger.clicked .line:nth-child(1) {
    width: 85%;
    transform: rotate(45deg);
    top: 3px;
    left: 2px;
  }
  .hamburger.clicked .line:nth-child(2) {
    width: 85%;
    transform: rotate(-45deg);
    bottom: 6px;
    left: 2px;
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(320px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*------------------
 mainfv
------------------*/
/*------------------
 schedule
------------------*/
.section-schedule .schedule-ttl {
  position: relative;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .section-schedule .schedule-ttl {
    font-size: 28px;
    margin-bottom: 28px;
  }
}
.section-schedule .schedule-ttl::before, .section-schedule .schedule-ttl::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 8px;
  bottom: 0;
  width: 24px;
  height: 2px;
  margin: auto;
  background-color: #fff;
}
@media (min-width: 768px) {
  .section-schedule .schedule-ttl::before, .section-schedule .schedule-ttl::after {
    width: 28px;
    right: 0;
  }
}
.section-schedule .schedule-ttl::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.section-schedule .schedule-ttl.active {
  border-bottom: unset;
}
.section-schedule .schedule-ttl.active::after {
  transform: rotate(0deg);
}
.section-schedule .schedule-lists {
  display: none;
}
.section-schedule .schedule-lists li {
  font-weight: bold;
  padding: 16px 12px;
  border-bottom: 1px solid #fff;
}
@media (min-width: 768px) {
  .section-schedule .schedule-lists li {
    padding: 20px;
  }
}
.section-schedule .schedule-lists li:first-of-type {
  border-top: 1px solid #fff;
}
.section-schedule .schedule-lists li .date {
  display: block;
  width: 14rem;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .section-schedule .schedule-lists li .date {
    font-size: 16px;
  }
}
.section-schedule .schedule-lists li p {
  flex: 1;
  line-height: 1.5;
}
.section-schedule .schedule-lists li p span {
  padding: 2px 6px;
}
.section-schedule .schedule-lists li.disabled {
  background-color: rgba(137, 137, 137, 0.3);
}

/*------------------
 player
------------------*/
.section-player .player-lists .player-item p {
  color: #101010;
  font-weight: bold;
  padding: 8px;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 0 8px #FFF, 0 0 8px #FFF, 0 0 8px #FFF, 0 0 8px #FFF;
  background: linear-gradient(82deg, #BEA31E 21.62%, #FFCA2A 70.23%, #BEA31E 98.49%);
}

/*------------------
 outlook
------------------*/
.section-outlook .pickup-inner__image {
  width: 100%;
}
@media (min-width: 768px) {
  .section-outlook .pickup-inner__image {
    width: 240px;
  }
}
.section-outlook .pickup-inner__image img {
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-outlook .pickup-inner__image img {
    width: 100%;
  }
}
.section-outlook .pickup-inner__txt {
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .section-outlook .pickup-inner__txt {
    margin-top: 0;
    padding-left: 24px;
    width: calc(100% - 240px);
  }
}

/*------------------
 property
------------------*/
.section-property .property-inner__col {
  width: 100%;
}
@media (min-width: 768px) {
  .section-property .property-inner__col {
    width: 55%;
  }
}
.section-property .property-inner__graph {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .section-property .property-inner__graph {
    margin-top: 0;
    width: 45%;
  }
}

/*------------------
 news
------------------*/
.news-lists li:first-of-type a {
  border-top: 1px solid #fff;
}
.news-lists li a {
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid #fff;
}
@media (min-width: 768px) {
  .news-lists li a {
    padding: 20px;
  }
}
.news-lists li a span {
  font-size: 14px;
}
@media (min-width: 768px) {
  .news-lists li a span {
    font-size: 16px;
    width: 8rem;
  }
}
@media (min-width: 768px) {
  .news-lists li a p {
    width: calc(100% - 8rem);
  }
}

/*------------------
 relation
------------------*/
/*------------------
 footer
------------------*/
.footer {
  background-color: #072037;
}

/*------------------
 subkv
------------------*/
.section-subkv {
  height: 320px;
  background: url("../img/subkv_sp.jpg") center/cover no-repeat;
}
@media (min-width: 768px) {
  .section-subkv {
    height: 420px;
    background: url("../img/subkv.jpg") center/cover no-repeat;
  }
}
.section-subkv .subkv-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  height: 100%;
}
.section-subkv .subkv-inner .subkv-txt {
  margin: 32px 0;
}
@media (min-width: 768px) {
  .section-subkv .subkv-inner .subkv-txt {
    margin: 40px 0;
  }
}
.section-subkv .subkv-inner .subkv-txt h1,
.section-subkv .subkv-inner .subkv-txt p {
  text-align: center;
  line-height: 1;
}
.section-subkv .subkv-inner .subkv-txt h1 {
  font-size: 16px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .section-subkv .subkv-inner .subkv-txt h1 {
    font-size: 18px;
  }
}
.section-subkv .subkv-inner .subkv-txt p {
  font-size: 40px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .section-subkv .subkv-inner .subkv-txt p {
    font-size: 48px;
  }
}
.section-subkv .subkv-line {
  position: relative;
  display: block;
  height: 1px;
  width: 100%;
  background-color: #fff;
}
.section-subkv .subkv-line::before, .section-subkv .subkv-line::after {
  position: absolute;
  top: -16px;
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../img/ttl_deco.png") no-repeat center/contain;
  mix-blend-mode: screen;
}
@media (min-width: 768px) {
  .section-subkv .subkv-line::before, .section-subkv .subkv-line::after {
    top: -20px;
    width: 40px;
    height: 40px;
  }
}
.section-subkv .subkv-line::before {
  left: -16px;
}
@media (min-width: 768px) {
  .section-subkv .subkv-line::before {
    left: -20px;
  }
}
.section-subkv .subkv-line::after {
  right: -16px;
}
@media (min-width: 768px) {
  .section-subkv .subkv-line::after {
    right: -20px;
  }
}

/*------------------
 progress
------------------*/
.section-progress .progress-table {
  width: 100%;
  background-color: rgba(9, 4, 29, 0.6);
  border: 3px solid #FFF;
}
.section-progress .progress-table tr th, .section-progress .progress-table tr td {
  text-align: center;
  border-bottom: solid 1px #fff;
}
.section-progress .progress-table tr th {
  font-size: 16px;
  background-color: rgba(9, 4, 29, 0.9);
  padding: 20px 16px;
}
@media (min-width: 768px) {
  .section-progress .progress-table tr th {
    font-size: 18px;
    padding: 24px;
  }
}
.section-progress .progress-table tr th:first-child {
  border-right: solid 1px #fff;
}
.section-progress .progress-table tr td {
  padding: 16px;
  width: 70%;
}
@media (min-width: 768px) {
  .section-progress .progress-table tr td {
    font-size: 18px;
    width: 65%;
  }
}
.section-progress .progress-table tr td:first-child {
  border-right: solid 1px #fff;
  width: 30%;
}
@media (min-width: 768px) {
  .section-progress .progress-table tr td:first-child {
    width: 35%;
  }
}
.section-progress .progress-table tbody tr:nth-child(n+9) {
  color: #D8BB2F;
}
.section-progress .progress-info {
  background-color: rgba(255, 255, 255, 0.2);
  border: solid 3px #fff;
  padding: 20px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-progress .progress-info {
    padding: 24px;
  }
}
.section-progress .progress-info p {
  display: inline-block;
  text-align: left;
}

/*------------------
 blog
------------------*/
.single-wrap .single-content h2,
.single-wrap .single-content h3,
.single-wrap .single-content h4 {
  font-weight: bold;
}
.single-wrap .single-content h2 {
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: solid 2px #D8BB2F;
  margin: 28px 0 20px;
}
@media (min-width: 768px) {
  .single-wrap .single-content h2 {
    font-size: 24px;
    margin: 32px 0 24px;
  }
}
.single-wrap .single-content h3 {
  font-size: 18px;
  padding: 12px;
  margin: 24px 0 18px;
  border-left: solid 3px #D8BB2F;
  background-color: #fafafa;
}
@media (min-width: 768px) {
  .single-wrap .single-content h3 {
    font-size: 20px;
    margin: 28px 0 20px;
  }
}
.single-wrap .single-content h4 {
  font-size: 16px;
  color: #D8BB2F;
  margin: 20px 0 16px;
}
@media (min-width: 768px) {
  .single-wrap .single-content h4 {
    font-size: 18px;
    margin: 24px 0 18px;
  }
}

/*------------------
 wp pagenavi
------------------*/
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  margin: 0 4px;
  border: solid 1px #fff;
}
@media (min-width: 768px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    font-size: 18px;
    width: 48px;
    height: 48px;
    margin: 0 8px;
  }
}
.wp-pagenavi .current {
  color: #0A2946;
  background-color: #fff;
}
.wp-pagenavi a {
  color: #fff;
  background-color: transparent;
}
.wp-pagenavi a:hover, .wp-pagenavi a:focus {
  color: #0A2946;
  background-color: #fff;
}

/*------------------
 breadcrumb
------------------*/
.breadcrumb span {
  margin: 0 4px;
}
.breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

.picture_race_outlook{
  display: flex;
  justify-content: center;
  align-items: center;
}

.img_race_outlook{
  width: 75%;
}