@charset "UTF-8";

:root {
  --white: #fff;
  --black: #000;

  /* 見どころのカラー */
  --tech-color: #93C4FF;
  --conference-color: #62D2C1;
  --workspace-color: #A6E882;
  --bento-color: #F7F68C;
  --stamp-color: #FFCE7C;
  --coffee-color: #FFA9B9;

  /* line-heightのハーフレディングを打ち消す */
  --leading-trim: calc((1em - 1lh) / 2);
}

/* lhがサポートされていない環境のためのフォールバック */
@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}


/*============================
初期設定
============================*/
a {
  text-decoration: none;
  color: var(--black);
}

p {
  color: var(--black);
  text-align: justify;
  word-break: break-all;
}

.en p {
  text-align: left;
  word-break: break-word;
}


/*============================
基本の汎用スタイル
============================*/
.ex-object {
  margin: 1rem;
  font-size: 1rem;
  transform: translate(1rem);
}

.interbee_preview {
  background: var(--white);
  position: relative;
  z-index: 1;
}

.txt_center {
  text-align: center;
}

.interbee_preview .under_line_link {
  border-bottom: 1px solid var(--black);
}

.indent {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}

.indentbefore {
  display: inline-block;
  padding-left: 1em;
  position: relative;
}

.indentbefore:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.en_indentbefore {
  display: inline-block;
  padding-left: 0.5em;
  position: relative;
}

.en_indentbefore:before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}

br.tab {
  display: none;
}

@media screen and (max-width:768px) {
  br.tab {
    display: block;
  }

  br.pc {
    display: none;
  }
}

/* ── レスポ調整用 ── */
.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

.pc_tablet_only {
  display: block;
}

@media screen and (max-width: 850px) {
  .pc_only {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .pc_tablet_only {
    display: none;
  }

  .sp_only {
    display: block;
  }
}


/*============================
共通レイアウト
============================*/
.interbee_preview {
  background: var(--white);
  position: relative;
  z-index: 1;
}

.inner {
  max-width: 1060px;
  padding: 60px 20px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 1;
}

.inner p.small_txt {
  font-size: 15px;
}

@media screen and (max-width: 850px) {
  .inner {
    padding: 40px 20px;
  }
}

/* 画像を親要素に合わせる */
figure img.ob_fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ── グラデーションボタン ── */
.btn.arrow_btn {
  display: block;
  padding: .5rem 4rem;
  border-radius: 100px;
  font-weight: bold;
  position: relative;
  font-size: 1.2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  width: max-content;
  background: -moz-linear-gradient(90deg, #2f67f6 0%, #6022d2 50%, #2f67f6 100%) !important;
  transition: .3s ease;
  background: linear-gradient(90deg, #2f67f6 0%, #6022d2 50%, #2f67f6 100%);
  background-size: 200% 100%;
  border: none;
}

.btn.arrow_btn:hover {
  background-position: 100% 0;
}

.btn.arrow_btn:after {
  font-family: "Font Awesome 5 Free";
  content: '\f061';
  color: #ffffff;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: all .2s;
}

@media screen and (max-width: 768px) {
  .btn.arrow_btn:after {
    right: 20px;
  }
}


/*============================
.interbee_preview
============================*/
.interbee_preview .flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.interbee_preview .flex_box .cont_l,
.interbee_preview .flex_box .cont_r {
  width: 47.5%;
}

.interbee_preview h2 {
  position: relative;
  display: inline-block;
  margin-block: var(--leading-trim);
  margin-bottom: 60px;
  margin-left: 35px;
  font-weight: bold;
  font-size: 35px;
  line-height: 1.0;
  text-align: center;
}

.interbee_preview h2 .subtitle {
  font-weight: bold;
  color: #140d6a;
  font-size: 15px;
  text-align: center;
  display: block;
  margin-top: 10px;
  line-height: 1.0;
  margin-left: -35px;
}

.interbee_preview h2+h3 {
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  word-break: break-word;
  margin-block: var(--leading-trim);
  margin-bottom: 30px;
}

.interbee_preview h2+h3+p {
  margin-block: var(--leading-trim);
  margin-bottom: 30px;
  text-align: center;
}

.inner p {
  margin-bottom: 30px;
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: -0.1px;
  margin-bottom: 15px;
  text-align: left;
}

/* アイコン設定 */
.icon:before {
  content: '';
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  top: 4px;
  left: -21px;
  background-repeat: no-repeat;
  position: absolute;
}

.en .icon:before {
  top: 5px;
  left: -23px;
}

/* ページ上部のアイコン */
.page_nav .overview_icon:before {
  background-image: url(../img/forvisitors/preview/calendar_icon_w.svg);
  background-size: contain;
}

.page_nav .visit_icon:before {
  background-image: url(../img/forvisitors/preview/ticket_icon_w.svg);
  background-size: contain;
}

.page_nav .highlights_icon:before {
  background-image: url(../img/forvisitors/preview/darts_icon_w.svg);
  background-size: contain;
}

.page_nav .what_interbee_icon:before {
  background-image: url(../img/forvisitors/preview/question_icon_w.svg);
  background-size: contain;
}

.page_nav .special_events_icon:before {
  background-image: url(../img/forvisitors/preview/star_icon_w.svg);
  background-size: contain;
}

.page_nav .access_icon:before {
  background-image: url(../img/forvisitors/preview/location_icon_w.svg);
  background-size: contain;
}

.page_nav .lodging_icon:before {
  background-image: url(../img/forvisitors/preview/hotel_icon_w.svg);
  background-size: contain;
}

@media screen and (max-width: 480px) {
  .page_nav .icon:before {
    top: 3px;
  }

  .en .page_nav .icon:before {
    top: -2px;
    left: -20px;
  }

  .en .page_nav .icon.overview_icon:before {
    top: 3px;
  }
}


/* タイトルのアイコン */
.interbee_preview h2.icon:before {
  width: 2rem;
  height: 2rem;
  top: 0;
  left: -42px;
}

.interbee_preview h2.icon.overview_icon:before {
  background-image: url(../img/forvisitors/preview/calendar_icon.svg);
  background-size: contain;
  background-position: center;
}

.interbee_preview h2.icon.visit_icon:before {
  background-image: url(../img/forvisitors/preview/ticket_icon.svg);
  background-size: cover;
}

.interbee_preview h2.icon.highlights_icon:before {
  background-image: url(../img/forvisitors/preview/darts_icon.svg);
  background-size: cover;
}

.interbee_preview h2.icon.what_interbee_icon:before {
  background-image: url(../img/forvisitors/preview/question_icon.svg);
  background-size: cover;
}

.interbee_preview h2.icon.special_events_icon:before {
  background-image: url(../img/forvisitors/preview/star_icon_w.svg);
  background-size: contain;
  background-position: center;
}

.interbee_preview h2.icon.access_icon:before {
  background-image: url(../img/forvisitors/preview/location_icon.svg);
  background-size: contain;
  background-position: center;
}

.interbee_preview h2.icon.lodging_icon:before {
  background-image: url(../img/forvisitors/preview/hotel_icon.svg);
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 1080px) {
  .interbee_preview h2 {
    font-weight: bold;
    font-size: 33px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }

  .interbee_preview h2.icon.access_icon:before {
    left: -15px;
  }

  .interbee_preview h2.icon.lodging_icon:before {
    left: -22px;
  }
}

@media screen and (max-width: 530px) {
  .interbee_preview h2 .subtitle {
    margin-top: 5px;
  }
}


/* サイドナブのアイコン */
#side_nav_cont .icon:before {
  width: 1rem;
  height: 1rem;
  margin-right: 10px;
  top: 4px;
  left: 0;
}

#side_nav_cont_mb .icon:before {
  width: .9rem;
  height: .9rem;
  margin-right: 10px;
  top: 5px;
  left: 0;
}

#side_nav_cont .icon.overview_icon:before,
#side_nav_cont_mb .icon.overview_icon:before {
  background-image: url(../img/forvisitors/preview/calendar_icon.svg);
  background-size: contain;
  background-position: center;
}

