@charset "UTF-8";
:root {
  --color--black: #231815;
  --color--gray-line: #b8b3b2;
  --color--gray-bg: #eeece7;
  --color--gold-text: #8c7200;
  --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;
}

figure {
  margin: 0;
}

.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--black);
  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;
  margin: auto;
  background: #F7F6F2;
  width: 100%;
  height: 100vh;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

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

.cc_global-nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: calc(100% - 4rem);
  width: -moz-fit-content;
  width: fit-content;
  margin: calc(var(--header-height) + 2rem) auto 0;
  padding: clamp(0rem, -1.214rem + 5.178vw, 5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 42.188rem) {
  .cc_global-nav__inner {
    width: calc(100% - 3rem);
    height: calc(100% - (var(--header-height--sp) + 3rem));
    top: calc(var(--header-height--sp) + 1.5rem);
    padding-bottom: 2rem;
  }
}

.cc_global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0 auto;
}

.cc_global-nav__list--title {
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.4;
}
.cc_global-nav__list--title:hover {
  color: var(--color--notice);
}
@media (max-width: 30rem) {
  .cc_global-nav__list--title {
    font-size: var(--fs-20);
  }
}

.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: 70px;
  scroll-padding: var(--header);
}

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

.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;
  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 {
  width: 28%;
}
@media (max-width: 48rem) {
  .fv_left-1 {
    width: 35%;
  }
}

.fv_right-1 {
  width: 25%;
}
@media (max-width: 48rem) {
  .fv_right-1 {
    width: 32%;
  }
}

: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.3 * -1);
  position: relative;
  z-index: 5;
}
@media (max-width: 87rem) {
  .naegi500_main-title {
    margin-top: calc(var(--maintitle) * 0.15 * -1);
  }
}

.fv_middle {
  width: 35%;
  margin: 0 0 0 auto;
  margin-top: calc(var(--maintitle) * 0.4 * -1);
}
@media (max-width: 64rem) {
  .fv_middle {
    margin-top: calc(var(--maintitle) * 0.3 * -1);
  }
}
@media (max-width: 48rem) {
  .fv_middle {
    width: 45%;
  }
}
@media (max-width: 30rem) {
  .fv_middle {
    width: 60%;
  }
}

.fv_bottom {
  width: 60%;
  margin: 0 auto 0 0;
  margin-top: calc(var(--maintitle) * 0.7 * -1);
}
@media (max-width: 64rem) {
  .fv_bottom {
    width: 65%;
    margin-top: calc(var(--maintitle) * 0.6 * -1);
  }
}
@media (max-width: 48rem) {
  .fv_bottom {
    width: 70%;
    margin-top: calc(var(--maintitle) * 0.5 * -1);
  }
}
@media (max-width: 48rem) {
  .fv_bottom {
    width: 85%;
  }
}

.l-read {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: calc(var(--maintitle) * 0.3 * -1);
  position: relative;
  z-index: 5;
  padding: 2rem;
  padding-top: 0;
}
.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);
  }
}

.l-article--event {
  max-width: 80rem;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  margin: 0 auto;
  margin-top: var(--space-contents);
  padding: var(--space-inner-pading);
  border-radius: 2rem;
}

.l-article--event.red .l-article--event--header .title-main {
  color: var(--color--red--primary-text);
}
.l-article--event.red .l-article--event--header .tag-list li:before {
  color: var(--color--red--primary-text);
}
.l-article--event.red .l-article--event--header .details-list__item--left {
  background-color: var(--color--red--darken);
}
.l-article--event.red .l-article--event--details .details-list__item--left {
  background-color: var(--color--red--darken);
}
.l-article--event.red .l-article--event--details .details-list__item--right.text-list li:before {
  color: var(--color--red--primary-text);
}
.l-article--event.red .flier--text {
  background-color: var(--color--red--primary);
}
.l-article--event.red .flier--text .triangle {
  background-color: var(--color--red--primary);
}

.l-article--event.blue .l-article--event--header .title-main {
  color: var(--color--blue--primary);
}
.l-article--event.blue .l-article--event--header .tag-list li:before {
  color: var(--color--blue--primary);
}
.l-article--event.blue .l-article--event--details .details-list__item--left {
  background-color: var(--color--blue--darken);
}
.l-article--event.blue .l-article--event--details .details-list__item--right.text-list li:before {
  color: var(--color--blue--primary);
}
.l-article--event.blue .flier--text {
  background-color: var(--color--blue--primary);
}
.l-article--event.blue .flier--text .triangle {
  background-color: var(--color--blue--primary);
}

