@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/********************************
* モバイルファースト
********************************/
/********************************
* em ベース
********************************/
/*
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
html {
  font-size: 62.5%;
}
@media (min-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 600px) {
  html {
    font-size: 62.5%;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: 100%;
}

.tab-br {
  display: none;
}
@media (min-width: 768px) {
  .tab-br {
    display: block;
  }
}

.sp-br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

/**
* 画像の幅指定
* remで指定すれば、emに書いた内容と連動する
*/
.header {
  position: relative;
  z-index: 1000;
  pointer-events: none;
}
.header__inner {
  display: none;
}
@media (min-width: 768px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 3rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
  }
}
.header__logo {
  position: relative;
  pointer-events: all;
  z-index: 2000;
}
.header__logo img {
  max-width: 50rem;
  width: 100%;
}
.header__nav {
  max-width: 44rem;
  width: 100%;
  margin-left: auto;
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__nav-item {
  font-size: 1.4rem;
  margin: 0 0 0 0.8rem;
}
.header__nav-item:nth-child(2) {
  padding-left: 4rem;
}
.header__nav-item:nth-child(3) {
  padding-left: 3rem;
}
.header__nav-item:nth-child(4) {
  padding-left: 1.7rem;
}
.header__btn {
  background-color: #887cb2;
  margin-right: 1.8rem;
  padding: 1.6rem 3rem;
  border-radius: 50px;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-block;
}
.header__nav, .header__btn {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav, .header__btn {
    display: block;
  }
}
.header .header__hamburger {
  position: relative;
  width: 36px;
  height: 20px;
  cursor: pointer;
  z-index: 2000;
}
@media (min-width: 1200px) {
  .header .header__hamburger {
    display: none;
  }
}
.header .header__hamburger-line {
  display: block;
  width: 6rem;
  height: 1px;
  background-color: #000;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: rotate(30deg) translate(5px, 3px);
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  width: 83%;
  transform: rotate(-33deg) translate(5px, -4px);
}

.hamburger-nav {
  position: relative;
  pointer-events: auto;
  display: block;
}
@media (min-width: 1200px) {
  .hamburger-nav {
    display: none;
  }
}
.hamburger-nav__menu {
  position: fixed;
  inset: 0;
  background: #fcfcfc;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  font-size: 16px;
  font-weight: bold;
  padding-top: 17rem;
  text-align: center;
  z-index: 500;
  height: 100vh;
  overflow-y: auto;
}
.hamburger-nav__menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding-top: 17rem;
  margin: 0 auto;
}
.hamburger-nav__menu-container {
  width: 100%;
}
.hamburger-nav__menu-item a {
  display: block;
  padding-bottom: 5rem;
}
.hamburger-nav__menu-item a:last-child {
  padding-bottom: 5rem;
}
.hamburger-nav__cta {
  margin: 3.5rem 0 6.5rem;
}
.hamburger-nav__cta-btn {
  background-color: #fcfcfc;
  display: block;
  width: 62rem;
  border-radius: 50px;
  padding: 3.5rem;
  margin: 0 auto;
  color: #fff;
}

.header__nav,
.header__cta,
.header__hamburger,
.hamburger-nav {
  display: none;
}

