@charset "UTF-8";
/* CSS Document */
/*font-family: 'Montserrat', sans-serif;
font-family: 'Zen Kaku Gothic New', sans-serif;*/
*:focus {
  outline: none;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
:root {
  --orange: #FA4618;
  --blue: #0D2655;
  --black: #3E3A39;
  --mont: 'Montserrat', sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--black);
  min-width: 1300px;
  height: 100vh;
}
a {
  display: inline-block;
}
ul li {
  list-style: none;
}
img {
  width: 100%;
  height: auto;
}
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pc_none {
  display: none !important;
}
.sp_none {
  display: block;
}
/*---------------------------------------------------------------------
	ヘッダー
---------------------------------------------------------------------*/
.header {
  width: 300px;
}
/*印刷時は左カラム非表示*/
@media print {
  .header {
    display: none;
  }
}
.header-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  overflow-y: scroll;
  height: 100vh;
}
.header-inner::-webkit-scrollbar {
  display: none;
}
.header-nav {
  display: block;
}
.header-title {
  font-family: var(--mont);
  color: #ffffff;
  font-size: 4.5rem;
  font-weight: 600;
  width: 100%;
  height: 150px;
  padding-top: 40px;
  padding-left: 30px;
  background-color: var(--blue);
  letter-spacing: 1rem;
}
.header nav ul {
  padding: 20px 0 30px 30px;
  position: relative;
}
.header nav ul li {
  margin-bottom: 6px;
  line-height: 1;
}
.header nav ul li:last-child {
  margin-bottom: 0;
}
.header nav ul li a {
  color: var(--blue);
  font-family: var(--mont);
  font-weight: 600;
  font-size: 2.0rem;
  letter-spacing: 0.3rem;
  padding: 8px;
  transition: color 0.2s ease-out;
  display: flex;
  align-items: center;
  line-height: 1.3;
}
.header nav ul li a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 20px;
  background-image: url("../img/nav_before.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
  vertical-align: top;
  transition: background-image 0.2s ease-out;
}
.header nav ul li a:hover {
  color: var(--orange);
}
.header nav ul li a:hover::before {
  background-image: url("../img/nav_before_active.png");
  transition: background-image 0.2s ease-out;
}
.header .top-blue {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0 150px 300px;
  border-color: transparent transparent transparent var(--blue);
  padding-top: 1px;
  margin-top: -1px;
}
.header .bottom-orange {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 120px 240px 0px 0;
  border-color: transparent var(--orange) transparent transparent;
  margin-left: auto;
}
.right-content {
  max-width: 840px;
  width: 100%;
}
/*印刷時は右カラムの最大幅1200*/
@media print {
  .right-content {
    max-width: 1200px;
  }
}
/*---------------------------------------------------------------------
	メインビジュアル
---------------------------------------------------------------------*/
.main_img {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
/*印刷時はメインビジュアル下のマージンを68*/
@media print {
  .main_img {
    margin-bottom: 68px;
  }
}
.main_img .img_wrap, .main_img .img_wrap img {
  width: 100%;
  height: 100%;
}
.main_img .img_wrap img {
  object-fit: cover;
  object-position: center;
}
.main_img .img_wrap {
  position: relative;
}
.main_img .img_wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.main_img h1 {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 25%;
}
.main_img .mv-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 25%;
}
.main_img .race-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%)translateX(-50%);
  font-family: var(--mont);
  color: var(--blue);
  text-align: center;
  display: block;
  width: 100%;
}
.main_img .race-title span {
  display: block;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.main_img .race-title span:first-child {
  font-size: clamp(3.0rem, 1.9vw, 5rem);
  letter-spacing: 0.65rem;
}
.main_img .race-title span:nth-child(2) {
  font-size: clamp(6.0rem, 3.75vw, 8rem);
  line-height: 1;
  letter-spacing: 1.3rem;
}
.main_img .race-title span:nth-child(3) {
  font-size: clamp(2.0rem, 1.25vw, 4rem);
  letter-spacing: 0.5rem;
}
/* sns */
.sns_ul {
  height: 38px;
  justify-content: center;
  column-gap: 20px;
  margin-bottom: 70px;
}
/*印刷時はSNSアイコン非表示*/
@media print {
  .sns_ul {
    display: none;
  }
}
.sns_ul li {
  height: inherit;
}
.sns_ul li a {
  width: 100%;
  height: 100%;
  padding: 4px;
  transition: opacity 0.1s ease-out;
}
.sns_ul li img {
  height: 100%;
  width: auto;
}
.sns_ul li a:hover {
  opacity: 0.8;
}
/*---------------------------------------------------------------------
	right-content 共通
---------------------------------------------------------------------*/
.right-content section {
  margin-bottom: 100px;
}
.right-content table {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
.right-content td {
  text-align: right;
}
.right-content .sp_none {
  display: inline;
}
.right-content .pc_none {
  display: inline-block;
}
.right-content h2 {
  font-family: var(--mont);
  color: var(--blue);
  text-align: right;
  letter-spacing: 1rem;
  position: relative;
  margin-bottom: 19px;
  min-height: 120px;
}
.right-content h2 span {
  display: block;
  font-weight: 600;
}
.right-content h2 span:first-child {
  font-size: 3.0rem;
  margin-bottom: 10px;
  letter-spacing: 0.65rem;
  line-height: 1;
}
.right-content h2 span:nth-child(2), .right-content .next-race h2 span {
  font-size: 4.5rem;
  margin-bottom: 10px;
  margin-right: -0.5rem;
  line-height: 1;
}
.right-content h2 span:nth-child(3) {
  font-size: 2.0rem;
  letter-spacing: 0.5rem;
  font-weight: 500;
}
.right-content h2 span.zen {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: normal;
  font-weight: 500;
}
.right-content h2::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0 120px 240px;
  border-color: transparent transparent transparent var(--blue);
  position: absolute;
  top: 0;
  left: 0;
}
.right-content .photo {
  position: relative;
  margin-bottom: 30px;
}
.right-content .diagonal {
  clip-path: polygon(180px 0, 100% 0%, 100% 100%, 0 100%, 0 90px);
}
.right-content h3 {
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-bottom: 30px;
}
.right-content .read-more p, .right-content .read p {
  letter-spacing: 0.1rem;
  line-height: 1.73;
  margin-bottom: 18px;
  text-align: justify;
}
.right-content .read-more p:last-child, .right-content .read p:last-child {
  margin-bottom: 0;
}
.right-content .driver-ul li.driver {
  background-color: var(--orange);
  min-height: 400px;
  color: #ffffff;
  position: relative;
  padding: 40px;
}
.right-content .driver-ul li.driver:not(:last-child) {
  margin-bottom: 20px;
}
.right-content .driver-ul li.driver .left {
  max-width: 540px;
  width: 100%;
}
/*印刷時はドライバーコメント幅を900*/
@media print {
  .right-content .driver-ul li.driver .left {
    max-width: 900px;
  }
}
.right-content .driver-ul li.driver .name, .right-content .driver-ul li.driver .name .long {
  font-family: var(--mont);
  font-weight: 600;
  font-size: 3.0rem;
  text-align: right;
  letter-spacing: 0.5rem;
  margin-bottom: 30px;
}
.right-content .driver-ul li.driver .name span:not(.long) {
  font-size: 2.0rem;
  font-weight: 600;
  display: block;
}
.right-content .driver-ul li.driver p {
  letter-spacing: 0.09rem;
  line-height: 1.65;
  text-align: justify;
}
.right-content .driver-ul li.driver .driver-photo {
  position: absolute;
  top: 0;
  right: 40px;
  width: 180px;
  height: 360px;
  clip-path: polygon(100% 0, 100% 75%, 0% 100%, 0% 0%);
  background-color: #B5B5B6;
}
/*---------------------------------------------------------------------
	NEXT RACE
---------------------------------------------------------------------*/
.right-content .next-race {
  margin-bottom: 50px;
}
/*印刷時はNEXT RACE上側にマージン120px*/
@media print {
  .right-content .next-race {
    margin-top: 120px;
  }
}
.right-content .next-race::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 120px 240px 0px 0;
  border-color: transparent var(--orange) transparent transparent;
  margin-left: auto;
}
.right-content .next-race h2 {
  height: 120px;
}
.right-content .next-race h2 span {
  padding-top: 42px;
  margin-bottom: 0;
}
.right-content .next-race .read {
  margin-bottom: 30px;
}
.right-content .next-race ul.flex {
  row-gap: 12px;
}
.right-content .next-race ul.flex li {
  width: calc(50% - 6px);
  height: 276px;
  background-color: #B5B5B6;
}
.right-content .next-race ul.flex li:first-child {
  clip-path: polygon(0 90px, 180px 0, 100% 0, 100% 100%, 0% 100%);
}
.right-content .next-race ul.flex li:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 186px, 234px 100%, 0% 100%);
}
/*印刷時のNEXT RACE組み写真表示調整*/
@media print {
  .right-content .next-race ul.flex li {
    height: 394px;
    background-color: #FFFFFF;
  }
  .right-content .next-race ul.flex li:first-child {
    clip-path: none;
  }
  .right-content .next-race ul.flex li:last-child {
    clip-path: none;
  }
  .right-content .next-race::after {
    display: none;
  }
}
/*---------------------------------------------------------------------
	times banner
---------------------------------------------------------------------*/
.times-banner {
  margin-bottom: 118px;
}
.times-banner p {
  margin-bottom: 20px;
  color: #0D2655;
  letter-spacing: 0.1rem;
}
.times-banner a {
  position: relative;
  width: 100%;
  height: auto;
}
.times-banner a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.times-banner a:hover:before {
  transform-origin: right top;
  transform: scale(1, 1);
}
/*---------------------------------------------------------------------
	OFFICIAL SPONSORS
---------------------------------------------------------------------*/
.official-sponsors {
  background-color: var(--blue);
  padding: 50px 0 40px;
}
.official-sponsors h2 {
  color: #ffffff;
  font-family: var(--mont);
  font-weight: 600;
  font-size: 4.5rem;
  margin-bottom: 40px;
  letter-spacing: 1rem;
}
.official-sponsors .explanation {
  margin-bottom: 20px;
}
.official-sponsors .sponsors_ul {
  row-gap: 6px;
  column-gap: 6px;
  margin-bottom: 40px;
}
.official-sponsors .sponsors_ul li {
  display: inline-block;
  width: 195px;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all ease .2s;
}
.official-sponsors .sponsors_ul li img {
  opacity: 0;
  transition: all ease .2s;
}
.official-sponsors .sponsors_ul li a:hover img {
  opacity: 1;
}
.official-sponsors .sponsors_ul li:first-child {
  background-image: url("../img/sponsors/os_myarms_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(2) {
  background-image: url("../img/sponsors/os_kidscom_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(3) {
  background-image: url("../img/sponsors/os_arrows_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(4) {
  background-image: url("../img/sponsors/os_eves_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(5) {
  background-image: url("../img/sponsors/os_fastlux_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(6) {
  background-image: url("../img/sponsors/os_flc_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(7) {
  background-image: url("../img/sponsors/os_flc2_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(8) {
  background-image: url("../img/sponsors/os_hakueisha_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(9) {
  background-image: url("../img/sponsors/os_hibiki_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(10) {
  background-image: url("../img/sponsors/os_ibarakinissan_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(11) {
  background-image: url("../img/sponsors/os_itecplus_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(12) {
  background-image: url("../img/sponsors/os_jrc_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(13) {
  background-image: url("../img/sponsors/os_lubird_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(14) {
  background-image: url("../img/sponsors/os_mechanixwear_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(15) {
  background-image: url("../img/sponsors/os_meisterschaft_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(16) {
  background-image: url("../img/sponsors/os_mitochan_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(17) {
  background-image: url("../img/sponsors/os_nismo_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(18) {
  background-image: url("../img/sponsors/os_pfc_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(19) {
  background-image: url("../img/sponsors/os_trust_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(20) {
  background-image: url("../img/sponsors/os_rebent_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(21) {
  background-image: url("../img/sponsors/os_sparco_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(22) {
  background-image: url("../img/sponsors/os_stepwork_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(23) {
  background-image: url("../img/sponsors/os_suzukiryo_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(24) {
  background-image: url("../img/sponsors/os_threebond_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(25) {
  background-image: url("../img/sponsors/os_triplek_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(26) {
  background-image: url("../img/sponsors/os_yokohama_d.png");
}
.official-sponsors .sponsors_ul li:nth-child(27) {
  background-image: url("../img/sponsors/os_murata_d.png");
}
.official-sponsors .sponsors_ul li a {
  transition: opacity 0.2s ease-out;
}
.official-sponsors small {
  color: #ffffff;
  font-family: var(--mont);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  display: block;
  text-align: right;
}
/* page_top */
.page_top {
  display: none;
  width: 85px;
  height: 85px;
  position: fixed;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background-color: var(--blue);
  transition: background-color 0.2s ease-out;
}
.page_top img {
  width: 30px;
  height: 25px;
  object-fit: contain;
}
.page_top:hover {
  background-color: var(--orange);
}
@media screen and (min-width: 641px) {
  .page_top {
    display: none;
  }
  .header-inner {
    display: block !important;
  }
}