@charset "UTF-8";



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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff url('../img/bg_body.webp') no-repeat top center/cover;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #6b2a00;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #6b2a00;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #6b2a00;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #6b2a00;
  border-bottom: .25em solid #6b2a00;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #6b2a00;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #6b2a00;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #6b2a00;
}

#toc_container .toc_list li::before {
  display: none;
  color: #6b2a00;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #6b2a00;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-exhibitors {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.l-features {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.l-footer {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-mapAccess {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-access__inner {
  gap: 60px;
  gap: 3.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 8px;
  padding-top: .5rem;
  height: 100%;
}

.p-access__title {
  width: 60%;
}

.p-access__title img {
  width: 100%;
  height: 100%;
}

.p-access__board {
  position: relative;
  border: 12px solid rgba(241, 162, 131, .537254902);
  border: .75rem solid rgba(241, 162, 131, .537254902);
  background: #fff;
  background-clip: padding-box;
  padding: 20px 12px;
  padding: 1.25rem .75rem;
}

.p-access__head {
  position: relative;
}

.p-access__venue {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 900;
  white-space: normal;
  word-break: keep-all;
}

.p-access__qr {
  text-align: center;
}

.p-access__qr img {
  width: 40%;
}

.p-access__list {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: .03em;
}

.p-access__listTitle {
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: 900;
  line-height: 1.5;
}

.p-access__listItem {
  margin-top: 16px;
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.p-access__listItem strong {
  font-weight: 900;
}

.p-exhibitors__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-exhibitors__title {
  width: 400px;
  width: 25rem;
}

.p-exhibitors__title img {
  width: 100%;
  height: 100%;
}

.p-exhibitors__image {
  width: 300px;
  width: 18.75rem;
}

.p-exhibitors__image img {
  width: 100%;
  height: 100%;
}

.p-exhibitors__tables {
  display: grid;
  grid-template-columns: 1fr;
}

.c-exhibitorsTable {
  border: 1px solid #b2947f;
  border: .0625rem solid #b2947f;
  border-collapse: collapse;
  border-spacing: 0;
  background: #f8edd6;
  width: 100%;
  overflow: hidden;
}

.c-exhibitorsTable--second {
  border-top: none;
}

.c-exhibitorsTable thead th {
  border: 1px solid #b2947f;
  border: .0625rem solid #b2947f;
  background: #879a5c;
  padding: 4px;
  padding: .25rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
}

.c-exhibitorsTable thead th:last-child {
  border-right: none;
}

.c-exhibitorsTable--second thead {
  display: none;
}

.c-exhibitorsTable__head--name,
.c-exhibitorsTable__note--name {
  width: 32%;
}

.c-exhibitorsTable__head--content,
.c-exhibitorsTable__note--content {
  width: 54%;
}

.c-exhibitorsTable__head--type,
.c-exhibitorsTable__note--type {
  width: 14%;
}

.c-exhibitorsTable tbody td {
  position: relative;
  vertical-align: middle;
  border: 1px solid #b2947f;
  border: .0625rem solid #b2947f;
  padding: 4px;
  padding: .25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
}

.c-exhibitorsTable tbody td.c-exhibitorsTable__note--name {
  padding-left: 30px;
  padding-left: 1.875rem;
}

.c-exhibitorsTable tbody td.c-exhibitorsTable__note--type {
  text-align: center;
}

.c-exhibitorsTable tbody tr:first-child td {
  border-top: none;
}

.c-exhibitorsTable__note--name > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 4px;
  padding-left: .25rem;
  height: 16px;
  height: 1rem;
}

.c-exhibitorsTable__note--name > span img {
  width: auto;
  height: 100%;
}

.c-exhibitorsTable__note--name > span.is-one-digit {
  padding-left: 8px;
  padding-left: .5rem;
}

.p-features__inner {
  position: relative;
}

.p-features__contents {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-features__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: self-end;
  -webkit-align-items: self-end;
  -ms-flex-align: self-end;
  align-items: self-end;
}

.p-features__row:last-of-type {
  gap: 40px;
  gap: 2.5rem;
}

.p-features__item {
  position: relative;
}

.p-features__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-features__item--make {
  width: 80%;
}

.p-features__item--make .p-features__card {
  position: relative;
  top: -40px;
  top: -2.5rem;
  right: 0;
}

.p-features__item--make .p-features__image {
  width: 100%;
}

.p-features__item--raffle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
  width: 80%;
}

.p-features__item--raffle .p-features__card {
  position: relative;
  top: -16px;
  top: -1rem;
}

.p-features__item--buy {
  width: 80%;
}

.p-featuresCard__content {
  position: relative;
}

.p-featuresCard__icon {
  position: absolute;
}

.p-featuresCard__image {
  display: inline-block;
  position: relative;
}

.p-featuresCard__header {
  display: inline-block;
  position: absolute;
  z-index: 3;
}

.p-featuresCard__pill {
  display: inline-block;
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 2.39px 2.39px 2.39px rgba(0, 0, 0, .5);
  box-shadow: 2.39px 2.39px 2.39px rgba(0, 0, 0, .5);
  border-radius: .5rem;
  background-color: #eb5c01;
  padding: 8px 16px;
  padding: .5rem 1rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.p-featuresCard__pill--icon {
  position: relative;
  padding: 8px 16px 8px 32px;
  padding: .5rem 1rem .5rem 2rem;
}

.p-featuresCard__pill--icon::before {
  position: absolute;
  top: 50%;
  left: -55px;
  left: -3.4375rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url('/assets/img/features_stamp.png') no-repeat center/contain;
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  content: '';
}

.p-featuresCard__message {
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
}

.p-featuresCard__icon {
  position: absolute;
}

.p-featuresCard--make .p-featuresCard__icon {
  top: 120px;
  top: 7.5rem;
  left: 80px;
  left: 5rem;
}

.p-featuresCard--make .p-featuresCard__icon img {
  width: 140px;
  width: 8.75rem;
}

.p-featuresCard--make .p-featuresCard__header {
  top: 120px;
  top: 7.5rem;
  left: 240px;
  left: 15rem;
}

.p-featuresCard--make .p-featuresCard__image {
  top: -150px;
  top: -9.375rem;
  left: 460px;
  left: 28.75rem;
  width: 280px;
  width: 17.5rem;
}

.p-featuresCard--raffle .p-featuresCard__header {
  top: -160px;
  top: -10rem;
  left: 300px;
  left: 18.75rem;
}

.p-featuresCard--raffle .p-featuresCard__image {
  top: -40px;
  top: -2.5rem;
  left: 320px;
  left: 20rem;
  width: 600px;
  width: 37.5rem;
}

.p-featuresCard--feel .p-featuresCard__header {
  top: -120px;
  top: -7.5rem;
  left: 540px;
  left: 33.75rem;
}

.p-featuresCard--feel .p-featuresCard__image {
  top: -340px;
  top: -21.25rem;
  left: 0;
  width: 800px;
  width: 50rem;
}

.p-featuresCard--buy .p-featuresCard__header {
  top: -680px;
  top: -42.5rem;
  right: 0;
}

.p-featuresCard--buy .p-featuresCard__image {
  top: -500px;
  top: -31.25rem;
  right: -300px;
  right: -18.75rem;
  width: 600px;
  width: 37.5rem;
}

.p-featuresCard__content {
  gap: 16px;
  gap: 1rem;
  display: grid;
  grid-template-areas: 'header' 'image' 'icon';
}

.p-featuresCard__header {
  grid-area: header;
}

.p-featuresCard__image {
  grid-area: image;
}

.p-featuresCard__icon {
  grid-area: icon;
}

.p-featuresCard__content {
  gap: 16px;
  gap: 1rem;
  display: grid;
  grid-template-areas: 'header' 'image' 'icon';
}

.p-featuresCard__header {
  grid-area: header;
}

.p-featuresCard__image {
  grid-area: image;
}

.p-featuresCard__icon {
  grid-area: icon;
}

.p-footer {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

.p-footer__contrnts {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 900;
}

.p-footer__sponsorship {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.p-footer__text {
  -webkit-flex-shrink: unset;
  -ms-flex-negative: unset;
  flex-shrink: unset;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: -.03em;
}

.p-footer__logo {
  width: 40%;
}

.p-footer__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-footer__remark {
  font-size: 14px;
  font-size: .875rem;
}

.p-footer__note {
  font-size: 16px;
  font-size: 1rem;
}

.p-fv__inner {
  position: relative;
}

.p-fv__head {
  position: relative;
}

.p-fv__title {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-fv__meta {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-fv__contents {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-fv__image--day {
  width: 90%;
}

.p-fv__image--place {
  width: 70%;
}

.p-fv__message {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-fv__lead {
  display: inline-block;
  border-radius: 1.875rem;
  background-color: #fefff6;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

/* 左右アイコン */
.p-fv__iconLeft {
  position: absolute;
  bottom: -70px;
  bottom: -4.375rem;
  left: 20px;
  left: 1.25rem;
}

.p-fv__iconRight {
  position: absolute;
  right: 20px;
  right: 1.25rem;
  bottom: -60px;
  bottom: -3.75rem;
}

.p-fv__iconLeft img,
.p-fv__iconRight img {
  width: 56px;
  width: 3.5rem;
  height: auto;
}

.p-map__title {
  width: 50%;
}

.p-map__title img {
  width: 100%;
  height: 100%;
}

.p-map__board {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 12px solid rgba(241, 162, 131, .537254902);
  border: .75rem solid rgba(241, 162, 131, .537254902);
  background: #fff;
  background-clip: padding-box;
  padding: 20px 12px;
  padding: 1.25rem .75rem;
}

.p-map__stageTitle {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
}

.p-map__stageImages {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-map__stageImage {
  width: 80%;
}

.p-map__stageIcon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 140px;
  padding-top: 8.75rem;
}

.p-map__stageIcon img {
  width: 80px;
  width: 5rem;
}

.p-mapAccess__inner {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-mapAccess__map {
  width: 100%;
}

.p-mapAccess__access {
  width: 100%;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {

  html {
    font-size: .8888888889vw;
  }

  :root {
    --header-height: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1860px;
  }

  .l-container.l-container--narrow {
    max-width: 1500px;
  }

  .l-container.l-container--wide {
    max-width: 2220px;
  }

  .l-exhibitors {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .l-features {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .l-footer {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .l-mapAccess {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-access__inner {
    gap: 0;
  }

  .p-access__title {
    width: 440px;
    width: 27.5rem;
  }

  .p-access__board {
    border: 24px solid rgba(241, 162, 131, .537254902);
    border: 1.5rem solid rgba(241, 162, 131, .537254902);
    padding: 40px 20px;
    padding: 2.5rem 1.25rem;
  }

  .p-access__venue {
    padding-right: 150px;
    padding-right: 9.375rem;
    font-size: 58px;
    font-size: 3.625rem;
  }

  .p-access__qr {
    position: absolute;
    top: -10px;
    top: -.625rem;
    right: 0;
    width: 160px;
    width: 10rem;
  }

  .p-access__qr img {
    width: 100%;
  }

  .p-access__list {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-exhibitors__tables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .c-exhibitorsTable thead th {
    padding: 8px;
    padding: .5rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .c-exhibitorsTable--second thead {
    display: table-header-group;
  }

  .c-exhibitorsTable thead th:first-child {
    border-left: 1px solid #b2947f;
    border-left: .0625rem solid #b2947f;
  }

  .c-exhibitorsTable tbody td {
    padding: 12px 8px;
    padding: .75rem .5rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .c-exhibitorsTable tbody td.c-exhibitorsTable__note--name {
    padding-left: 50px;
    padding-left: 3.125rem;
  }

  .c-exhibitorsTable tbody td.c-exhibitorsTable__note--type {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-exhibitorsTable__note--name > span {
    left: 4px;
    left: .25rem;
    padding-left: 4px;
    padding-left: .25rem;
    height: 28px;
    height: 1.75rem;
  }

  .p-features__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: normal;
    -webkit-align-items: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-features__row:last-of-type {
    gap: 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-features__item--play {
    width: 50%;
  }

  .p-features__item--make {
    width: 45%;
  }

  .p-features__item--make .p-features__card {
    top: -140px;
    top: -8.75rem;
    left: 0;
  }

  .p-features__item--make .p-features__image {
    width: 80%;
  }

  .p-features__item--raffle {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }

  .p-features__item--raffle .p-features__card {
    position: absolute;
    top: -200px;
    top: -12.5rem;
  }

  .p-features__item--raffle .p-features__image {
    margin: 0 auto;
    padding-right: 120px;
    padding-right: 7.5rem;
    width: 700px;
    width: 43.75rem;
  }

  .p-features__item--feel {
    width: 62%;
  }

  .p-features__item--feel .p-features__card {
    position: relative;
    top: -210px;
    top: -13.125rem;
    margin-bottom: -210px;
    margin-bottom: -13.125rem;
  }

  .p-features__item--buy {
    width: 37%;
  }

  .p-features__item--buy .p-features__card {
    position: relative;
    top: -210px;
    top: -13.125rem;
    margin-bottom: -210px;
    margin-bottom: -13.125rem;
  }

  .p-featuresCard__pill {
    border-radius: 1rem;
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
    font-size: 55px;
    font-size: 3.4375rem;
  }

  .p-featuresCard__pill--icon {
    padding: 20px 40px 20px 80px;
    padding: 1.25rem 2.5rem 1.25rem 5rem;
  }

  .p-featuresCard__pill--icon::before {
    width: 150px;
    width: 9.375rem;
    height: 150px;
    height: 9.375rem;
  }

  .p-footer {
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-footer__sponsorship {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: unset;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .p-footer__text {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 46px;
    font-size: 2.875rem;
  }

  .p-footer__logo {
    width: auto;
  }

  .p-footer__contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-footer__remark {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-footer__note {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-fv__head {
    padding-left: 60px;
    padding-left: 3.75rem;
  }

  .p-fv__meta {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-right: 60px;
    padding-right: 3.75rem;
    padding-left: 110px;
    padding-left: 6.875rem;
  }

  .p-fv__contents {
    gap: 100px;
    gap: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-fv__image--day {
    width: 54%;
  }

  .p-fv__image--place {
    width: 40%;
  }

  .p-fv__lead {
    padding: 10px 100px;
    padding: .625rem 6.25rem;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.4;
  }

  .p-fv__iconLeft {
    bottom: -30px;
    bottom: -1.875rem;
    left: 70px;
    left: 4.375rem;
  }

  .p-fv__iconRight {
    right: 60px;
    right: 3.75rem;
    bottom: -30px;
    bottom: -1.875rem;
  }

  .p-fv__iconLeft img,
  .p-fv__iconRight img {
    width: 170px;
    width: 10.625rem;
  }

  .p-map__title {
    width: 400px;
    width: 25rem;
  }

  .p-map__board {
    border: 24px solid rgba(241, 162, 131, .537254902);
    border: 1.5rem solid rgba(241, 162, 131, .537254902);
    padding: 40px 20px;
    padding: 2.5rem 1.25rem;
  }

  .p-map__stageTitle {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-map__stageImages {
    gap: 30px;
    gap: 1.875rem;
  }

  .p-map__stageImage {
    width: 65%;
  }

  .p-map__stageIcon img {
    width: 140px;
    width: 8.75rem;
  }

  .p-mapAccess__inner {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-mapAccess__map {
    width: 52%;
  }

  .p-mapAccess__access {
    width: 48%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1800px) {

  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */