@charset "UTF-8";
/* CSS Document */

html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote {
	margin: 0;
	padding: 0;
}
form .formArea01 .inner01 {
}

body, td, th, h1, h2, h3, h4, h5, h6 {
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
ol, ul {
	list-style-type: none;
}
img {
	border: 0;
}

/* クリアフィックス */
.clearfix:after {
 content:".";
 display:block;
 clear:both;
 height:0;
 visibility:hidden;
}
.clearfix {
	display: inline-table;
	min-height: 1%;
	overflow: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix { 
	height: 1%; 
}
.clearfix { 
	display: block; 
}
/* End hide from IE-mac */

article, aside, hgroup, header, footer, figure,  figcaption, nav, section {
	display: block;
	margin: 0;
	padding: 0;
}
img {
	vertical-align: bottom;
}

a:hover img {
	opacity:0.8;
	filter: alpha(opacity=80);
}
a:hover img.nop {
	opacity:1.0;
	filter: alpha(opacity=100);
}

.w10 { width: 10%; }
.w20 { width: 20%; }
.w30 { width: 30%; }
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }
.w90 { width: 90%; }

button {
  all: unset; /* すべてのスタイルを初期化（モダンな方法） */
  appearance: none; /* モバイルブラウザの装飾を削除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  line-height: normal;
}

input.w10, input.w20, input.w30, input.w40, input.w50, input.w60, input.w70, input.w80, input.w90 {
	height: 30px;
	padding: 5px;
	font-size: 14px;
	border: 1px solid #D6D6D6;
	border-radius: 3px;
}

textarea {
	height: 180px;
	border: 1px solid #D6D6D6;
}

select {
	height: 30px;
	margin: 5px 0;
	border: 1px solid #D6D6D6;
}

body {
    padding-top: 60px;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none; /* スマホ対策（任意） */
}

/* ヘッダー */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.2);
}

header .hdrWrap01 {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
    z-index: 2;
    background-color: white;
}

header h1 {
  font-size: 1.5em;
  margin: 0;
}

header h1 img {
    width: auto;
    height: 40px;
}

header #google_translate_element {
    position: absolute;
    top: 17px;
    right: 50px;
    z-index: 2;
}
/*
header #navBtn01 {
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-align: center;
    line-height: 15px;
    font-size: 10px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 2;
}

header #navBtn01 img {
    width: 30px;
    height: auto;
}
*/

header #navBtn01 {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 2;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

header #navBtn01 span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #707070;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* アクティブ状態（×に変化） */
header #navBtn01.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

header #navBtn01.active span:nth-child(2) {
  opacity: 0;
}

header #navBtn01.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

header nav {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100%;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-5%);
    transition: transform 0.2s ease-out, opacity 0.2s ease-out, visibility 0s linear 0.2s;
    padding-top: 60px;
    box-sizing: border-box;
    z-index: 1;
    pointer-events: none; /* ←非表示時にクリック無効 */
}

header nav.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
    pointer-events: auto;
}


header nav #navBtn02 {
    padding: 20px;
    background-color: #CCC;
    color: white;
    text-align: right;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

header nav ul {
    padding: 20px 0;
}

header nav ul li {
}

header nav ul li:nth-of-type(2) {
    padding-bottom: 30px;
}

header nav ul li dt,
header nav ul li a {
    display: block;
    font-size: 16px;
    color: black;
    text-decoration: none;
    padding: 10px;
    cursor: pointer;
}

header nav ul li a {
    padding-left: 25px;
    position: relative;
    background: url("../img/ico_links_01.png") no-repeat left 10px top 40% / 8px auto;
}

header nav ul li a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(-90deg);
    width: 10px;
    height: 10px;
    background: url("../img/ico_open_01.png") no-repeat center/contain;
}

header nav ul li dt:hover,
header nav ul li a:hover{
    font-weight: bold;
}

header nav ul li:first-of-type a {
    padding-left: 10px;
    background: none;
}

header nav ul li:first-of-type a::before,
header nav dt::before {
    content: "●";
    color: #E02576;
    margin-right: 0.5em;
    font-size: 10px;
    vertical-align: middle;
}

header nav ul li > a {
}

/* グループ化されたメニュー */
header nav ul li dl {
    padding-left: 15px;
}