/********************************
* footer
********************************/
.footer {
  background-color: #0d3387;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  background-image: url("../img/svg/ashirai-dark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -8%;
  left: 0;
  z-index: -1;
}
@media (min-width: 1200px) {
  .footer::before {
    top: -23%;
  }
}
.footer__container {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.footer__logo {
  margin-bottom: 3.6rem;
}
@media (min-width: 1200px) {
  .footer__logo {
    margin: -1rem 0 3.6rem;
  }
}
.footer__logo img {
  max-width: 20rem;
  width: 100%;
}
@media (min-width: 1200px) {
  .footer__logo img {
    max-width: 22rem;
  }
}
.footer__info {
  font-size: 1.2rem;
  font-size: clamp(12px, 2vw, 16px);
  color: #fff;
  margin-bottom: 3.2rem;
}
@media (min-width: 1200px) {
  .footer__info {
    margin-bottom: 7.2rem;
  }
}
.footer__organizer {
  margin-bottom: 1.4rem;
}
.footer__contact {
  line-height: 1.8;
}
.footer__contact-text {
  margin-bottom: 0.8rem;
}
.footer__copyright {
  color: #8699c3;
  font-size: 1.2rem;
  max-width: 33rem;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 1200px) {
  .footer__copyright {
    max-width: 42rem;
  }
}

/********************************
* 共通項目
********************************/
.component-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
@media (min-width: 1200px) {
  .component-link-wrap {
    max-width: 37rem;
    gap: 2rem;
  }
}
.component-link__content {
  max-width: 29rem;
  background-color: #0d3387;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .component-link__content {
    max-width: 40rem;
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .component-link__content {
    max-width: 37rem;
    margin-right: auto;
    padding: 1.7rem 0;
  }
}
.component-link__deadline {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
  letter-spacing: 0.3px;
  color: #e8374a;
}

/********************************
* hero
********************************/
.hero {
  position: relative;
  background-color: #ffd700;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero__img .sp {
    display: none;
  }
}
.hero__img .pc {
  display: none;
}
@media (min-width: 768px) {
  .hero__img .pc {
    display: block;
  }
}
@media (min-width: 768px) {
  .hero__img img {
    display: block;
    max-width: 149rem;
    width: 100%;
    margin: 0 auto;
    padding: 9rem 4rem 0;
  }
}

