@charset "UTF-8";
/*-----------------------------------------------------
Reset
----------------------------------------------------- */
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul { list-style: none; line-height: 1.5; }
table { border-collapse: collapse; border-spacing: 0; }
:focus { outline: none; }

* { margin: 0; padding: 0; }
*,
  *::before,
  *::after {
    box-sizing: border-box;
  }
img { max-width: 100%; width: 100%; height: auto; vertical-align: top; image-rendering: -webkit-optimize-contrast; }

* { min-height: 0; min-width: 0; }

html { scroll-behavior: smooth; }
body { line-height: 1; margin: 0; padding: 0; height: 100%; font-family: "Noto Sans", sans-serif; letter-spacing : 0.08em; font-feature-settings: "palt"; color: var(--text-light); background: var(--bg-dark); overflow-x: hidden; }
body.menu-scroll-lock { overflow: hidden; position: fixed; width: 100%; }
/*body.fixed { position: fixed; width: 100%; top: 0; left: 0; overflow: hidden; }*/
a {	text-decoration: none; color: inherit; transition: 0.3s ease-in-out; }
@media (min-width: 1025px) {
	a[href*="tel:"] { pointer-events: none; cursor: default; text-decoration: none;}
}
p , div { text-align: justify;}
p { line-height: 1.4; }
button { margin: 0; padding: 0; outline: 0; border: 0; border-radius: 0; color: inherit; vertical-align: middle; text-align: inherit;font: inherit; -webkit-appearance: none; appearance: none; }
picture { display: block; }

:root {
	--txt-navy: #1B1464; /*文字紺色*/
	--bg-navy: #1b1464; /*背景紺色*/
	--enfont: "Montserrat", sans-serif; /*日付*/
  --side-width: 502px;
  --side-area-max: 1800px;
  --side-right-gap: 40px;
  --text-light: #ffffff;
  --text-dark: #1b1464;
  --accent: #c8ab59;
  --bg-dark: #0f0d2d;
  --border-soft: rgba(255, 255, 255, 0.16);
  --purple: #3700a9;
  /* head_copy（マーキー）とナビ・ハンバーの縦位置を揃える */
  --head-copy-header-offset: 50px;
}