.l-article--event--inner {
  position: relative;
  width: 100%;
}
@media (max-width: 64rem) {
  .l-article--event--inner {
    max-width: 44rem;
    margin: 0 auto;
  }
}

.l-article--event--header {
  max-width: 48rem;
  width: 60%;
  line-height: 1.3;
  padding: 2rem 0;
}
@media (max-width: 64rem) {
  .l-article--event--header {
    width: 100%;
  }
}
.l-article--event--header .l-article--event--header--inner {
  display: block;
}
.l-article--event--header .title-main {
  font-size: var(--fs-48);
  font-weight: 900;
}
@media (max-width: 48rem) {
  .l-article--event--header .title-main {
    font-size: var(--fs-32);
  }
}
.l-article--event--header .title-box {
  display: flex;
  gap: 1.5em;
  align-items: center;
}
@media (max-width: 48rem) {
  .l-article--event--header .title-box {
    flex-direction: column-reverse;
    align-items: self-start;
    gap: 0.5em;
  }
}
.l-article--event--header .title-box .notice-circle {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  padding: 0.4em 1em;
  border-radius: 0.5em;
  gap: 0.2em;
  background-color: var(--color--blue--lighten);
  color: #fff;
  font-size: var(--fs-20);
}
@media (max-width: 48rem) {
  .l-article--event--header .title-box .notice-circle {
    font-size: var(--fs-18);
    flex-direction: row;
    gap: 1em;
  }
}
.l-article--event--header .text-read {
  font-size: var(--fs-24);
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
}
@media (max-width: 64rem) {
  .l-article--event--header .text-read {
    font-size: var(--fs-20);
  }
}
@media (max-width: 48rem) {
  .l-article--event--header .text-read {
    font-size: var(--fs-18);
    margin-top: 0.7rem;
  }
}
.l-article--event--header .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  font-size: var(--fs-24);
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  font-feature-settings: "palt";
}
@media (max-width: 30rem) {
  .l-article--event--header .tag-list {
    font-size: var(--fs-20);
  }
}
.l-article--event--header .tag-list li {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.l-article--event--header .tag-list li:before {
  content: "#";
  font-size: calc(var(--fs-18) * 1.3);
  line-height: 1;
}

.l-article--event--header.add-image {
  width: 100%;
  margin-right: calc(var(--space-inner-pading) * -1);
}
@media (max-width: 64rem) {
  .l-article--event--header.add-image {
    margin-right: 0;
  }
}
.l-article--event--header.add-image .l-article--event--header--inner {
  display: grid;
  grid-template-columns: 1fr clamp(25rem, -47.727rem + 113.636vw, 37.5rem);
  gap: 2rem;
}
@media (max-width: 64rem) {
  .l-article--event--header.add-image .l-article--event--header--inner {
    display: flex;
    flex-direction: column;
    max-width: 44rem;
    margin: 0 auto;
  }
}
.l-article--event--header.add-image .image-item {
  aspect-ratio: 3/2;
  border-radius: 1rem 0 0 1rem;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 64rem) {
  .l-article--event--header.add-image .image-item {
    border-radius: 1rem;
    max-width: 30rem;
    margin: 0 auto;
  }
}

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

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

.l-article--event--details {
  margin-top: 1rem;
}
.l-article--event--details .details-list__item {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-feature-settings: "palt";
  font-variant-numeric: tabular-nums;
}
@media (max-width: 37.5rem) {
  .l-article--event--details .details-list__item {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
}
.l-article--event--details .details-list__item.one-line {
  align-items: center;
}
@media (max-width: 37.5rem) {
  .l-article--event--details .details-list__item.one-line {
    flex-direction: row;
  }
}
@media (max-width: 37.5rem) {
  .l-article--event--details .details-list__item.tb-margin-none {
    margin-bottom: 0;
  }
}
.l-article--event--details .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;
}
@media (max-width: 37.5rem) {
  .l-article--event--details .details-list__item--left {
    padding: 0.2rem 0;
  }
}
.l-article--event--details .details-list__item--right {
  display: flex;
  flex-direction: column;
}
.l-article--event--details .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) {
  .l-article--event--details .details-list__item--right .big {
    font-size: var(--fs-24);
  }
}
.l-article--event--details .details-list__item--right .middle {
  display: block;
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--fs-24);
}
@media (max-width: 30rem) {
  .l-article--event--details .details-list__item--right .middle {
    font-size: var(--fs-20);
  }
}
.l-article--event--details .details-list__item--right .small {
  display: block;
  font-weight: 600;
  line-height: 1.4;
  font-size: var(--fs-16);
}
@media (max-width: 30rem) {
  .l-article--event--details .details-list__item--right .small {
    font-size: var(--fs-14);
  }
}
.l-article--event--details .details-list__item--right.text-list {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  font-weight: 600;
  line-height: 1.2;
  font-size: var(--fs-24);
}
@media (max-width: 30rem) {
  .l-article--event--details .details-list__item--right.text-list {
    font-size: var(--fs-20);
  }
}
.l-article--event--details .details-list__item--right.text-list li {
  margin-left: 1em;
  padding-left: 1em;
  text-indent: -1em;
}
.l-article--event--details .details-list__item--right.text-list li:before {
  display: inline-block;
  content: "●";
  transform: scale(0.7);
  margin-right: 0.2em;
  margin-left: -0.2em;
}