#side_nav_cont .icon.visit_icon:before,
#side_nav_cont_mb .icon.visit_icon:before {
  background-image: url(../img/forvisitors/preview/ticket_icon.svg);
  background-size: contain;
}

#side_nav_cont .icon.highlights_icon:before,
#side_nav_cont_mb .icon.highlights_icon:before {
  background-image: url(../img/forvisitors/preview/darts_icon.svg);
  background-size: contain;
}

#side_nav_cont .icon.what_interbee_icon:before,
#side_nav_cont_mb .icon.what_interbee_icon:before {
  background-image: url(../img/forvisitors/preview/question_icon.svg);
  background-size: contain;
}

#side_nav_cont .icon.special_events_icon:before,
#side_nav_cont_mb .icon.special_events_icon:before {
  background-image: url(../img/forvisitors/preview/star_icon.svg);
  background-size: contain;
  background-position: center;
}

#side_nav_cont .icon.access_icon:before,
#side_nav_cont_mb .icon.access_icon:before {
  background-image: url(../img/forvisitors/preview/location_icon.svg);
  background-size: contain;
  background-position: center;

}

#side_nav_cont .icon.lodging_icon:before,
#side_nav_cont_mb .icon.lodging_icon:before {
  background-image: url(../img/forvisitors/preview/hotel_icon.svg);
  background-size: contain;
}


@media screen and (max-width: 850px) {
  .interbee_preview h2+h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .interbee_preview h2 {
    margin: 0 0 20px 15px;
    font-size: 1.875rem;
  }

  .interbee_preview h2+h3+p {
    margin-bottom: 20px;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .interbee_preview h2+h3 {
    font-size: 15px;
  }

  .interbee_preview .flex_box .cont_l {
    width: 100%;
  }

  .interbee_preview .flex_box .cont_r {
    width: 90%;
    margin: 15px auto 0;
  }

  .inner p {
    margin-bottom: 10px;
  }

  .c_special_events .events li .content h3 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .inner {
    padding: 40px 20px;
  }

  .interbee_preview h2 {
    margin-top: 0;
    font-size: 24px;
    word-break: auto-phrase;
  }

  .interbee_preview .flex_box .cont_r {
    width: 100%;
    margin: 0 auto 0;
  }

  .interbee_preview h2.icon:before {
    width: 22px;
    height: 22px;
    left: -25px;
  }

  .inner p {
    font-size: 1rem;
  }

  .en .interbee_preview h2.icon.overview_icon:before {
    left: -23px;
  }
}

@media screen and (max-width:480px) {
  .interbee_preview h2.icon.c_special_events_icon:before {
    left: 0;
  }

  .en .interbee_preview h2.icon.c_special_events_icon:before {
    left: -18px;
  }
}


/*============================
MV
============================*/

.sp_mv {
  display: none;
}

@media screen and (max-width:768px) {
  .pc_mv {
    display: none !important;
    position: relative;
    z-index: 2;
  }

  .sp_mv {
    display: block !important;
    position: relative;
    z-index: 2;
  }
}



/*============================
.page_nav（ページナビ）
============================*/

/* ── ページナビと開催概要の背景画像 ── */
.page_nav_wrap {
  background: url(../img/forvisitors/preview/overview_bg.webp);
  background-size: cover;
  background-position: center;
  z-index: 2;
  position: relative;
}

/* ── ページナビ ── */
.interbee_preview .page_nav {
  padding: 60px 20px 0;
}

.interbee_preview .page_nav .inner {
  padding: 0 20px;
}

.interbee_preview .page_nav .nav_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  row-gap: 15px;
}

.interbee_preview .page_nav .nav_list li span {
  font-weight: bold;
  width: max-content;
  display: inline-block;
  position: relative;
  font-size: 1.125rem;
}

.interbee_preview .page_nav .nav_list li {
  position: relative;
  flex: 1 1 30%;
}

.interbee_preview .page_nav .nav_list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  color: var(--white);
  font-weight: bold;
  font-size: 1.125rem;
  background: linear-gradient(90deg, #2f67f6 0%, #6022D2 100%);
  border-radius: 6px;
}

.interbee_preview .page_nav .nav_list li a:hover {
  opacity: .7;
  background: #3a28cc;
}

.interbee_preview .page_nav .nav_list li:nth-child(4),
.interbee_preview .page_nav .nav_list li:nth-child(7) {
  margin-right: 0;
}

.interbee_preview .nav_list li:after,
.c_highlights .highlights_list_item a:after {
  content: "";
  border: 0;
  border-bottom: solid 2px var(--white);
  border-right: solid 2px var(--white);
  display: inline-block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) rotate(45deg);
}

.c_highlights .highlights_list_item a:after {
  border-bottom: solid 3px var(--white);
  border-right: solid 3px var(--white);
  right: 40px;
}

@media screen and (max-width: 1086px) {
  .interbee_preview .page_nav .nav_list li a {
    font-size: 1.0625rem;
  }

  .icon:before {
    width: 1rem;
    height: 1rem;
  }

  .en .interbee_preview .page_nav .nav_list {
    column-gap: 10px;
    row-gap: 10px;
  }

  .en .interbee_preview .page_nav .nav_list li {
    flex: 1 1 40%;
  }
}

@media screen and (max-width: 850px) {
  .interbee_preview .page_nav {
    padding: 40px 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .interbee_preview .page_nav .inner {
    padding: 0;
  }

  .interbee_preview .page_nav .nav_list {
    column-gap: 10px;
    row-gap: 10px;
  }

  .interbee_preview .page_nav .nav_list li {
    flex: 1 1 40%;
  }

  .interbee_preview .page_nav .nav_list li span {
    font-size: 1rem;
  }
}

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

  .interbee_preview .nav_list li:after,
  .c_highlights .highlights_list_item a:after {
    width: 4px;
    height: 4px;
    right: 8px;
  }

  .interbee_preview .page_nav .nav_list li a {
    padding-left: 10px;
    font-size: 1.0625rem;
  }

  .interbee_preview .page_nav .nav_list li span {
    font-size: .875rem;
  }

  .en .interbee_preview .page_nav .nav_list li span {
    font-size: .8125rem;
  }

  .en.interbee_preview .page_nav .nav_list li span {
    line-height: 1.0;
    text-align: left;
  }

  .icon:before {
    left: -18px;
  }
}


