/* ==========================================================================
全体のレイアウト
========================================================================== */
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--primary-text-color);
  font-size: var(--font-size-base);
}

.bg-gray {
  background: var(--secondary-bg-color);
}

.bg-white {
  background: var(--primary-bg-color);
}

.bg-yellow {
  background: var(--accent-bg-color);
}

.radius {
  border-radius: 1rem;
}

/* ==========================================================================
ヘッダー
========================================================================== */
header {
  padding: 1em;
}

header a {
  display: inline-block;
  padding: 0;
  margin: 0;
}

.header-logo {
  display: block;
  max-width: 35%;
  height: auto;
  padding: 10px;
}

/* ==========================================================================
メイン・共通
========================================================================== */
main {
  padding-bottom: 3rem;
  flex-grow: 1;
}

.main-image {
  width: 100%;
  height: auto;
}

h2 {
  font-size: var(--font-size-large);
  font-weight: 700;
}

h3 {
  font-size: var(--font-size-base);
}

.section-padding {
  padding: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.overview {
  font-size: 2vw;
}

.eventdates p {
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.eventdates b {
  font-size: 160%;
  font-weight: 800;
  color: var(--dark-text-color);
}

.m-plus-rounded-1c-thin {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.m-plus-rounded-1c-light {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-rounded-1c-bold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.m-plus-rounded-1c-extrabold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.m-plus-rounded-1c-black {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.contents p {
  margin-bottom: 1.5rem;
}

.contents p:last-child {
  margin-bottom: 0;
}

.ryoukin {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}

.ryoukin th {
  padding: 10px;
  background: var(--cool-bg-color);
  border: solid 1px var(--dark-text-color);
}

.ryoukin td {
  padding: 10px;
  border: solid 1px var(--dark-text-color);
}

.ryoukin td:first-child {
  background: var(--cool-bg-color);
}

.swiper {
  width: 100%;
  padding-bottom: 40px !important;
}
.swiper-slide img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}
.swiper-wrapper {
  /* ease-out-quart という、ふんわり止まるカーブ */
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.swiper-pagination {
  /* 点を一番下に配置する */
  bottom: 0 !important;
}

/* ==========================================================================
スポンサー
========================================================================== */
.banner-list,.banner-list-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.banner-list li {
  width: calc(50% - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
}

.banner-list-2 li {
  width: calc(40% - 8px);
  display: flex;
  align-items: center;
  justify-content: start;
  box-sizing: border-box;
  padding: 10px;
}

.banner-list img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* ==========================================================================
フッター
========================================================================== */
footer {
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
  background: var(--dark-bg-color);
}

footer p {
  font-size: var(--font-size-small);
  color: var(--secondary-text-color);
  line-height: 1.5;
  white-space: pre-line; /* スマホでは改行を有効にする */
}

footer a {
  text-decoration: none;
}

/* ==========================================================================
タブレット
========================================================================== */
@media (min-width: 768px) {
  h2 {
    font-size: var(--font-size-large);
  }

  .header-logo {
    width: 150px;
  }

  .section-padding {
    padding: 1.5rem 4rem;
  }

  table th,
  table td {
    padding: 0.75rem 0.5rem;
  }

  .banner-list li {
  width: calc((100% - 48px) / 4);
  flex: 0 0 auto; 
  }

  .banner-list-2 li {
  width: calc((100% - 80px) / 4);
  flex: 0 0 auto; 
  }
}

/* ==========================================================================
ノートPC向けスタイル
========================================================================== */
@media (min-width: 1024px) {
  .section-padding {
    padding: 1.5rem 5rem;
  }

  .eventdates p {
    font-size: 30px;
    line-height: 1.5;
  }
}
/* ==========================================================================
標準ディスプレイ向けスタイル
========================================================================== */
@media (min-width: 1280px) {
}
/* ==========================================================================
ワイドスクリーン向けスタイル
========================================================================== */
@media (min-width: 1440px) {
}
/* ==========================================================================
4k向けスタイル
========================================================================== */
@media (min-width: 1920px) {
}