.details-list__item--right.human-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.details-list__item--right.human-list .human-item {
  width: 11.25rem;
}
@media (max-width: 30rem) {
  .details-list__item--right.human-list .human-item {
    width: 10rem;
  }
}
.details-list__item--right.human-list .human-image {
  margin: 0;
  border-radius: 0.1rem;
  overflow: hidden;
}
.details-list__item--right.human-list .human-image img {
  display: block;
  width: 100%;
  height: auto;
}
.details-list__item--right.human-list .human-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.5rem;
  line-height: 1.3;
  font-weight: 500;
}
.details-list__item--right.human-list .human-text__position {
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
}
@media (max-width: 30rem) {
  .details-list__item--right.human-list .human-text__position {
    font-size: 0.65rem;
  }
}
.details-list__item--right.human-list .human-text__name {
  display: block;
  font-size: 1rem;
}
@media (max-width: 30rem) {
  .details-list__item--right.human-list .human-text__name {
    font-size: 0.9rem;
  }
}

.l-article--event--details .event-application {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 80%;
  background-color: #fff;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  margin-top: 2rem;
}
.l-article--event--details .event-application .event-application__title {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.3;
  font-size: var(--fs-24);
  color: var(--color--notice);
  font-weight: 600;
  padding-top: 1rem;
  border-bottom: 2px solid var(--color--notice);
  padding-bottom: 0.5em;
  font-feature-settings: "palt";
}
@media (max-width: 30rem) {
  .l-article--event--details .event-application .event-application__title {
    font-size: calc(var(--fs-24) * 0.85);
  }
}
.l-article--event--details .event-application .event-application__day {
  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) {
  .l-article--event--details .event-application .event-application__day {
    font-size: var(--fs-20);
  }
}
@media (max-width: 64rem) {
  .l-article--event--details .event-application {
    width: 100%;
  }
}
.l-article--event--details .event-application .application-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 30rem) {
  .l-article--event--details .event-application .application-list {
    margin: 1em -1rem 0 -1rem;
  }
}
.l-article--event--details .event-application .application-list .application-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  line-height: 1.3;
  background-color: var(--color--gray-bg);
  border-radius: 0.1rem;
}
@media (max-width: 35rem) {
  .l-article--event--details .event-application .application-list .application-list__item {
    padding: 1rem;
    width: 100%;
  }
}
.l-article--event--details .event-application .application-list .application-list__item--inner {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1em;
  align-items: flex-end;
}
@media (max-width: 35rem) {
  .l-article--event--details .event-application .application-list .application-list__item--inner {
    grid-template-columns: 7rem 1fr;
  }
}
.l-article--event--details .event-application .application-list .human-image {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 1.5rem;
}
.l-article--event--details .event-application .application-list .human-image img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-article--event--details .event-application .application-list .text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  height: 90%;
}
@media (max-width: 35rem) {
  .l-article--event--details .event-application .application-list .text-box {
    gap: 0;
    height: auto;
  }
}
@media (max-width: 35rem) {
  .l-article--event--details .event-application .application-list .text-box .btn__event-application {
    display: none;
  }
}
.l-article--event--details .event-application .application-list .u-place__center.sp-block {
  display: none;
}
@media (max-width: 35rem) {
  .l-article--event--details .event-application .application-list .u-place__center.sp-block {
    display: block;
  }
}
.l-article--event--details .event-application .application-list .human-text__position {
  display: block;
  font-size: var(--fs-14);
  font-weight: 600;
}
@media (max-width: 35rem) {
  .l-article--event--details .event-application .application-list .human-text__position {
    font-size: var(--fs-12);
  }
}
.l-article--event--details .event-application .application-list .human-text__name {
  display: block;
  font-size: var(--fs-24);
  font-weight: 600;
}
@media (max-width: 35rem) {
  .l-article--event--details .event-application .application-list .human-text__name {
    font-size: var(--fs-20);
  }
}
.l-article--event--details .event-application .emphasis-item {
  position: absolute;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: calc(var(--fs-20) + 0.8em);
  top: 0;
  left: 0;
  z-index: 5;
}
.l-article--event--details .event-application .emphasis-item .text {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color--notice);
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-18);
  padding-left: 0.5em;
  padding-right: 0.3em;
  height: 100%;
}
.l-article--event--details .event-application .emphasis-item .triangle-right {
  display: block;
  clip-path: polygon(0 100%, 0 0, 100% 0);
  background-color: var(--color--notice);
  height: 100%;
  width: 1rem;
  margin-left: -0.5px;
}
.l-article--event--details .event-application .time {
  margin-top: 0.5em;
  font-size: var(--fs-16);
  font-weight: 600;
  font-feature-settings: "palt";
  font-variant-numeric: tabular-nums;
}

