@charset "UTF-8";

/* ======================================
   CEATEC実行委員会 group_company
   ====================================== */
.group_company {
  background: #f5f5f5;
  padding: 24px;
  margin-top: 20px;
  border-radius: 8px;
}

.group_company_list p {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  color: #0066cc;
  padding-left: 0;
}

.group_company_list p.text-right {
  text-align: right;
  font-weight: normal;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
}

.group_company_list.mgt20 {
  margin-top: 20px;
}

/* 開催概要 dl スタイル */
.outline_dl {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    border-top: 1px solid #ccc;
}

.outline_dl dt,
.outline_dl dd {
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
    margin: 0;
}

.outline_dl dt {
    background-color: #f5f5f5;
    font-weight: 700;
}

.outline_dl dd {
    background-color: #fff;
}

.outline_dl dd.flex_unit {
    flex-wrap: wrap;
    align-items: flex-start;
}

.outline_dl dd.flex_unit figure {
    flex: 0 0 200px;
}

.outline_dl dd ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outline_dl dd .text_link + .text_link {
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    .outline_dl {
        grid-template-columns: 1fr;
    }

    .outline_dl dt {
        padding: 10px 15px;
    }

    .outline_dl dd {
        padding: 15px;
    }

    .outline_dl dd.flex_unit figure {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
}

.outline ol.reason_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.outline ol.reason_grid li {
	margin-top: 0;
}

.outline .reason li {
	margin-top: 1em;
}

.outline .reason dl {
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0;
}

.outline .reason dl figure {
	width: auto;
	flex: none;
	border-radius: 0;
	overflow: visible;
}

.outline .reason dl dt,
.outline .effect dt {
	width: 100%;
/* 	display: flex;
	justify-content: space-between;
 */	position: relative;
}

.outline .reason dd {
	width: 48%;
	margin-top: 10px;
}

.outline .reason dl dt p {
	width: 5.5em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	text-align: center;
	padding-top: 5px;
	min-height: 3em;
	line-height: 1;
	position: relative;
}

.outline .reason dl dt p span {
	font-size: 40px;
	font-weight: 700;
	padding-top: 3px;
}

.outline .reason dl dt h4 {
	margin-top: 5px;
}

@media screen and (max-width: 640px) {
	.outline .reason dd {
		width: 100%;
	}
}

.outline .reason dd.img_area {
    width: 35%;
}
.outline .reason dd.text_area {
    width: 62%;
}
.outline ol.reason_grid dd.img_area,
.outline ol.reason_grid dd.text_area {
    width: 100%;
}
.outline ol.reason_grid dd.img_area {
    height: 250px;
}
.outline ol.reason_grid dd.img_area figure {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.outline ol.reason_grid dd.img_area figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.outline ol.reason_grid dd.text_area p {
    margin-bottom: 15px;
}
.outline .reason .text_area li {
    margin-top: 0;
    padding-bottom: 10px;
}
.outline .l_container .list_dod li::after {
    background: #00215d;
}

@media screen and (max-width: 1020px) {
	.outline ol.reason_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	.outline ol.reason_grid dd.img_area {
		height: 220px;
	}
}
@media screen and (max-width: 640px) {
	.outline ol.reason_grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.outline ol.reason_grid dd.img_area {
		height: 180px;
	}
	.outline .reason dd.img_area {
		width: 100%;
	}.outline .reason dd.text_area {
		width: 100%;
	}
}

.txt-center.outline_index_read {
	font-size: 1.2rem;
}

/* 会場構成のスタイル */
.vc_block_list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	counter-reset: vc-counter;
}

.vc_block_list > li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	counter-increment: vc-counter;
	position: relative;
}

.vc_block_list > li > *:not(figure) {
	flex: 1;
	min-width: 0;
}

.vc_block_list > li > figure {
	width: calc(50% - 10px);
	flex-shrink: 0;
	display: flex;
	overflow: hidden;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.vc_block_list > li > figure img {
	flex: 1;
	min-width: 0;
	object-fit: cover;
}

/* h5の前にナンバリング */
.vc_block_list > li > h5,
.vc_block_list > li > a > h5 {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vc_block_list > li > h5::before,
.vc_block_list > li > a > h5::before {
	content: "0" counter(vc-counter);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #fff;
	color: var(--ceatecblue);
	font-size: 1rem;
	font-weight: 700;
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(12, 26, 73, 0.2);
}
.vc_block_list > li.special > h5::before {
	color: var(--xpark);
}
.vc_block_list > li.conference > a > h5::before {
	color: var(--conference);
}
/* 最初の2つのli: figureを右側に */
.vc_block_list > li:nth-child(1) > figure,
.vc_block_list > li:nth-child(2) > figure {
	order: 2;
}

.vc_block_list > li:nth-child(1) > *:not(figure),
.vc_block_list > li:nth-child(2) > *:not(figure) {
	order: 1;
}

/* 最後のli: figureを左側に */
.vc_block_list > li:last-child > figure {
	order: 1;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

.vc_block_list > li:last-child > *:not(figure) {
	order: 2;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

/* 企画展示（special）: gridで左に要素、右にfigure */
.vc_block_list > li.special {
	display: grid;
	grid-template-columns: 1fr calc(50% - 10px);
	grid-template-rows: auto auto auto;
	/* column-gap:20px */
}

.vc_block_list > li.special > *:not(figure) {
	grid-column: 1;
}

.vc_block_list > li.special > figure {
	grid-column: 2;
	grid-row: 1 / -1;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 0px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.vc_block_list > li.special > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* special内のh5とvc_block_descriptionに背景色 */
.vc_block_list > li.special > h5 {
	background: var(--xpark);
	color: #fff;
	padding: 12px 16px;
	margin: 0;
	border-top-left-radius: 8px;
}

.vc_block_list > li.special > .vc_block_description {
	background: var(--xpark);
	padding: 12px 16px;
	color: #fff;
}
.vc_block_list > li a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 1em;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.vc_block_list > li a h5{
	color: #fff;
	margin-top: 0em;
}

/* 各カテゴリのaタグ背景色 */
.vc_block_list > li.general a {
	background: var(--ceatecblue);
}

.vc_block_list > li.special ul li:nth-child(1) a {
	background: var(--xpark);
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}
.vc_block_list > li.special ul li:nth-child(2) a {
	background: var(--next);
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}
.vc_block_list > li.special ul li:nth-child(3) a {
	background: var(--global);
	border-top-left-radius: 0px;
	border-bottom-left-radius: 8px;
}

.vc_block_list > li.conference a {
	background: var(--conference);
}

@media screen and (max-width: 768px) {
	.vc_block_list > li.special {
		display: flex;
		flex-direction: column;
	}
	.vc_block_list > li.special > figure {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.vc_block_list > li {
		flex-direction: column;
	}
	.vc_block_list > li > figure {
		width: 100%;
		order: 2 !important;
	}
	.vc_block_list > li > *:not(figure) {
		order: 1 !important;
	}
}


/* 開催概要 */
.outline .tb_style th {
    width: 15%;
}
.outline .tb_style td {
    width: 85%;
}
.outline .tb_style td.flex_unit {
    width: 100%;
}
.outline .tb_style td.flex_unit figure {
    width: 45%;
}
@media screen and (max-width: 1020px) {
	.outline .tb_style td.flex_unit {
		display: block;
	}
	.outline .tb_style td.flex_unit figure {
		width: 90%;
		margin-top: 4%;
	}
	.en.outline .tb_style td.flex_unit figure{
		margin-left: 0 !important;
	}
	.outline .tb_style th {
		display: block;
		border-bottom: none;
		width: 100%;
		padding-bottom: 0;
	}
	.outline .tb_style td {
		display: block;
		width: 100%;
	}
	.outline table .c_btn {
		max-width: 90%;
	}
}
@media screen and (max-width: 375px) {
	.outline .tb_style span.pdl10{
		display: block;
		padding-left: 0 !important;
	}
}


/* 出展サポートのテキスのトレイアウト */
.outline .l_container .list .item .font-bold.color-red {
    font-size: 1.6rem;
}




/* outline02 */
.outline .description_text_pdr {
    padding-right: 20px;
    width: 70%;
}
.outline .description_text_pdl {
    padding-left: 20px;
    width: 70%;
}
.outline .description_area .img_sp {
	display: none;
}
@media screen and (max-width: 1020px) {
	.outline .description_text_pdr, .outline .description_text_pdr{
		padding-right: 0;
		width: 100%
	}
	.outline .description_area figure{
		display: none;
	}
	.outline .description_area .img_sp{
		display: block;
		width: 100%;
	}
}

.outline p.text-right {
    float: right;
    padding-bottom: 0;
	font-weight: normal !important;
}



/*メディアパートナー*/
.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: 2em;
  }
  .mediapartner .media_list .item .btn {
	margin-top: 1em;
  }
  .mediapartner .media_list .item .logoimg {
	display: block;
	background: #fff;
  }
  
  .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;
	}
  }


/* ========================================
   features_cards スタイル
   ======================================== */
.features_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
  margin: 0 auto;
  padding-top: 25px;
  counter-reset: features-counter;
}

.features_card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 252, 255, 0.85) 100%);
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  counter-increment: features-counter;
}

.features_card_link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.features_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.features_card_img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.features_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.features_card:hover .features_card_img img {
  transform: scale(1.05);
}

.features_card_title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2a4a;
  text-align: center;
  margin: 24px 20px 12px;
}

.features_card_date {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ceatecblue);
  background: rgba(12, 26, 73, 0.08);
  padding: 5px 20px;
  border-radius: 20px;
  margin: 0 auto 14px;
  text-align: center;
  width: fit-content;
}

.features_card_desc {
  font-size: 14px;
  line-height: 1.8;
  color: #4a5a7a;
  margin: 0 24px 28px;
  text-align: left;
}

/* features_cards レスポンシブ */
@media screen and (max-width: 900px) {
  .features_cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {
  .features_card_title {
    font-size: 18px;
  }
  
  .features_card_date {
    font-size: 12px;
    padding: 4px 16px;
  }
  
  .features_card_desc {
    font-size: 13px;
    margin: 0 20px 24px;
  }
}

/* 出展サポートメニュー */
.support_lead {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 30px 0 20px;
}

.support_menu_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
  align-items: stretch;
}

.support_menu_col {
  display: flex;
  flex-direction: column;
}

.support_menu_list {
  display: flex;
  flex-direction: column;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.support_menu_label {
  display: block;
  padding: 8px 16px;
  border-radius: 4px 4px 0 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.support_menu_label.label_brand {
  background: #333;
  color: #fff;
}

.support_menu_label.label_business {
  background: #0066cc;
  color: #fff;
}

.support_menu_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  flex: 1;
}

.support_menu_list .support_menu_item:first-child {
  border-top: 1px solid #e0e0e0;
}

.support_menu_icon {
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.support_menu_icon .material-symbols-outlined {
  font-size: 28px;
  color: #0066cc;
}

.support_menu_content {
  flex: 1;
}

.support_menu_content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 0 0 6px;
  line-height: 1.4;
}

.support_menu_content p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.support_notice {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #0066cc;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
  padding: 16px;
  margin-top: 30px;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .support_lead {
    font-size: 16px;
  }
  
  .support_menu_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .support_menu_item {
    padding: 12px;
  }
  
  .support_menu_content h4 {
    font-size: 14px;
  }
  
  .support_menu_content p {
    font-size: 12px;
  }
}