header nav dt {
    background: url("../img/ico_open_01.png") no-repeat top 50% right 10px / 10px auto;
}

header nav dd {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-5%);
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

header nav dd.active {
    height: auto;
    overflow: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

header nav dd.active:last-of-type {
    padding-bottom: 30px;
}

#topimg {
    width: 100%;
    aspect-ratio: 2000 / 800; /* PC画像の比率 */
    background-image: url("../img/img_top_01.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-indent: -9999px;
}

/* スマートフォン用の画像切り替え（幅768px以下をスマホと想定） */
@media screen and (max-width: 768px) {
    #topimg {
        aspect-ratio: 750 / 1000; /* スマホ画像の比率 */
        background-image: url("../img/img_top_02.png");
    }
}

/* メイン */
main div.hdr01,
main div.hdr02 {
    width: 100%;
    position: relative;
}

main div.hdr01 h1,
main div.hdr02 h1{
    background-color: #E02576;
    color: white;
    font-size: 28px;
    text-align: center;
    line-height: 30px;
    padding: 30px 0;
    font-weight: bold;
}

main div.hdr02 h1 {
    text-align: left;
    padding-left: 20px;
}

main div.hdr02 p.box01 {
    position: absolute;
    top: 30px;
    right: 20px;
}

main div.hdr02 p.box01 label {
    color: white;
}

main div.hdr02 p.box01 select {
    margin: 0;
    border-radius: 3px;
}

main div.hdr01 #topicpath,
main div.hdr02 #topicpath {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
}

#topicpath a {
    text-decoration: none;
    color: black;
}

#topicpath a:hover {
    font-weight: bold;
}

/* フッター */
footer {
    margin-top: 20px;
}

footer p {
  background-color: #EEE;
  color: #555;
  text-align: center;
  padding: 20px;
  font-size: 10px;
}

div.wrapper01 {
    padding: 10px;
    max-width: 800px;
    margin: 20px auto 0;
}

div.wrapper02 {
    padding: 10px;
    max-width: 800px;
    margin: 0 auto;
}

div.wrapper01 .hdrType01 {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    background-color: #2D2367;
    color: white;
    text-align: center;
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    padding: 15px 0;
    border-radius: 25px;
    position: relative;
    z-index: 2;
}

div.wrapper01 .hdrType01::after {
    content: "";
    position: absolute;
    bottom: -5px; /* 下に三角形が出る */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #2D2367; /* 背景色と同じにする */
}

div.wrapper01 .hdrType02 {
    border-left: 2px solid #E12576;
    font-size: 18px;
    line-height: 30px;
    padding-left: 8px;
}

div.wrapper01 .mov01 {
    width: 100%;
    margin: 10px auto 0;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    position: relative;
}

div.wrapper01 .mov01 iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

div.wrapper01 .bnr01 {
    width: 100%;
    margin: 10px auto 0;
    padding-bottom: 30px;
}

div.wrapper01 .bnr01 img {
    width: 100%;
    height: auto;
}

ul.listType01 {
}

ul.listType01 li {
    padding: 10px 0;
    border-bottom: 1px solid #EEE;
}

ul.listType01 li a {
    display: block;
    position: relative;
    text-decoration: none;
    color: black;
}

ul.listType01 li a:hover {
    font-weight: bold;
}

ul.listType01 li a span.img01 img {
    width: 100%;
    height: auto;
}

ul.listType01 li a span.txt01,
ul.listType01 li a span.txt02 {
    display: block;
}

ul.listType01 li a span.txt02 {
    font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
}

dl.listType01 {
}

dl.listType01 dt {
    font-size: 18px;
    line-height: 20px;
    border-left: 2px solid #E02576;
    padding-left: 10px;
    font-weight: bold;
}

dl.listType01 dd {
    padding: 20px 0 40px;
    font-size: 16px;
    line-height: 30px;
}

dl.listType01 dd ul {
    overflow: hidden;
}

dl.listType01 dd ul li {
    float: left;
    padding-bottom: 10px;
}

dl.listType01 dd ul li.type01 {
    width: 16.66%;
}

dl.listType01 dd ul li.type02 {
    width: 40%;
}

dl.listType01 dd ul li.type03 {
    width: 60%;
}

