@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
*    header
* =================================================================== */
.header .nav {
  padding: 6.6rem 0;
}
@media screen and (min-width: 768px) {
  .header .nav {
    padding: 2rem 0;
  }
}
.header .nav > .inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header .nav > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
    max-width: 1920px;
  }
}
.header .nav h1 {
  margin: 0 auto;
  width: calc(537 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .header .nav h1 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 0;
    width: calc(460 / 1920 * 100%);
  }
}
.header .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .header .nav-menu {
    margin: 0 0 0 calc(120 / 1920 * 100%);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: calc(610 / 1920 * 100%);
  }
}
.header .nav-menu li {
  margin: 0 calc(15 / 750 * 100%);
  width: calc(160 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .header .nav-menu li a {
    border-radius: 50%;
    position: relative;
  }
  .header .nav-menu li a::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 98%;
    height: 98%;
    background: #cccccc;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    z-index: -1;
    border-radius: 50%;
  }
  .header .nav-menu li a:hover {
    opacity: 1;
  }
  .header .nav-menu li a:hover::before {
    opacity: 1;
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
  }
}

.page-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 8rem calc(50% - 50vw) 0;
  font-size: 3.6rem;
}
@media screen and (min-width: 768px) {
  .page-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 4rem 0 0;
    font-size: 4.6rem;
  }
}
.page-menu li {
  width: 6.166em;
  height: 6.166em;
}
@media screen and (min-width: 768px) {
  .page-menu li {
    margin: 0 0.657em;
  }
}
.page-menu li:nth-child(3n), .page-menu li:last-child {
  margin-right: 0;
}
.page-menu li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 100%;
  border-radius: 50%;
  line-height: 1.2;
}
.page-menu li a .ja {
  margin-top: 0.2em;
  font-size: 66%;
}
@media screen and (min-width: 768px) {
  .page-menu li a .ja {
    font-size: 48%;
  }
}

/* =====================================================================
    booth
======================================================================*/
.booth {
  padding: 14rem 0;
}
@media screen and (min-width: 768px) {
  .booth {
    padding: 10rem 0;
  }
  .booth .sub-ttl {
    margin-bottom: 3rem;
  }
}
.booth-ttl {
  text-align: center;
  margin-bottom: 10rem;
  font-weight: 900;
  font-size: 4.5rem;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .booth-ttl {
    margin-bottom: 6rem;
  }
}
.booth-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  width: calc(640 / 680 * 100%);
}
.booth-list h4 {
  color: #037dfa;
  font-size: 0.9em;
  line-height: 1.6;
  padding: 1em 0;
}
@media screen and (min-width: 768px) {
  .booth-list {
    width: 100%;
    max-width: 1080px;
  }
}
.booth-list > li {
  margin: 0 3.125% 3.125% 0;
  width: 31.25%;
}
@media screen and (max-width: 767px) {
  .booth-list > li:nth-child(3n), .booth-list > li:last-child {
    margin-right: 0;
  }
  .booth-list > li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .booth-list > li {
    margin: 0 3.7037037037% 3.7037037037% 0;
    width: 17.037037037%;
  }
  .booth-list > li:nth-child(5n), .booth-list > li:last-child {
    margin-right: 0;
  }
  .booth-list > li:nth-last-child(-n+5) {
    margin-bottom: 0;
  }
}
.booth-list > li img {
  border-radius: 2rem;
}

/* =====================================================================
    access
======================================================================*/
.access {
  padding-top: 18rem;
}
@media screen and (min-width: 768px) {
  .access > .inner {
    max-width: 1820px;
  }
}
.access-map {
  border-radius: 2rem;
  overflow: hidden;
}
.access-map iframe {
  width: 100%;
}

/* =====================================================================
*    footer
* =================================================================== */
.copyright {
  padding: 8rem 0;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.916;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 1.4rem;
  }
}

