/* =============================================================================
exhibitors CSS
=============================================================================== */

.search_input_area {
  padding-bottom: 30px;
}

.nav_tab_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 5px;
  padding: 10px 10px 0 10px;
  background-color: #fff;
}
.nav_tab_list ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-weight: 700;
  transition: all 400ms ease;
  border-bottom: 1px solid #ededed;
  color: #7c8191;
  position: relative;
  background-color: #fff;
}
.nav_tab_list ul li::before {
  content: "";
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 1px;
  height: 25%;
  background-color: #ededed;
}
.nav_tab_list ul li:last-child::before {
  display: none;
}

.nav_tab_list ul li::after {
  content: "keyboard_double_arrow_right";
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 18px;
  transition: all 400ms ease;
  z-index: 2;
  line-height: 1.6;
   width: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav_tab_list ul li:hover {
  color: var(--ceatecblue);
  background-color: #dff2fb;
}

.nav_tab_list ul li.active {
  background-color: #fff;
  background-color: var(--ceatecblue);
  color: #fff;
  border-bottom: none;
}
.nav_tab_list ul li.active::before {
  display: none;
}
.nav_tab_list ul li.active::after {
  color: #fff;
  transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
}

.search_input_area {
  margin-bottom: 0.5em;
  padding:15px 20px 20px;
  background-color: #ededed;
}

.search_input_area .searchbox {
  display: none;
  transition: all 400ms ease;
  border-top: none;
  padding: 10px;
  background-color: #fff;
}
.search_input_area .searchbox.show {
  display: block;
}
.searchbox .box_input {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ededed;
}

.searchbox form input[type="text"] {
  padding: 0px 15px 0 20px;
  border: none;
  line-height: 2.5;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.searchbox .search_submit,
.searchbox .search_reset {
  border: none;
  line-height: 2;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: all 400ms ease;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border: none;
}

.searchbox .search_submit {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  color: #fff;
  background-color: var(--ceatecblue);
  position: relative;
  padding-left: 1em;
}
.searchbox .search_submit::before {
  content: "search";
  display: block;
  width: 35px;
  height: 30px;
  position: absolute;
  top: 0px;
  left: 5px;
  font-size: 20px;
}


.searchbox .search_reset {
  box-sizing: border-box;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  font-size: 14px;
}

.searchbox .search_submit:hover {
  background-color: #4e84dc;
}
.searchbox .search_reset:hover {
  color: #fff;
  background-color: #4e84dc;
}
.c-form-search > .search_submit,
.c-form-search > .search_reset,
.searchbox .box_input .search_submit,
.searchbox .box_input .search_reset {
  display: block;
  width: 100%;
  max-width: 200px;
  text-align: center;
}


.c-form-search {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.box_product_tags {
  display: grid;
    gap: 25px;
    margin-bottom: 25px;
  grid-template-columns: 1fr 1fr;
}

.c-form-search > .box_product_tags{
  width: 100%;
}


.searchbox .box_product_tags + .box_input {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  width: 80%;
  max-width: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.searchbox .box_product_tags + .box_input::before {
  display: none;
}

.product_tags li {
  margin-top: 5px;
}
.product_tags label {
  display: block;
  padding-left: 35px;
}
.product_tags label .text {
  position: relative;
  display: flex;
}
/*Checkboxes styles*/
.searchbox input[type="checkbox"] {
  display: none;
}
.searchbox .product_tags label input[type="checkbox"] + .text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #6cc0e5;
  position: absolute;
  left: -35px;
  top: 2px;
  opacity: 0.6;
  border-radius: 6px;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}
.searchbox .product_tags label input[type="checkbox"]:checked + .text:before {
  width: 10px;
  top: -5px;
  left: -28px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.search_input_area.logolist .searchbox{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.search_input_area.logolist h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search_input_area.logolist .searchbox .box_input {
  flex: 1;
  min-width: 0;
}

.menu_order {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 640px) {
  .menu_order {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

.menu_order li {
  width: calc((100% / 10) - 4px);
  margin: 0px 2px 3px;
  text-align: center;
  border-radius: 15px;
  line-height: 3;
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ededed;
  transition: 1s;
}

.menu_order li:hover {
  color: #fff;
  background-color: #7c8191;
}

.menu_order li.active {
  color: #fff;
  background-color: var(--ceatecblue);
}



ul.cat_color {
  display: flex;
  width: 100%;
  gap: 3px;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}
ul.cat_color li {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding:7px 3px;
  border-radius: 50px;
  transition: 
    transform 0.3s cubic-bezier(.4,0,.2,1),
    box-shadow 0.3s cubic-bezier(.4,0,.2,1),
    opacity 0.3s;
}
ul.cat_color li:hover {
  transform: scale(1.07);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.08);
  opacity: 0.88;
}

ul.cat_color li.catALL {
  flex: 1 1 50px;    /* 全選択だけ比率:1 */
  color: var(--ceatecblue);
  border: 1px solid var(--ceatecblue);
}
ul.cat_color li:not(.catALL) {
  flex: 2 1 0;       /* 他は比率:2（=全選択の2倍の幅になる） */
}


/* 1段階目：中間ブレイクポイント（例：max-width: 900pxで少し幅配分を変える） */
@media screen and (max-width: 900px) {
  ul.cat_color li.catALL {
    flex: 1 1 40px; /* もう少し小さく */
  }
  ul.cat_color li:not(.catALL) {
    flex: 1.5 1 0; /* 他も少し小さめ */
  }
}

/* 2段階目：スマホ（全部縦積み） */
@media screen and (max-width: 600px) {
  ul.cat_color {
    display: block;
  }
  ul.cat_color li,
  ul.cat_color li.catALL,
  ul.cat_color li:not(.catALL) {
    display: block;
    width: 100%;
    max-width: none;
    margin-bottom: 6px;
    flex: none;
  }
}

ul.cat_color li.catALL.active {
  background-color: var(--ceatecblue);
}

ul.cat_color li.catALL span {
  display: inline-block;
  margin-right: 0.5em;
  background-color: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 2px 3px;
  font-size: 10px;
  line-height: 1;
  color: var(--ceatecblue);
}

ul.cat_color li.general {
  color: var(--general);
  border: 1px solid var(--general);
}

ul.cat_color li.general.active {
  background-color: var(--general);
}

ul.cat_color li.partners {
  color: var(--partners);
  border: 1px solid var(--partners);
}

ul.cat_color li.partners.active {
  background-color: var(--partners);
}

ul.cat_color li.next {
  color: var(--next);
  border: 1px solid var(--next);
}

ul.cat_color li.next.active {
  background-color: var(--next);
}

ul.cat_color li.global {
  color: var(--global);
  border: 1px solid var(--global);
}

ul.cat_color li.global.active {
  background-color: var(--global);
}

ul.cat_color li.ai {
  color: var(--ai);
  border: 1px solid var(--ai);
}

ul.cat_color li.ai.active {
  background-color: var(--ai);
}

@media screen and (max-width: 940px) {
  ul.cat_color {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  ul.cat_color li.catALL {
    grid-row: 2;
    grid-column: 3 / span 1;
  }
}

@media screen and (max-width: 540px) {
  ul.cat_color {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  ul.cat_color li.catALL {
    grid-row: 3;
    grid-column: 2 / span 1;
  }
}

ul.cat_color li.active {
  color: #fff;
}

.exhibitorslist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 25px;
}

.exhibitors_logolist + .exhibitorslist{
  margin-top: 50px;
  margin-bottom: 80px;
}
.exhibitorslist.exhibitors_logolist{
  grid-template-columns: repeat(5, 1fr);
}

@media screen and (max-width: 767px) {
  .exhibitorslist.exhibitors_logolist{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 599px) {
  .exhibitorslist {
    grid-template-columns: repeat(1, 1fr);
  }
    .exhibitorslist.exhibitors_logolist{
    grid-template-columns: repeat(2, 1fr);
  }
}

.exhibitorslist .list_exhibitors_item .item_article {
  height: 100%;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.exhibitorslist.exhibitors_logolist .list_exhibitors_item .item_article {
  border-bottom: none;
  margin-bottom: 0px;
}

.exhibitorslist .list_exhibitors_item .item_article {
  height: 100%;
}

.exhibitorslist .list_exhibitors_item a {
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-rows: auto auto; /* Two rows for content stacking */
  justify-items: start;
  align-items: start;
  text-decoration: none;
  color: #000;
  gap: 0px 7px;
  width: calc(100% - 7px);
}
.exhibitorslist.exhibitors_logolist .list_exhibitors_item a {
  height: 100%;
}


.exhibitorslist .list_exhibitors_item h4 {
  grid-column: 1;
  grid-row: 1; /* Top-left for the title */
}

.exhibitorslist .list_exhibitors_item .company-desc {
  grid-column: 1;
  grid-row: 2; /* Below the title */
}

.exhibitorslist .list_exhibitors_item .booth {
  grid-column: 2;
  grid-row: 1; /* Top-right for the booth */
  text-align: end; /* Align text to the right */
}

.exhibitorslist .list_exhibitors_item .areaname {
  grid-column: 2;
  grid-row: 2; /* Below the booth */
  text-align: end; /* Align text to the right */
}

@media screen and (max-width: 540px) {
.exhibitorslist .list_exhibitors_item a {
    grid-template-columns: 60% 40%;
}
}


.exhibitorslist.exhibitors_logolist .list_exhibitors_item a {
  display: flex;
  flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}


.exhibitorslist .list_exhibitors_item  a.detaillink {
  height: 100%;
}

.exhibitorslist .list_exhibitors_item.deactive {
  display: none;
}


/* color */
.exhibitorslist.exhibitors_logolist li .item_article .img_exhibitor {
  text-align: center;
  position: relative;
  width: 100%;                /* 幅いっぱいに広げる */
  aspect-ratio: 1 / 1;        /* 正方形！ */
  border: 1px solid #eee;
  overflow: hidden;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
}

.exhibitorslist.exhibitors_logolist li .item_article .img_exhibitor img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.err_msg {
  margin-top: 20px;
  padding: 30px 0;
  text-align: center;
  background-color: #ededed;
}

/* タイトル・企業名 */

.page_content .exhibitorslist li .item_article_main.no_link {
  pointer-events: none;
}


.page_content .exhibitorslist li .item_article h4 {
  font-size: 18px;
  font-weight: bold;
  font-weight: 700;
      background: transparent;
    padding: 0px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.exhibitorslist li .item_article .company-desc {
  font-size: 11px;
  color: #666;
  padding-bottom: 5px;
  margin-bottom: auto;
}

.exhibitorslist li .item_article .gr-children .company-desc {
display: none;
}



.exhibitorslist li .item_article .booth {
  display: flex;
      font-weight: 700;
      gap: 5px;
      justify-content: flex-end;
      flex-wrap: wrap;
      line-height: 1.1;
      width: 100%;
}
.exhibitorslist li .item_article .list_gr-children .booth,
.exhibitorslist li .item_article .list_grandchildren .booth {
      gap: 3px;
      font-size: 118%;
}

.exhibitorslist.exhibitors_logolist li .item_article .booth,
.exhibitorslist.exhibitors_logolist li .item_article .list_gr-children .booth,
.exhibitorslist.exhibitors_logolist li .item_article .list_grandchildren .booth {
  width: 100%;
      align-items: center;
      justify-content: center;
}


/* エリア名ラベル */
.exhibitorslist li .item_article .category-label {
  font-size: 13px;
  color: #fff;
  padding: 3px 16px;
  border-radius: 14px;
  background: var(--category-color, #2979ff); /* JS/CSSで色を動的に指定可 */
  margin-top: 5px;
  text-align: center;
}

.exhibitorslist li .item_article .booth span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.en .exhibitorslist li .item_article .booth {
  font-size: 12px;
  width: 18em;
}

.exhibitorslist li .item_article .list_gr-children .booth,
.exhibitorslist li .item_article .list_grandchildren .booth {
      gap: 3x;
}


@media screen and (max-width: 640px) {
  .exhibitorslist li .item_article .booth {
    font-size: 13px;
  }
}

.exhibitorslist li.general .item_article .booth {
  color: var(--general);
}

.exhibitorslist li.partners .item_article .booth {
  color: var(--partners);
}

.exhibitorslist li.next .item_article .booth {
  color: var(--next);
}

.exhibitorslist li.global .item_article .booth {
  color: var(--global);
}

.exhibitorslist li.ai .item_article .booth {
  color: var(--ai);
}

.exhibitorslist li .item_article .booth .is-booth {
  font-size: 11px;
  font-weight: 700;
}
.exhibitorslist li .item_article .list_grandchildren .booth .is-booth,
.exhibitorslist li .item_article .list_gr-children .booth .is-booth {
  font-size: 10px;
}

@media screen and (max-width: 640px) {
  .exhibitorslist li .item_article .booth .is-booth {
    font-size: 10px;
  }
}

.exhibitorslist li .item_article .areaname{
  text-align: center;
  width: 100%;
  min-height: 1.3em;
  position: relative;
  color: #fff;
  margin-top: 3px;
}

.exhibitorslist li.general .item_article .areaname {
  background-color: var(--general);
}

.exhibitorslist li.partners .item_article .areaname {
  background-color: var(--partners);
  color: #000;
}

.exhibitorslist li.next .item_article .areaname {
  background-color: var(--next);
}

.exhibitorslist li.ai .item_article .areaname {
  background-color: var(--ai);
}

.exhibitorslist li .item_article .areaname::after {
  color: inherit;
  font-family: "LINESeedJP", sans-serif;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 11px;
  line-height: 1;
  padding: 5px 0;
}

.exhibitorslist li.general .item_article .areaname::after {
  content: "General Exhibits";
}

.exhibitorslist li.partners .item_article .areaname::after {
  content: "パートナーズ&グローバルパーク";
  color: #000;
}

.exhibitorslist li.ai .item_article .areaname::after {
  content: "AXパーク";
}

.exhibitorslist li.next .item_article .areaname::after {
  content: "ネクストジェネレーションパーク";
}



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

.exhibitorslist li .item_article .areaname::after {
  font-size: 10px;
}
}

.exhibitorslist li .item_article .parentbooth {
    margin-top: 10px;
}
.exhibitorslist li .item_article .parentbooth .btn_parentbooth {
  position: relative;
}
.exhibitorslist li .item_article .parentbooth .btn_parentbooth::before {
  color: #fff;
}
.exhibitorslist li .item_article .parentbooth .btn_parentbooth::after {
  color: inherit;
  font-family: "LINESeedJP", sans-serif;
  content: "共同/パビリオン出展 親出展者";
  position: absolute;
  left: 0px;
  top: 0;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}
.en .exhibitorslist li .item_article .parentbooth .btn_parentbooth::after {
  content: "JOINT/PAVILION EXHIBITORS PARENT EXHIBITOR";
}
.exhibitorslist li.general .item_article .parentbooth .btn_parentbooth {
  background-color: var(--general);
}

.exhibitorslist li.partners .item_article .parentbooth .btn_parentbooth {
  background-color: var(--partners);
}
.exhibitorslist li.partners .item_article .parentbooth .btn_parentbooth::before,
.exhibitorslist li.partners .item_article .parentbooth .btn_parentbooth::after {
  color: #000;
}

.exhibitorslist li.next .item_article .parentbooth .btn_parentbooth {
  background-color: var(--next);
}

.exhibitorslist li.global .item_article .parentbooth .btn_parentbooth {
  background-color: var(--global);
}

.exhibitorslist li.ai .item_article .parentbooth .btn_parentbooth {
  background-color: var(--ai);
}

.exhibitorslist li .item_article .parentbooth .gr-children {
}
.exhibitorslist li .item_article .parentbooth .list_gr-children,
.exhibitorslist li .item_article .parentbooth .list_gr-children .list_grandchildren {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
    padding-left: 1em;
}
@media screen and (max-width: 639px) {
  .exhibitorslist li .item_article .parentbooth .list_gr-children {
    display: block;
  }
}
.exhibitorslist li .item_article .parentbooth .list_gr-children li {
  margin-top: 5px;
}
.exhibitorslist li .item_article .parentbooth .gr-children .item_article_children {
  display: grid;
  grid-template-columns: 70% 1fr;
  width: 100%;
}

.exhibitorslist li .item_article .parentbooth .item_article_children h5 {
  line-height: 1.4;
  font-size: 14px;
}
.exhibitorslist li .item_article .parentbooth .item_article_children h5::before,
.exhibitorslist li .item_article .parentbooth .item_article_children h5::after {
  display: none;
}
.exhibitorslist li .item_article .parentbooth .item_article_grandchildren h6 {
  line-height: 1.2;
  font-size: 12px;
}
@media screen and (max-width: 940px) {
  .exhibitorslist li .item_article .parentbooth .item_article_children h5 {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .exhibitorslist li .item_article .parentbooth .item_article_children h5 {
    font-size: 12px;
  }
}
.exhibitorslist li .item_article .parentbooth .gr-open {
  padding: 5px 40px 3px 15px;
  /* border-top-width: 1px;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid; */
  border-radius: 50px;
  min-height: 0.9em;
  color: #fff;
}
.exhibitorslist li .item_article .parentbooth .gr-open + .gr-children {
  display: block;
}

.exhibitorslist li .item_article .parentbooth .gr-children a {
  font-size: 0.7rem;
}

.exhibitorslist li .item_article .parentbooth .gr-open::before {
  color: inherit;
  content: "menu_open";
  position: absolute;
  right: 10px;
  top: 2px;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.exhibitorslist li .item_article .parentbooth .gr-open::after {
  color: inherit;
  font-family: "LINESeedJP", sans-serif;
  content: "共同/パビリオン出展を閉じる";
  position: absolute;
  left: 10px;
  top: 5px;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
}
.en .exhibitorslist li .item_article .parentbooth .gr-open::after {
  content: "Close JOINT/PAVILION EXHIBITS";
}

.exhibitorslist li .item_article .parentbooth .gr-open {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  cursor: pointer;
}

.exhibitorslist li .item_article .parentbooth a {
  line-height: 1;
  padding: 3px 0;
}
