:root {
  --outer-width: 1000px;
  --inner-width: 900px;
  --orange: #FF9C00;
}
#main .introduction {
  margin: 50px auto;
  max-width: var(--outer-width);
}
@media (max-width: 950px) {
  #main .introduction {
    padding: 0 20px;
  }
}
#main .introduction .texts {
  margin: 20px 0;
}
#main .introduction .texts.fadeup_text {
  opacity: 0;
}
#main .introduction .texts.fadeup_text:has(p.aos-animate) {
  opacity: 1;
}
#main .introduction .texts p {
  margin: 0;
  font-size: 22px;
  line-height: 42px;
  letter-spacing: 4px;
  text-align: center;
}
#main .introduction .texts p + p {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #main .introduction .texts p {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 2px;
    font-feature-settings: "palt";
  }
}
@media (max-width: 550px) {
  #main .introduction .texts p {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0;
  }
}
#main .map {
  width: 100%;
  max-width: 900px;
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  #main .map {
    margin: 50px auto;
  }
}
#main .map img {
  display: block;
  width: 100%;
  height: 660px;
  object-fit: contain;
  margin: auto;
}
#main .map img[src=""] {
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  #main .map img {
    height: auto;
    aspect-ratio: 1.5;
  }
}
#main .stage {
  margin: 50px auto;
}
#main .stage .title-h3 {
  max-width: var(--outer-width);
}
@media (max-width: 950px) {
  #main .stage {
    padding: 0 20px;
  }
}
#main .stage .pic-columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  max-width: var(--inner-width);
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  #main .stage .pic-columns {
    display: block;
  }
}
#main .stage .pic-columns .column {
  flex: 1 1 50%;
}
@media screen and (max-width: 767px) {
  #main .stage .pic-columns .column + .column {
    margin-top: 40px;
  }
}
#main .stage .pic-columns .column .pic img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1.3333333333;
  object-fit: cover;
}
#main .stage .pic-columns .column .title {
  margin: 20px auto;
  position: relative;
  font-size: 20px;
  font-weight: 700;
}
#main .stage .pic-columns .column .title span {
  display: block;
  position: relative;
  z-index: 10;
  border: 3px solid var(--orange);
  line-height: 48px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(90deg, #FFB33C66 0%, #FFD79966 100%);
  font-size: 16px;
}
#main .stage .pic-columns .column .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(../media/images/common/bg_tex.png) no-repeat left center / cover;
  border-radius: 8px;
  opacity: 0.8;
}
#main .stage .pic-columns .column .sub_title {
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0;
  text-align: center;
}
#main .stage .pic-columns .column .texts {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #main .stage .pic-columns .column .texts {
    font-size: 14px;
  }
}
#main .stage .pic-columns .column .show-time-table {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
#main .stage .pic-columns .column .show-time-table .btn {
  display: block;
  width: 300px;
  height: auto;
  line-height: 65px;
  background: #fee4c0;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition-duration: 0.2s;
}
#main .stage .pic-columns .column .show-time-table .btn:hover {
  background-color: #ffd08f;
}
@media screen and (max-width: 767px) {
  #main .stage .pic-columns .column .show-time-table .btn {
    line-height: 50px;
    font-size: 16px;
  }
}
#main .showcase {
  margin-top: 100px;
}
@media (max-width: 950px) {
  #main .showcase {
    padding: 0 20px;
  }
}
#main .showcase .title-h3 {
  max-width: var(--outer-width);
}
#main .showcase .caption {
  margin: 20px auto;
  max-width: 960px;
}
#main .showcase .header-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 20px;
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: var(--outer-width);
}
@media screen and (max-width: 767px) {
  #main .showcase .header-items {
    gap: 10px;
  }
}
#main .showcase .header-items li a {
  position: relative;
  display: block;
  background: white;
  border-radius: 6px;
  text-decoration: none;
  transition-duration: 0.2s;
}
#main .showcase .header-items li a:hover {
  background-color: #ffdfbd;
}
#main .showcase .header-items li a:hover span {
  border-color: var(--orange);
}
#main .showcase .header-items li a span {
  position: relative;
  display: block;
  border: 1px solid #999;
  border-radius: 4px;
  padding: 6px 30px 6px 18px;
  color: black;
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #main .showcase .header-items li a span {
    padding: 3px 25px 3px 15px;
    font-size: 14px;
  }
}
#main .showcase .header-items li a span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 12px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../media/images/common/icon_button_arrow.svg) no-repeat center center/ contain;
}
@media screen and (max-width: 767px) {
  #main .showcase .header-items li a span::after {
    right: 9px;
    width: 8px;
    height: 8px;
  }
}
#main .showcase .header-items li.active a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: transparent url(../media/images/common/bg_tex.png) no-repeat left center / cover;
  border-radius: 6px;
  opacity: 0.8;
}
#main .showcase .header-items li.active a span {
  background: linear-gradient(90deg, #FFB33C66 0%, #FFD79966 100%);
}
#main .showcase .header-items li.active a span::after {
  top: calc(50% + 5px);
}
#main .showcase .content-wrapper {
  display: flex;
  margin: 50px auto 0;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  #main .showcase .content-wrapper {
    position: relative;
  }
}
#main .showcase .content-wrapper .left-pics, #main .showcase .content-wrapper .right-pics {
  flex: 0 0 300px;
}
@media (max-width: 1100px) {
  #main .showcase .content-wrapper .left-pics, #main .showcase .content-wrapper .right-pics {
    flex-basis: 200px;
  }
}
#main .showcase .content-wrapper .left-pics img, #main .showcase .content-wrapper .right-pics img {
  max-width: 100%;
}
#main .showcase .content-wrapper .left-pics .pic + .pic, #main .showcase .content-wrapper .right-pics .pic + .pic {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #main .showcase .content-wrapper .left-pics, #main .showcase .content-wrapper .right-pics {
    display: none;
  }
}
#main .showcase .content-wrapper .right-pics {
  padding-top: 120px;
}
#main .showcase .content-wrapper .sp-pics {
  display: none;
}
@media screen and (max-width: 767px) {
  #main .showcase .content-wrapper .sp-pics {
    display: block;
    overflow: hidden;
  }
}
#main .showcase .content-wrapper .sp-pics .sp-pics_wrap {
  width: 60vw;
  position: absolute;
  left: 60%;
  top: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 60px 0;
}
#main .showcase .content-wrapper .sp-pics .sp-pics_wrap .pic {
  height: 12%;
  width: 100%;
  min-height: 0;
  aspect-ratio: 0.7894736842;
}
#main .showcase .content-wrapper .sp-pics .sp-pics_wrap .pic img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#main .showcase .content-wrapper .content-items {
  flex: 1 1 auto;
  list-style: none;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  #main .showcase .content-wrapper .content-items {
    position: relative;
    z-index: 2;
    margin: 0 20px 20px -4px;
    padding: 20px 40px 60px 0;
    background: #FFFFFFE5;
  }
}
#main .showcase .content-wrapper .content-items li + li {
  margin-top: 40px;
}
#main .showcase .content-wrapper .content-items li .item-name {
  font-size: 16px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  border: 1px solid #2E2E2E;
  border-radius: 50px;
  color: #353535;
  text-align: center;
}
#main .showcase .content-wrapper .content-items li .title {
  margin: 15px 0 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
#main .showcase .content-wrapper .content-items li .lead {
  margin: 15px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
#main .showcase .content-wrapper .content-items li .lead.lead_left {
  text-align: left;
}
#main .showcase .content-wrapper .content-items li .contents {
  margin: 15px 0 0;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  #main .showcase .content-wrapper .content-items li .contents {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #main .showcase .content-wrapper .content-items li .contents {
    font-size: 14px;
  }
}
#main .showcase .content-wrapper .content-items li .contents .bold {
  font-weight: bold;
}
#main .showcase .content-wrapper .content-items li .pic {
  display: none;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #main .showcase .content-wrapper .content-items li .pic {
    display: block;
  }
}
#main .showcase .content-wrapper .content-items li .pic img {
  width: auto;
  height: 200px;
}
#main .showcase .showcase_pic_note {
  margin: 10px auto;
  max-width: 1200px;
  font-weight: 400;
  font-size: 12px;
  text-align: right;
}
@media print, screen and (max-width: 1200px) {
  #main .showcase .showcase_pic_note {
    padding: 0 10px;
  }
}
#main .exhibition-modal {
  z-index: 1100;
}
#main .exhibition-modal .seminar_timetable {
  margin-top: 20px;
}
#main .exhibition-modal .seminar_timetable .timetables .timetable {
  padding: 20px;
  display: none;
}
#main .exhibition-modal .seminar_timetable .timetables .timetable.active {
  display: block;
}
#main .exhibition-modal .seminar_timetable .timetables .timetable .inner {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 30px;
  background: white;
}
@media screen and (max-width: 767px) {
  #main .exhibition-modal .seminar_timetable .timetables .timetable .inner {
    display: block;
  }
}
#main .exhibition-modal .seminar_timetable .timetables .timetable .inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right-width: 2px;
  border-right-style: solid;
}
@media screen and (max-width: 767px) {
  #main .exhibition-modal .seminar_timetable .timetables .timetable .inner::before {
    display: none;
  }
}
#main .exhibition-modal .seminar_timetable .timetables .timetable .inner .left, #main .exhibition-modal .seminar_timetable .timetables .timetable .inner .right {
  flex: 0 0 calc(50% - 20px);
}
#main .exhibition-modal .seminar_timetable .timetables .timetable .inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#main .exhibition-modal .seminar_timetable .timetables .timetable .inner ul li + li {
  margin-top: 10px;
}
#main .exhibition-modal .seminar_timetable .timetables .timetable .inner ul li .time {
  width: 170px;
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  background: linear-gradient(90deg, #FEB358EE 0%, #FFC799EE 100%);
  border-radius: 50px;
  text-align: center;
}
#main .exhibition-modal .seminar_timetable .timetables .timetable .inner ul li .seminar {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 700;
}
#main .exhibition-modal .seminar_timetable .timetables .timetable .inner ul li .company {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #main .exhibition-modal .seminar_timetable .timetables .timetable:nth-child(1) .inner {
    border: 2px solid var(--var-color1-dark);
  }
  #main .exhibition-modal .seminar_timetable .timetables .timetable:nth-child(2) .inner {
    border: 2px solid var(--var-color2-dark);
  }
  #main .exhibition-modal .seminar_timetable .timetables .timetable:nth-child(3) .inner {
    border: 2px solid var(--var-color3-dark);
  }
}
#main .exhibition-modal .modal_body:has(.trend_stage_list_wrap) {
  background: #FFFCF1;
  height: 90vh;
  max-height: 90vh;
}
#main .exhibition-modal .modal_body:has(.trend_stage_list_wrap) .scroll {
  padding: 17px 18px;
  max-height: 100%;
  overflow: scroll;
}
#main .exhibition-modal .trend_stage_list_wrap .trend_stage_list {
  margin: 18px 0;
  padding-left: 0;
  list-style: none;
}
#main .exhibition-modal .trend_stage_list_wrap .trend_stage_list > li {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #main .exhibition-modal .trend_stage_list_wrap .trend_stage_list > li {
    display: block;
  }
}
#main .exhibition-modal .trend_stage_list_wrap .trend_stage_list > li + li {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #main .exhibition-modal .trend_stage_list_wrap .trend_stage_list > li + li {
    margin-top: 20px;
  }
}
#main .exhibition-modal .trend_stage_list_wrap .trend_stage_list .stage_title {
  position: relative;
  flex: 0 0 340px;
  margin-right: 24px;
  padding: 5px;
  border-radius: 20px;
  background: linear-gradient(90deg, #FEB358 0%, #FFC799 100%);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #main .exhibition-modal .trend_stage_list_wrap .trend_stage_list .stage_title {
    margin: 0 0 10px;
  }
}
#main .exhibition-modal .trend_stage_list_wrap .trend_stage_list .stage_title::before {
  content: "";
  background: url(../media/images/common/seminar-bg2.jpg) no-repeat center left / cover;
  opacity: 0.3;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 20px;
  pointer-events: none;
}
#main .exhibition-modal .trend_stage_list_wrap .trend_stage_list .stage_title .stage_title_main {
  position: relative;
  z-index: 2;
}
#main .exhibition-modal .trend_stage_list_wrap .trend_stage_list .stage_copy {
  flex: 1 1 auto;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #main .exhibition-modal .trend_stage_list_wrap .trend_stage_list .stage_copy {
    font-size: 15px;
  }
}
#main .exhibition-modal .trend_stage_list_wrap .stage_note {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
}
/*# sourceMappingURL=./exhibition.css.map */