/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed !important;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 50;
}
.popup-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}
.popup-area::-webkit-scrollbar {
  width: 0;
}
.popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
}
@media screen and (min-width: 768px) {
  .popup-bg {
    cursor: pointer;
  }
}
.popup-inner {
  position: relative;
  margin: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: calc(710 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .popup-inner {
    width: 80%;
    max-width: 1080px;
  }
}
.popup-close {
  position: absolute;
  top: -4.5em;
  right: 0;
  width: 4em;
  height: 4em;
  z-index: 3;
}
.popup-close::before, .popup-close::after {
  content: "";
  display: block;
  width: 1px;
  margin: 0 auto;
  padding-top: 90%;
  border-left: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-close::after {
  position: absolute;
  top: 51%;
  left: 0;
  right: 0;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.popup-list {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.popup-list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  line-height: 1.666;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .popup-list > li {
    font-size: 93%;
  }
}
.popup-list > li h2 {
  text-align: center;
  padding: 5rem 4.9295774648%;
  font-size: 170%;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .popup-list > li h2 {
    padding: 3rem 5.5555555556%;
    font-size: 200%;
  }
}
.popup-list > li[id^=event_id_] h2 {
  text-align: left;
}
.popup-list-content {
  padding: 4.9295774648%;
}
@media screen and (min-width: 768px) {
  .popup-list-content {
    padding: 5rem 5.5555555556%;
  }
}
.popup-list-content > *:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .popup-list-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .popup-list-head > *:not(:last-child) {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .popup-list-head figure {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 4.1666666667%;
    width: 45.8333333333%;
  }
}
.popup-list-head figure img {
  border-radius: 3.4rem;
}
@media screen and (min-width: 768px) {
  .popup-list-head dl {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.popup-list-head dl dt.line {
  margin-bottom: 0.4em;
  font-size: 142%;
  text-decoration: underline;
}
.popup-list-head dl dd {
  margin-left: 1em;
}
.popup-list-about h3 {
  margin-bottom: 0.5em;
  padding: 0.5em;
  border-radius: 3em;
}
.popup-list-about h3, .popup-list-notice h3 {
  text-align: center;
  font-size: 114%;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .popup-list-about h3, .popup-list-notice h3 {
    font-size: 133%;
  }
}
.popup-list-about ul > li, .popup-list-notice ul > li {
  text-indent: -1em;
  padding-left: 1em;
}
.popup-list-about ul > li em, .popup-list-notice ul > li em {
  font-style: normal;
  font-size: 114%;
}
.popup-list-about ul > li span, .popup-list-notice ul > li span {
  color: #ff0000;
}
.font_b {
  font-style: normal;
  font-size: 114%;
  color: #ff0000;
}
.popup-list-notice {
  padding: 6rem 5.46875%;
  background-color: #f5f5f5;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .popup-list-notice {
    padding: 3rem 3.125%;
  }
}
.popup-list-notice h3 {
  margin-bottom: 6rem;
  color: #ff0000;
}
@media screen and (min-width: 768px) {
  .popup-list-notice h3 {
    margin-bottom: 3rem;
  }
}
.popup-schedule-ttl {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .popup-schedule-ttl {
    margin-bottom: 2rem;
  }
}
.popup-schedule-ttl span {
  padding-bottom: 0.2em;
  font-size: 133%;
  font-weight: 700;
  border-bottom: 0.16em dotted currentColor;
}
@media screen and (min-width: 768px) {
  .popup-schedule-ttl span {
    font-size: 166%;
  }
}
@media screen and (min-width: 768px) {
  .popup-schedule-content {
    font-size: 111%;
  }
}
.popup-schedule-content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.popup-schedule-content dl:last-child > * {
  border-bottom: 0;
}
.popup-schedule-content dl > * {
  border-bottom: 2px solid #e0e0e0;
}
.popup-schedule-content dl dt,
.popup-schedule-content dl dd p {
  padding: 3rem 0;
}
.popup-schedule-content dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  margin-right: 0.8em;
  width: 4em;
  font-size: 107%;
}
@media screen and (min-width: 768px) {
  .popup-schedule-content dl dt {
    width: 5.5em;
    font-size: 118%;
  }
}
.popup-schedule-content dl dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.popup-schedule-content dl dd figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 5%;
  padding: 2px 0;
  width: 30.3571428571%;
}
@media screen and (min-width: 768px) {
  .popup-schedule-content dl dd figure {
    width: 20%;
  }
}
.popup-schedule-content dl dd figure img {
  border-radius: 0.8rem;
}
.popup-img-slider .slick-list {
  border-radius: 3.4rem;
  overflow: hidden;
}
.popup-img-slider .slick-list img {
  border-radius: 0;
}
.popup-img-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1em;
  width: 100%;
}
.popup-img-slider .slick-dots li {
  display: inline-block;
  margin: 0 0.5em;
  width: 0.5em;
  height: 0.5em;
}
.popup-img-slider .slick-dots li button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: transparent;
}
.popup-img-slider .slick-dots li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #aaaaaa;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

