@charset "UTF-8";
:root {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  --color--black: #231815;
  --color--gray-line: #b8b3b2;
  --color--gray-bg: #eeece7;
  --color--article-bg: #D7D8DE;
  --color--gold-text: #8c7200;
  --color--gold-bg: #CBB500;
  --color-naegi: #21701A;
  --color-musha: #A41F30;
  --color-spring: #cf3954;
  --color-yellow: #F0EB41;
  --color-beige: #F9E2A9;
  --color--notice: #E60012;
  --color--red--lighten: #F5B090;
  --color--red--primary: #EA5550;
  --color--red--primary-text: #df403a;
  --color--red--darken: #921820;
  --color--blue--lighten: #187FC4;
  --color--blue--primary: #004EA2;
  --color--blue--darken: #002B69;
  --article--gap: clamp(3rem, 1.592rem + 6.009vw, 7rem);
}

figure {
  margin: 0;
}

body {
  font-feature-settings: "palt";
}

p {
  font-feature-settings: "palt";
}

.ly_wrapper {
  position: relative;
  z-index: 0;
}

/* 背景専用レイヤー */
.c-bg {
  min-width: 100%;
  min-height: 100svh;
  min-height: 100dvh;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.c-bg .picture {
  display: block;
  width: 100%;
  height: 100%;
}

.c-bg .picture-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-top {
  opacity: 0;
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 1000;
  transition: opacity 0.5s, bottom 0.3s ease;
}

.page-top.block {
  opacity: 1;
}

.btn_go-top {
  width: 72px;
  filter: drop-shadow(0 0px 3px rgba(0, 0, 0, 0.2));
}
@media (max-width: 48rem) {
  .btn_go-top {
    width: 56px;
    height: 56px;
  }
}

/* トグルボタン */
.toggle-btn {
  display: block;
  width: 5rem;
  height: 5rem;
  background-color: var(--color--gold-bg);
  position: fixed;
  right: 0;
  top: var(--header-height);
  z-index: 9999;
  cursor: pointer;
}
@media (max-width: 42.188rem) {
  .toggle-btn {
    top: var(--header-height--sp);
  }
}

@media (max-width: 48rem) {
  .toggle-btn {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.toggle-btn i {
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  width: 40%;
}

.toggle-btn i:nth-of-type(1) {
  left: 1.5rem;
  top: 1.875rem;
  border-radius: 1px;
}

.toggle-btn i:nth-of-type(2) {
  left: 1.5rem;
  top: 2.5rem;
  border-radius: 1px;
}

.toggle-btn i:nth-of-type(3) {
  left: 1.5rem;
  top: 3.125rem;
  border-radius: 1px;
}

.toggle-btn.active i:nth-of-type(1) {
  transform: translateY(0.625rem) rotate(45deg);
}

.toggle-btn.active i:nth-of-type(2) {
  opacity: 0;
}

.toggle-btn.active i:nth-of-type(3) {
  transform: translateY(-0.625rem) rotate(-45deg);
}

@media (max-width: 48rem) {
  .toggle-btn i:nth-of-type(1) {
    left: 18px;
    top: 20px;
  }
  .toggle-btn i:nth-of-type(2) {
    left: 18px;
    top: 1.875rem;
    border-radius: 1px;
  }
  .toggle-btn i:nth-of-type(3) {
    left: 18px;
    top: 2.5rem;
    border-radius: 1px;
  }
}
/* ======================================
	ナビゲーションメニュー :::::::::::::::::::::::::::::::
	========================================== */
.cc_global-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
  padding-top: calc(var(--header-height) + 1rem);
  background: var(--color--blue--darken);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s, visibility 0.5s;
  overflow: hidden;
}

.cc_global-nav.active {
  opacity: 0.95;
  visibility: visible;
  pointer-events: auto;
}

.cc_global-nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% - 4rem);
  max-width: 100%;
  height: calc(100dvh - var(--header-height) - 1rem);
  margin: 0 auto;
  padding: clamp(0rem, -1.214rem + 5.178vw, 5rem);
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 42.188rem) {
  .cc_global-nav {
    padding-top: calc(var(--header-height--sp) + 2rem);
  }
  .cc_global-nav__inner {
    width: calc(100% - 3rem);
    height: calc(100dvh - var(--header-height--sp) - 1rem);
    padding: 0 0 calc(2rem + env(safe-area-inset-bottom));
  }
}
.gnav_title {
  max-width: 20rem;
  width: 70%;
  margin: 0 auto;
}

.cc_global-nav__list {
  max-width: 30rem;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0 auto;
  margin-top: 2rem;
}

.cc_global-nav__list .naegi img {
  width: 60%;
  margin: 0 auto;
}

.cc_global-nav__list .musha img {
  width: 85%;
  margin: 0 auto;
}

.cc_global-nav__list .bus img {
  width: 80%;
  margin: 0 auto;
}

.cc_global-nav__list--item {
  margin-top: 0.5em;
}

.cc_global-nav__list--item--child {
  display: flex;
  width: 100%;
  color: var(--color--black);
  letter-spacing: 0.1rem;
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s;
}
.cc_global-nav__list--item--child:hover {
  color: var(--color--notice);
}
@media (max-width: 30rem) {
  .cc_global-nav__list--item--child {
    font-size: var(--fs-16);
  }
}

.cc_global-nav__list--item--child::before {
  content: "▼";
  font-size: 0.7em;
  color: var(--color--notice);
  display: block;
  transform: rotate(-90deg);
}

.gnavIcon {
  width: 20px;
  margin-right: 0.625rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

:root {
  --header: var(--header-height);
  scroll-padding-top: var(--header);
}
@media (max-width: 42.188rem) {
  :root {
    --header: var(--header-height--sp);
  }
}

section.white::before {
  content: "";
  display: block;
  padding-top: var(--header);
  margin-top: calc(var(--header) * -1);
}

.cc_global-nav__item {
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.cc_global-nav__item.bg {
  background-color: var(--color--article-bg);
  border-radius: 9999px;
  min-height: 3.7rem;
  padding: 0;
}

.cc_global-nav__item.bg > a {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 0;
  border-radius: inherit;
}

.cc_global-nav__item .btn_contact {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fs-18);
  font-weight: 600;
  background-color: var(--color--black);
  color: #fff;
  border: 2px solid #fff;
  padding: 0.5em 2em;
  margin-top: 0.5em;
  border-radius: 100vmax;
  text-align: center;
}
@media (max-width: 75rem) {
  .cc_global-nav__item .btn_contact {
    font-size: var(--fs-16);
  }
}

.naegi500_mainvisual {
  width: 100%;
  position: relative;
}

.fv_top {
  display: flex;
  justify-content: space-between;
}

.fv_left-1 {
  opacity: 60%;
  width: 20%;
  margin-top: calc(var(--maintitle) * 0.1);
}
@media (max-width: 70rem) {
  .fv_left-1 {
    width: 25%;
  }
}
@media (max-width: 48rem) {
  .fv_left-1 {
    width: 30%;
  }
}

.fv_right-1 {
  opacity: 60%;
  width: 20%;
  margin: 0 0 0 auto;
  margin-top: calc(var(--maintitle) * 0.4 * -1);
  margin-bottom: calc(var(--maintitle) * 0.3);
}
@media (max-width: 70rem) {
  .fv_right-1 {
    width: 25%;
  }
}
@media (max-width: 64rem) {
  .fv_right-1 {
    margin-top: calc(var(--maintitle) * 0.2 * -1);
    margin-bottom: calc(var(--maintitle) * 0.2);
  }
}
@media (max-width: 48rem) {
  .fv_right-1 {
    width: 30%;
  }
}

:root {
  --maintitle: clamp(15rem, 8.932rem + 25.89vw, 40rem);
}

.naegi500_main-title {
  display: block;
  width: var(--maintitle);
  margin: 0 auto;
  margin-top: calc(var(--maintitle) * 0.15 * -1);
  position: relative;
  z-index: 5;
}

.fv_middle {
  opacity: 60%;
  width: 20%;
  margin: 0 0 0 auto;
}
@media (max-width: 70rem) {
  .fv_middle {
    width: 25%;
  }
}
@media (max-width: 48rem) {
  .fv_middle {
    width: 30%;
  }
}

.fv_bottom {
  width: 60%;
  margin: 0 auto 0 0;
  margin-top: calc(var(--maintitle) * 0.3 * -1);
  position: relative;
  z-index: -1;
}
@media (max-width: 64rem) {
  .fv_bottom {
    width: 65%;
    margin-top: 0;
  }
}
@media (max-width: 48rem) {
  .fv_bottom {
    width: 70%;
  }
}
@media (max-width: 48rem) {
  .fv_bottom {
    width: 85%;
  }
}

.l-read {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: calc(var(--maintitle) * 0.7 * -1);
  position: relative;
  z-index: 5;
  padding: 2rem;
  padding-top: 0;
}
@media (max-width: 64rem) {
  .l-read {
    margin-top: calc(var(--maintitle) * 0.5 * -1);
  }
}
.l-read h4 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: var(--fs-24);
  font-weight: 600;
}
@media (max-width: 64rem) {
  .l-read h4 {
    font-size: var(--fs-20);
  }
}
.l-read p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  margin-top: 1em;
  font-size: var(--fs-18);
  font-weight: 400;
}
@media (max-width: 64rem) {
  .l-read p {
    text-align: left;
    font-size: var(--fs-16);
  }
}

.fv_button {
  max-width: 75rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}
@media (max-width: 64rem) {
  .fv_button {
    display: block;
    max-width: 38rem;
  }
}

/* 1つ目 */
.fv_button__item {
  display: block;
  position: relative;
  z-index: 10;
}

.fv_button__item:first-child {
  margin-right: -8%;
}
@media (max-width: 64rem) {
  .fv_button__item:first-child {
    margin: 0;
  }
}

/* 2つ目 */
.fv_button__item:nth-child(2) {
  margin-left: -8%;
  margin-top: 20%;
}
@media (max-width: 64rem) {
  .fv_button__item:nth-child(2) {
    margin: 0;
    margin-top: 5%;
  }
}

.l-article--event {
  max-width: 80rem;
  background-color: var(--color--article-bg);
  padding: 1rem;
  margin: 0 auto;
  margin-top: clamp(2rem, 0.944rem + 4.507vw, 5rem);
  padding: var(--space-inner-pading);
  border-radius: 2rem;
  position: relative;
}

.l-article--event.musha {
  margin-top: calc(clamp(2rem, 0.944rem + 4.507vw, 5rem) * 2);
}

#event-01,
#event-02 {
  scroll-margin-top: calc(var(--space-inner-pading) * 2);
}
@media (max-width: 48rem) {
  #event-01,
  #event-02 {
    scroll-margin-top: calc(var(--space-inner-pading) * 2.5);
  }
}

.l-article--event--inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.area-header {
  display: flex;
  align-items: center;
  margin-top: calc(var(--space-inner-pading) * 2 * -1);
  margin-left: calc(clamp(4.375rem, 1.954rem + 10.329vw, 11.25rem) * 0.5);
}
@media (max-width: 90rem) {
  .area-header {
    margin-left: calc(clamp(4.375rem, 1.954rem + 10.329vw, 11.25rem) * 0.8);
  }
}
@media (max-width: 48rem) {
  .area-header {
    align-items: flex-start;
    margin-top: calc(var(--space-inner-pading) * 2.5 * -1);
  }
}

.area-header--title {
  display: flex;
  align-items: center;
}
@media (max-width: 48rem) {
  .area-header--title {
    flex-direction: column;
    align-items: flex-start;
  }
}

.area-header--title h4 {
  width: 100%;
  font-size: var(--fs-24);
  line-height: 1.3;
  margin-top: 0.3em;
}
@media (max-width: 48rem) {
  .area-header--title h4 {
    font-size: var(--fs-18);
  }
}

.area-header--title.musha {
  flex-direction: column;
  align-items: flex-start;
}

.icon_area {
  position: absolute;
  top: calc(clamp(4.375rem, 1.954rem + 10.329vw, 11.25rem) * 0.5 * -1);
  left: calc(clamp(4.375rem, 1.954rem + 10.329vw, 11.25rem) * 0.3 * -1);
  width: clamp(4.375rem, 1.954rem + 10.329vw, 11.25rem);
}
@media (max-width: 90rem) {
  .icon_area {
    left: 0;
  }
}

.title_area {
  width: clamp(14.375rem, 9.313rem + 21.596vw, 28.75rem);
}

.title_area--musha {
  width: clamp(16.625rem, 7.734rem + 37.934vw, 41.875rem);
}
@media (max-width: 48rem) {
  .title_area--musha {
    width: clamp(18rem, 6.55rem + 48.855vw, 30rem);
  }
}

.weather-info {
  display: flex;
  padding: 0.2em 0.6em;
  border-radius: 0.4rem;
  border: 2px solid #fff;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--color--blue--primary);
  font-size: var(--fs-20);
  color: #fff;
  margin-top: 0.5rem;
  margin-left: 1rem;
  font-weight: 600;
}
@media (max-width: 48rem) {
  .weather-info {
    margin-left: 0;
  }
}

.l-article--event--textbox {
  margin-top: 1rem;
}

.l-article--event--text-honbun {
  font-size: var(--fs-16);
  line-height: 1.6;
}

.details-list__item--right {
  display: flex;
  flex-direction: column;
}
.details-list__item--right .big {
  display: block;
  font-weight: 600;
  line-height: 1;
  font-size: var(--fs-32);
  margin-top: -0.1em;
}
@media (max-width: 30rem) {
  .details-list__item--right .big {
    font-size: var(--fs-24);
  }
}
.details-list__item--right .middle {
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  flex-wrap: wrap;
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--fs-24);
}
@media (max-width: 30rem) {
  .details-list__item--right .middle {
    font-size: var(--fs-20);
  }
}
.details-list__item--right .small {
  display: block;
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--fs-16);
}
@media (max-width: 30rem) {
  .details-list__item--right .small {
    font-size: var(--fs-14);
  }
}
.details-list__item--right .highlight-naegi {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid var(--color-naegi);
  padding: 0.1em 0.8em;
  color: var(--color-naegi);
  font-size: 0.8em;
}
@media (max-width: 951px) {
  .details-list__item--right .highlight-naegi {
    margin-top: 0.2em;
  }
}

.event-title__naegi--tour {
  width: clamp(27rem, 17.857rem + 19.048vw, 35rem);
}
@media (max-width: 48rem) {
  .event-title__naegi--tour {
    width: clamp(18.75rem, 10.878rem + 33.588vw, 27rem);
  }
}

.event-application {
  position: relative;
  max-width: 1024px;
  background-color: #fff;
  border: 2px solid var(--color--notice);
  padding: 1rem 2rem;
  padding-top: 2rem;
  border-radius: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
  margin-top: 2rem;
}
@media (max-width: 48rem) {
  .event-application {
    padding: clamp(1rem, 0.046rem + 4.071vw, 2rem);
  }
}
.event-application .event-application__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  margin-top: 0.8em;
  line-height: 1.4;
}
.event-application .event-application__tag-list li {
  color: var(--color--notice);
  font-weight: 600;
  border: 1.5px solid var(--color--notice);
  padding: 0.2em 1em;
  border-radius: 0.3rem;
  line-height: 1.3;
  font-size: var(--fs-18);
}
.event-application .event-application__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
@media (max-width: 48rem) {
  .event-application .event-application__inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.event-application .event-application__title {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.3;
  font-size: var(--fs-32);
  color: var(--color--notice);
  font-weight: 600;
  font-feature-settings: "palt";
}
@media (max-width: 30rem) {
  .event-application .event-application__title {
    font-size: calc(var(--fs-32) * 0.85);
  }
}
.event-application .event-application__line {
  border: 1px dashed var(--color--gray-line);
}
.event-application .event-application__day {
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 1.2;
  font-feature-settings: "palt";
  font-variant-numeric: tabular-nums;
  letter-spacing: 0 !important;
}
@media (max-width: 64rem) {
  .event-application .event-application__day {
    font-size: var(--fs-18);
  }
}
.event-application .event-application__text-strong {
  font-size: var(--fs-18);
  font-weight: 600;
  margin-top: 1em;
  line-height: 1.4;
  font-feature-settings: "palt";
}

.event-notice {
  position: relative;
  max-width: 1024px;
  background-color: #fff;
  padding: 0 2rem 1rem 2rem;
  border-radius: 1.5rem;
  margin-top: 2rem;
}
.event-notice .event-notice__title {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.3;
  font-size: var(--fs-24);
  color: #fff;
  background-color: var(--color--black);
  font-weight: 600;
  padding: 0.3em 1em;
  border-radius: 0 0 8px 8px;
  font-feature-settings: "palt";
}
@media (max-width: 30rem) {
  .event-notice .event-notice__title {
    font-size: calc(var(--fs-24) * 0.85);
  }
}
.event-notice .event-notice__subtitle {
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1rem;
  font-feature-settings: "palt";
  font-variant-numeric: tabular-nums;
}
@media (max-width: 64rem) {
  .event-notice .event-notice__subtitle {
    font-size: var(--fs-20);
  }
}
.event-notice .notice-text {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.3;
}
.event-notice .notice-textbox {
  margin-top: 0.5em;
  font-weight: 600;
}
.event-notice .event-notice--listbox {
  font-size: var(--fs-16);
  font-weight: 600;
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  line-height: 1.4;
}
.event-notice .event-notice--list {
  list-style-type: disc;
  margin-left: 1em;
}
.event-notice .btn__event-notice {
  display: block;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color--notice);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  padding: 1em 2em;
}
.event-notice .btn__event-notice span {
  display: inline-block;
}
.event-notice .btn__event-notice .big {
  font-size: 1.5em;
}
.event-notice .btn__event-notice .small {
  font-size: 1em;
}
.event-notice .ticket-num {
  display: inline-block;
  background-color: var(--color--notice);
  color: #fff;
  font-weight: 600;
  padding: 0.1em 0.7em;
  margin: 0 0.2em;
  border-radius: 9999px;
}
.event-notice .seating-chart-preview {
  position: absolute;
  right: 2rem;
  top: -2rem;
  max-width: 250px;
  border: 1px solid var(--color--gray-line);
}
@media (max-width: 64rem) {
  .event-notice .seating-chart-preview {
    position: initial;
    margin-top: 1rem;
  }
}
@media (max-width: 30rem) {
  .event-notice .seating-chart-preview {
    margin: 1rem auto 0 auto;
  }
}

#event-01__dapplication {
  padding-top: 2em;
}

#event-01__dapplication .emphasis-item {
  left: 2rem;
}
@media (max-width: 48rem) {
  #event-01__dapplication .emphasis-item {
    left: 50%;
    transform: translateX(-50%);
  }
}

#event-01__dapplication .emphasis-item .text {
  border-radius: 0 0 0 0;
  padding: 0.3em 1em;
}

.l-article--event .l-notice {
  line-height: 1.4;
}

.notice-textbox {
  max-width: 55rem;
  margin-top: 1rem;
}
.notice-textbox .notice-title {
  font-weight: 600;
  font-size: var(--fs-15);
  padding-bottom: 0.4em;
}
.notice-textbox .notice-text {
  font-feature-settings: "palt";
  font-size: var(--fs-12);
}
@media (max-width: 30rem) {
  .notice-textbox .notice-text {
    font-size: var(--fs-10);
  }
}

.notice-list {
  font-size: var(--fs-14);
  font-weight: 600;
  margin-top: 0.2em;
  font-feature-settings: "palt";
  line-height: 1.3;
}
.notice-list li {
  padding-left: 1em;
  text-indent: -1em;
  color: var(--color--notice);
}
.notice-list li:before {
  content: "※";
}

.notice-list > li.black {
  color: var(--color--black);
}

