@charset "UTF-8";
/*!
Theme Name: 2025 WP THEME made by kiki verb Co., Ltd.
Theme URI: https://www.kiki-verb.com/
Description: WP THEME made by kiki verb Co., Ltd.
Author: kiki verb Co., Ltd.
Author URI: https://www.kiki-verb.com/
Version: 1.0
*/
body.mceContentBody {
  min-width: inherit;
}

.mceContentBody h2 {
  font-size: 27px;
  font-weight: bold;
}
.mceContentBody h3 {
  font-size: 21px;
  font-weight: bold;
}
.mceContentBody h4 {
  font-size: 18px;
}
.mceContentBody h5 {
  font-size: 15px;
  font-weight: bold;
}
.mceContentBody h6 {
  font-size: 15px;
}
.mceContentBody p {
  display: block;
  margin: 1rem 0;
}
.mceContentBody ol, .mceContentBody ul {
  margin: 0 0 3rem 2rem;
  list-style: outside disc;
}
.mceContentBody ol ol, .mceContentBody ol ul, .mceContentBody ul ol, .mceContentBody ul ul {
  margin-bottom: 0;
}
.mceContentBody ol.prevention, .mceContentBody ul.prevention {
  position: relative;
  list-style: none;
}
.mceContentBody ol.prevention::before, .mceContentBody ul.prevention::before {
  content: "■";
  position: absolute;
  left: -1rem;
}
.mceContentBody ol.prevention ol, .mceContentBody ol.prevention ul, .mceContentBody ul.prevention ol, .mceContentBody ul.prevention ul {
  list-style: outside disc;
}
.mceContentBody ol.prevention ol::before, .mceContentBody ol.prevention ul::before, .mceContentBody ul.prevention ol::before, .mceContentBody ul.prevention ul::before {
  content: "";
}
.mceContentBody strong {
  font-weight: bold;
}
.mceContentBody em {
  font-style: italic;
}
.mceContentBody blockquote {
  display: block;
  -webkit-margin-before: 1rem;
  -webkit-margin-after: 1rem;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.mceContentBody .aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.mceContentBody .alignright {
  float: right;
  margin-left: 1rem;
}
.mceContentBody .alignleft {
  float: left;
  margin-right: 1rem;
}
.mceContentBody img[class*=wp-image-], .mceContentBody img[class*=attachment-] {
  height: auto;
  max-width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mceContentBody iframe {
  height: 400px;
  width: 100%;
}
.mceContentBody a {
  text-decoration: underline;
}
.mceContentBody p.wp-caption-text {
  margin-top: -1rem;
}

#tinymce h2 {
  font-size: 5.76vw;
}
#tinymce h3 {
  font-size: 3.6vw;
}
#tinymce h4 {
  font-size: 3.06vw;
}
#tinymce h5 {
  font-size: 2.52vw;
}
#tinymce h6 {
  font-size: 2.52vw;
}
#tinymce p {
  font-size: 2.34vw;
}

/*======================================
	■Animation
======================================*/
@keyframes pulse {
  0% {
    fill: #000;
  }
  80% {
    fill: #fff;
    filter: drop-shadow(0 0 5px #fd5);
  }
}
.spark_1, .spark_2, .spark_3 {
  fill: #000;
  animation-duration: 2s;
  animation-name: pulse;
  animation-iteration-count: infinite;
}

.spark_1 {
  animation-delay: 0.1s;
}

.spark_2 {
  animation-delay: 0.2s;
}

.spark_3 {
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-duration: 1.5s;
  animation-name: fadeIn;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-duration: 1.5s;
  animation-name: fadeInLeft;
  animation-fill-mode: both;
}

body {
  background-color: #fff;
  color: #222;
  font: 1.1vw/1.9 "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  position: relative;
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  color: #4da5b6;
}

.mincho {
  font-family: "Hina Mincho", serif;
}

header {
  background-color: #003250;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  border: 0;
  z-index: 99;
  height: 6vw;
}
header ul {
  display: flex;
  align-items: center;
  padding: 1vw 0;
}
header ul li {
  width: 12.5%;
  text-align: center;
  border-left: 1px solid #fff;
  line-height: 1.4;
}
header ul li:first-child {
  border-left: none;
}
header ul li.pamphlet {
  border-left: none;
  background-color: #e58294;
}
header ul a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.5vw 0;
}
header ul li.current a {
  color: #4da5b6;
}
header ul li.pamphlet a:hover {
  color: #003250;
}

body > section {
  width: 100%;
  position: relative;
}

.staticContent {
  margin-top: 5vw;
}

.staticPageContent {
  margin: 15vw auto 7.5vw;
}
.staticPageContent .title {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
  margin-bottom: 7.5vw;
}
.staticPageContent .title::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
.staticPageContent .content {
  width: 80vw;
  margin: 0 auto;
}
.staticPageContent .content h1 {
  font-size: 2.4vw;
}

#loading {
  width: 100%;
  height: 100vh;
  background: linear-gradient(#313151, #000);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#loading svg {
  width: 30vw;
  height: 30vw;
}

footer {
  background-color: #e4e4e4;
}
footer nav {
  padding: 2vw 5%;
}
footer nav ul {
  display: flex;
  padding: 1vw 0;
  gap: 0 3.5vw;
}
footer nav ul a {
  color: #222;
}
footer small {
  display: block;
  text-align: center;
  padding: 1vw;
  background-color: #dbdbdb;
}

#floatBox {
  position: fixed;
  top: 6vw;
  left: 1vw;
  z-index: 2;
}
#floatBox ul {
  display: flex;
}
#floatBox ul li.floatBox_ticket {
  width: 6vw;
  margin-right: 0.5vw;
}
#floatBox ul li.floatBox_ticket img {
  width: 100%;
}
#floatBox ul li:not(.floatBox_ticket) {
  width: 3.5vw;
  position: relative;
}
#floatBox ul li:not(.floatBox_ticket) img {
  width: 100%;
}

#topKv {
  position: relative;
}
#topKv img {
  width: 100%;
}
#topKv p {
  text-align: center;
  font-size: 1.5vw;
  padding: 2vw 0;
}
#topKv p a {
  color: #c12e31;
  text-decoration: underline;
}
#topKv p a span {
  display: block;
  font-size: 1.1vw;
}

#topMovie {
  padding: 2vw;
  background-color: #000;
}
#topMovie iframe {
  width: 70%;
  margin: 0 auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

#news {
  background-color: #283250;
  position: relative;
}
#news::before {
  content: "";
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/top/top_news_flower-rt.webp") no-repeat right top/50%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 40%;
}
#news::after {
  content: "";
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/top/top_news_flower-lb.webp") no-repeat left bottom/50%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 50%;
}
#news .content {
  width: 80vw;
  margin: 0 auto;
  padding: 5vw 0;
}
#news .content h2 {
  width: 12vw;
  margin-bottom: 2vw;
}
#news .content h2 img {
  width: 100%;
}
#news .content .newsLists {
  position: relative;
  z-index: 1;
}
#news .content .newsLists .newsList {
  display: block;
  margin-top: 2px;
  background-color: #fff;
  padding: 1.5vw 2vw;
}
#news .content .newsLists .newsList:hover {
  box-shadow: 0 0 15px rgb(255, 255, 255);
}
#news .content .newsLists .newsList h3 {
  font-size: 1.8vw;
  line-height: 1.4;
  color: #003250;
}
#news .content .newsLists .newsList time {
  color: #979797;
  display: block;
  margin-bottom: 1vw;
}
#news .content .newsLists .newsList .post_content {
  color: #222;
  line-height: 1.4;
}
#news .content .newsBtn {
  text-align: center;
  margin: 5vw auto 0;
  width: 35vw;
  position: relative;
  z-index: 1;
}
#news .content .newsBtn a {
  display: block;
}
#news .content .newsBtn a:hover {
  box-shadow: 0 0 15px rgb(255, 255, 255);
}

#introduce .content {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/top/top_introduce_bg.webp") #000 no-repeat top center/cover;
  padding: 3vw 0 5vw;
}
#introduce .content h2 {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 2.4vw;
  margin: 7.5vw 0;
  text-shadow: 0 0 3px #000000, 0 0 7px #000000, 0 0 12px #000000;
}
#introduce .content p {
  text-align: center;
  color: #fff;
  line-height: 2.2;
  font-size: 1.4vw;
  font-weight: bold;
  text-shadow: 0 0 3px #000000, 0 0 7px #000000, 0 0 12px #000000;
}
#introduce .content p span {
  color: #cf6288;
}

#topBanner {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/ticket/souvenir_bg.png") no-repeat top center/cover;
  padding: 2vw 5vw 5vw;
}
#topBanner div {
  margin-top: 3vw;
}
#topBanner div h2 {
  background-color: #222;
  color: #fff;
  padding: 0 1vw;
  font-size: 1.6vw;
}
#topBanner div ul {
  display: flex;
  gap: 1vw;
  margin-top: 0.5vw;
}
#topBanner div ul h2 {
  margin-bottom: 0.5vw;
}
#topBanner div img {
  width: 100%;
}

