@charset "UTF-8";
/*==============================
サイト共通
==============================*/
html {
  scroll-padding-top: 200px;
  scroll-behavior: smooth;
}

body {
  background-color: #07003e;
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 1100px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
}

.hidden {
  overflow: hidden;
}

.inner {
  padding: 0 16px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .inner {
    padding: 0 40px;
  }
}
@media (min-width: 1100px) {
  .inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

.sp-hidden {
  display: none;
}
@media (min-width: 1100px) {
  .sp-hidden {
    display: block;
  }
}

.pc-hidden {
  display: block;
}
@media (min-width: 1100px) {
  .pc-hidden {
    display: none;
  }
}

.top-section-title {
  color: #ffffff;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.top-section-title.is-type2 {
  color: #07003e;
}

.top-section-title-ja {
  display: inline-block;
  font-size: 24px;
  letter-spacing: 0.2em;
  font-family: "Shippori Mincho", serif;
  writing-mode: vertical-rl;
}
@media (min-width: 1100px) {
  .top-section-title-ja {
    font-size: 32px;
  }
}

.top-section-title-wave img {
  width: 46px;
}

.top-section-title-en {
  font-family: "Josefin Slab", serif;
  font-size: 20px;
  letter-spacing: 0.2em;
}

.page-head {
  height: 375px;
  margin-bottom: 120px;
}
@media (min-width: 1100px) {
  .page-head {
    margin-top: 130px;
  }
}

.page-head__inner {
  position: relative;
  height: 375px;
}
@media (min-width: 1100px) {
  .page-head__inner {
    max-width: 1260px;
  }
}

.page-head__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
}
@media (min-width: 1100px) {
  .page-head__title {
    font-size: 40px;
  }
}

.gt_white_content {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

/*==============================
header
==============================*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 70px;
  z-index: 10;
  align-items: center;
}
@media (min-width: 1100px) {
  .header {
    background-color: #07003e;
    height: 130px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
@media (min-width: 1100px) {
  .header__inner {
    height: 130px;
    max-width: 1360px;
  }
}

@media (min-width: 1100px) {
  .header__logo a {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.header__logo a img {
  width: 50px;
}
@media (min-width: 1100px) {
  .header__logo a img {
    width: 70px;
  }
}

.header__logo-text {
  display: none;
}
@media (min-width: 1100px) {
  .header__logo-text {
    display: block;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-family: "Shippori Mincho", serif;
  }
}

@media (min-width: 1100px) {
  .header__logo-subtext {
    font-size: 14px;
    letter-spacing: 0;
  }
}

@media (min-width: 1100px) {
  .header__logo-maintext {
    font-size: 18px;
    letter-spacing: 0;
  }
}

@media (min-width: 1100px) {
  .header__button {
    display: none;
  }
}

.drawer-button {
  width: 30px;
  height: 19px;
  position: relative;
}
.drawer-button.is-open .drawer-button__line:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
.drawer-button.is-open .drawer-button__line:nth-of-type(2) {
  display: none;
}
.drawer-button.is-open .drawer-button__line:nth-of-type(3) {
  top: 50%;
  bottom: initial;
  transform: rotate(-45deg);
}

.drawer-button__line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  left: 0;
  transition: all 0.3s ease;
}
.drawer-button__line:nth-of-type(1) {
  top: 0;
}
.drawer-button__line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.drawer-button__line:nth-of-type(3) {
  bottom: 0;
}

.header__nav {
  display: none;
}
@media (min-width: 1100px) {
  .header__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.header__icon-lists {
  display: flex;
  justify-content: flex-end;
  gap: 23px;
  position: relative;
  align-items: center;
}

@media (min-width: 1100px) {
  .header__icon-list a img {
    width: 30px;
    transition: all ease 0.3s;
  }
  .header__icon-list a img:hover {
    opacity: 0.7;
  }
}

.todownload {
  color: #ffffff;
  font-weight: bold;
  padding: 5px 20px;
  border: 1px solid currentColor;
  line-height: 1;
  letter-spacing: 0;
  transition: all ease 0.3s;
}
.todownload:hover {
  color: #07003e;
  background: #ffffff;
}

.header__nav-lists {
  display: flex;
  gap: 15px;
}

.header__nav-list {
  position: relative;
}
.header__nav-list:hover {
  cursor: pointer;
}
.header__nav-list a {
  transition: all ease 0.3s;
}
.header__nav-list a:hover {
  opacity: 0.7;
}

.header__link-text {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 15px;
}

.header__link-arrow img {
  width: 7px;
}

.header-submenu {
  display: none;
  position: fixed;
  left: 0;
  width: 100vw;
  top: 130px;
  background: #ffffff;
  color: #07003e;
  padding: 30px 0;
  z-index: 9;
}

.header-submenu__inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.header-submenu__title {
  font-weight: bold;
  letter-spacing: 0;
  padding: 10px 6px;
  border: 1px solid currentColor;
}

.header-submenu__lists {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.header-submenu__list a {
  font-weight: bold;
  padding-bottom: 4px;
  border-bottom: 1px solid #07003e;
  transition: all ease 0.3s;
  font-size: 15px;
}
.header-submenu__list a:hover {
  opacity: 0.7;
}

.drawer__content {
  padding-top: 100px;
  padding-bottom: 50px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  color: #ffffff;
  z-index: 5;
  position: fixed;
  background-color: #06003e;
  overflow-y: auto;
  display: block;
  transition: all ease 0.5s;
}
.drawer__content.is-open {
  left: 0;
  transition: left 0.5s ease;
}
@media (min-width: 1100px) {
  .drawer__content {
    display: none;
  }
}

.drawer-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Shippori Mincho", serif;
  gap: 3px;
}

.drawer-title__sub {
  line-height: 1.2;
  font-weight: bold;
}

.drawer-title__main {
  font-size: 32px;
  line-height: 1.2;
  font-weight: bold;
}

.drawer__lists {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.drawer__list {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #64617c;
  width: 100%;
}

.drawer__list-open {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr; /* 中央ブロックを作る */
  align-items: center;
}

.drawer__list-open-text {
  font-weight: bold;
  grid-column: 2;
  justify-self: end; /* 中央ブロック内で右寄せ */
  white-space: nowrap;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}

.drawer__list-open-icon {
  grid-column: 3;
  justify-self: start; /* 中央ブロック内で左寄せ */
  margin-left: 8px; /* ← テキストとアイコンの距離（ここだけ調整） */
}
.drawer__list-open-icon img {
  width: 8px;
}
.drawer__list-open-icon.is-open {
  transform: rotate(180deg);
}