.c-section-line {
  display: block;
  width: 100%;
  margin: 1rem 0;
  height: 1px;
  background-color: var(--color--gray-line);
  mix-blend-mode: multiply;
}

.l-event-mein__header.musha .c-section-line {
  width: calc(100% - (clamp(10rem, -1.25rem + 23.438vw, 13.75rem) + 2rem));
  margin: clamp(1rem, 0.648rem + 1.502vw, 2rem) 0;
  height: 2px;
  background-color: var(--color-musha);
}
@media (max-width: 48rem) {
  .l-event-mein__header.musha .c-section-line {
    width: calc(100% - (clamp(7.5rem, 5.115rem + 10.178vw, 10rem) + 1rem));
  }
}
@media (max-width: 30rem) {
  .l-event-mein__header.musha .c-section-line {
    width: 100%;
  }
}

.text-box .c-section-line {
  margin: 0.5rem 0;
}

.details-list__item .item-box-border {
  padding: 1em;
  line-height: 1.3;
  border-radius: 0.1rem;
}
@media (max-width: 37.5rem) {
  .details-list__item .item-box-border {
    margin-top: 0.5em;
  }
}
.details-list__item .item-box-border h6 {
  font-size: var(--fs-16);
  font-weight: 600;
}
.details-list__item .item-box-border p {
  margin-top: 0.5em;
  font-size: var(--fs-12);
  font-weight: 600;
}

.details-list__item .item-box-border.blue {
  border: 1.5px solid var(--color--blue--primary);
}

/*
================
メインイベント（日時詳細あり）
================
*/
.l-event-mein {
  margin-top: var(--article--gap);
}

.l-event-mein.musha {
  margin-top: 0;
}

.l-event-mein__header.naegi {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 11rem 1fr;
  grid-template-rows: repeat(3, auto);
  grid-column-gap: clamp(1rem, 0.648rem + 1.502vw, 2rem);
  grid-row-gap: 0;
}
@media (max-width: 48rem) {
  .l-event-mein__header.naegi {
    grid-template-columns: clamp(7.5rem, 3.922rem + 15.267vw, 11.25rem) 1fr;
    grid-template-rows: repeat(3, auto);
  }
}

.l-event-mein__header.naegi .human-box {
  grid-area: 1/1/2/2;
  grid-row: 1/4;
  width: 100%;
  height: 100%;
  order: 1;
}
@media (max-width: 48rem) {
  .l-event-mein__header.naegi .human-box {
    grid-area: 3/1/4/2;
    order: 2;
  }
}
.l-event-mein__header.naegi .title-box {
  grid-area: 1/2/2/3;
  order: 2;
}
@media (max-width: 48rem) {
  .l-event-mein__header.naegi .title-box {
    grid-column: 1/3;
    order: 1;
  }
}
.l-event-mein__header.naegi .c-section-line {
  grid-area: 2/2/3/3;
  order: 3;
}
@media (max-width: 48rem) {
  .l-event-mein__header.naegi .c-section-line {
    grid-column: 1/3;
    order: 2;
  }
}
.l-event-mein__header.naegi .details-list {
  display: flex;
  flex-direction: column;
  grid-area: 3/2/4/3;
  order: 4;
  gap: 1rem;
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.human-box {
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}
.human-box img {
  border-radius: 0.5rem;
}
.human-box figcaption .job {
  display: block;
  margin: 0.5em auto;
  margin-top: 1em;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 9999px;
  padding: 0.2em 1em;
  background-color: var(--color--black);
  color: #fff;
  font-size: var(--fs-14);
}
.human-box figcaption .position {
  display: block;
  font-size: var(--fs-14);
}
.human-box figcaption .name {
  display: block;
  font-size: var(--fs-24);
}
.human-box figcaption .name .small {
  font-size: var(--fs-16);
}

.l-event-mein__header .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5em;
  font-size: var(--fs-18);
  margin-top: 0.5em;
}

.l-event-mein__header .list .item {
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0 0.7em;
  font-weight: 600;
  margin-top: 0.5em;
}

.l-event-mein__header.naegi .list .item {
  color: var(--color-naegi);
}

.details-list__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-feature-settings: "palt";
  font-variant-numeric: tabular-nums;
}
@media (max-width: 48rem) {
  .details-list__item {
    flex-direction: column;
    gap: clamp(0.3rem, 0.109rem + 0.814vw, 0.5rem);
    align-items: flex-start;
  }
}

.details-list__item--left {
  display: block;
  width: 7em;
  text-align: center;
  color: #fff;
  font-size: var(--fs-16);
  border-radius: 0.3rem;
  font-weight: 500;
  padding: 0.5rem 0;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
  line-height: 1.3;
}
@media (max-width: 37.5rem) {
  .details-list__item--left {
    padding: 0.2rem 0;
  }
}

.l-event-mein.naegi .details-list__item--left {
  background-color: var(--color-naegi);
}

.l-event-mein.musha .details-list__item--left {
  background-color: var(--color-musha);
}

/*
================
カードグリッド
================
*/
.l-event-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}
@media (max-width: 48rem) {
  .l-event-card {
    display: flex;
    flex-direction: column;
    max-width: 35rem;
  }
}

.l-event-card.naegi {
  gap: 3rem 1.5rem;
}
@media (max-width: 48rem) {
  .l-event-card.naegi {
    gap: 1.5rem;
  }
}

.l-event-card__item {
  border-radius: 1rem;
  position: relative;
  padding: 1rem;
  height: -moz-fit-content;
  height: fit-content;
}

.l-event-card__item.white {
  background-color: #fff;
  margin-bottom: 0;
}

.l-event-card__icon {
  position: absolute;
  top: calc(clamp(0.938rem, 0.497rem + 1.878vw, 2.188rem) * -1);
  left: calc(clamp(0.938rem, 0.827rem + 0.469vw, 1.25rem) * -1);
  width: clamp(6.5rem, 5.488rem + 4.319vw, 9.375rem);
  z-index: 5;
}

.event-card__imagebox-naegi {
  position: relative;
}

.event-card__title-naegi {
  display: flex;
  align-items: stretch;
  gap: 0.5em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  background-color: var(--color--gold-bg);
  font-weight: 600;
  color: var(--color--black);
  position: relative;
}

.event-card__title-naegi p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.2em 0.7em 0.2em 0;
}

.icon_naegi-kau {
  position: absolute;
  right: calc(clamp(4.375rem, 3.715rem + 2.817vw, 6.25rem) * 0.5 * -1);
  width: clamp(4.375rem, 3.715rem + 2.817vw, 6.25rem);
}

.event-card__title-naegi.kau p {
  padding-right: calc(clamp(4.375rem, 3.715rem + 2.817vw, 6.25rem) * 0.7);
}

.event-card__title-naegi.big {
  position: absolute;
  right: 0;
  top: 0;
  font-size: calc(var(--fs-24) * 1.2);
}
@media (max-width: 48rem) {
  .event-card__title-naegi.big {
    font-size: calc(var(--fs-24) * 0.9);
  }
}

.event-card__title-naegi.small {
  font-size: var(--fs-24);
  margin-top: 0.5em;
}
@media (max-width: 48rem) {
  .event-card__title-naegi.small {
    font-size: calc(var(--fs-24) * 0.8);
  }
}

.bg-event-card-title-naegi {
  flex-shrink: 0;
  width: clamp(0.5rem, 0.324rem + 0.751vw, 1rem);
}

.bg-event-card-title-naegi img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.event-card__image {
  width: 95%;
}

.event-card__time-naegi {
  display: block;
  position: absolute;
  right: 0;
  bottom: calc(clamp(1.563rem, 1.452rem + 0.469vw, 1.875rem) * -1);
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-20);
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 0.5rem;
  padding: 0.3em 0.8em;
}
@media (max-width: 48rem) {
  .event-card__time-naegi {
    font-size: var(--fs-16);
  }
}

.event-card__time-naegi.small {
  position: initial;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fs-16);
  margin-top: 0.5em;
}

.event-card__time-naegi.miru {
  background-color: #007260;
}

.event-card__time-naegi.taberu {
  background-color: #B7272D;
}

.event-card__time-naegi.asobu {
  background-color: #9F5900;
}

.event-card__time-naegi.meguru {
  background-color: #005D94;
  bottom: inherit;
  top: clamp(3rem, 2.648rem + 1.502vw, 4rem);
}

.event-card__time-naegi .kara {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  display: block;
  transform: rotate(90deg);
  margin: 0 auto;
}

rt {
  font-size: 0.4em;
  line-height: 1;
  transform: translateY(0.15em);
}

.event-card__textbox-naegi {
  width: 95%;
  margin-top: 0.5em;
  font-size: var(--fs-16);
  line-height: 1.5;
  font-weight: 500;
  color: var(--color--black);
}

.event-card__textbox-naegi a {
  font-size: var(--fs-20);
  display: flex;
  gap: 0.2em;
  font-weight: 600;
  color: var(--color--blue--primary);
  text-decoration: underline;
  margin-top: 0.3em;
}

.event-card__textbox-naegi a img {
  width: var(--fs-20);
}

/*
==========================
苗木城エリア特有スタイル
==========================
*/
.title_kakusyu-event {
  width: clamp(11.25rem, 7.729rem + 15.023vw, 21.25rem);
  margin: 3rem auto;
}
@media (max-width: 48rem) {
  .title_kakusyu-event {
    margin-bottom: clamp(2rem, 1.046rem + 4.071vw, 3rem);
  }
}

.naegi-jimoto-event {
  position: relative;
  margin: 0 auto;
  background-color: var(--color-naegi);
  padding: 2rem;
  padding-top: 1.5rem;
  border-radius: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
  margin-top: clamp(2rem, 1.296rem + 3.005vw, 4rem);
}
@media (max-width: 30rem) {
  .naegi-jimoto-event {
    padding: 1rem;
  }
}

.naegi-jimoto-event__title {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.3;
  font-size: var(--fs-32);
  color: #fff;
  font-weight: 600;
  font-feature-settings: "palt";
  margin: 0 auto;
}
@media (max-width: 30rem) {
  .naegi-jimoto-event__title {
    font-size: calc(var(--fs-32) * 0.85);
    width: 100%;
    text-align: center;
  }
}