#sponsor {
  padding: 7vw 0 5vw;
  background-color: #f0f0f0;
}
#sponsor div {
  text-align: center;
  margin-top: 5vw;
}
#sponsor div h2 {
  margin: 0 auto 1.5vw;
  font-size: 2.4vw;
  font-weight: bold;
}
#sponsor div h3 {
  font-size: 3.6vw;
  color: #27324F;
  margin-bottom: 1.5vw;
}
#sponsor div ul {
  display: flex;
  justify-content: center;
  gap: 1.5vw;
  flex-wrap: wrap;
}
#sponsor div ul li {
  display: flex;
}
#sponsor div ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29vw;
  background-color: #fff;
  padding: 1vw 1.5vw 0.5vw;
  text-align: center;
  color: #222;
  min-height: 12vw;
}
#sponsor div ul li a img {
  height: 7.5vw;
  object-fit: contain;
}
#sponsor div ul li a figcaption {
  padding-top: 1vw;
}
#sponsor div ul li a:hover {
  background-color: #f7f7f7;
  box-shadow: 0 0 15px #dbdbdb;
}
#sponsor div ul li a p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2vw;
  line-height: 1.4;
}
#sponsor div .sponsor_addition {
  margin: 0 5vw;
  text-align: right;
}
#sponsor div.sponsor_special a {
  width: 50vw;
  padding: 2vw 1.5vw 0.5vw;
  font-size: 2.2vw;
}
#sponsor div.sponsor_special a img {
  height: 8vw;
}
#sponsor #sponsor_inquiry {
  margin: 5vw 5vw 0;
}
#sponsor #sponsor_inquiry a {
  display: block;
  width: 100%;
  font-size: 1.6vw;
  text-align: center;
  padding: 1vw;
  border: 1px solid #FF2A5F;
  background-color: #FECBD9;
  color: #FF2A5F;
}
#sponsor #sponsor_inquiry a:hover {
  background-color: #FF2A5F;
  color: #fff;
}

.single-post #news {
  padding-top: 2vw;
}
.single-post #news .newsList:hover {
  box-shadow: none !important;
}

.page-aboutus {
  padding-top: 6vw;
}
.page-aboutus #about_introduce {
  margin: 15vw auto 7.5vw;
}
.page-aboutus #about_introduce h2 {
  width: 65vw;
  margin: 0 auto 5vw;
}
.page-aboutus #about_introduce ul {
  display: flex;
}
.page-aboutus #about_introduce ul li {
  flex: 0 0 50%;
  text-align: center;
}
.page-aboutus #about_introduce ul li img {
  width: 100%;
}
.page-aboutus #about_introduce ul li figcaption {
  font-size: 0.9vw;
  padding-top: 0.75vw;
}
.page-aboutus #about_introduce div {
  margin: 5vw 0;
  text-align: center;
}
.page-aboutus #about_introduce div h3 {
  font-size: 2.4vw;
  margin-bottom: 1.5vw;
  font-weight: bold;
}
.page-aboutus #about_introduce div p {
  line-height: 2.2;
}
.page-aboutus #about_summary {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/about/about_bg_summary.png") no-repeat top center/cover;
  color: #fff;
}
.page-aboutus #about_summary .content {
  padding: 7.5vw 10vw;
}
.page-aboutus #about_summary .content h2 {
  font-size: 2.4vw;
  margin-bottom: 5vw;
  padding-bottom: 1.5vw;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #fff;
  letter-spacing: 5px;
}
.page-aboutus #about_summary .content div table {
  width: 100%;
  margin: 0 auto;
  font-size: 1.4vw;
}
.page-aboutus #about_summary .content div table th, .page-aboutus #about_summary .content div table td {
  vertical-align: top;
}
.page-aboutus #about_summary .content div table th {
  width: 18%;
}
.page-aboutus #about_summary .content div table td {
  padding-left: 1.5vw;
}
.page-aboutus #about_summary .content div table td a {
  color: #fff;
  text-decoration: underline;
}

.page-overview {
  padding-top: 4.5vw;
}
.page-overview #about_summary {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/about/about_bg_summary.png") no-repeat top center/cover;
  color: #fff;
}
.page-overview #about_summary .content {
  padding: 7.5vw 10vw;
}
.page-overview #about_summary .content h2 {
  font-size: 2.4vw;
  margin-bottom: 5vw;
  padding-bottom: 1.5vw;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #fff;
  letter-spacing: 5px;
}
.page-overview #about_summary .content div table {
  width: 100%;
  margin: 0 auto;
  font-size: 1.4vw;
}
.page-overview #about_summary .content div table th, .page-overview #about_summary .content div table td {
  vertical-align: top;
}
.page-overview #about_summary .content div table th {
  width: 18%;
}
.page-overview #about_summary .content div table td {
  padding-left: 1.5vw;
}
.page-overview #about_summary .content div table td a {
  color: #fff;
  text-decoration: underline;
}
.page-overview #about_summary .content div table td a#toSpecial {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0 1vw;
  margin: 0.5vw 0;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 1.2vw;
}
.page-overview #about_summary .content div table td a#toSpecial:hover {
  background-color: #fff;
  color: #222;
}
.page-overview #about_introduce {
  margin: 3.5vw auto;
}
.page-overview #about_introduce h2 {
  width: 20vw;
  margin: 0 0 2.5vw 2.5vw;
}
.page-overview #about_introduce h2 img {
  width: 100%;
}
.page-overview #about_introduce h3 {
  text-align: center;
  color: #003250;
  font-size: 4.2vw;
  line-height: 1.4;
  margin: 0 auto 5vw;
}
.page-overview #about_introduce ul {
  display: flex;
}
.page-overview #about_introduce ul li {
  flex: 0 0 50%;
  text-align: center;
}
.page-overview #about_introduce ul li img {
  width: 100%;
}
.page-overview #about_introduce ul li figcaption {
  font-size: 0.9vw;
  padding-top: 0.75vw;
}
.page-overview #about_introduce div {
  margin: 5vw 0;
  text-align: center;
}
.page-overview #about_introduce div h4 {
  font-size: 2.4vw;
  margin-bottom: 1.5vw;
  font-weight: bold;
}
.page-overview #about_introduce div p {
  line-height: 2.2;
}

.page-ticket {
  margin: 5vw auto 0;
}
.page-ticket #areamap {
  background-color: #004972;
  padding-bottom: 1vw;
  margin-top: 6vw;
  width: 100%;
  overflow: hidden;
}
.page-ticket #areamap .content {
  position: relative;
}
.page-ticket #areamap .content #areamap_variationMap img {
  width: 100%;
}
.page-ticket #areamap .content #areamap_headline {
  width: fit-content;
  padding: 0.25vw 1vw;
  background-color: #fff;
  color: #004972;
  font-weight: bold;
  font-size: 1.5vw;
  position: absolute;
  top: 7vw;
  left: 31%;
}
.page-ticket #areamap .content #areamap_seatlist {
  position: absolute;
  top: 12vw;
  left: 1vw;
  display: flex;
  justify-content: center;
  width: 98vw;
  gap: 1vw;
  line-height: 1.4;
}
.page-ticket #areamap .content #areamap_seatlist div {
  flex: 0 0 48.5vw;
}
.page-ticket #areamap .content #areamap_seatlist div ul {
  margin-bottom: 0.5vw;
}
.page-ticket #areamap .content #areamap_seatlist div ul li a {
  display: flex;
  align-items: center;
  color: #222;
  padding: 0.25vw 0.5vw;
}
.page-ticket #areamap .content #areamap_seatlist div ul li a .areamap_seatlist_alpha {
  font-weight: bold;
  font-size: 1.5vw;
  text-align: center;
  flex: 0 0 1.3vw;
}
.page-ticket #areamap .content #areamap_seatlist div ul li a .areamap_seatlist_name {
  font-weight: bold;
  padding-left: 0.75vw;
  font-size: 1vw;
}
.page-ticket #areamap .content #areamap_seatlist div ul li a .areamap_seatlist_name span {
  font-size: 0.75vw;
}
.page-ticket #areamap .content #areamap_seatlist div ul li a .areamap_seatlist_price {
  padding-left: 0.5vw;
  margin-left: 0.5vw;
  border-left: 1px solid #555;
  font-size: 0.75vw;
}
.page-ticket #areamap .content #areamap_seatlist div ul li a .areamap_seatlist_type {
  padding-left: 0.5vw;
  margin-left: 0.5vw;
  border-left: 1px solid #555;
  font-size: 0.75vw;
}
.page-ticket #areamap .content #areamap_seatlist div ul#areamap_seatlist-starring a {
  background-color: #fcbec1;
}
.page-ticket #areamap .content #areamap_seatlist div ul#areamap_seatlist-starring li:nth-of-type(even) a {
  background-color: #f7dfe1;
}
.page-ticket #areamap .content #areamap_seatlist div ul#areamap_seatlist-camera a {
  background-color: #BDE1BA;
}
.page-ticket #areamap .content #areamap_seatlist div ul#areamap_seatlist-camera li:nth-of-type(even) a {
  background-color: #DFF3DC;
}
.page-ticket #areamap .content #areamap_seatlist div ul#areamap_seatlist-vip a {
  background-color: #BAA5D2;
}
.page-ticket #areamap .content #areamap_seatlist div ul#areamap_seatlist-vip li:nth-of-type(even) a {
  background-color: #D4C7E7;
}
.page-ticket #areamap .content #areamap_seatlist div ul#areamap_seatlist-drivein a {
  background-color: #96BBE9;
}
.page-ticket #areamap .content #areamap_seatlist div ul#areamap_seatlist-drivein li:nth-of-type(even) a {
  background-color: #C4D8E9;
}
.page-ticket #areamap .content #areamap_alInfo {
  position: absolute;
  bottom: 3vw;
  left: 3vw;
  width: 43vw;
  display: flex;
  flex-wrap: wrap;
  padding: 1.5vw 3vw;
  background-color: rgba(255, 255, 255, 0.7);
  gap: 1vw 3vw;
}
.page-ticket #areamap .content #areamap_alInfo p {
  font-size: 1.8vw;
  font-weight: bold;
  text-shadow: -0.15vw -0.15vw 0 #fff, 0px -0.15vw 0 #fff, 0.15vw -0.15vw 0 #fff, -0.15vw 0px 0 #fff, 0.15vw 0px 0 #fff, -0.15vw 0.15vw 0 #fff, 0px 0.15vw 0 #fff, 0.15vw 0.15vw 0 #fff;
}
.page-ticket #areamap .content #areamap_alInfo ul {
  display: flex;
  gap: 0.5vw;
}
.page-ticket #areamap .content #areamap_alInfo ul li a {
  display: inline-block;
  text-align: center;
  padding: 0 1.2vw;
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 1.3;
  width: 4.4vw;
  color: #fff;
}
.page-ticket #areamap .content #areamap_alInfo ul li a:hover {
  opacity: 0.7;
}
.page-ticket #areamap .content #areamap_alInfo #areamap_alInfo_lists_list-starring p {
  color: #FB3D3D;
}
.page-ticket #areamap .content #areamap_alInfo #areamap_alInfo_lists_list-starring a {
  background-color: #FB3D3D;
}
.page-ticket #areamap .content #areamap_alInfo #areamap_alInfo_lists_list-camera p {
  color: #08A33D;
}
.page-ticket #areamap .content #areamap_alInfo #areamap_alInfo_lists_list-camera a {
  background-color: #08A33D;
}
.page-ticket #areamap .content #areamap_alInfo #areamap_alInfo_lists_list-vip p {
  color: #6E1CBC;
}
.page-ticket #areamap .content #areamap_alInfo #areamap_alInfo_lists_list-vip a {
  background-color: #6E1CBC;
}
.page-ticket #areamap .content #areamap_alInfo #areamap_alInfo_lists_list-drivein p {
  color: #0F6BF2;
}
.page-ticket #areamap .content #areamap_alInfo #areamap_alInfo_lists_list-drivein a {
  background-color: #0F6BF2;
}
.page-ticket #areamap .content h2 {
  position: absolute;
  top: 26.5vw;
  left: 15vw;
  width: 70vw;
}
.page-ticket #areamap .content h2 img {
  width: 100%;
}
.page-ticket #areamap .content #areamap_pdfLink {
  margin: -4vw 0 0 10vw;
}
.page-ticket #areamap .content #areamap_pdfLink a {
  display: inline-block;
  padding: 0.5vw 1vw;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
}
.page-ticket #areamap .content #areamap_pdfLink a:hover {
  color: #004972;
  background-color: #fff;
}
.page-ticket #areamap #areamap_parking {
  margin-top: 3vw;
}
.page-ticket #areamap #areamap_parking a {
  padding: 1vw;
  font-size: 2.4vw;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #fff;
  width: 80vw;
  border-radius: 10px;
  background-color: #fff;
  color: #004972;
  display: block;
}
.page-ticket #areamap #areamap_parking a:hover {
  box-shadow: 0 0 15px rgb(255, 255, 255);
}
.page-ticket #chart {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/ticket/chart_bg.png") no-repeat center top/cover;
  padding-bottom: 5vw;
}
.page-ticket #chart #chart_categorize_title {
  margin: 5vw 10vw 0;
  border: 1px solid #fff;
  padding: 2vw 0;
  text-align: center;
}
.page-ticket #chart #chart_categorize_title img {
  width: 50vw;
}
.page-ticket #chart #chart_headline {
  text-align: center;
  color: #fff;
  margin-top: 3vw;
  font-size: 1.4vw;
  line-height: 2.2;
}
.page-ticket #chart #chartBox {
  margin: 5vw auto 0;
  width: 80vw;
}
.page-ticket #chart #chartBox .chart_categorize {
  margin-bottom: 1.5vw;
  display: flex;
}
.page-ticket #chart #chartBox .chart_categorize h3 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  color: #fff;
  padding: 0 0.3vw;
  font-size: 2vw;
  font-weight: bold;
  flex: 0 0 4.5vw;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-starring h3 {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/ticket/chart_categorize-starring_bg.png") repeat left top/6px;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-starring .chart_categorize_lists_list_info_seats_alpha {
  background-color: #FB3D3D;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-starring h4 {
  color: #FB3D3D;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-starring .chart_categorize_lists_list_info_text {
  background-color: rgba(251, 61, 61, 0.25);
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-camera h3 {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/ticket/chart_categorize-camera_bg.png") repeat left top/6px;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-camera .chart_categorize_lists_list_info_seats_alpha {
  background-color: #08A33D;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-camera h4 {
  color: #08A33D;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-camera .chart_categorize_lists_list_info_text {
  background-color: rgba(8, 163, 61, 0.25);
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-vip h3 {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/ticket/chart_categorize-vip_bg.png") repeat left top/6px;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-vip .chart_categorize_lists_list_info_seats_alpha {
  background-color: #6E1CBC;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-vip h4 {
  color: #6E1CBC;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-vip .chart_categorize_lists_list_info_text {
  background-color: rgba(110, 28, 188, 0.25);
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-drivein h3 {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/ticket/chart_categorize-drivein_bg.png") repeat left top/6px;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-drivein .chart_categorize_lists_list_info_seats_alpha {
  background-color: #0F6BF2;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-drivein h4 {
  color: #0F6BF2;
}
.page-ticket #chart #chartBox .chart_categorize#chart_categorize-drivein .chart_categorize_lists_list_info_text {
  background-color: rgba(15, 107, 242, 0.25);
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists {
  flex: 0 0 calc(100% - 4.5vw);
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list {
  padding: 1vw 2vw;
  background-color: #fff;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list:not(:first-child) {
  border-top: 1px solid #000;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info {
  flex: 0 0 calc(100% - 12vw - 2vw);
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats {
  display: flex;
  align-items: center;
  position: relative;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats:not(:first-child) {
  padding-left: 1vw;
  margin-left: 1vw;
  border-left: 1px solid #000;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats .chart_categorize_lists_list_info_seats_attention {
  position: absolute;
  top: 0;
  right: -13.5vw;
  font-weight: bold;
  background-color: #ff001d;
  color: #fff;
  border-radius: 10px;
  padding: 0 0.5vw;
  font-size: 0.9vw;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats .chart_categorize_lists_list_info_seats_alpha {
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 0 1vw;
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 1.3;
  width: 4.5vw;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats .chart_categorize_lists_list_info_seats_alpha:hover {
  opacity: 0.7;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats ul {
  display: flex;
  margin-left: 1vw;
  letter-spacing: 0;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats ul li:not(:first-child) {
  padding-left: 1vw;
  margin-left: 1vw;
  border-left: 1px solid #000;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats ul li h4 {
  font-size: 1.6vw;
  font-weight: bold;
  line-height: 1.4;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats ul li h4.chart_categorize_lists_list_info_seats_smalltext {
  font-size: 1.5vw;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats ul li h4 .chart_categorize_lists_list_info_seats_soldout {
  margin-left: 1vw;
  width: 10vw;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_seats ul li p {
  font-size: 0.9vw;
}
.page-ticket #chart #chartBox .chart_categorize .chart_categorize_lists .chart_categorize_lists_list .chart_categorize_lists_list_info .chart_categorize_lists_list_info_text {
  background-color: #f1ede5;
  margin-top: 0.5vw;
  font-size: 1.1vw;
  font-weight: bold;
  padding: 0.5vw;
  min-width: 47vw;
  line-height: 1.4;
}
.page-ticket #chart #chart_attention {
  margin: 2.5vw 5vw 0;
  text-align: center;
}
.page-ticket #chart #chart_attention img {
  width: 100%;
}
.page-ticket .iconInfo {
  background-color: #FFF;
  padding: 2vw;
  width: 80vw;
  margin: 0 auto;
}
.page-ticket .iconInfo .iconInfo_categorize {
  padding-bottom: 1.5vw;
  margin-bottom: 1.5vw;
  border-bottom: 2px solid #222;
  display: flex;
  gap: 3vw;
}
.page-ticket .iconInfo .iconInfo_categorize h3 {
  font-size: 2.2vw;
  font-weight: bold;
  line-height: 1.4;
}
.page-ticket .iconInfo .iconInfo_categorize ul {
  margin: 1vw 0;
  display: flex;
  gap: 0 0.5vw;
}
.page-ticket .iconInfo .iconInfo_categorize ul a {
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 0 1.2vw;
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 1.3;
  width: 4.4vw;
  color: #fff;
}
.page-ticket .iconInfo .iconInfo_categorize ul a.iconInfo_categorize-pinkIcon {
  background-color: #e23f77;
}
.page-ticket .iconInfo .iconInfo_categorize ul a.iconInfo_categorize-blueIcon {
  background-color: #00a1d7;
}
.page-ticket .iconInfo .iconInfo_categorize ul a.iconInfo_categorize-purpleIcon {
  background-color: #AD46CD;
}
.page-ticket .iconInfo .iconInfo_categorize ul a:hover {
  opacity: 0.7;
}
.page-ticket .iconInfo .iconInfo_categorize p {
  line-height: 1.4;
}
.page-ticket .iconInfo .iconInfo_categorize .iconInfo_categorize_stationary h3 {
  color: #e23f77;
}
.page-ticket .iconInfo .iconInfo_categorize .iconInfo_categorize_drivein h3 {
  color: #00a1d7;
}
.page-ticket .iconInfo .iconInfo_categorize .iconInfo_categorize_addition h3 {
  color: #AD46CD;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_iconList {
  display: flex;
  flex-wrap: wrap;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_iconList li {
  display: inline-flex;
  align-items: center;
  flex: 0 0 20%;
  margin-bottom: 0.5vw;
  font-weight: bold;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_iconList li.iconInfo_meaning_vip {
  flex: 0 0 40%;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_iconList li.iconInfo_meaning_vip span span {
  font-weight: normal;
  font-size: 0.8vw;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_iconList li img {
  width: 4vw;
  filter: grayscale(100%) contrast(200%);
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_iconList li > span {
  font-size: 0.9vw;
  line-height: 1.4;
  letter-spacing: 0;
  padding: 0 0.5vw;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_attentionList {
  display: flex;
  gap: 1vw;
  justify-content: end;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_attentionList .iconInfo_meaning_iconList_black span {
  display: inline-block;
  width: 1rem;
  height: 1.35vw;
  background-color: #222;
  border: 2px solid #222;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_attentionList .iconInfo_meaning_iconList_red {
  color: #f12121;
}
.page-ticket .iconInfo .iconInfo_meaning .iconInfo_meaning_attentionList .iconInfo_meaning_iconList_red span {
  display: inline-block;
  width: 1rem;
  height: 1.35vw;
  background-color: #ff0;
  border: 2px solid #f12121;
}
.page-ticket #ticket {
  background-color: #f7f4ef;
  position: relative;
  padding: 5vw 0 10vw;
  width: 100%;
  overflow: hidden;
}
.page-ticket #ticket .ticket_attention .ticket_attention_title {
  width: 80vw;
  margin: 0 auto 5vw;
  background-color: #283250;
  line-height: 1;
  padding: 2vw;
  font-size: 3vw;
  color: #fff;
  position: relative;
}
.page-ticket #ticket .ticket_attention .ticket_attention_title span {
  display: block;
  font-size: 1.7vw;
  padding-top: 1vw;
}
.page-ticket #ticket .ticket_attention .ticket_attention_title img {
  position: absolute;
  right: -9vw;
  top: -1vw;
  width: 34vw;
  box-shadow: 1vw 1vw 1.5vw 0.5vw rgba(0, 0, 0, 0.5);
  transform: rotate(7.5deg);
}
.page-ticket #ticket .ticket_attention .ticket_attention_title_entail {
  color: #283250;
  font-weight: bold;
  margin: -4vw 0 3vw 10vw;
  font-size: 1.6vw;
  line-height: 1.4;
}
.page-ticket #ticket .ticket_attention .ticket_attention_message {
  border: 5px solid #f12121;
  border-radius: 10px;
  width: 80vw;
  margin: 0 auto 3vw;
}
.page-ticket #ticket .ticket_attention .ticket_attention_message h4 {
  background-color: #f12121;
  text-align: center;
  padding: 1.5vw 0;
  font-size: 2.4vw;
  color: #fff;
  font-weight: bold;
}
.page-ticket #ticket .ticket_attention .ticket_attention_message h4 img {
  width: 60%;
}
.page-ticket #ticket .ticket_attention .ticket_attention_message p {
  padding: 2vw 3vw;
  background-color: #fff;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists {
  padding: 0 10vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list {
  padding: 2vw 0 4vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_type {
  width: fit-content;
  padding: 0 1vw;
  font-size: 2.6vw;
  font-weight: bold;
  margin: 0 auto 2.5vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list h3 {
  margin-bottom: 1.5vw;
  display: flex;
  align-items: center;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list h3 .ticket_infomation_group_lists_list_al {
  color: #fff;
  padding: 0px 1.5vw 1vw;
  font-size: 7vw;
  line-height: 1;
  min-width: 8vw;
  text-align: center;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list h3 .ticket_infomation_group_lists_list_txt {
  margin-left: 1.5vw;
  font-size: 2.6vw;
  font-weight: bold;
  line-height: 1.2;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_headline {
  margin: 4vw calc(50% - 50vw) 2vw;
  width: 100vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_headline div {
  padding: 2.5vw 10vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_headline div h4 {
  font-size: 2.6vw;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 8vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_headline div h4 span {
  display: block;
  font-size: 2.4vw;
  font-weight: normal;
  margin-top: 0.5vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_headline div h4 span em {
  font-weight: bold;
  font-size: 1.7vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_headline div hr {
  border: none;
  border-top: 2px dotted #222;
  margin: 2vw 0;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_infomation_group_lists_list_playguides {
  margin: 4vw 0 2.5vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_infomation_group_lists_list_playguides p {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1vw;
  font-size: 2.4vw;
  font-weight: bold;
  border: 0.25vw solid #222;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_infomation_group_lists_list_playguides p::after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 2.5vw);
  width: 5vw;
  height: 2vw;
  background-color: #222;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_infomation_group_lists_list_playguides h5 {
  background-color: #f12121;
  padding: 0.5vw 1vw;
  color: #fff;
  display: inline-block;
  font-size: 1.4vw;
  border-radius: 0.5vw 0.5vw 0 0;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_infomation_group_lists_list_playguides ul {
  border: 1px solid #f12121;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 3vw;
  padding: 1.5vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_infomation_group_lists_list_playguides ul img {
  height: 3vw;
  object-fit: contain;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_infomation_group_lists_list_playguides .ticket_infomation_group_lists_list_soldout {
  margin: 1vw auto;
  width: 100%;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_info {
  border-top: 0.25vw solid #222;
  border-bottom: 0.25vw solid #222;
  margin: 1.5vw auto;
  padding: 1.5vw 0;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_info h4 {
  text-align: center;
  font-size: 2.4vw;
  font-weight: bold;
  margin-bottom: 1vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1vw 0;
  margin-bottom: 2vw;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_info ul li {
  flex: 0 0 49.5%;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_info ul li img {
  width: 100%;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_info ul li iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.page-ticket #ticket .ticket_infomation_group .ticket_infomation_group_lists .ticket_infomation_group_lists_list .ticket_list_info ul li p {
  line-height: 1.4;
  background-color: #fff;
  padding: 0.5vw 1vw;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-starring .ticket_list_type {
  border: 0.15vw solid #FB3D3D;
  color: #FB3D3D;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-starring h3 .ticket_infomation_group_lists_list_al {
  background-color: #FB3D3D;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-starring .ticket_list_headline {
  background-color: rgba(251, 61, 61, 0.25);
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-starring .ticket_list_headline h4 {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FB3D3D' viewBox='0 0 77.64 67.08'%3E%3Cg%3E%3Cpolygon class='cls-1' points='0 0 0 12.34 21.2 33.54 0 54.74 0 67.08 33.54 33.54 0 0'/%3E%3Cpolygon class='cls-1' points='22.05 0 22.05 12.34 43.25 33.54 22.05 54.74 22.05 67.08 55.59 33.54 22.05 0'/%3E%3Cpolygon class='cls-1' points='44.1 0 44.1 12.34 65.3 33.54 44.1 54.74 44.1 67.08 77.64 33.54 44.1 0'/%3E%3C/g%3E%3C/svg%3E") no-repeat left center/6.9vw 6vw;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-camera .ticket_list_type {
  border: 0.15vw solid #08A33D;
  color: #08A33D;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-camera h3 .ticket_infomation_group_lists_list_al {
  background-color: #08A33D;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-camera .ticket_list_headline {
  background-color: rgba(8, 163, 61, 0.25);
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-camera .ticket_list_headline h4 {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2308A33D' viewBox='0 0 77.64 67.08'%3E%3Cg%3E%3Cpolygon class='cls-1' points='0 0 0 12.34 21.2 33.54 0 54.74 0 67.08 33.54 33.54 0 0'/%3E%3Cpolygon class='cls-1' points='22.05 0 22.05 12.34 43.25 33.54 22.05 54.74 22.05 67.08 55.59 33.54 22.05 0'/%3E%3Cpolygon class='cls-1' points='44.1 0 44.1 12.34 65.3 33.54 44.1 54.74 44.1 67.08 77.64 33.54 44.1 0'/%3E%3C/g%3E%3C/svg%3E") no-repeat left center/6.9vw 6vw;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-vip .ticket_list_type {
  border: 0.15vw solid #6E1CBC;
  color: #6E1CBC;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-vip h3 .ticket_infomation_group_lists_list_al {
  background-color: #6E1CBC;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-vip .ticket_list_headline {
  background-color: rgba(110, 28, 188, 0.25);
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-vip .ticket_list_headline h4 {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236E1CBC' viewBox='0 0 77.64 67.08'%3E%3Cg%3E%3Cpolygon class='cls-1' points='0 0 0 12.34 21.2 33.54 0 54.74 0 67.08 33.54 33.54 0 0'/%3E%3Cpolygon class='cls-1' points='22.05 0 22.05 12.34 43.25 33.54 22.05 54.74 22.05 67.08 55.59 33.54 22.05 0'/%3E%3Cpolygon class='cls-1' points='44.1 0 44.1 12.34 65.3 33.54 44.1 54.74 44.1 67.08 77.64 33.54 44.1 0'/%3E%3C/g%3E%3C/svg%3E") no-repeat left center/6.9vw 6vw;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-drivein .ticket_list_type {
  border: 0.15vw solid #0F6BF2;
  color: #0F6BF2;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-drivein h3 .ticket_infomation_group_lists_list_al {
  background-color: #0F6BF2;
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-drivein .ticket_list_headline {
  background-color: rgba(15, 107, 242, 0.25);
}
.page-ticket #ticket .ticket_infomation_group#ticket_infomation_group-drivein .ticket_list_headline h4 {
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230F6BF2' viewBox='0 0 77.64 67.08'%3E%3Cg%3E%3Cpolygon class='cls-1' points='0 0 0 12.34 21.2 33.54 0 54.74 0 67.08 33.54 33.54 0 0'/%3E%3Cpolygon class='cls-1' points='22.05 0 22.05 12.34 43.25 33.54 22.05 54.74 22.05 67.08 55.59 33.54 22.05 0'/%3E%3Cpolygon class='cls-1' points='44.1 0 44.1 12.34 65.3 33.54 44.1 54.74 44.1 67.08 77.64 33.54 44.1 0'/%3E%3C/g%3E%3C/svg%3E") no-repeat left center/6.9vw 6vw;
}
.page-ticket div.selling {
  padding-top: 10vw;
  background-color: transparent;
}
.page-ticket .selling {
  background-color: #dd302b;
  position: relative;
}
.page-ticket .selling .selling_inbox {
  width: 80vw;
  margin: 0 auto;
  position: relative;
  top: -5vw;
}
.page-ticket .selling .selling_inbox h2 {
  background-color: #dd302b;
  position: relative;
  border-radius: 10px 10px 0 0;
  height: 7vw;
}
.page-ticket .selling .selling_inbox h2 img {
  width: 80vw;
  position: absolute;
  left: 4vw;
  top: -2vw;
}
.page-ticket .selling .selling_inbox .selling_information {
  background-color: #fff;
  padding: 2vw 5vw;
  border-radius: 0 0 25px 25px;
}
.page-ticket .selling .selling_inbox .selling_information .selling_information_stores {
  padding: 1.5vw 0;
}
.page-ticket .selling .selling_inbox .selling_information .selling_information_stores h3 {
  font-size: 1.7vw;
  font-weight: bold;
  background-color: #dd302b;
  color: #fff;
  padding: 0.5vw 2vw;
  display: inline-block;
}
.page-ticket .selling .selling_inbox .selling_information .selling_information_stores ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 3vw;
  margin-top: 1vw;
}
.page-ticket .selling .selling_inbox .selling_information .selling_information_stores ul a {
  display: inline-block;
  vertical-align: middle;
}
.page-ticket .selling .selling_inbox .selling_information .selling_information_stores ul a.selling_information_stores_phone {
  font-size: 3vw;
  padding-left: 3vw;
  line-height: 1.2;
}
.page-ticket .selling .selling_inbox .selling_information .selling_information_stores ul a.selling_information_stores_phone span {
  font-size: 1.1vw;
  display: block;
}
.page-ticket .selling .selling_inbox .selling_information .selling_information_stores ul img {
  height: 3vw;
  object-fit: contain;
}
.page-ticket #souvenir {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/ticket/souvenir_bg.png") no-repeat top center/cover;
  padding: 3vw 0;
}
.page-ticket #souvenir #souvenir_inbox {
  width: 80vw;
  margin: 0 auto;
}
.page-ticket #souvenir #souvenir_inbox h2 img {
  width: 100%;
}
.page-ticket #souvenir #souvenir_inbox p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 3vw;
}
.page-ticket #souvenir #souvenir_inbox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
}
.page-ticket #souvenir #souvenir_inbox ul li {
  flex: 0 0 48.5%;
}
.page-ticket #souvenir #souvenir_inbox ul li img {
  width: 100%;
  box-shadow: 0.5vw 0.5vw 0.5vw rgba(0, 0, 0, 0.15);
}

.page-tour #tour {
  margin: 12vw auto 0;
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/tour/tour_bg.png") repeat-y top center/contain;
}
.page-tour #tour h1 {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
}
.page-tour #tour h1::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
.page-tour #tour .content {
  width: 60%;
  margin: 7.5vw auto;
}
.page-tour #tour .content #content_tour_header {
  border: 2px solid #004972;
  margin-bottom: 5vw;
}
.page-tour #tour .content #content_tour_header h2 {
  font-size: 3.2vw;
  text-align: center;
  color: #004972;
  padding: 1.5vw;
  line-height: 1.4;
  border-bottom: 2px solid #004972;
  background-color: rgba(0, 73, 114, 0.1);
}
.page-tour #tour .content #content_tour_header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  padding: 0 2.5vw;
}
.page-tour #tour .content #content_tour_header ul li:nth-of-type(1) img {
  height: 7vw;
  object-fit: contain;
}
.page-tour #tour .content #content_tour_header ul li:nth-of-type(2) img {
  height: 20vw;
  object-fit: contain;
}
.page-tour #tour .content .content_tour {
  margin-bottom: 5vw;
}
.page-tour #tour .content .content_tour h2 {
  display: inline-block;
  background-color: #004972;
  color: #fff;
  font-size: 2.4vw;
  padding: 0 2vw;
}
.page-tour #tour .content .content_tour p {
  padding: 1vw 0;
}
.page-tour #tour .content .content_tour dl {
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 1.5vw;
}
.page-tour #tour .content .content_tour dl div {
  display: flex;
}
.page-tour #tour .content .content_tour dl dt, .page-tour #tour .content .content_tour dl dd {
  border-top: 1px solid #e6e6e6;
  padding: 1vw;
}
.page-tour #tour .content .content_tour dl dt {
  flex: 0 0 10vw;
  border-right: 1px solid #e6e6e6;
  background-color: #f0f0f0;
  text-align: center;
}
.page-tour #tour .content .content_tour dl dd {
  flex: 0 0 calc(100% - 10vw);
}
.page-tour #tour .content .content_tour dl.tour_tour_em {
  border-left: 1px solid #e58294;
  border-right: 1px solid #e58294;
  border-bottom: 1px solid #e58294;
}
.page-tour #tour .content .content_tour dl.tour_tour_em dt, .page-tour #tour .content .content_tour dl.tour_tour_em dd {
  border-top: 1px solid #e58294;
}
.page-tour #tour .content .content_tour dl.tour_tour_em dt span, .page-tour #tour .content .content_tour dl.tour_tour_em dd span {
  color: #e58294;
  font-weight: bold;
}
.page-tour #tour .content .content_tour dl.tour_tour_em dt {
  border-right: 1px solid #e58294;
  background-color: #F6D5DB;
}
.page-tour #tour .content .content_tour ul {
  margin-bottom: 1.5vw;
}
.page-tour #tour .content .content_tour ul li {
  margin-bottom: 1vw;
}

.page-interview {
  margin: 15vw auto 0;
}
.page-interview h1 {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
}
.page-interview h1::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
.page-interview #interview_lists {
  width: 80vw;
  margin: 0 auto 7.5vw;
}
.page-interview #interview_lists li {
  margin-top: 7.5vw;
}
.page-interview #interview_lists li .interview_headline {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-interview #interview_lists li .interview_headline figure {
  width: 42%;
}
.page-interview #interview_lists li .interview_headline figure img {
  width: 100%;
}
.page-interview #interview_lists li .interview_headline h2 {
  font-size: 3.5vw;
  margin-left: -3vw;
  position: relative;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 2vw;
}
.page-interview #interview_lists li .interview_headline h2 span {
  font-size: 2.4vw;
  display: block;
}
.page-interview #interview_lists li .interview_text {
  margin-top: 2vw;
  padding: 0 7.5vw;
}
.page-interview #interview_lists li .interview_profile {
  margin: 2vw 5.5vw 0;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 2vw;
}
.page-interview #interview_lists li .interview_profile h3 {
  font-size: 1.8vw;
  margin-bottom: 1vw;
}
.page-interview #interview_lists li .interview_profile p {
  font-size: 0.9vw;
}

