/* setting */
/* ----- reset ----- */
*:where(:not(iframe, canvas, img, svg, video, svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

a {
  cursor: pointer;
}

/* ----- layout ----- */
body {
  font-size: 1rem;
  font-family: noto sans jp, sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.6;
  color: #251e1c;
  background: #E40013;
}
@media (width <= 767px) {
  body {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

@media (width >= 768px) {
  .pc {
    display: block !important;
  }
}
@media (width <= 767px) {
  .pc {
    display: none !important;
  }
}

@media (width >= 768px) {
  .sp {
    display: none !important;
  }
}
@media (width <= 767px) {
  .sp {
    display: block !important;
  }
}

.l-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: clip;
}

.l-wrap_inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ------------------------------------
   KV
  ------------------------------------- */
.kv_item {
  position: relative;
  z-index: -1;
}
.kv_item .catch-img {
  position: absolute;
  top: 1.8%;
  left: 0;
  z-index: 2;
  width: 99.9090909091%;
  height: auto;
}
@media (width <= 767px) {
  .kv_item .catch-img {
    top: 1.3%;
    left: -2.3%;
    width: 100%;
  }
}
.kv_item .pc {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 5px;
  text-align: center;
}
.kv_item .sp {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.mvimg {
  width: 100%;
  height: auto;
  margin-top: 1%;
}

.kv_notes {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  text-align: right;
}
@media (width <= 767px) {
  .kv_notes {
    display: none;
  }
}

/* ------------------------------------
   NAV
  ------------------------------------- */
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  padding-bottom: 28px;
  margin: 0 calc(50% - 50vw);
  pointer-events: none;
  background: #fff;
}
@media (500px <= width <= 767px) {
  nav {
    padding-bottom: 20px;
    margin-bottom: -30px;
  }
}
@media (width <= 767px) {
  nav {
    padding-bottom: 5px;
  }
}

.nav_item {
  position: relative;
  max-width: 1100px;
  padding: 40px 0 0;
  margin: 30px auto 0;
  pointer-events: all;
}
@media (width <= 767px) {
  .nav_item {
    position: relative;
    padding: 10px 0 5px;
    margin-top: 25px;
  }
}
.nav_item .nav_list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto;
}
@media (width <= 767px) {
  .nav_item .nav_list {
    width: 90%;
    margin: 0 auto;
  }
}
.nav_item .nav_list li {
  position: relative;
  padding: 0 22px;
}
@media (width <= 767px) {
  .nav_item .nav_list li {
    padding: 0 7px;
  }
}
@media (width <= 767px) {
  .nav_item .nav_list li:nth-of-type(1) {
    padding-left: 0;
  }
}
@media (width <= 767px) {
  .nav_item .nav_list li:nth-of-type(5) {
    padding-right: 0;
  }
}
@media (width <= 430px) {
  .nav_item .nav_list li:nth-of-type(2) {
    width: 100%;
  }
}
.nav_item .nav_list li::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 3px;
  height: clamp(20px, 6vw, 78px);
  content: "";
  background: #ee5965;
  transform: translateY(-50%);
}
@media (width <= 767px) {
  .nav_item .nav_list li::after {
    width: 2px;
  }
}
.nav_item .nav_list li:nth-of-type(5)::after {
  display: none;
}
.nav_item .nav_list li a {
  display: block;
}
.nav_item .nav_list li a.-close {
  pointer-events: none;
}
.nav_item .nav_a_list {
  max-width: 1100px;
  margin: 40px auto 0;
  background: #fff;
}
@media (width <= 767px) {
  .nav_item .nav_a_list {
    width: 90%;
    margin: 10px auto 0;
  }
}
.nav_item .nav_a_list .nav_a_inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (width <= 767px) {
  .nav_item .nav_a_list .nav_a_inner {
    gap: 5px;
  }
}
.nav_item .nav_a_list .nav_a_inner a {
  display: block;
  flex: 1;
  width: 33.3333333333%;
}
.nav_item .nav_a_list .nav_a_inner a img {
  width: 100%;
  padding: 0;
  margin: 0;
}
.nav_item .nav_a_list .nav_a_inner a.-close {
  pointer-events: none;
}

/* ------------------------------------
   section
  ------------------------------------- */
.comingsoon-area {
  position: relative;
  margin: 107px 0 80px;
}
@media (width <= 767px) {
  .comingsoon-area {
    margin: 50px 0 35px;
  }
}
.comingsoon-area .comingsoon_img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (width > 1100px) {
  .comingsoon-area .comingsoon_img {
    position: relative;
    left: 50%;
    display: block;
    width: 1160px;
    max-width: none;
    transform: translateX(-50%);
  }
}

.event-bg.sp {
  display: none !important;
}
@media (width <= 1100px) {
  .event-bg.sp {
    display: block !important;
    width: 90%;
    max-width: 598px;
    height: auto;
    margin: 0 auto;
  }
}

.header-title {
  text-align: center;
}
.header-title.-event {
  position: relative;
  padding: 95px 0 30px;
}
@media (width <= 767px) {
  .header-title.-event {
    padding: 30px 0;
  }
}
.header-title.-event::before, .header-title.-event::after {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  content: "";
  transform: translateY(-50%);
}
.header-title.-event::before {
  top: calc(50% + 27px);
  left: 2%;
  background: url("../img/deco-text.png") left center/245px auto no-repeat;
}
@media (width <= 768px) {
  .header-title.-event::before {
    background: none;
  }
}
.header-title.-event::after {
  top: calc(50% + 45px);
  right: 0;
  z-index: 1;
  background: url("../img/deco-car.png") right center/295px no-repeat;
}
@media (width <= 768px) {
  .header-title.-event::after {
    background: none;
  }
}

.header-title_img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.header-title_img.-events {
  max-width: 385px;
}
@media (width <= 767px) {
  .header-title_img.-events {
    width: 50%;
  }
}

.event-content-wrapper {
  position: relative;
  margin: 25px 0 60px;
  background: #fff;
  transition: all 0.3s ease;
}
@media (width <= 767px) {
  .event-content-wrapper {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.event-content-wrapper:hover {
  opacity: 0.9;
}
.event-content-wrapper.-mt0 {
  margin-top: 0;
}

.event-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding: 60px;
  font-weight: 600;
  color: #251e1c;
}
@media (width <= 767px) {
  .event-content {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    margin-top: -5px;
  }
}
.event-content a {
  display: block;
}
.event-content .event-heading {
  font-size: clamp(1.4rem, 0.824rem + 2.65vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}
@media (width <= 767px) {
  .event-content .event-heading {
    margin-bottom: 0;
  }
}
.event-content .event-image {
  width: 48%;
}
@media (width <= 767px) {
  .event-content .event-image {
    width: 100%;
  }
}
.event-content .event-image .copyright {
  font-size: 9px;
}
.event-content .event-info {
  width: 50%;
}
@media (width <= 767px) {
  .event-content .event-info {
    width: 100%;
    text-align: left;
  }
}
.event-content .event-info-header {
  font-size: clamp(1.6rem, 0.824rem + 3.31vw, 3.1rem);
  font-weight: 700;
  line-height: 1.1;
}
.event-content .event-info-header .-fs {
  font-size: 70%;
}
.event-content .event-info-date {
  margin-top: 35px;
}
@media (width <= 767px) {
  .event-content .event-info-date {
    margin: 15px 0;
  }
}
.event-content .event-info-date img {
  width: 100%;
}
.event-content .event-info-date img.-tanabata {
  width: 70%;
}
.event-content .event-info-place {
  margin-top: 35px;
  font-size: clamp(0.9rem, 0.434rem + 1.99vw, 1.8rem);
  line-height: 1.5;
}
.event-content .event-info-detail {
  margin-top: 25px;
  font-size: clamp(0.9rem, 0.434rem + 1.99vw, 1.8rem);
}
@media (width <= 767px) {
  .event-content .event-info-detail {
    margin-top: 10px;
  }
}
.event-content .event-info-caution {
  margin-top: 25px;
}
.event-content .event-info-caution ol {
  list-style: none;
  counter-reset: number;
}
.event-content .event-info-caution li {
  position: relative;
  padding-left: 1.2em;
}
@media (width <= 767px) {
  .event-content .event-info-caution li {
    font-size: 0.75rem;
  }
}
.event-content .event-info-caution li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  content: counter(number);
  counter-increment: number;
  border: 1px solid #000;
  border-radius: 50%;
}

.event-info-half {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
@media (width <= 767px) {
  .event-info-half {
    flex-direction: column;
  }
}
.event-info-half .event-content-wrapper {
  width: 48%;
  margin-top: 0;
}
@media (width <= 767px) {
  .event-info-half .event-content-wrapper {
    width: 100%;
  }
}
.event-info-half .event-content-half {
  padding: 60px;
  font-weight: 600;
  color: #251e1c;
  background: #fff;
}
@media (width <= 767px) {
  .event-info-half .event-content-half {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    margin-top: -5px;
  }
}
.event-info-half .event-info {
  width: 100%;
}
@media (width <= 767px) {
  .event-info-half .event-info {
    width: 100%;
    text-align: left;
  }
}
.event-info-half .event-info-header {
  margin-top: 25px;
  font-size: clamp(1.6rem, 1.083rem + 2.21vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
}
.event-info-half .event-info-date {
  margin-top: 35px;
}
@media (width <= 767px) {
  .event-info-half .event-info-date {
    margin: 15px 0;
  }
}
.event-info-half .event-info-date img {
  width: 100%;
}
.event-info-half .event-info-date.-mac img {
  width: 50%;
}
.event-info-half .event-info-place {
  margin-top: 35px;
  font-size: clamp(0.9rem, 0.434rem + 1.99vw, 1.8rem);
  line-height: 1.5;
}

#About {
  position: relative;
}

#About::before,
#About::after {
  content: "";
  display: block;
}

#About::before {
  position: relative;
  bottom: -2px;
  width: 100%;
  padding-top: 230px;
  background: url("../img/deco-about.png") calc(100% - 14px)/contain no-repeat;
}
@media (width <= 767px) {
  #About::before {
    display: none;
  }
}