.gDef-top-banner {
  background-color: #ffffff;
}

.gDef-top-banner,
#gDefFooter {
  position: relative;
  z-index: 1;
}

.gDef-wrapper {
  overflow: initial;
}

.wrapper {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #3a3f43;
  background: url(../images/bg_pattern.jpg) repeat top center/30rem auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .wrapper {
    font-size: 1.8rem;
    font-size: max(1.8rem, 14px);
  }
}
.wrapper section,
.wrapper main,
.wrapper header,
.wrapper footer,
.wrapper aside {
  position: relative;
}
.wrapper img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.wrapper a,
.wrapper button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}
@media screen and (min-width: 768px) {
  .wrapper a,
  .wrapper button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .wrapper a:hover,
  .wrapper button:hover {
    opacity: 0.7;
  }
}

.main p,
.main dd {
  line-height: 1.666;
}
.main p a,
.main dd a {
  display: inline;
  color: #fa6658;
  text-decoration: underline;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(680 / 750 * 100%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 84%;
    max-width: 1480px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
/* =====================================================================
    共通
======================================================================*/
.sec-ttl {
  text-align: center;
  margin-bottom: 8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 7.5rem;
}
.sec-ttl .en {
  display: block;
  letter-spacing: 0.12em;
}
.sec-ttl .ja {
  display: block;
  margin-top: 0.6em;
  font-size: 40%;
}

.sub-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 8rem;
  padding: 0.7em 1.5em;
  width: 100%;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
  background-color: #037dfa;
  border-radius: 3em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .sub-ttl {
    margin-left: auto;
    margin-right: auto;
    width: 27.3em;
    min-width: 500px;
  }
}
.sub-ttl::before, .sub-ttl::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1.2em;
  height: 100%;
  background-color: #ff8793;
}
.sub-ttl::after {
  left: auto;
  right: 0;
  background-color: #ea68d2;
}

a.btn01,
button.btn01 {
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  padding: 1em 1.5em;
  padding-right: 2.2em;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 3em;
  color: #ffffff;
  background-color: #fa6658;
}
@media screen and (min-width: 768px) {
  a.btn01,
  button.btn01 {
    padding: 1.3em 2em;
    padding-right: 2.8em;
    font-size: 122%;
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  a.btn01:hover,
  button.btn01:hover {
    opacity: 1;
    background-color: #ff3825;
  }
  a.btn01:hover::after,
  button.btn01:hover::after {
    margin-right: -0.3em;
  }
}
a.btn01::after,
button.btn01::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 1.5em;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.25em solid currentColor;
  border-right: 0.25em solid currentColor;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
@media screen and (min-width: 768px) {
  a.btn01::after,
  button.btn01::after {
    right: 1.8em;
    -webkit-transition: margin-right 0.3s ease;
    transition: margin-right 0.3s ease;
  }
}
a.btn01.cs,
button.btn01.cs {
  pointer-events: none;
  -webkit-filter: brightness(180%) contrast(55%) grayscale(100%);
          filter: brightness(180%) contrast(55%) grayscale(100%);
}
a.btn01[download]::after,
button.btn01[download]::after {
  width: 1.4em;
  height: 1.4em;
  border: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/icon_download.svg) no-repeat center/contain;
}
a.btn01[download]:hover::after,
button.btn01[download]:hover::after {
  margin-right: 0;
}

/* =====================================================================
    header
======================================================================*/
.page-menu li a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  background-color: #fa6658;
}
@media screen and (min-width: 768px) {
  .page-menu li a {
    position: relative;
  }
  .page-menu li a::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 98%;
    height: 98%;
    background: #fa6658;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    z-index: -1;
    border-radius: 50%;
  }
  .page-menu li a:hover {
    opacity: 1;
  }
  .page-menu li a:hover::before {
    opacity: 1;
    width: calc(100% + 1rem);
    height: calc(100% + 1rem);
  }
}
.page-menu li a .en {
  color: #ffffff;
}
.page-menu li a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0.652em;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1em;
  height: 0.63em;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
}

/* =====================================================================
    event
======================================================================*/
.event {
  margin-top: 12.5rem;
  padding: 18rem 0 12rem;
  background-color: #ffe554;
  border-radius: 9rem;
}
@media screen and (min-width: 768px) {
  .event {
    padding-top: 16rem;
  }
}
.event-catch {
  position: absolute;
  top: -26rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(456 / 680 * 100%);
}
@media screen and (min-width: 768px) {
  .event-catch {
    top: -23rem;
    width: calc(820 / 1280 * 100%);
  }
}
.event .sec-ttl .en {
  color: #009d9e;
}
.event-group:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .event-group:not(:last-child) {
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .event-list01 {
    margin: 0 auto;
    max-width: 1280px;
  }
}
.event-list01 > li {
  padding: 6rem calc(20 / 680 * 100%);
  background-color: #ffffff;
  border-radius: 3.4rem;
}
@media screen and (min-width: 768px) {
  .event-list01 > li {
    padding: 5rem calc(50 / 1280 * 100%);
    display: grid;
    grid-template-columns: 61.0169491525% 35.593220339%;
    grid-template-rows: auto 1fr auto;
    grid-auto-flow: row;
    grid-template-areas: "h4 figure" "event-list01-text figure" "event-list01-bottom event-list01-bottom";
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .event-list01 > li.layout_square {
    grid-template-areas: "h4 figure" "event-list01-text figure" "event-list01-bottom figure";
  }
}
.event-list01 > li:not(:last-child) {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .event-list01 > li:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.event-list01 > li h4 {
  margin-bottom: 6rem;
  font-weight: 900;
  font-size: 133%;
  line-height: 1.4;
  color: #009d9e;
}
.event-list01 > li h4 img.logo {
  display: block;
  padding-bottom: 0.3em;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .event-list01 > li h4 {
    grid-area: h4;
    margin-bottom: 4rem;
    font-size: 200%;
  }
}
.event-list01 > li figure {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .event-list01 > li figure {
    grid-area: figure;
    margin-bottom: 0 !important;
  }
}
.event-list01 > li figure img {
  border-radius: 3.4rem;
}
@media screen and (max-width: 767px) {
  .event-list01 > li p {
    font-size: 93%;
  }
}
.event-list01 > li p em {
  font-style: normal;
  font-size: 114%;
}
.event-list01-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8em;
  margin-bottom: 3rem;
}
.event-list01-cat > li {
  padding: 0.4em 1em;
  font-weight: 700;
  color: #ffffff;
  background-color: #fa6658;
  border-radius: 3em;
}
.event-list01-text {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .event-list01-text {
    grid-area: event-list01-text;
    margin-bottom: 3rem;
  }
}
.event-list01-text dl {
  line-height: 1.666;
}
@media screen and (min-width: 768px) {
  .event-list01-text dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.event-list01-text dl dt {
  color: #009d9e;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .event-list01-text dl dt {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 9em;
  }
}
.event-list01-text dl dd {
  margin-left: 1em;
}
.event-list01-bottom {
  position: relative;
  margin-top: 1.5em;
  padding-top: 1.7em;
}
@media screen and (min-width: 768px) {
  .event-list01-bottom {
    padding-top: 1.5em;
    grid-area: event-list01-bottom;
  }
  .event-list01-bottom .btn01 {
    margin: 0 auto;
    max-width: 25.5em;
  }
}
.event-list01-bottom::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.3em;
  background: url(../images/img_dots.png) round center/auto 100%;
}
.event-lottery {
  position: relative;
}
@media screen and (min-width: 768px) {
  .event-lottery {
    margin: 0 auto;
    max-width: 1093px;
  }
}
.event-lottery .btn01 {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0 0 calc(22 / 680 * 100%) calc(50 / 680 * 100%);
  width: auto;
  padding: 0.5em 0.8em;
  padding-right: 2em;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .event-lottery .btn01 {
    right: 0;
    margin: 0 auto 2.0036429872%;
    width: 23.6em;
    font-size: 2.2rem;
  }
}
.event-lottery .btn01::after {
  right: 0.9em;
  width: 0.5em;
  height: 0.5em;
}
@media screen and (min-width: 768px) {
  .event-list02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: calc(40 / 1480 * 100%);
  }
}
.event-list02 > li {
  margin-bottom: 8rem;
}
.event-list02 > li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .event-list02 > li {
    margin: 0 calc(20 / 1480 * 100%) 6rem;
    width: calc(440 / 1480 * 100%);
  }
  .event-list02 > li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