dl.listType01 dd ul li a {
    display: block;
    width: 95%;
    margin: 0 auto;
    line-height: 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

dl.listType01 dd ul li.type01 a {
    border-radius: 20px;
    background-color: #BA1DC6;
    padding: 10px 0;
}

dl.listType01 dd ul li.type02 a,
dl.listType01 dd ul li.type03 a{
    border-radius: 5px;
    background-color: #013378;
    padding: 20px 0;
}

div.wrapType01 {
}

div.wrapType01 .hdr01 {
    width: 100%;
    position: relative;
}

div.wrapType01 .hdr01 h2 {
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
}

div.wrapType01 .hdr01 h2.category1 {
    padding-left: 50px;
    background: url("../img/ico_x_01.png") no-repeat 0 5px / 40px auto;
}

div.wrapType01 .hdr01 h2.category2 {
    padding-left: 50px;
    background: url("../img/ico_insta_01.png") no-repeat 0 5px / 40px auto;
}

div.wrapType01 .hdr01 h2.category3 {
    padding-left: 50px;
    background: url("../img/ico_ctc_01.png") no-repeat 0 5px / 40px auto;
}

div.wrapType01 .hdr01 h2.category4 {
    padding-left: 50px;
    background: url("../img/ico_minkan_01.png") no-repeat 0 5px / 40px auto;
}

div.wrapType01 .hdr01 .img01 {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}

div.wrapType01 .hdr01 .img01 img {
    width: 100%;
    height: auto;
}

div.wrapType01 .body01 {
    margin-top: 20px;
    font-size: 16px;
    line-height: 30px;
}

div.wrapType01 .body01 table {
    width: 100%!important;
}
div.wrapType01 .body01 table,
div.wrapType01 .body01 table th,
div.wrapType01 .body01 table td {
  border: 1px solid #CCC; /* 黒の1px実線 */
  border-collapse: collapse; /* 罫線が重ならないように */
}

div.wrapType01 .body01 img {
    max-width: 100%;
    height: auto;
}

div.wrapType01 .body01 table td {
    padding: 10px;
    font-size: 14px;
    line-height: 30px;
}

ul.playerList01 {
    width: 100%;
    margin-top: 10px;
}

ul.playerList01 li {
    width: 100%;
    background-color: #EEE;
    margin-top: 10px;
}

ul.playerList01 li:first-of-type {
    margin-top: 0;
}

ul.playerList01 li a {
    display: block;
    padding: 10px 10px 10px 120px;
    min-height: 120px;
    position: relative;
    color: black;
    text-decoration: none;
}

ul.playerList01 li a span {
    display: block;
}

ul.playerList01 li a .lb01 {
    display: block;
    width: 100px;
    float: left;
    position: absolute;
    top: 10px;
    left: 10px;
}

ul.playerList01 li a .grade {
    width: 40%;
    float: left;
    line-height: 20px;
    background-color: #BA1DC6;
    color: white;
    font-weight: bold;
    text-align: center;
}

ul.playerList01 li a .prefecture {
    width: 60%;
    float: right;
    text-align: center;
}

ul.playerList01 li a .player_image {
    clear: both;
    width: 100px;
    height: 100px;
}

ul.playerList01 li a .rb01 {
    position: relative;
}

ul.playerList01 li a .name {
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}

ul.playerList01 li a .ranking {
    width: 120px;
    text-align: center;
    border-radius: 20px;
    line-height: 20px;
    padding: 4px 0;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #DBF51F;
}

ul.playerList01 li a .racename {
    width: 120px;
    text-align: center;
    border-radius: 20px;
    line-height: 20px;
    padding: 4px 0;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #E12576;
    color: white;
}

ul.playerList01 li a .racename01 {
    background-color: #098F36;
}

ul.playerList01 li a .racename02 {
    background-color: #1F4EC0;
}

ul.playerList01 li a .ranking .votes {
    font-size: 12px;
    line-height: 12px;
    font-weight: normal;
}

ul.playerList01 li a .race_date {
}

ul.playerList01 li a .result {
}

ul.playerList01 li a .playerList01 p {
}

dl.filesList01 {
    padding: 10px;
}

dl.filesList01 dt {
    font-size: 16px;
    line-height: 20px;
    border-left: 2px solid #E02576;
    padding-left: 10px;
    font-weight: bold;
}

dl.filesList01 dd {
    padding-bottom: 40px;
}

dl.filesList01 dd p.btn01 {
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
}

dl.filesList01 dd p.btn01 a {
    display: block;
    width: 100%;
    background-color: #003378;
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
}

div.tableWrap01 {
    width: 100%;
}

div.tableWrap01 ul.tabList01 {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

div.tableWrap01 ul.tabList01 li {
    width: 16.666%;
    box-sizing: border-box;
    float: left;
    text-align: center;
    border: 1px solid #CCC;
    border-left: none;
    background-color: #EEE;
    line-height: 20px;
    padding: 15px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

div.tableWrap01 ul.tabList01 li:first-of-type {
    border-left: 1px solid #CCC;
    border-radius: 5px 0 0 0;
}

div.tableWrap01 ul.tabList01 li:last-of-type {
    border-radius: 0 5px 0 0;
}

div.tableWrap01 ul.tabList01 li.active {
    background-color: #BA1DC5;
    color: white;
    cursor: default;
}

div.tableWrap01 ul.contentsList01 {
    width: 100%;
}

div.tableWrap01 ul.contentsList01 li {
    width: 100%;
}

div.tableWrap01 ul.contentsList01 li table {
    width: 100%;
    border-top: 1px solid #CCC;
    border-left: 1px solid #CCC;
    border-collapse: collapse;
    box-sizing: border-box;
}

div.tableWrap01 ul.contentsList01 li table th,
div.tableWrap01 ul.contentsList01 li table td {
    text-align: center;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    margin: 0;
    padding: 10px 0;
    box-sizing: border-box;
}

div.tableWrap01 ul.contentsList01 li table tbody td {
    font-size: 16px;
}

div.tableWrap01 ul.contentsList01 li table tr th {
    width: 22%;
    background-color: #F1F8FE;
    font-weight: bold;
}

div.tableWrap01 ul.contentsList01 li table tr th:first-of-type {
    background-color: #D0E9FF;
}

div.tableWrap01 ul.contentsList01 li table th:first-of-type {
    width: 12%;
}

#mapArea {
    position: relative;
}
.map-image {
  width: 100%;
  height: auto;
  display: block;
}
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  color: red;
  font-size: clamp(14px, 2vw, 24px);
  pointer-events: auto;
  z-index: 5;
}
.controls { margin-bottom: 20px; }
#pinPopup {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 10;
    display: none;
}
#pinPopup button {
    margin-left: 5px;
}

.slider {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slider li {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slider img,
.slider iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slick-dots {
  text-align: center;
  margin-top: 1em;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}

.slick-dots .slick-active button {
  background: #333;
}

.swiper {
  width: 100%;
  box-sizing: border-box;
}

.box-a .swiper-slide {
  text-align: center;
  font-size: 20px;
  background: #eee;
    opacity: 0.6;
}

.box-a .swiper-slide-active {
    opacity: 1;
}

.box-b .swiper-slide {
  text-align: center;
  font-size: 24px;
  background: #F5F5F5;
}

.box-a .swiper-slide a {
    display: block;
    color: black;
    text-decoration: none;
    position: relative;
    width: 80%;
    padding: 10%;
}

.box-a .swiper-slide-active a {
    width: 100%;
    padding: 0;
}

.box-a .swiper-slide a span {
    display: block;
}

.box-a .swiper-slide a span.img {
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.box-a .swiper-slide-active a span.img {
    border: 1px solid #EEE;
}

.box-a .swiper-slide a span.img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.box-a .swiper-slide a span.grade {
    width: 30%;
    text-align: center;
    background-color: #BA1DC5;
    color: white;
    font-size: clamp(10px, 2vw, 12px);
    line-height: 1.5;
    font-weight: bold;
    position: absolute;
    top: 8%;
    left: 10%;
}

.box-a .swiper-slide-active a span.grade {
    line-height: 20px;
    top: 0;
    left: 0;
}

.box-a .swiper-slide a span.prefecture {
    padding-left: 40px;
    font-size: clamp(10px, 2vw, 12px);
    line-height: 1.5;
    font-weight: bold;
}

.box-a .swiper-slide-active a span.prefecture {
    padding-left: 40px;
    font-size: 12px;
    line-height: 20px;
    font-weight: bold;
}

.box-a .swiper-slide a span.name {
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    background-color: white;
}

.box-a .swiper-slide-active a span.name {
    background-color: #2D2367;
    color: white;
}


.box-b .swiper-slide a {
    display: block;
    color: black;
    text-decoration: none;
    position: relative;
    padding: 20px;
}

.box-b .swiper-slide a .topWrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.box-b .swiper-slide a span {
    display: block;
}

.box-b .swiper-slide a span.img {
    width: 50%;
    max-width: 300px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.box-b .swiper-slide a span.img img {
    width: 100%;
    height: auto;
}

.box-b .swiper-slide a span.playerDetail01 {
    flex: 1;
    box-sizing: border-box;
    text-align: left;
}

.box-b .swiper-slide a span.playerDetail01 .name {
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
}

.box-b .swiper-slide a span.playerDetail01 .txt01 {
    font-size: 14px;
    line-height: 20px;
}

.box-b .swiper-slide a span.playerDetail01 .rank {
    width: 100%;
    max-width: 180px;
    text-align: center;
    background-color: #DBF51F;
    font-size: 18px;
    line-height: 30px;
    padding: 10px 0;
    border-radius: 25px;
    margin: 20px 0;
}

.box-b .swiper-slide a span.playerDetail01 .race {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.box-b .swiper-slide a span.playerDetail02 {
    width: 100%;
    margin-top: 10px;
    text-align: left;
}

.box-b .swiper-slide a span.playerDetail02 span {
    font-size: 14px;
    line-height: 30px;
}

/* ドットをスライダーの外に配置するため明示的に block と余白を指定 */
.swiper-pagination {
  position: relative !important; /* デフォルトの絶対位置を上書き */
  margin: 10px auto;
  text-align: center;
}

/* box-Aのマージン調整（必要であれば） */
.box-a {
  margin-bottom: 20px;
}

#news {
    margin-top: 40px;
}

#campaign img {
    max-width: 100%;
    height: auto;
}

#allstar {
    margin-top: 40px;
}

#allstar div {
    background-color: #F5F5F5;
    padding: 40px 20px 20px;
    margin-top: -20px;
    font-size: 16px;
    line-height: 30px;
}

#player {
    margin-top: 40px;
}