/*============================
.banner_section（バナー掲載エリア）
============================*/
.banner_section .inner {
  padding: 40px 20px 0 20px;
}

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

.banner_col2 .banner_link {
  flex: 0 0 49%;
}

@media screen and (max-width: 480px) {
  .banner_section .inner {
    padding: 30px 20px 0 20px;
  }

  .banner_col2 {
    flex-direction: column;
  }
}


/*============================
#c_overview（開催概要・来場方法）
============================*/

/* ── 開催概要 ── */
.c_overview .contents_wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
}

.c_overview .cont_l.flex_box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.c_overview .cont_l .date_list_time,
.c_overview .cont_l .date_list_location {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-left: 3%;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 30px;
}

.c_overview .date_list .date_list_location {
  margin-top: 30px;
}

.c_overview .date_list dt {
  width: 80px;
  font-size: 25px;
  font-weight: bold;
}

.en .c_overview .date_list dt {
  display: flex;
}

.c_overview .date_list dd {
  width: calc(100% - 85px);
  line-height: 2.5;
  font-size: 1.375rem;
  text-align: left;
  margin-block: var(--leading-trim);
}

.en .c_overview .date_list .date_list_location dd {
  line-height: 1.5;
}

.mini_text_venue {
  font-size: clamp(.875rem, 2vw, 1.0625rem);
}

@media screen and (max-width: 1080px) {
  .c_overview .date_list dt {
    font-size: 23px;
    width: 75px;
  }

  .c_overview .date_list dd {
    font-size: 1.25rem;
    letter-spacing: -.9px;
    width: calc(100% - 75px);
  }
}

@media screen and (max-width: 850px) {
  .c_overview .contents_wrap {
    row-gap: 40px;
  }

  .c_overview .date_list dt {
    margin-bottom: 5px;
    font-size: 1.375rem;
    width: 100%;
    text-align: left;
  }

  .c_overview .date_list dd {
    font-size: 19px;
    letter-spacing: -.9px;
    width: 100%;
  }

  .c_overview .date_list .date_list_location {
    margin-top: 20px;
  }

  .c_overview .cont_l.flex_box {
    margin: 0 auto;
  }

  .c_overview .flex_box .overview_img_wrap {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .c_overview .contents_wrap {
    row-gap: 30px;
  }

  .c_overview .flex_box .overview_img_wrap {
    width: 90%;
    height: 300px;
    margin: 30px auto 0;
  }

  .c_overview .cont_l .date_list_time,
  .c_overview .cont_l .date_list_location {
    width: 90%;
    margin-left: 0;
    margin: 0 auto;
    text-align: center;
    justify-content: start;
  }

  .c_overview .date_list .date_list_location {
    margin-top: 20px;
  }

  .c_overview .date_list dt {
    font-size: 23px;
    width: 75px;
  }

  .c_overview .date_list dd {
    text-align: left;
    font-size: 1.125rem;
  }
}

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

  .c_overview .cont_l .date_list_time,
  .c_overview .cont_l .date_list_location {
    margin: unset;
  }

  .c_overview .date_list .date_list_location {
    margin-top: 20px;
  }

  .c_overview .date_list dt {
    font-size: 1.125rem;
    width: 100%;
  }

  .c_overview .date_list dd {
    width: 100%;
    font-size: 15px;
    line-height: 2;
  }

  .c_overview .flex_box .overview_img_wrap {
    width: 100%;
    height: 200px;
  }
}


/* ── 来場方法 ── */
.visit_cont .txt_cont .service_cont {
  text-align: center;
  background: url(../img/forvisitors/preview/service_cont.webp);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 20px;
}

.visit_cont .visit_text {
  font-size: 1.125rem;
}

.visit_cont .service_title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-block: var(--leading-trim);
  margin-bottom: 5px;
}

.visit_cont .service_text {
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.visit_cont .service_text::after {
  content: "";
  display: block;
  width: 108%;
  left: -19px;
  height: 1px;
  position: relative;
  top: 13px;
  border-bottom: 1px dashed var(--black);
}

.visit_cont .service_sub-title {
  margin-top: 10px;
  margin-bottom: 5px;
  display: inline-block;
  font-size: 1rem;
}

.visit_cont .txt_cont .service_cont .small_txt {
  margin-bottom: 0;
  font-size: .875rem;
  text-align: center;
}

@media screen and (max-width: 850px) {
  .visit_cont.flex_box .visit_img_wrap {
    width: 48%;
  }

  .visit_cont .service_text::after {
    left: -14px;
  }
}

@media screen and (max-width: 768px) {
  .visit_cont.flex_box .visit_img_wrap {
    width: 90%;
    height: 300px;
    margin: 10px auto 0;
  }
}

@media screen and (max-width: 480px) {
  .visit_cont .txt_cont .service_cont h4+p:after {
    width: 103%;
    left: -4px;
  }

  .visit_cont .service_title {
    font-size: 1rem;
  }

  .visit_cont .service_text {
    font-size: .875rem;
  }

  .visit_cont .service_text::after {
    left: -10px;
  }

  .visit_cont .txt_cont .service_cont .small_txt {
    font-size: 12px;
  }


  .visit_cont.flex_box .visit_img_wrap {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
  }

  .visit_cont .visit_text {
    font-size: 1rem;
  }
}

/* ── 幕張メッセ近隣ホテル情報 ── */
.hotel-info {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 1%;
  width: 100%;
  padding: 30px;
  position: relative;
  background: url(../../../assets/img/forvisitors/preview/hotel-info_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.hotel-info::before {
  content: "";
  background-image: url(../../../assets/img/forvisitors/preview/icon_hotel.png);
  aspect-ratio: 25 / 45;
  width: 80px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -105px;
  left: -40px;
  z-index: 100;
  pointer-events: none;
}

.interbee_preview .hotel-info h2.icon:before {
  left: -25px;
  width: 20px;
  height: 20px;
}

.hotel-info .module-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.hotel-info .module-header .title-group {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.hotel-info .heading {
  margin-bottom: unset;
  margin-left: 25px;
  font-size: 1.375rem;
  text-align: left;
}

.hotel-info .description {
  margin-bottom: unset;
  font-size: 1rem;
}

.hotel-info .promo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 28%;
}

.en .hotel-info .promo-section {
  flex: 0 0 33%;
}

.hotel-info .promo-images {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  flex: 0 0 auto;
}

.hotel-info .img-responsive {
  position: relative;
  width: 16px;
  height: 26px;
}

.hotel-info .promo-note {
  margin-bottom: unset;
  font-size: 1rem;
}

.hotel-info .btn.arrow_btn {
  width: 100%;
  max-width: 240px;
  padding: 10px 20px 10px 10px;
}

.en .hotel-info .btn.arrow_btn {
  width: 100%;
  max-width: 270px;
  padding: 10px 30px 10px 10px;
}

.en .hotel-info .btn.arrow_btn:after {
  right: 20px;
}

@media screen and (max-width: 1100px) {
  .hotel-info::before {
    width: 60px;
    top: -85px;
    left: 0;
  }
}

@media screen and (max-width: 850px) {
  .hotel-info .heading {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .hotel-info {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    row-gap: 10px;
  }

  .hotel-info::before {
    top: -65px;
  }

  .hotel-info .module-header {
    align-items: center;
  }

  .hotel-info .heading {
    font-size: 1.125rem;
  }

  .en .hotel-info .heading {
    font-size: 1rem;
  }

  .interbee_preview .hotel-info h2.icon:before {
    width: 16px;
    height: 16px;
  }

  .hotel-info .description {
    text-align: center;
  }

  .hotel-info .promo-section {
    gap: 5px;
  }

  .hotel-info .promo-note {
    font-size: .875rem;
  }
}

@media screen and (max-width: 480px) {
  .hotel-info {
    width: 100%;
  }

  .hotel-info::before {
    top: 150px;
    left: -10px;
  }

  .en .hotel-info::before {
    top: 160px;
  }

  .hotel-info .description {
    font-size: .875rem;
  }
}


/*============================
#c_highlights（見どころ）
============================*/

.highlights-container {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  padding: 60px;
  position: relative;
  background-image: url(./img/2025.png);
  background-size: cover;
  background-position: 50% 50%;
}

.interbee_preview .highlights h2 {
  margin-bottom: unset;
}

.highlights .inner {
  padding: 0 20px;
}

/* ー 固定背景画像の指定 ー */
.c_highlights {
  height: 100%;
}

.hoge_attachment {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.hoge_attachment_clip {
  display: block;
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  height: 100%;
  z-index: -2;
}

.hoge_attachment img {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  height: auto;
  left: 0;
  top: 0;
  pointer-events: none;
}

/* ── ナビゲーション全体 ── */
.highlights-page-nav {
  display: block;
  width: 100%;
  background: transparent;
}

.highlights-page-nav .page-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.highlights-page-nav .page-nav-item {
  flex: 1 1 calc(33.33% - 20px);
  box-sizing: border-box;
}

.highlights-page-nav .page-nav-link {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
}

.highlights-page-nav .page-nav-link::after {
  content: "";
  border: 0;
  border-bottom: solid 2px var(--black);
  border-right: solid 2px var(--black);
  display: inline-block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.highlights-page-nav .page-nav-figure {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  height: 115px;
  width: 100%;
  padding: 20px;
}

.highlights-page-nav .page-nav-figure:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}

.highlights-page-nav .page-nav-caption {
  font-size: clamp(.75rem, 1.6vw, 1rem);
  font-weight: 700;
  text-align: left;
}

.en .highlights-page-nav .page-nav-caption {
  flex: 0 0 60%;
}

.highlights-page-nav .page-nav-image {
  object-fit: cover;
  display: block;
}

.highlights-page-nav .page-nav-decorator {
  position: relative;
  width: 16px;
  height: 16px;
}

.highlights-page-nav .page-nav-decorator-icon {
  position: absolute;
  left: 0;
}

/* 映像・音響 */
.highlights-page-nav .page-nav-item--tech .page-nav-figure {
  background-color: var(--tech-color);
  border: 2px solid #0b5dbf;
  padding: 10px 20px;
}

.en .highlights-page-nav .page-nav-item--tech .page-nav-caption {
  flex: 0 0 70%;
}

.highlights-page-nav .page-nav-item--tech .page-nav-image {
  width: 50px;
  height: 57px;
  margin-right: -12px;
}

.highlights-page-nav .page-nav-item--tech .page-nav-decorator-icon {
  width: 14px;
  height: 10px;
  top: 3px;
}

.en .highlights-page-nav .page-nav-item--tech .page-nav-caption {
  font-size: clamp(.625rem, 1.4vw, .875rem);
  line-height: 1.4;
}

/* カンファレンス＆セミナー */
.highlights-page-nav .page-nav-item--conference .page-nav-figure {
  background-color: var(--conference-color);
  border: 2px solid #00816d;
  padding: 10px 20px;
}

.highlights-page-nav .page-nav-item--conference .page-nav-image {
  width: 90px;
  height: 90px;
}

.en .highlights-page-nav .page-nav-item--conference .page-nav-image {
  width: 80px;
  height: 80px;
}

.en .highlights-page-nav .page-nav-item--conference .page-nav-caption {
  flex: 0 0 55%;
}

.highlights-page-nav .page-nav-item--conference .page-nav-decorator-icon {
  width: 14px;
  height: 9px;
  top: 3px;
}

/* テレワーク・ラウンジ */
.highlights-page-nav .page-nav-item--workspace .page-nav-figure {
  background-color: var(--workspace-color);
  border: 2px solid #308800;
  gap: 20px;
}

.highlights-page-nav .page-nav-item--workspace .page-nav-image {
  width: 70px;
  height: 74px;
  margin-right: -16px;
}

.en .highlights-page-nav .page-nav-item--workspace .page-nav-caption {
  font-size: clamp(.625rem, 1.4vw, .875rem);
  line-height: 1.4;
}

.highlights-page-nav .page-nav-item--workspace .page-nav-decorator-icon {
  width: 14px;
  height: 9px;
  top: 3px;
}

/* ロケ弁グランプリ */
.highlights-page-nav .page-nav-item--bento .page-nav-figure {
  background-color: var(--bento-color);
  border: 2px solid #828000;
}

.highlights-page-nav .page-nav-item--bento .page-nav-image {
  width: 70px;
  height: 34.88px;
  margin-right: -11px;
}

.en .highlights-page-nav .page-nav-item--bento .page-nav-caption {
  font-size: clamp(.625rem, 1.4vw, .875rem);
  line-height: 1.4;
}

.highlights-page-nav .page-nav-item--bento .page-nav-decorator-icon {
  width: 14px;
  height: 9px;
  top: 3px;
}

/* スタンプラリー */
.highlights-page-nav .page-nav-item--stamp .page-nav-figure {
  background-color: var(--stamp-color);
  border: 2px solid #c17a00;
}

.highlights-page-nav .page-nav-item--stamp .page-nav-image {
  width: 65px;
  height: 67px;
}

.highlights-page-nav .page-nav-item--stamp .page-nav-decorator-icon {
  width: 14px;
  height: 9px;
  top: 3px;
}

/* Coffee Marche */
.highlights-page-nav .page-nav-item--coffee .page-nav-figure {
  background-color: var(--coffee-color);
  border: 2px solid #c8314e;
  display: flex;
  align-items: center;
}

.highlights-page-nav .page-nav-item--coffee .page-nav-image {
  width: 80px;
  height: 54px;
  margin-top: -9.5px;
  margin-bottom: -9.5px;
  margin-right: -4px;
}

.highlights-page-nav .page-nav-item--coffee .page-nav-decorator-icon {
  width: 14px;
  height: 9px;
  top: 5px;
}

@media screen and (max-width: 1000px) {
  .en .highlights-page-nav .page-nav-item {
    flex: 1 1 48%;
  }
}

@media screen and (max-width: 850px) {
  .highlights-page-nav .page-nav-list {
    gap: 10px;
  }

  .highlights-page-nav .page-nav-item {
    flex: 1 1 48%;
  }

  .highlights-page-nav .page-nav-figure {
    padding: 10px;
    height: 70px;
  }

  /* 映像・音響 */
  .highlights-page-nav .page-nav-item--tech .page-nav-figure {
    padding: 10px 20px 10px 10px;
  }

  .highlights-page-nav .page-nav-item--tech .page-nav-image {
    width: 40px;
    height: 47px;
  }

  /* カンファレンス＆セミナー */
  .highlights-page-nav .page-nav-item--conference .page-nav-figure {
    padding: 10px 20px 10px 10px;
  }

  .highlights-page-nav .page-nav-item--conference .page-nav-image,
  .en .highlights-page-nav .page-nav-item--conference .page-nav-image {
    width: 47px;
    height: 47px;
  }

  /* テレワーク・ラウンジ */
  .highlights-page-nav .page-nav-item--workspace .page-nav-figure {
    padding: 10px 30px 10px 10px;
    gap: 10px;
  }

  .highlights-page-nav .page-nav-item--workspace .page-nav-image {
    width: 40px;
    height: 42px;
  }

  /* ロケ弁グランプリ */
  .highlights-page-nav .page-nav-item--bento .page-nav-image {
    width: 55px;
    height: 27px;
  }

  /* スタンプラリー */
  .highlights-page-nav .page-nav-item--stamp .page-nav-image {
    width: 50px;
    height: 52px;
  }

  /* Coffee Marche */
  .highlights-page-nav .page-nav-item--coffee .page-nav-image {
    width: 55px;
    height: 37px;
  }
}

@media screen and (max-width: 480px) {
  .highlights .inner {
    padding: 0;
  }

  .highlights-page-nav .page-nav-figure {
    padding: 10px 25px 10px 10px;
    gap: 0;
  }

  .highlights-page-nav .page-nav-link::after {
    border-bottom: solid 1px var(--black);
    border-right: solid 1px var(--black);
    width: 4px;
    height: 4px;
    right: 10px;
  }

  .en .highlights-page-nav .page-nav-caption {
    flex: 0 0 76%;
  }

  /* 映像・音響 */
  .highlights-page-nav .page-nav-item--tech .page-nav-image {
    width: 30px;
    height: 35px;
  }

  .en .highlights-page-nav .page-nav-item--tech .page-nav-caption {
    line-height: 1.2;
  }

  /* カンファレンス＆セミナー */
  .en .highlights-page-nav .page-nav-item--conference .page-nav-caption {
    flex: 0 0 65%;
  }

  .highlights-page-nav .page-nav-item--conference .page-nav-image,
  .en .highlights-page-nav .page-nav-item--conference .page-nav-image {
    width: 40px;
    height: 40px;
  }

  /* テレワーク・ラウンジ */
  .highlights-page-nav .page-nav-item--workspace .page-nav-image {
    width: 35px;
    height: 37px;
  }

  /* ロケ弁グランプリ */
  .highlights-page-nav .page-nav-item--bento .page-nav-image {
    width: 40px;
    height: 20px;
  }

  /* スタンプラリー */
  .highlights-page-nav .page-nav-item--stamp .page-nav-image {
    width: 40px;
    height: 41px;
  }

  /* Coffee Marche */
  .highlights-page-nav .page-nav-item--coffee .page-nav-image {
    width: 45px;
    height: 28px;
  }
}


/* ── 詳細セクション ── */
.highlights-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  position: relative;
}

.highlights-details .detail-title_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  column-gap: 10px;
}

.highlights-details .small .detail-title_wrap {
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.highlights-details .detail {
  max-width: 1200px;
  border-radius: 10px;
  padding: 30px 50px;
  display: flex;
  position: relative;
  column-gap: 50px;
  row-gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.highlights-details .detail.small {
  gap: 50px;
}

.highlights-details .detail.reverse {
  flex-direction: row-reverse;
}

/* 映像・音響 (tech) */
.detail--tech {
  background: linear-gradient(112deg, rgba(221, 237, 255, 0.9) 0%, rgba(145, 197, 255, 0.9) 100%);
}

/* カンファレンス＆セミナー (conference) */
.detail--conference {
  background: linear-gradient(211deg, rgba(209, 254, 247, 0.9) 0%, rgba(107, 229, 211, 0.9) 100%);
}

/* テレワーク・ラウンジ (workspace) */
.detail--workspace {
  background: linear-gradient(160deg, rgba(232, 255, 220, 0.9) 0%, rgba(166, 232, 130, 0.9) 100%);
}

/* ロケ弁ラウンジ (bento) */
.detail--bento {
  background: linear-gradient(106deg, rgba(255, 255, 233, 0.9) 0%, rgba(247, 246, 140, 0.9) 100%);
}

/* 会場内スタンプラリー (stamp) */
.detail--stamp {
  background: linear-gradient(110deg, rgba(255, 241, 218, 0.9) 0%, rgba(255, 207, 124, 0.9) 100%);
}

/* Coffee Marche (coffee) */
.detail--coffee {
  background: linear-gradient(106deg, rgba(255, 236, 239, 0.9) 0%, rgba(255, 174, 189, 0.9) 100%);
}

/* 詳細項目のヘッダー */
.highlights-details .detail-header {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}

.highlights-details .detail-body {
  flex: 0 1 45%;
}

.highlights-details .detail-number-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.highlights-details .detail-number {
  color: #93C4FF;
  font-family: "Outfit", Helvetica;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.0;
}

.highlights-details .detail--conference .detail-number {
  color: #62D2C1;
}

.highlights-details .detail--workspace .detail-number {
  color: #A6E882;
}

.highlights-details .detail--bento .detail-number {
  color: #F9EA77;
}

.highlights-details .detail--stamp .detail-number {
  color: #FFCF7C;
}

.highlights-details .detail--coffee .detail-number {
  color: #FFA9B9;
}

.highlights-details .detail-number .number-label {
  font-family: "Outfit", Helvetica;
  font-weight: 900;
  font-size: 1.25rem;
}

.highlights-details .detail-number .number-index {
  font-family: "Outfit", Helvetica;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.0;
}

.highlights-details .detail .detail-icon {
  width: 52px;
}

.highlights-details .detail--conference .detail-icon {
  width: 80px;
}

.highlights-details .detail--workspace .detail-icon {
  width: 70px;
}

.highlights-details .detail--bento .detail-icon {
  width: 70px;
}

.highlights-details .detail--stamp .detail-icon {
  width: 65px;
}

.highlights-details .detail--coffee .detail-icon {
  width: 80px;
}

/* 詳細項目のタイトル（グラデーションテキスト） */
.highlights-details .detail-title {
  background: linear-gradient(90deg, rgba(47, 103, 246, 1) 0%, rgba(96, 34, 210, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
}

.highlights-details .detail--conference .detail-title {
  background: linear-gradient(90deg, #13907D 0%, #052F8A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlights-details .detail--workspace .detail-title {
  background: linear-gradient(90deg, #4EB301 0%, #029A93 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlights-details .detail--bento .detail-title {
  background: linear-gradient(90deg, #FFCC00 0%, #E42301 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlights-details .detail--stamp .detail-title {
  background: linear-gradient(90deg, #FFAA18 0%, #FF00D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlights-details .detail--coffee .detail-title {
  background: linear-gradient(90deg, #FF4769 0%, #FF710B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlights-details .detail-description {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.8;
}

.en .highlights-details .detail-description {
  font-size: 1rem;
  line-height: 1.6;
}

.highlights-details .detail-note {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
}

.en .highlights-details .detail-note {
  font-size: .875rem;
  line-height: 1.6;
}

.highlights-details .small .detail-body {
  flex: 0 1 30%;
}

.highlights-details .detail-description_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 850px) {
  .highlights-container {
    gap: 40px;
    padding: 40px;
  }

  /* ── 詳細セクション ── */
  .highlights-details {
    gap: 20px;
  }

  .highlights-details .detail {
    padding: 20px 30px;
    column-gap: 30px;
  }

  .highlights-details .detail.small {
    gap: 30px;
  }

  .highlights-details .detail-title_wrap {
    row-gap: 2px;
  }

  .highlights-details .detail-title {
    font-size: 1.375rem;
  }

  .highlights-details .detail-description {
    font-size: 1rem;
  }

  .highlights-details .detail-note {
    font-size: .875rem;
  }

  .highlights-details .detail-number .number-label {
    font-size: 1.125rem;
  }

  .highlights-details .detail-number .number-index {
    font-size: 1.75rem;
  }

  .highlights-details .detail .detail-icon {
    width: 32px;
  }

  .highlights-details .detail--conference .detail-icon {
    width: 60px;
  }

  .highlights-details .detail--workspace .detail-icon {
    width: 50px;
  }

  .highlights-details .detail--bento .detail-icon {
    width: 50px;
  }

  .highlights-details .detail--stamp .detail-icon {
    width: 45px;
  }

  .highlights-details .detail--coffee .detail-icon {
    width: 60px;
  }

  .highlights-details .detail-body {
    flex: 0 1 40%;
  }
}

@media screen and (max-width: 768px) {
  .highlights-container {
    gap: 30px;
    padding: 40px 20px;
  }

  .highlights-details .detail {
    flex-direction: column;
    padding: 20px;
  }

  .highlights-details .detail.small {
    gap: 20px;
  }

  .highlights-details .detail.reverse {
    flex-direction: column;
  }

  .highlights-details .small .detail-title_wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .highlights-details .detail-description {
    font-size: .875rem;
  }
}


/*============================
.banner_area（メルマガ登録バナー）
============================*/
.banner_area {
  padding: 60px 0;
  position: relative;
  background: url(../../../assets/img/top/exhibition_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.inner_wrap {
  padding: 40px 3%;
}

.banner_area figure {
  max-width: 900px;
  margin: 0 auto;
}

.banner_area figure.sp {
  display: none;
}

@media screen and (max-width: 850px) {
  .inner_wrap {
    padding: 30px 3%;
  }
}

@media screen and (max-width: 768px) {
  .banner_area figure.pc {
    display: none;
  }

  .banner_area figure.sp {
    display: flex;
    align-items: center;
    justify-content: center;
  }

}


/*============================
#c_what_interbee
============================*/
.c_what_interbee {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--white);
}

.c_what_interbee .inner p {
  margin-bottom: unset;
}

/* ー 背景右上のモチーフ ー */
.c_what_interbee.circle_bg::before {
  content: "";
  background-image: url(../img/top/schedule_treat.webp);
  display: block;
  position: absolute;
  top: -5%;
  right: 0;
  width: 364px;
  height: 500px;
  z-index: -1;
  transform: rotate(180deg);
}

.en .c_what_interbee.circle_bg::before {
  top: -10%;
  right: -5%;
}

/* ー 背景左下のモチーフ ー */
.c_what_interbee.circle_bg::after {
  content: "";
  background-image: url(../img/top/schedule_treat.webp);
  display: block;
  position: absolute;
  bottom: -9%;
  left: 0;
  width: 364px;
  height: 500px;
  z-index: -1;
  transform: rotate(340deg);
}

.c_what_interbee .c_what_interbee_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 60px;
}

.c_what_interbee .c_what_interbee_list li {
  width: 50%;
}

.c_what_interbee .c_what_interbee_list li a {
  display: block;
  width: 100%;
}

.c_what_interbee .c_what_interbee_list li img {
  width: 100%;
}

.c_what_interbee .process-diagram {
  margin-top: 30px;
}

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

  /* ー 背景左下のモチーフ ー */
  .c_what_interbee.circle_bg::after {
    bottom: -6%;
    left: -10%;
  }
}

@media screen and (max-width: 850px) {
  .c_what_interbee .c_what_interbee_list {
    margin-bottom: 20px;
  }

  .c_highlights .highlights_list_cont li h3 {
    font-size: 1.25rem;
  }

  /* ー 背景右上のモチーフ ー */
  .c_what_interbee.circle_bg::before {
    right: -110px;
    width: 270px;
    height: 320px;
    transform: rotate(160deg);
  }

  /* ー 背景左下のモチーフ ー */
  .c_what_interbee.circle_bg::after {
    bottom: -7%;
    left: -22%;
  }
}

@media screen and (max-width: 768px) {
  .c_what_interbee .c_what_interbee_list li {
    width: 100%;
  }

  /* ー 背景右上のモチーフ ー */
  .c_what_interbee.circle_bg::before {
    height: 350px;
    transform: rotate(170deg);
  }

  /* ー 背景左下のモチーフ ー */
  .c_what_interbee.circle_bg::after {
    bottom: -7%;
  }
}

@media screen and (max-width: 480px) {
  .c_what_interbee.circle_bg::before {
    height: 290px;
  }

  .en .c_what_interbee.circle_bg::before {
    top: -7%;
    right: -15%;
  }

  .c_what_interbee.circle_bg::after {
    height: 290px;
  }

  .en .c_what_interbee.circle_bg::after {
    bottom: -5%;
    left: -13%;
  }
}

/*============================
#c_special_events（Inter BEEならではの特別企画）
============================*/
.c_special_events {
  background: url(../img/top/events_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.c_special_events .inner {
  max-width: 1400px;
  padding: 60px 30px;
  background-color: inherit;
}

.c_special_events .special_events_icon,
.c_special_events .special_events_icon span {
  color: var(--white);
  text-shadow: 0px 0px 10px #06559e, 0px 0px 10px #06559e, 0px 0px 10px #06559e, 0px 0px 10px #06559e;
}

.c_special_events h2+h3 {
  color: var(--white);
  text-shadow: 0px 0px 10px #06559e, 0px 0px 10px #06559e, 0px 0px 10px #06559e, 0px 0px 10px #06559e;
}

.c_special_events .contents_description {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  text-shadow: 0px 0px 10px #06559e, 0px 0px 10px #06559e, 0px 0px 10px #06559e, 0px 0px 10px #06559e;
}

.c_special_events .inner._special {
  padding: 110px 50px;
  max-width: 1400px;
}

.c_special_events .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.c_special_events .top h2 {
  margin-bottom: 0;
  color: var(--black);
  width: 400px;
}

.c_special_events .top p {
  color: #010101;
  font-size: 1.0625rem;
  line-height: 1.8;
  width: calc(100% - 400px);
  max-width: 60%;
}

.c_special_events .events {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 2%;
}

.c_special_events .events li {
  width: 32%;
  max-width: 430px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  transition: all 0.2s;
  padding: 1.5rem;
  border-radius: 3px;
  position: relative;
}

.c_special_events .events li:nth-child(n + 7) {
  margin-bottom: 0;
}

.c_special_events .events li .content {
  padding-top: 10px;
}

.c_special_events .events li.red {
  background-color: #ffcdd1bf;
}

.c_special_events .events li.yellow {
  background-color: #ffefcdbf;
}

.c_special_events .events li.blue {
  background-color: rgba(179, 203, 255, 0.7);
}

.c_special_events .events li.purple {
  background-color: #f9cdffb5;
}

.c_special_events .events li.cinema {
  background: #bcbcbccf;
}

.c_special_events .events li.comingsoon {
  position: relative;
  pointer-events: none;
}

.c_special_events .events li.comingsoon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0000003b;
  top: 0;
  left: 0;
}

.c_special_events .events li .comingsoon_txt {
  position: absolute;
  background: #ffffffd1;
  padding: .7rem 1rem;
  width: 88%;
  text-align: center;
  font-size: 1.25rem;
  top: 64%;
  font-weight: bold;
  color: #1c1c1c9c;
  rotate: 15deg;
}

.c_special_events .events li.green {
  background-color: rgba(192, 235, 220, 0.7);
}

.c_special_events .events li.red:not(.disabled):hover {
  background-color: rgba(207, 177, 222, 1);
}

.c_special_events .events li.yellow:not(.disabled):hover {
  background-color: rgba(222, 234, 220, 1);
}

.c_special_events .events li.blue:not(.disabled):hover {
  background-color: rgba(179, 203, 255, 1);
}

.c_special_events .events li.purple:not(.disabled):hover {
  background-color: rgba(208, 206, 252, 1);
}

.c_special_events .events li.green:not(.disabled):hover {
  background-color: rgba(192, 235, 220, 1);
}

.c_special_events .events li.cinema:not(.disabled):hover {
  background-color: #f4f4f4d9;
}

.c_special_events .events li a {
  display: block;
}

.c_special_events .events li a:hover {
  opacity: 1 !important;
}

.c_special_events .events li.disabled a {
  pointer-events: none;
}

.c_special_events .events li figure img {
  width: 100%;
  height: auto;
}

.c_special_events .events li .content h3 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 15px;
}

.c_special_events .events li .content h3 a {
  font-weight: bold;
  text-align: left;
  text-shadow: 0px 0px 6px #fff, 0px 0px 6px var(--white);
}


.c_special_events .events li.red .content h3 a {
  color: #e60013;
  font-weight: bold;
}

.c_special_events .events li.blue .content h3 a {
  color: #02416f;
}

.c_special_events .events li.yellow .content h3 a {
  color: #d4860c;
}

.c_special_events .events li.green .content h3 a {
  color: #0e6d25;
}

.c_special_events .events li.purple .content h3 a {
  color: #725094;
}

.c_special_events .events li .content .target {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.c_special_events .events li .content .target h4 {
  font-size: 13px;
  font-weight: bold;
  color: var(--white);
  padding: 23px 0 31px;
  text-align: center;
  border-radius: 50%;
  width: 65px;
  height: 65px;
}

.en .c_special_events .events li .content .target h4 {
  padding: 16px 0 31px;
  line-height: 1.2;
}

.c_special_events .events li.red .content .target h4 {
  background-color: #e60012;
}

.c_special_events .events li.yellow .content .target h4 {
  background-color: #f39800;
}

.c_special_events .events li.blue .content .target h4 {
  background-color: #1f77b8;
}

.c_special_events .events li.purple .content .target h4 {
  background-color: #715094;
}

.c_special_events .events li.green .content .target h4 {
  background-color: #11a84e;
}

.c_special_events .events li.cinema .content .target h4 {
  background-color: var(--black);
}

.c_special_events .events li .content .target p {
  width: calc(96% - 65px);
  font-size: .875rem;
  line-height: 1.8;
  font-weight: bold;
}

.c_special_events .events li .content .target .att_txt {
  width: 100%;
  text-align: center;
  margin-top: 15px;
  background: #ebebeb;
  color: #474747;
  font-size: 13px;
  line-height: 1.4;
  padding: 5px 10px;
}


@media screen and (max-width: 1320px) {
  #special_events .top p {
    margin-top: 20px;
  }
}


@media screen and (max-width: 850px) {
  .c_special_events .inner {
    padding: 40px 20px;
  }
}


/* 481px-850px */
@media screen and (min-width: 481px) and (max-width: 850px) {
  .c_special_events .inner._special {
    padding: 60px 30px;
  }

  .c_special_events .top h2 {
    width: 100%;
    margin-bottom: 20px;
  }

  .c_special_events .top {
    margin-bottom: 20px;
  }

  .c_special_events .top p {
    max-width: unset;
    width: 100%;
    margin-top: 0;
  }

  .c_special_events .events li {
    width: 49%;
  }

  .c_special_events .events li .content .target {
    flex-flow: column;
    gap: 10px;
  }

  .c_special_events .events li .content .target h4 {
    padding: 10px 0;
    border-radius: unset;
    width: 100%;
    height: auto;
    margin-right: unset;
    border: 1px solid;
  }

  .en .c_special_events .events li .content .target h4 {
    padding: 10px 0;
  }

  .c_special_events .events li.red .content .target h4 {
    background-color: #ffffff1a;
    color: #e60012;
  }

  .c_special_events .events li.yellow .content .target h4 {
    background-color: #ffffff1a;
    color: #f39800;
  }

  .c_special_events .events li.blue .content .target h4 {
    background-color: #ffffff1a;
    color: #1f77b8;
  }

  .c_special_events .events li.purple .content .target h4 {
    background-color: #ffffff1a;
    color: #715094;
  }

  .c_special_events .events li.green .content .target h4 {
    background-color: #ffffff1a;
    color: #11a84e;
  }

  .c_special_events .events li .content .target p {
    width: 100%;
  }

  .c_special_events .events li:nth-child(-n + 8) {
    margin-bottom: 20px;
  }

  .c_special_events .events li:nth-child(n + 9) {
    margin-bottom: 0;
  }
}


/* 481px-600px */
@media screen and (min-width: 481px) and (max-width: 600px) {
  .c_special_events .events li {
    width: 48%;
  }

  .c_special_events .events li:nth-child(n + 7) {
    margin-bottom: 35px;
  }

  .c_special_events .inner._special {
    padding-top: 100px;
  }
}


@media screen and (max-width: 480px) {
  .c_special_events h2 {
    font-size: 20px;
  }

  .en .c_special_events .contents_description {
    font-size: 1rem;
    text-align: left;
  }

  .c_special_events .inner._special {
    padding: 50px 20px;
  }

  .c_special_events .top h2 {
    font-size: var(--font-size_38);
    width: 100%;
    padding: 0 0 20px 0;
  }

  .en .c_special_events .top h2 {
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  .main h2 small {
    display: block;
    margin-left: unset;
    margin-top: 10px;
  }

  .c_special_events .top p {
    width: 100%;
    max-width: unset;
  }

  .c_special_events .top {
    margin-bottom: 30px;
  }

  .c_special_events .events li {
    width: 100%;
    max-width: unset;
    margin-bottom: 10px;
  }

  .c_special_events .events li:nth-child(n + 7) {
    margin-bottom: 10px;
  }

  .c_special_events .events li .comingsoon_txt {
    width: 90%;
    font-size: var(--font-size_24);
  }
}


/*============================
.info_area（会場アクセス/周辺情報・宿泊）
============================*/
.info_area {
  position: relative;
  overflow: hidden;
  position: relative;
  background: url(../../../assets/img/top/exhibition_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.info_area .inner {
  max-width: 1200px;
}

.info_area .flex_box {
  position: relative;
  padding: 0;
}

.info_area h2 .subtitle {
  font-size: 15px;
  margin-top: 5px;
}

.info_area .c_lodging .subtitle {
  margin-left: unset;
  padding-right: 25px;
}

/* ー 会場アクセス/周辺情報・宿泊 ー */
.flex_box #c_access.c_access {
  width: 50%;
  padding: 60px;
  border-right: 2px solid #ececec;
}

.flex_box #c_lodging.c_lodging {
  width: 50%;
  padding: 60px;
}

.info_area h2 {
  display: inline;
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  margin-bottom: 30px;
  margin-top: 0;
  margin-left: unset;
}

#c_access p {
  font-size: 1rem;
  margin: 20px 0;
  text-align: center;
}

#c_lodging p {
  margin: 20px 0;
  text-align: center;
}

/* ◼︎ 共通：疑似要素は常に h2 の先頭に固定 */
.info_area h2.icon {
  position: relative;
  padding-left: clamp(10px, 1.6vw, 26px);
}

.info_area h2.icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: clamp(1.25rem, 2vw, 1.875rem);
  height: clamp(1.25rem, 2vw, 1.875rem);
  background-image: url(../img/forvisitors/preview/location_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.flex_box #c_lodging.c_lodging {
  border-left: none;
}

@media screen and (max-width: 850px) {
  .flex_box #c_access.c_access {
    padding: 40px;
  }

  .flex_box #c_lodging.c_lodging {
    padding: 40px;
  }
}

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

  .flex_box #c_access.c_access,
  .flex_box #c_lodging.c_lodging {
    width: 100%;
    border: none;
  }

  .flex_box #c_access.c_access {
    border-bottom: 2px solid #ececec;
  }
}

@media screen and (max-width: 480px) {
  .info_area h2 {
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .info_area h2.icon:before {
    top: 3px;
    width: 1.25rem;
    height: 1.25rem;
  }
}


/*============================
.side_nav_cont
============================*/
#side_nav_cont nav p {
  color: #696969;
  font-weight: bold;
  margin-bottom: 11px;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Poppins", 'LINESeedJP', sans-serif;
}

#side_nav_cont nav ul li {
  margin-bottom: 5px;
}

#side_nav_cont nav ul li a {
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  font-size: .875rem;
  display: block;
  white-space: nowrap;
}



/*リンクを右下に固定*/
#side_nav_cont {
  position: fixed;
  width: 195px;
  padding: 20px;
  right: 0px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
  background: var(--white);
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  bottom: 160px;
  transition: opacity 0.5s;
}

.en #side_nav_cont {
  width: 235px;
}

/*　上に上がる動き　*/

#side_nav_cont.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#side_nav_cont.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}





/* NAV MOBILE */

.preview_page #side_nav_cont_mb p {
  color: #696969;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Poppins", 'LINESeedJP', sans-serif;
}


.preview_page #side_nav_cont_mb li {
  margin-bottom: 12px;
}

.preview_page #side_nav_cont_mb {
  position: fixed;
  right: -186px;
  display: none;
  bottom: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  padding: 15px 15px 15px 25px;
  border-radius: 6px 0 0 6px;
  z-index: 99;
  line-height: 1.0;
  transition: all 0.3s;
}

.preview_page .en #side_nav_cont_mb {
  right: -235px;
}

.preview_page .en #side_nav_cont_mb.open {
  right: 0;
}

#side_nav_cont_mb.open {
  right: 0px;
}

.preview_page #side_nav_cont_mb .sideIc {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  left: -18px;
  padding: 10px 6px;
  border: 1px solid;
  border-radius: 50%;
  background-color: #006edc;
  color: var(--white);
}

.preview_page #side_nav_cont_mb .sideIc>i {
  font-size: 12px;
}

.preview_page #side_nav_cont_mb * {
  /* font-size: 1.125rem; */
  font-weight: bold;
  /* margin-bottom: 10px; */
}

.preview_page #side_nav_cont_mb a {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
}

.preview_page #side_nav_cont_mb h2 {
  margin-bottom: 20px;
}

.preview_page #side_nav_cont_mb nav ul.menu {
  margin-bottom: 20px;
}

.preview_page #side_nav_cont_mb nav ul.menu li {
  margin-bottom: 20px;
}

.preview_page #side_nav_cont_mb nav ul.menu li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-size: 1.3rem;
  margin-right: 4px;
}

.preview_page #side_nav_cont_mb nav ul.menu li a {
  color: var(--black);
}

.preview_page #side_nav_cont_mb nav ul.btns li {
  background-color: #006edc;
  border-radius: 6px;
  text-align: center;
  padding: 0 45px;
}

.preview_page #side_nav_cont_mb nav ul.btns li+li {
  margin-top: 12px;
}

.preview_page #side_nav_cont_mb nav ul.btns li a:before {
  font-family: "Font Awesome 5 Free";
  margin-right: 11px;
}