.event-list02 > li > *:not(:last-child) {
  margin-bottom: 3rem;
}
.event-list02 > li figure {
  position: relative;
}
.event-list02 > li figure img {
  border-radius: 3.4rem;
}
.event-list02 > li figure p {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  top: -1.2em;
  left: -0.5em;
}
.event-list02 > li figure p span {
  padding: 0.2em 0.5em;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: normal;
  color: #ea68d2;
  background-color: #ffffff;
  border-radius: 0.9em;
}
.event-list02 > li figure p span:not(:first-child) {
  margin-top: -0.3em;
}
.event-list02 > li h4 {
  padding-bottom: 3rem;
  font-size: 133%;
  font-weight: 900;
  line-height: 1.4;
  color: #037dfa;
  border-bottom: 0.2em dotted currentColor;
}
.event-list02 > li h4 img.logo {
  display: block;
  width: 80%;
  padding-bottom: 0.3em;
}
@media screen and (min-width: 768px) {
  .event-list02 > li h4 {
    font-size: 177%;
  }
}

/* =====================================================================
    facility
======================================================================*/
.facility {
  padding: 12rem 0 16rem;
}
@media screen and (min-width: 768px) {
  .facility {
    padding: 8rem 0 14rem;
  }
}
.facility-ttl {
  margin: 3em 0 2em;
}
@media screen and (min-width: 768px) {
  .facility-ttl {
    margin: 5em auto 2em;
    width: auto;
    max-width: 1420px;
  }
}
.facility-map {
  padding: 8rem calc(35 / 680 * 100%);
  border-radius: 5rem;
  overflow: hidden;
  background: url(../images/bg_map-sp.jpg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .facility-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6rem calc(100 / 1480 * 100%);
  }
}
.facility-map-ttl {
  text-align: center;
  margin-bottom: 10rem;
  font-size: 6.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  color: #007b7c;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .facility-map-ttl {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 0.7em;
  }
}
.facility-map figure img {
  border-radius: 2rem;
}
.facility-map .btn01 {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .facility-map .btn01 {
    margin: 3rem auto 0;
    max-width: 20.9em;
  }
}

/* =====================================================================
    booth
======================================================================*/
.booth {
  background-color: #f5f5f5;
}
.booth-ttl {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* =====================================================================
    sns
======================================================================*/
.sns {
  padding: 18rem 0;
}
@media screen and (min-width: 768px) {
  .sns {
    padding: 12rem 0;
  }
  .sns > .inner {
    max-width: 1280px;
  }
  .sns-column {
    display: grid;
    grid-template-columns: -webkit-min-content calc(860 / 1280 * 100%);
    grid-template-columns: min-content calc(860 / 1280 * 100%);
    grid-auto-flow: row;
    grid-template-areas: "sns-catch sns-catch" "sec-ttl sns-insta";
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sns .sec-ttl .en {
  color: #037dfa;
}
@media screen and (min-width: 768px) {
  .sns .sec-ttl {
    grid-area: sec-ttl;
    text-align: left;
    margin: 0 6rem 0 0;
  }
}
.sns-catch {
  margin: 0 auto 6rem;
}
@media screen and (min-width: 768px) {
  .sns-catch {
    grid-area: sns-catch;
    width: calc(744 / 1280 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .sns-insta {
    grid-area: sns-insta;
  }
  .sns-insta a {
    position: relative;
  }
  .sns-insta a::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 98%;
    height: 98%;
    background: #dadada;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    z-index: -1;
  }
  .sns-insta a:hover {
    opacity: 1;
  }
  .sns-insta a:hover::before {
    opacity: 1;
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
  }
  .sns-insta a::before {
    border-radius: 20rem;
  }
}

/* =====================================================================
    schedule
======================================================================*/
.schedule {
  padding: 10rem 0 18rem;
  background-color: #f3b7ea;
}
@media screen and (min-width: 768px) {
  .schedule {
    padding: 10rem 0;
  }
}
.schedule .sec-ttl .en {
  color: #009d9e;
}
.schedule-ttl {
  text-align: center;
  margin-bottom: 6rem;
  font-weight: 700;
  color: #009d9e;
}
@media screen and (min-width: 768px) {
  .schedule-ttl {
    font-size: 166%;
  }
}
.schedule-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .schedule-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.schedule-list > li {
  margin-bottom: 5rem;
  width: calc(320 / 680 * 100%);
}
@media screen and (min-width: 768px) {
  .schedule-list > li {
    margin: 0 calc(8 / 1480 * 100%) 3rem;
    width: calc(258 / 1480 * 100%);
  }
  .schedule-list > li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
.schedule-list > li figure img {
  border-radius: 50%;
}
.schedule-list > li p {
  text-align: center;
  margin-top: 0.8em;
  font-size: 113%;
  font-weight: 700;
}
.schedule-list > li p span {
  font-family: "Dela Gothic One", sans-serif;
}
.font_blue { color: #009d9e; }
.font_pink { color: #fa6658; }
@media screen and (min-width: 768px) {
  .schedule-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 7rem;
  }
}
.schedule-btn .btn01 {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .schedule-btn .btn01 {
    margin: 0 calc(10 / 1480 * 100%);
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    width: calc(630 / 1480 * 100%);
    min-width: 340px;
    font-size: 100%;
  }
}
.schedule-btn .btn01 span {
  display: inline-block;
  margin-bottom: 0.1em;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: normal;
  font-size: 133%;
  letter-spacing: 0.1em;
  color: #ffe554;
}
@media screen and (min-width: 768px) {
  .schedule-btn .btn01 span {
    font-size: 180%;
  }
}
.schedule .illust-leaf {
  position: absolute;
  bottom: 5rem;
  left: -3rem;
  width: 40.3rem;
}
@media screen and (min-width: 768px) {
  .schedule .illust-leaf {
    left: 0;
  }
}

/* =====================================================================
    about
======================================================================*/
.about {
  padding: 18rem 0 0;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 12rem;
  }
  .about-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.about .illust-cat {
  position: absolute;
  top: -6.5rem;
  right: 3.3rem;
  width: 16.2rem;
}
@media screen and (min-width: 768px) {
  .about .sec-ttl {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: left;
    margin: 0 8rem 0 0;
  }
}
.about .sec-ttl .en {
  color: #ea46cc;
}
.about-list {
  border: 2px solid #dadada;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about-list {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.about-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.666;
  border-bottom: 2px solid #dadada;
}
.about-list li:last-child {
  border-bottom: 0;
}
.about-list li > * {
  padding: 0.4em 0.5em;
}
@media screen and (min-width: 768px) {
  .about-list li > * {
    padding: 0.6em 1em;
    font-size: 111%;
  }
}
.about-list li h3 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5.5em;
  font-weight: bold;
  color: #ea46cc;
  background-color: #f9f9f9;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (min-width: 768px) {
  .about-list li h3 {
    width: 7em;
  }
}

/* =====================================================================
    access
======================================================================*/
.access .sec-ttl .en {
  color: #fa6658;
}

/* =====================================================================
    popup
======================================================================*/
.popup-bg {
  background: rgba(230, 242, 255, 0.9);
}
.popup-close::before, .popup-close::after {
  border-color: #fa6658;
}
.popup-list > li h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ffffff;
  background-color: #fa6658;
}
.popup-list-head dl dt {
  color: #009d9e;
}
.popup-list-about h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #ffe554;
}
.popup-schedule-ttl span {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: normal;
  color: #037dfa;
}
.popup-schedule-content dl > * {
  border-color: #ffe554;
}
.popup-schedule-content dl dt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  color: #037dfa;
}
.popup-img-slider .slick-dots li.slick-active button::before {
  background-color: #fa6658;
}

/* =====================================================================
    追加
======================================================================*/
.pc {
  display: none;
}
.sp {
  display: block;
}
.schedule_logo {
  display: block;
  padding-bottom: 0.5em;
  max-width: 60%!important;
}
.nurie {
  width: 80%;
  margin: 0 auto 10em;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .schedule_logo {
  display: block;
  padding-bottom: 0.5em;
  width: 30%!important;
}
}/*# sourceMappingURL=base.css.map */