:root {
  --green: #3CB393;
  --light-green: #EDF9F6;
  --light-green2: #F6FBFA;
  --text: #222;
  --white: #fff;
  --gray: #F8F8F8;
  --line: #DCDCDC;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

body.is-fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover{
  opacity: 0.7;
  transition: .3s;
}

.inner,
.fv__inner,
.footer__inner {
  width: 88%;
  max-width: 75rem;
  margin-inline: auto;
}

section {
  scroll-margin-top: 6rem;
}

.pc-tab-only {
  display: block;
}

.sp-only,
.tab-only {
  display: none;
}

.note{
  font-size: 0.87rem;
  font-weight: 400;
}

.button {
  min-width: 12.5rem;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.95rem;
  text-align: center;
  align-self: center;
  flex-shrink: 0;
}

.button::after {
  content: "→";
  margin-left: 1.7rem;
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
}

.logo__mark,
.drawer .logo__mark {
  flex-shrink: 0;
  width: 3.4rem;
  height: 2.15rem;
}

.logo__mark::after {
  right: -0.35rem;
}

.logo__text,
.drawer .logo__text {
  font-size: clamp(1.125rem, 1.6vw, 1.625rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

/* header */
.header {
  padding: 1.6rem 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
}

.header__inner {
  width: 94.4%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  font-size: 1rem;
}

.header__nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.header__nav a:hover::after,
.header__nav a.is-current::after {
  transform: scaleX(1);
}

.menu-button,
.drawer {
  display: none;
}

/* footer */
.footer {
  padding: 4rem 0;
  color: var(--white);
  background: var(--green);
}

.footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer p {
  margin: 0.15rem 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.footer__name {
  margin-bottom: 0.9rem;
  font-size: 1.3rem!important;
  font-weight: 700!important;
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 400;
}


/* top fv */
.fv {
  padding: 7.6rem 0 5.5rem;
}

.fv__inner {
  position: relative;
}

.fv__content {
  position: relative;
  z-index: 2;
}

.fv__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.4;
}

.fv__sub {
  margin: 0.1em 0 0;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.2;
  font-weight: 900;
  display: block;
  padding-top: 0.4rem;
}

.fv__lead {
  position: absolute;
  /* left: 17.2rem; */
  left: 27%;
  bottom: 0;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.fv__visual {
  position: absolute;
  /* right: -4rem; */
  right: -4%;
  top: 3rem;
  width: 26.59%;
}

.fv__visual img{
  display: block;
  width: 100%;
  height: auto;
}

/* 下層 fv */

.page-head {
  position: relative;
  padding: 3.2rem 0 2.8rem;
  overflow: hidden;
}

.img-lower-visual{
  width: 31rem;
  height: auto;
  position: absolute;
  right: -13rem;
  top: -2rem;
  z-index: -1;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 4.4rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.breadcrumb a {
  text-decoration: underline;
}

.breadcrumb span::before {
  content: ">";
  margin-right: 0.5rem;
}

.page-title {
  margin: 0 0 2.4rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.4;
}

.page-lead {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
}

.anchor-list {
  margin: 4rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 400;
}

.anchor-list a {
  text-decoration: underline;
}

.anchor-list a::after {
  content: "↓";
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.4rem;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.75rem;
}

/* top news */
.news {
  margin-top: 4.1rem;
  padding: 2.6rem 3.2rem;
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: 2rem;
  background: var(--gray);
  border-radius: 1.4rem;
}

.section-title {
  margin: 0;
  color: var(--green);
  font-size: 1.55rem;
  line-height: 1.4;
}

.section-title::before {
  content: "・";
  margin-right: 0.3rem;
}

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

.news__list li {
  border-bottom: 1px solid #ddd;
}

.news__list a {
  display: grid;
  padding: 0.8rem 0;
  color: inherit;
  text-decoration: none;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: center;
}

.news__list time {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.news__list p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  white-space: normal;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news__list time,
.news__list p{
  margin: 0;
}

.news__empty{
  padding: 0;
  margin: 0.2rem 0 0;
  color: #777;
  list-style: none;
  text-align: left;
  font-weight: 500;
}

.news__list a.is-disabled {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}

.news__list a.is-disabled:hover {
  opacity: 1;
}

/* top event */
.event {
  padding: 5.4rem 0 5.7rem;
  background: var(--light-green);
}

.event-card {
  margin-top: 2.3rem;
  padding: 2.5rem 3.2rem;
  background: var(--white);
  border-radius: 1.5rem;
}

.event-card__innerbx{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
}

.event-card__date {
  margin: 0;
  color: var(--green);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
}

.event-card__date-large {
  font-size: 3.2rem;
  padding: 0 0.3rem;
  display: inline-block;
}

.event-list__row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  font-size: 1.2rem;
}

.event-list__row:nth-child(2n){
  margin-top: 1.4rem;
}

.event-list__day {
  font-weight: 800;
}

.event-list__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.event-list__item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  align-items: start;
  gap: 1rem;
  margin: 0;
}

.event-list__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border: 1px solid #555;
  line-height: 1.4;
  font-size: 1rem;
}

.event-list__text {
  margin: 0;
  line-height: 1.7;
}

/* top access */
.access {
  padding: 5.3rem 0 6rem;
}

.access__list {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.access-card {
  position: relative;
  min-height: 12.2rem;
  padding: 2.1rem 1.4rem 1.6rem;
  border: 1px solid var(--green);
  border-radius: 1.2rem;
  text-align: center;
}

.access-card__label {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.3rem 1.7rem;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 999px;
  line-height: 1.4;
  white-space: nowrap;
}

.access-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  line-height: 1.7;
}

.access-card p {
  margin: 0 0 0.2rem;
}

.access-card a {
  font-size: 0.82rem;
  text-decoration: underline;
}

/* guideline-page */

.guideline-section {
  padding: 2.8rem 0;
}

.theme-box {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.7rem 2rem;
  color: #fff;
  background: var(--green);
  border-radius: 1.8rem;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.theme-box__label {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.1rem 2rem;
  color: var(--green);
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 1.15rem;
}

.theme-box p:last-child {
  margin: 0;
}

.info-table {
  margin-top: 2.4rem;
  font-weight: 400;
  font-size: 1.1rem;
}

.info-table dl {
  margin: 0;
}

.info-table div {
  display: grid;
  grid-template-columns: 11rem 1fr;
  border-bottom: 1px solid #ddd;
}
.info-table div:nth-of-type(1){
  border-top: 1px solid #ddd;
}

.info-table dt,
.info-table dd {
  margin: 0;
  padding: 1.6rem 1.6rem;
}

.info-table dt {
  background: var(--light-green);
}

.info-table strong {
  color: var(--green);
}

.info-table strong span{
  font-size: 1.7rem;
  padding: 0 0.2rem;
}

.guideline-section .button{
  margin: 2.4rem auto 0;
  display: flex;
  width: fit-content;
  justify-content: center;
}

.schedule-table {
  margin-top: 2rem;
  overflow-x: auto;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed;
}

.schedule-table th,
.schedule-table td {
  padding: 1.2rem;
  border: 1px solid #ddd;
  vertical-align: top;
  font-weight: 400;
}
.schedule-table th{
width: 8rem;
}

.schedule-table td {
  width: calc((100% - 8rem) / 3);
}

.schedule-table thead th {
  color: #fff;
  background: var(--green);
}

.schedule-table tbody th {
  /* width: 8rem; */
  background: var(--light-green);
  text-align: left;
}

.schedule-table a {
  text-decoration: underline;
}

.schedule-table__item{
  padding: 1.2rem 0;
  border-top: 1px solid #ddd;
  line-height: 1.6;
  margin: 0;
}

.schedule-table__item:nth-child(1) {
  border-top: none;
  padding: 0 0 1.2rem;
}

.schedule-table__item:last-child {
  padding: 1.2rem 0 0;
}

.program-box {
  margin-top: 2rem;
  border: 1px solid var(--green);
  border-radius: 1rem;
  overflow: hidden;
}

.program-box__content {
  padding: 1.5rem;
}

.program-box h4,
.program-box span{
  font-weight: 700;
}


.program-box h4 {
  margin: 1.4rem 0 0;
  color: var(--green);
  font-size: 1.25rem;
}

.program-box h4:first-child {
  margin-top: 0;
}

.program-box p {
  margin: 0.2rem 0 0.5rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #ddd;
  font-weight: 400;
}

.program-box p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.program-box span {
  display: inline-block;
  margin-right: 1rem;
  padding: 0 1rem;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 0.8rem;
}

.program-box h3 {
  margin: 0;
  padding: 1rem 1.5rem;
  color: #fff;
  background: var(--green);
  font-size: 1.3rem;
}

.program-box h3 span{
  color: #fff;
font-size: 1.1rem;
font-weight: 400;
padding: 0;
}

.section-lead {
  margin: 1rem 0 0;
  font-weight: 400;
}

.sectional-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sectional-card {
  position: relative;
  border: 1px solid var(--green);
  border-radius: 1rem;
  background: #fff;
  overflow: visible;
}

.sectional-card p {
  margin: 0;
  line-height: 1.8;
  font-weight: 400;
}

.sectional-card p.sectional-card__label {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.1rem 0;
  color: var(--green);
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 999px;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 700;
  width: 50%;
  text-align: center;
}

.sectional-card h3 {
  margin: 0;
  padding: 1.5rem 1rem 0;
  color: #fff;
  background: var(--green);
  text-align: center;
  font-size: 1.15rem;
  border-radius: 1rem 1rem 0 0;
}

.sectional-card__place {
  margin: 0;
  padding: 0 1rem 1.2rem;
  color: #fff;
  background: var(--green);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
}

.sectional-card__body {
  padding: 1.4rem 1.2rem;
}

.sectional-card h4 {
  margin: 1.1rem 0 0.1rem;
  color: var(--green);
}

.sectional-card__theme{
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.1rem;
}

.sectional-card__theme h4{
  width: fit-content;
  margin: 0 auto 0.4rem;
  text-align: center;
  border: 1px solid var(--green);
  padding: 0 1.2rem;
  border-radius: 999px;
  line-height: 1.6;
  font-size: 1rem;
}

.sectional-card__theme p{
  text-align: center;
  font-weight: 700;
}

.sectional-card h4:first-child {
  margin-top: 0;
}

.sectional-card a {
  text-decoration: underline;
}

.note{
  margin-top: 0.8rem!important;
}

.caution {
  margin-top: 3rem;
  padding: 4.5rem 0;
  background: var(--light-green);
}

.caution__box {
  padding: 2.5rem 3rem;
  background: #fff;
  border-radius: 1rem;
}

.caution ol {
  margin: 1.5rem 0 0;
  padding-left: 1.5rem;
}

.caution li {
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.parking-guide{
  padding: 4.5rem 0;
}

.parking-guide h4{
  margin: 1.2rem 0 0;
}

.parking-guide p{
  margin: 0.2rem 0;
  font-weight: 400;
}

.parking-guide__list{
  padding-left: 0;
}

.parking-guide__list li{
  list-style:none;
}

.parking-guide__notes{
  font-weight: 400;
}

.parking-guide__notes h3{
  font-size: 1rem;
}

.parking-guide__notes ul{
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
}

.parking-guide__notes li{
  list-style: none;
}

.parking-guide__download-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.parking-guide__pdf {
  width: calc((100% - 2.4rem) / 3);
}

.parking-guide__pdf-btn,
.parking-guide__download-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 999px;
  text-align: center;
}

.parking-guide__pdf-btn{
  margin: 1.6rem auto 0;
}

.parking-guide__download h3{
  color: var(--green);
  margin-top: 2rem;
}

.contact-section {
  padding: 4.5rem 0;
  font-weight: 400;
  background: var(--light-green2);
}

.contact-section h3 {
  margin: 2rem 0 0.5rem;
  color: var(--green);
  font-size: 1.2rem;
}

.contact-section p {
  margin: 0.4rem 0;
}

.contact-section__tel {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-right: 0.4rem;
}

/* participant-list-page */

/* .participant-list__block {
  margin-top: 6rem;
} */
.participant-list__block + .participant-list__block{
  margin-top: 6rem;
}

.participant-list__block:last-child{
  margin-bottom: 6rem;
}

.participant-list__block h2 {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.participant-list__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-top: 2.4rem;
  list-style: none;
  padding-left: 0;
}

.participant-list__cities li {
  width: 10%;
  min-width: 4rem;
  text-decoration: underline;
  white-space: nowrap;
  font-weight: 400;
}

/* tab */
@media (max-width: 1024px) {

.tab-only {
  display: block;
}

.header {
  padding: 1.05rem 0 0.5rem;
}

.header__inner {
  width: calc(100% - 1.5rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-items: center;
}

.header__nav {
  display: none;
}

.menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-top: -0.1rem;
  padding: 0;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--green);
}

.menu-button span + span {
  margin-top: 0.32rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 100;
  display: block;
  width: 60%;
  max-width: 28rem;
  height: 100svh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__inner {
  width: calc(100% - 2rem);
  margin-inline: auto;
  padding-top: 1.1rem;
}

.drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.drawer .logo__mark {
  width: 4rem;
  height: 2.5rem;
}

.drawer .logo__text {
  font-size: 1rem;
  line-height: 1.35;
}

.drawer__close {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.drawer__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.05rem;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
}

.drawer__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__nav {
  margin-top: 2rem;
}

.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.18rem 0;
  border-bottom: 1px solid var(--green);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.drawer__nav a::after {
  content: "→";
  color: var(--green);
  font-weight: 400;
  padding-right: 1.5rem;
}

.footer__inner {
  display: block;
  align-items: flex-end;
}

.footer__copy {
  display: block;
  margin-top: 2rem;
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.8;
}

.fv__lead {
  position: absolute;
  left: 29%;
}

}

/* sp */
@media (max-width: 768px) {

body{
  font-size: 0.94rem;
  line-height: 1.7;
}

  .sp-only {
    display: block;
  }

  .pc-tab-only {
    display: none!important;
  }

  .note{
    margin-top: 0.2rem !important;
  }

  .inner,
  .fv__inner,
  .footer__inner {
    width: min(91.5%, 32rem);
  }

  .header{
    padding: 0.5rem 0 0.4rem;
  }

  .header .logo__mark {
    width: 3.1rem;
    height: 1.95rem;
  }
  
  .header .logo__text {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .menu-button {
    width: 2.75rem;
    height: 2.75rem;
  }
  
  .menu-button span {
    width: 1rem;
    height: 1px;
  }
  
  .menu-button span + span {
    margin-top: 0.32rem;
  }

  .drawer {
    width: 100%;
    max-width: 32rem;
    height: 100svh;
    transform: translateX(100%);
  }

  /* footer */
  .footer {
    padding: 2.3rem 0 2rem;
  }

  .footer__inner {
    display: block;
  }

  .footer p {
    font-size: 0.88rem;
  }

  .footer__name {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .footer__copy {
    margin-top: 2.4rem;
    text-align: center;
  }

  /* top fv */
  .fv {
    padding: 3rem 0 2rem;
  }

  .fv__content {
    position: static;
  }

  .fv__sub {
    font-size: 2rem;
  }

  .fv__title {
    font-size: 1.2rem;
    line-height: 1.35;
  }

  .fv__lead {
    position: static;
    margin-top: 0.6rem;
    font-size: 0.92rem;
  }

  .fv__visual {
    position: relative;
    right: -50%;
    top: -0.5rem;
    width: 53.6%;
    height: 7.8rem;
    margin-top: 1.4rem;
  }

  .fv__map {
    left: 44%;
    top: 0;
    width: 6.9rem;
    transform: translateX(-50%);
  }

  .fv__character {
    right: 0.2rem;
    top: 0.2rem;
    width: 6.8rem;
  }

  /* top news */
  .news {
    margin-top: -2rem;
    padding: 1.5rem 1.5rem 1.8rem;
    display: block;
    border-radius: 0.8rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .news__list {
    margin-top: 1rem;
  }

  .news__list li:first-child a{
    padding-top: 0;
  }

  .news__list a {
    display: block;
    gap: 1rem;
    align-items: start;
  }

  .news__list time {
    margin-bottom: 0;
  }

  .news__empty{
    margin: 0.4rem 0 0;
  }
  
  /* top event */
  .event {
    padding: 2.7rem 0 3.3rem;
  }

  .event-card {
    margin-top: 1.5rem;
    padding: 2rem 1.5rem 1.6rem;
    display: block;
    border-radius: 0.8rem;
  }

  .event-card__innerbx{
    width: 100%;
    margin: 0 0 1rem;
  }

  .event-card__date {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  
  .event-card__date-large {
    font-size: 2rem;
    padding: 0 0.2rem;
  }

  .event-list__row{
    display: block;
    font-size: 1rem;
  }

  .event-list__row:nth-child(2n){
    margin-top: 1rem;
  }

  .event-list__day {
    margin-bottom: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .event-list__content {
    gap: 0.7rem;
  }

  .event-list__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .event-list__label {
    width: fit-content;
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .button {
    display: block;
    margin-top: 1.8rem;
    padding: 0.85rem 1.5rem;
  }

  /* top access */
  .access {
    padding: 3rem 0 3.8rem;
  }

  .access__list {
    margin-top: 1.9rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .access-card {
    min-height: auto;
    padding: 1.9rem 1rem 1.4rem;
    border-radius: 0.7rem;
  }

  .access-card h3 {
    font-size: 0.98rem;
  }

  .access-card p,
  .access-card a {
    font-size: 0.82rem;
  }

/* 下層ページ 共通*/

  .img-lower-visual {
    width: 70%;
    height: auto;
    top: -2.1rem;
    right: -30%;
  }

  .page-head {
    padding: 2.4rem 0 2rem;
  }

  .breadcrumb {
    margin-bottom: 1.5rem;
  }

  .page-title {
    font-size: 1.8rem;
    margin: 0 0 1rem;
  }

  .anchor-list {
    display: block;
    margin: 2rem 0 0;
    font-size: 1rem;
  }

  .anchor-list li + li {
    margin-top: 0.8rem;
  }

  /* 下層ページ 募集要項 */
  .guideline-section {
    padding: 1.5rem 0;
  }

  .theme-box {
    padding: 1.8rem 0 1.4rem;
    font-size: 1.15rem;
    border-radius: 1.25rem;
  }

  .theme-box__label{
    font-size: 1rem;
  }

  .info-table{
    margin-top: 2rem;
  }

  .info-table div {
    grid-template-columns: 1fr;
  }

  .info-table dt,
  .info-table dd {
    padding: 0.8rem 1rem;
    line-height: 1.4;
  }

  /* .guideline-section h2{
    width: min(91.5%, 32rem);
  } */

  .schedule-table{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    padding-inline: 1rem;
    box-sizing: border-box;
    margin-top: 1.3rem;
  }

  .schedule-table table {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
  }

  .schedule-table th,
  .schedule-table td{
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
  }

  .schedule-table th{
    white-space: nowrap;
  }

  .schedule-table td{
    white-space: normal;
    width: auto;
  }

  .schedule-table thead th:first-child,
  .schedule-table tbody th {
    width: 1%;
    min-width: 0;
    white-space: nowrap;
  }

  .schedule-table__item{
    padding: 0.7rem 0;
    /* line-height: 1.4; */
  }
  
  .schedule-table__item:nth-child(1) {
    padding: 0 0 0.7rem;
  }

  .schedule-table__item:last-child {
    padding: 0.7rem 0 0;
  }

  .program-box{
    margin-top: 1.3rem;
  }

  .program-box h3 {
    font-size: 1.15rem;
  }

  .program-box h3 span{
    font-size: 0.88rem;
    margin: 0;
  }

  .program-box h4{
    font-size: 1.1rem;
    margin: 0.9rem 0 0;
  }

  .program-box span{
    font-size: 0.9rem;
    margin-right: 0;
    padding: 0 0.8rem;
    line-height: 1.6;
    margin: 0.9rem 0 0.4rem;
  }

  .program-box p{
    padding-bottom: 0.9rem;
    margin: 0;
  }

  .sectional-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sectional-card p.sectional-card__label{
    font-size: 1rem;
    padding: 0.1rem 1.5rem 0;
  }

  .sectional-card__place{
    font-size: 0.88rem;
    padding: 0 1rem 1rem;
  }

  .sectional-card__theme{
    padding-bottom: 0.9rem;
  }

  .sectional-card h4{
    margin: 1rem auto 0.1rem;
  }

  .sectional-card__theme h4{
    font-size: 0.9rem;
    margin: 0 auto 0.5rem;
  }

  .parking-guide{
    padding: 3.5rem 0;
  }

  .parking-guide__download-list {
    grid-template-columns: 1fr;
  }

  .parking-guide__pdf{
    width: 100%;
  }

  .parking-guide__pdf-btn{
    margin: 1.2rem auto 0;
  }

  .parking-guide__download-btn{
    margin-top: 0;
  }

  .caution {
    padding: 3rem 0;
  }

  .caution__box {
    padding: 1.8rem 1.4rem;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .contact-section h3{
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
  }
  
  /* participant-list-page */

  #participant-list-page .anchor-list{
    display: flex;
    align-items: center;
    gap: 1rem 2rem;
  }

  #participant-list-page .anchor-list li{
    margin: 0;
  }

  .participant-list__block + .participant-list__block{
    margin-top: 2.5rem;
  }

  .participant-list__block:last-child{
    margin-bottom: 2rem;
  }

  .participant-list__block h2{
    font-size: 1.35rem;
    padding-bottom: 0.3rem;
  }

  .participant-list__cities{
    margin-top: 1.5rem;
    gap: 0.9rem 3rem;
  }

}