.page-questionandanswer #qanda {
  margin: 15vw auto 7.5vw;
}
.page-questionandanswer #qanda h1 {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
  margin-bottom: 7.5vw;
}
.page-questionandanswer #qanda h1::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
.page-questionandanswer #qanda .title {
  width: 80vw;
  margin: 0 auto 5vw;
}
.page-questionandanswer #qanda .title img {
  width: 100%;
}
.page-questionandanswer #qanda .content {
  background-color: #d1d1d1;
  width: 80vw;
  margin: 0 auto 5vw;
  padding: 0 3vw 3vw;
}
.page-questionandanswer #qanda .content h2 {
  font-size: 2.4vw;
  font-weight: bold;
  padding-top: 3vw;
}
.page-questionandanswer #qanda .content dl {
  margin-left: 4vw;
  border-bottom: 2px solid #fff;
}
.page-questionandanswer #qanda .content dl dt {
  font-size: 1.3vw;
  line-height: 1.4;
  padding: 1vw 5vw 1vw 0;
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/qanda/qanda_icon_arrow_carrotDown.png") no-repeat right center/2vw;
  cursor: pointer;
}
.page-questionandanswer #qanda .content dl dt::before {
  display: inline-block;
  content: "■";
}
.page-questionandanswer #qanda .content dl dt:not(:first-child) {
  border-top: 2px solid #fff;
}
.page-questionandanswer #qanda .content dl dd {
  display: none;
  padding-bottom: 1vw;
}