#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--flier {
  position: absolute;
  top: 0;
  width: 22rem;
  right: 0;
}
@media (max-width: 75rem) {
  .l-article--event--flier {
    right: calc(var(--space-inner-pading) * -1);
    width: 21rem;
  }
}
@media (max-width: 64rem) {
  .l-article--event--flier {
    position: static;
    max-width: 15rem;
    width: 80%;
    margin: 0 auto;
    margin-top: 2rem;
  }
}
.l-article--event--flier .flier-image {
  border: 1px solid #000;
}
.l-article--event--flier .flier--text {
  position: absolute;
  top: -4.5rem;
  left: -2rem;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 11.5rem;
  height: 3rem;
  border-radius: 100vmax;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  transform: rotate(-8deg);
}
.l-article--event--flier .flier--text .triangle {
  position: absolute;
  bottom: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 64rem) {
  .l-article--event--flier .flier--text {
    position: static;
    transform: rotate(0);
    margin: 0 auto;
    margin-bottom: 1.5rem;
  }
}

.l-article--event .l-notice {
  line-height: 1.4;
  margin-top: 2rem;
}
@media (max-width: 64rem) {
  .l-article--event .l-notice {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.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: "※";
}

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

.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-access {
  position: relative;
}

.l-access__header {
  width: 100%;
  position: absolute;
  top: clamp(6.25rem, 4.733rem + 6.472vw, 12.5rem);
}

.l-access__header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: var(--space-xs);
}

.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 {
  color: var(--color--gold-text);
  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;
  color: var(--color--gold-text);
  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__inner {
  background-color: rgba(255, 255, 255, 0.7);
  padding-bottom: var(--space-contents);
}

.l-access__top {
  height: clamp(6.25rem, 4.733rem + 6.472vw, 12.5rem);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

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

.l-access__article {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}
@media (max-width: 87.5rem) {
  .l-access__article {
    padding: 0 var(--space-xs);
  }
}
@media (max-width: 64rem) {
  .l-access__article {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 87.5rem) {
  .l-access__article {
    padding: 0 var(--space-xs);
  }
}
@media (max-width: 48rem) {
  .l-access__article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.l-access__article:first-of-type {
  padding-top: clamp(4.75rem, 3.627rem + 4.79vw, 9.375rem);
}

.l-access__article .text-box {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.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;
  color: var(--color--blue--primary);
  text-decoration: underline;
}

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

.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: 400;
  font-feature-settings: "palt";
}

.l-access__article .access-details a {
  font-weight: 600;
  color: var(--color--blue--primary);
  text-decoration: underline;
}

.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;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9（高さ÷幅×100） */
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.naegi500_footer {
  width: 100%;
  background-color: var(--color--black);
  color: #fff;
  font-feature-settings: "palt";
}

.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-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--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-tb-block {
  display: none;
}
@media (max-width: 78.75rem) {
  .u-tb-block {
    display: block;
  }
}

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

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

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

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

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

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

/* 申し込みボタン */
.btn__event-application {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-18);
  border-radius: 100vmax;
  padding: 1em 2em;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ff4800, #ff4d00);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 0.5em 1em rgba(255, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  animation: applyPulse 2.2s ease-in-out infinite;
}

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

/* ホバー時は通常アニメーションより操作感を優先 */
.btn__event-application:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0.6em 1em rgba(255, 90, 0, 0.35);
  animation-play-state: paused;
}

/* クリック感 */
.btn__event-application:active {
  transform: translateY(0) scale(0.98);
}

/* フォーカス対応 */
.btn__event-application:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.35);
  outline-offset: 4px;
}

/* ゆるい鼓動アニメーション */
@keyframes applyPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0.6rem 1rem rgba(255, 90, 0, 0.28);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 1rem 1.5rem rgba(255, 90, 0, 0.42);
  }
}
/* 動きを減らしたいユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .btn__event-application {
    animation: none;
  }
}/*# sourceMappingURL=style.css.map */