.drawer__list-content {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.drawer__list-content li a {
  font-family: "Noto Sans JP", sans-serif;
}

.drawer__link {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.drawer__sns-lists {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 50px;
  gap: 15px;
}

.drawer__sns-list a img {
  width: 32px;
}

.to-download {
  margin-top: 30px;
  text-align: center;
}
.to-download a {
  padding: 10px 30px;
  border: 1px solid #ffffff;
  line-height: 1.7;
}

.drawer__sublinks {
  margin-top: 50px;
}

/*==============================
fv
==============================*/
.fv {
  position: relative;
  height: 760px;
  overflow: hidden;
  /* SPは画像 */
  background: url(../webp/sp/fv.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .fv {
    margin-top: 130px;
    background: none; /* ← 動画にするから消す */
  }
}

/* 背景動画 */
.fv__video {
  display: none; /* SPでは非表示 */
}
@media (min-width: 1100px) {
  .fv__video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; /* ← background-size: cover の代わり */
    z-index: 0;
  }
}

/* テキストは前面 */
.fv__inner {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.fv__content {
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
}

.fv__title {
  writing-mode: vertical-rl;
  margin: 0 auto;
  font-size: 30px;
  letter-spacing: 0.2em;
  font-weight: bold;
  text-shadow: 0 0 0px #fff, 0 0 15px #fff;
}
@media (min-width: 1100px) {
  .fv__title {
    font-size: 36px;
  }
}

.fv__dates {
  text-align: center;
}

.fv__date {
  font-size: 50px;
  font-weight: bold;
  text-shadow: 0 0 0px #fff, 0 0 15px #fff;
  margin-top: 15px;
}
@media (min-width: 1100px) {
  .fv__date {
    font-size: 50px;
  }
}

.fv__date-small {
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 0 0px #fff, 0 0 15px #fff;
}
@media (min-width: 1100px) {
  .fv__date-small {
    font-size: 30px;
  }
}

.fv__time {
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 0 0px #fff, 0 0 15px #fff;
}
@media (min-width: 1100px) {
  .fv__time {
    font-size: 40px;
  }
}

.fv__time-small {
  font-size: 21px;
  font-weight: bold;
  text-shadow: 0 0 0px #fff, 0 0 15px #fff;
}
@media (min-width: 1100px) {
  .fv__time-small {
    font-size: 24px;
  }
}

/*==============================
top-pickup
==============================*/
.top-pickup {
  margin-top: 120px;
}

@media (min-width: 1100px) {
  .top-pickup__inner {
    height: 130px;
    max-width: 1360px;
  }
}

@media (min-width: 1100px) {
  .sp-srider {
    display: none;
  }
}
.sp-srider .top-pickup__items {
  display: flex;
  flex-direction: column;
}

.swiper-slide a img {
  width: 100%;
}

.top-pickup-pc {
  display: none;
}
@media (min-width: 1100px) {
  .top-pickup-pc {
    display: block;
  }
}

.top-pickup__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

@media (min-width: 1100px) {
  .top-pickup-pc__item {
    transition: all ease 0.3s;
  }
  .top-pickup-pc__item:hover {
    opacity: 0.7;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 25px;
  height: 40px;
}

.swiper-button-next {
  background: url(../webp/swiper-arrow.webp) no-repeat center center/contain;
  color: transparent;
}

.swiper-button-prev {
  background: url(../webp/swiper-arrow.webp) no-repeat center center/contain;
  color: transparent;
  transform: rotate(180deg);
}

.swiper-pagination-bullet {
  background: #554f85;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.sp-banner {
  display: block;
}
@media (min-width: 1100px) {
  .sp-banner {
    display: none;
  }
}

.sp-banner-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 767px) {
  .pc-swiper {
    display: none;
  }
}

/*==============================
top-about
==============================*/
.hero {
  margin-top: 100px;
  height: 600vh;
  position: relative;
}

.pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* ===== 背景画像 ===== */
.imgs {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.img {
  position: absolute;
  overflow: hidden;
}
.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.7;
}

.i1 {
  right: 0;
  top: 100px;
}
@media (min-width: 1100px) {
  .i1 {
    top: 20%;
  }
}
.i1 img {
  width: 127px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .i1 img {
    width: 300px;
  }
}
@media (min-width: 1100px) {
  .i1 img {
    width: 280px;
  }
}

.i2 {
  left: 15%;
  top: 35%;
}
.i2 img {
  width: 82px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .i2 img {
    width: 200px;
  }
}
@media (min-width: 1100px) {
  .i2 img {
    width: 270px;
  }
}

.i3 {
  left: 20%;
  top: 75%;
}
.i3 img {
  width: 110px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .i3 img {
    width: 250px;
  }
}
@media (min-width: 1100px) {
  .i3 img {
    width: 280px;
  }
}

.i4 {
  left: 70%;
  top: 55%;
}
.i4 img {
  width: 95px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .i4 img {
    width: 260px;
  }
}
@media (min-width: 1100px) {
  .i4 img {
    width: 230px;
  }
}

.i5 {
  left: 5%;
  top: 96%;
}
.i5 img {
  width: 110px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .i5 img {
    width: 200px;
  }
}
@media (min-width: 1100px) {
  .i5 img {
    width: 180px;
  }
}

.i6 {
  right: 10%;
  top: 100%;
}
@media (min-width: 1100px) {
  .i6 {
    right: 0%;
    top: 80%;
  }
}
.i6 img {
  width: 110px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .i6 img {
    width: 250px;
  }
}
@media (min-width: 1100px) {
  .i6 img {
    width: 210px;
  }
}

.i7 {
  right: 10%;
  top: 120%;
}
@media (min-width: 1100px) {
  .i7 {
    right: 30%;
    top: 100%;
  }
}
.i7 img {
  width: 80px;
}
@media (min-width: 1100px) {
  .i7 img {
    width: 150px;
  }
}

/* ===== テキスト ===== */
.text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 30px 32px 90px 32px;
}
@media (min-width: 1100px) {
  .text {
    padding: 0;
  }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 760px;
}

/* 縦書きタイトル（中央・本文の上） */
/* 本文 */
.lead {
  line-height: 2.2;
  letter-spacing: 0.04em;
  text-align: left;
  max-width: 100%;
  color: #ffffff;
  will-change: transform;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .lead {
    padding-top: 380px;
  }
}
@media (min-width: 1100px) {
  .lead {
    text-align: center;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .content {
    gap: 24px;
  }
  .title {
    font-size: 20px;
  }
  .lead {
    max-width: 92%;
  }
}
/*==============================
top-news
==============================*/
.top-news {
  background-color: #ffffff;
  padding: 120px 0;
  color: #07003e;
}

@media (min-width: 1100px) {
  .top-news__inner {
    display: flex;
    gap: 110px;
  }
}

.top-news__content {
  flex-grow: 1;
}

.top-news__list {
  padding: 15px 0;
  border-bottom: 1px solid #07003e;
}
@media (min-width: 1100px) {
  .top-news__list {
    transition: all ease 0.3s;
  }
  .top-news__list:hover {
    background: rgba(7, 0, 62, 0.1);
  }
}

.top-news__link {
  display: block;
}
@media (min-width: 1100px) {
  .top-news__link {
    padding: 0 15px;
  }
}

.top-news__date {
  font-weight: bold;
}

.top-news__text {
  margin-top: 10px;
  font-weight: bold;
}

/*==============================
footer
==============================*/
.footer-sns {
  background: url(../webp/sns-bg.webp) no-repeat center center/cover;
  padding: 90px 0;
}

.footer-sns__title-text {
  font-size: 32px;
  font-family: "Josefin Slab", serif;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.2em;
}

.footer-sns__text {
  color: #ffffff;
  text-align: center;
  margin-top: 30px;
}

.footer-sns__lists {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  margin-top: 25px;
}

.footer__contact {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.footer__contact-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer__contact-logo img {
  width: 100px;
}

.footer__contact-text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.footer__contact-text span {
  font-size: 14px;
}

.footer__contact-content {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 1100px) {
  .footer__contact-content {
    flex-direction: row;
    gap: 100px;
  }
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
@media (min-width: 1100px) {
  .footer__contact-item {
    text-align: center;
  }
}

.footer__sub-text {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  border: 1px solid;
  line-height: 1.5;
  padding: 10px 20px;
  text-align: center;
}

.footer__contact-name {
  font-size: 20px;
  font-weight: bold;
}

.footer__contact-address {
  text-align: center;
}

.footer__contact-link {
  margin-top: 50px;
}
.footer__contact-link a {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid currentColor;
  color: #07003e;
  background-color: #ffffff;
  font-weight: bold;
}
@media (min-width: 1100px) {
  .footer__contact-link a {
    transition: all ease 0.3s;
  }
  .footer__contact-link a:hover {
    background: #07003e;
    color: #ffffff;
  }
}

.copyright {
  text-align: center;
  padding: 10px 0;
}
@media (min-width: 1100px) {
  .copyright {
    text-align: right;
  }
}

.cpyright__text {
  color: #ffffff;
  font-size: 12px;
}

/*==============================
about
==============================*/
.about-head {
  background: url(../webp/sp/about-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .about-head {
    background: url(../webp/about-bg.webp) no-repeat center center/cover;
  }
}

.about {
  color: #ffffff;
  padding-bottom: 120px;
}

.about__top-title {
  writing-mode: vertical-rl;
  margin: 0 auto;
  font-family: "Shippori Mincho", serif;
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 24px;
}
@media (min-width: 1100px) {
  .about__top-title {
    font-size: 32px;
  }
}

.about__top-text {
  margin-top: 50px;
  font-family: "Shippori Mincho", serif;
  line-height: 2;
}
@media (min-width: 1100px) {
  .about__top-text {
    text-align: center;
  }
}

.about__lists.about__lists-sp {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.about__lists.about__lists-sp .about-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__lists.about__lists-sp .about-item__title {
  font-size: 21px;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
}
@media (min-width: 1100px) {
  .about__lists.about__lists-sp {
    display: none;
  }
}
.about__lists.about__lists-pc {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 120px;
}
.about__lists.about__lists-pc .about__list {
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
}
.about__lists.about__lists-pc .about__list.is-float {
  display: block;
}
.about__lists.about__lists-pc .about__list.is-float .about-tem__image {
  float: right;
  padding-left: 20px;
  padding-bottom: 20px;
}
.about__lists.about__lists-pc .about__list.is-float .about-tem__texts {
  max-width: 100%;
}
.about__lists.about__lists-pc .about__list:nth-child(4) {
  flex-direction: row-reverse;
}
.about__lists.about__lists-pc .about-tem__image {
  max-width: 400px;
}
.about__lists.about__lists-pc .about-tem__texts {
  max-width: 495px;
}
.about__lists.about__lists-pc .about-tem__title {
  font-size: 24px;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
}
.about__lists.about__lists-pc .about-tem__text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .about__lists.about__lists-pc {
    display: none;
  }
}

/*==============================
下層ページ共通
==============================*/
.page-content {
  display: flex;
  flex-direction: column;
}

.page-content__title {
  font-size: 24px;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
}
@media (min-width: 1100px) {
  .page-content__title {
    text-align: left;
    margin-bottom: 30px;
  }
}
.page-content__title::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 1px;
  background-color: #ffffff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1100px) {
  .page-content__title::after {
    width: 320px;
    left: 0;
    transform: translateX(0);
  }
}

.page-content__subtitle {
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 30px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #ffffff;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (min-width: 1100px) {
  .page-content__subtitle {
    margin-left: 0;
    font-size: 18px;
  }
}
.page-content__subtitle.is-long {
  padding: 2px 10px;
}

.page__link {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px 30px;
  background: #ffffff;
  justify-content: center;
  margin-top: 20px;
  align-items: center;
  border: 1px solid currentColor;
}
.page__link.is-long {
  padding: 10px 8px;
}
@media (min-width: 1100px) {
  .page__link {
    width: -moz-fit-content;
    width: fit-content;
    transition: all ease 0.3s;
  }
  .page__link:hover {
    background: #07003e;
  }
  .page__link:hover .page__link-text {
    color: #ffffff;
  }
  .page__link:hover .page__link-icon {
    width: 25px;
    height: 25px;
  }
  .page__link:hover .page__link-icon svg path {
    fill: #ffffff;
  }
}

.page__link-text {
  color: #07003e;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  transition: all ease 0.3s;
}

.page__link-icon {
  width: 25px;
  height: 25px;
  transition: all ease 0.3s;
}
.page__link-icon svg path {
  fill: #07003e;
  transition: all ease 0.3s;
}

.page-lead {
  padding-left: 12px;
  font-weight: bold;
  position: relative;
  font-size: 18px;
}
.page-lead::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 15px;
  background: #ffffff;
  left: 0;
  top: 8px;
}

.parking-lead {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .parking-lead {
    flex-direction: row;
    align-items: center;
  }
}

.parking-lead-text {
  font-weight: bold;
}

.parking-attention {
  display: inline-block;
  font-size: 16px;
  padding: 0 15px;
  font-weight: bold;
  background-color: #ffffff;
  color: #07003e;
  color: #ff4747;
}
@media (min-width: 1100px) {
  .parking-attention {
    font-size: 18px;
  }
}

.sub-page-links {
  display: none;
}
@media (min-width: 1100px) {
  .sub-page-links {
    position: fixed;
    top: 120px;
    right: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .sub-page-links.is-show {
    opacity: 1;
    visibility: visible;
  }
}

.sub-page-link {
  background: #ffffff;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border-radius: 4px 0 0 4px;
  transition: opacity 0.3s;
}
.sub-page-link:hover {
  opacity: 0.7;
}

.sub-page-link__text {
  color: #07003e;
  writing-mode: vertical-rl;
  font-weight: bold;
  font-size: 14px;
}

.sub-page-link__icon img {
  width: 20px;
}

/*==============================
for-visitors
==============================*/
.for-visitors-head,
.access-head {
  background: url(../webp/sp/for-visitors-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .for-visitors-head,
  .access-head {
    background: url(../webp/for-visitors-bg.webp) no-repeat center center/cover;
  }
}

.for-visitors {
  padding-bottom: 120px;
}

.for-visitors-item,
.access-item {
  padding-top: 40px;
  padding-bottom: 40px;
}
.for-visitors-item:first-child,
.access-item:first-child {
  padding-top: 0;
}

.for-visitors__seat-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.for-visitors__parking-items {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 1100px) {
  .for-visitors__parking-items {
    margin-top: 80px;
    gap: 80px;
  }
}

.table-inner {
  overflow-y: auto;
}

.for-visitors__parking-table,
.hanabi-sponsor__plan-table,
.starmine {
  width: 100%;
  margin-top: 20px;
  table-layout: fixed;
  border-collapse: collapse;
}
.for-visitors__parking-table thead,
.hanabi-sponsor__plan-table thead,
.starmine thead {
  background: #dadada;
}
.for-visitors__parking-table thead tr,
.hanabi-sponsor__plan-table thead tr,
.starmine thead tr {
  height: 50px;
}
.for-visitors__parking-table thead tr th,
.hanabi-sponsor__plan-table thead tr th,
.starmine thead tr th {
  vertical-align: middle;
  text-align: center;
  color: #07003e;
  font-size: 16px;
  font-weight: bold;
  border-right: 1px solid #ffffff;
}
.for-visitors__parking-table thead tr th:first-child,
.hanabi-sponsor__plan-table thead tr th:first-child,
.starmine thead tr th:first-child {
  width: 170px;
}
.for-visitors__parking-table thead tr th:nth-child(2),
.hanabi-sponsor__plan-table thead tr th:nth-child(2),
.starmine thead tr th:nth-child(2) {
  width: 350px;
}
.for-visitors__parking-table tbody tr,
.hanabi-sponsor__plan-table tbody tr,
.starmine tbody tr {
  background: #ffffff;
  height: 55px;
  color: #07003e;
  border-bottom: 1px solid #07003e;
}
.for-visitors__parking-table tbody tr th,
.hanabi-sponsor__plan-table tbody tr th,
.starmine tbody tr th {
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #07003e;
  font-weight: bold;
  padding: 10px;
}
.for-visitors__parking-table tbody tr th span,
.hanabi-sponsor__plan-table tbody tr th span,
.starmine tbody tr th span {
  display: block;
  font-weight: bold;
}
.for-visitors__parking-table tbody tr td,
.hanabi-sponsor__plan-table tbody tr td,
.starmine tbody tr td {
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #07003e;
  font-weight: bold;
}
.for-visitors__parking-table tbody tr td:last-child,
.hanabi-sponsor__plan-table tbody tr td:last-child,
.starmine tbody tr td:last-child {
  border-right: 1px solid #ffffff;
}
@media (max-width: 767px) {
  .for-visitors__parking-table,
  .hanabi-sponsor__plan-table,
  .starmine {
    width: 1000px;
    table-layout: fixed;
  }
}

.for-visitors__manner-items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.for-visitors__manner-lists {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 1em;
}

.parking-full {
  padding: 5px 30px;
  border: 2px solid #07003e;
  border-radius: 5px;
  font-weight: bold;
}

.for-tiketpass {
  font-weight: bold;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.for-tiketpass:hover {
  opacity: 0.7;
}

.parking-full {
  background: #ffffff;
  color: #333;
}

.parking-30 {
  background: #4da3ff;
  color: #333;
}

.parking-60 {
  background: #ffd54f;
  color: #333;
}

.parking-80 {
  background: #ff9800;
  color: #333;
}

.full {
  background: #ff4747;
  color: #fff;
}

.parking-head-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.to-ticket-pass {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px 20px;
  gap: 10px;
}
@media (min-width: 1100px) {
  .to-ticket-pass {
    width: -moz-fit-content;
    width: fit-content;
    align-items: flex-start;
    transition: opacity 0.3s ease;
  }
  .to-ticket-pass:hover {
    opacity: 0.7;
  }
}
.to-ticket-pass img {
  width: 260px;
  margin: 0 auto;
}
.to-ticket-pass p {
  color: #07003e;
  font-weight: bold;
}

.how-to {
  margin-top: 20px;
}

.how-to-contents {
  margin-top: 20px;
}

.how-to-title {
  font-weight: bold;
  border-bottom: 2px solid #ffffff;
  margin-bottom: 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.how-text {
  line-height: 2;
}

.how-to-list {
  list-style: disc;
}

.nokisaki {
  margin: 0 auto;
}

.nokisaki-link {
  width: 100%;
  height: 80px;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nokisaki-link img {
  width: 250px;
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .nokisaki-link {
    width: 350px;
  }
}

/*==============================
news-archive
==============================*/
.news-head {
  background: url(../webp/sp/news-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .news-head {
    background: url(../webp/news-bg.webp) no-repeat center center/cover;
  }
}

.news-archive {
  padding-bottom: 120px;
}

.news-archive__inner {
  padding: 0 40px;
}

.news-archive__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .news-archive__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
  }
}
@media (min-width: 1100px) {
  .news-archive__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
  }
}

@media (min-width: 1100px) {
  .news-archive-item__image img {
    width: 320px;
    height: 170px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.news-archive-item__texts {
  min-height: 140px;
  background: #ffffff;
  color: #07003e;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.news-archive-item__category {
  padding: 5px 15px;
  background: #07003e;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  line-height: 1;
}

.news-archive-item__date {
  font-size: 14px;
  font-weight: bold;
}

.news-archive-item__title {
  font-size: 16px;
  font-weight: bold;
}

.pagination {
  margin-top: 70px;
  text-align: center;
}

.page-numbers {
  font-family: "Josefin Slab", serif;
  font-size: 24px;
  left: 1px;
  font-weight: bold;
  text-align: center;
  margin: 0 10px;
}
.page-numbers.current {
  padding: 9px 11px 0px 12px;
  background: #ffffff;
  color: #07003e;
}

.prev,
.next {
  display: none;
}

/*==============================
news
==============================*/
.news {
  padding-bottom: 120px;
}

@media (min-width: 1100px) {
  .news__inner {
    max-width: 700px;
  }
}

.news__head-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.news__head-date {
  font-size: 14px;
  font-weight: bold;
}

.news__head-category {
  font-size: 12px;
  line-height: 1;
  padding: 3px 10px;
  background: #ffffff;
  color: #07003e;
  font-weight: bold;
}

.news__head-title {
  margin-top: 3px;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1100px) {
  .news__head-title {
    font-size: 32px;
  }
}
.news__head-title::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 1px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
}

.news__image {
  margin-top: 50px;
}

.news__content {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.news__content p a {
  font-weight: bold;
  text-decoration: underline;
}
@media (min-width: 1100px) {
  .news__content p a {
    transition: opacity 0.3s ease;
  }
  .news__content p a:hover {
    opacity: 0.7;
  }
}

/*==============================
ticket
==============================*/
.ticket-head {
  background: url(../webp/sp/ticket-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .ticket-head {
    background: url(../webp/ticket-bg.webp) no-repeat center center/cover;
  }
}

.ticket {
  padding-bottom: 120px;
}

.ticket-item {
  padding-top: 40px;
  padding-bottom: 40px;
}
.ticket-item:first-child {
  padding-top: 0;
}

.ticket__seat-image {
  margin-top: 20px;
}

.ticket__kind-items {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) and (max-width:1099px) {
  .ticket__kind-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
  }
}
@media (min-width: 1100px) {
  .ticket__kind-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
  }
}

.ticket__kind-item {
  padding: 23px;
  background: #ffffff;
}
@media (min-width: 1100px) {
  .ticket__kind-item {
    padding: 30px;
  }
}

.ticket-kind__title {
  padding: 1px 22px;
  border: 1px solid #07003e;
  font-size: 14px;
  color: #07003e;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
@media (min-width: 1100px) {
  .ticket-kind__title {
    font-size: 18px;
    padding: 0 30px;
  }
}

.ticket-kind__image {
  margin-top: 15px;
}

.ticket-kind__texts {
  color: #07003e;
}

.ticket-kind__text {
  margin-top: 10px;
}
@media (min-width: 1100px) {
  .ticket-kind__text {
    margin-top: 18px;
  }
}

.ticket-kind__info {
  margin-top: 10px;
}
.ticket-kind__info dl {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.ticket-kind__price {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.price {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-large {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  line-height: 1;
  white-space: nowrap;
  align-items: flex-end;
}
@media (min-width: 1100px) {
  .price-large {
    font-size: 24px;
  }
}

.tax {
  font-size: 12px;
}

.price-link {
  background: #07003e;
  padding: 4px 15px;
  border: 1px solid currentColor;
}
@media (min-width: 1100px) {
  .price-link {
    padding: 5px 20px;
  }
  .price-link:hover {
    background-color: #ffffff;
  }
  .price-link:hover .price-link-text {
    color: #07003e;
  }
  .price-link:hover svg path {
    fill: #07003e;
  }
}

.price-link-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  transition: all ease 0.3s;
}
@media (min-width: 1100px) {
  .price-link-text {
    font-size: 20px;
  }
}

.price-link-icon {
  width: 25px;
  height: 25px;
}
.price-link-icon svg path {
  fill: #ffffff;
  transition: all ease 0.3s;
}

.ticket__schedule-wrapper {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ticket__schedule-text {
  font-weight: bold;
}

.ticket__schedule-date {
  margin-top: 10px;
  font-weight: bold;
}

.ticket__schedule-lists {
  margin-top: 10px;
  list-style: disc;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ticket__howto-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ticket__howto-text {
  margin-top: 10px;
}

.ticket__howto-lists {
  margin-top: 10px;
  list-style: disc;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page__download {
  padding: 10px;
}

.page__link-pdf img {
  width: 24px;
}

.ticket__bento-lists {
  margin-top: 10px;
  list-style: disc;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ticket__bento-content {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ticket__bento-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1100px) {
  .ticket__bento-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .ticket__bento-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1100px) {
  .ticket__bento-images {
    max-width: 400px;
  }
}

.bento-title {
  margin-bottom: 20px;
}

@media (min-width: 1100px) {
  .ticket__bento-texts {
    max-width: 550px;
  }
}

.bento-text {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}

.bento__info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bento__info dl {
  display: flex;
  flex-direction: row;
}
.bento__info dl dt {
  font-weight: bold;
}
.bento__info dl dd {
  font-weight: bold;
}

/*==============================
qa
==============================*/
.qa-head {
  background: url(../webp/sp/qa-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .qa-head {
    background: url(../webp/qa-bg.webp) no-repeat center center/cover;
  }
}

.qa {
  padding-bottom: 120px;
}

.qa__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.qa__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.qa_question {
  background: #ffffff;
  color: #07003e;
  padding: 10px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ffffff;
  cursor: pointer;
}
@media (min-width: 1100px) {
  .qa_question {
    padding: 10px 30px;
  }
}

.qa-question-texts {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.qa_question-q,
.qa__answer-a {
  font-size: 16px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media (min-width: 1100px) {
  .qa_question-q,
  .qa__answer-a {
    font-size: 24px;
  }
}

.qa_question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 1100px) {
  .qa_question-text {
    font-size: 18px;
  }
}

.qa_question-icon {
  width: 15px;
  height: 15px;
  background: #07003e;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 1100px) {
  .qa_question-icon {
    width: 35px;
    height: 35px;
  }
}

.qa_question-icon__bar {
  position: absolute;
  width: 8px;
  height: 1px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}
.qa_question-icon__bar:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (min-width: 1100px) {
  .qa_question-icon__bar {
    width: 20px;
  }
}

/* ===== ここからアコーディオン用 ===== */
.qa__answer {
  padding: 12px;
  border: 1px solid #ffffff;
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
@media (min-width: 1100px) {
  .qa__answer {
    padding: 0 30px;
  }
}

.qa__item.is-open .qa__answer {
  max-height: 1200px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 1px solid #ffffff;
}
@media (min-width: 1100px) {
  .qa__item.is-open .qa__answer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.qa__item.is-open .qa_question-icon__bar:nth-of-type(2) {
  opacity: 0;
}

/* ===== アコーディオン用ここまで ===== */
.qa__answer-a {
  color: #ffffff;
}

.qa__answer-texts a {
  font-weight: bold;
  text-decoration: underline;
  opacity: 1;
  transition: all ease 0.3s;
}
@media (min-width: 1100px) {
  .qa__answer-texts a:hover {
    opacity: 0.7;
  }
}

.qa__answer-text {
  margin-top: 5px;
  font-weight: bold;
}

.qa__answer-subtext {
  margin-top: 10px;
}

.qa__answer-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 1100px) {
  .qa__answer-links {
    flex-direction: row;
    justify-content: flex-start;
    gap: 40px;
  }
}

.qa__answer-link {
  padding: 5px 10px;
  border: 1px solid #ffffff;
  width: -moz-fit-content;
  width: fit-content;
}

.qa__answer-link__icon img {
  width: 25px;
}

/*==============================
sponsor-archive
==============================*/
.sponsor-head {
  background: url(../webp/sp/sponsor-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .sponsor-head {
    background: url(../webp/sponsor-bg.webp) no-repeat center center/cover;
  }
}

.sponsor-archive {
  padding-bottom: 120px;
}

.sponsor-archive__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 1100px) {
  .sponsor-archive__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}

@media (min-width: 1100px) {
  .sponsor-archive__item {
    transition: opacity ease 0.3s;
  }
  .sponsor-archive__item img {
    transition: transform ease 0.3s;
  }
  .sponsor-archive__item:hover {
    opacity: 0.7;
  }
  .sponsor-archive__item:hover .sponsor-archive__image img {
    transform: scale(1.2, 1.2);
  }
}

.sponsor-archive__image {
  overflow: hidden;
}
.sponsor-archive__image img {
  filter: grayscale(0);
  transition: all 0.3s ease;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sponsor-archive__title {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  padding: 0 20px;
  background-color: #ffffff;
  color: #07003e;
  min-width: 180px;
  text-align: center;
}

.sponsor-names {
  margin-top: 80px;
}

.sponsor-names__content {
  background: #ffffff;
  padding: 20px;
}
@media (min-width: 1100px) {
  .sponsor-names__content {
    padding: 50px;
  }
}

.sponsor-names__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (min-width: 1100px) {
  .sponsor-names__lists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

.sponsor-names__list {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (min-width: 1100px) {
  .sponsor-names__list a {
    transition: opacity 0.3s ease;
  }
  .sponsor-names__list a:hover {
    opacity: 0.7;
  }
}

.sponsor-names__list.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*==============================
sponsor
==============================*/
.sponsor {
  padding-bottom: 120px;
}

.sponsor__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 1100px) {
  .sponsor__title {
    font-size: 32px;
    margin-bottom: 80px;
  }
}
.sponsor__title::after {
  content: "";
  position: absolute;
  width: 136px;
  height: 1px;
  background: #ffffff;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (min-width: 1100px) {
  .sponsor__title::after {
    width: 500px;
  }
}

.sponsor__content h2 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 1100px) {
  .sponsor__content h2 {
    font-size: 20px;
  }
}
.sponsor__content p {
  margin-top: 16px;
  margin-bottom: 30px;
}
.sponsor__content p:last-child {
  margin-bottom: 50px;
}
@media (min-width: 1100px) {
  .sponsor__content p:last-child {
    margin-bottom: 80px;
  }
}
.sponsor__content a {
  text-decoration: underline;
}
@media (min-width: 1100px) {
  .sponsor__content a {
    transition: all ease 0.3s;
  }
  .sponsor__content a:hover {
    opacity: 0.7;
  }
}

.sponsor__image {
  margin-bottom: 50px;
}
@media (min-width: 1100px) {
  .sponsor__image {
    margin-bottom: 80px;
  }
}

.sponsor__link {
  text-align: center;
}
.sponsor__link a {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid currentColor;
  font-weight: bold;
}
@media (min-width: 1100px) {
  .sponsor__link a {
    font-size: 24px;
  }
}

/*==============================
contact
==============================*/
.contact-head {
  background: url(../webp/sp/contact-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .contact-head {
    background: url(../webp/contact-bg.webp) no-repeat center center/cover;
  }
}

.contact {
  padding-bottom: 120px;
}

.contact__message {
  letter-spacing: 0.05em;
}

.contact__tel-items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1100px) {
  .contact__tel-items {
    margin-top: 50px;
    flex-direction: row;
    gap: 50px;
  }
}

.contact__tel-item {
  padding: 10px 20px;
  border: 1px solid #ffffff;
  text-align: center;
}

.contact__tel-name {
  font-size: 18px;
  font-weight: bold;
}

.contact__tel-link {
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
}

.contact__form {
  margin-top: 50px;
}
@media (min-width: 1100px) {
  .contact__form {
    margin-top: 100px;
    max-width: 530px;
  }
}

.contact-form__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form__label {
  font-size: 16px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-weight: bold;
  align-items: center;
}

.contact-form__label-required {
  font-size: 12px;
  line-height: 1;
  background: #ff4747;
  font-weight: bold;
  padding: 2px 10px;
}

.contact-form__input {
  padding: 6px 20px;
  border: none;
  border-radius: 3px;
  width: 100%;
  color: #07003e;
}
.contact-form__input ::-moz-placeholder {
  color: #949494;
}
.contact-form__input ::placeholder {
  color: #949494;
}

.contact-form__textarea {
  min-height: 170px;
  color: #07003e;
  width: 100%;
}

.contact-submit {
  margin-top: 50px;
  text-align: center;
}
.contact-submit input.contact-form__submit {
  font-size: 16px;
  font-weight: bold;
  display: block;
  border: 1px solid currentColor;
  padding: 10px 0;
  background: transparent;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
@media (min-width: 1100px) {
  .contact-submit input.contact-form__submit {
    display: inline-block;
    padding: 10px 150px;
  }
}

.contact-submit input.contact-form__submit {
  width: 100%;
}

/*==============================
comingsoon
==============================*/
.general-head {
  background: url(../webp/sp/general-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .general-head {
    background: url(../webp/general-bg.webp) no-repeat center center/cover;
  }
}

.comingsoon {
  padding-bottom: 120px;
}

.comingsoon__content {
  text-align: center;
}

.comingsoon__logo img {
  width: 120px;
}

.comingsoon__text {
  margin-top: 50px;
  font-weight: bold;
}

.comingsoon__link {
  margin-top: 50px;
}
.comingsoon__link a {
  padding: 10px 50px;
  font-weight: bold;
  border: 1px solid currentColor;
}
@media (min-width: 1100px) {
  .comingsoon__link a {
    transition: all ease 0.3s;
  }
  .comingsoon__link a:hover {
    color: #07003e;
    background: #ffffff;
  }
}

/*==============================
for-travel
==============================*/
.for-travel {
  padding-bottom: 120px;
}

.for-travel__use {
  margin-top: 50px;
}

.for-travel__use-text {
  font-weight: bold;
}

.for-travel__use-lists {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: disc;
  padding-left: 1em;
}

.for-travel__use-attention {
  margin-top: 10px;
}

.for-travel__link {
  margin-top: 50px;
}

/*==============================
download
==============================*/
.download {
  padding-bottom: 120px;
}

.download__inner {
  padding: 0 40px;
}

.download-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 100px;
}

.download__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media (min-width: 1100px) {
  .download__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}

.download__image {
  text-align: center;
}
@media (min-width: 1100px) {
  .download__image img {
    border: 2px solid #ffffff;
    height: 200px;
  }
}

.download__button {
  text-align: center;
  margin-top: 10px;
}
.download__button a {
  font-weight: bold;
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: #07003e;
  line-height: 1;
  border: 1px solid currentColor;
  transition: all ease 0.3s;
}
@media (min-width: 1100px) {
  .download__button a:hover {
    background: #07003e;
    color: #ffffff;
  }
}

.all-download {
  margin-top: 50px;
}
@media (min-width: 1100px) {
  .all-download {
    font-size: 21px;
    margin-top: 100px;
  }
}
.all-download a {
  display: inline-block;
}

/*==============================
renewal
==============================*/
.renewal__inner {
  position: relative;
  height: 100vh;
}

.renewal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.renewal__logo img {
  width: 150px;
}

.renewal__texts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.renewal__date {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 40px;
  border: 1px solid currentColor;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.renewal__text {
  font-weight: bold;
}

/*==============================
hanabi-sponsor
==============================*/
.hanabi-sponsor-head {
  background: url(../webp/sp/sponsor-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .hanabi-sponsor-head {
    background: url(../webp/sponsor-bg.webp) no-repeat center center/cover;
  }
}

.hanabi-sponsor__date {
  text-align: center;
  display: flex;
  justify-content: center;
}

.hanabi-sponsor__right {
  padding: 10px;
  border: 1px solid #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.hanabi-sponsor__left {
  padding: 10px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #07003e;
  font-weight: bold;
  font-size: 18px;
}

.hanabi-sponsor__item {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hanabi-sponsor__message {
  margin-top: 40px;
}

.hanabi-sponsor__message__name {
  margin-top: 10px;
  font-weight: bold;
}

.hanabi-sponsor__pay-bank {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .hanabi-sponsor__pay-bank {
    flex-direction: row;
  }
}

.hanabi-sponsor__pay-bank-text {
  text-align: center;
  border: 1px solid #ffffff;
  padding: 10px;
  font-weight: bold;
}
@media (min-width: 1100px) {
  .hanabi-sponsor__pay-bank-text {
    display: flex;
    align-items: center;
  }
}

.hanabi-sponsor__pay-bank__right {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #07003e;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
@media (min-width: 1100px) {
  .hanabi-sponsor__pay-bank__right {
    padding: 16px;
  }
}

.hanabi-sponsor__pay-bank__dl {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1100px) {
  .hanabi-sponsor__pay-bank__dl {
    flex-direction: row;
    gap: 10px;
  }
}

.hanabi-sponsor__pay-bank__dt {
  font-weight: bold;
}
@media (min-width: 1100px) {
  .hanabi-sponsor__pay-bank__dt {
    width: 80px;
  }
}

.hanabi-sponsor__pay-bank__dd {
  font-weight: bold;
}

.hanabi-sponsor__plan__item {
  padding: 40px 0;
}
.hanabi-sponsor__plan__item:first-child {
  padding-top: 0;
}

.hanabi-sponsor__plan-table,
.starmine {
  width: 1000px;
  overflow-y: auto;
}

.hanabi-sponsor__plan-lists,
.starmine__lists {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 1em;
  margin-top: 20px;
}

.starmine__list.bold {
  font-weight: bold;
  text-decoration: underline;
}

/*==============================
pamphlet
==============================*/
.pamphlet {
  padding-bottom: 120px;
}

.pamphlet__lists {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 1100px) {
  .pamphlet__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}

.pamphlet__texts {
  text-align: center;
  margin-top: 10px;
}

.pamphlet__title {
  font-weight: bold;
}

/*==============================
access
==============================*/
.access-car__lists {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 1em;
  margin-top: 20px;
}

.access-car__items,
.access-train__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.access-car__item:first-child,
.access-train__item:first-child {
  margin-top: 50px;
}

.park-ride-image img {
  max-width: 700px;
}

.park-ride-text {
  margin-top: 20px;
}

/*==============================
jikata
==============================*/
.jikata-head {
  background: url(../webp/sp/jikata-bg.webp) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .jikata-head {
    background: url(../webp/jikata-bg.webp) no-repeat center center/cover;
  }
}

.jikata {
  padding-bottom: 120px;
}

.jikata__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.jikata-item__text {
  margin-top: 10px;
}
.jikata-item__text a {
  font-weight: bold;
  text-decoration: underline;
  transition: all ease 0.3s;
}
.jikata-item__text a:hover {
  opacity: 0.7;
}

.jikata__lists {
  margin-top: 10px;
  list-style: disc;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.jikata-item__text-contact + .jikata-item__text-contact {
  margin-top: 5px;
}

@media (min-width: 1100px) {
  .suica {
    width: 500px;
  }
}

/*==============================
event
==============================*/
.event__info {
  margin-top: 50px;
}
.event__info-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1100px) {
  .event__info-dl {
    display: flex;
  }
}

.event__info-dt {
  padding: 10px;
  border: 1px solid #ffffff;
  font-weight: bold;
  color: #07003e;
  background-color: #ffffff;
  text-align: center;
}
@media (min-width: 1100px) {
  .event__info-dt {
    text-align: left;
    width: 110px;
    text-align: center;
  }
}

.event__info-dd {
  padding: 10px;
  border: 1px solid #ffffff;
  font-weight: bold;
  text-align: center;
}
.event__info-dd a {
  font-weight: bold;
  text-decoration: underline;
}
@media (min-width: 1100px) {
  .event__info-dd {
    text-align: left;
    transition: opacity 0.3s;
  }
  .event__info-dd:hover {
    opacity: 0.7;
  }
}

.parking-pickup {
  text-align: center;
  margin-bottom: 50px;
}
.parking-pickup a {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  border: 1px solid currentColor;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #07003e;
}
@media (min-width: 1100px) {
  .parking-pickup a {
    width: 600px;
    transition: all ease 0.3s;
  }
  .parking-pickup a:hover {
    background-color: #07003e;
    color: #ffffff;
  }
}

/*==============================
開催情報
==============================*/
.kaisai {
  padding: 80px 0 0;
}

.kaisai-contents {
  text-align: center;
  background-color: #ffffff;
  padding: 10px 5px;
}
.kaisai-contents p {
  color: #07003e;
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 1100px) {
  .kaisai-contents p {
    font-size: 32px;
  }
}

/*==============================
トップページバナー
==============================*/
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 500px);
}

.modal-content img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: #fff;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/*==============================
インタビュー
==============================*/
.interview {
  padding-bottom: 120px;
}

.interview__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.interview-wrapper {
  padding: 30px 10px;
  background-color: #ffffff;
  color: #333;
  margin-top: 50px;
}
@media (min-width: 1100px) {
  .interview-wrapper {
    padding: 80px 30px;
    margin-top: 80px;
  }
}

.interview__head-image {
  position: relative;
}

.interview__lead-head {
  position: absolute;
  left: 0;
  bottom: 10px;
}
@media (min-width: 1100px) {
  .interview__lead-head {
    bottom: 20px;
  }
}

.interview__lead-text {
  line-height: 1.5;
  background-color: #ffffff;
  color: #07003e;
  font-weight: bold;
  font-size: 12px;
}
@media (min-width: 1100px) {
  .interview__lead-text {
    font-size: 24px;
    line-height: 2;
  }
}

.interview__head-text {
  margin-top: 30px;
}

@media (min-width: 1100px) {
  .interview__contents {
    max-width: 700px;
    margin: 0 auto;
  }
}

.prologue {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.interview__section-title {
  font-size: 24px;
  color: #07003e;
  padding-left: 10px;
  font-weight: bold;
  position: relative;
}
.interview__section-title::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #07003e;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.prologue__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.prologue__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1100px) {
  .prologue__item {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
}

.prologue__icon {
  width: 100px;
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .prologue__icon {
    margin: 0;
  }
}

.prologue__texts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 1100px) {
  .prologue__texts {
    flex: 1;
  }
}

.prologue__name {
  font-weight: bold;
  text-align: center;
}
@media (min-width: 1100px) {
  .prologue__name {
    text-align: left;
  }
}

.prologue__lead {
  font-weight: bold;
}

.interview__image {
  position: relative;
}
@media (min-width: 1100px) {
  .interview__image {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.interview__image-text {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  color: #ffffff;
}
@media (min-width: 1100px) {
  .interview__image-text {
    font-size: 16px;
    left: 20px;
    bottom: 20px;
  }
}

.interview__talks {
  margin-top: 50px;
}

.interview__talks-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.interview-talk {
  display: flex;
  gap: 20px;
}
@media (min-width: 1100px) {
  .interview-talk.is-center {
    align-items: center;
  }
}

.interview-talk__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
}

.interview-talk__icon-name {
  font-size: 12px;
  font-weight: bold;
}

.interview-talk__text {
  flex: 1;
}

.interiew__footer {
  margin-top: 50px;
}

.interiew__footer-caption {
  font-size: 14px;
}

.interiew__company-info {
  margin-top: 50px;
}

.interiew__company-info-text {
  margin-top: 10px;
}

.interiew__company-info-link {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.interiew__company-info-link-text {
  text-decoration: underline;
}

.interiew__company-info-link-icon {
  width: 18px;
}

.interview__talk-lead {
  margin-top: 30px;
  font-weight: bold;
}

.interview__image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 1100px) {
  .interview__image-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}
/*==============================
民謡流し&たるにわか
==============================*/
.minyou,
.taruniwaka {
  padding-bottom: 120px;
}

.minyou-head {
  background: url(../img/sp/minyou-bg.png) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .minyou-head {
    background: url(../img/minyou-bg.png) no-repeat center center/cover;
  }
}

.taruniwaka-head {
  background: url(../img/sp/taruniwaka-bg.png) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .taruniwaka-head {
    background: url(../img/taruniwaka-bg.png) no-repeat center center/cover;
  }
}

.minyou__items,
.taruniwaka__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.minyou__item,
.taruniwaka__item {
  width: 600px;
}
@media (max-width: 767px) {
  .minyou__item,
  .taruniwaka__item {
    width: 100%;
  }
}

/*==============================
駐車場案内
==============================*/
.parking__kinds-text-contents {
  text-align: center;
}

.parking__kinds-main-text {
  font-size: 24px;
  font-weight: bold;
}

.parking__kinds-text {
  margin-top: 10px;
}

.parking__kinds-items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .parking__kinds-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.parking__kinds-item {
  text-align: center;
  padding: 20px;
  border: 3px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.85);
  color: #07003e;
  border-radius: 10px;
  transition: all ease 0.3s;
}
.parking__kinds-item:hover {
  background-color: white;
  transform: translateY(-4px);
}
.parking__kinds-item:hover:nth-child(1) {
  border-color: #1e78d2;
}
.parking__kinds-item:hover:nth-child(2) {
  border-color: #f39c12;
}
.parking__kinds-item:hover:nth-child(3) {
  border-color: #d32f2f;
}
.parking__kinds-item:hover:nth-child(4) {
  border-color: #6b4fa1;
}

.kind-tag {
  background-color: #07003e;
  border-radius: 50px;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 3px 20px;
  font-weight: bold;
  font-size: 12px;
}

.kind-tag--toujitu {
  background-color: #1e78d2;
}

.kind-tag--jizenu {
  background-color: #f39c12;
}

.kind-tag--yuuryou {
  background-color: #d32f2f;
}

.kind-tag--nokisaki {
  background-color: #6b4fa1;
}

.parking__kind-title {
  margin-top: 10px;
  font-weight: bold;
}

.parking__kind-text {
  margin-top: 10px;
}

.parking__kind-tags {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.parking__kind-tag {
  background-color: orange;
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  padding: 5px 10px;
  font-weight: bold;
}

.parking-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 100px;
}

.parking-item {
  padding: 30px;
  background-color: #ffffff;
  border: 2px solid #494570;
  border-radius: 5px;
  color: #07003e;
}
@media (max-width: 767px) {
  .parking-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.parking-item__title {
  background-color: #07003e;
  padding: 10px;
  font-size: 21px;
  font-weight: bold;
  border-radius: 5px;
  color: #ffffff;
  margin-bottom: 20px;
}

.color {
  color: #ffffff;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .color {
    padding: 0 5px;
  }
}

.parking-map__map {
  margin-top: 30px;
}

.parking-map__text {
  font-size: 14px;
  margin-top: 10px;
}
.parking-map__text a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.parking-map__text a:hover {
  opacity: 0.7;
}

.parking-toujitsu__title {
  background-color: #1e78d2;
}

.parking-toujitsu__text-lists {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.parking-toujitsu_parking {
  margin-top: 30px;
  background-color: rgba(30, 120, 210, 0.1);
  border-radius: 5px;
  border: 2px solid #1e78d2;
  padding: 15px;
}

.parking-toujitsu_parking-title {
  color: #1e78d2;
  font-weight: bold;
  font-size: 18px;
}

.parking-toujitsu_parking-text {
  margin-top: 10px;
}

.parking-toujitsu__attention {
  margin-top: 10px;
}
.parking-toujitsu__attention p {
  font-size: 14px;
}

.parking-jizen__title {
  background-color: #f39c12;
}

.parking-jizen__schedule {
  margin-top: 30px;
}

.parking-jizen__schedule-title {
  font-size: 18px;
  font-weight: bold;
}

.parking-jizen__schedule-table {
  border-collapse: collapse;
  margin-top: 10px;
}
.parking-jizen__schedule-table tr th {
  background-color: rgba(243, 156, 18, 0.2);
  text-align: left;
  padding: 5px 10px;
  font-weight: bold;
  border-right: 1px solid #f39c12;
  border-bottom: 1px solid #f39c12;
}
@media (max-width: 767px) {
  .parking-jizen__schedule-table tr th {
    font-size: 14px;
    width: 130px;
  }
}
.parking-jizen__schedule-table td {
  padding-left: 10px;
  border-bottom: 1px solid #f39c12;
}
@media (max-width: 767px) {
  .parking-jizen__schedule-table td {
    font-size: 14px;
  }
}
.parking-jizen__schedule-table.parking-yuuryou-table th {
  background-color: rgba(211, 47, 47, 0.2);
  border-right: 1px solid #d32f2f;
  border-bottom: 1px solid #d32f2f;
  vertical-align: middle;
  width: 150px;
}
@media (max-width: 767px) {
  .parking-jizen__schedule-table.parking-yuuryou-table th {
    width: 130px;
  }
}
.parking-jizen__schedule-table.parking-yuuryou-table td {
  border-bottom: 1px solid #d32f2f;
}

.parking-jizen__parking-lists {
  margin-top: 30px;
}

.parking-ticketpassr {
  margin-top: 30px;
}

.to-ticketpass {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  border: 2px solid #07003e;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}
.to-ticketpass:hover {
  opacity: 0.7;
}
.to-ticketpass img {
  width: 200px;
}
.to-ticketpass p {
  margin-top: 4px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .to-ticketpass {
    justify-content: center;
    width: 100%;
  }
  .to-ticketpass img {
    width: 120px;
  }
}

.parking-jizen__resale {
  margin-top: 10px;
  background-color: rgba(243, 156, 18, 0.1);
  border-radius: 5px;
  border: 2px solid #f39c12;
  padding: 15px;
  margin-top: 30px;
}

.parking-jizen__resale-title {
  font-weight: bold;
  color: #f39c12;
  font-size: 18px;
}

.parking-jizen__resale-text {
  margin-top: 10px;
}

.parking-jizen__resale-lists {
  margin-top: 10px;
  list-style-type: disc;
  padding-left: 20px;
}

.parking-jizen__resale-link {
  margin-top: 10px;
}
.parking-jizen__resale-link a {
  display: inline-block;
  background-color: #f39c12;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 50px;
  padding: 10px 20px;
  border: 2px solid currentColor;
  transition: all ease 0.3s;
  text-align: center;
}
.parking-jizen__resale-link a:hover {
  background-color: #ffffff;
  color: #f39c12;
}
@media (max-width: 767px) {
  .parking-jizen__resale-link a {
    width: 100%;
    font-size: 13px;
  }
}

.parking-jizen__howto {
  margin-top: 30px;
}

.parking-jizen__howto-items {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parking-jizen__howto-item {
  display: flex;
}

.parking-jizen__howto-text {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 10px;
}

.parking-jizen__howto-text-number {
  font-size: 18px;
  width: 30px;
  height: 30px;
  background-color: #f39c12;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.parking-jizen__howto-text-text {
  flex: 1;
}

.parking-jizen__cancel {
  margin-top: 10px;
  background-color: rgba(243, 156, 18, 0.1);
  border-radius: 5px;
  border: 2px solid #f39c12;
  padding: 15px;
  margin-top: 30px;
}

.parking-jizen__cancel-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.parking-jizen__cancel-q {
  font-weight: bold;
}

.parking-yuuryou__title {
  background-color: #d32f2f;
}
.parking-yuuryou__title span {
  font-size: 14px;
  background-color: #ffffff;
  color: #d32f2f;
  font-weight: bold;
  padding: 5px 10px;
}

.yuuryou-table tbody th {
  text-align: center;
}

.parking-toujitsu__lists {
  margin-top: 30px;
}

.parking-yuuryou__qa {
  margin-top: 10px;
  background-color: rgba(211, 47, 47, 0.1);
  border-radius: 5px;
  border: 2px solid #d32f2f;
  padding: 15px;
  margin-top: 30px;
}

.parking-yuuryou-q {
  font-weight: bold;
}

.parking-nokisaki__title {
  background-color: #6b4fa1;
}

.parking-nokisaki__lists {
  margin-top: 30px;
  list-style: disc;
  padding-left: 20px;
}

.parking-nokisaki-link {
  margin-top: 10px;
}
.parking-nokisaki-link a {
  background-color: #6b4fa1;
}
.parking-nokisaki-link a:hover {
  color: #6b4fa1;
  background-color: #ffffff;
}

.parking-notes__title {
  background-color: #505050;
}

.parking-notes__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.notes-item__title {
  font-weight: bold;
  font-size: 18px;
}

.notes-item__lists {
  list-style: disc;
  padding-left: 20px;
}

.bicycle {
  margin-top: 30px;
  background-color: rgba(30, 120, 210, 0.1);
  border-radius: 5px;
  border: 2px solid #1e78d2;
  padding: 15px;
}

.bicycle-title {
  color: #1e78d2;
  font-weight: bold;
  font-size: 18px;
}

.bicycle-text {
  margin-top: 10px;
}
.bicycle-text a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.bicycle-text a:hover {
  opacity: 0.7;
}

.parking-links {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .parking-links {
    flex-direction: column;
    gap: 10px;
  }
}
.parking-links a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #07003e;
  color: #ffffff;
  border: 2px solid currentColor;
  border-radius: 50px;
  margin-top: 30px;
  font-weight: bold;
  transition: all ease 0.3s;
}
@media (max-width: 767px) {
  .parking-links a {
    margin-top: 0;
    text-align: center;
  }
}
.parking-links a:hover {
  background-color: #ffffff;
  color: #07003e;
}

.parking-contact__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.parking-contact__item-title {
  font-size: 18px;
  font-weight: bold;
}

.parking-contact__item-text {
  margin-top: 5px;
}
.parking-contact__item-text a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.parking-contact__item-text a:hover {
  opacity: 0.7;
}

.scroll-text {
  display: none;
}
@media (max-width: 767px) {
  .scroll-text {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 20px;
    margin-bottom: -20px;
  }
}

/*==============================
郊外花火
==============================*/
.kougai-head {
  background: url(../img/sp/kougai-bg.png) no-repeat center center/cover;
}
@media (min-width: 1100px) {
  .kougai-head {
    background: url(../img/kougai-bg.png) no-repeat center center/cover;
  }
}

.kougai {
  padding-bottom: 120px;
}

.kougai-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.kougai-image {
  margin-top: 50px;
}
.kougai-image img {
  width: 80%;
}
@media (max-width: 767px) {
  .kougai-image img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */