@charset "UTF-8";
:root {
  --light: #fff;
  --dark: #21201e;
  --primary: #9C836A;
  --primary-transparent: rgba(156, 131, 106, 0);
  --text-primary: #222;
  --text-light: #FEC;
  --text-gray: #808080;
  --fill-gray: #F9F9F9;
  --fill-light: #807366;
  --fill-dark: #4D4843;
  --line-primary: #DDD;
  --line-light: #808080;
  --family-arsenal: Arsenal;
  --family-noto: "Noto Sans JP";
}
/* facility icon
---------------------------------------- */
.facilityIcon {
  display:none !important;
  flex-grow: 0;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background: var(--primary);
}
/* section
---------------------------------------- */
/*
.section {
  padding: 90px 40px 100px;
}
*/
.section.map + section{margin-top:120px !important;}
.sectionInner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.fxBox{display: flex;align-items: center;justify-content: center;}
.h140{height: 140px;}
.f140{font-size:140px !important;}
.sectionDesc{font-size: 30px;font-weight: 300;text-align: center;margin: 8px 0 72px;line-height: 30px;}
.sectionTitle {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  color: var(--primary);
  font-size: 1.125rem;
}
.sectionTitle span {
  order: 2;
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1;
}
.sectionTitle small {
  order: 1;
  display: block;
  font-family: var(--family-arsenal), sans-serif;
  font-size: 5.75rem;
  line-height: 1.25;
  speak: none;
}
.-light .sectionTitle, .-dark .sectionTitle {
  color: currentColor;
}
.sectionTitle.-sub {
  margin-bottom: 40px;
  color: var(--text-light);
}
.sectionTitle.-sub span {
  margin-bottom: 15px;
}
.sectionTitle.-sub small {
  font-size: 3.875rem;
}
.-gray .sectionTitle.-sub {
  color: var(--text-primary);
}
.sectionBody + .sectionBody, .sectionBody:has(+ .sectionBody) {
  position: relative;
  padding-top: 40px;
  padding-bottom: 80px;
  border-top: 1px solid var(--line-light);
}
.-gray .sectionBody + .sectionBody, .-gray .sectionBody:has(+ .sectionBody) {
  border-top: 1px solid var(--line-primary);
}
.sectionBody.-banner {
  padding-bottom: 60px;
}
.sectionBody .btnGroup > a{padding:0 56px;}
.sectionLead {
  margin-top: -30px;
  margin-bottom: 50px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.sectionMore {
  margin-top: 50px;
}
.sectionMore.-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  transform: translateY(50%);
}
.section.-gray {
  background-color: var(--fill-gray);
}
.section.-light {
  background-color: var(--fill-light);
  color: var(--light);
}
.section.-dark {
  background-color: var(--fill-dark);
  color: var(--light);
}
.section.-nopadding {
  padding: 0;
}
.map {
  position: relative;
  display: flex;
  gap: 27px;
  width: 100%;
}
.map + .sectionMore {
  margin-top: 30px;
}

.mapImage {
  position: relative;
  width: 570px;
  height: 476px;
  border: 1px solid var(--line-primary);
}
.mapImage::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/top/bg_map.png) no-repeat 0 0/cover;
}
.mapImageItem {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.mapImageItem.on {
  z-index: 2;
}
.mapImageItem img {
  width: 100%;
}

.mapNav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  counter-reset: map-num;
}
.mapNavItem {
  display: block;
  counter-increment: map-num;
}
.mapNavTitle {
  display: flex;
  align-items: center;
  gap: 1px;
  width: 264px;
  height: 39px;
}
.mapNavTitle::before {
  flex: 0 0 24px;
  display: block;
  content: counter(map-num);
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: var(--text-primary);
  border-radius: 50%;
  color: var(--light);
  font-weight: 400;
  line-height: 22px;
  transition: background 0.4s;
}
.mapNavTitle.on::before {
  background: var(--primary);
}
.mapNavTitleIcon {
  width: 40px;
  padding: 1.5px;
}
.mapNavTitleLabel {
  flex-grow: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 14px;
  padding-right: 25px;
  background: var(--primary-transparent);
  font-size: 0.875rem;
  font-weight: 400;
  transition: background 0.4s;
}
.mapNavTitle.on .mapNavTitleLabel {
  background: var(--primary);
  color: var(--light);
}

.mapNavBody {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translateY(10px);
  transition: transform 0.6s, opacity 0.6s;
  width: 270px;
  opacity: 0;
  pointer-events: none;
  background: var(--light);
  width: 270px;
  border: 1px solid var(--line-primary);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
}
.mapNavBody::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 490px;
}
.mapNavBody.on {
  z-index: 2;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  transition: transform 0.3s, opacity 0.3s;
}

.mapCard {
  padding-bottom: 30px;
}
.mapCardImage {
  position: relative;
}
.mapCardImage img {
  width: 100%;
}
.mapCardImageIcon {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
}
.mapCardTitle {
  position: relative;
  margin: 16px 25px 0;
}
.mapCardTitle small {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
}
.mapCardTitle strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
}
.mapCardSummary {
  position: relative;
  margin: 12px 25px 0;
  color: var(--text-gray);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.714285714;
}
.mapCardMore {
  position: relative;
  margin: 16px 25px 0;
}
.mapCardMoreInner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: -moz-max-content;
  width: max-content;
  color: var(--primary) !important;
  transition: gap 0.3s;
}
.mapCardMoreInner:hover {
  gap: 24px;
}
.mapCardMoreLabel {
  font-size: 0.875rem;
  font-weight: 400;
}
.mapCardMoreIcon {
  width: 33px;
  height: 4px;
  margin-bottom: 2px;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
}
.-dark .mapCardMoreIcon {
  stroke: currentColor;
}

.allmenuTrigger {
  display: flex;
  align-items: center;
}
.allmenuTrigger span {
  line-height: 1;
}
.allmenuTriggerIcon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 1em;
  fill: none;
  stroke: var(--light);
  stroke-width: 1px;
  vertical-align: middle;
}
.allmenuTriggerIcon use {
  transform-origin: center;
  transition: 0.3s;
}
.allmenuTriggerIcon use.default {
  opacity: 0;
}
.allmenuTriggerIcon use:not(.default) {
  opacity: 1;
}
.allmenuTriggerIcon use.allmenuCloseIconLine1 {
  rotate: 45deg;
}
.allmenuTriggerIcon use.allmenuCloseIconLine2 {
  rotate: -45deg;
}
.allmenuTrigger.on .allmenuTriggerIcon {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--light);
}
.allmenuTrigger.on .allmenuTriggerIcon use.default {
  opacity: 0;
}
.allmenuTrigger.on .allmenuTriggerIcon use:not(.default) {
  opacity: 1;
}

.allmenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  overflow-y: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  background: #000;
  border: none;
  color: #fff;
}
.allmenu[open] {
  opacity: 1;
  pointer-events: all;
}
.allmenu a {
  color: currentColor;
}
.allmenuInner {
  padding: 66px 132px 66px 83px;
}
.allmenuBody {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "1 2 3 4" "arttainment arttainment arttainment arttainment" "convention convention convention convention";
  gap: 50px 30px;
}
.allmenuClose {
  position: fixed;
  top: 47px;
  right: 35px;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.allmenuClose span {
  display: block;
  margin-inline: auto;
  font-weight: inherit;
}
.allmenuCloseIcon {
  display: block;
  width: 30px;
  height: 30px;
  margin-top: 6px;
  margin-inline: auto;
  fill: none;
  stroke: var(--light);
}
.allmenuCloseIcon use {
  transform-origin: center;
}
.allmenuCloseIcon .allmenuCloseIconLine1 {
  rotate: 45deg;
}
.allmenuCloseIcon .allmenuCloseIconLine2 {
  rotate: -45deg;
}

.allmenuDepth2 {
  padding-top: 24px;
  border-top: 1px solid;
}
.allmenuDepth2.-arttainment {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-area: arttainment;
}
.allmenuDepth2.-convention {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-area: convention;
}
.allmenuDepth2Title {
  font-size: 1rem;
  font-weight: 700;
}

.-arttainment .allmenuDepth3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 30px;
}
.-convention .allmenuDepth3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "meeting 1" "meeting 2" "meeting 3";
  gap: 0 30px;
}
.allmenuDepth3Group {
  margin-top: 24px;
}
.allmenuDepth3Group.-meeting {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  grid-area: meeting;
}
.allmenuDepth3Title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.428571429;
}
.allmenuDepth3Title a {
  font-weight: inherit;
}
.allmenuDepth3Body > p,
.allmenuDepth3Body > li {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.428571429;
}
.allmenuDepth3Body > p::before,
.allmenuDepth3Body > li::before {
  display: inline-block;
  content: "・";
}
.allmenuDepth3Body a {
  font-weight: inherit;
}
#main #headerWrap li.apGnb.allmenuBtn > a{margin-left:32px;}
#main #headerWrap li.apGnb.allmenuBtn:before{left:0px;}
.bgnoneI.allmenuTrigger:after{height:0px !important;}