/*オーバーレイ*/
.overlay { background: #fff; position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 10000; }

/*fade*/
/* ▼ 基本的に非表示にしたい要素 共通*/
.blur , .fade , .fadeup, .fadeleft { opacity: 0; }

/* ▼ 共通のinviewアニメーション開始スタイル 共通*/
.js-inview.is_inview { opacity: 1; transform: none; }

/* ▼ blurの個別演出 */
.blur { opacity: 0.1; filter: blur(20px); transition: opacity .8s ease-out, filter .8s ease-out; }
.blur.is_inview { opacity: 1; filter: blur(0px); transition-delay: 1.4s; }

/* ▼ fadeの個別演出 */
.fade { transition: opacity 1.4s ease-out, transform 1.4s ease-out; }
.fade.is_inview { transition-delay: 0.8s; }

/* ▼ fadeupの個別演出 */
.fadeup { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fadeup.is_inview { opacity: 1; transform: translateY(0); }

/* ▼ fadeleftの個別演出 */
.fadeleft { transform: translateX(-50px); transition: opacity 0.3s ease-out, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.fadeleft.is_inview { transform: translateX(0); transition-delay: 1.2s; }

.pc { display: block; }
.sp { display: none; }

/* [data-size="w900"]{ max-width: 900px; width: 90%; margin: 0 auto; }
[data-size="w950"]{ max-width: 950px; width: 90%; margin: 0 auto; } */
[data-size="w1000"]{ max-width: 1000px; width: 90%; margin: 0 auto; }
/* [data-size="w1150"]{ max-width: 1150px; width: 90%; margin: 0 auto; } */

/*section見出し*/
/* section { padding: 0 0 80px; } */
h2 { color: #fff; font-size: 2.875rem; font-weight: 700; text-align: center; margin-bottom: 25px; }

/*光るボタン*/
.btn-flash { overflow: hidden; }
.btn-flash::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%); transition: .5s; }
/* ホバー時のスタイル */
.btn-flash:hover::before { top: 0; left: 100%; }

/*グラデボタン*/
.grade_linkbtn { background: linear-gradient(170deg, #dbca9e 10%, #ba993e 30% , #907118 45%, #755700 60%, #382809 100%); color: #fff; font-weight: 700; border: 3px solid #fff; border-radius: 50px; display: block; text-align: center; margin: 0 auto; padding: 10px 5px; box-sizing: border-box; position: relative; line-height: 1.3; transition: .2s; font-size: 1.375rem; }
.grade_red_linkbtn { background: linear-gradient(170deg, #e3c0ae 10%, #bc0000 30% , #8e191e 45%, #5d0409 60%, #010000 100%); color: #fff; font-weight: 700; border: 3px solid #fff; border-radius: 50px; display: block; text-align: center; margin: 0 auto; padding: 10px 5px; box-sizing: border-box; position: relative; line-height: 1.3; transition: .2s; font-size: 1.375rem; }
.grade_blue_linkbtn { background: linear-gradient(170deg, #d0c4eb 10%, #3700a9 30% , #260078 45%, #1a0073 60%, #00001f 100%); color: #fff; font-weight: 700; border: 3px solid #fff; border-radius: 50px; display: block; text-align: center; margin: 0 auto; padding: 10px 5px; box-sizing: border-box; position: relative; line-height: 1.3; transition: .2s; font-size: 1.375rem; }

/*ライトのように光る*/
.btn-light { transition: .15s ease; }
/* ホバー時のスタイル */
.btn-light:hover { background-color: rgb(29, 167, 217); background-color: #B5943E; box-shadow: 0 0 15px -4px rgba(255, 255, 255, 1); }

/*マーキー表示*/
.head_copy { position: sticky; top: 0; width: 100%; min-height: 40px; background: #c0a34f; transition: all 0.3s ease; color: #000; transition: opacity 0.3s ease, visibility 0.3s ease; z-index: 20; display: flex; align-items: center; justify-content: center;}
.head_copy.is-hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.head_copy.not-fixed { position: static; }
.head_copy.force-hide { display: none !important; }
.head_copy a { text-decoration: underline; }
.head_copy a:hover { opacity: .5; }
header .l-header-nav { position: fixed; top: var(--head-copy-header-offset); left: 0; width: 100%; height: 80px; background: var(--bg-navy); display: flex; justify-content: center; align-items: center; z-index: 30; transition: top 0.3s ease; }
/* move-top 中はマーキーが見えている間だけ下げ、画面外に出たら head_copy 分だけ上へ */
header .l-header-nav.move-top { top: var(--head-copy-header-offset); }
header .l-header-nav.move-top.headcopy-passed { top: 0; }
/* header .hambtn { position: fixed; top: 50px; right: 4%; z-index: 10; width: 60px; height: 60px; display: block; background: none; transition: top 0.3s ease; } */
header .hambtn { transition: top 0.3s ease; position: fixed; top: var(--head-copy-header-offset); right: calc((100vw - min(100vw, var(--side-area-max))) / 2 + 60px); z-index: 999; width: 60px; height: 60px; background: none; }

/* マーキー */
.loop-wrap { overflow: hidden; position: relative; width: 100%; height: 50px; display: flex; align-items: center; }
.loop-text-item { position: absolute; white-space: nowrap; font-size: 15px; line-height: 50px; will-change: transform; }

/* =========================
     PC default
  ========================= */
.cm-wrapper { position: relative; min-height: 100vh; }
.cm-visual { position: sticky; top: 0; left: 0; height: 100vh; width: calc(100vw - ((100vw - min(100vw, var(--side-area-max))) / 2) - var(--side-right-gap) - var(--side-width)); min-width: 0; }
.cm-visual__inner { position: relative; width: 100%; height: 100%; overflow: hidden; }
.cm-visual__inner h1.pc_logo { max-width: 310px; width: 40%; position: absolute; left: 20px; top: 20px; z-index: 1; }
.cm-visual__overlay { position: absolute; inset: 0; background: url("../images/pc_bg.jpg") no-repeat; background-size: cover; background-position: center; }
.cm-visual__overlay .copyright { position: absolute; right: 30px; bottom: 10px; max-width: 220px;}
.cm-inner { width: min(100%, var(--side-area-max)); margin-left: auto; margin-right: auto; padding-right: var(--side-right-gap); margin-top: -100vh; min-height: 100vh; display: flex; justify-content: flex-end; pointer-events: none; }
.cm-side { width: var(--side-width); flex: 0 0 var(--side-width); min-height: 100vh; background: #060c34; border-left: solid 1px #fff; border-right: solid 1px #fff; position: relative; pointer-events: auto; }
/* .cm-side__marquee { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: center; background: linear-gradient(90deg, #b48c2b 0%, #e7d07f 50%, #b48c2b 100%); color: #111; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; text-align: center; } */
.mainv-section { position: relative; /*background: #3700a9;*/ }
#Top .sp_mainv { display: block; width: 100%; height: auto; }
.cm-visual__overlay.is-medium-bg { background-image: url("../images/pc_bg_medium.jpg"); }
.cm-visual__overlay.is-small-bg { background-image: url("../images/pc_bg_small.jpg"); }
@media (max-aspect-ratio: 200/339) {
  .cm-visual__inner h1.pc_logo { max-width: 200px; width: 100%; }
}

/* ハンバーガーメニュー内容 */
header .sp_logo { display: none; }
header .l-header-menu { width: 100%; }
header .l-header-nav { height: 100%; display: initial; padding: 15% 10%; box-sizing: border-box; }
header .l-header-nav__list { display: flex; justify-content: center; }
header .l-header-nav__item { font-size: 15px; color: #fff; font-weight: 700; }
header .l-header-nav__item a:hover { color: #b5943e; }
header .l-header-nav__item img { width: 15px; vertical-align: 0; }
header .l-header-nav__item:not(:last-child) { margin-right: 30px; }
header .l-header-nav__item a.stay { border-bottom: 2px solid #b1903e; padding-bottom: 3px; }
header .l-header-nav__item:not(:last-child) { margin-right: 0; margin-bottom: 20px; }
header .sp_logo { display: block; max-width: 400px; }

/* ハンバーガーメニュー */
header .hambtn.move-top { top: var(--head-copy-header-offset); }
header .hambtn.move-top.headcopy-passed { top: 0; }
header .btn-line { display: block; position: relative; width: 30px; height: 2px; background-color: #fff; transition: .2s;  margin: 0 auto; }
header .btn-line::before , .btn-line::after { content: ""; position: absolute; width: 100%; height: 100%; background-color: #fff; transition: .5s; }
header .btn-line::before { transform: translateY(-10px); }
header .btn-line::after { transform: translateY(10px); width: 80%; }
header .btn-line.open { background-color: transparent; }
header .btn-line.open::before , .btn-line.open::after { content: ""; transition: .2s; }
header .btn-line.open::before { transform: rotate(45deg); }
header .btn-line.open::after { transform: rotate(-45deg); width: 100%; }
header .l-header-menu { position: fixed; top: 0; right: 0; transform: translateX(100%); opacity: 0; width: 60vw; height: 100vh; background-color: var(--bg-navy); transition: transform 0.5s ease, opacity 0.5s ease; z-index: 32; pointer-events: none; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s, opacity 0.7s ease-in 0.1s; }
header .l-header-menu.open { transform: translateX(0); opacity: 1; pointer-events: auto; box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55); }
header .menu-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0); z-index: 31; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease; }
header .menu-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
header .l-header-nav__list { padding-top: 40px; flex-direction: column; }
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

header .sns_links { display: flex; align-items: center; justify-content: center; margin: 30px 0; }
header .sns_links li { width: 40px; }
header .sns_links li a:hover { opacity: .5; }
header .sns_links li:not(:last-child) { margin-right: 10px; }

footer { background: #E1E1E1; padding: 70px 5% 130px; }
footer p { color: var(--txt-navy); font-size: 15px; text-align: center; font-weight: 700; }
footer .sns_links { display: flex; align-items: center; justify-content: center; margin: 30px 0; }
footer .sns_links li { width: 40px; }
footer .sns_links li a:hover { opacity: .5; }
footer .sns_links li:not(:last-child) { margin-right: 10px; }
footer p.footer_ttl { font-size: clamp(0.813rem, 0.722rem + 0.4vw, 1.125rem); margin-bottom:  10px; font-weight: 700; }
footer p.footer_main { font-size: clamp(1rem, 0.891rem + 0.48vw, 1.375rem); margin-bottom: 10px; line-height: 1.5; font-weight: 700; }
footer p.footer_txt { font-size: clamp(0.813rem, 0.794rem + 0.08vw, 0.875rem); line-height: 1.6; margin-bottom: 40px; letter-spacing: -.005em; }
footer p.footer_txt a { text-decoration: underline; }
footer picture.h_logo { max-width: 400px; margin: 0 auto 20px; }
footer small { font-size: 10px; text-align: center; display: block; letter-spacing: -.004em; line-height: 1.3; color: var(--txt-navy); }

/*フローティング*/
#floating_menu { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9; display: flex; flex-wrap: wrap; justify-content: center; background: #1b1443; padding: 20px; box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5); box-sizing: border-box; transform: translateY(200px); transition: transform 0.3s ease; gap: 10px; border-left: 1px solid #fff; border-right: 1px solid #fff;}
#floating_menu a { justify-content: center; height: 70px; display: flex; align-items: center; }
#floating_menu ul { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; width: 100%; }
#floating_menu ul li { max-width: initial; width: 48%; line-height: 1.3; }
#floating_menu ul { gap: 10px; }
#floating_menu .is-hidden { transform: translateY(180px); }
#floating_menu.topMove { transform: translateY(0); }
#floating_menu.bottomMove { transform: translateY(180px); }

/* #Links スライドショー*/
#Links { margin-bottom: 30px; }
#Links .slider_wrapper { position: relative; width: 90%; margin: 0 auto; }
#Links .slick-slide { width: 250px; }
#Links .slick-dots { display: flex; justify-content: center; margin-top: 20px; }
#Links .slick-dots .slick-active { background:#5068D6; }
#Links .slick-dots { display: none !important; }
#Links .slick-dots li { background: #A2AEE8; width: 9px; height: 9px; border-radius: 50px; }
#Links .slick-dots li:not(:last-child) { margin-right: 10px; }
#Links .slick-dots button { visibility: hidden; }
#Links .slick-slide { transition: all ease-in-out .3s; }
#Links .slick-initialized .slick-slide { margin-right: 10px; }
#Links .slick-track { display: flex!important; align-items: center!important; }
#Links .prev-arrow , #Links .next-arrow { display: block; width: 40px; aspect-ratio: 1 / 1; background: url("../images/arrow_left.png") no-repeat center center; background-size: contain; position: absolute; top: 50%; transform: translateY(-50%); cursor: pointer; z-index: 1; }
#Links .prev-arrow { left: -10%; }
#Links .next-arrow { right: -10%; transform: translateY(-50%) scaleX(-1); }

#Links ul { display: flex; align-items: center; justify-content: center; }
#Links ul li { width: 250px; }
#Links ul li:not(:last-child) { margin-right: 40px; }
#Links .slider_img a:hover { opacity: .5; }

@media screen and (min-width: 601px) {
  #floating_menu { left: auto; right: max(var(--side-right-gap), calc((100% - var(--side-area-max)) / 2 + var(--side-right-gap))); width: var(--side-width);  padding: 15px 20px; }
  #floating_menu ul li { width: calc(50% - 6px); max-width: none; }
}

/* 左固定背景(.cm-visual)が非表示になるタイミングで全幅に戻す */
@media screen and (max-width: 1000px) {
  #floating_menu { left: 0; right: 0; width: 100%; padding: 20px; }
}

/* 表示時 */
/* #floating_menu.topMove { animation: topAnime 0.5s forwards; } */
/* 非表示時 */
/* #floating_menu.bottomMove { animation: bottomAnime 0.5s forwards; } */

/* アニメーション定義 */
/* @keyframes topAnime {
  from { opacity: 0; transform: translateY(125px); }
  to { opacity: 1; transform: translateY(0); }
} */

@keyframes bottomAnime {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 1; transform: translateY(125px); }
}

@media screen and (max-width: 1448px) and (max-height: 675px) {
  .kv { height: 90vh; }
}

@media screen and (max-width: 1366px) and (max-height: 768px) {
}

/*ノートPC */
@media screen and (max-width: 1300px) {
}

@media screen and (max-width:1200px){
  .kv { height: 85vh; margin-top: 50px; }
  .schedule_inner_flex { flex-direction: column; align-items: center; gap: 15px; }
  footer { padding-bottom: 240px; }
}

/*iPad*/
@media screen and (max-width: 1033px) and (max-height: 800px) {
  footer { padding-bottom: 180px; }
  
}

@media screen and (max-width:1024px){
  footer { padding-bottom: 170px; }
  .kv .kv_wrap { display: block; }
/*  .kv h1 { width: 50%; margin: 60px auto 0; }*/
}

@media screen and (max-width:1000px){
  :root { --head-copy-header-offset: 70px; }
  .mainv-section { background: #000d33; }
  header .hambtn { right: 4%; }
  header .l-header-menu { width: 80vw; }
  #Top .sp_mainv { display: block; width: 100%; height: auto; }
  .cm-visual { display: none; }
  .cm-inner { width: 100%; margin: 0; padding-right: 0; min-height: auto; display: block; pointer-events: auto; }
  .cm-side { width: 100%; min-height: 100vh; box-shadow: none; border-left: none; border-right: none; }
  #floating_menu { border-left: none; border-right: none; }
}


@media screen and (max-width:600px){
  :root { --head-copy-header-offset: 45px; }
  header .hambtn { right: 2%; }
  header .l-header-menu { width: 100vw; }
  header .sp_logo { width: 80%; }
  h2 { margin-bottom: 20px; font-size:2.063rem; }
  .pc { display: none; }
  .sp { display: block; }
  .kv { background: url("../images/kv_bg_sp.png")no-repeat; background-size: cover; height: 60vh; }
  .kv .racer { margin-top: 0; }
  .kv .kv_copy { max-width: min(78px, 100%); right: 30px; top: -50px; width: 14%; }
  .kv .kv_racer img { margin-top: 60px; }
  .grade_linkbtn , .grade_blue_linkbtn , .grade_red_linkbtn { font-size: 1rem; }
  #Links .slick-initialized .slick-slide { margin-right: 0; }
  #Links .slider_wrapper { width: 90%; margin: 30px auto 0; }
  #Links .prev-arrow , #Links .next-arrow { width: 25px; height: 25px; top: 50%; }
  #Links .prev-arrow { left: -8%; }
  #Links .next-arrow { right: -8%; }
  #floating_menu a { height: 50px; }
  footer { padding-top: 40px; padding-bottom: 150px }
  
  @keyframes topAnime {
    from { opacity: 0; transform: translateY(180px); }
    to { opacity: 1; transform: translateY(0); }
  }
  #floating_menu.bottomMove{ animation: bottomAnime 0.5s forwards; }
  @keyframes bottomAnime {
    from { opacity: 1; transform: translateY(0); }
    to { pacity: 1; transform: translateY(180px); }
  }
}

@media screen and (max-width:375px) {
  header .l-header-nav__list { padding-top: 20px; }
  header .l-header-nav__item:not(:last-child) { margin-bottom: 10px; }
  header .sns_links { margin-top: 20px; }
}

@media screen and (max-width:320px){
  header .l-header-nav { top: 0; }
  header .l-header-nav__list { padding-top: 20px; }
  header .l-header-nav__item:not(:last-child) { margin-bottom: 8px; }
  .kv { margin-top: 40px; }
  .kv .kv_racer img { margin-top: 30px; }
  .schedule { top: -10px; }
}