#access {
  padding-top: 7.5vw;
}
#access .content {
  width: 80vw;
  margin: 0 auto 5vw;
}
#access .content h2 {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
  margin-bottom: 7.5vw;
}
#access .content h2::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
#access .content h3 {
  font-size: 1.9vw;
  color: #004972;
  font-weight: bold;
  margin: 5vw 0 1vw;
}
#access .content .iframeBox {
  width: 100%;
  margin-bottom: 1vw;
}
#access .content .iframeBox iframe {
  width: 100%;
  aspect-ratio: 5/2;
}
#access .content #access_timeboard {
  width: 60vw;
  font-size: 1.1vw;
  border-bottom: 1px solid #c40;
  border-right: 1px solid #c40;
}
#access .content #access_timeboard tr {
  border-top: 1px solid #c40;
}
#access .content #access_timeboard tr th {
  padding: 1vw 0;
  text-align: center;
  border-left: 1px solid #c40;
}
#access .content #access_timeboard tr th:nth-of-type(1), #access .content #access_timeboard tr th:nth-of-type(3) {
  background-color: #e6e6e6;
}
#access .content #access_timeboard tr th:nth-of-type(2) {
  background-color: #f9f900;
}
#access .content #access_timeboard tr td {
  padding: 1vw 0;
  text-align: center;
  border-left: 1px solid #c40;
}

#parking {
  padding: 7.5vw 0;
  background-color: #f0f0f0;
}
#parking .content {
  width: 80vw;
  margin: 0 auto 5vw;
}
#parking .content h2 {
  font-size: 2.4vw;
  text-align: center;
  color: #004972;
  position: relative;
  padding-bottom: 1vw;
  font-weight: bold;
  margin-bottom: 7.5vw;
}
#parking .content h2::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #004972;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
#parking .content p img {
  width: 100%;
}

.single-post #news {
  padding-top: 6vw;
}

.post-type-archive-post {
  padding-top: 6vw;
}
.post-type-archive-post #news {
  padding-top: 5vw;
}
.post-type-archive-post .post_navigation {
  overflow: hidden;
  border: 1px solid #fff;
  width: 100%;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
.post-type-archive-post .post_navigation > div {
  width: 50%;
}
.post-type-archive-post .post_navigation > div a {
  padding: 10px;
  display: block;
  text-align: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.post-type-archive-post .post_navigation > div a:hover {
  background-color: #f0f0f0;
  color: #222;
}
.post-type-archive-post .post_navigation .prev {
  float: left;
}
.post-type-archive-post .post_navigation .next {
  float: right;
}

.page-information #inquiry {
  margin: 15vw auto 7.5vw;
}
.page-information #inquiry .title {
  width: 80vw;
  margin: 0 auto 5vw;
}
.page-information #inquiry .title img {
  width: 100%;
}
.page-information #inquiry .content {
  width: 80vw;
  margin: 10vw auto;
}
.page-information #inquiry .content h2 {
  text-align: center;
  border-bottom: 2px solid #003250;
  padding-bottom: 2vw;
  margin-bottom: 3vw;
}
.page-information #inquiry .content#inquiry_mail h2 img {
  width: 35vw;
}
.page-information #inquiry .content#inquiry_web h2 img {
  width: 38vw;
}
.page-information #inquiry .content p {
  color: #003250;
  font-size: 1.4vw;
  padding: 0 5vw;
}
.page-information #inquiry #inquiry_web table {
  width: 70vw;
  margin: 3vw auto;
}
.page-information #inquiry #inquiry_web table th {
  background-color: #d1d1d1;
  padding: 1.5vw;
  width: 23%;
}
.page-information #inquiry #inquiry_web table th span {
  font-size: 0.8vw;
  padding-left: 0.5vw;
  color: #c40;
}
.page-information #inquiry #inquiry_web table td {
  background-color: #d1d1d1;
  padding: 1.5vw;
}
.page-information #inquiry #inquiry_web table td input, .page-information #inquiry #inquiry_web table td textarea {
  width: 100%;
  padding: 1vw;
}
.page-information #inquiry #inquiry_web table td textarea {
  height: 20vw;
}
.page-information #inquiry #inquiry_web table td .inquiry_phone {
  width: 30%;
}
.page-information #inquiry #inquiry_web #inquiry_submit {
  text-align: center;
  margin-top: 5vw;
}
.page-information #inquiry #inquiry_web #inquiry_submit input {
  font-size: 1.6vw;
  display: inline-block;
  padding: 1vw 5vw;
  cursor: pointer;
  border: none;
  transition: all 0.5s ease;
  color: #fff;
}
.page-information #inquiry #inquiry_web #inquiry_submit input[name=submitConfirm], .page-information #inquiry #inquiry_web #inquiry_submit input[name=submitButton] {
  background-color: #0166fc;
}
.page-information #inquiry #inquiry_web #inquiry_submit input[name=submitConfirm]:hover, .page-information #inquiry #inquiry_web #inquiry_submit input[name=submitButton]:hover {
  background-color: #0151c9;
}
.page-information #inquiry #inquiry_web #inquiry_submit input[name=submitBack] {
  background-color: #b5b5b5;
}
.page-information #inquiry #inquiry_web #inquiry_submit input[name=submitBack]:hover {
  background-color: #e8e8e8;
}

.page-special .content {
  position: relative;
  overflow: hidden;
}
.page-special #special_title {
  background-color: #d1d1d1;
  padding-bottom: 1vw;
}
.page-special #special_title .title {
  width: 80vw;
  margin: 0 auto;
  padding-bottom: 5vw;
}
.page-special #special_title .title img {
  margin: 15vw auto 0;
  width: 100%;
}
.page-special #special_title .title_attention {
  width: 80vw;
  margin: 0 auto;
  text-align: right;
  color: #003250;
}
.page-special #special_ikebun {
  margin: 7.5vw auto 0;
}
.page-special #special_ikebun figure {
  display: block;
  width: 90vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-special #special_ikebun figure img {
  width: 100%;
}
.page-special #special_ikebun .special_pict {
  position: relative;
  top: -7vw;
}
.page-special #special_ikebun .special_pict img {
  width: 100%;
}
.page-special #special_ikebun .special_text {
  position: relative;
  width: 83vw;
  top: -13vw;
  left: 17vw;
  padding: 2vw;
  background-color: #003250;
  color: #fff;
}
.page-special #special_ueda {
  margin: 12vw auto 7.5vw;
}
.page-special #special_ueda figure {
  display: block;
  width: 45vw;
  margin-left: 25vw;
}
.page-special #special_ueda figure img {
  width: 100%;
}
.page-special #special_ueda figure figcaption {
  padding-left: 18vw;
}
.page-special #special_ueda div {
  width: 80vw;
  margin: 5vw auto;
  text-align: center;
}
.page-special #special_ueda div h3 {
  width: 25vw;
  margin: 0 auto 2.5vw;
}
.page-special #special_ueda div h3 img {
  width: 100%;
}
.page-special #special_ueda div p {
  font-size: 1.25vw;
  line-height: 2.2;
}
.page-special #special_nomura {
  background-color: #d1d1d1;
  margin-bottom: 7.5vw;
  padding-top: 7.5vw;
  height: 75vw;
}
.page-special #special_nomura figure {
  display: block;
  width: 80vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-special #special_nomura figure img {
  width: 100%;
}
.page-special #special_nomura .special_pict {
  position: relative;
  top: -2vw;
  padding-left: 35vw;
}
.page-special #special_nomura .special_pict img {
  width: 100%;
}
.page-special #special_nomura .special_text {
  position: relative;
  width: 39vw;
  top: -40vw;
  left: 0;
  padding: 2vw 2vw 2vw 10vw;
  background-color: #003250;
  color: #fff;
}
.page-special #special_katakai {
  margin-top: -25vw;
  height: 115vw;
}
.page-special #special_katakai figure {
  display: block;
  text-align: right;
  position: relative;
  z-index: 1;
  top: 30vw;
}
.page-special #special_katakai figure img {
  width: 40vw;
  display: inline-block;
}
.page-special #special_katakai .special_pict {
  position: relative;
  padding-right: 35vw;
}
.page-special #special_katakai .special_pict img {
  width: 100%;
}
.page-special #special_katakai .special_text {
  position: relative;
  width: 45vw;
  top: -35vw;
  left: 55vw;
  padding: 2vw;
  background-color: #003250;
  color: #fff;
}
.page-special #special_marutama {
  background-color: #d1d1d1;
  padding: 7.5vw 0;
}
.page-special #special_marutama figure {
  display: block;
  width: 65vw;
  margin-left: 5vw;
  position: relative;
  z-index: 1;
}
.page-special #special_marutama figure img {
  width: 100%;
}
.page-special #special_marutama .special_text {
  position: relative;
  width: 60vw;
  top: 3vw;
  left: 35vw;
  padding: 2vw;
  background-color: #003250;
  color: #fff;
}

.page-volunteer-wanted #volunteer_form table {
  width: 100%;
  margin: 3vw auto;
}
.page-volunteer-wanted #volunteer_form table th {
  background-color: #d1d1d1;
  padding: 1.5vw;
  width: 23%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  vertical-align: middle;
}
.page-volunteer-wanted #volunteer_form table th span {
  font-size: 0.8vw;
  padding-left: 0.5vw;
  color: #c40;
}
.page-volunteer-wanted #volunteer_form table td {
  padding: 1.5vw;
  vertical-align: middle;
}
.page-volunteer-wanted #volunteer_form table td [type=text], .page-volunteer-wanted #volunteer_form table td [type=number], .page-volunteer-wanted #volunteer_form table td [type=email], .page-volunteer-wanted #volunteer_form table td textarea {
  width: 100%;
  padding: 1vw;
}
.page-volunteer-wanted #volunteer_form table td textarea {
  height: 20vw;
}
.page-volunteer-wanted #volunteer_form table td select {
  width: fit-content;
  padding: 1vw;
}
.page-volunteer-wanted #volunteer_form table td .inquiry_phone {
  width: 30%;
}
.page-volunteer-wanted #volunteer_form table td [name=username_sei], .page-volunteer-wanted #volunteer_form table td [name=username_mei], .page-volunteer-wanted #volunteer_form table td [name=username_sei_hira], .page-volunteer-wanted #volunteer_form table td [name=username_mei_hira], .page-volunteer-wanted #volunteer_form table td [name=age], .page-volunteer-wanted #volunteer_form table td [name=zipcode] {
  width: 30%;
}
.page-volunteer-wanted #volunteer_form #inquiry_submit {
  text-align: center;
  margin-top: 5vw;
}
.page-volunteer-wanted #volunteer_form #inquiry_submit input {
  font-size: 1.6vw;
  display: inline-block;
  padding: 1vw 5vw;
  cursor: pointer;
  border: none;
  transition: all 0.5s ease;
  color: #fff;
}
.page-volunteer-wanted #volunteer_form #inquiry_submit input[name=submitConfirm], .page-volunteer-wanted #volunteer_form #inquiry_submit input[name=submitButton] {
  background-color: #0166fc;
}
.page-volunteer-wanted #volunteer_form #inquiry_submit input[name=submitConfirm]:hover, .page-volunteer-wanted #volunteer_form #inquiry_submit input[name=submitButton]:hover {
  background-color: #0151c9;
}
.page-volunteer-wanted #volunteer_form #inquiry_submit input[name=submitBack] {
  background-color: #b5b5b5;
}
.page-volunteer-wanted #volunteer_form #inquiry_submit input[name=submitBack]:hover {
  background-color: #e8e8e8;
}

