@charset "UTF-8";

/* =========================================================
  変数
========================================================= */
:root {
  --ink: #141421;
  --nav: #201f3d;
  --blue: #2398cf;
  --pink: #d93a88;
  --cream: #ffffbe;
  --red: #bb1f2d;
  --line: #222;
  --max: 1024px;
}

/* =========================================================
  Base
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.visuallyHidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
  Hero
========================================================= */
.hero {
  position: relative;
  background: #111;
}

.hero img {
  width: 100%;
  height: auto;
}

/* =========================================================
  Navigation
========================================================= */
.menuButton {
  display: none;
}

.siteNav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 0;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.04em;
  background: var(--nav);
}

.siteNav a {
  padding: 18px 28px;
  line-height: 1;
}

.siteNav a:hover {
  opacity: .6;
}

.siteNav a + a {
  position: relative;
}

.siteNav a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1em;
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%);
}

/* =========================================================
  Layout
========================================================= */
.section {
  padding: 56px 0 0;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 880px;
}

.compact {
  max-width: 740px;
}

h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sectionLine {
  width: 1px;
  height: 25px;
  margin: -20px auto 20px;
  background: #333;
}

/* =========================================================
  イベント概要
========================================================= */
.infoList {
  margin: 0;
  font-size: 20px;
}

.infoList div {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: .5em;
  margin: 0 0 6px;
}

.infoList dt {
  position: relative;
  width: 6em;
  margin: 0;
  padding-left: 1.2em;
  font-weight: 700;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.infoList dt::before {
  content: "●";
  position: absolute;
  left: 0;
}

.infoList dd {
  margin: 0;
  font-weight: 600;
}

.note {
  margin: 16px 0 0 132px;
  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
  スケジュール
========================================================= */
.scheduleBox {
  margin-inline: auto;
}

.day {
  margin: 0;
  padding: 7px 20px;
  color: #fff;
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
}

.day span {
  margin-left: 8px;
  font-size: 20px;
}

.dayBlue {
  background: var(--blue);
}

.dayPink {
  background: var(--pink);
}

.scheduleTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 24px;
  line-height: 1.35;
}

.scheduleTable th,
.scheduleTable td {
  padding: 9px 14px;
  text-align: left;
  border-bottom: 1px solid #767676;
}

.scheduleTable th {
  width: 150px;
  font-weight: 500;
  white-space: nowrap;
  background: #fff1cf;
}

.scheduleTable td {
  font-weight: 700;
}

.scheduleTable td span {
  font-size: 20px;
}

/* =========================================================
  売り場MAP
========================================================= */
.stallMap {
  width: min(100%, 760px);
  margin: 0 auto;
}

/* =========================================================
  売り場メニュー
========================================================= */
.menuTable {
  width: 100%;
  border: 2px solid var(--line);
  border-collapse: collapse;
  font-size: 24px;
  line-height: 1.4;
}

.menuTable th,
.menuTable td {
  padding: 8px 10px;
  border: 1px solid var(--line);
}

.menuTable th {
  font-weight: 700;
  text-align: center;
  background: var(--cream);
}

.menuTable td:nth-child(2),
.menuTable td:nth-child(4) {
  width: 70px;
  text-align: center;
}

/* =========================================================
  会場MAP
========================================================= */
.access {
  padding-bottom: 0;
  text-align: center;
}

.access h2 {
  margin-bottom: 22px;
}

.pin {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  vertical-align: -10px;
  background: url("../img/pin.png") no-repeat center / contain;
}

.address {
  margin: 0 auto 20px;
  font-size: 20px;
  line-height: 1.7;
}

.accessMap {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.mapButtonWrap {
  position: relative;
  z-index: 1;
  margin: -30px auto 0;
}
.mapButtonWrap:hover {
    opacity: .6;
}

.mapButton {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-width: 370px;
  padding: 16px 30px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--red);
}

.mapButton span {
  font-size: 22px;
  line-height: 1;
}

.map-embed iframe {

  width: 100%;

  height: 600px;

  border: 0;

}

/* PC時 */

.map-embed iframe.map-pc {

  display: block;

}

.map-embed iframe.map-sp {

  display: none !important;

}

/* =========================================================
  Footer
========================================================= */
.footer {
  margin-top: 80px;
  padding: 44px 20px 66px;
  color: #fff;
  background: var(--nav);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.footer a {
  padding: 0 22px;
}
.footer a:hover {
  opacity: .6;
}
.footer a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}
.onlySp {

  display: none;

}

.onlyPc {

  display: block;

}
/* =========================================================
  SP
========================================================= */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .hero {
    overflow: hidden;
  }

  .hero picture,
  .hero img {
    width: 100%;
  }

  .menuButton {
    position: absolute;
    top: 0;
    right: 18px;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 48px;
    height: 58px;
    padding-top: 12px;
    border: 0;
    background: #fff;
  }

  .menuButton span:not(.visuallyHidden) {
    display: block;
    width: 30px;
    height: 3px;
    background: #111;
  }

  .siteNav {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 92px;
    font-size: 16px;
    background: rgba(32, 31, 61, 0.98);
  }

  .siteNav.isOpen {
    display: flex;
  }

  .siteNav a {
    padding: 18px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .siteNav a + a::before {
    display: none;
  }

  .section {
    padding: 38px 10px 0;
  }

  .container,
  .narrow,
  .compact {
    max-width: none;
  }

  h2 {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .infoList {
    font-size: 11px;
    line-height: 1.55;
  }

  .infoList div {
    grid-template-columns: 7em 1fr;
    gap: px;
    margin-bottom: 8px;
  }

  .infoList dd {
    font-weight: 600;
  }

  .note {
    margin: 14px 0 0 96px;
    font-size: 10px;
  }

  .day {
    padding: 7px 8px;
    font-size: 16px;
  }

  .day span {
    font-size: 13px;
  }

  .scheduleTable {
    font-size: 11px;
  }

  .scheduleTable th,
  .scheduleTable td {
    padding: 7px 2px;
  }

  .scheduleTable th {
    width: 86px;
  }

  .scheduleTable td span {
    font-size: 10px;
  }

  .stallMap {
    width: 100%;
  }

  .menuTable {
    font-size: 11px;
  }

  .menuTable th,
  .menuTable td {
    padding: 6px 7px;
  }

  .menuTable td:nth-child(2),
  .menuTable td:nth-child(4) {
    width: 42px;
  }

  .address {
    font-size: 10px;
  }

  .accessMap {
    height: 300px;
    object-fit: cover;
  }

  .mapButtonWrap {
    margin: -30px auto 0;
  }

  .mapButtonWrap:hover {
    opacity: .6;
  }

  .mapButton {
    min-width: min(82vw, 420px);
    padding: 13px 24px;
    font-size: 13px;
  }

  .map-embed iframe {

  height: 300px;

}

/* SP時 */

.map-embed iframe.map-pc {

  display: none !important;

}

.map-embed iframe.map-sp {

  display: block !important;

}

  .footer {
    margin-top: 58px;
    padding: 36px 20px 44px;
  }

  .footer nav {
    row-gap: 10px;
    font-size: 12px;
  }

  .footer a {
    padding: 0 15px;
  }
    .onlySp {

    display: block;

  }

  .onlyPc {

    display: none;

  }
}
