@charset "UTF-8";

/* テーブル形式の定義リスト */
#main .page_block.sec03 dl.dl_tb {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 20px;
  position: relative;
  padding-left: 20px;
}

#main .page_block.sec03 dl.dl_tb::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, 
    #ee328b 0%, 
    #bb61a7 25%,  
    #947cb9 50%, 
    #008ad2 75%, 
    #fec558 100%);
  border-radius: 3px;
}

#main .page_block.sec03 dl.dl_tb dt {
  font-weight: bold;
  padding: 4px 0;
}

#main .page_block.sec03 dl.dl_tb dd {
  margin: 0;
  padding: 4px 0;
}

/* 後援企業リストの文字サイズを小さく */
#main .page_block.sec03 dl.dl_tb dd ul li {
  /* font-size: 0.85rem; */
  line-height: 1.4;
}


/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
  #main .page_block.sec03 dl.dl_tb {
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
  }
  
  #main .page_block.sec03 dl.dl_tb dt {
    padding-top: 12px;
    margin-bottom: 0;
  }
  
  #main .page_block.sec03 dl.dl_tb dd {
    padding-bottom: 8px;
    margin-bottom: 0;
  }
  
  /* スマホ時にロゴ画像を上に移動 */
  #main .page_block.sec03 .flex_unit {
    flex-direction: column;
  }
  
  #main .page_block.sec03 .flex_unit figure {
    order: -1;
    text-align: center;
    width: 50%;
    margin: auto;
  }
  
  #main .page_block.sec03 dl.dl_tb dd ul li {
    font-size: inherit;
    line-height: inherit;
  }
}

/* WHY CEATEC セクション */
#main .page_block.sec02 {
  position: relative;
  background-image: url(../../ja/about/images/sec02_img02.webp);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

#main .page_block.sec02 ul {
  display: flex;
  gap: 30px;
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

#main .page_block.sec02 li {
  flex: 1;
  padding: 10px;  
  background-color: rgba(20, 35, 80, 0.7);
  color :#fff;
}

#main .page_block.sec02 .ttl {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

#main .page_block.sec02 p {
  color: #fff;
  line-height: 1.6;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  #main .page_block.sec02 {
    background-position: center bottom;
  }
  
  #main .page_block.sec02 ul {
    flex-direction: column;
    gap: 0px;
  }
  
  #main .page_block.sec02 li {
    padding: 20px;
  }
}


/* グラデーションタイトル */
h3.page_block_title.ttl_color {
  background: linear-gradient(90deg, #008ad2 0%, #947cb9 25%, #bb61a7 50%, #ee328b 75%, #fec558 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 28px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-bottom:0;
}

.about #sec01 .page_block_title,
.about #sec02 .page_block_title {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .about #sec01 .page_block_title,
  .about #sec02 .page_block_title {
    padding: 0.65em 0 0 0;
  }
}

/* 汎用六角形クラス */
.hexagon {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  margin: 20px 0;
  font-weight: bold;
  text-align: left;
  /* 六角形のclip-path */
  clip-path: polygon(
    14px 0,           /* 左上を少し内側へ */
    calc(100% - 14px) 0, /* 右上も少し内側へ */
    100% 14px,        /* 右上の斜め */
    100% calc(100% - 14px), /* 右下の斜め */
    calc(100% - 14px) 100%, /* 右下を少し内側へ */
    14px 100%,        /* 左下を少し内側へ */
    0 calc(100% - 14px), /* 左下の斜め */
    0 14px            /* 左上の斜め */
  );
}

/* 赤いタイトル帯 */
h3.page_block_title.red_title_band {
  background-color: #be1e2e;
  padding: 10px;
  color: white;
  display: block;
  width: 100%;
}

/* 赤いボタン */
.red_button {
  display: block;
  background-color: #be1e2e;
  color: #fff;
  text-decoration: none;
  padding: 12px 16px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin: 40px 20px 0px 20px;  
  transition: background-color 0.3s ease;
  width: calc(100% - 40px);
}

.red_button:hover {
  background-color: #a01a28;
  color: white;
  text-decoration: none;
}

/* スマホでの画像間隔調整 */
@media screen and (max-width: 768px) {
  .guidance figure.sp_only {
    margin-bottom: 20px;
  }
  
  /* h3とh4タイトルの幅調整 */
  .guidance h3.page_block_title {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  
  .guidance h4 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  
  /* スマホでのセクション内要素の調整 */
  .guidance .page_block {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* スマホでのボタンサイズ調整 */
  .red_button {
    padding: 10px 12px;
    font-size: 16px;
    margin: 30px 15px 0px 15px;
    width: calc(100% - 30px);
  }
}


/* 紺色の強調テキスト */
h4.navy_bold {
  color: #142350;
  font-weight: bold;
}

/* 擬似要素を無効化 */
h3.page_block_title::before,
h3.page_block_title::after {
  display: none;
  content: none ;
}

/*過去の実績*/
.list_results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.list_results li:not(.text) {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* border: 1px solid #dbdbdb; */
  /* padding: 10px; */
}

.list_results .item_history {
  width: 100%;
}
.list_results .item_history h4 a{
  
color: #2c5ba0;
}
.list_results .item_history h4,
.list_results .text h4 {
  font-size: 18px;
  margin-bottom: 0.25em;
  background: none;
  padding: 0;
}

.list_results .item_history{
  position:relative;
  padding-left: .7rem;
}
.list_results .item_history:before{
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #ee328b 0%, #bb61a7 25%, #947cb9 50%, #008ad2 100%);
      border-radius: 3px;
}
.list_results .item_history,
    .list_results .text {
      position: relative;
      padding-left: .7rem;
    }


    .list_results .item_history:before,
    .list_results .text:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #ee328b 0%, #bb61a7 25%, #947cb9 50%, #008ad2 100%);
      border-radius: 3px;
    }
    

.list_results .item_history .btn {
  font-size: 12px;
}

@media screen and (max-width: 640px) {
  .list_results {
    grid-template-columns: 1fr;
  }
}

/*メディアパートナー*/
.mediapartner h5::after {
  display: none;
}

.mediapartner .media_list {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mediapartner .media_list .item {
  margin-bottom: 70px;
}
.mediapartner .media_list .item .logoimg {
  display: block;
}

.mediapartner .media_list .item .logoimg figure {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #efefef;
  padding: 20px;
  max-height: 160px;
  min-height: 160px;
}
.mediapartner #s_mediapartner.media_list .item .logoimg figure {
  max-height: 100px;
  min-height: 100px;
}

.mediapartner .media_list .item .logoimg figure img {
  max-height: 120px;
  object-fit: contain;
}
.mediapartner #s_mediapartner.media_list .item .logoimg figure img {
  max-height: 80px;
  max-width: 250px;
}

.mediapartner .media_list .item .conts h4 {
  margin-top: 0.5em;
}
.mediapartner .media_list .item .conts h5 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mediapartner #s_mediapartner.media_list .item .conts h5 {
  font-size: 18px;
}

.mediapartner .media_list .item .conts .information {
  margin-top: 1em;
  font-size: 83%;
}

.mediapartner .media_list .item .conts .information .text_link {
  word-break: break-word;
}

.mediapartner .media_list .item .conts .btn {
  margin-top: 20px;
}

@media screen and (max-width: 640px) {
  .mediapartner #p_mediapartner.media_list {
    display: block;
  }

  .mediapartner .media_list .item .logoimg figure {
    max-height: 140px;
  }
  .mediapartner #s_mediapartner.media_list .item .logoimg figure {
    padding: 10px;
    max-height: 80px;
    min-height: 80px;
  }
  .mediapartner #s_mediapartner.media_list .item .logoimg figure img {
    height: 60px;
  }
}

@media screen and (max-width: 580px) {
  .mediapartner #s_mediapartner.media_list {
    display: block;
  }
}


/* 来場のご案内 .guidance */

/*来場のご案内*/
.guidance .flex {
  width: 100%;
}
.guidance .num_list {
  counter-reset: list-num;
}