#player .swiper {
    margin-top: 20px;
}

.eventWrapper01 {
    margin-top: 40px;
    padding-bottom: 40px;
}

.eventNone01 {
    text-align: center;
    padding: 50px 0;
}

div.wrapper01 .eventWrapper01 .hdrType01 {
    margin-bottom: 20px;
}

.eventInner01 {
    padding: 10px 10px 40px;
}

.eventWrapper01 h2 {
    margin-bottom: 30px;
}

.eventWrapper01 h3 {
    font-size: 16px;
    line-height: 20px;
    border-left: 2px solid #E02576;
    padding-left: 10px;
    font-weight: bold;
}

.eventWrapper01 .img {
    margin-top: 20px;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #333;
}

.eventWrapper01 .img img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
}

.eventWrapper01 .eventHdr01 {
    margin-top: 10px;
}

.eventWrapper01 .eventHdr01 .cate00,
.eventWrapper01 .eventHdr01 .cate01,
.eventWrapper01 .eventHdr01 .cate02,
.eventWrapper01 .eventHdr01 .cate03 {
    width: 50%;
    float: left;
    background-color: #E12576;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 0;
    border-radius: 3px;
}

.eventWrapper01 .eventHdr01 .place {
    width: 50%;
    float: right;
    text-align: center;
}

.eventWrapper01 .eventHdr01 .place a {
    color: #555;
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.eventWrapper01 .eventHdr01 .eventTime01 {
    clear: both;
    font-size: 14px;
    padding-top: 10px;
}

.eventWrapper01 .eventHdr01 .eventTime01 h4 {
    width: 80px;
    display: block;
    background: url("../img/ico_time_01.png") no-repeat 10px 50% / 20px auto #DC69C1;
    color: white;
    padding: 5px 10px 5px 40px;
    border-radius: 3px;
    float: left;
}

.eventWrapper01 .eventHdr01 .eventTime01 > div {
    padding-top: 10px;
}

.eventWrapper01 .eventHdr01 .eventTime01 .event-time-text {
    min-width: 200px;
    padding: 5px 0 5px 10px;
    line-height: 20px;
    font-size: 16px;
    float: left;
}

.eventWrapper01 .eventHdr01 .eventTime01 .event-time-table {
    clear: both;
    padding-top: 10px;
}

.eventWrapper01 .eventHdr01 .eventTime01 table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed; /* 必要なら均等にカラム幅を揃えます */
}