#About::after {
  width: 160px;
  height: 266px;
  position: absolute;
  top: -30px;
  right: 25px;
  background: url("../img/deco-board.png") top right/100% auto no-repeat;
}
@media (width <= 767px) {
  #About::after {
    content: none;
  }
}

.about-container {
  padding: 50px 55px;
  color: #fff;
  text-align: center;
  border: #fff 4px solid;
}
@media (width <= 767px) {
  .about-container {
    padding: 8% 5% 7%;
    border-width: 2px;
  }
}
.about-container .header-title {
  margin-bottom: 50px;
}
@media (width <= 767px) {
  .about-container .header-title {
    margin-bottom: 20px;
  }
}
.about-container .header-title img {
  width: 100%;
  max-width: 669px;
  height: auto;
  margin: 0 auto;
}
@media (width <= 767px) {
  .about-container .header-title img {
    width: 95%;
  }
}

.about-para {
  font-size: 1.6875rem;
  margin-bottom: 50px;
  line-height: 2;
  letter-spacing: 0.8px;
}
@media (width <= 767px) {
  .about-para {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.about-para span {
  display: block;
}

.about-profile {
  display: flex;
  justify-content: space-between;
  gap: 0 25px;
}
@media (width <= 767px) {
  .about-profile {
    flex-direction: column;
    align-items: center;
    padding-top: 5px;
  }
}

.profile-img {
  width: 100%;
  max-width: clamp(220px, 28vw, 320px);
  max-height: clamp(220px, 28vw, 320px);
  aspect-ratio: 1/1;
}
@media (width <= 767px) {
  .profile-img {
    width: 60%;
  }
}

.prof-info {
  width: clamp(16.875rem, 1.83rem + 64.2vw, 41.25rem);
}
@media (width <= 767px) {
  .prof-info {
    width: 100%;
  }
}

.prof-name {
  width: 100%;
  max-width: 246px;
  height: auto;
  margin-bottom: 40px;
}
@media (width <= 767px) {
  .prof-name {
    width: 50%;
    margin: 15px auto 25px;
  }
}

.prof-para {
  font-size: clamp(1rem, -0.446rem + 2.69vw, 1.4375rem);
  line-height: 1.65;
  text-align: justify;
}
@media (width <= 767px) {
  .prof-para {
    text-align: center;
    font-size: 1rem;
  }
}
.prof-para span {
  display: block;
}

.prof-link {
  margin-top: clamp(15px, 1.7vw, 25px);
  font-size: clamp(0.688rem, -1.074rem + 3.67vw, 1.438rem);
  text-align: justify;
}
@media (width <= 767px) {
  .prof-link {
    margin-top: 20px;
    font-size: 1.125rem;
  }
}
.prof-link ul {
  display: flex;
  flex-wrap: wrap;
}
@media (width <= 767px) {
  .prof-link ul {
    width: 75%;
    margin: 0 auto;
    justify-content: center;
  }
}
.prof-link ul li {
  position: relative;
}
.prof-link ul li::after {
  display: inline-block;
  margin: 0 0.5em 0 0.3em;
  content: "/";
}
@media (width <= 767px) {
  .prof-link ul li::after {
    content: "";
  }
}
.prof-link ul li:nth-last-of-type(1)::after {
  display: none;
}
.prof-link .link-anker {
  color: #f4da62;
}

/* -------------------------------
  footer
------------------------------- */
.footer {
  padding: 230px 0 120px;
  color: #fff;
  text-align: center;
}
@media (width <= 767px) {
  .footer {
    padding: 90px 0 100px;
  }
}
.footer .notes {
  font-size: 1.25rem;
  margin-bottom: 150px;
  font-weight: 400;
}
@media (width <= 767px) {
  .footer .notes {
    font-size: 0.8125rem;
    margin-bottom: 110px;
  }
}
.footer .notes span {
  display: inline-block;
}
@media (width <= 767px) {
  .footer .notes span {
    display: block;
  }
}
.footer .notes .address {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
@media (width <= 767px) {
  .footer .notes .address {
    font-size: 0.8125rem;
  }
}
.footer a {
  display: block;
  width: 40%;
  margin: 0 auto 30px;
}
@media (width <= 767px) {
  .footer a {
    width: 60%;
    margin: 0 auto 1.5em;
  }
}
.footer small {
  font-size: 0.75rem;
  font-weight: 400;
}
@media (width <= 767px) {
  .footer small {
    font-size: 0.625rem;
  }
}

/* -------------------------------
  js-top
------------------------------- */
.js-top {
  position: fixed;
  right: 1em;
  bottom: 2em;
  z-index: 999;
}
@media (width <= 900px) {
  .js-top {
    right: 0.5em;
  }
}
.js-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #fff;
  border-radius: 50%;
}
@media (width <= 767px) {
  .js-top a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.js-top a:hover {
  opacity: 0.8;
}
.js-top a::before {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-top: 15px;
  content: "";
  border-top: 4px solid #251e1c;
  border-right: 4px solid #251e1c;
  transform: rotate(-45deg);
}
@media (width <= 767px) {
  .js-top a::before {
    width: 15px;
    height: 15px;
    margin-top: 8px;
    border-top: 2px solid #251e1c;
    border-right: 2px solid #251e1c;
  }
}/*# sourceMappingURL=style.css.map */