/********************************
* about
********************************/
.about {
  position: relative;
  background-color: #00ade9;
  height: 100%;
  text-align: center;
  color: #0d3387;
  padding-top: 4rem;
  z-index: 1;
}
@media (min-width: 1200px) {
  .about {
    padding-top: 5rem;
    margin-top: -6.8rem;
  }
}
.about::before {
  content: "";
  background-image: url("../img/svg/ashirai-light.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(0, -2.7%);
  z-index: -1;
}
@media (min-width: 500px) {
  .about::before {
    transform: translate(0, -5.7%);
  }
}
@media (min-width: 768px) {
  .about::before {
    transform: translate(0, -7.2%);
  }
}
.about__container {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .about__container {
    max-width: 128rem;
    margin-bottom: 7.6rem;
  }
}
.about__main-title, .about__sub-title, .about__text {
  color: #fff;
}
.about__sub-title {
  display: block;
  font-size: clamp(16px, 3vw, 24px);
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .about__sub-title {
    margin-bottom: 1.8rem;
  }
}
.about__main-title {
  max-width: 60rem;
  width: 100%;
  padding: 0 2.5rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 1200px) {
  .about__main-title {
    max-width: 80rem;
    margin-bottom: 2.8rem;
    font-size: 5rem;
    font-weight: bold;
  }
}
.about__title-wrap--sp {
  display: block;
}
@media (min-width: 1200px) {
  .about__title-wrap--sp {
    display: none;
  }
}
.about__title-wrap--pc {
  display: none;
  position: relative;
}
@media (min-width: 1200px) {
  .about__title-wrap--pc {
    display: block;
  }
}
.about__title-wrap--pc img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(83%, -32%);
  width: 17.1rem;
  height: 17.1rem;
}
.about__text-wrap {
  line-height: 1.6;
  margin-bottom: 9.5rem;
  padding: 0 2.5rem;
}
@media (min-width: 1200px) {
  .about__text-wrap {
    margin-bottom: 10.2rem;
  }
}
.about__text-wrap .about__text {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 2;
}
.about__text-wrap .about__text:last-child {
  margin-bottom: 0;
}
.about__content-wrap {
  padding: 0 2.5rem 4.6rem;
}
@media (min-width: 768px) {
  .about__content-wrap {
    padding: 0 4rem 4rem;
  }
}
.about__content-wrap--light-blue {
  background-color: #54c3f1;
  padding: 4.4rem 2.5rem 7.8rem;
}
@media (min-width: 1200px) {
  .about__content-wrap--light-blue {
    padding: 11rem 2.5rem 17.8rem;
  }
}
.about__content-wrap .food-festival,
.about__content-wrap .hamayaki {
  background-color: #fff;
  border-radius: min(5.33vw, 20px);
}
.about__content-wrap .food-festival {
  position: relative;
  padding: 0 2rem;
  max-width: 60rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about__content-wrap .food-festival {
    max-width: 86rem;
    padding: 0 4rem;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival {
    max-width: 100%;
    padding: 0 9rem;
  }
}
.about__content-wrap .food-festival::before {
  content: "";
  background-image: url("../img/chef-salad.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 29rem;
  width: 100%;
  height: 13.9rem;
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival::before {
    left: 33.4%;
    transform: translate(-50%, -27%);
    max-width: 62.1rem;
    height: 24rem;
  }
}
.about__content-wrap .food-festival__inner--sp {
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__inner--sp {
    display: none;
  }
}
.about__content-wrap .food-festival__inner--pc {
  display: none;
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__inner--pc {
    display: block;
  }
  .about__content-wrap .food-festival__inner--pc .food-festival__content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__top-wrap {
    max-width: min(48.2vw, 560px);
    margin-top: 16.8rem;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__bottom-wrap {
    max-width: 41rem;
    margin-top: 2rem;
  }
}
.about__content-wrap .food-festival__content {
  padding: 6rem 0 4rem;
}
@media (min-width: 768px) {
  .about__content-wrap .food-festival__content {
    padding: 6rem 0 3.5rem;
  }
}
.about__content-wrap .food-festival__header, .about__content-wrap .food-festival__profile, .about__content-wrap .food-festival__description {
  text-align: left;
}
.about__content-wrap .food-festival__developer {
  margin-bottom: 1.4rem;
}
.about__content-wrap .food-festival__title, .about__content-wrap .food-festival__name, .about__content-wrap .food-festival__chef-career-title {
  font-weight: bold;
}
.about__content-wrap .food-festival__header {
  margin-bottom: 1.4rem;
}
@media (min-width: 768px) {
  .about__content-wrap .food-festival__header {
    margin-bottom: 3rem;
  }
}
.about__content-wrap .food-festival__title {
  font-size: clamp(18px, 3vw, 32px);
  padding-bottom: 0.8rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid #8699c3;
  text-align: center;
}
@media (min-width: 768px) {
  .about__content-wrap .food-festival__title {
    margin-bottom: 2.4rem;
    padding-bottom: 1.2rem;
  }
}
.about__content-wrap .food-festival__name {
  font-size: clamp(22px, 3vw, 38px);
}
.about__content-wrap .food-festival__role {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #0d3387;
  font-size: clamp(10px, 2vw, 13px);
  color: #fff;
  text-align: center;
  width: 3.5em;
  height: 3.5em;
  border-radius: 50px;
}
@media (min-width: 768px) {
  .about__content-wrap .food-festival__role {
    width: 6rem;
    height: 6rem;
  }
}
.about__content-wrap .food-festival__developer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about__content-wrap .food-festival__developer {
    max-width: 25rem;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__developer {
    max-width: 28rem;
  }
}
.about__content-wrap .food-festival__chef-img {
  max-width: min(48.7vw, 158px);
  margin: 0 auto 2.2rem;
  position: relative;
}
@media (min-width: 600px) {
  .about__content-wrap .food-festival__chef-img {
    max-width: min(34.5vw, 265px);
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__chef-img {
    max-width: min(19.8vw, 230px);
    height: min(22.4vw, 260px);
    margin: 0 auto 3.4rem;
  }
}
.about__content-wrap .food-festival__chef-img::after {
  content: "";
  background-image: url("../img/soccer.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 107%;
  transform: translate(15%, 50%);
  max-width: 3.3rem;
  width: 100%;
  height: 3.3rem;
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__chef-img::after {
    max-width: 6rem;
    height: 6rem;
    left: 118%;
    transform: translate(15%, 33%);
  }
}
.about__content-wrap .food-festival__chef-img img {
  width: 100%;
  height: 100%;
}
.about__content-wrap .food-festival__chef-title-wrap, .about__content-wrap .food-festival__chef-career-wrap {
  line-height: 1.4;
}
.about__content-wrap .food-festival__chef-career-wrap {
  border-bottom: 1px solid #8699c3;
  padding-bottom: 1.6rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .about__content-wrap .food-festival__chef-career-wrap {
    padding-bottom: 2.6rem;
    margin-bottom: 2.2rem;
  }
}
.about__content-wrap .food-festival__chef-title-wrap {
  margin-bottom: 1.2rem;
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__chef-title-wrap {
    margin-bottom: 1.8rem;
  }
}
.about__content-wrap .food-festival__chef-career-title {
  font-size: clamp(16px, 3vw, 24px);
  margin-bottom: 1.3rem;
}
.about__content-wrap .food-festival__chef-career__description {
  font-size: clamp(10px, 3vw, 14px);
  border-bottom: 1px solid #8699c3;
  padding-bottom: 1rem;
  letter-spacing: -1.9px;
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__chef-career__description {
    padding-bottom: 1.7rem;
    line-height: 1.6;
  }
}
.about__content-wrap .food-festival__chef-career-list, .about__content-wrap .food-festival__chef-career-list-title {
  font-size: clamp(10px, 2vw, 14px);
}
.about__content-wrap .food-festival__chef-career-list-title {
  font-weight: bold;
}
.about__content-wrap .food-festival__chef-career-list {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  text-align: left;
  line-height: 1.6;
}
@media (min-width: 500px) {
  .about__content-wrap .food-festival__chef-career-list {
    grid-template-columns: 4rem 1fr;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__chef-career-list {
    grid-template-columns: 4rem 1fr;
  }
}
.about__content-wrap .food-festival__chef-career-list-space {
  letter-spacing: -1px;
}
.about__content-wrap .food-festival__chef-career-list dt {
  font-weight: bold;
}
.about__content-wrap .food-festival__chef-career-list dt:first-of-type,
.about__content-wrap .food-festival__chef-career-list dd:first-of-type {
  padding-top: 0;
}
.about__content-wrap .food-festival__chef-career-list dd p {
  margin-bottom: 1rem;
}
.about__content-wrap .food-festival__chef-career-list dd p:last-child {
  margin-bottom: 0;
}
.about__content-wrap .food-festival__dish-img {
  margin-bottom: 2.9rem;
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__dish-img {
    margin-bottom: 2.5rem;
  }
}
.about__content-wrap .food-festival__description {
  font-size: clamp(12px, 3vw, 20px);
  line-height: 1.4;
  margin-bottom: 1.7rem;
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__description {
    line-height: 1.8;
    margin-bottom: 2.7rem;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__ticket-link {
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .food-festival__deadline {
    font-size: clamp(10px, 2vw, 19px);
  }
}
.about__content-wrap .hamayaki {
  text-align: left;
  margin-bottom: 2rem;
  padding: 0 2rem;
}
@media (min-width: 500px) {
  .about__content-wrap .hamayaki {
    padding: 0 4rem;
    max-width: 60rem;
    margin: 0 auto 2rem;
    padding: 1rem 6rem 0;
  }
}
@media (min-width: 768px) {
  .about__content-wrap .hamayaki {
    max-width: 86rem;
    margin: 0 auto 2rem;
    padding: 1rem 4rem;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .hamayaki {
    margin: 0 auto 4.1rem;
    max-width: 120rem;
  }
}
.about__content-wrap .hamayaki__inner {
  padding: 3.3rem 0 1.8rem;
}
.about__content-wrap .hamayaki__content {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about__content-wrap .hamayaki__content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .about__content-wrap .hamayaki__title-wrap {
    margin-top: 2rem;
  }
}
.about__content-wrap .hamayaki__title {
  font-size: clamp(16px, 3vw, 22px);
  line-height: 1.6;
  margin-bottom: 0.7rem;
}
@media (min-width: 768px) {
  .about__content-wrap .hamayaki__title {
    margin-bottom: 1.8rem;
  }
}
.about__content-wrap .hamayaki__title-large {
  display: inline-block;
  font-size: clamp(35px, 3vw, 42px);
  font-weight: 500;
  margin-bottom: 1.3rem;
  letter-spacing: -1.5px;
}
@media (min-width: 1200px) {
  .about__content-wrap .hamayaki__title-large {
    margin-bottom: 5rem;
  }
}
.about__content-wrap .hamayaki__title-text {
  font-size: clamp(12px, 3vw, 16px);
  line-height: 1.6;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .about__content-wrap .hamayaki__title-text {
    margin-bottom: 5rem;
  }
}
.about__content-wrap .hamayaki__other-text {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  text-align: right;
}
@media (min-width: 768px) {
  .about__content-wrap .hamayaki__action {
    max-width: 37rem;
  }
}
.about__content-wrap .hamayaki__img {
  margin: -1rem 0 1.3rem;
}
.about__content-wrap .hamayaki__img img {
  display: block;
  max-width: 30.9rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about__content-wrap .hamayaki__img img {
    max-width: 47.7rem;
  }
}
.about__content-wrap .hamayaki__ticket-link {
  margin-bottom: 2.8rem;
}
.about__content-wrap .hamayaki__deadline {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .about__content-wrap .hamayaki__deadline {
    font-size: 1.9rem;
  }
}
.about__content-wrap .event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  margin-bottom: 2.7rem;
}
@media (min-width: 500px) {
  .about__content-wrap .event-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 60rem;
    margin: 0 auto 6rem;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .about__content-wrap .event-grid {
    max-width: 86rem;
    margin: 0 auto 6rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .about__content-wrap .event-grid {
    max-width: 120rem;
    gap: 4rem;
  }
}
.about__content-wrap .event-grid .event-card__img-sp {
  display: block;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .about__content-wrap .event-grid .event-card__img-sp {
    display: none;
  }
}
.about__content-wrap .event-grid .event-card__img-pc {
  display: none;
}
@media (min-width: 768px) {
  .about__content-wrap .event-grid .event-card__img-pc {
    display: block;
  }
}
.about__content-wrap .event-grid .event-card img {
  width: 100%;
}
@media (min-width: 768px) {
  .about__content-wrap .event-grid .event-card--kitchen {
    display: block;
    position: relative;
  }
  .about__content-wrap .event-grid .event-card--kitchen::after {
    content: "";
    background-image: url(../img/svg/kitchencar-pc-ashirai.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 85%;
    width: min(9.74vw, 113px);
    height: min(12.9vw, 150px);
    z-index: 1;
  }
}
.about__footer {
  position: relative;
  text-align: center;
}
.about__footerText {
  display: inline-block;
  font-size: clamp(18px, 3vw, 46px);
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  padding: 0 2rem;
}
@media (min-width: 1200px) {
  .about__footerText {
    padding: 0 8rem;
  }
}
.about__footerText::before, .about__footerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  transform: rotate(-50deg);
}
@media (min-width: 1200px) {
  .about__footerText::before, .about__footerText::after {
    width: 6rem;
  }
}
.about__footerText::before {
  left: -2.8%;
  transform: rotate(50deg);
}
@media (min-width: 1200px) {
  .about__footerText::before {
    left: 0.2%;
  }
}
.about__footerText::after {
  right: -2.5%;
}
@media (min-width: 1200px) {
  .about__footerText::after {
    right: 2.5%;
  }
}

/********************************
* stage-event
********************************/
.stage-event {
  background-color: #0d3387;
  text-align: center;
  /**** ステージコンテンツ ******/
  /******** アートイベント *********/
}
@media (min-width: 1200px) {
  .stage-event {
    padding: 9.2rem 0 12.7rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__container {
    max-width: 128rem;
    width: 100%;
    padding: 0 4rem;
    margin: 0 auto;
  }
}
.stage-event__title-wrap {
  color: #fff;
  padding-top: 6.7rem;
  margin-bottom: 3.7rem;
}
@media (min-width: 1200px) {
  .stage-event__title-wrap {
    padding-top: 7.7rem;
    margin-bottom: 5.7rem;
  }
}
.stage-event__main-title {
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 600;
  margin-bottom: 1.8rem;
}
@media (min-width: 768px) {
  .stage-event__main-title {
    margin-bottom: 2.4rem;
  }
}
.stage-event__sub-title {
  display: block;
  margin-bottom: 1rem;
  font-size: clamp(16px, 3vw, 24px);
}
@media (min-width: 1200px) {
  .stage-event__sub-title {
    margin-bottom: 1.5rem;
  }
}
.stage-event__title-text {
  font-size: clamp(14px, 2vw, 20px);
  border: 1px dotted #fff;
  border-radius: 50px;
  max-width: 27.1rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.4rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .stage-event__title-text {
    max-width: 60rem;
    padding: 0.8rem 0;
  }
}
.stage-event__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 2.5rem;
  margin-bottom: 8.1rem;
}
@media (min-width: 500px) {
  .stage-event__content {
    max-width: 60rem;
    margin: 0 auto 6rem;
  }
}
@media (min-width: 768px) {
  .stage-event__content {
    max-width: 86rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__content {
    max-width: 120rem;
    padding: 0;
    margin-bottom: 12rem;
    gap: 4rem;
  }
}
.stage-event__content-item {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.7rem 3.5rem;
  background-color: #00ade9;
  color: #fff;
  border-radius: min(5.33vw, 20px);
}
.stage-event__content-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 480px) {
  .stage-event__content-item {
    padding: 4rem;
  }
}
@media (min-width: 768px) {
  .stage-event__content-item {
    padding: 8rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__content-item {
    flex-direction: row;
    justify-content: space-between;
    padding: 6rem 12.6rem 6.7rem 11.6rem;
  }
}
.stage-event__content-item--host {
  background-color: #fff;
  color: #0d3387;
  padding: 3rem 1.7rem 1.7rem;
}
@media (min-width: 480px) {
  .stage-event__content-item--host {
    padding: 4rem;
  }
}
@media (min-width: 768px) {
  .stage-event__content-item--host {
    padding: 7rem 12rem 5rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__info {
    max-width: 50rem;
  }
}
.stage-event__header {
  display: flex;
  text-align: left;
  flex-direction: column;
  border-bottom: 1px solid #fff;
  margin-bottom: 1.4rem;
}
@media (min-width: 1200px) {
  .stage-event__header {
    align-items: center;
    flex-direction: column;
    padding-bottom: 3rem;
    margin-bottom: 2.4rem;
  }
}
.stage-event__header--host {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0;
  margin-bottom: 1.7rem;
  border-top: 1px solid #0d3387;
  border-bottom: 1px solid #0d3387;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .stage-event__header--host {
    padding: 2rem 0;
    margin-bottom: 2.2rem;
    gap: 2.6rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__header--event {
    align-items: flex-start;
    gap: 2rem;
  }
}
.stage-event__header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0 1.4rem 0.8rem;
}
@media (min-width: 768px) {
  .stage-event__header-top {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__header-top {
    margin-top: -0.5rem;
    padding: 0 0 0 0.4rem;
  }
}
.stage-event__label {
  display: block;
  font-size: clamp(13px, 2vw, 20px);
}
.stage-event__label--host {
  font-size: clamp(12px, 3vw, 20px);
}
.stage-event__host-name {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: bold;
}
.stage-event__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: bold;
}
@media (min-width: 1200px) {
  .stage-event__title {
    padding-right: 0.8rem;
    line-height: 1.5;
  }
}
.stage-event__time {
  font-size: 1.8rem;
}
.stage-event__description {
  text-align: left;
  margin: 0 0 1.9rem;
}
.stage-event__description p {
  font-size: clamp(12px, 3vw, 16px);
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .stage-event__description p {
    line-height: 1.85;
  }
}
.stage-event__description p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .stage-event__media {
    max-width: min(32.7vw, 38rem);
    height: min(25vw, 29rem);
  }
}
.stage-event__media img {
  width: 100%;
}
@media (min-width: 1200px) {
  .stage-event__media img {
    max-width: 38rem;
    width: 100%;
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__media--img {
    height: min(20.6vw, 24rem);
    width: 100%;
  }
}
.stage-event__art-event {
  padding: 0 2.5rem 7rem;
}
@media (min-width: 500px) {
  .stage-event__art-event {
    max-width: 60rem;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .stage-event__art-event {
    max-width: 86rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__art-event {
    max-width: 120rem;
    padding: 0 0 7rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__art-event__container {
    max-width: 120rem;
  }
}
.stage-event__art-event__title-wrap {
  color: #fff;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  .stage-event__art-event__title-wrap {
    margin-bottom: 4.2rem;
  }
}
.stage-event__art-event__main-title {
  font-size: clamp(36px, 5vw, 50px);
  margin-bottom: 1rem;
}
.stage-event__art-event__sub-title {
  display: block;
  font-size: clamp(16px, 3vw, 24px);
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .stage-event__art-event__sub-title {
    margin-bottom: 0.6rem;
  }
}
.stage-event__art-event__period {
  width: 100%;
  margin-bottom: 4rem;
}
.stage-event__art-event__period-content {
  font-size: clamp(16px, 3vw, 24px);
  color: #fff;
  text-align: center;
}
.stage-event__art-event__period-title {
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.stage-event__art-event__period-date {
  font-weight: bold;
  margin-bottom: 10px;
}
.stage-event__art-event__period-time {
  font-weight: bold;
}
@media (min-width: 768px) {
  .stage-event__art-event__period-content {
    max-width: 55rem;
    display: flex;
    padding: 0;
    margin: 0 auto;
  }
}
.stage-event__art-event__period-title, .stage-event__art-event__period-date {
  font-size: clamp(16px, 3vw, 24px);
}
.stage-event__art-event__period-title {
  margin-bottom: 1.2rem;
}
@media (min-width: 1200px) {
  .stage-event__art-event__period-title {
    margin: 0;
  }
}
.stage-event__art-event__content-wrap {
  background-color: #fff;
  border-radius: min(5.33vw, 20px);
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-wrap {
    max-width: 128rem;
    padding: 0 11.8rem;
  }
}
.stage-event__art-event__content-inner {
  padding: 3rem 1.7rem 1.7rem;
}
@media (min-width: 480px) {
  .stage-event__art-event__content-inner {
    padding: 4rem;
  }
}
@media (min-width: 768px) {
  .stage-event__art-event__content-inner {
    padding: 8rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-inner {
    padding: 7.2rem 0 8.2rem;
  }
}
.stage-event__art-event__content-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1.7rem;
  border-top: 1px solid #5670ab;
  border-bottom: 1px solid #5670ab;
}
@media (min-width: 768px) {
  .stage-event__art-event__content-title {
    margin-bottom: 3.7rem;
  }
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-title {
    padding: 1.6rem 0 1.4rem 2.7rem;
    gap: 4.3rem;
  }
}
.stage-event__art-event__content-title-wrap {
  text-align: left;
  padding-left: 0.6rem;
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-title-wrap {
    display: flex;
  }
}
.stage-event__art-event__content-title-left, .stage-event__art-event__content-title-right {
  display: inline-flex;
  align-items: center;
  color: #0d3387;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-title-left, .stage-event__art-event__content-title-right {
    align-items: baseline;
    gap: 1.3rem;
  }
}
.stage-event__art-event__content-title-left {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-title-left {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-title-right {
    margin-left: 3.2rem;
  }
}
.stage-event__art-event__content-title-text {
  font-size: clamp(13px, 3vw, 23px);
  letter-spacing: -0.5px;
  font-weight: bold;
}
.stage-event__art-event__content-title-text--sub {
  font-size: clamp(10px, 2vw, 20px);
  font-weight: 700;
}
.stage-event__art-event__content-title-free {
  background-color: #0d3387;
  font-size: clamp(13px, 2vw, 20px);
  color: #fff;
  width: 13.5rem;
  padding: 0.6rem 0;
  border-radius: 50px;
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-title-free {
    width: 12.5rem;
    padding: 0.8rem 0;
  }
}
.stage-event__art-event__content-item-img {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 1200px) {
  .stage-event__art-event__content-item-img {
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 2.6rem;
  }
}
.stage-event__art-event__contact {
  font-size: clamp(12px, 2vw, 14px);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}
@media (min-width: 1200px) {
  .stage-event__art-event__contact {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
  }
}
.stage-event__art-event__action {
  margin: 0 auto;
}

/********************************
* sightseeing
********************************/
.sightseeing {
  background-color: #fffae6;
  padding: 5.8rem 2.5rem 9rem;
}
@media (min-width: 1200px) {
  .sightseeing {
    padding: 17.5rem 0;
  }
}
.sightseeing__container {
  color: #0d3387;
}
@media (min-width: 500px) {
  .sightseeing__container {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 2.5rem;
  }
}
@media (min-width: 768px) {
  .sightseeing__container {
    max-width: 86rem;
  }
}
@media (min-width: 1200px) {
  .sightseeing__container {
    max-width: 128rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem 12rem;
  }
}
.sightseeing__content-wrap {
  background-color: #fff;
  border-radius: min(6.66vw, 25px);
  padding: 6rem 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 480px) {
  .sightseeing__content-wrap {
    padding: 4rem;
  }
}
@media (min-width: 1200px) {
  .sightseeing__content-wrap {
    padding: 7.8rem 4rem 8.4rem;
    margin-bottom: 7rem;
  }
}
.sightseeing__title-wrap {
  font-weight: bold;
  text-align: center;
  margin-bottom: 4.8rem;
}
@media (min-width: 1200px) {
  .sightseeing__title-wrap {
    margin-bottom: 6.8rem;
  }
}
.sightseeing__main-title {
  font-size: clamp(28px, 3vw, 40px);
}
.sightseeing__sub-title {
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1200px) {
  .sightseeing__sub-title {
    margin-bottom: 1.4rem;
  }
}
.sightseeing__content-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 26.6rem);
}
@media (min-width: 376px) {
  .sightseeing__content-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
@media (min-width: 768px) {
  .sightseeing__content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .sightseeing__content-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 30.6rem);
    gap: 3.2rem 4rem;
  }
}
.sightseeing__content-item {
  overflow: hidden;
  margin-bottom: 4.8rem;
}
.sightseeing__content-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .sightseeing__content-item {
    margin-bottom: 0;
  }
}
.sightseeing .grid-img {
  margin-bottom: 1.4rem;
  max-width: 26.8rem;
}
@media (min-width: 376px) {
  .sightseeing .grid-img {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .sightseeing .grid-img {
    margin-bottom: 1.8rem;
    max-width: min(26.3vw, 306px);
  }
}
.sightseeing .grid-img img {
  border-radius: min(1.5vw, 20px);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1200px) {
  .sightseeing .grid-img img {
    border-radius: 5px;
  }
}
.sightseeing .grid-text__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 11.5rem;
}
@media (min-width: 1200px) {
  .sightseeing .grid-text__content {
    height: 14rem;
  }
}
.sightseeing .grid-text__content-item {
  margin-bottom: 4.8rem;
}
.sightseeing .grid-text__content-item:last-child {
  margin-bottom: 0;
}
.sightseeing .grid-text__heading {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0d3387;
  margin-bottom: 0.8rem;
}
@media (min-width: 1200px) {
  .sightseeing .grid-text__heading {
    margin-bottom: 1rem;
    letter-spacing: -2px;
  }
}
.sightseeing .grid-text__description {
  font-size: 1.4rem;
}
@media (min-width: 1200px) {
  .sightseeing .grid-text__description {
    line-height: 1.6;
    color: #333;
  }
}
.sightseeing .grid-link {
  text-align: center;
}
.sightseeing .grid-link__btn {
  display: inline-block;
  color: #0d3387;
  font-size: clamp(12px, 2vw, 14px);
  text-decoration: none;
  position: relative;
  padding-right: 1.5rem;
}
.sightseeing .grid-link__btn::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}
.sightseeing .grid-link__btn:hover::after {
  right: -0.5rem;
}
.sightseeing__link-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 29rem;
  width: 100%;
  margin: 0 auto;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .sightseeing__link-wrap {
    max-width: 67rem;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.sightseeing__link {
  background-color: #ffdf13;
  font-size: 1.61rem;
  padding: 1.5rem 0;
  width: 100%;
  border-radius: min(2.66vw, 10px);
}
@media (min-width: 1200px) {
  .sightseeing__link {
    flex-direction: row;
    max-width: 32rem;
    width: 100%;
    padding: 1.6rem 0;
    border-radius: 5px;
  }
  .sightseeing__link--hp {
    margin-right: 1rem;
  }
}