@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
}

#race-view * {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  overflow-x: hidden; /* 念のため横はみ出し対策 */
}

a {
  display: block;
}

.no {
  opacity: 0.5;
  pointer-events: none;
}

ul .no {
  pointer-events: none;
  opacity: 0.3;
}

/*****************************************************************************************************************************************
    共通
*****************************************************************************************************************************************/
.top_link {
  background: #000;
  clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
  width: 400px;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 500;
}

.top_link a {
  background: url(../images/classic_logo.png) no-repeat center/cover;
  width: 300px;
  height: 60px;
  margin-left: 25px;
  transition: 0.1s;
}

.top_link a:hover {
  opacity: 0.5;
}

/* footer
------------------------------------------------------------*/
.footer {
  background: #1A2057;
  padding: 3px 0;
  position: relative;
  z-index: 15;
  height: 32px;
  width: 100%;
}

.footer p {
  font-family: "Roboto";
  color: #fff;
  text-align: center;
  line-height: 32px;
  font-size: 13px;
}

/***********************************************************************
「★PC版 CSS★」ブラウザの幅が751px以上ならここの記述が有効になる
**********************************************************************/
@media all and (min-width: 751px) {
  html {
    height: calc(100% - 28.6px - 6px);
  }
  body {
    height: 100%;
  }
  #race-view .bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url(../images/race-view_bg.jpg) no-repeat center center/cover;
    background-size: cover;
    top: 0;
    z-index: -1;
    transform: translateZ(0);
  }
  .race-view_wrap, .race-view_wrap * {
    box-sizing: border-box;
  }
  .race-view_wrap h2 {
    width: fit-content;
    margin: 0 auto 16px;
  }
  .race-view_wrap .left {
    width: 1360px;
    margin: auto;
    padding: 32px 0 0;
    margin-bottom: 80px;
  }
  .race-view_wrap .left .read {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 168px;
    margin: 0 -30px;
    padding: 0 30px;
    background: url(../images/race-view_read.svg) no-repeat center center/contain;
    text-align: center;
    font-size: 18px;
    color: #500;
  }
  .race-view_wrap .left section {
    background: url(../images/column_con_rp.png), rgba(255, 255, 239, 0.8);
    padding-bottom: 48px;
  }
  .race-view_wrap .left section h3 {
    padding: 16px 0 8px;
  }
  .race-view_wrap .left section p {
    margin: 0 48px;
    font-size: 18px;
    line-height: 2;
    text-align: justify;
    background-image: radial-gradient(circle, rgba(85, 0, 0, 0.2) 1.5px, transparent 1.7px);
    background-size: 7px 1lh;
    background-position: 0 14px;
  }
  .race-view_wrap .left section p span {
    font-weight: 900;
    text-shadow: #fff 0 0 8px;
  }
  .race-view_wrap .left section p:nth-of-type(1) span {
    color: #F21D7F;
  }
  .race-view_wrap .left section p:nth-of-type(2) span {
    color: #FF5700;
  }
  .race-view_wrap .left section p:nth-of-type(3) span {
    color: #66B400;
  }
  .race-view_wrap .left section p:nth-of-type(4) span {
    color: #2C9AFB;
  }
  .race-view_wrap .left section p:nth-of-type(5) span {
    color: #6D48EB;
  }
  .race-view_wrap .scroll {
    height: 172px;
    border: solid #500;
    border-width: 4px 0;
    box-shadow: #fff 0 0 16px;
  }
  .race-view_wrap .scroll img {
    width: 240px;
  }
  .race-view_wrap .scroll {
    position: relative;
    overflow: hidden;
    margin: 24px -280px 0;
  }
  .race-view_wrap .scroll div {
    animation: photo-scroll 200s infinite linear both;
    display: flex;
    width: fit-content;
  }
  @keyframes photo-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}
/***********************************************************************
「★SP版 CSS★」ブラウザの幅が750px以下ならここの記述が有効になる
**********************************************************************/
@media only all and (max-width: 750px) {
  .sp_non {
    display: none;
  }
  .top_link {
    background: #000;
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
    width: 400px;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 500;
  }
  .top_link a {
    background: url(../images/classic_logo.png) no-repeat center/cover;
    width: 300px;
    height: 60px;
    margin-left: 25px;
    transition: 0.1s;
  }
  #race-view .bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url(../images/race-view_bg_sp.jpg) no-repeat center center/cover;
    background-size: cover;
    top: 0;
    z-index: -1;
    transform: translateZ(0);
  }
  .race-view_wrap {
    padding: 0 0 48px;
    overflow: hidden;
  }
  .race-view_wrap, .race-view_wrap * {
    box-sizing: border-box;
  }
  .race-view_wrap h2 {
    width: fit-content;
    margin: 80px auto 16px;
  }
  .race-view_wrap .left .read {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 498px;
    background: url(../images/race-view_read_sp.svg) no-repeat center center/contain;
    text-align: center;
    font-size: 28px;
    color: #500;
    line-height: 44px;
    margin-bottom: -24px;
  }
  .race-view_wrap .left section {
    padding-bottom: 56px;
  }
  .race-view_wrap .left section h3 {
    padding: 56px 0 0;
  }
  .race-view_wrap .left section p {
    margin: 0 30px;
    font-size: 28px;
    line-height: 2;
    text-align: justify;
    background-image: radial-gradient(circle, #550000 1.5px, transparent 1.7px);
    background-size: 7px 1lh;
    background-position: 0 22px;
    position: relative;
  }
  .race-view_wrap .left section p span {
    font-weight: 900;
    text-shadow: #fff 0 0 8px;
  }
  .race-view_wrap .left section p:nth-of-type(1) span {
    color: #F21D7F;
  }
  .race-view_wrap .left section p:nth-of-type(2) span {
    color: #FF5700;
  }
  .race-view_wrap .left section p:nth-of-type(3) span {
    color: #66B400;
  }
  .race-view_wrap .left section p:nth-of-type(4) span {
    color: #2C9AFB;
  }
  .race-view_wrap .left section p:nth-of-type(5) span {
    color: #6D48EB;
  }
  .race-view_wrap .left section p::before {
    content: "";
    display: block;
    width: calc(100% + 60px);
    height: calc(100% + 24px + 24px);
    z-index: -1;
    background: url(../images/column_con_rp.png), rgba(255, 255, 239, 0.8);
    position: absolute;
    left: -30px;
    top: -24px;
  }
  .race-view_wrap .scroll {
    height: 172px;
    border: solid #500;
    border-width: 4px 0;
    box-shadow: #fff 0 0 16px;
  }
  .race-view_wrap .scroll img {
    width: 240px;
  }
  .race-view_wrap .scroll {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .race-view_wrap .scroll div {
    animation: photo-scroll infinite linear both;
    display: flex;
    width: fit-content;
  }
  @keyframes photo-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  /* footer
  ------------------------------------------------------------*/
  .footer {
    background: #1A2057;
    padding: 3px 0;
    position: relative;
    z-index: 15;
    height: 48px;
  }
  .footer p {
    font-family: "Roboto";
    color: #fff;
    text-align: center;
    line-height: 3px;
    font-size: 24px;
    line-height: 48px;
  }
}
/* =====================================================
  アニメーション共通
===================================================== */
.anim {
  opacity: 0;
  will-change: opacity, transform, filter;
  transition-property: opacity, transform, filter;
  transition-duration: 0.8s;
  transition-timing-function: ease-out;
}

/* 表示された状態 */
.anim.is-show {
  opacity: 1;
  transform: none;
  filter: none;
}

/* =====================================================
  1. ふわっとフェードイン
===================================================== */
.anim-fade {
  transform: translateY(12px);
}/*# sourceMappingURL=race-view.css.map */