@charset "UTF-8";
:root {
  --pink: #e73e59;
  --blue: #009fe8;
}

html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Zen Kaku Gothic New", "Meiryo", "メイリオ", "平成明朝", "Lucida Grande", Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #000;
  background: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

.container {
  overflow: hidden;
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding-block: 7rem;
  }
}

.inner {
  padding-inline: 1rem;
  width: 100%;
  max-width: calc(1000px + 2rem);
  margin-inline: auto;
}

.br {
  display: inline-block;
}

.section-title {
  font-weight: 900;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.4rem solid #000;
  text-align: center;
  font-size: 4rem;
  height: 8rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: min(10.5rem, 12vw);
    height: 15.2rem;
    padding-bottom: 1.4rem;
    border-width: 0.5rem;
  }
}
.section-title.self-title {
  padding-bottom: unset;
  display: block;
  border: unset;
  height: auto;
  background: unset;
  font-size: 5.5rem;
}
@media screen and (min-width: 768px) {
  .section-title.self-title {
    font-size: 10.5rem;
  }
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* header -------------------------------------------------------------------------------------------------------------------- */
.header {
  position: relative;
  padding-block: 5rem 0;
}
@media screen and (min-width: 768px) {
  .header {
    padding-block: 6rem 0;
  }
}
.header .inner {
  position: relative;
}
.header__presented {
  position: absolute;
  top: -4rem;
  right: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.6rem;
  font-size: 1.8rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header__presented {
    position: absolute;
    top: -1rem;
    right: 0;
    gap: 1rem;
    font-size: 2.8rem;
  }
}
.header__presented a {
  width: 8rem;
  padding-bottom: 0.6rem;
}
@media screen and (min-width: 768px) {
  .header__presented a {
    width: 14rem;
  }
}
.header__title {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
}
.header__logo {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: auto;
    max-width: 77rem;
  }
}
.header__sub-title {
  position: absolute;
  top: 4rem;
  left: 2.4rem;
  max-width: 4rem;
}
@media screen and (min-width: 768px) {
  .header__sub-title {
    top: 12rem;
    max-width: 9.1rem;
  }
}
@media screen and (min-width: 768px) {
  .header__info {
    margin-top: -1.4rem;
  }
}
.header__notes {
  font-size: 1.1rem;
  margin-top: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header__notes {
    font-size: 1.4rem;
    margin-top: 1.3rem;
  }
}

/* about -------------------------------------------------------------------------------------------------------------------- */
.about {
  padding-bottom: 0;
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 6rem;
  }
}
.about p {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .about p {
    font-size: 2.2rem;
  }
}
.about p .br {
  display: block;
}
@media screen and (min-width: 768px) {
  .about p .br {
    display: inline;
  }
}
.about p img {
  max-width: 7.8rem;
  display: inline-block;
  vertical-align: -0.5rem;
}
/* shop -------------------------------------------------------------------------------------------------------------------- */
.shop {
  padding-top: 1.7rem;
}
@media screen and (min-width: 768px) {
  .shop {
    padding-top: 3rem;
  }
}
.shop .section-title {
  max-width: 68.5rem;
  margin-inline: auto;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .shop .section-title {
    width: auto;
  }
}
.shop__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .shop__list {
    margin-top: 4rem;
    gap: 8.2rem;
  }
}
.shop__group {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .shop__group {
    grid-template-rows: unset;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: min(6.94rem, 5vw);
  }
}
.shop__group::before, .shop__group::after {
  content: "";
  background: url("../img/shop_icon_cross.svg") no-repeat center/5rem;
  width: 100%;
  max-width: 7rem;
  height: 100%;
  max-height: 7rem;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .shop__group::before, .shop__group::after {
    background-size: min(8.2rem, 8.5vw);
    max-width: 10rem;
    max-height: 10rem;
    transform: translate(-50%, -50%);
  }
}
.shop__group::after {
  background: #fff;
  max-width: 7rem;
  max-height: 7rem;
  border: 0.2rem solid #000;
  border-radius: 10rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .shop__group::after {
    max-width: 11rem;
    max-height: 11rem;
    width: min(11rem, 11.5vw);
    height: min(11rem, 11.5vw);
    border-width: 0.3rem;
  }
}
.shop__item {
  border: 0.2rem solid #000;
  background: #fff;
  display: grid;
  grid-template-rows: 14rem auto auto;
}
@media screen and (min-width: 768px) {
  .shop__item {
    height: 100%;
    grid-template-rows: min(16.5rem, 18vw) auto 1fr;
    border-width: 0.3rem;
  }
}
.shop__item::before {
  content: "";
  background: #fff;
  width: 100%;
  height: 4rem;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  .shop__item::before {
    width: min(6.95rem, 5vw);
    height: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50.7%, 0);
  }
}
.shop__item.double {
  display: flex;
}
.shop__item.double .double__item {
  display: grid;
  grid-template-rows: 14rem auto 1fr;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .shop__item.double .double__item {
    grid-template-rows: min(16.5rem, 18vw) auto 1fr;
  }
}
.shop__item.double .double__text {
  padding-inline: 1.4rem;
}
@media screen and (min-width: 768px) {
  .shop__item.double .double__text {
    padding-inline: 2.4rem;
  }
}
.shop__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .shop__title {
    padding: 1rem;
  }
}
.shop__title img {
  width: revert-layer;
  height: 60%;
}
@media screen and (min-width: 768px) {
  .shop__title img {
    height: auto;
  }
}
.shop__title img.big70 {
  height: 70%;
}
@media screen and (min-width: 768px) {
  .shop__title img.big70 {
    height: auto;
  }
}
.shop__title img.big80 {
  height: 80%;
}
@media screen and (min-width: 768px) {
  .shop__title img.big80 {
    height: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .shop__title.le img {
    height: auto;
    width: 100%;
  }
}
.shop p {
  padding: 1.6rem;
  font-size: 1.3rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .shop p {
    padding: 2.7rem;
    font-size: inherit;
    line-height: inherit;
  }
}

/* booth -------------------------------------------------------------------------------------------------------------------- */
.booth {
  padding-block: 0;
  background-image: radial-gradient(#000 20%, transparent 20%), radial-gradient(#000 20%, transparent 20%);
  background-size: 2rem 2rem;
  background-position: 0px 0.5rem, 1rem 1.5rem;
  border-bottom: 0.3rem solid;
}
@media screen and (min-width: 768px) {
  .booth {
    border-width: 0.5rem;
  }
}
.booth__title-area {
  background: rgba(190, 187, 186, 0.95);
  padding-block: 1rem 3rem;
}
@media screen and (min-width: 768px) {
  .booth__title-area {
    padding-block: 1.5rem 7rem;
  }
}
.booth__title-area .section-title {
  color: #000;
}
.booth__title-area-map {
  max-width: calc(1200px - 2rem);
  padding-inline: 0 2rem;
  margin: auto;
  display: block;
  position: relative;
  margin-top: 2.5rem;
  width: 28rem;
}
@media screen and (min-width: 768px) {
  .booth__title-area-map {
    padding-inline: 1rem;
    width: auto;
  }
}
.booth__title-area-map::before {
  content: "";
  background: url("../img/booth_map_compass.svg") no-repeat center/100%;
  width: 15.1rem;
  height: 10.4rem;
  position: absolute;
  top: -2rem;
  right: -3.5rem;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .booth__title-area-map::before {
    top: -13.5rem;
    right: 1rem;
    transform: unset;
  }
}
.booth .inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding-inline: 2rem;
  width: 85%;
  border: 0.3rem solid;
  border-top: none;
  border-bottom: none;
  padding-block: 2rem 3rem;
}
@media screen and (min-width: 768px) {
  .booth .inner {
    padding-block: 6rem 7rem;
    padding-inline: min(13rem, 11%);
    border-width: 0.5rem;
  }
}
.booth__wrapper h3 {
  font-weight: 900;
  text-align: center;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .booth__wrapper h3 {
    text-align: left;
    font-size: 5rem;
  }
}
.booth__list {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .booth__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.booth__item {
  padding-block: 0.7rem;
  font-size: 2rem;
  letter-spacing: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .booth__item {
    padding-block: 1rem;
    font-size: 2.6rem;
    gap: 1em;
  }
}
.booth__item:nth-child(2n) .booth__num {
  background: var(--blue);
}
.booth__num {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--pink);
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  padding-bottom: 0.3rem;
}
@media screen and (min-width: 768px) {
  .booth__num {
    width: 5.8rem;
    height: 5.8rem;
    font-size: 3.3rem;
    padding-bottom: 0.3rem;
  }
}
.booth__num.blue {
  background: var(--blue) !important;
}
.booth__num.gray {
  background: #636363 !important;
}

/* event -------------------------------------------------------------------------------------------------------------------- */
.event {
  background: url("../img/event_bg_sp.png") no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .event {
    background-image: url("../img/event_bg_pc.png");
    padding-block: 11rem;
  }
}
.event .inner {
  padding: unset;
  width: 85%;
}
.event__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .event__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 7.3rem;
    margin-top: 6.3rem;
    gap: 5rem;
  }
}
.event__item {
  background: #fff;
  border: 0.4rem solid #000;
}
@media screen and (min-width: 768px) {
  .event__item {
    height: clamp(53rem, 57vw, 59.8rem);
    border-width: 0.5rem;
  }
}
.event__item.bottom {
  grid-column: 1/3;
  min-height: unset;
}
@media screen and (min-width: 768px) {
  .event__item.bottom {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: auto;
  }
}
.event__top.right {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -1rem;
}
@media screen and (min-width: 768px) {
  .event__top.right {
    margin-bottom: -0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .event__top.right img {
    width: 95%;
  }
}
.event__top.bottom {
  height: auto;
}
@media screen and (min-width: 768px) {
  .event__top.bottom {
    flex: 1;
  }
}
.event__bottom {
  padding: 1.5rem;
  padding-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .event__bottom {
    padding: 3rem;
    padding-top: 2.3rem;
  }
}
.event__bottom.right {
  padding-top: 0;
}
.event__bottom h3 {
  font-weight: 900;
  font-size: 2.3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .event__bottom h3 {
    font-size: min(3.2rem, 2.5vw);
  }
}
@media screen and (min-width: 768px) {
  .event__bottom h3.bottom {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .event__bottom h3.bottom .br {
    display: block;
  }
}
.event__bottom p {
  margin-top: 1.3rem;
  letter-spacing: 0;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .event__bottom p {
    margin-top: 2rem;
    font-size: inherit;
  }
}
@media screen and (min-width: 768px) {
  .event__bottom.bottom {
    flex: 1;
  }
}
.event__btn {
  color: #fff;
  background: var(--pink);
  margin-top: 3rem;
  width: 100%;
  height: 9rem;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .event__btn {
    font-size: 3.2rem;
  }
}
@media (hover: hover) {
  .event__btn:hover {
    opacity: 1;
    background: var(--blue);
  }
}
.event__bnr {
  display: block;
  margin-top: 5rem;
  max-width: 750px;
  margin-inline: auto;
  border: 0.3rem solid;
}
@media screen and (min-width: 768px) {
  .event__bnr {
    margin-top: 10rem;
    border-width: 0.5rem;
  }
}

/* map -------------------------------------------------------------------------------------------------------------------- */
.map {
  padding: unset;
}
.map iframe {
  aspect-ratio: 4/3;
  display: block;
  width: 100%;
  height: 28rem;
}
@media screen and (min-width: 768px) {
  .map iframe {
    width: 100%;
    height: min(64.7rem, 50vw);
  }
}

/* footer -------------------------------------------------------------------------------------------------------------------- */
.footer {
  background: #000;
  color: #fff;
  padding-block: 4rem 3rem;
}
.footer .inner {
  max-width: calc(850px + 2rem);
}
@media screen and (min-width: 768px) {
  .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
.footer__presented {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__presented {
    font-size: 2.8rem;
  }
}
.footer__presented a {
  width: 10rem;
  padding-bottom: 0.6rem;
}
@media screen and (min-width: 768px) {
  .footer__presented a {
    width: 14rem;
  }
}
.footer__info {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0.5rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__info {
    font-size: 1.8rem;
    margin: unset;
  }
}
.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  width: 18rem;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin: unset;
  }
}
.footer small {
  display: block;
  margin-top: 3rem;
  text-align: center;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .footer small {
    margin-top: 3rem;
    font-size: 1.4rem;
  }
}
.footer small .br {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer small .br {
    display: inline;
  }
}

.pagetop {
  height: auto;
  position: fixed;
  bottom: 2rem;
  z-index: 9999;
  transition: all 0.5s;
  right: 2rem;
  background: var(--pink);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 3rem;
    bottom: 3rem;
  }
}
@media (hover: hover) {
  .pagetop:hover {
    background: var(--blue);
    opacity: 1;
  }
}
.pagetop::before, .pagetop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-77.5%, -50%) rotate(-45deg);
  background: #fff;
  width: 17px;
  height: 5px;
  transition: all 0.3s;
}
.pagetop::after {
  transform: translate(-22.5%, -50%) rotate(45deg);
}
@media (hover: hover) {
  .pagetop:hover::before, .pagetop:hover::after {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */