@charset "UTF-8";

:root {
  --global: #e7d443;
}

/* アイコンの色修正 */
.global .before_icon_title::before {
  color: var(--global);
}

.page_content h4.bar_ttl {
  background: var(--global);
  padding: .5rem 1rem;
}

.explanation_txt {
  margin-bottom: 20px;
}

.explanation_txt .font_big {
  font-weight: bold;
  font-size: 1.4rem;
  color: #ddc60a;
  text-shadow: 0 0 0px #00000033;
}

#sec02 {
  margin-bottom: 20px;
}

/* ---------- ページの説明文 ---------- */
.page_desc {
  margin-bottom: 1rem;
}

.page_desc_accent {
  color: var(--global);
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  .page_desc_accent {
    font-size: 26px;
  }
}

/* ---------- sliderの設定 ---------- */
.progress-bar_slider_container {
  width: 49%;
}

.progress-bar_slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.progress-bar_slider_list .slick-slide {
  overflow: hidden;
}

.progress-bar_slider_list .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}


.progress-bar_slider_bar .slick-dots {
  margin-top: 1rem;
}

.slick-dots button,
.slick-dots .slick-active button {
  background-color: var(--global);
}

@media screen and (max-width: 767px) {
  .progress-bar_slider_container {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* ---------- 会場マップのエリア ---------- */
.map_container {
  width: 49%;
}

.map_text {
  font-weight: 700;
}

.before_icon_title::before {
  color: var(--global);
}

@media screen and (max-width: 767px) {
  .map_container {
    width: 100%;
    margin-bottom: 1rem;
  }

  .featured_cards {
    width: 100%;
  }
}

/* ---------- パビリオン一覧 ---------- */
.pavilion_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1vw 1fr 1vw 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.2vw;
  /* カード間のスペース調整 */
  margin-top: 1rem;
}

.pavilion_list_item {
  text-align: center;
}

.pavilion_list_link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgb(231 212 67 / 30%);
  overflow: hidden;
  /* 画像がコンテナをはみ出さないようにする */
}

.pavilion_list_item {
  background: #ffface;
  border-radius: 12px;
}

.pavilion_list_link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* 画像をコンテナに合わせてトリミング */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* ホバー時のアニメーション */
}

.pavilion_list_link:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  /* ホバー時に画像を少し拡大 */
}

.pavilion_list_text {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background: var(--global);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 20px;
  width: 95%;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 0 8px #7d721e;
}

.font_small {
  font-size: 15px;
}

.pavilion_list_text.font_small {
  font-size: 20px;
}

.page_content .page_block .session_day_title {
  padding: 10px 35px;
  margin-left: -30px;
  margin-right: -30px;
  border-bottom: 3px solid var(--global);
  background-color: #f3edf4;
}

.exhibition_global.conference.all .session_title {
  width: 50%;
  display: flex;
  align-items: center;
}

.exhibition_global.conference.all .session_location {
  width: 20%;
}


@media screen and (max-width:1100px) {
  .pavilion_list_text {
    font-size: 17px;
    line-height: 1.4;
    padding: .3rem;
  }

  .font_small {
    display: block;
  }
}


@media screen and (max-width: 940px) {
  .exhibition_global.conference.all .session_title {
    display: block;
    width: 100%;
  }

  .exhibition_global.conference.all .session_location {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 10px;
    padding-left: 10px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 880px) {
  .pavilion_list_text {
    font-size: 15px;
  }
}

@media screen and (max-width: 850px) {
  .pavilion_list_text {
    font-size: 18px;
  }

  .pavilion_list {
    -ms-grid-columns: 1fr 1vw 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .pavilion_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
    /* カード間のスペース調整 */
  }
}


@media screen and (max-width: 540px) {
  .page_content .page_block .session_day_title {
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
}







/* Featured Contents Slider Styles */
.exhibition_flex_container {
  margin-bottom: 60px;
}

.featuredContents {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  --bg-image: url('./images/featured_PickUp.webp');
}

.featuredContents::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px);
  transform: scale(1.1);
  z-index: 0;
  opacity: 0.8;
}

.featuredContents::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.featured_slider_container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  padding: 20px 0 40px 20px;
  border-radius: 16px;
}

.featured_cards {
  position: relative;
  width: 45%;
  height: auto;
  min-height: 300px;
  flex-shrink: 0;
  margin-top: 30px;
  margin-left: 15px;
}

.featured_card {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.featured_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured_card:nth-child(1) {
  z-index: 8;
  transform: translateZ(0px) translateY(0px);
}

.featured_card:nth-child(2) {
  z-index: 7;
  transform: translateZ(-20px) translateY(8px);
}

.featured_card:nth-child(3) {
  z-index: 6;
  transform: translateZ(-40px) translateY(16px);
}

.featured_card:nth-child(4) {
  z-index: 5;
  transform: translateZ(-60px) translateY(24px);
}

.featured_card:nth-child(5) {
  z-index: 4;
  transform: translateZ(-80px) translateY(32px);
}

.featured_card.active {
  z-index: 10 !important;
  transform: translateZ(20px) translateY(-10px) scale(1.05) !important;
  box-shadow: 0 20px 40px rgb(230 212 69 / 19%);
}

.featured_card.active img {
  transform: scale(1.02);
}

.featured_navigation {
  width: 35%;
  padding-left: 30px;
}

.featuredContents .title {
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 2px 20px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 100;
}

.featuredContents .title span {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 2px 20px rgba(0, 0, 0, 0.6);
}

.card_next_btn,
.content_link_btn {
  position: absolute;
  bottom: -20px;
  right: -10px;
  border: none;
  border-radius: 50%;
  border: 3px solid #fff;
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgb(231 213 67 / 75%);
  transition: all 0.3s ease;
  z-index: 15;
}

.card_next_btn:hover,
.content_link_btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgb(201 182 38);
}

.card_next_btn {
  width: 100px;
  height: 100px;
}

.card_next_btn .material-icons {
  font-size: 36px;
  text-shadow: 0 4px 15px rgb(231 213 67);
}

@media screen and (max-width: 1024px) {
  .featured_slider_container {
    flex-direction: column;
    gap: 40px;
    padding: 30px 20px;
  }

  .featured_navigation {
    width: 100%;
    padding-left: 0px;
  }

}

@media screen and (max-width: 767px) {
  .sup_txt {
    font-size: 1.2rem;
  }

  .featured_cards {
    width: 95%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 480px) {
  .sup_txt {
    display: block;
  }

  .featured_cards {
    height: 200px;
    margin-left: 10px;
    min-height: inherit;
  }

  .explanation_txt {
    margin-bottom: 10px;
  }

  .exhibition_flex_container {
    margin-bottom: 20px;
  }

  .explanation_txt .font_big {
    font-size: 1.2rem;
  }

  .card_next_btn {
    width: 80px;
    height: 80px;
  }
}