.guidance .num_list li {
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.guidance .num_list li:last-child {
  margin-bottom: 0;
}

.guidance .num_list.color li:before {
  background: #131c47;
  color: #fff;
  height: auto;
  max-height: unset;
  margin-bottom: 10px;
}

.guidance .num_list.color li:nth-child(1):before {
  background: #ec008c;
}

.guidance .num_list li h4 {
  width: calc(100% - 2em);
  margin-top: 0 !important;
  margin-bottom: 10px;
}

.guidance .num_list li p {
  width: 100%;
  line-height: 1.6;
}

.guidance .num_list figure {
  margin-top: 30px;
  margin-bottom: 30px;
}

.guidance .box_border {
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.guidance .box_border ol {
  width: calc(100% - 170px);
}

.guidance .box_border figure {
  width: 150px;
}

.guidance .bg_yellow {
  background: #fff626;
  padding: 5px;
  font-size: 16px !important;
  line-height: 1.5;
}

.guidance .online_access figure {
  width: 70%;
  text-align: center;
  margin: auto;
}

@media screen and (max-width: 840px) {
  .guidance .num_list figure {
    max-width: 400px;
    width: 90%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .guidance .box_border ol {
    width: 100%;
  }

  .guidance .box_border figure {
    margin: auto;
  }

  .guidance .online_access figure {
    width: 100%;
  }
}

/* 開催概要 */
@media screen and (max-width: 480px) {
  .en.about .tb_style th {
    padding-bottom: 0.5em;
    width: 100%;
    display: block;
    padding-right: 0;
  }

  .en.about .tb_style td {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    width: 100%;
    display: block;
    border-bottom: unset;
  }
}

/* CEATECの防災・安全対策 */
.safety .flex_unit {
  flex-wrap: wrap;
}

.safety .flex_unit .col_l {
  width: 75%;
}

.safety .flex_unit figure {
  width: 23%;
}

.safety .flex_unit figure img {
  border: 1px solid #dcdcdc;
}

.safety .electric-table-container table {
  min-width: 700px;
  width: 100%;
}

.safety .electric-table-container table:hover {
  cursor: auto;
}

.safety .electric-table-container th,
.safety .electric-table-container td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.safety .electric-table-container th {
  background-color: #f2f2f2;
}

.safety .scroll_sup {
  display: none;
}

@media screen and (max-width: 769px) {
  .safety .flex_unit .col_l {
    width: 100%;
  }

  .safety .flex_unit figure {
    width: 60%;
    margin: 20px auto 0;
  }

  .safety .scroll_sup {
    display: block;
    margin-top: 5px;
  }
}

/* ---------------- About CEATEC セクションの共通レイアウト ---------------- */

.overview_layout {
  position: relative;
}

.overview_layout dl {
  width: 100%;
}

.overview_layout figure {
  width: 25%;
  position: absolute;
  right: 0;
}

/* .overview_layout dl dd:last-child {
  font-size: 0.85rem;
} */

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .overview_layout {
    display: flex;
    flex-direction: column;
    position: static;
  }
  
  .overview_layout figure {
    width: 80%;
    max-width: 250px;
    position: static;
    order: -1;
    margin-bottom: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .overview_layout dl {
    width: 100%;
    order: 1;
  }
}

section[id^="sec0"] section.flex_unit {
  overflow: hidden;
}

.guidance .page_block .btn_registration {
  display: block;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.guidance .page_block .btn.btn_registration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 30px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.guidance .page_block .btn.btn_registration::after {
  right: 15px;
}

@media (max-width: 485px) {
  .sp_break {
    display: inline;
  }
}

@media (min-width: 486px) {
  .sp_break {
    display: none;
  }
}

section[id^="sec0"] section.flex_unit > * {
  width: 65%;
}

section[id^="sec0"] section.flex_unit figure,
section[id^="sec0"] section.flex_unit .map {
  width: 30%;
}

@media screen and (max-width: 767px) {
  section[id^="sec0"] section.flex_unit {
    flex-wrap: wrap !important;
  }
  section[id^="sec0"] section.flex_unit > *,
  section[id^="sec0"] section.flex_unit figure,
  section[id^="sec0"] section.flex_unit .map {
    width: 100%;
  }
  section[id^="sec0"] section.flex_unit figure {
    display: flex;
    margin-top: 20px;
  }
  section[id^="sec0"] section.flex_unit figure img {
    min-width: 0;
  }
}

section[id^="sec0"] h3 figure {
  max-height: 50px;
}

@media screen and (max-width: 540px) {
  section[id^="sec0"] h3 {
    font-size: 1.5rem;
    padding: 0.5em 0.8em;
  }
}

.inner_nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
}
.inner_nav ul li {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .inner_nav ul {
    grid-template-columns: 1fr 1fr;
  }
}

.inner_nav ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 10px 40px;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  height: 100%;
  z-index: 1;
  color: #fff;
  border: 5px solid #e6e6e6;
}
.inner_nav ul li a::before {
  font-family: "Material Icons Round";
  content: "keyboard_double_arrow_down";
  display: inline-flex;
  vertical-align: middle;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 16px;
  transition: all 400ms ease;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

article[id^="inner0"] h3,
.inner_nav ul li a {
  background-image: url(../../ja/application/25th/images/mv_img.webp);
}
article#inner02 h3,
.inner_nav ul li:nth-child(2) a {
  background-image: url(../../ja/application/preview/images/sec03_inner02_img01.webp);
}
article#inner03 h3,
.inner_nav ul li:nth-child(3) a {
  background-image: url(../../ja/application/preview/images/sec03_inner03_img01.webp);
}
article#inner04 h3,
.inner_nav ul li:nth-child(4) a {
  background: #fff;
}
.inner_nav ul li a {
  background-size: cover;
  background-position: center center;
}

article[id^="inner0"] {
  margin-top: 1em;
}
article[id^="inner0"] h3 {
  margin-bottom: 1em;
  position: relative;
  color: #fff;
  z-index: 1;
  background-size: cover;
  background-position: center center;
}
article#inner04 h3,
.inner_nav ul li:nth-child(4) a {
  color: #000;
}

article[id^="inner0"] h3::after,
.inner_nav ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 7px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}
.inner_nav ul li:nth-child(4) a::after,
article#inner04 h3::after {
  display: none;
}
article[id^="inner0"] h3.flex_unit {
  justify-content: center;
}

/* データリストのレイアウト */
.dl_tb dt {
  font-weight: 700;
  padding-bottom: 0.5em;
}

.dl_tb dd {
  padding-bottom: 1.5em;
}

/* ---------------- ceatecとは？ ---------------- */
#sec04 .about {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 900;
  padding: 10px 0 20px;
}