.eventWrapper01 .body {
    font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
}

.eventWrapper01 .body img {
    max-width: 100%;
    height: auto;
}

.eventWrapper01 .eventHdr01 .eventTime01 table.event-schedule-table th,
.eventWrapper01 .eventHdr01 .eventTime01 table.event-schedule-table td {
    border: 1px solid #CCC;
    padding: 8px;
    text-align: center;
}

p.btnType01,
p.btnType02,
p.btnType03 {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
}

p.btnType01 a,
p.btnType02 a,
p.btnType03 a {
    display: block;
    width: 100%;
    line-height: 20px;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
}

p.btnType01 a {
    color: black;
    background: url("../img/ico_rank_01.png") no-repeat left 15% top 50% / auto 24px,
                url("../img/bg_btn_01.png") no-repeat center/cover;
}

p.btnType02 a {
    color: white;
    background: url("../img/ico_memo_01.png") no-repeat left 15% top 50% / auto 24px,
                url("../img/bg_btn_02.png") no-repeat center/cover;
}

p.btnType03 a {
    color: #FFF;
    background: #004BB1;
}

#links {
    width: 100%;
    margin-top: 40px;
}
ul.listType02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.listType02 li {
    
}
ul.listType02 li a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    line-height: 1.4;
    overflow: hidden;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px 0 5px 20px;
}
ul.listType02 li:nth-of-type(1) a {
    background: url("../img/ico_memo_01.png") no-repeat 10% 50% / auto 20px #E12576;
}
ul.listType02 li:nth-of-type(2) a {
    background: url("../img/ico_rank_02.png") no-repeat 10% 50% / auto 20px #E12576;
}
ul.listType02 li:nth-of-type(3) a {
    background: url("../img/ico_info_01.png") no-repeat 10% 50% / auto 20px #E12576;
}
ul.listType02 li:nth-of-type(4) a {
    background: url("../img/ico_race_01.png") no-repeat 10% 50% / auto 20px #E12576;
}

#campaign {
    width: 100%;
    margin-top: 40px;
}

#campaign ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#campaign ul li {
    padding-bottom: 20px;
}

#campaign ul li a {
    display: block;
    color: black;
    text-decoration: none;
}

#campaign ul li .imgBox01 {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #F5F5F5;
}

#campaign ul li .imgBox01 img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
}

#campaign ul li .txtBox01 {
    display: block;
    margin-top: 10px;
    padding-left: 50px;
    position: relative;
}

#campaign ul li .cate1:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 20px;
    border-radius: 5px;
    background: url("../img/ico_x_01.png") no-repeat 0 0 / 40px auto;
}

#campaign ul li .cate2:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 20px;
    border-radius: 5px;
    background: url("../img/ico_insta_01.png") no-repeat 0 0 / 40px auto;
}

#campaign ul li .cate3:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 20px;
    border-radius: 5px;
    background: url("../img/ico_ctc_01.png") no-repeat 0 0 / 40px auto;
}

#campaign ul li .cate4:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 20px;
    border-radius: 5px;
    background: url("../img/ico_minkan_01.png") no-repeat 0 0 / 40px auto;
}

ul.listType03 {
    margin-top: 20px;
}

ul.listType03 li {
    margin-top: 10px;
    background-color: #F5F5F5;
    padding: 10px;
}

ul.listType03 li:first-of-type {
    margin-top: 0;
}

ul.listType03 li p.txt01 {
    width: 150px;
    text-align: center;
    background-color: #333;
    color: white;
    line-height: 20px;
    padding: 5px 0;
    border-radius: 15px;
    font-size: 16px;
}

ul.listType03 li > div {
    font-size: 16px;
    line-height: 30px;
    margin-top: 10px;
}

ul.listType03 li > div img {
    max-width: 100%;
    height: auto;
}

#eventWrapper {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 0;
}

#eventLinks01 {
    margin: 20px auto 0;
    width: 100%;
    max-width: 820px;
    padding: 0 10px;
    box-sizing: border-box;
}

#eventLinks01 ul {
    display: flex;
    gap: 5px;
}

#eventLinks01 ul li {
    flex: 1 1 0;
}

#eventLinks01 ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 50px 0 10px;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
}

#eventLinks01 ul li:nth-of-type(1) a {
    background: url("../img/ico_map_01.png") no-repeat left 50% top 10px / auto 30px #4291D6;
}

#eventLinks01 ul li:nth-of-type(2) a {
    background: url("../img/ico_leaflet_01.png") no-repeat left 50% top 10px / auto 30px #32B95A;
}

#eventLinks01 ul li:nth-of-type(3) a {
    background: url("../img/ico_time_02.png") no-repeat left 50% top 10px / auto 30px #DC69C1;
}

#eventDateTab {
    width: 100%;
}

#eventDateTab > div {
    height: 80px;
    background-color: #BA1DC5;
}

#eventDateTab.mapArea {
    margin-top: 40px;
}

#eventDateTab.mapArea > div {
    height: 5px;
}

#eventDateTab ul {
    margin: 0 10px;
    display: flex;
    gap: 1px;
}

#eventDateTab ul li {
    flex: 1 1 auto;
    height: 40px;
}

#eventDateTab ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    text-decoration: none;
    border-radius: 5px 5px 0 0;
    color: white;
    background-color: #C5C5C5;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

#eventDateTab ul li a.active {
    background-color: #BA1DC5;
}

.eventFormWrap01,
.eventFormWrap02 {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

.eventFormWrap01 {
    margin-top: -70px;
}

.eventFormInner01 {
    background-color: white;
    border: 1px solid #D9D3D3;
    padding: 10px;
    border-radius: 3px;
}

.eventFormInner01 h2 {
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 10px;
}

.eventFormInner01 label {
    min-width: 80px;
    display: inline-block;
    background-color: #EFEAEA;
    line-height: 20px;
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 10px;
}

.eventFormInner01 button {
    display: inline-block;
    width: 100px;
    line-height: 20px;
    padding: 8px 0;
    text-align: center;
    background-color: #004BB1;
    color: white;
    font-weight: bold;
    margin: 0 auto;
    border-radius: 20px;
}

dl.listType04 {
    margin-top: 20px;
    padding-bottom: 40px;
}

dl.listType04 dt,
dl.listType04 dd {
    background-color: #F5F5F5;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 24px;
}

dl.listType04 dt span.txt01,
dl.listType04 dd span.txt01 {
    font-size: 12px;
    color: #666;
}

dl.listType04 dt {
    margin-top: 2px;
    padding-top: 10px;
    color: #666;
}

dl.listType04 dt:first-of-type {
    margin-top: 0;
}

dl.listType04 dd {
    padding-bottom: 10px;
}

dl.listType04 dd img {
    max-width: 100%;
    height: auto;
}

p.btnBox01 {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 40px;
}

p.btnBox01 a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: left;
    height: 60px;
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    padding-left: 50px;
    background: url("../img/ico_time_02.png") no-repeat 20px 50% / auto 24px #013378;
}

#gmap {
    margin-top: 20px;
}

.gmap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

.txtBox02 {
    font-size: 16px;
    line-height: 30px;
    margin-top: 20px;
    padding-bottom: 40px;
}

.txtBox03 {
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 40px;
    background-color: #F5F5F5;
    padding: 20px;
    margin-top: -20px;
    margin-bottom: 40px;
}

.icoTel01 {
    display: block;
    padding-left: 20px;
    background: url("../img/ico_tel_01.png") no-repeat 0 50% / auto 16px;
    color: black;
    text-decoration: none;
}

.topSlide01 {
    width: 100%;
    padding: 40px 0 20px;
}

.topSlide01 > ul{
    max-width: 800px;
    margin: 0 auto;
}

.timetableTxt01 {
    font-size: clamp(12px, 2vw, 16px);
    text-align: right;
}

#goog-gt-tt {
    display: none!important;
}

div.skiptranslate > iframe.skiptranslate {
    display: none!important;
}

body {
    top: 0!important;
}