.naegi-jimoto-event__list {
  max-width: 37rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  margin-top: 1rem;
  line-height: 1.3;
}
@media (max-width: 48rem) {
  .naegi-jimoto-event__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.naegi-jimoto-event__list .one {
  grid-area: 1/1/2/2;
}
.naegi-jimoto-event__list .two {
  grid-area: 1/2/2/3;
}
.naegi-jimoto-event__list .three {
  grid-area: 1/3/2/4;
}
.naegi-jimoto-event__list .four {
  grid-area: 2/1/3/2;
}
.naegi-jimoto-event__list .five {
  grid-area: 2/2/3/3;
}
.naegi-jimoto-event__list .six {
  grid-area: 2/3/3/4;
}
.naegi-jimoto-event__list .seven {
  grid-area: 3/1/4/2;
}
.naegi-jimoto-event__list .eight {
  grid-area: 3/2/4/4;
}
.naegi-jimoto-event__list .one, .naegi-jimoto-event__list .two, .naegi-jimoto-event__list .three, .naegi-jimoto-event__list .four, .naegi-jimoto-event__list .five, .naegi-jimoto-event__list .six, .naegi-jimoto-event__list .seven, .naegi-jimoto-event__list .eight {
  padding: 0.5rem 0;
}
@media (max-width: 48rem) {
  .naegi-jimoto-event__list .one, .naegi-jimoto-event__list .two, .naegi-jimoto-event__list .three, .naegi-jimoto-event__list .four, .naegi-jimoto-event__list .five, .naegi-jimoto-event__list .six, .naegi-jimoto-event__list .seven, .naegi-jimoto-event__list .eight {
    grid-area: auto;
    width: calc(50% - 0.25rem);
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 48rem) {
  .naegi-jimoto-event__list .eight {
    padding: 0.2rem 0 0.3rem 0;
  }
}

.naegi-jimoto-event__list li {
  text-align: center;
  background-color: #fff;
  border-radius: 0.3rem;
  color: var(--color-naegi);
  font-weight: 600;
  font-size: var(--fs-20);
  letter-spacing: 0;
}
@media (max-width: 30rem) {
  .naegi-jimoto-event__list li {
    font-size: calc(var(--fs-18) * 0.95);
  }
}

.naegi-jimoto-event__list li .small {
  font-size: calc(var(--fs-20) * 0.8);
}
@media (max-width: 30rem) {
  .naegi-jimoto-event__list li .small {
    font-size: calc(var(--fs-18) * 0.75);
  }
}

.il_naegi-jimoto-event__left {
  position: absolute;
  width: clamp(3rem, 1.944rem + 4.507vw, 6rem);
  left: clamp(3rem, -9.308rem + 19.231vw, 8rem);
  top: 60%;
  transform: translateY(-50%);
}
@media (max-width: 64rem) {
  .il_naegi-jimoto-event__left {
    transform: none;
    top: -5%;
    left: clamp(9.375rem, -5.625rem + 31.25vw, 14.375rem);
  }
}
@media (max-width: 48rem) {
  .il_naegi-jimoto-event__left {
    left: clamp(1rem, -2.817rem + 16.285vw, 5rem);
  }
}

.il_naegi-jimoto-event__right {
  position: absolute;
  width: clamp(3.5rem, 2.268rem + 5.258vw, 7rem);
  right: clamp(3rem, -9.308rem + 19.231vw, 8rem);
  top: 60%;
  transform: translateY(-50%);
}
@media (max-width: 64rem) {
  .il_naegi-jimoto-event__right {
    transform: none;
    top: -5%;
    right: clamp(9rem, -6rem + 31.25vw, 14rem);
  }
}
@media (max-width: 48rem) {
  .il_naegi-jimoto-event__right {
    right: clamp(1rem, -2.817rem + 16.285vw, 5rem);
  }
}

/*
==========================
武者行列特有スタイル
==========================
*/
.l-article--event.musha {
  position: relative;
}

.l-article--event.musha .human-box {
  width: 13.75rem;
  position: absolute;
  right: var(--space-inner-pading);
  top: -2rem;
}
@media (max-width: 64rem) {
  .l-article--event.musha .human-box {
    width: clamp(10rem, -1.25rem + 23.438vw, 13.75rem);
  }
}
@media (max-width: 48rem) {
  .l-article--event.musha .human-box {
    right: 0;
    width: clamp(7.5rem, 5.115rem + 10.178vw, 10rem);
  }
}
@media (max-width: 30rem) {
  .l-article--event.musha .human-box {
    top: 1rem;
  }
}

.l-article--event.musha .human-box.pc {
  display: block;
}
@media (max-width: 48rem) {
  .l-article--event.musha .human-box.pc {
    display: none;
  }
}

.l-article--event.musha .human-box.sp {
  display: none;
}
@media (max-width: 48rem) {
  .l-article--event.musha .human-box.sp {
    display: block;
  }
}

.l-article--event.musha .human-box figcaption .job {
  font-size: calc(var(--fs-14) * 1.2);
}
.l-article--event.musha .human-box figcaption .position {
  display: block;
  font-size: calc(var(--fs-14) * 1.2);
}
.l-article--event.musha .human-box figcaption .name {
  display: block;
  font-size: calc(var(--fs-24) * 1.2);
}
@media (max-width: 30rem) {
  .l-article--event.musha .human-box figcaption .name {
    font-size: var(--fs-24);
  }
}
.l-article--event.musha .human-box figcaption .name .small {
  font-size: calc(var(--fs-16) * 1.2);
}

@media (max-width: 48rem) {
  .l-article--event.musha .details-list.top {
    width: calc(100% - (clamp(7.5rem, 5.115rem + 10.178vw, 10rem) + 1rem));
  }
}

.l-article--event.musha .details-list.bottom {
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.details-item--schedule {
  display: flex;
  gap: 2rem;
}
@media (max-width: 48rem) {
  .details-item--schedule {
    flex-direction: column;
    gap: 0.7rem;
  }
}

.details-item--schedule--sub {
  color: var(--color-musha);
  font-weight: 600;
  font-size: var(--fs24);
  border: 2px solid var(--color-musha);
  padding: 0.7em 1em;
  border-radius: 0.5rem;
  line-height: 1.4;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 48rem) {
  .details-item--schedule--sub {
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    padding: 0.5em 1em;
  }
}

.details-item--schedule--list {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  counter-reset: schedule-number;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 48rem) {
  .details-item--schedule--list {
    flex-direction: column;
    gap: 0.5em;
  }
}

.details-item--schedule--item {
  position: relative;
  padding-left: 2em;
  counter-increment: schedule-number;
  line-height: 1.4;
}

.details-item--schedule--item::before {
  display: inline-flex;
  content: counter(schedule-number);
  border: 2px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  font-size: var(--fs-20);
  line-height: 1;
  width: var(--fs-24);
  height: var(--fs-24);
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--fs-20) * 0.3);
}

.details-item--schedule--title {
  font-size: var(--fs-24);
  font-weight: 600;
}

.title_rokusaiichi {
  width: clamp(21rem, 15.19rem + 24.789vw, 37.5rem);
}

.l-event-rokusaiichi {
  margin-top: var(--article--gap);
}

.l-event-rokusaiichi__header {
  display: flex;
  align-items: center;
  font-size: var(--fs-24);
  font-weight: bold;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 48rem) {
  .l-event-rokusaiichi__header {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.l-event-card--rokusai {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

@media (max-width: 48rem) {
  .l-event-card--rokusai {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.l-event-card__item {
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  background-color: var(--color-musha);
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .l-event-card__item {
    margin-bottom: 1.5rem;
  }
}

.l-event-card__item--rokusai-icon {
  position: absolute;
  top: -1em;
  left: 1em;
  background-color: #fff;
  color: var(--color-musha);
  font-weight: bold;
  padding: 0.1em 1em;
  border-radius: 9999px;
  font-size: var(--fs-18);
}

.l-event-card__item--rokusai-title {
  font-size: var(--fs-24);
  color: var(--color-yellow);
  font-weight: bold;
  line-height: 1.2;
  margin: 0.5rem 0;
}

.l-event-rokusaiichi .l-event-card__item p.l-event-card__item--rokusai-strong {
  font-size: var(--fs-20);
  font-weight: bold;
  line-height: 1.2;
}

.l-event-rokusaiichi .l-event-card__item p {
  font-size: var(--fs-16);
  font-weight: 400;
  margin-top: 0.3em;
}

.l-event-card__item--rokusai-other {
  display: block;
  margin-top: 0.5em;
  background-color: var(--color-yellow);
  color: var(--color-musha);
  font-weight: bold;
  padding: 0.5em;
  width: 100%;
  text-align: center;
  line-height: 1.3;
}

.l-access {
  position: relative;
  margin-top: var(--article--gap);
}

.l-access__header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: var(--space-xs);
  padding-bottom: clamp(1rem, 0.648rem + 1.502vw, 2rem);
}

.l-access__header__text-box {
  display: flex;
  flex-direction: column-reverse;
  line-height: 0.7;
  align-items: flex-end;
  width: -moz-fit-content;
  width: fit-content;
}

.l-access__header--title {
  font-size: clamp(5rem, 3.571rem + 2.232vw, 6.25rem);
  letter-spacing: 0.05em;
}
@media (max-width: 64rem) {
  .l-access__header--title {
    font-size: clamp(3rem, 1.235rem + 5.882vw, 5rem);
  }
}

.l-access__header--subtitle {
  display: block;
  font-size: var(--fs-24);
  font-weight: bold;
  margin-right: 0.3em;
}
@media (max-width: 64rem) {
  .l-access__header--subtitle {
    font-size: var(--fs-20);
  }
}

.l-access__header__text-box.naegi .l-access__header--title, .l-access__header__text-box.naegi .l-access__header--subtitle {
  color: var(--color-naegi);
}

.l-access__header__text-box.musha .l-access__header--title, .l-access__header__text-box.musha .l-access__header--subtitle {
  color: var(--color-musha);
}

.l-access__inner {
  padding-bottom: var(--space-contents);
}

.l-access__article-box {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.l-access__article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.l-access__article .text-box {
  display: grid;
  grid-template-columns: 1fr 2px 1.5fr;
  gap: 2rem;
}
@media (max-width: 48rem) {
  .l-access__article .text-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.l-access__article .text-box .line {
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 48rem) {
  .l-access__article .text-box .line {
    height: 2px;
  }
}

.l-access__article .text-box.naegi .line {
  background-color: var(--color-naegi);
}

.l-access__article .text-box.musha .line {
  background-color: var(--color-musha);
}

.l-access__article .access-title {
  font-size: var(--fs-24);
  font-weight: 600;
}

.l-access__article .access-title a {
  display: flex;
  gap: 0.2em;
  font-size: var(--fs-24);
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 48rem) {
  .l-access__article .access-title a {
    font-size: calc(var(--fs-24) * 0.9);
  }
}

.l-access__article .text-box.naegi .access-title a {
  color: var(--color-naegi);
}

.l-access__article .text-box.musha .access-title a {
  color: var(--color-musha);
}

.l-access__article .access-title .icon_link {
  width: calc(var(--fs-24) * 0.9);
}

.access-address__main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.5;
}

.access-address__parking {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.access-address__parking--list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.access-address__parking.naegi .access-address__parking--item a {
  color: var(--color-naegi);
}
.access-address__parking.naegi .access-address__parking--title {
  background-color: var(--color-naegi);
}

.access-address__parking.musha .access-address__parking--item a {
  color: var(--color-musha);
}
.access-address__parking.musha .access-address__parking--title {
  background-color: var(--color-musha);
}

.access-address__parking--title {
  font-size: var(--fs-20);
  color: #fff;
  padding: 0.3rem 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
}

.access-address__parking--item .access-address__parking--item--link {
  display: flex;
  align-items: center;
}

.access-address__parking--item .access-address__parking--item--link a {
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.access-address__parking--item .access-address__parking--item--link:before {
  content: "●";
  color: var(--color--gold-text);
  font-size: 0.8em;
  margin-right: 0.2em;
}

.access-address__parking--item .access-address__parking--item--link .icon_link {
  width: var(--fs-18);
}

.access-address__parking--item p {
  font-size: var(--fs-16);
  margin-left: var(--fs-20);
  font-weight: 500;
}

.access-route {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.5;
}

.l-access__article .access-address {
  font-size: var(--fs-18);
  font-weight: 600;
}

.l-access__article .access-details {
  font-size: var(--fs-16);
  font-weight: 500;
  font-feature-settings: "palt";
}

.l-access__article .access-details .midashi {
  display: block;
  font-weight: bold;
}

.l-access__article .access-details a {
  font-weight: 600;
  text-decoration: underline;
}

.l-access__article .text-box.naegi .access-details a {
  color: var(--color-naegi);
}

.l-access__article .access-details .icon_link {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.2em;
  margin-bottom: 0.2em;
  width: calc(var(--fs-16) * 0.9);
}

.l-access__article .access-details li {
  padding-left: 1em;
  text-indent: -1em;
}

.l-access__article .access-details li:before {
  content: "●";
  color: var(--color--gold-text);
  font-size: 0.8em;
  margin-right: 0.2em;
}

.access_notice {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-radius: 1rem;
  font-size: var(--fs-16);
  font-weight: 500;
  padding: 1.5rem 0;
  background-color: #fff;
  margin-top: 0.5rem;
}

.access_notice__item--title {
  font-size: var(--fs-18);
  color: #fff;
  margin-bottom: 0.3rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  border-radius: 0 0.4rem 0.4rem 0;
}

.access_notice__item--title.gold {
  background-color: var(--color--gold-text);
}

.access_notice__item--title.red {
  background-color: var(--color--red--darken);
}

.access_notice__item--strong {
  font-weight: 600;
  color: var(--color--gold-text);
  font-size: var(--fs-18);
}

.access_notice p, .access_notice a {
  padding: 0 1.5rem;
}

.access_notice__item a {
  color: var(--color--red--darken);
  text-decoration: underline;
  font-weight: bold;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
@media (max-width: 48rem) {
  .map {
    padding-top: 75%;
  }
}
@media (max-width: 35rem) {
  .map {
    padding-top: 100%;
  }
}

.map iframe {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.mymap-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  cursor: pointer;
  background: transparent;
}

/* クリック後はiframeを操作可能にする */
.mymap-wrap.is-active iframe {
  pointer-events: auto;
}

/* クリック後はオーバーレイを操作対象から外す */
.mymap-wrap.is-active .mymap-overlay {
  pointer-events: none;
}

.naegi500_footer {
  width: 100%;
  color: #fff;
  font-feature-settings: "palt";
  margin-top: clamp(4rem, 2.944rem + 4.507vw, 7rem);
}

.naegi500_footer .inner {
  max-width: 82rem;
  margin: 0 auto;
  padding: clamp(2rem, 1.757rem + 1.036vw, 3rem) 2rem;
}

.naegi500_footer .footer_menu {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
}
@media (max-width: 75rem) {
  .naegi500_footer .footer_menu {
    gap: clamp(2rem, 1.091rem + 3.879vw, 4rem);
  }
}
@media (max-width: 48rem) {
  .naegi500_footer .footer_menu {
    display: flex;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
  }
}

.naegi500_footer .footer_logo {
  max-width: 25rem;
}
@media (max-width: 75rem) {
  .naegi500_footer .footer_logo {
    width: clamp(10rem, 3.75rem + 26.667vw, 23.75rem);
  }
}

.naegi500_footer .text-box {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.naegi500_footer .text-box h6 {
  font-size: var(--fs-32);
  line-height: 1.2;
  margin-bottom: 0.5em;
}
@media (max-width: 75rem) {
  .naegi500_footer .text-box h6 {
    font-size: var(--fs-24);
  }
}
.naegi500_footer .text-box p {
  font-size: var(--fs-18);
  line-height: 1.3;
}
@media (max-width: 75rem) {
  .naegi500_footer .text-box p {
    font-size: var(--fs-16);
  }
}
.naegi500_footer .text-box .btn_contact {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fs-24);
  font-weight: 600;
  background-color: #fff;
  color: var(--color--black);
  padding: 0.2em 2em;
  margin-top: 0.5em;
  border-radius: 100vmax;
  text-align: center;
}
@media (max-width: 75rem) {
  .naegi500_footer .text-box .btn_contact {
    font-size: var(--fs-20);
  }
}
.naegi500_footer .text-box .notice {
  font-size: var(--fs-10);
  margin-top: 0.5em;
}

.text-link-small {
  font-size: var(--fs-16);
  text-decoration: underline;
  font-feature-settings: "palt";
}

.text-link-small .icon_link {
  display: inline-block;
  width: calc(var(--fs-16) * 0.9);
  vertical-align: middle;
  margin-left: 0.2em;
  margin-bottom: 0.2em;
}

.u-ls-minus05 {
  letter-spacing: -0.5em;
}

.u-color--text__color--red--primary-text {
  color: var(--color--red--primary-text);
}

.u-color--text__color--red--darken {
  color: var(--color--red--darken);
}

.u-color--text__color--blue--primary {
  color: var(--color--blue--primary);
}

.u-font-size--08 {
  font-size: 0.8em;
}

.u-font-size--07 {
  font-size: 0.7em;
}

.u-font-size--1-1 {
  font-size: 1.1em;
}

.u-font-size--num {
  font-size: 1.2em;
}

.u-font-size--big-num {
  font-size: 1.5em;
}

.u-sp-block {
  display: none;
}
@media (max-width: 30rem) {
  .u-sp-block {
    display: block;
  }
}

.u-sp-none {
  display: block;
}
@media (max-width: 30rem) {
  .u-sp-none {
    display: none;
  }
}

.u-48rem-block {
  display: none;
}
@media (max-width: 48rem) {
  .u-48rem-block {
    display: block;
  }
}

.u-64rem-block {
  display: none;
}
@media (max-width: 64rem) {
  .u-64rem-block {
    display: block;
  }
}

.u-tb-block {
  display: none;
}
@media (max-width: 78.75rem) {
  .u-tb-block {
    display: block;
  }
}

.u-margin-top__1-5 {
  margin-top: 1.5rem !important;
}

.u-margin-top__1 {
  margin-top: 1rem !important;
}

.u-margin-top__1em {
  margin-top: 1em !important;
}

.u-margin-top__05em {
  margin-top: 0.5em !important;
}

.u-margin-top__02em {
  margin-top: 0.2em !important;
}

.u-place__center--margin-1 {
  margin: 1rem auto;
}

.u-place__left {
  margin: 0 auto 0 0;
}

.u-space__2 {
  width: 100%;
  height: 2rem;
}

.u-place__center--margin-05 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.5rem auto;
}

/* 申し込みボタン */
.btn__event-application {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-18);
  padding: 1em 2em;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  background: var(--color--notice);
  color: #fff;
  line-height: 1;
  cursor: pointer;
  width: clamp(11rem, 9.239rem + 7.512vw, 16rem);
}

.btn__event-application.size-08 {
  font-size: var(--fs-16);
}

.btn__event-application.damy {
  cursor: auto;
  background: var(--color--gray-bg);
  color: var(--color--black);
  max-width: 16rem;
  width: 100%;
}

.btn__event-application-notice {
  margin-top: 0.5em;
  font-weight: 600;
  color: var(--color--notice);
  max-width: 16rem;
  text-align: center;
  font-size: 15px;
}

.l-event.bus .l-article--event {
  padding-top: clamp(3rem, 2.296rem + 3.005vw, 5rem);
  padding-bottom: clamp(3rem, 2.296rem + 3.005vw, 5rem);
}

.title_shuttlebus {
  width: clamp(17rem, 13.127rem + 16.526vw, 28rem);
  margin: 0 auto;
}

.coming-soon {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--fs-20);
  margin: 2rem auto;
  margin-bottom: 0;
}

.l-kyosan {
  max-width: 80rem;
  margin: 0 auto;
  margin-top: clamp(2rem, 0.944rem + 4.507vw, 5rem);
  padding: var(--space-inner-pading);
  position: relative;
}

.title_kyosan {
  width: clamp(21rem, 15.19rem + 24.789vw, 37.5rem);
  margin: 2rem auto;
}

.l-kyosan .coming-soon {
  color: #fff;
}

.l-event.spring .l-article--event {
  background-color: var(--color-beige);
  padding: clamp(3rem, 2.296rem + 3.005vw, 5rem) var(--space-inner-pading);
}

.title_spring-event {
  width: clamp(20.625rem, 14.683rem + 25.352vw, 37.5rem);
  margin: 0 auto;
}

.spring-event__detail {
  background-color: #fff;
  border-radius: 1.5rem;
  margin-top: clamp(1.5rem, 0.972rem + 2.254vw, 3rem);
  padding: clamp(1.5rem, 0.75rem + 2.5vw, 3rem);
}

.spring-event__detail--inner {
  max-width: 65rem;
  margin: 0 auto;
}

.spring-event__detail--header {
  color: var(--color-spring);
  font-weight: bold;
  font-size: var(--fs-32);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media (max-width: 30rem) {
  .spring-event__detail--header {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.spring-event__detail--read {
  font-weight: 600;
  font-size: var(--fs-16);
  margin-top: 1em;
  line-height: 1.5;
  max-width: 48rem;
}

.spring-event__detail--list {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 1.5rem;
}
@media (max-width: 48rem) {
  .spring-event__detail--list {
    display: flex;
    flex-direction: column;
  }
}

.spring-event__detail--pc-left,
.spring-event__detail--pc-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spring-event__detail--item {
  line-height: 1.5;
  font-weight: 500;
}

.spring-event__detail--item--title {
  color: var(--color-spring);
  font-weight: bold;
  padding-bottom: 0.3em;
  border-bottom: 1.5px solid var(--color-spring);
  margin-bottom: 0.5em;
  font-size: var(--fs-20);
}

.spring-event__detail--item--list li {
  text-indent: -1em;
  margin-left: 1em;
}

.spring-event__detail--item--list li::before {
  content: "●";
  color: var(--color--gold-text);
  font-size: 0.8em;
  margin-right: 0.2em;
}

.spring-event__detail--item--human {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 48rem) {
  .spring-event__detail--item--human {
    gap: 1rem;
  }
}

.spring-event__detail--item--human-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spring-event__detail--item--human-image {
  width: 5rem;
  border-radius: 50%;
  overflow: hidden;
}

.spring-event__detail--item--human-text {
  display: block;
  line-height: 1.3;
}

.spring-event__detail--item--human-text .position {
  display: block;
  font-size: var(--fs-12);
  font-weight: 700;
}

.spring-event__detail--item--human-text .name {
  display: block;
  font-size: var(--fs-16);
  margin-top: 0.3em;
}

.l-banner {
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(2rem, 0.944rem + 4.507vw, 5rem) clamp(1rem, 0.296rem + 3.005vw, 3rem);
}/*# sourceMappingURL=style-0819.css.map */