#sec04 .about span {
  display: block;
  padding-bottom: 10px;
}
@media screen and (max-width: 680px) {
  #sec04 .about {
    font-size: 2rem;
  }
}

/* ---------------- エリア構成 ---------------- */
.area-composition_block .area {
  display: flex;
  flex-wrap: wrap;
}

.area-composition_block .area li {
  width: 49%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 10px;
  background-color: rgba(43, 65, 143, 0.1);
  color: #00215d;
  padding: 20px 25px 20px 25px;
  border: 5px solid #f2f2f2;
}
@media screen and (max-width: 680px) {
  .area-composition_block .area li {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
}

.area-composition_block .area li .ttl {
  font-weight: 700;
  font-size: 1.3rem;
  position: relative;
}
.area-composition_block .area li .ttl .cat {
  display: block;
  font-weight: 700;
}
.area-composition_block .area li .ttl .text12 {
  display: block;
  line-height: 1.2;
}
.area-composition_block .area li .ttl + p {
  margin-top: 1em;
  text-decoration: none;
}

.area-composition_block .area li.color_pp {
  color: #f9b700;
  background-color: rgba(183, 138, 0, 0.08);
}
.area-composition_block .area li.color_ngp {
  color: #ec6d88;
  background-color: rgba(252, 232, 236, 0.3);
}
.area-composition_block .area li.color_gp {
  color: #791285;
  background-color: rgba(96, 0, 213, 0.04);
}

.area-composition_block .area li.color_25th {
  color: #0a30e6;
  background: linear-gradient(43deg, #dae0fb 0%, #e5f2f7 55%, #fad9f2 100%);
}
.area-composition_block .area li.conference {
  color: #b03333;
  background-color: #f8eeed;
}

.area-composition_block .area li.color_general .num {
  background-color: #0e1b47;
}

.area-composition_block .area li.color_pp .num {
  background-color: #b78a00;
}

.area-composition_block .area li.color_ngp .num {
  background-color: #ec6d88;
}

.area-composition_block .area li.color_gp .num {
  background-color: #791285;
}

.area-composition_block .area li.conference .num {
  background-color: #b03333;
}

.area-composition_block .area li.color_25th .num {
  background-color: #0040bf;
}