.page-program .content {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/program/bg_program.png") #000 no-repeat top center/cover;
}
.page-program #program_inbox {
  color: #fff;
  width: 60vw;
  margin: 0 auto;
  padding: 10vw 2vw;
  background-color: rgba(0, 0, 0, 0.65);
}
.page-program #program_inbox #program_header {
  text-align: center;
}
.page-program #program_inbox #program_header #program_header_jp {
  font-size: 3.2vw;
  text-shadow: 0px 0px 0.75vw rgba(0, 0, 0, 0.75), 0px 0px 1vw #fff;
}
.page-program #program_inbox #program_header #program_header_jp span {
  color: #f5c4d3;
  font-size: 4vw;
  margin: 0 -0.25rem;
}
.page-program #program_inbox #program_header #program_header_jp em {
  letter-spacing: -0.1rem;
}
.page-program #program_inbox #program_header #program_header_jp em span {
  color: #fff;
  font-size: 3.2vw;
  margin: 0 0 0 -0.5rem;
  letter-spacing: initial;
}
.page-program #program_inbox #program_header #program_header_en {
  font-size: 1.5vw;
  color: #f5c4d3;
  font-weight: bold;
  font-style: italic;
  margin-top: -1.5vw;
}
.page-program #program_inbox #program_header #program_header_en span {
  color: #fff;
}
.page-program #program_inbox #program_header h1 {
  width: fit-content;
  border: 1px solid #fff;
  padding: 0 0.5vw 0.25vw;
  margin: 1vw auto 0;
  font-size: 2.8vw;
  letter-spacing: 0.5rem;
  line-height: 1.1;
  position: relative;
}
.page-program #program_inbox #program_header h1::after {
  content: "";
  display: inline-block;
  width: 2vw;
  height: 1vw;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: #fff;
  position: absolute;
  left: calc(50% - 1vw);
  bottom: -1vw;
}
.page-program #program_inbox #program_detail {
  margin-top: 5vw;
  text-align: center;
}
.page-program #program_inbox #program_detail #program_detail_header h2 {
  font-size: 2.8vw;
  line-height: 1.4;
}
.page-program #program_inbox #program_detail #program_detail_header h2 span {
  font-size: 1.8vw;
  display: block;
}
.page-program #program_inbox #program_detail #program_detail_header p {
  margin-top: 1.5vw;
}
.page-program #program_inbox #program_detail ul li {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/program/line_program.png") no-repeat top center/contain;
  margin-top: 3vw;
  padding-top: 6vw;
}
.page-program #program_inbox #program_detail ul li.program_detail_half {
  background: none;
  width: fit-content;
  margin: 3vw auto 0;
  padding-top: 4vw;
  border-top: 2px dashed #fff;
}
.page-program #program_inbox #program_detail ul li .program_detail_numbering {
  font-size: 2.4vw;
  line-height: 1.4;
  margin-bottom: 1vw;
}
.page-program #program_inbox #program_detail ul li .program_detail_numbering span {
  font-size: 1.2vw;
  display: block;
}
.page-program #program_inbox #program_detail ul li .program_detail_subtitle {
  font-size: 1.2vw;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.3;
  border: 1px solid #fff;
  padding: 0 0.5vw 0.25vw;
  margin-bottom: 0.5vw;
}
.page-program #program_inbox #program_detail ul li h3 {
  font-size: 2vw;
  line-height: 1.4;
  margin-bottom: 1vw;
  text-shadow: 0px 0px 0.75vw rgba(0, 0, 0, 0.75), 0px 0px 0.75vw #fff, 0px 0px 1vw #fff;
}
.page-program #program_inbox #program_detail ul li h3 span {
  font-size: 3.4vw;
  display: block;
  font-style: italic;
}
.page-program #program_inbox #program_detail ul li .program_detail_serving {
  margin-bottom: 1vw;
}
.page-program #program_circuit {
  background-color: #f0f0f0;
  padding-bottom: 5vw;
}
.page-program #program_circuit h2 {
  background-color: #000;
  color: #fff;
  font-size: 6.6vw;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  padding: 2vw 0;
}
.page-program #program_circuit h2 span {
  display: block;
  font-size: 3.6vw;
}
.page-program #program_circuit #program_circuit_summary {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/program/bg_circuit.png") no-repeat center/cover;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 52vw;
}
.page-program #program_circuit #program_circuit_summary p {
  padding: 2vw 0;
  text-align: center;
  font-size: 2.2vw;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.page-program #program_circuit #program_circuit_summary p::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #c12e31;
  mix-blend-mode: multiply;
}
.page-program #program_circuit #program_circuit_summary p span {
  position: relative;
  z-index: 9;
  color: #fff;
}
.page-program #program_circuit .program_circuit_lists {
  width: 80vw;
  margin: 2.5vw auto 0;
}
.page-program #program_circuit .program_circuit_lists .program_circuit_lists_list {
  margin-bottom: 5vw;
}
.page-program #program_circuit .program_circuit_lists .program_circuit_lists_list h3 {
  font-size: 3.6vw;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  width: 55vw;
  margin: 0 auto 1.5vw;
}
.page-program #program_circuit .program_circuit_lists .program_circuit_lists_list h3 span {
  font-size: 2.8vw;
  display: block;
  padding: 0.75vw 0;
}
.page-program #program_circuit .program_circuit_lists .program_circuit_lists_list p {
  font-size: 1.6vw;
}
.page-program #program_circuit .program_circuit_lists .program_circuit_lists_list ul {
  margin-top: 1vw;
  display: flex;
  gap: 0.75vw;
}
.page-program #program_circuit .program_circuit_lists#program_circuit_lists_car h3 {
  background-color: #eac965;
}
.page-program #program_circuit .program_circuit_lists#program_circuit_lists_car h3 span {
  background-color: #D5A10F;
}
.page-program #program_circuit .program_circuit_lists#program_circuit_lists_extra h3 {
  background-color: #ccc;
}
.page-program #program_circuit .program_circuit_lists#program_circuit_lists_extra h3 span {
  background-color: #a3a3a3;
}
.page-program #program_experience {
  background-color: #f0f0f0;
  padding-bottom: 5vw;
}
.page-program #program_experience h2 {
  background-color: #000;
  color: #fff;
  font-size: 6.6vw;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  padding: 2vw 0;
}
.page-program #program_experience h2 span {
  display: block;
  font-size: 3.6vw;
}
.page-program #program_experience #program_experience_summary {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/program/bg_experience.png") no-repeat center/cover;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 52vw;
}
.page-program #program_experience #program_experience_summary p {
  padding: 2vw 0;
  text-align: center;
  font-size: 2.2vw;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.page-program #program_experience #program_experience_summary p::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #C4004F;
  mix-blend-mode: multiply;
}
.page-program #program_experience #program_experience_summary p span {
  position: relative;
  z-index: 9;
  color: #fff;
}
.page-program #program_experience ul {
  width: 80vw;
  margin: 2.5vw auto 0;
}
.page-program #program_experience ul li {
  margin-bottom: 5vw;
}
.page-program #program_experience ul li h3 {
  font-size: 3.6vw;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  width: 55vw;
  margin: 0 auto 1.5vw;
  background-color: #C4004F;
  color: #fff;
}
.page-program #program_experience ul li div {
  display: flex;
  gap: 2.5vw;
  margin-top: 3vw;
}
.page-program #program_experience ul li div p {
  font-size: 1.6vw;
  flex: 0 0 60%;
}
.page-program #program_experience ul li div figure img {
  width: 100%;
}
.page-program #program_mainstage {
  background-color: #f0f0f0;
  padding-bottom: 5vw;
}
.page-program #program_mainstage h2 {
  background-color: #000;
  color: #fff;
  font-size: 6.6vw;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  padding: 2vw 0;
}
.page-program #program_mainstage h2 span {
  display: block;
  font-size: 3.6vw;
}
.page-program #program_mainstage #program_mainstage_summary {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/program/bg_mainstage.png") no-repeat center/cover;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 52vw;
}
.page-program #program_mainstage #program_mainstage_summary p {
  padding: 2vw 0;
  text-align: center;
  font-size: 2.2vw;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.page-program #program_mainstage #program_mainstage_summary p::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #02497D;
  mix-blend-mode: multiply;
}
.page-program #program_mainstage #program_mainstage_summary p span {
  position: relative;
  z-index: 9;
  color: #fff;
}
.page-program #program_mainstage ul {
  width: 80vw;
  margin: 2.5vw auto 0;
}
.page-program #program_mainstage ul li {
  margin-bottom: 5vw;
}
.page-program #program_mainstage ul li h3 {
  font-size: 3.6vw;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  width: 55vw;
  margin: 0 auto 1.5vw;
  background-color: #5685A8;
  color: #fff;
}
.page-program #program_mainstage ul li h3 span {
  background-color: #02497D;
  font-size: 2.8vw;
  display: block;
  padding: 0.75vw 0;
}
.page-program #program_mainstage ul li div {
  display: flex;
  gap: 2.5vw;
  margin-top: 3vw;
}
.page-program #program_mainstage ul li div p {
  font-size: 1.6vw;
  flex: 0 0 60%;
}
.page-program #program_mainstage ul li div figure img {
  width: 100%;
}

#gourmet {
  margin-top: 6vw;
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/gourmet/bg_gourmet.png") repeat-y center/100%;
}
#gourmet h2 img {
  width: 100%;
}
#gourmet .program_gourmet_lists {
  margin: 2.5vw auto 0;
}
#gourmet .program_gourmet_lists .program_gourmet_lists_list h3 {
  font-size: 3.6vw;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 1.5vw;
  color: #fff;
}
#gourmet .program_gourmet_lists .program_gourmet_lists_list h3 span {
  font-size: 2vw;
  display: block;
  padding: 0.75vw 0;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_sake {
  width: 80vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_sake .program_gourmet_lists_list {
  margin: 0 auto 5vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_sake .program_gourmet_lists_list h3 {
  width: 55vw;
  background-color: #D7669F;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_sake .program_gourmet_lists_list h3 span {
  background-color: #C41A70;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_sake .program_gourmet_lists_list p {
  font-size: 1.6vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_sake .program_gourmet_lists_list ul {
  margin-top: 1vw;
  display: flex;
  gap: 0.75vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_sake .program_gourmet_lists_list ul li {
  flex: 0 0 calc(33.3333333333% - 0.25vw);
}
#gourmet .program_gourmet_lists#program_gourmet_lists_sake .program_gourmet_lists_list ul li img {
  width: 100%;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_padock {
  background-color: rgba(255, 225, 215, 0.85);
  padding: 5vw 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_padock .program_gourmet_lists_list {
  width: 80vw;
  margin: 0 auto;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_padock .program_gourmet_lists_list h3 {
  width: 55vw;
  background-color: #D7669F;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_padock .program_gourmet_lists_list h3 span {
  background-color: #C41A70;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_padock .program_gourmet_lists_list p {
  font-size: 1.6vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_padock .program_gourmet_lists_list ul {
  margin-top: 1vw;
  display: flex;
  gap: 0.75vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_padock .program_gourmet_lists_list ul li {
  flex: 0 0 calc(33.3333333333% - 0.25vw);
}
#gourmet .program_gourmet_lists#program_gourmet_lists_padock .program_gourmet_lists_list ul li img {
  width: 100%;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_gourmet {
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 5vw 0 2.5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_gourmet .program_gourmet_lists_list {
  flex: 0 0 38.75vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_gourmet .program_gourmet_lists_list h3 {
  background-color: #D7669F;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_gourmet .program_gourmet_lists_list h3 span {
  background-color: #C41A70;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_gourmet .program_gourmet_lists_list div {
  display: flex;
  gap: 1.5vw;
  margin-top: 3vw;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_gourmet .program_gourmet_lists_list div p {
  flex: 0 0 40%;
}
#gourmet .program_gourmet_lists#program_gourmet_lists_gourmet .program_gourmet_lists_list div figure img {
  width: 100%;
}

#wish {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/wish/bg_wish.png") no-repeat top center/cover;
  padding-bottom: 5vw;
}
#wish .content {
  padding-top: 12vw;
  text-align: center;
}
#wish .content h1 {
  width: 70vw;
  margin: 0 auto;
}
#wish .content #wish_summary {
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/wish/bg_title_wish.png") no-repeat top center/contain;
  height: 40vw;
  width: 90vw;
  margin: -18vw auto 0;
  padding-top: 22vw;
  text-shadow: 0px 0px 0.5vw #fff, 0px 0px 1vw #fff, 0px 0px 1.5vw #fff, 0px 0px 2vw #fff;
}
#wish .content #wish_content {
  position: relative;
}
#wish .content #wish_content ul {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#wish .content #wish_content ul li {
  width: 49%;
  border-radius: 2vw;
  padding: 2vw;
  background-color: #fff;
}
#wish .content #wish_content ul li h2 {
  width: 100%;
  height: 10.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://fujisanhanabi.com/fujimotorsportsforest/_archives/2025/wp-content/themes/fmf_theme_2025/img/wish/bg_wish_subtitle.png") no-repeat top center/contain;
  font-size: 2.2vw;
  line-height: 1.4;
  color: #fff;
}
#wish .content #wish_content ul li p {
  margin: 1vw 5vw 0;
}
#wish .content #wish_content ul li p img {
  width: 100%;
}
#wish .content #wish_content #img_fireworks01 {
  position: absolute;
  left: 1vw;
  bottom: -2vw;
}
#wish .content #wish_content #img_fireworks01 img {
  width: 12.5vw;
}
#wish .content #wish_content #img_fireworks02 {
  position: absolute;
  right: 7.5vw;
  bottom: -3vw;
}
#wish .content #wish_content #img_fireworks02 img {
  width: 12.5vw;
}

.page-gallery {
  margin: 15vw auto 0;
}
.page-gallery .title {
  width: 80vw;
  margin: 0 auto 5vw;
}
.page-gallery .title img {
  width: 100%;
}
.page-gallery .content {
  width: 80vw;
  margin: 0 auto 5vw;
}
.page-gallery .content h1 {
  font-size: 2.4vw;
  text-align: center;
  color: #283250;
  position: relative;
  padding-bottom: 1vw;
}
.page-gallery .content h1::before {
  content: "";
  display: block;
  width: 10vw;
  height: 3px;
  background-color: #283250;
  position: absolute;
  left: calc(50% - 5vw);
  bottom: 0;
}
.page-gallery #gallery_header ul {
  display: flex;
  justify-content: center;
  margin-top: 5vw;
}
.page-gallery #gallery_header ul li {
  flex: 0 0 15vw;
  text-align: center;
}
.page-gallery #gallery_header ul li a {
  display: block;
  border: 1px solid #0065CA;
  border-left: none;
  padding: 1vw 0;
  font-size: 1.7vw;
}
.page-gallery #gallery_header ul li a span {
  display: block;
  font-size: 1vw;
}
.page-gallery #gallery_header ul li a:hover {
  background-color: rgba(0, 101, 202, 0.1);
  color: #0065CA;
}
.page-gallery #gallery_header ul li:first-child a {
  border-left: 1px solid #0065CA;
}
.page-gallery #gallery_header p {
  margin-top: 1vw;
  text-align: right;
  color: #979797;
}
.page-gallery .gallery_content {
  margin-top: 10vw;
}
.page-gallery .gallery_content h2 {
  font-size: 3.6vw;
  text-align: center;
  color: #283250;
  position: relative;
  padding-bottom: 1vw;
  line-height: 1.55;
}
.page-gallery .gallery_content h2::before {
  content: "";
  display: block;
  width: 7vw;
  height: 2px;
  background-color: #283250;
  position: absolute;
  left: calc(50% - 3.5vw);
  bottom: 0;
}
.page-gallery .gallery_content h2 span {
  display: block;
  font-size: 2vw;
}
.page-gallery .gallery_content div {
  margin-top: 5vw;
}
.page-gallery .gallery_content div h3 {
  font-size: 2.4vw;
  display: inline-block;
  background-color: #003250;
  color: #fff;
  padding: 0 2vw;
}
.page-gallery .gallery_content div h3 span {
  font-size: 1vw;
  padding-left: 1vw;
}
.page-gallery .gallery_content div p {
  margin-top: 1vw;
}
.page-gallery .gallery_content div ul {
  margin-top: 2vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7px 0;
}
.page-gallery .gallery_content div ul li {
  flex: 0 0 calc(25% - 5px);
}
.page-gallery .gallery_content div ul li img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* 以下、2025追加版 */
#topInfo {
  margin-top: 4.5vw;
  padding: 2vw 5vw;
  background-color: #FECBD9;
}
#topInfo p {
  font-size: 2vw;
  text-align: center;
  color: #283250;
  font-weight: bold;
}

.mw_wp_form {
  margin-top: 2vw;
}
.mw_wp_form table {
  margin: 2vw auto;
}
.mw_wp_form table th {
  padding: 1vw;
  background-color: #f3f6f9;
  border: 1px solid #e3e6e9;
  width: 17vw;
}
.mw_wp_form table th .attention {
  font-size: 0.8vw;
  color: #c40;
  padding-left: 0.5vw;
}
.mw_wp_form table td {
  padding: 1vw;
  background-color: #fbfbfb;
  border: 1px solid #e3e6e9;
}
.mw_wp_form table td input, .mw_wp_form table td select, .mw_wp_form table td textarea {
  padding: 0.5vw 1vw;
  border: 1px solid #dbdbdb;
}
.mw_wp_form table td input.inquiry_price {
  width: 80%;
}
.mw_wp_form table td textarea {
  height: 15vw;
}
.mw_wp_form #inquiry_submit {
  text-align: center;
}
.mw_wp_form #inquiry_submit input[type=submit] {
  padding: 0.5vw 2vw;
  color: #222;
  border: 1px solid #222;
  margin: 1vw 1vw 0 0;
  cursor: pointer;
}
.mw_wp_form #inquiry_submit input[type=submit].submitButton {
  border: 1px solid #CF6288;
  color: #CF6288;
  transition: all 0.3s ease;
}
.mw_wp_form #inquiry_submit input[type=submit].submitButton:hover {
  background-color: #CF6288;
  color: #fff;
}
.mw_wp_form .paling {
  display: block;
  padding: 1vw;
  margin: 1vw 0;
  background-color: #f0f0f0;
  font-weight: bold;
}

#volunteer_list {
  margin-bottom: 5vw;
}
#volunteer_list div {
  margin-bottom: 1.5vw;
}
#volunteer_list div dt {
  font-weight: bold;
}
#volunteer_list div dt::before {
  content: "■";
}
#volunteer_list div dd {
  margin-left: 1rem;
}
#volunteer_list div dd .volunteer_list_attention {
  color: #EC008D;
  display: block;
}

.modaal-container {
  max-width: 50vw !important;
}
.modaal-container h2 {
  font-size: 2.4vw;
  padding: 0.5vw;
  text-align: center;
  background-color: #F5C5D3;
}
.modaal-container h3 {
  font-size: 1.4vw;
  font-weight: bold;
  margin-top: 1.5vw;
  padding: 0.5vw 0;
}
.modaal-container p {
  margin: 1vw auto 0;
}
.modaal-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none !important;
}

.opa:hover {
  opacity: 0.7;
}

.is-error {
  color: #cc0044;
  font-weight: bold;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.en_us #floatBox {
  top: 0;
}
.en_us #topKv p {
  background-color: #F5C7D6;
}
.en_us .page-ticket {
  margin-top: 0 !important;
}
.en_us .page-ticket #areamap {
  margin-top: 0 !important;
}
.en_us .page-ticket #chart {
  padding-top: 1vw !important;
}
.en_us .page-ticket #chart #chartBox .chart_categorize h3 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  color: #fff;
  padding: 0 0.5vw;
  font-size: 1.8vw;
  font-weight: bold;
  flex: 0 0 4.5vw;
}
.en_us .page-ticket #chart #chartBox .chart_categorize#chart_categorize-drivein h3 {
  padding: 0 1vw;
  font-size: 1.3vw;
}
.en_us .page-ticket .chart_categorize_lists_list_info_seats {
  width: 100%;
}
.en_us .page-ticket .chart_categorize_lists_list_info_seats ul, .en_us .page-ticket .chart_categorize_lists_list_info_seats li {
  width: 100%;
}
.en_us .page-ticket .chart_categorize_lists_list_info_seats h4 {
  position: relative;
}
.en_us .page-ticket .chart_categorize_lists_list_info_seats h4 div {
  display: flex;
  justify-content: flex-end;
  gap: 1.5vw;
  position: absolute;
  right: 0;
  top: 0.5vw;
}
.en_us .page-ticket .chart_categorize_lists_list_info_seats h4 div a {
  height: 3vw;
  display: block;
}
.en_us .page-ticket .chart_categorize_lists_list_info_seats h4 div a img {
  height: 100%;
}/*# sourceMappingURL=style.css.map */